From aaa1bdc077d3131cf09a24b371b097bba7e2733b Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 2 Mar 2026 15:15:39 +0000 Subject: [PATCH 001/124] added utils to allow easier subtask management --- .devcontainer/asset_list/Dockerfile | 7 +- .devcontainer/asset_list/devcontainer.json | 7 +- .devcontainer/asset_list/docker-compose.yml | 6 +- .vscode/settings.json | 8 +- asset_list/app.py | 22 +++-- backend/app/utils.py | 4 +- backend/ordanceSurvey/handler/Dockerfile | 0 .../ordanceSurvey/handler/requirements.txt | 0 backend/ordanceSurvey/main.py | 37 ++++++++ backend/utils/subtasks.py | 95 +++++++++++++++++++ utils/s3.py | 3 +- 11 files changed, 169 insertions(+), 20 deletions(-) create mode 100644 backend/ordanceSurvey/handler/Dockerfile create mode 100644 backend/ordanceSurvey/handler/requirements.txt create mode 100644 backend/ordanceSurvey/main.py create mode 100644 backend/utils/subtasks.py diff --git a/.devcontainer/asset_list/Dockerfile b/.devcontainer/asset_list/Dockerfile index 72a5de53..be869637 100644 --- a/.devcontainer/asset_list/Dockerfile +++ b/.devcontainer/asset_list/Dockerfile @@ -21,7 +21,7 @@ RUN git clone --depth 1 https://github.com/openvenues/libpostal /tmp/libpostal \ && rm -rf /tmp/libpostal # 3) Create the user and grant sudo privileges -RUN useradd -m -s /usr/bin/bash ${USER} \ +RUN useradd -m -s /bin/bash ${USER} \ && echo "${USER} ALL=(ALL) NOPASSWD: ALL" >/etc/sudoers.d/${USER} \ && chmod 0440 /etc/sudoers.d/${USER} @@ -32,6 +32,11 @@ ADD asset_list/requirements.txt requirements1.txt RUN cat requirements1.txt requirements2.txt >> requirements.txt RUN pip install -r requirements.txt + +# Install code server +RUN curl -fsSL https://code-server.dev/install.sh | sh + + # 5) Workdir WORKDIR /workspaces/model diff --git a/.devcontainer/asset_list/devcontainer.json b/.devcontainer/asset_list/devcontainer.json index 945dcd88..83e5a276 100644 --- a/.devcontainer/asset_list/devcontainer.json +++ b/.devcontainer/asset_list/devcontainer.json @@ -2,13 +2,14 @@ "name": "SAL ENV", "dockerComposeFile": "docker-compose.yml", "service": "model-sal", - "remoteUser": "vscode", + // "remoteUser": "vscode", "workspaceFolder": "/workspaces/model", - "postStartCommand": "bash .devcontainer/post-install.sh", + "postStartCommand": "bash .devcontainer/asset_list/post-install.sh", "mounts": [ // Optional, just makes getting from Downloads (local env) easier - "source=${localEnv:HOME},target=/workspaces/home,type=bind" + "source=${localEnv:HOME},target=/home/vscode,type=bind" ], + "forwardPorts": [8081], "customizations": { "vscode": { "extensions": [ diff --git a/.devcontainer/asset_list/docker-compose.yml b/.devcontainer/asset_list/docker-compose.yml index 06e4124d..0568393b 100644 --- a/.devcontainer/asset_list/docker-compose.yml +++ b/.devcontainer/asset_list/docker-compose.yml @@ -2,15 +2,17 @@ version: '3.8' services: model-sal: - user: "${UID}:${GID}" build: context: ../.. dockerfile: .devcontainer/asset_list/Dockerfile - command: sleep infinity + command: code-server --bind-addr 0.0.0.0:8080 + user: vscode volumes: - ../../:/workspaces/model networks: - model-net + ports: + - "8081:8080" networks: model-net: diff --git a/.vscode/settings.json b/.vscode/settings.json index b294c736..56299a40 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -16,7 +16,13 @@ "python.languageServer": "Pylance", "python.analysis.typeCheckingMode": "strict", "python.analysis.autoSearchPaths": true, - "python.analysis.extraPaths": ["./src"] + "python.analysis.extraPaths": ["./src"], + + "vim.useCtrlKeys": true, + "vim.handleKeys": { + "": false, + "": false + } // Hot reload setting that needs to be in user settings // "jupyter.runStartupCommands": [ diff --git a/asset_list/app.py b/asset_list/app.py index 3e492118..02f930b4 100644 --- a/asset_list/app.py +++ b/asset_list/app.py @@ -77,21 +77,21 @@ def app(): data_folder = "/workspaces/model/asset_list" data_filename = "assests.xlsx" sheet_name = "Sheet1" - postcode_column = "Postcode" - address1_column = "Address" + postcode_column = "POSTCODE" + address1_column = "ADDRESS" address1_method = "house_number_extraction" fulladdress_column = None - address_cols_to_concat = ["Address"] + address_cols_to_concat = ["ADDRESS"] missing_postcodes_method = None landlord_year_built = None - landlord_os_uprn = "UPRN" - landlord_property_type = "Archetype" - landlord_built_form = "Bedroom Count" - landlord_wall_construction = "Wall Insulation Type" - landlord_roof_construction = "Roof Type" - landlord_heating_system = "Boiler Type" + landlord_os_uprn = None + landlord_property_type = None + landlord_built_form = None + landlord_wall_construction = None + landlord_roof_construction = None + landlord_heating_system = None landlord_existing_pv = None - landlord_property_id = "Tab" + landlord_property_id = "UPRN" landlord_sap = None outcomes_filename = None outcomes_sheetname = None @@ -488,3 +488,5 @@ def app(): asset_list.duplicated_addresses.to_excel( writer, sheet_name="Duplicate Properties", index=False ) + + diff --git a/backend/app/utils.py b/backend/app/utils.py index b3843206..c1ad54f6 100644 --- a/backend/app/utils.py +++ b/backend/app/utils.py @@ -43,7 +43,7 @@ def generate_api_key(): # Define the characters that will be used to generate the api key characters = string.ascii_letters + string.digits # Generate a 40 character long api key - api_key = ''.join(secrets.choice(characters) for _ in range(40)) + api_key = "".join(secrets.choice(characters) for _ in range(40)) return api_key @@ -113,7 +113,7 @@ def save_dataframe_to_s3_parquet(df, bucket_name, file_key): df.to_parquet(parquet_buffer) # Create the boto3 client - s3 = boto3.resource('s3') + s3 = boto3.resource("s3") # Upload the Parquet file to S3 s3.Object(bucket_name, file_key).put(Body=parquet_buffer.getvalue()) diff --git a/backend/ordanceSurvey/handler/Dockerfile b/backend/ordanceSurvey/handler/Dockerfile new file mode 100644 index 00000000..e69de29b diff --git a/backend/ordanceSurvey/handler/requirements.txt b/backend/ordanceSurvey/handler/requirements.txt new file mode 100644 index 00000000..e69de29b diff --git a/backend/ordanceSurvey/main.py b/backend/ordanceSurvey/main.py new file mode 100644 index 00000000..bc482d56 --- /dev/null +++ b/backend/ordanceSurvey/main.py @@ -0,0 +1,37 @@ +from typing import Any +import json +from utils.logger import setup_logger +import logging + +from backend.utils.subtasks import subtask_handler + +logger: logging.Logger = setup_logger() +import time + + +@subtask_handler() +def handler(event: dict[str, Any], context: Any, local: bool = False) -> None: + + local = True + # Example SQS message for testing (copy and paste into SQS): + if local is True: + event = { + "Records": [ + { + "body": json.dumps( + { + "task_id": "e31f2f21-175b-4a91-a3ec-a6baa325e917", + "sub_task_id": "8673913b-1a88-42d7-8578-0449123d94b0", + } + ) + } + ] + } + + print("sleeping for 30 seconds, subtask should be in progress") + raise RuntimeError("test") + time.sleep(30) + print("subtask should be marked as done") + # ------------------------------ + # YOUR BUSINESS LOGIC HERE + # ------------------------------ diff --git a/backend/utils/subtasks.py b/backend/utils/subtasks.py new file mode 100644 index 00000000..041494e9 --- /dev/null +++ b/backend/utils/subtasks.py @@ -0,0 +1,95 @@ +# decorators/subtask_handler.py + +from functools import wraps +from typing import Callable, Any +from uuid import UUID +import json + +from backend.app.db.functions.tasks.Tasks import SubTaskInterface + + +def subtask_handler(): + """ + Decorator that wraps your existing handler and automatically: + + - Extracts task_id + sub_task_id from event + - Marks subtask as in progress + - Executes handler logic + - Marks subtask complete on success + - Marks failed on exception + """ + + def decorator(func: Callable[..., Any]): + + @wraps(func) + def wrapper(event: dict[str, Any], context: Any, *args, **kwargs): + + records = event.get("Records", [event]) + + interface = SubTaskInterface() + + for record in records: + + # ------------------------------- + # Parse body safely + # ------------------------------- + body = {} + + if isinstance(record.get("body"), str): + try: + body = json.loads(record["body"]) + except Exception: + body = {} + else: + body = record.get("body", {}) or {} + + task_id_raw = body.get("task_id") + subtask_id_raw = body.get("sub_task_id") + + task_id = UUID(task_id_raw) if isinstance(task_id_raw, str) else None + subtask_id = ( + UUID(subtask_id_raw) if isinstance(subtask_id_raw, str) else None + ) + + if not task_id or not subtask_id: + raise RuntimeError("task_id or sub_task_id missing") + + # ------------------------------- + # Mark in progress + # ------------------------------- + interface.update_subtask_status( + subtask_id=subtask_id, + status="in progress", + ) + + try: + # Pass the parsed body into your function + result = func(body, context, *args, **kwargs) + + # ------------------------------- + # Success → mark complete + # ------------------------------- + interface.update_subtask_status( + subtask_id=subtask_id, + status="complete", + outputs={"result": result} if result else None, + ) + + except Exception as e: + + # ------------------------------- + # Failure → mark failed + # ------------------------------- + interface.update_subtask_status( + subtask_id=subtask_id, + status="failed", + outputs={"error": str(e)}, + ) + + raise + + return None + + return wrapper + + return decorator diff --git a/utils/s3.py b/utils/s3.py index b3a96dba..6aa3f44e 100644 --- a/utils/s3.py +++ b/utils/s3.py @@ -6,6 +6,7 @@ from io import BytesIO, StringIO from urllib.parse import unquote from utils.logger import setup_logger from botocore.exceptions import NoCredentialsError, PartialCredentialsError +from typing import Any logger = setup_logger() @@ -316,7 +317,7 @@ def save_excel_to_s3(df, bucket_name, file_key): logger.info(f"Excel file saved to S3 bucket '{bucket_name}' with key '{file_key}'") -def read_csv_from_s3(bucket_name, filepath): +def read_csv_from_s3(bucket_name: str, filepath: str) -> list[dict[str, str]]: logger.info( f"Reading CSV file from S3 bucket '{bucket_name}' with key '{filepath}'" ) From 2cd24ae3d012226b9ebb15986a012571d9c2a28e Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 2 Mar 2026 17:23:57 +0000 Subject: [PATCH 002/124] todo list added --- backend/ordanceSurvey/main.py | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/backend/ordanceSurvey/main.py b/backend/ordanceSurvey/main.py index bc482d56..21090f7b 100644 --- a/backend/ordanceSurvey/main.py +++ b/backend/ordanceSurvey/main.py @@ -2,11 +2,9 @@ from typing import Any import json from utils.logger import setup_logger import logging - from backend.utils.subtasks import subtask_handler logger: logging.Logger = setup_logger() -import time @subtask_handler() @@ -22,16 +20,15 @@ def handler(event: dict[str, Any], context: Any, local: bool = False) -> None: { "task_id": "e31f2f21-175b-4a91-a3ec-a6baa325e917", "sub_task_id": "8673913b-1a88-42d7-8578-0449123d94b0", + "s3_uri" } ) } ] } - print("sleeping for 30 seconds, subtask should be in progress") - raise RuntimeError("test") - time.sleep(30) - print("subtask should be marked as done") - # ------------------------------ - # YOUR BUSINESS LOGIC HERE - # ------------------------------ + # Add business logic to do handling + # TODO: Copy s3_uri importing from address2uprn + # TODO: Copy s3_uri logic to read csv from address2uprn and search for ones without UPRN/score is low + # TODO: Copy and do ordant survey logic + # TODO: Save new results to s3 ( ask Khalim if we want to save to db) From db251c185728d4f3f76c008593602368db96572d Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Wed, 4 Mar 2026 16:14:27 +0000 Subject: [PATCH 003/124] removed duplicate code --- backend/address2UPRN/main.py | 199 +------------------------- backend/app/config.py | 2 + backend/ordanceSurvey/main.py | 113 ++++++++++++--- backend/utils/addressMatch.py | 201 +++++++++++++++++++++++++++ backend/utils/ordnance_survey.py | 44 ++++++ sfr/principal_pitch/2_export_data.py | 14 +- 6 files changed, 356 insertions(+), 217 deletions(-) create mode 100644 backend/utils/addressMatch.py create mode 100644 backend/utils/ordnance_survey.py diff --git a/backend/address2UPRN/main.py b/backend/address2UPRN/main.py index af29a095..7d52c562 100644 --- a/backend/address2UPRN/main.py +++ b/backend/address2UPRN/main.py @@ -2,12 +2,8 @@ from epc_api.client import EpcClient import os from urllib.parse import urlencode import pandas as pd -from difflib import SequenceMatcher from utils.logger import setup_logger -import re -from typing import Set import json -import requests from uuid import UUID import uuid from backend.app.db.functions.tasks.Tasks import SubTaskInterface @@ -18,6 +14,8 @@ from utils.s3 import ( ) from datetime import datetime +from backend.utils.addressMatch import addressMatch + logger = setup_logger() @@ -29,191 +27,6 @@ if EPC_AUTH_TOKEN is None: raise RuntimeError("EPC_AUTH_TOKEN not defined in env") -def is_valid_postcode(postcode_clean: str) -> bool: - """ - Validate postcode using postcodes.io. - - Expects a sanitised postcode (e.g. E84SQ). - Returns True if valid, False otherwise. - """ - POSTCODES_IO_VALIDATE_URL = "https://api.postcodes.io/postcodes/{postcode}/validate" - if not postcode_clean: - return False - - try: - resp = requests.get( - POSTCODES_IO_VALIDATE_URL.format(postcode=postcode_clean), - timeout=5, - ) - resp.raise_for_status() - return resp.json().get("result", False) - except requests.RequestException: - # Network issues, rate limits, etc. - return False - - -def levenshtein(a: str, b: str) -> float: - """ - Address similarity score in [0, 1]. - - Strategy: - - Normalise - - Strongly penalise mismatched house/flat numbers - - Combine token overlap + character similarity - """ - - def extract_number_sequence(s: str) -> list[str]: - return re.findall(r"\d+[a-z]?", s) - - def extract_numbers(s: str) -> Set[str]: - return set(extract_number_sequence(s)) - - def tokenise(s: str) -> Set[str]: - return set(s.split()) - - def extract_building_number(s: str) -> str | None: - """ - Extract the main building number (NOT flat/unit). - Assumes formats like: - - '42 moreton road' - - 'flat 3 42 moreton road' - """ - tokens = s.split() - - # remove flat/unit context - cleaned = [] - skip_next = False - for t in tokens: - if t in ("flat", "apt", "apartment", "unit"): - skip_next = True - continue - if skip_next: - skip_next = False - continue - cleaned.append(t) - - # first remaining number is building number - for t in cleaned: - if re.fullmatch(r"\d+[a-z]?", t): - return t - - return None - - a_norm = normalise_address(a) - b_norm = normalise_address(b) - - # --- hard signal: numbers --- - nums_a = extract_numbers(a_norm) - nums_b = extract_numbers(b_norm) - - if nums_a and not nums_b: - return 0.0 - - # No shared numbers at all → impossible match - if nums_a and nums_b and nums_a.isdisjoint(nums_b): - return 0.0 - - # 🔒 HARD GUARD: building number must match - bld_a = extract_building_number(a_norm) - bld_b = extract_building_number(b_norm) - - if bld_a and bld_b and bld_a != bld_b: - return 0.0 - - # --- order-sensitive flat/building guard --- - seq_a = extract_number_sequence(a_norm) - seq_b = extract_number_sequence(b_norm) - - has_flat_token_user = any( - tok in a_norm for tok in ("flat", "apt", "apartment", "unit") - ) - has_flat_token_epc = "flat" in b_norm - - if ( - len(seq_a) == 2 - and len(seq_b) >= 2 - and has_flat_token_epc - and not has_flat_token_user - and seq_a != seq_b[:2] - ): - return 0.0 - - # --- token similarity (order-independent) --- - toks_a = tokenise(a_norm) - toks_b = tokenise(b_norm) - - if not toks_a or not toks_b: - token_score = 0.0 - else: - token_score = len(toks_a & toks_b) / len(toks_a | toks_b) - - # --- character similarity (soft signal) --- - char_score = SequenceMatcher(None, a_norm, b_norm).ratio() - - # --- weighted blend --- - return round( - 0.65 * token_score + 0.35 * char_score, - 4, - ) - - -def normalise_address(s: str) -> str: - """ - Canonical UK-focused address normalisation. - - - Lowercases - - Removes punctuation (keeps / for flats) - - Normalises whitespace - - Applies synonym compression at token level - """ - - if not s: - return "" - - ADDRESS_SYNONYMS = { - # street types - "rd": "road", - "rd.": "road", - "st": "street", - "st.": "street", - "ave": "avenue", - "ave.": "avenue", - "ln": "lane", - "ln.": "lane", - "cres": "crescent", - "ct": "court", - "dr": "drive", - # flats / units - "apt": "flat", - "apartment": "flat", - "unit": "flat", - "ste": "suite", - # numbering noise - "no": "", - "no.": "", - } - # 1. lowercase - s = s.lower() - - # 1.5 split digit-letter suffixes - s = re.sub(r"(\d+)([a-z])\b", r"\1 \2", s) - - # 2. remove punctuation except / - s = re.sub(r"[^\w\s/]", " ", s) - - # 3. normalise whitespace - s = re.sub(r"\s+", " ", s).strip() - - # 4. tokenise + synonym normalisation - tokens = [] - for tok in s.split(): - replacement = ADDRESS_SYNONYMS.get(tok, tok) - if replacement: - tokens.append(replacement) - - return " ".join(tokens) - - def score_addresses( df: pd.DataFrame, user_address: str, @@ -222,7 +35,7 @@ def score_addresses( if column not in df.columns: raise ValueError(f"Missing column: {column}") - return df[column].apply(lambda x: levenshtein(user_address, x)) + return df[column].apply(lambda x: addressMatch.score(user_address, x)) def get_epc_data_with_postcode(postcode, size=500, attempt=1, max_attempts=3): @@ -314,9 +127,9 @@ def get_uprn_candidates( out = df.copy() - user_norm = normalise_address(user_address) + user_norm = addressMatch.normalise_address(user_address) - out["lexiscore"] = out[address_column].apply(lambda x: levenshtein(user_norm, x)) + out["lexiscore"] = out[address_column].apply(lambda x: addressMatch.levenshtein(user_norm, x)) # Normalise UPRN to string out[uprn_column] = out[uprn_column].astype(str).str.replace(r"\.0$", "", regex=True) @@ -653,7 +466,7 @@ def handler(event, context, local=False): ) # Validate postcode before processing - if not is_valid_postcode(postcode): + if not addressMatch.is_valid_postcode(postcode): logger.warning(f"Postcode {postcode} is invalid, skipping") continue diff --git a/backend/app/config.py b/backend/app/config.py index 26fb6b8b..b5b29137 100644 --- a/backend/app/config.py +++ b/backend/app/config.py @@ -63,6 +63,8 @@ class Settings(BaseSettings): # Other S3 buckts ENERGY_ASSESSMENTS_BUCKET: str = "changeme" + ORDNANCE_SURVEY_API_KEY: str = "changeme" + # Optional AWS creds (only required in local) AWS_ACCESS_KEY_ID: Optional[str] = None AWS_SECRET_KEY_ID: Optional[str] = None diff --git a/backend/ordanceSurvey/main.py b/backend/ordanceSurvey/main.py index 21090f7b..5961aa16 100644 --- a/backend/ordanceSurvey/main.py +++ b/backend/ordanceSurvey/main.py @@ -3,32 +3,113 @@ import json from utils.logger import setup_logger import logging from backend.utils.subtasks import subtask_handler +from utils.s3 import ( + # save_csv_to_s3, + read_csv_from_s3 as read_csv_from_s3_dict, + parse_s3_uri, +) +from backend.utils.addressMatch import addressMatch +from backend.app.db.connection import get_db_session +from backend.app.db.models.postcode_search import PostcodeSearchModel +from backend.utils.ordnance_survey import ( + lookup_os_places, + os_places_results_to_dataframe, +) +from backend.app.config import get_settings +from sqlalchemy import select + +import pandas as pd logger: logging.Logger = setup_logger() -@subtask_handler() -def handler(event: dict[str, Any], context: Any, local: bool = False) -> None: +def check_if_post_code_exists_in_db_cache(postcode): + with get_db_session() as session: + result = ( + session.execute( + select(PostcodeSearchModel).where( + PostcodeSearchModel.postcode == postcode + ) + ) + .scalars() + .first() + ) + if result: + return os_places_results_to_dataframe(result.result_data) + + # Cache miss — fetch from OS Places API + api_key = get_settings().ORDNANCE_SURVEY_API_KEY + response = lookup_os_places(postcode, api_key) + + if response.get("status") != 200 or "data" not in response: + logger.error(f"OS Places API failed for {postcode}: {response}") + raise RuntimeError( + "A postcode that doesn't exists in ordant survey and check if its real in postcode validator!!! Postcode: {postcode}" + ) + return None + + # Save to cache + new_record = PostcodeSearchModel( + postcode=postcode, + result_data=response["data"], + ) + session.add(new_record) + session.commit() + + return os_places_results_to_dataframe(response["data"]) + + +def get_ordance_survey_record(row, cache=None): + if cache is None: + cache = check_if_post_code_exists_in_db_cache(postcode) + + # process cache with row + + +@subtask_handler() # This assumes task_id and subtask_id is defined in event.Records.body +def handler(body: dict[str, Any], context: Any, local: bool = False) -> None: + + # delete this line after test local = True # Example SQS message for testing (copy and paste into SQS): if local is True: - event = { - "Records": [ - { - "body": json.dumps( - { - "task_id": "e31f2f21-175b-4a91-a3ec-a6baa325e917", - "sub_task_id": "8673913b-1a88-42d7-8578-0449123d94b0", - "s3_uri" - } - ) - } - ] + body = { + "task_id": "e31f2f21-175b-4a91-a3ec-a6baa325e917", + "sub_task_id": "8673913b-1a88-42d7-8578-0449123d94b0", + "s3_uri": "s3://retrofit-data-dev/ara_raw_outputs/e31f2f21-175b-4a91-a3ec-a6baa325e917/09cc7368-0850-4145-8b04-ebd84b3263c4/2026-02-18T14:00:13.228611_d2f675c3.csv", } + s3_uri: str = body.get("s3_uri", "") + lexiscore_threshold: float = body.get("lexiscore_threshold", 0.5) + + if s3_uri == "": + raise RuntimeError("Missing s3_uri in message body") + + bucket, key = parse_s3_uri(s3_uri) + + # Assumption designing with address2uprn was ran first + csv_data = read_csv_from_s3_dict(bucket, key) + df = pd.DataFrame(csv_data) + df["domna_lexiscore"] = pd.to_numeric(df["domna_lexiscore"], errors="coerce") + needs_processing = df[ + df["domna_lexiscore"].isna() | (df["domna_lexiscore"] < lexiscore_threshold) + ] + + grouped = needs_processing.groupby("postcode_clean") + + # Process each postcode group at a time + for postcode, group in grouped: + print(f"Processing postcode: {postcode} ({len(group)} rows)") + valid_group = addressMatch.is_valid_postcode(postcode) + if valid_group: + postcode_cache = None + if postcode_cache is None: + postcode_cache = get_ordance_survey_record(postcode) + for index, row in group.iterrows(): + print("do something") + break + # Add business logic to do handling - # TODO: Copy s3_uri importing from address2uprn - # TODO: Copy s3_uri logic to read csv from address2uprn and search for ones without UPRN/score is low # TODO: Copy and do ordant survey logic # TODO: Save new results to s3 ( ask Khalim if we want to save to db) diff --git a/backend/utils/addressMatch.py b/backend/utils/addressMatch.py new file mode 100644 index 00000000..b09c1672 --- /dev/null +++ b/backend/utils/addressMatch.py @@ -0,0 +1,201 @@ +import re +from typing import Any, Optional +from difflib import SequenceMatcher +import requests + + +class addressMatch: + def __init__(self): + return None + + @staticmethod + def score(a: str, b: str) -> float: + score: float = addressMatch.levenshtein(a, b) + + return score + + @staticmethod + def is_valid_postcode(postcode_clean: str) -> bool: + """ + Validate postcode using postcodes.io. + + Expects a sanitised postcode (e.g. E84SQ). + Returns True if valid, False otherwise. + """ + POSTCODES_IO_VALIDATE_URL = ( + "https://api.postcodes.io/postcodes/{postcode}/validate" + ) + if not postcode_clean: + return False + + try: + resp = requests.get( + POSTCODES_IO_VALIDATE_URL.format(postcode=postcode_clean), + timeout=5, + ) + resp.raise_for_status() + return resp.json().get("result", False) + except requests.RequestException: + # Network issues, rate limits, etc. + return False + + @staticmethod + def normalise_address(s: str) -> str: + """ + Canonical UK-focused address normalisation. + + - Lowercases + - Removes punctuation (keeps / for flats) + - Normalises whitespace + - Applies synonym compression at token level + """ + + if not s: + return "" + + ADDRESS_SYNONYMS = { + # street types + "rd": "road", + "rd.": "road", + "st": "street", + "st.": "street", + "ave": "avenue", + "ave.": "avenue", + "ln": "lane", + "ln.": "lane", + "cres": "crescent", + "ct": "court", + "dr": "drive", + # flats / units + "apt": "flat", + "apartment": "flat", + "unit": "flat", + "ste": "suite", + # numbering noise + "no": "", + "no.": "", + } + # 1. lowercase + s = s.lower() + + # 1.5 split digit-letter suffixes + s = re.sub(r"(\d+)([a-z])\b", r"\1 \2", s) + + # 2. remove punctuation except / + s = re.sub(r"[^\w\s/]", " ", s) + + # 3. normalise whitespace + s = re.sub(r"\s+", " ", s).strip() + + # 4. tokenise + synonym normalisation + tokens: list[str] = [] + for tok in s.split(): + replacement = ADDRESS_SYNONYMS.get(tok, tok) + if replacement: + tokens.append(replacement) + return " ".join(tokens) + + @staticmethod + def levenshtein(a: str, b: str) -> float: + """ + Address similarity score in [0, 1]. + + Strategy: + - Normalise + - Strongly penalise mismatched house/flat numbers + - Combine token overlap + character similarity + """ + + def extract_number_sequence(s: str) -> list[str]: + return re.findall(r"\d+[a-z]?", s) + + def extract_numbers(s: str) -> set[str]: + return set(extract_number_sequence(s)) + + def tokenise(s: str) -> set[str]: + return set(s.split()) + + def extract_building_number(s: str) -> Optional[str]: + """ + Extract the main building number (NOT flat/unit). + Assumes formats like: + - '42 moreton road' + - 'flat 3 42 moreton road' + """ + tokens = s.split() + + # remove flat/unit context + cleaned: list[Any] = [] + skip_next = False + for t in tokens: + if t in ("flat", "apt", "apartment", "unit"): + skip_next = True + continue + if skip_next: + skip_next = False + continue + cleaned.append(t) + + # first remaining number is building number + for t in cleaned: + if re.fullmatch(r"\d+[a-z]?", t): + return t + + return None + + a_norm = addressMatch.normalise_address(a) + b_norm = addressMatch.normalise_address(b) + + # --- hard signal: numbers --- + nums_a = extract_numbers(a_norm) + nums_b = extract_numbers(b_norm) + + if nums_a and not nums_b: + return 0.0 + + # No shared numbers at all → impossible match + if nums_a and nums_b and nums_a.isdisjoint(nums_b): + return 0.0 + + # 🔒 HARD GUARD: building number must match + bld_a = extract_building_number(a_norm) + bld_b = extract_building_number(b_norm) + + if bld_a and bld_b and bld_a != bld_b: + return 0.0 + + # --- order-sensitive flat/building guard --- + seq_a = extract_number_sequence(a_norm) + seq_b = extract_number_sequence(b_norm) + + has_flat_token_user = any( + tok in a_norm for tok in ("flat", "apt", "apartment", "unit") + ) + has_flat_token_epc = "flat" in b_norm + + if ( + len(seq_a) == 2 + and len(seq_b) >= 2 + and has_flat_token_epc + and not has_flat_token_user + and seq_a != seq_b[:2] + ): + return 0.0 + + # --- token similarity (order-independent) --- + toks_a: set[str] = tokenise(a_norm) + toks_b: set[str] = tokenise(b_norm) + + if not toks_a or not toks_b: + token_score = 0.0 + else: + token_score = len(toks_a & toks_b) / len(toks_a | toks_b) + + # --- character similarity (soft signal) --- + char_score: float = SequenceMatcher(None, a_norm, b_norm).ratio() + + # --- weighted blend --- + return round( + 0.65 * token_score + 0.35 * char_score, + 4, + ) diff --git a/backend/utils/ordnance_survey.py b/backend/utils/ordnance_survey.py new file mode 100644 index 00000000..03a0e57b --- /dev/null +++ b/backend/utils/ordnance_survey.py @@ -0,0 +1,44 @@ +import urllib.parse +import requests +import pandas as pd +from utils.logger import setup_logger + +logger = setup_logger() + + +def os_places_results_to_dataframe(data: dict) -> pd.DataFrame: + """ + Flatten the OS Places API response results into a DataFrame. + Each result contains either a DPA or LPI record. + """ + results = data.get("results", []) + rows = [] + for r in results: + if "DPA" in r: + rows.append(r["DPA"]) + elif "LPI" in r: + rows.append(r["LPI"]) + return pd.DataFrame(rows) + + +def lookup_os_places(postcode: str, api_key: str) -> dict: + """ + Lookup a postcode using the OS Places API. + Returns the full API response data or an error dict. + """ + if not api_key: + return {"error": "Ordnance Survey API key not specified", "status": 400} + + encoded_postcode = urllib.parse.quote(postcode) + url = ( + f"https://api.os.uk/search/places/v1/postcode?postcode={encoded_postcode}" + f"&dataset=DPA,LPI&key={api_key}" + ) + + response = requests.get(url) + if response.status_code != 200: + logger.error(f"OS Places API error for postcode {postcode}: {response.status_code}") + return {"error": "Failed to fetch address data", "status": response.status_code} + + data = response.json() + return {"data": data, "status": 200} diff --git a/sfr/principal_pitch/2_export_data.py b/sfr/principal_pitch/2_export_data.py index 4f430209..b1c3a88a 100644 --- a/sfr/principal_pitch/2_export_data.py +++ b/sfr/principal_pitch/2_export_data.py @@ -28,15 +28,15 @@ from sqlalchemy import func # PORTFOLIO_ID = 206 # SCENARIOS = [389] -PORTFOLIO_ID = 568 -SCENARIOS = [ - 1059, -] +PORTFOLIO_ID = 404 +SCENARIOS = [819, 829, 872] scenario_names = { - 1059: "EPC C - 10k budget", + 819: "EPC C", + 829: "EPC C - no solid floor", + 872: "EPC C - no solid floor, refresh", } -project_name = "manchester" +project_name = "lincs_rural" def get_data(portfolio_id, scenario_ids): @@ -330,8 +330,6 @@ for scenario_id in SCENARIOS: getting_works = df[df["total_retrofit_cost"] > 0] getting_works["predicted_post_works_epc"].value_counts() - 32565 / getting_works.shape[0] - df[df["predicted_post_works_sap"] == ""] # Expected columns list From 1b3a942c308e54a23e5543c739f1acff30da95c1 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Wed, 4 Mar 2026 16:58:23 +0000 Subject: [PATCH 004/124] ordance survey logic basically finsihed --- backend/address2UPRN/main.py | 24 ++++++----- backend/ordanceSurvey/main.py | 78 +++++++++++++++++++++++++++-------- 2 files changed, 74 insertions(+), 28 deletions(-) diff --git a/backend/address2UPRN/main.py b/backend/address2UPRN/main.py index 7d52c562..53e50617 100644 --- a/backend/address2UPRN/main.py +++ b/backend/address2UPRN/main.py @@ -129,7 +129,9 @@ def get_uprn_candidates( user_norm = addressMatch.normalise_address(user_address) - out["lexiscore"] = out[address_column].apply(lambda x: addressMatch.levenshtein(user_norm, x)) + out["lexiscore"] = out[address_column].apply( + lambda x: addressMatch.levenshtein(user_norm, x) + ) # Normalise UPRN to string out[uprn_column] = out[uprn_column].astype(str).str.replace(r"\.0$", "", regex=True) @@ -346,7 +348,7 @@ def handler(event, context, local=False): { "task_id": "e31f2f21-175b-4a91-a3ec-a6baa325e917", "sub_task_id": "6a427b6e-1ece-4983-b1e5-9bffccc53d1d", - "s3_uri": "s3://retrofit-data-dev/ara_postcode_splitter_batches/e31f2f21-175b-4a91-a3ec-a6baa325e917/8673913b-1a88-42d7-8578-0449123d94b0/2026-02-16T12:00:20.257856_7b520c0e.csv", + "s3_uri": "s3://retrofit-data-dev/ara_postcode_splitter_batches/e31f2f21-175b-4a91-a3ec-a6baa325e917/8673913b-1a88-42d7-8578-0449123d94b0/2026-02-18T11:47:00.822579_f95467f5.csv", } ) } @@ -507,9 +509,9 @@ def handler(event, context, local=False): results_data.append( { **row, # Include all original data - "uprn": uprn, - "domna_found_address": found_address, - "domna_lexiscore": score, + "address2uprn_uprn": uprn, + "address2uprn_address": found_address, + "address2uprn_lexiscore": score, } ) else: @@ -519,9 +521,9 @@ def handler(event, context, local=False): results_data.append( { **row, # Include all original data - "uprn": None, - "domna_found_address": None, - "domna_lexiscore": None, + "address2uprn_uprn": None, + "address2uprn_address": None, + "address2uprn_lexiscore": None, } ) @@ -533,9 +535,9 @@ def handler(event, context, local=False): results_data.append( { **row, - "uprn": None, - "domna_found_address": None, - "domna_lexiscore": None, + "address2uprn_uprn": None, + "address2uprn_address": None, + "address2uprn_lexiscore": None, "error": str(e), } ) diff --git a/backend/ordanceSurvey/main.py b/backend/ordanceSurvey/main.py index 5961aa16..4200bd24 100644 --- a/backend/ordanceSurvey/main.py +++ b/backend/ordanceSurvey/main.py @@ -44,10 +44,7 @@ def check_if_post_code_exists_in_db_cache(postcode): if response.get("status") != 200 or "data" not in response: logger.error(f"OS Places API failed for {postcode}: {response}") - raise RuntimeError( - "A postcode that doesn't exists in ordant survey and check if its real in postcode validator!!! Postcode: {postcode}" - ) - return None + return pd.DataFrame() # Save to cache new_record = PostcodeSearchModel( @@ -77,7 +74,7 @@ def handler(body: dict[str, Any], context: Any, local: bool = False) -> None: body = { "task_id": "e31f2f21-175b-4a91-a3ec-a6baa325e917", "sub_task_id": "8673913b-1a88-42d7-8578-0449123d94b0", - "s3_uri": "s3://retrofit-data-dev/ara_raw_outputs/e31f2f21-175b-4a91-a3ec-a6baa325e917/09cc7368-0850-4145-8b04-ebd84b3263c4/2026-02-18T14:00:13.228611_d2f675c3.csv", + "s3_uri": "s3://retrofit-data-dev/ara_raw_outputs/e31f2f21-175b-4a91-a3ec-a6baa325e917/6a427b6e-1ece-4983-b1e5-9bffccc53d1d/2026-03-04T16:48:22.339995_634c88fc.csv", } s3_uri: str = body.get("s3_uri", "") @@ -91,25 +88,72 @@ def handler(body: dict[str, Any], context: Any, local: bool = False) -> None: # Assumption designing with address2uprn was ran first csv_data = read_csv_from_s3_dict(bucket, key) df = pd.DataFrame(csv_data) - df["domna_lexiscore"] = pd.to_numeric(df["domna_lexiscore"], errors="coerce") + df["address2uprn_lexiscore"] = pd.to_numeric( + df["address2uprn_lexiscore"], errors="coerce" + ) needs_processing = df[ - df["domna_lexiscore"].isna() | (df["domna_lexiscore"] < lexiscore_threshold) + df["address2uprn_lexiscore"].isna() + | (df["address2uprn_lexiscore"] < lexiscore_threshold) ] grouped = needs_processing.groupby("postcode_clean") + # Initialise new columns + df["ordnance_survey_address"] = None + df["ordnance_survey_uprn"] = None + df["ordnance_survey_lexiscore"] = None + # Process each postcode group at a time for postcode, group in grouped: print(f"Processing postcode: {postcode} ({len(group)} rows)") valid_group = addressMatch.is_valid_postcode(postcode) - if valid_group: - postcode_cache = None - if postcode_cache is None: - postcode_cache = get_ordance_survey_record(postcode) - for index, row in group.iterrows(): - print("do something") - break + if not valid_group: + logger.warning(f"Postcode {postcode} is invalid, skipping") + for idx in group.index: + df.at[idx, "ordnance_survey_address"] = ( + "postcode not found in ordnance survey" + ) + df.at[idx, "ordnance_survey_uprn"] = ( + "postcode not found in ordnance survey" + ) + df.at[idx, "ordnance_survey_lexiscore"] = ( + "postcode not found in ordnance survey" + ) + continue - # Add business logic to do handling - # TODO: Copy and do ordant survey logic - # TODO: Save new results to s3 ( ask Khalim if we want to save to db) + postcode_cache = check_if_post_code_exists_in_db_cache(postcode) + if postcode_cache.empty: + logger.warning(f"No OS Places data for {postcode}") + for idx in group.index: + df.at[idx, "ordnance_survey_address"] = ( + "postcode not found in ordnance survey" + ) + df.at[idx, "ordnance_survey_uprn"] = ( + "postcode not found in ordnance survey" + ) + df.at[idx, "ordnance_survey_lexiscore"] = ( + "postcode not found in ordnance survey" + ) + continue + + for idx, row in group.iterrows(): + user_address = str(row.get("user_input", "")).strip() + if not user_address: + continue + + # Score against OS Places addresses + scores = postcode_cache["ADDRESS"].apply( + lambda addr: addressMatch.score(user_address, addr) + ) + best_idx = scores.idxmax() + best_score = scores[best_idx] + + df.at[idx, "ordnance_survey_address"] = postcode_cache.at[ + best_idx, "ADDRESS" + ] + df.at[idx, "ordnance_survey_uprn"] = postcode_cache.at[best_idx, "UPRN"] + df.at[idx, "ordnance_survey_lexiscore"] = best_score + + # TODO: Save new results to s3 (ask Khalim if we want to save to db) + df.to_csv("ordnance_survey_results.csv", index=False) + print(f"Results saved to ordnance_survey_results.csv ({len(df)} rows)") From 24b19dbf9a9701a80a83cbfd4a03287bd71e7d84 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Wed, 4 Mar 2026 17:04:14 +0000 Subject: [PATCH 005/124] spelling mistake --- backend/{ordanceSurvey => ordnanceSurvey}/handler/Dockerfile | 0 .../{ordanceSurvey => ordnanceSurvey}/handler/requirements.txt | 0 backend/{ordanceSurvey => ordnanceSurvey}/main.py | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename backend/{ordanceSurvey => ordnanceSurvey}/handler/Dockerfile (100%) rename backend/{ordanceSurvey => ordnanceSurvey}/handler/requirements.txt (100%) rename backend/{ordanceSurvey => ordnanceSurvey}/main.py (100%) diff --git a/backend/ordanceSurvey/handler/Dockerfile b/backend/ordnanceSurvey/handler/Dockerfile similarity index 100% rename from backend/ordanceSurvey/handler/Dockerfile rename to backend/ordnanceSurvey/handler/Dockerfile diff --git a/backend/ordanceSurvey/handler/requirements.txt b/backend/ordnanceSurvey/handler/requirements.txt similarity index 100% rename from backend/ordanceSurvey/handler/requirements.txt rename to backend/ordnanceSurvey/handler/requirements.txt diff --git a/backend/ordanceSurvey/main.py b/backend/ordnanceSurvey/main.py similarity index 100% rename from backend/ordanceSurvey/main.py rename to backend/ordnanceSurvey/main.py From eda2fb36c66c5b591236b656c6f6a8507d2f0477 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Wed, 4 Mar 2026 17:19:47 +0000 Subject: [PATCH 006/124] get rid of ordancy survey --- backend/OrdnanceSurvey.py | 131 -------------------------------------- 1 file changed, 131 deletions(-) delete mode 100644 backend/OrdnanceSurvey.py diff --git a/backend/OrdnanceSurvey.py b/backend/OrdnanceSurvey.py deleted file mode 100644 index a4d716d0..00000000 --- a/backend/OrdnanceSurvey.py +++ /dev/null @@ -1,131 +0,0 @@ -from functools import lru_cache -import urllib.parse -import requests -from utils.logger import setup_logger - -logger = setup_logger() - - -class OrdnanceSuveyClient: - - def __init__(self, address, postcode, api_key): - """ - This class is tasked with interaction with the ordnance survey API. - :param address: The address for the property to search for - :param postcode: The postcode for the property to search for - """ - - self.address = address - self.postcode = postcode - self.full_address = ", ".join([self.address, self.postcode]) - self.api_key = api_key - - self.results = None - - self.most_relevant_result = None - self.property_type = None - self.built_form = None - # This will be postcode and address, as returned by the ordnance survey - self.address_os = None - self.postcode_os = None - - def set_places_address(self): - """ - Given a response from the places api, this function will set the address and postcode of the property - """ - - if self.most_relevant_result is None: - raise ValueError("No results found - run get_places_api first") - - self.address_os = self.most_relevant_result["ADDRESS"] - - if "POSTCODE" in self.most_relevant_result: - self.postcode_os = self.most_relevant_result["POSTCODE"] - else: - self.postcode_os = self.most_relevant_result["POSTCODE_LOCATOR"] - # We strip out the postcode from the address as this is already stored separately - self.address_os = self.address_os.replace(self.postcode_os, "").strip() - # Remove trailing comma - self.address_os = self.address_os.rstrip(",").strip() - # Convert to title case - self.address_os = self.address_os.title() - # Make sure postcode is upper case - self.postcode_os = self.postcode_os.upper() - - @lru_cache(maxsize=128) - def get_places_api(self, filter_by_postcode=False): - """ - This method is tasked with getting the places api from the Ordnance Survey. - """ - - if not self.api_key: - raise ValueError("Ordnance Survey API key not specified") - - encoded_address_query = urllib.parse.quote(self.full_address) - - url = ( - f"https://api.os.uk/search/places/v1/find?query={encoded_address_query}&dataset=DPA,LPI&matchprecision=10" - f"&key={self.api_key}" - ) - - response = requests.get(url) - if response.status_code == 200: - data = response.json() - res = data["results"] - - if filter_by_postcode: - results = [] - for r in res: - if "DPA" in r: - if r["DPA"]["POSTCODE"] == self.postcode: - results.append(r) - elif "LPI" in r: - if r["LPI"]["POSTCODE_LOCATOR"] == self.postcode: - results.append(r) - else: - raise ValueError("Could not find postcode in either DPA or LPI") - else: - results = res - - self.results = results - - # Extract some details about the best match - self.most_relevant_result = self.results[0]["DPA"] if "DPA" in self.results[0] else self.results[0]["LPI"] - - self.parse_classification_code(self.most_relevant_result["CLASSIFICATION_CODE"]) - self.set_places_address() - - else: - logger.info("Could not find any results for the provided address and postcode") - - return {"status": response.status_code} - - def parse_classification_code(self, classification_code: str): - """ - This function will convert the classification code, returned by the OS places api, to a property type that is - compatible with the EPC database. - - The various classifications cane be found here: - https://osdatahub.os.uk/docs/places/technicalSpecification - - Under LPI Output, CLASSIFICATION_CODE is described, and a link is provided to the full table of classifications - For these purposes, we do not need the full classification as this includes non-residential properties. We only - parse the ones of interest to us - :return: - """ - - value_map = { - # In the OS api, "RD" is a "Dwelling" however this is not valid property type in the EPC database - 'RD': {}, - 'RD02': {'property_type': 'House', 'built_form': 'Detached'}, - 'RD03': {'property_type': 'House', 'built_form': 'Semi-Detached'}, - 'RD04': {'property_type': 'House', 'built_form': 'Mid-Terrace'}, - 'RD06': {'property_type': 'Flat'}, - } - # Other classifications can be found in here: - # https://osdatahub.os.uk/docs/places/technicalSpecification in the CLASSIFICATION_CODE description. - # A lookup table csv can be downloaded which contains all of the codes - - mapped = value_map.get(classification_code, {}) - self.property_type = mapped.get("property_type", "") - self.built_form = mapped.get("built_form", "") From ca6ee9c3c67d0e2c230a3a040d9d4471b383217b Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 6 Mar 2026 10:58:20 +0000 Subject: [PATCH 007/124] empty commit --- backend/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/README.md b/backend/README.md index b8e859c2..9671b7b3 100644 --- a/backend/README.md +++ b/backend/README.md @@ -364,5 +364,5 @@ Here's what you should do: function. By following these steps, you should have your custom domain properly configured and pointing to your AWS Lambda -function via the CloudFront distribution. +function via the CloudFront distribution From 840ce73111e293607e29742a14a2d734847fdbd2 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 6 Mar 2026 11:16:11 +0000 Subject: [PATCH 008/124] set batch_size to 1 for engine tf deployment --- infrastructure/terraform/lambda/engine/main.tf | 2 +- infrastructure/terraform/lambda/engine/variables.tf | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/infrastructure/terraform/lambda/engine/main.tf b/infrastructure/terraform/lambda/engine/main.tf index 9d44c9ed..24c0d8d9 100644 --- a/infrastructure/terraform/lambda/engine/main.tf +++ b/infrastructure/terraform/lambda/engine/main.tf @@ -24,8 +24,8 @@ module "lambda" { image_uri = local.image_uri - # Optional: Set maximum_concurrency to limit concurrent SQS-triggered invocations (2-1000) maximum_concurrency = var.maximum_concurrency + batch_size = var.batch_size environment = merge( { diff --git a/infrastructure/terraform/lambda/engine/variables.tf b/infrastructure/terraform/lambda/engine/variables.tf index 9805d409..592da24c 100644 --- a/infrastructure/terraform/lambda/engine/variables.tf +++ b/infrastructure/terraform/lambda/engine/variables.tf @@ -23,6 +23,11 @@ variable "maximum_concurrency" { description = "Maximum number of concurrent Lambda invocations from SQS (2-1000). null = no limit." } +variable "batch_size" { + type = number + default = 1 +} + variable "db_host" { type = string sensitive = true From a2db212dcece456d3de56170890fb91c423a06c4 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 6 Mar 2026 11:28:35 +0000 Subject: [PATCH 009/124] also set timeout and memory_size --- infrastructure/terraform/lambda/engine/main.tf | 2 ++ infrastructure/terraform/lambda/engine/variables.tf | 12 ++++++++++++ 2 files changed, 14 insertions(+) diff --git a/infrastructure/terraform/lambda/engine/main.tf b/infrastructure/terraform/lambda/engine/main.tf index 24c0d8d9..35c00fa3 100644 --- a/infrastructure/terraform/lambda/engine/main.tf +++ b/infrastructure/terraform/lambda/engine/main.tf @@ -26,6 +26,8 @@ module "lambda" { maximum_concurrency = var.maximum_concurrency batch_size = var.batch_size + timeout = var.timeout + memory_size = var.memory_size environment = merge( { diff --git a/infrastructure/terraform/lambda/engine/variables.tf b/infrastructure/terraform/lambda/engine/variables.tf index 592da24c..0a74ad5b 100644 --- a/infrastructure/terraform/lambda/engine/variables.tf +++ b/infrastructure/terraform/lambda/engine/variables.tf @@ -28,6 +28,18 @@ variable "batch_size" { default = 1 } +variable "timeout" { + type = number + default = 900 + description = "Lambda timeout in seconds" +} + +variable "memory_size" { + type = number + default = 3008 + description = "Lambda memory size in MB" +} + variable "db_host" { type = string sensitive = true From 815ce010827bd46a72e22f1936146c7c68d36f2a Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Fri, 6 Mar 2026 12:51:08 +0000 Subject: [PATCH 010/124] lambda code works locally --- backend/address2UPRN/main.py | 33 +++++++--------- backend/app/db/models/postcode_search.py | 24 ++++++++++++ backend/ordnanceSurvey/handler/Dockerfile | 25 ++++++++++++ .../ordnanceSurvey/handler/requirements.txt | 11 ++++++ .../local_handler/docker-compose.yml | 11 ++++++ .../local_handler/invoke_local_lambda.py | 29 ++++++++++++++ backend/ordnanceSurvey/main.py | 38 +++++++++++++------ 7 files changed, 140 insertions(+), 31 deletions(-) create mode 100644 backend/app/db/models/postcode_search.py create mode 100644 backend/ordnanceSurvey/local_handler/docker-compose.yml create mode 100644 backend/ordnanceSurvey/local_handler/invoke_local_lambda.py diff --git a/backend/address2UPRN/main.py b/backend/address2UPRN/main.py index 53e50617..ea588a77 100644 --- a/backend/address2UPRN/main.py +++ b/backend/address2UPRN/main.py @@ -436,19 +436,6 @@ def handler(event, context, local=False): # Process the rows logger.info(f"Processing {len(df)} rows for task {task_id}") - # Create user_input column by concatenating Address columns if not already present - if "user_input" not in df.columns: - df["user_input"] = ( - df["Address 1"].fillna("") - + " " - + df["Address 2"].fillna("") - + " " - + df["Address 3"].fillna("") - ).str.strip() - logger.info(f"Created user_input column from Address 1 and Address 2") - else: - logger.info(f"user_input column already present in data") - clean_df = df.dropna(subset=["postcode_clean"]) postcode_to_addresses = { @@ -487,23 +474,29 @@ def handler(event, context, local=False): # Process each address in this postcode with the same EPC data for row in postcode_rows: try: - user_input = row.get("user_input", "") - if not user_input: + # Concatenate Address columns directly + address2uprn_user_input = ( + str(row.get("Address 1", "")).strip() + " " + + str(row.get("Address 2", "")).strip() + " " + + str(row.get("Address 3", "")).strip() + ).strip() + + if not address2uprn_user_input: logger.warning( - f"Skipping row with missing user_input for postcode {postcode}" + f"Skipping row with missing address components for postcode {postcode}" ) continue # Get UPRN using the pre-fetched EPC data with all return options result = get_uprn_with_epc_df( - user_inputed_address=user_input, epc_df=epc_df, verbose=True + user_inputed_address=address2uprn_user_input, epc_df=epc_df, verbose=True ) # Parse result tuple if successful if result: uprn, found_address, score = result logger.info( - f"Found UPRN for {user_input} in {postcode}: {uprn} (score: {score})" + f"Found UPRN for {address2uprn_user_input} in {postcode}: {uprn} (score: {score})" ) results_data.append( @@ -516,7 +509,7 @@ def handler(event, context, local=False): ) else: logger.warning( - f"No UPRN found for {user_input} in {postcode}" + f"No UPRN found for {address2uprn_user_input} in {postcode}" ) results_data.append( { @@ -529,7 +522,7 @@ def handler(event, context, local=False): except Exception as e: logger.error( - f"Error processing address {row.get('user_input', 'unknown')}: {e}" + f"Error processing address {row.get('address2uprn_user_input', 'unknown')}: {e}" ) # Still add the row with error markers results_data.append( diff --git a/backend/app/db/models/postcode_search.py b/backend/app/db/models/postcode_search.py new file mode 100644 index 00000000..1e3e03b8 --- /dev/null +++ b/backend/app/db/models/postcode_search.py @@ -0,0 +1,24 @@ +import pytz +import datetime +from sqlalchemy import ( + Column, + BigInteger, + Text, + DateTime, +) +from sqlalchemy.dialects.postgresql import JSONB +from sqlalchemy.ext.declarative import declarative_base + +Base = declarative_base() + + +class PostcodeSearchModel(Base): + __tablename__ = "postcode_search" + + id = Column(BigInteger, primary_key=True, autoincrement=True) + postcode = Column(Text, nullable=False) + result_data = Column(JSONB, nullable=True) + + created_at = Column( + DateTime(timezone=True), nullable=False, default=datetime.datetime.now(pytz.utc) + ) diff --git a/backend/ordnanceSurvey/handler/Dockerfile b/backend/ordnanceSurvey/handler/Dockerfile index e69de29b..6a3cbe26 100644 --- a/backend/ordnanceSurvey/handler/Dockerfile +++ b/backend/ordnanceSurvey/handler/Dockerfile @@ -0,0 +1,25 @@ +FROM public.ecr.aws/lambda/python:3.11 + +ARG DEV_DB_HOST +ARG DEV_DB_PORT +ARG DEV_DB_NAME + +ENV DB_HOST=${DEV_DB_HOST} +ENV DB_PORT=${DEV_DB_PORT} +ENV DB_NAME=${DEV_DB_NAME} + +# Set working directory (Lambda task root) +WORKDIR /var/task + +COPY backend/ordnanceSurvey/handler/requirements.txt . + +RUN pip install --no-cache-dir -r requirements.txt + +# Copy necessary files for database and utility imports +COPY utils/ utils/ +COPY backend/ backend/ +COPY datatypes/ datatypes/ + +# Lambda handler +CMD ["backend/ordnanceSurvey/main.handler"] + diff --git a/backend/ordnanceSurvey/handler/requirements.txt b/backend/ordnanceSurvey/handler/requirements.txt index e69de29b..6ef41b2d 100644 --- a/backend/ordnanceSurvey/handler/requirements.txt +++ b/backend/ordnanceSurvey/handler/requirements.txt @@ -0,0 +1,11 @@ +pandas==2.2.2 +numpy<2.0 +requests +tqdm +openpyxl +epc-api-python==1.0.2 +boto3==1.35.44 +sqlmodel +sqlalchemy==2.0.36 +psycopg2-binary==2.9.10 +pydantic-settings==2.6.0 \ No newline at end of file diff --git a/backend/ordnanceSurvey/local_handler/docker-compose.yml b/backend/ordnanceSurvey/local_handler/docker-compose.yml new file mode 100644 index 00000000..5f54e7da --- /dev/null +++ b/backend/ordnanceSurvey/local_handler/docker-compose.yml @@ -0,0 +1,11 @@ +version: "3.9" + +services: + ordnance-survey-lambda: + build: + context: ../../../ + dockerfile: backend/ordnanceSurvey/handler/Dockerfile + ports: + - "9000:8080" + env_file: + - ../../../.env \ No newline at end of file diff --git a/backend/ordnanceSurvey/local_handler/invoke_local_lambda.py b/backend/ordnanceSurvey/local_handler/invoke_local_lambda.py new file mode 100644 index 00000000..c25f2d20 --- /dev/null +++ b/backend/ordnanceSurvey/local_handler/invoke_local_lambda.py @@ -0,0 +1,29 @@ +#!/usr/bin/env python3 +import json +import requests + +HOST = "localhost" +PORT = "9000" + +LAMBDA_URL = f"http://{HOST}:{PORT}/2015-03-31/functions/function/invocations" + +payload = { + "Records": [ + { + "body": json.dumps( + { + "task_id": "e31f2f21-175b-4a91-a3ec-a6baa325e917", + "sub_task_id": "8673913b-1a88-42d7-8578-0449123d94b0", + "s3_uri": "s3://retrofit-data-dev/ara_raw_outputs/e31f2f21-175b-4a91-a3ec-a6baa325e917/6a427b6e-1ece-4983-b1e5-9bffccc53d1d/2026-03-04T16:48:22.339995_634c88fc.csv", + "lexiscore_column": "address2uprn_lexiscore", + } + ) + } + ] +} + +response = requests.post(LAMBDA_URL, json=payload) + +print("Status code:", response.status_code) +print("Response:") +print(response.text) diff --git a/backend/ordnanceSurvey/main.py b/backend/ordnanceSurvey/main.py index 4200bd24..6c4f3080 100644 --- a/backend/ordnanceSurvey/main.py +++ b/backend/ordnanceSurvey/main.py @@ -68,17 +68,19 @@ def get_ordance_survey_record(row, cache=None): def handler(body: dict[str, Any], context: Any, local: bool = False) -> None: # delete this line after test - local = True + # local = True # Example SQS message for testing (copy and paste into SQS): if local is True: body = { "task_id": "e31f2f21-175b-4a91-a3ec-a6baa325e917", "sub_task_id": "8673913b-1a88-42d7-8578-0449123d94b0", "s3_uri": "s3://retrofit-data-dev/ara_raw_outputs/e31f2f21-175b-4a91-a3ec-a6baa325e917/6a427b6e-1ece-4983-b1e5-9bffccc53d1d/2026-03-04T16:48:22.339995_634c88fc.csv", + "lexiscore_column": "address2uprn_lexiscore", } s3_uri: str = body.get("s3_uri", "") lexiscore_threshold: float = body.get("lexiscore_threshold", 0.5) + lexiscore_column: str = body.get("lexiscore_column", None) if s3_uri == "": raise RuntimeError("Missing s3_uri in message body") @@ -88,13 +90,17 @@ def handler(body: dict[str, Any], context: Any, local: bool = False) -> None: # Assumption designing with address2uprn was ran first csv_data = read_csv_from_s3_dict(bucket, key) df = pd.DataFrame(csv_data) - df["address2uprn_lexiscore"] = pd.to_numeric( - df["address2uprn_lexiscore"], errors="coerce" - ) - needs_processing = df[ - df["address2uprn_lexiscore"].isna() - | (df["address2uprn_lexiscore"] < lexiscore_threshold) - ] + df = df.head(5) + + # If lexiscore_column is specified, use it; otherwise process all rows + if lexiscore_column and lexiscore_column in df.columns: + df[lexiscore_column] = pd.to_numeric(df[lexiscore_column], errors="coerce") + needs_processing = df[ + df[lexiscore_column].isna() | (df[lexiscore_column] < lexiscore_threshold) + ] + else: + # Default: process all rows + needs_processing = df grouped = needs_processing.groupby("postcode_clean") @@ -137,13 +143,21 @@ def handler(body: dict[str, Any], context: Any, local: bool = False) -> None: continue for idx, row in group.iterrows(): - user_address = str(row.get("user_input", "")).strip() - if not user_address: + # Concatenate Address columns directly + ordnancy_survey_user_input = ( + str(row.get("Address 1", "")).strip() + + " " + + str(row.get("Address 2", "")).strip() + + " " + + str(row.get("Address 3", "")).strip() + ).strip() + + if not ordnancy_survey_user_input: continue # Score against OS Places addresses scores = postcode_cache["ADDRESS"].apply( - lambda addr: addressMatch.score(user_address, addr) + lambda addr: addressMatch.score(ordnancy_survey_user_input, addr) ) best_idx = scores.idxmax() best_score = scores[best_idx] @@ -157,3 +171,5 @@ def handler(body: dict[str, Any], context: Any, local: bool = False) -> None: # TODO: Save new results to s3 (ask Khalim if we want to save to db) df.to_csv("ordnance_survey_results.csv", index=False) print(f"Results saved to ordnance_survey_results.csv ({len(df)} rows)") + + # TODO upload to s3 once you get confirmation from Khalim or db From 071a67e501bb760692925e7fe30bd584b3708169 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Fri, 6 Mar 2026 13:29:25 +0000 Subject: [PATCH 011/124] ordnancesurvey deployment --- .github/workflows/deploy_terraform.yml | 39 +++++++++++++ backend/address2UPRN/main.py | 12 ++-- backend/ordnanceSurvey/main.py | 57 ++++++++++++++++++- .../terraform/lambda/ordnanceSurvey/main.tf | 57 +++++++++++++++++++ .../lambda/ordnanceSurvey/provider.tf | 16 ++++++ .../lambda/ordnanceSurvey/variables.tf | 32 +++++++++++ infrastructure/terraform/shared/main.tf | 34 ++++++++++- 7 files changed, 239 insertions(+), 8 deletions(-) create mode 100644 infrastructure/terraform/lambda/ordnanceSurvey/main.tf create mode 100644 infrastructure/terraform/lambda/ordnanceSurvey/provider.tf create mode 100644 infrastructure/terraform/lambda/ordnanceSurvey/variables.tf diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index 4c9ce44a..aac49923 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -242,3 +242,42 @@ jobs: AWS_REGION: ${{ secrets.DEV_AWS_REGION }} + # ============================================================ + # 2️⃣ Build OrdanceSurvey image and Push + # ============================================================ + ordnanceSurvey_image: + needs: [determine_stage, shared_terraform] + uses: ./.github/workflows/_build_image.yml + with: + ecr_repo: ordnance-${{ needs.determine_stage.outputs.stage }} + dockerfile_path: backend/ordnanceSurvey/handler/Dockerfile + build_context: . + build_args: | + DEV_DB_HOST=$DEV_DB_HOST + DEV_DB_PORT=$DEV_DB_PORT + DEV_DB_NAME=$DEV_DB_NAME + secrets: + AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} + AWS_REGION: ${{ secrets.DEV_AWS_REGION }} + DEV_DB_HOST: ${{ secrets.DEV_DB_HOST }} + DEV_DB_PORT: ${{ secrets.DEV_DB_PORT }} + DEV_DB_NAME: ${{ secrets.DEV_DB_NAME }} + + # ============================================================ + # 3️⃣ Deploy OrdanceSurvey Lambda + # ============================================================ + ordnanceSurvey_lambda: + needs: [ordnanceSurvey_image, determine_stage] + uses: ./.github/workflows/_deploy_lambda.yml + with: + lambda_name: ordnanceSurvey + lambda_path: infrastructure/terraform/lambda/ordnanceSurvey + stage: ${{ needs.determine_stage.outputs.stage }} + ecr_repo: postcode_splitter-${{ needs.determine_stage.outputs.stage }} + image_digest: ${{ needs.ordnanceSurvey_image.outputs.image_digest }} + terraform_apply: ${{ needs.determine_stage.outputs.terraform_apply }} + secrets: + AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} + AWS_REGION: ${{ secrets.DEV_AWS_REGION }} \ No newline at end of file diff --git a/backend/address2UPRN/main.py b/backend/address2UPRN/main.py index ea588a77..33cb6ff9 100644 --- a/backend/address2UPRN/main.py +++ b/backend/address2UPRN/main.py @@ -476,9 +476,11 @@ def handler(event, context, local=False): try: # Concatenate Address columns directly address2uprn_user_input = ( - str(row.get("Address 1", "")).strip() + " " + - str(row.get("Address 2", "")).strip() + " " + - str(row.get("Address 3", "")).strip() + str(row.get("Address 1", "")).strip() + + " " + + str(row.get("Address 2", "")).strip() + + " " + + str(row.get("Address 3", "")).strip() ).strip() if not address2uprn_user_input: @@ -489,7 +491,9 @@ def handler(event, context, local=False): # Get UPRN using the pre-fetched EPC data with all return options result = get_uprn_with_epc_df( - user_inputed_address=address2uprn_user_input, epc_df=epc_df, verbose=True + user_inputed_address=address2uprn_user_input, + epc_df=epc_df, + verbose=True, ) # Parse result tuple if successful diff --git a/backend/ordnanceSurvey/main.py b/backend/ordnanceSurvey/main.py index 6c4f3080..0a0e2a8a 100644 --- a/backend/ordnanceSurvey/main.py +++ b/backend/ordnanceSurvey/main.py @@ -4,7 +4,7 @@ from utils.logger import setup_logger import logging from backend.utils.subtasks import subtask_handler from utils.s3 import ( - # save_csv_to_s3, + save_csv_to_s3, read_csv_from_s3 as read_csv_from_s3_dict, parse_s3_uri, ) @@ -17,6 +17,9 @@ from backend.utils.ordnance_survey import ( ) from backend.app.config import get_settings from sqlalchemy import select +from datetime import datetime +import uuid +import os import pandas as pd @@ -64,6 +67,47 @@ def get_ordance_survey_record(row, cache=None): # process cache with row +def save_results_to_s3( + results_df: pd.DataFrame, task_id: str, sub_task_id: str, bucket_name: str = None +) -> bool: + """ + Save results DataFrame to S3 as CSV in a parent folder structure. + + :param results_df: The DataFrame containing results + :param task_id: The task ID (used for file naming) + :param sub_task_id: The subtask ID (used for file naming) + :param bucket_name: The S3 bucket name (defaults to env variable) + :return: True if successful, False otherwise + """ + if bucket_name is None: + bucket_name = os.getenv("S3_BUCKET_NAME") + + if not bucket_name: + logger.error( + "S3 bucket name not provided and S3_BUCKET_NAME environment variable not set" + ) + return False + + try: + # Create a filename with timestamp and UUID + file_name = f"{datetime.now().isoformat()}_{str(uuid.uuid4())[:8]}" + file_key = f"ara_ordnance_survey_outputs/{task_id}/{sub_task_id}/ordnanceSurvey/{file_name}.csv" + + # Save to S3 + success = save_csv_to_s3(results_df, bucket_name, file_key) + + if success: + logger.info(f"Successfully saved results to s3://{bucket_name}/{file_key}") + return True + else: + logger.error(f"Failed to save results to S3") + return False + + except Exception as e: + logger.error(f"Error saving results to S3: {str(e)}") + return False + + @subtask_handler() # This assumes task_id and subtask_id is defined in event.Records.body def handler(body: dict[str, Any], context: Any, local: bool = False) -> None: @@ -81,6 +125,8 @@ def handler(body: dict[str, Any], context: Any, local: bool = False) -> None: s3_uri: str = body.get("s3_uri", "") lexiscore_threshold: float = body.get("lexiscore_threshold", 0.5) lexiscore_column: str = body.get("lexiscore_column", None) + task_id: str = body.get("task_id", "") + sub_task_id: str = body.get("sub_task_id", "") if s3_uri == "": raise RuntimeError("Missing s3_uri in message body") @@ -168,8 +214,13 @@ def handler(body: dict[str, Any], context: Any, local: bool = False) -> None: df.at[idx, "ordnance_survey_uprn"] = postcode_cache.at[best_idx, "UPRN"] df.at[idx, "ordnance_survey_lexiscore"] = best_score - # TODO: Save new results to s3 (ask Khalim if we want to save to db) + # Save results locally df.to_csv("ordnance_survey_results.csv", index=False) print(f"Results saved to ordnance_survey_results.csv ({len(df)} rows)") - # TODO upload to s3 once you get confirmation from Khalim or db + # Save results to S3 + if task_id and sub_task_id: + try: + save_results_to_s3(df, task_id, sub_task_id) + except Exception as s3_error: + logger.error(f"Failed to save results to S3: {s3_error}") diff --git a/infrastructure/terraform/lambda/ordnanceSurvey/main.tf b/infrastructure/terraform/lambda/ordnanceSurvey/main.tf new file mode 100644 index 00000000..baa673e1 --- /dev/null +++ b/infrastructure/terraform/lambda/ordnanceSurvey/main.tf @@ -0,0 +1,57 @@ +data "terraform_remote_state" "shared" { + backend = "s3" + config = { + bucket = "assessment-model-terraform-state" + key = "env:/${var.stage}/terraform.tfstate" + region = "eu-west-2" + } +} +data "aws_secretsmanager_secret_version" "db_credentials" { + secret_id = "${var.stage}/assessment_model/db_credentials" +} +locals { + db_credentials = jsondecode(data.aws_secretsmanager_secret_version.db_credentials.secret_string) +} + +module "ordnance" { + source = "../modules/lambda_with_sqs" + + name = ordnanceSurvey #"address2uprn" for example + stage = var.stage + + image_uri = local.image_uri + + timeout = 900 + + # Optional: Set maximum_concurrency to limit concurrent SQS-triggered invocations (2-1000) + maximum_concurrency = var.maximum_concurrency + + environment = merge( + { + STAGE = var.stage + LOG_LEVEL = "info" + DB_USERNAME = local.db_credentials.db_assessment_model_username + DB_PASSWORD = local.db_credentials.db_assessment_model_password + GOOGLE_SOLAR_API_KEY = "test" + SAP_PREDICTIONS_BUCKET = "test" + CARBON_PREDICTIONS_BUCKET = "test" + HEAT_PREDICTIONS_BUCKET = "test" + HEATING_KWH_PREDICTIONS_BUCKET = "test" + HOTWATER_KWH_PREDICTIONS_BUCKET = "test" + API_KEY = "test" + ENVIRONMENT = "test" + SECRET_KEY = "test" + PLAN_TRIGGER_BUCKET = "test" + DATA_BUCKET = "test" + ENGINE_SQS_URL = "test" + ENERGY_ASSESSMENTS_BUCKET = "test" + S3_BUCKET_NAME = data.terraform_remote_state.shared.outputs.retrofit_sap_data_bucket_name + }, + ) +} + +# Attach S3 read policy to the Lambda execution role +resource "aws_iam_role_policy_attachment" "ordanceSurvey_read_and_write" { + role = module.ordnance.role_name + policy_arn = data.terraform_remote_state.shared.outputs.ordnance_s3_read_and_write_arn +} diff --git a/infrastructure/terraform/lambda/ordnanceSurvey/provider.tf b/infrastructure/terraform/lambda/ordnanceSurvey/provider.tf new file mode 100644 index 00000000..37c412ce --- /dev/null +++ b/infrastructure/terraform/lambda/ordnanceSurvey/provider.tf @@ -0,0 +1,16 @@ +terraform { + required_providers { + aws = { + source = "hashicorp/aws" + version = "~> 4.16" + } + } + + backend "s3" { + bucket = REPLACE_ME + key = "terraform.tfstate" + region = "eu-west-2" + } + + required_version = ">= 1.2.0" +} \ No newline at end of file diff --git a/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf b/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf new file mode 100644 index 00000000..e0061321 --- /dev/null +++ b/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf @@ -0,0 +1,32 @@ +variable "lambda_name" { + type = string + description = "Logical name of the lambda (e.g. address2uprn)" +} + +variable "stage" { + description = "Deployment stage (e.g. dev, prod)" + type = string +} +variable "ecr_repo_url" { + type = string + description = "ECR repository URL (no tag, no digest)" +} + +variable "image_digest" { + type = string + description = "Image digest (sha256:...)" +} + +variable "maximum_concurrency" { + type = number + default = null + description = "Maximum number of concurrent Lambda invocations from SQS (2-1000). null = no limit." +} + +locals { + image_uri = "${var.ecr_repo_url}@${var.image_digest}" +} + +output "resolved_image_uri" { + value = local.image_uri +} diff --git a/infrastructure/terraform/shared/main.tf b/infrastructure/terraform/shared/main.tf index cca3394f..df519f4f 100644 --- a/infrastructure/terraform/shared/main.tf +++ b/infrastructure/terraform/shared/main.tf @@ -414,4 +414,36 @@ module "categorisation_registry" { source = "../modules/container_registry" name = "categorisation" stage = var.stage -} \ No newline at end of file +} + + +################################################ +# OrdnanceSurveyAPI – Lambda +################################################ +module "ordnance_state_bucket" { + source = "../modules/tf_state_bucket" + bucket_name = "ordnance-terraform-state" + +} + +module "ordnance_registry" { + source = "../modules/container_registry" + name = "ordnance" + stage = var.stage + +} + +# S3 policy for postcode splitter to read from retrofit data bucket +module "ordnance_s3_read_and_write" { + source = "../modules/s3_iam_policy" + + policy_name = "Address2UPRNReadandWriteS3" + policy_description = "Allow ordnance Lambda to read and write from retrofit-data bucket" + bucket_arns = ["arn:aws:s3:::retrofit-data-${var.stage}"] + actions = ["s3:GetObject", "s3:ListBucket", "s3:PutObject"] + resource_paths = ["/*"] +} + +output "ordnance_s3_read_and_write_arn" { + value = module.ordnance_s3_read_and_write.policy_arn +} From a147c9111191e803473c891328542a5856998ba3 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Fri, 6 Mar 2026 13:41:54 +0000 Subject: [PATCH 012/124] get rid of redudant env --- .../terraform/lambda/address2UPRN/main.tf | 13 ------------- .../terraform/lambda/ordnanceSurvey/main.tf | 14 +------------- 2 files changed, 1 insertion(+), 26 deletions(-) diff --git a/infrastructure/terraform/lambda/address2UPRN/main.tf b/infrastructure/terraform/lambda/address2UPRN/main.tf index 2d185497..3afc8738 100644 --- a/infrastructure/terraform/lambda/address2UPRN/main.tf +++ b/infrastructure/terraform/lambda/address2UPRN/main.tf @@ -33,19 +33,6 @@ module "address2uprn" { LOG_LEVEL = "info" DB_USERNAME = local.db_credentials.db_assessment_model_username DB_PASSWORD = local.db_credentials.db_assessment_model_password - GOOGLE_SOLAR_API_KEY = "test" - SAP_PREDICTIONS_BUCKET = "test" - CARBON_PREDICTIONS_BUCKET = "test" - HEAT_PREDICTIONS_BUCKET = "test" - HEATING_KWH_PREDICTIONS_BUCKET = "test" - HOTWATER_KWH_PREDICTIONS_BUCKET = "test" - API_KEY = "test" - ENVIRONMENT = "test" - SECRET_KEY = "test" - PLAN_TRIGGER_BUCKET = "test" - DATA_BUCKET = "test" - ENGINE_SQS_URL = "test" - ENERGY_ASSESSMENTS_BUCKET = "test" S3_BUCKET_NAME = data.terraform_remote_state.shared.outputs.retrofit_sap_data_bucket_name }, ) diff --git a/infrastructure/terraform/lambda/ordnanceSurvey/main.tf b/infrastructure/terraform/lambda/ordnanceSurvey/main.tf index baa673e1..3af33ad7 100644 --- a/infrastructure/terraform/lambda/ordnanceSurvey/main.tf +++ b/infrastructure/terraform/lambda/ordnanceSurvey/main.tf @@ -32,20 +32,8 @@ module "ordnance" { LOG_LEVEL = "info" DB_USERNAME = local.db_credentials.db_assessment_model_username DB_PASSWORD = local.db_credentials.db_assessment_model_password - GOOGLE_SOLAR_API_KEY = "test" - SAP_PREDICTIONS_BUCKET = "test" - CARBON_PREDICTIONS_BUCKET = "test" - HEAT_PREDICTIONS_BUCKET = "test" - HEATING_KWH_PREDICTIONS_BUCKET = "test" - HOTWATER_KWH_PREDICTIONS_BUCKET = "test" - API_KEY = "test" - ENVIRONMENT = "test" - SECRET_KEY = "test" - PLAN_TRIGGER_BUCKET = "test" - DATA_BUCKET = "test" - ENGINE_SQS_URL = "test" - ENERGY_ASSESSMENTS_BUCKET = "test" S3_BUCKET_NAME = data.terraform_remote_state.shared.outputs.retrofit_sap_data_bucket_name + ORDNANCE_SURVEY_API_KEY:= "Reminder to add This somehow, ask if we are doing aws secret method or github secret method" }, ) } From ac344be09408e890be56ba348e18beb9919a5d1a Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Fri, 6 Mar 2026 13:44:57 +0000 Subject: [PATCH 013/124] re add --- OrdnanceSurvey.py | 139 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 139 insertions(+) create mode 100644 OrdnanceSurvey.py diff --git a/OrdnanceSurvey.py b/OrdnanceSurvey.py new file mode 100644 index 00000000..1ae66152 --- /dev/null +++ b/OrdnanceSurvey.py @@ -0,0 +1,139 @@ +from functools import lru_cache +import urllib.parse +import requests +from utils.logger import setup_logger + +logger = setup_logger() + + +class OrdnanceSuveyClient: + + def __init__(self, address, postcode, api_key): + """ + This class is tasked with interaction with the ordnance survey API. + :param address: The address for the property to search for + :param postcode: The postcode for the property to search for + """ + + self.address = address + self.postcode = postcode + self.full_address = ", ".join([self.address, self.postcode]) + self.api_key = api_key + + self.results = None + + self.most_relevant_result = None + self.property_type = None + self.built_form = None + # This will be postcode and address, as returned by the ordnance survey + self.address_os = None + self.postcode_os = None + + def set_places_address(self): + """ + Given a response from the places api, this function will set the address and postcode of the property + """ + + if self.most_relevant_result is None: + raise ValueError("No results found - run get_places_api first") + + self.address_os = self.most_relevant_result["ADDRESS"] + + if "POSTCODE" in self.most_relevant_result: + self.postcode_os = self.most_relevant_result["POSTCODE"] + else: + self.postcode_os = self.most_relevant_result["POSTCODE_LOCATOR"] + # We strip out the postcode from the address as this is already stored separately + self.address_os = self.address_os.replace(self.postcode_os, "").strip() + # Remove trailing comma + self.address_os = self.address_os.rstrip(",").strip() + # Convert to title case + self.address_os = self.address_os.title() + # Make sure postcode is upper case + self.postcode_os = self.postcode_os.upper() + + @lru_cache(maxsize=128) + def get_places_api(self, filter_by_postcode=False): + """ + This method is tasked with getting the places api from the Ordnance Survey. + """ + + if not self.api_key: + raise ValueError("Ordnance Survey API key not specified") + + encoded_address_query = urllib.parse.quote(self.full_address) + + url = ( + f"https://api.os.uk/search/places/v1/find?query={encoded_address_query}&dataset=DPA,LPI&matchprecision=10" + f"&key={self.api_key}" + ) + + response = requests.get(url) + if response.status_code == 200: + data = response.json() + res = data["results"] + + if filter_by_postcode: + results = [] + for r in res: + if "DPA" in r: + if r["DPA"]["POSTCODE"] == self.postcode: + results.append(r) + elif "LPI" in r: + if r["LPI"]["POSTCODE_LOCATOR"] == self.postcode: + results.append(r) + else: + raise ValueError("Could not find postcode in either DPA or LPI") + else: + results = res + + self.results = results + + # Extract some details about the best match + self.most_relevant_result = ( + self.results[0]["DPA"] + if "DPA" in self.results[0] + else self.results[0]["LPI"] + ) + + self.parse_classification_code( + self.most_relevant_result["CLASSIFICATION_CODE"] + ) + self.set_places_address() + + else: + logger.info( + "Could not find any results for the provided address and postcode" + ) + + return {"status": response.status_code} + + def parse_classification_code(self, classification_code: str): + """ + This function will convert the classification code, returned by the OS places api, to a property type that is + compatible with the EPC database. + + The various classifications cane be found here: + https://osdatahub.os.uk/docs/places/technicalSpecification + + Under LPI Output, CLASSIFICATION_CODE is described, and a link is provided to the full table of classifications + For these purposes, we do not need the full classification as this includes non-residential properties. We only + parse the ones of interest to us + :return: + """ + + value_map = { + # In the OS api, "RD" is a "Dwelling" however this is not valid property type in the EPC database + "RD": {}, + "RD02": {"property_type": "House", "built_form": "Detached"}, + "RD03": {"property_type": "House", "built_form": "Semi-Detached"}, + "RD04": {"property_type": "House", "built_form": "Mid-Terrace"}, + "RD06": {"property_type": "Flat"}, + } + # Other classifications can be found in here: + # https://osdatahub.os.uk/docs/places/technicalSpecification in the CLASSIFICATION_CODE description. + # A lookup table csv can be downloaded which contains all of the codes + + mapped = value_map.get(classification_code, {}) + self.property_type = mapped.get("property_type", "") + self.built_form = mapped.get("built_form", "") From 9852eb631bd4c1a2a0c878abca6b63c61be3d534 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Fri, 6 Mar 2026 13:49:05 +0000 Subject: [PATCH 014/124] added ordnance state --- infrastructure/terraform/lambda/ordnanceSurvey/provider.tf | 2 +- infrastructure/terraform/shared/main.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/terraform/lambda/ordnanceSurvey/provider.tf b/infrastructure/terraform/lambda/ordnanceSurvey/provider.tf index 37c412ce..b7f453f1 100644 --- a/infrastructure/terraform/lambda/ordnanceSurvey/provider.tf +++ b/infrastructure/terraform/lambda/ordnanceSurvey/provider.tf @@ -7,7 +7,7 @@ terraform { } backend "s3" { - bucket = REPLACE_ME + bucket = "ordnance-terraform-state" key = "terraform.tfstate" region = "eu-west-2" } diff --git a/infrastructure/terraform/shared/main.tf b/infrastructure/terraform/shared/main.tf index 7e46e787..905fbc78 100644 --- a/infrastructure/terraform/shared/main.tf +++ b/infrastructure/terraform/shared/main.tf @@ -472,7 +472,7 @@ module "ordnance_registry" { module "ordnance_s3_read_and_write" { source = "../modules/s3_iam_policy" - policy_name = "Address2UPRNReadandWriteS3" + policy_name = "OrdnanceSurveyReadandWriteS3" policy_description = "Allow ordnance Lambda to read and write from retrofit-data bucket" bucket_arns = ["arn:aws:s3:::retrofit-data-${var.stage}"] actions = ["s3:GetObject", "s3:ListBucket", "s3:PutObject"] From 58843a5409209d23abc99d0273a19b4948ca802f Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Fri, 6 Mar 2026 13:51:47 +0000 Subject: [PATCH 015/124] put batch size as well --- infrastructure/terraform/lambda/ordnanceSurvey/variables.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf b/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf index e0061321..e7646811 100644 --- a/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf +++ b/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf @@ -23,6 +23,11 @@ variable "maximum_concurrency" { description = "Maximum number of concurrent Lambda invocations from SQS (2-1000). null = no limit." } +variable "batch_size" { + type = number + default = 1 +} + locals { image_uri = "${var.ecr_repo_url}@${var.image_digest}" } From 8163a97b97d43fb3cc6d9ca020e82835b67e3d52 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Fri, 6 Mar 2026 13:57:33 +0000 Subject: [PATCH 016/124] get rid of df.head and control the inputs instead --- backend/ordnanceSurvey/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/ordnanceSurvey/main.py b/backend/ordnanceSurvey/main.py index 0a0e2a8a..bf8cfdaf 100644 --- a/backend/ordnanceSurvey/main.py +++ b/backend/ordnanceSurvey/main.py @@ -136,7 +136,7 @@ def handler(body: dict[str, Any], context: Any, local: bool = False) -> None: # Assumption designing with address2uprn was ran first csv_data = read_csv_from_s3_dict(bucket, key) df = pd.DataFrame(csv_data) - df = df.head(5) + # df = df.head(5) # If lexiscore_column is specified, use it; otherwise process all rows if lexiscore_column and lexiscore_column in df.columns: From ef45ed62f8542899b6ea0c61978a9cf2156db097 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Fri, 6 Mar 2026 14:53:51 +0000 Subject: [PATCH 017/124] ordance survey init file --- backend/ordnanceSurvey/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 backend/ordnanceSurvey/__init__.py diff --git a/backend/ordnanceSurvey/__init__.py b/backend/ordnanceSurvey/__init__.py new file mode 100644 index 00000000..e69de29b From 19ab0ad7574b076b01d47d516f4cab47695cb79c Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Fri, 6 Mar 2026 14:58:49 +0000 Subject: [PATCH 018/124] deleted the wrong folder aded back the origional --- .../OrdnanceSurvey.py | 24 +++++++------------ 1 file changed, 8 insertions(+), 16 deletions(-) rename OrdnanceSurvey.py => backend/OrdnanceSurvey.py (86%) diff --git a/OrdnanceSurvey.py b/backend/OrdnanceSurvey.py similarity index 86% rename from OrdnanceSurvey.py rename to backend/OrdnanceSurvey.py index 1ae66152..a4d716d0 100644 --- a/OrdnanceSurvey.py +++ b/backend/OrdnanceSurvey.py @@ -90,21 +90,13 @@ class OrdnanceSuveyClient: self.results = results # Extract some details about the best match - self.most_relevant_result = ( - self.results[0]["DPA"] - if "DPA" in self.results[0] - else self.results[0]["LPI"] - ) + self.most_relevant_result = self.results[0]["DPA"] if "DPA" in self.results[0] else self.results[0]["LPI"] - self.parse_classification_code( - self.most_relevant_result["CLASSIFICATION_CODE"] - ) + self.parse_classification_code(self.most_relevant_result["CLASSIFICATION_CODE"]) self.set_places_address() else: - logger.info( - "Could not find any results for the provided address and postcode" - ) + logger.info("Could not find any results for the provided address and postcode") return {"status": response.status_code} @@ -124,11 +116,11 @@ class OrdnanceSuveyClient: value_map = { # In the OS api, "RD" is a "Dwelling" however this is not valid property type in the EPC database - "RD": {}, - "RD02": {"property_type": "House", "built_form": "Detached"}, - "RD03": {"property_type": "House", "built_form": "Semi-Detached"}, - "RD04": {"property_type": "House", "built_form": "Mid-Terrace"}, - "RD06": {"property_type": "Flat"}, + 'RD': {}, + 'RD02': {'property_type': 'House', 'built_form': 'Detached'}, + 'RD03': {'property_type': 'House', 'built_form': 'Semi-Detached'}, + 'RD04': {'property_type': 'House', 'built_form': 'Mid-Terrace'}, + 'RD06': {'property_type': 'Flat'}, } # Other classifications can be found in here: # https://osdatahub.os.uk/docs/places/technicalSpecification in the CLASSIFICATION_CODE description. From 2973a4f2f16fc255b50cfa002ae0273814c1ad19 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 9 Mar 2026 09:39:25 +0000 Subject: [PATCH 019/124] ensure bucket root is included in s3 iam policy rules --- infrastructure/terraform/modules/s3_iam_policy/main.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/infrastructure/terraform/modules/s3_iam_policy/main.tf b/infrastructure/terraform/modules/s3_iam_policy/main.tf index 397bd963..bb317302 100644 --- a/infrastructure/terraform/modules/s3_iam_policy/main.tf +++ b/infrastructure/terraform/modules/s3_iam_policy/main.tf @@ -1,10 +1,10 @@ # Dynamically build S3 resources list from bucket ARNs and resource paths locals { - # Generate full resource ARNs by combining bucket ARNs with resource paths resources = flatten([ - for bucket_arn in var.bucket_arns : [ - for path in var.resource_paths : "${bucket_arn}${path}" - ] + for bucket_arn in var.bucket_arns : concat( + [bucket_arn], # bare ARN for bucket-level actions like ListBucket + [for path in var.resource_paths : "${bucket_arn}${path}"] + ) ]) } From 4d2305fdd28c2937bed22843a31e33761218791e Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 9 Mar 2026 09:40:35 +0000 Subject: [PATCH 020/124] add comment back in --- infrastructure/terraform/modules/s3_iam_policy/main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/infrastructure/terraform/modules/s3_iam_policy/main.tf b/infrastructure/terraform/modules/s3_iam_policy/main.tf index bb317302..0ef5c4be 100644 --- a/infrastructure/terraform/modules/s3_iam_policy/main.tf +++ b/infrastructure/terraform/modules/s3_iam_policy/main.tf @@ -1,5 +1,6 @@ # Dynamically build S3 resources list from bucket ARNs and resource paths locals { + # Generate full resource ARNs by combining bucket ARNs with resource paths resources = flatten([ for bucket_arn in var.bucket_arns : concat( [bucket_arn], # bare ARN for bucket-level actions like ListBucket From 124a34597a5e5a373b757e7b2cc36e6238e6578d Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 9 Mar 2026 12:15:22 +0000 Subject: [PATCH 021/124] save so i can run it from mealcraft --- .devcontainer/backend/post-install.sh | 24 +++++----- backend/app/config.py | 1 + backend/ordnanceSurvey/helpers.py | 66 +++++++++++++++++++++++++++ backend/ordnanceSurvey/main.py | 21 +++------ backend/ordnanceSurvey/types.py | 44 ++++++++++++++++++ backend/utils/ordnance_survey.py | 44 ------------------ 6 files changed, 129 insertions(+), 71 deletions(-) create mode 100644 backend/ordnanceSurvey/helpers.py create mode 100644 backend/ordnanceSurvey/types.py delete mode 100644 backend/utils/ordnance_survey.py diff --git a/.devcontainer/backend/post-install.sh b/.devcontainer/backend/post-install.sh index 48fbfde1..20c699d6 100644 --- a/.devcontainer/backend/post-install.sh +++ b/.devcontainer/backend/post-install.sh @@ -1,14 +1,14 @@ -mkdir -p ~/.ipython/profile_default/startup +# mkdir -p ~/.ipython/profile_default/startup -cat << 'EOF' > ~/.ipython/profile_default/startup/00-load-env.py -from dotenv import load_dotenv -import os +# cat << 'EOF' > ~/.ipython/profile_default/startup/00-load-env.py +# from dotenv import load_dotenv +# import os -# Adjust path as needed -env_path = "/workspaces/model/backend/.env" -if os.path.exists(env_path): - load_dotenv(env_path) - print("✔ Loaded .env into Jupyter kernel") -else: - print("⚠ No .env file found to load") -EOF +# # Adjust path as needed +# env_path = "/workspaces/model/backend/.env" +# if os.path.exists(env_path): +# load_dotenv(env_path) +# print("✔ Loaded .env into Jupyter kernel") +# else: +# print("⚠ No .env file found to load") +# EOF diff --git a/backend/app/config.py b/backend/app/config.py index b5b29137..e87f8374 100644 --- a/backend/app/config.py +++ b/backend/app/config.py @@ -64,6 +64,7 @@ class Settings(BaseSettings): ENERGY_ASSESSMENTS_BUCKET: str = "changeme" ORDNANCE_SURVEY_API_KEY: str = "changeme" + PLAN_TRIGGER_BUCKET: str = "changeme" # Optional AWS creds (only required in local) AWS_ACCESS_KEY_ID: Optional[str] = None diff --git a/backend/ordnanceSurvey/helpers.py b/backend/ordnanceSurvey/helpers.py new file mode 100644 index 00000000..d59060b8 --- /dev/null +++ b/backend/ordnanceSurvey/helpers.py @@ -0,0 +1,66 @@ +import urllib.parse +from pydantic import ValidationError +import requests +import pandas as pd +from utils.logger import setup_logger +from backend.ordnanceSurvey.types import PostcodeResponse + +logger = setup_logger() + + +def os_places_results_to_dataframe(data: dict) -> pd.DataFrame: + """ + Flatten the OS Places API response results into a DataFrame. + Each result contains either a DPA or LPI record. + """ + results = data.get("results", []) + rows = [] + for r in results: + if "DPA" in r: + rows.append(r["DPA"]) + elif "LPI" in r: + rows.append(r["LPI"]) + return pd.DataFrame(rows) + + +import urllib.parse +import requests +import logging +from pydantic import ValidationError + +logger = logging.getLogger(__name__) + + +def lookup_os_places(postcode: str, api_key: str) -> PostcodeResponse: + """ + Lookup a postcode using the OS Places API. + Returns a validated PostcodeResponse. + Raises exceptions on failure. + """ + if not api_key: + raise ValueError("Ordnance Survey API key not specified") + + encoded_postcode = urllib.parse.quote(postcode) + + url = ( + f"https://api.os.uk/search/places/v1/postcode?postcode={encoded_postcode}" + f"&dataset=DPA,LPI&key={api_key}" + ) + + response = requests.get(url) + + if response.status_code != 200: + logger.error( + "OS Places API error for postcode %s: %s", + postcode, + response.status_code, + ) + raise RuntimeError(f"OS Places lookup failed for postcode {postcode}") + + try: + raw = response.json() + return PostcodeResponse.model_validate(raw) + + except ValidationError as e: + logger.error("OS Places response validation failed: %s", e) + raise RuntimeError("Invalid response format from OS Places API") from e diff --git a/backend/ordnanceSurvey/main.py b/backend/ordnanceSurvey/main.py index bf8cfdaf..835910f5 100644 --- a/backend/ordnanceSurvey/main.py +++ b/backend/ordnanceSurvey/main.py @@ -1,5 +1,6 @@ from typing import Any import json +from backend.ordnanceSurvey.types import PostcodeResponse from utils.logger import setup_logger import logging from backend.utils.subtasks import subtask_handler @@ -11,7 +12,7 @@ from utils.s3 import ( from backend.utils.addressMatch import addressMatch from backend.app.db.connection import get_db_session from backend.app.db.models.postcode_search import PostcodeSearchModel -from backend.utils.ordnance_survey import ( +from backend.ordnanceSurvey.helpers import ( lookup_os_places, os_places_results_to_dataframe, ) @@ -27,6 +28,7 @@ logger: logging.Logger = setup_logger() def check_if_post_code_exists_in_db_cache(postcode): + postcode = "SE22 9AL" with get_db_session() as session: result = ( @@ -43,16 +45,12 @@ def check_if_post_code_exists_in_db_cache(postcode): # Cache miss — fetch from OS Places API api_key = get_settings().ORDNANCE_SURVEY_API_KEY - response = lookup_os_places(postcode, api_key) - - if response.get("status") != 200 or "data" not in response: - logger.error(f"OS Places API failed for {postcode}: {response}") - return pd.DataFrame() + response: PostcodeResponse = lookup_os_places(postcode, api_key) # Save to cache new_record = PostcodeSearchModel( postcode=postcode, - result_data=response["data"], + result_data=response.results, ) session.add(new_record) session.commit() @@ -60,13 +58,6 @@ def check_if_post_code_exists_in_db_cache(postcode): return os_places_results_to_dataframe(response["data"]) -def get_ordance_survey_record(row, cache=None): - if cache is None: - cache = check_if_post_code_exists_in_db_cache(postcode) - - # process cache with row - - def save_results_to_s3( results_df: pd.DataFrame, task_id: str, sub_task_id: str, bucket_name: str = None ) -> bool: @@ -100,7 +91,7 @@ def save_results_to_s3( logger.info(f"Successfully saved results to s3://{bucket_name}/{file_key}") return True else: - logger.error(f"Failed to save results to S3") + logger.error(f"Failed to save results to S3 {bucket_name}/{file_key}") return False except Exception as e: diff --git a/backend/ordnanceSurvey/types.py b/backend/ordnanceSurvey/types.py new file mode 100644 index 00000000..0631ff67 --- /dev/null +++ b/backend/ordnanceSurvey/types.py @@ -0,0 +1,44 @@ +from pydantic import BaseModel +from typing import List + + +class OrdnanceSurveyResponse(BaseModel): + RPC: str + UPRN: str + MATCH: int + UDPRN: str + STATUS: str + ADDRESS: str + LANGUAGE: str + POSTCODE: str + POST_TOWN: str + WARD_CODE: str + ENTRY_DATE: str + COUNTRY_CODE: str + X_COORDINATE: int + Y_COORDINATE: int + BUILDING_NAME: str + BLPU_STATE_CODE: str + BLPU_STATE_DATE: str + LAST_UPDATE_DATE: str + MATCH_DESCRIPTION: str + THOROUGHFARE_NAME: str + CLASSIFICATION_CODE: str + LOGICAL_STATUS_CODE: str + POSTAL_ADDRESS_CODE: str + LOCAL_CUSTODIAN_CODE: int + DELIVERY_POINT_SUFFIX: str + TOPOGRAPHY_LAYER_TOID: str + COUNTRY_CODE_DESCRIPTION: str + BLPU_STATE_CODE_DESCRIPTION: str + CLASSIFICATION_CODE_DESCRIPTION: str + POSTAL_ADDRESS_CODE_DESCRIPTION: str + LOCAL_CUSTODIAN_CODE_DESCRIPTION: str + + +class Result(BaseModel): + DPA: OrdnanceSurveyResponse + + +class PostcodeResponse(BaseModel): + results: List[Result] diff --git a/backend/utils/ordnance_survey.py b/backend/utils/ordnance_survey.py deleted file mode 100644 index 03a0e57b..00000000 --- a/backend/utils/ordnance_survey.py +++ /dev/null @@ -1,44 +0,0 @@ -import urllib.parse -import requests -import pandas as pd -from utils.logger import setup_logger - -logger = setup_logger() - - -def os_places_results_to_dataframe(data: dict) -> pd.DataFrame: - """ - Flatten the OS Places API response results into a DataFrame. - Each result contains either a DPA or LPI record. - """ - results = data.get("results", []) - rows = [] - for r in results: - if "DPA" in r: - rows.append(r["DPA"]) - elif "LPI" in r: - rows.append(r["LPI"]) - return pd.DataFrame(rows) - - -def lookup_os_places(postcode: str, api_key: str) -> dict: - """ - Lookup a postcode using the OS Places API. - Returns the full API response data or an error dict. - """ - if not api_key: - return {"error": "Ordnance Survey API key not specified", "status": 400} - - encoded_postcode = urllib.parse.quote(postcode) - url = ( - f"https://api.os.uk/search/places/v1/postcode?postcode={encoded_postcode}" - f"&dataset=DPA,LPI&key={api_key}" - ) - - response = requests.get(url) - if response.status_code != 200: - logger.error(f"OS Places API error for postcode {postcode}: {response.status_code}") - return {"error": "Failed to fetch address data", "status": response.status_code} - - data = response.json() - return {"data": data, "status": 200} From 1b9c26a2b62cb32e3bffdfbc1035954acfc6bebb Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 9 Mar 2026 12:32:20 +0000 Subject: [PATCH 022/124] back to origional format --- backend/app/config.py | 1 - backend/ordnanceSurvey/helpers.py | 32 +++++----------------- backend/ordnanceSurvey/main.py | 21 ++++++++++----- backend/ordnanceSurvey/types.py | 44 ------------------------------- 4 files changed, 22 insertions(+), 76 deletions(-) delete mode 100644 backend/ordnanceSurvey/types.py diff --git a/backend/app/config.py b/backend/app/config.py index e87f8374..b5b29137 100644 --- a/backend/app/config.py +++ b/backend/app/config.py @@ -64,7 +64,6 @@ class Settings(BaseSettings): ENERGY_ASSESSMENTS_BUCKET: str = "changeme" ORDNANCE_SURVEY_API_KEY: str = "changeme" - PLAN_TRIGGER_BUCKET: str = "changeme" # Optional AWS creds (only required in local) AWS_ACCESS_KEY_ID: Optional[str] = None diff --git a/backend/ordnanceSurvey/helpers.py b/backend/ordnanceSurvey/helpers.py index d59060b8..fcaa148a 100644 --- a/backend/ordnanceSurvey/helpers.py +++ b/backend/ordnanceSurvey/helpers.py @@ -23,44 +23,26 @@ def os_places_results_to_dataframe(data: dict) -> pd.DataFrame: return pd.DataFrame(rows) -import urllib.parse -import requests -import logging -from pydantic import ValidationError - -logger = logging.getLogger(__name__) - - -def lookup_os_places(postcode: str, api_key: str) -> PostcodeResponse: +def lookup_os_places(postcode: str, api_key: str) -> dict: """ Lookup a postcode using the OS Places API. - Returns a validated PostcodeResponse. - Raises exceptions on failure. + Returns the full API response data or an error dict. """ if not api_key: - raise ValueError("Ordnance Survey API key not specified") + return {"error": "Ordnance Survey API key not specified", "status": 400} encoded_postcode = urllib.parse.quote(postcode) - url = ( f"https://api.os.uk/search/places/v1/postcode?postcode={encoded_postcode}" f"&dataset=DPA,LPI&key={api_key}" ) response = requests.get(url) - if response.status_code != 200: logger.error( - "OS Places API error for postcode %s: %s", - postcode, - response.status_code, + f"OS Places API error for postcode {postcode}: {response.status_code}" ) - raise RuntimeError(f"OS Places lookup failed for postcode {postcode}") + return {"error": "Failed to fetch address data", "status": response.status_code} - try: - raw = response.json() - return PostcodeResponse.model_validate(raw) - - except ValidationError as e: - logger.error("OS Places response validation failed: %s", e) - raise RuntimeError("Invalid response format from OS Places API") from e + data = response.json() + return {"data": data, "status": 200} diff --git a/backend/ordnanceSurvey/main.py b/backend/ordnanceSurvey/main.py index 835910f5..bf8cfdaf 100644 --- a/backend/ordnanceSurvey/main.py +++ b/backend/ordnanceSurvey/main.py @@ -1,6 +1,5 @@ from typing import Any import json -from backend.ordnanceSurvey.types import PostcodeResponse from utils.logger import setup_logger import logging from backend.utils.subtasks import subtask_handler @@ -12,7 +11,7 @@ from utils.s3 import ( from backend.utils.addressMatch import addressMatch from backend.app.db.connection import get_db_session from backend.app.db.models.postcode_search import PostcodeSearchModel -from backend.ordnanceSurvey.helpers import ( +from backend.utils.ordnance_survey import ( lookup_os_places, os_places_results_to_dataframe, ) @@ -28,7 +27,6 @@ logger: logging.Logger = setup_logger() def check_if_post_code_exists_in_db_cache(postcode): - postcode = "SE22 9AL" with get_db_session() as session: result = ( @@ -45,12 +43,16 @@ def check_if_post_code_exists_in_db_cache(postcode): # Cache miss — fetch from OS Places API api_key = get_settings().ORDNANCE_SURVEY_API_KEY - response: PostcodeResponse = lookup_os_places(postcode, api_key) + response = lookup_os_places(postcode, api_key) + + if response.get("status") != 200 or "data" not in response: + logger.error(f"OS Places API failed for {postcode}: {response}") + return pd.DataFrame() # Save to cache new_record = PostcodeSearchModel( postcode=postcode, - result_data=response.results, + result_data=response["data"], ) session.add(new_record) session.commit() @@ -58,6 +60,13 @@ def check_if_post_code_exists_in_db_cache(postcode): return os_places_results_to_dataframe(response["data"]) +def get_ordance_survey_record(row, cache=None): + if cache is None: + cache = check_if_post_code_exists_in_db_cache(postcode) + + # process cache with row + + def save_results_to_s3( results_df: pd.DataFrame, task_id: str, sub_task_id: str, bucket_name: str = None ) -> bool: @@ -91,7 +100,7 @@ def save_results_to_s3( logger.info(f"Successfully saved results to s3://{bucket_name}/{file_key}") return True else: - logger.error(f"Failed to save results to S3 {bucket_name}/{file_key}") + logger.error(f"Failed to save results to S3") return False except Exception as e: diff --git a/backend/ordnanceSurvey/types.py b/backend/ordnanceSurvey/types.py deleted file mode 100644 index 0631ff67..00000000 --- a/backend/ordnanceSurvey/types.py +++ /dev/null @@ -1,44 +0,0 @@ -from pydantic import BaseModel -from typing import List - - -class OrdnanceSurveyResponse(BaseModel): - RPC: str - UPRN: str - MATCH: int - UDPRN: str - STATUS: str - ADDRESS: str - LANGUAGE: str - POSTCODE: str - POST_TOWN: str - WARD_CODE: str - ENTRY_DATE: str - COUNTRY_CODE: str - X_COORDINATE: int - Y_COORDINATE: int - BUILDING_NAME: str - BLPU_STATE_CODE: str - BLPU_STATE_DATE: str - LAST_UPDATE_DATE: str - MATCH_DESCRIPTION: str - THOROUGHFARE_NAME: str - CLASSIFICATION_CODE: str - LOGICAL_STATUS_CODE: str - POSTAL_ADDRESS_CODE: str - LOCAL_CUSTODIAN_CODE: int - DELIVERY_POINT_SUFFIX: str - TOPOGRAPHY_LAYER_TOID: str - COUNTRY_CODE_DESCRIPTION: str - BLPU_STATE_CODE_DESCRIPTION: str - CLASSIFICATION_CODE_DESCRIPTION: str - POSTAL_ADDRESS_CODE_DESCRIPTION: str - LOCAL_CUSTODIAN_CODE_DESCRIPTION: str - - -class Result(BaseModel): - DPA: OrdnanceSurveyResponse - - -class PostcodeResponse(BaseModel): - results: List[Result] From 4d013f329592569b06c0cabc9d4d0e8899283d76 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 9 Mar 2026 13:23:20 +0000 Subject: [PATCH 023/124] dan's pr --- backend/address2UPRN/main.py | 10 +++++----- backend/ordnanceSurvey/main.py | 20 +++++++++----------- backend/utils/addressMatch.py | 8 ++++---- 3 files changed, 18 insertions(+), 20 deletions(-) diff --git a/backend/address2UPRN/main.py b/backend/address2UPRN/main.py index 33cb6ff9..4c22db44 100644 --- a/backend/address2UPRN/main.py +++ b/backend/address2UPRN/main.py @@ -14,7 +14,7 @@ from utils.s3 import ( ) from datetime import datetime -from backend.utils.addressMatch import addressMatch +from backend.utils.addressMatch import AddressMatch logger = setup_logger() @@ -35,7 +35,7 @@ def score_addresses( if column not in df.columns: raise ValueError(f"Missing column: {column}") - return df[column].apply(lambda x: addressMatch.score(user_address, x)) + return df[column].apply(lambda x: AddressMatch.score(user_address, x)) def get_epc_data_with_postcode(postcode, size=500, attempt=1, max_attempts=3): @@ -127,10 +127,10 @@ def get_uprn_candidates( out = df.copy() - user_norm = addressMatch.normalise_address(user_address) + user_norm = AddressMatch.normalise_address(user_address) out["lexiscore"] = out[address_column].apply( - lambda x: addressMatch.levenshtein(user_norm, x) + lambda x: AddressMatch.levenshtein(user_norm, x) ) # Normalise UPRN to string @@ -455,7 +455,7 @@ def handler(event, context, local=False): ) # Validate postcode before processing - if not addressMatch.is_valid_postcode(postcode): + if not AddressMatch.is_valid_postcode(postcode): logger.warning(f"Postcode {postcode} is invalid, skipping") continue diff --git a/backend/ordnanceSurvey/main.py b/backend/ordnanceSurvey/main.py index bf8cfdaf..5c8373a1 100644 --- a/backend/ordnanceSurvey/main.py +++ b/backend/ordnanceSurvey/main.py @@ -1,4 +1,4 @@ -from typing import Any +from typing import Any, Optional import json from utils.logger import setup_logger import logging @@ -8,7 +8,7 @@ from utils.s3 import ( read_csv_from_s3 as read_csv_from_s3_dict, parse_s3_uri, ) -from backend.utils.addressMatch import addressMatch +from backend.utils.addressMatch import AddressMatch from backend.app.db.connection import get_db_session from backend.app.db.models.postcode_search import PostcodeSearchModel from backend.utils.ordnance_survey import ( @@ -124,7 +124,7 @@ def handler(body: dict[str, Any], context: Any, local: bool = False) -> None: s3_uri: str = body.get("s3_uri", "") lexiscore_threshold: float = body.get("lexiscore_threshold", 0.5) - lexiscore_column: str = body.get("lexiscore_column", None) + lexiscore_column: Optional[str] = body.get("lexiscore_column", None) task_id: str = body.get("task_id", "") sub_task_id: str = body.get("sub_task_id", "") @@ -158,7 +158,7 @@ def handler(body: dict[str, Any], context: Any, local: bool = False) -> None: # Process each postcode group at a time for postcode, group in grouped: print(f"Processing postcode: {postcode} ({len(group)} rows)") - valid_group = addressMatch.is_valid_postcode(postcode) + valid_group = AddressMatch.is_valid_postcode(postcode) if not valid_group: logger.warning(f"Postcode {postcode} is invalid, skipping") for idx in group.index: @@ -203,7 +203,7 @@ def handler(body: dict[str, Any], context: Any, local: bool = False) -> None: # Score against OS Places addresses scores = postcode_cache["ADDRESS"].apply( - lambda addr: addressMatch.score(ordnancy_survey_user_input, addr) + lambda addr: AddressMatch.score(ordnancy_survey_user_input, addr) ) best_idx = scores.idxmax() best_score = scores[best_idx] @@ -215,12 +215,10 @@ def handler(body: dict[str, Any], context: Any, local: bool = False) -> None: df.at[idx, "ordnance_survey_lexiscore"] = best_score # Save results locally - df.to_csv("ordnance_survey_results.csv", index=False) - print(f"Results saved to ordnance_survey_results.csv ({len(df)} rows)") + if local: + df.to_csv("ordnance_survey_results.csv", index=False) + print(f"Results saved to ordnance_survey_results.csv ({len(df)} rows)") # Save results to S3 if task_id and sub_task_id: - try: - save_results_to_s3(df, task_id, sub_task_id) - except Exception as s3_error: - logger.error(f"Failed to save results to S3: {s3_error}") + save_results_to_s3(df, task_id, sub_task_id) diff --git a/backend/utils/addressMatch.py b/backend/utils/addressMatch.py index b09c1672..411bb07c 100644 --- a/backend/utils/addressMatch.py +++ b/backend/utils/addressMatch.py @@ -4,13 +4,13 @@ from difflib import SequenceMatcher import requests -class addressMatch: +class AddressMatch: def __init__(self): return None @staticmethod def score(a: str, b: str) -> float: - score: float = addressMatch.levenshtein(a, b) + score: float = AddressMatch.levenshtein(a, b) return score @@ -143,8 +143,8 @@ class addressMatch: return None - a_norm = addressMatch.normalise_address(a) - b_norm = addressMatch.normalise_address(b) + a_norm = AddressMatch.normalise_address(a) + b_norm = AddressMatch.normalise_address(b) # --- hard signal: numbers --- nums_a = extract_numbers(a_norm) From 147982cb7c9939f5237522169eb38f0d4cada53b Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 9 Mar 2026 13:28:16 +0000 Subject: [PATCH 024/124] optional none --- backend/address2UPRN/main.py | 7 ++++++- backend/ordnanceSurvey/main.py | 5 ++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/backend/address2UPRN/main.py b/backend/address2UPRN/main.py index 4c22db44..d0ba36e6 100644 --- a/backend/address2UPRN/main.py +++ b/backend/address2UPRN/main.py @@ -1,3 +1,5 @@ +from typing import Optional + from epc_api.client import EpcClient import os from urllib.parse import urlencode @@ -295,7 +297,10 @@ def resolve_uprns_for_postcode_group( def save_results_to_s3( - results_df: pd.DataFrame, task_id: str, sub_task_id: str, bucket_name: str = None + results_df: pd.DataFrame, + task_id: str, + sub_task_id: str, + bucket_name: Optional[str] = None, ) -> bool: """ Save results DataFrame to S3 as CSV. diff --git a/backend/ordnanceSurvey/main.py b/backend/ordnanceSurvey/main.py index 5c8373a1..70b45079 100644 --- a/backend/ordnanceSurvey/main.py +++ b/backend/ordnanceSurvey/main.py @@ -68,7 +68,10 @@ def get_ordance_survey_record(row, cache=None): def save_results_to_s3( - results_df: pd.DataFrame, task_id: str, sub_task_id: str, bucket_name: str = None + results_df: pd.DataFrame, + task_id: str, + sub_task_id: str, + bucket_name: Optional[str] = None, ) -> bool: """ Save results DataFrame to S3 as CSV in a parent folder structure. From 71c0e6b2f3fe8a445b3c3e2c08860d2f62011b5b Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 9 Mar 2026 13:39:09 +0000 Subject: [PATCH 025/124] move lambda_with_sqs to terraform/modules --- infrastructure/terraform/lambda/_template/main.tf | 2 +- .../terraform/{lambda => }/modules/lambda_with_sqs/main.tf | 0 .../terraform/{lambda => }/modules/lambda_with_sqs/outputs.tf | 0 .../terraform/{lambda => }/modules/lambda_with_sqs/variables.tf | 0 4 files changed, 1 insertion(+), 1 deletion(-) rename infrastructure/terraform/{lambda => }/modules/lambda_with_sqs/main.tf (100%) rename infrastructure/terraform/{lambda => }/modules/lambda_with_sqs/outputs.tf (100%) rename infrastructure/terraform/{lambda => }/modules/lambda_with_sqs/variables.tf (100%) diff --git a/infrastructure/terraform/lambda/_template/main.tf b/infrastructure/terraform/lambda/_template/main.tf index c6015ea1..81b1c7f1 100644 --- a/infrastructure/terraform/lambda/_template/main.tf +++ b/infrastructure/terraform/lambda/_template/main.tf @@ -26,7 +26,7 @@ data "terraform_remote_state" "shared" { } module "lambda" { - source = "../modules/lambda_with_sqs" + source = "../../modules/lambda_with_sqs" name = REPLACE ME #"address2uprn" for example stage = var.stage diff --git a/infrastructure/terraform/lambda/modules/lambda_with_sqs/main.tf b/infrastructure/terraform/modules/lambda_with_sqs/main.tf similarity index 100% rename from infrastructure/terraform/lambda/modules/lambda_with_sqs/main.tf rename to infrastructure/terraform/modules/lambda_with_sqs/main.tf diff --git a/infrastructure/terraform/lambda/modules/lambda_with_sqs/outputs.tf b/infrastructure/terraform/modules/lambda_with_sqs/outputs.tf similarity index 100% rename from infrastructure/terraform/lambda/modules/lambda_with_sqs/outputs.tf rename to infrastructure/terraform/modules/lambda_with_sqs/outputs.tf diff --git a/infrastructure/terraform/lambda/modules/lambda_with_sqs/variables.tf b/infrastructure/terraform/modules/lambda_with_sqs/variables.tf similarity index 100% rename from infrastructure/terraform/lambda/modules/lambda_with_sqs/variables.tf rename to infrastructure/terraform/modules/lambda_with_sqs/variables.tf From c8d9c58380fa852ff679de8fd63130988eacb717 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 9 Mar 2026 13:39:36 +0000 Subject: [PATCH 026/124] udpate references to lambda_with_sqs --- infrastructure/terraform/lambda/address2UPRN/main.tf | 2 +- infrastructure/terraform/lambda/categorisation/main.tf | 2 +- infrastructure/terraform/lambda/condition-etl/main.tf | 2 +- infrastructure/terraform/lambda/engine/main.tf | 2 +- infrastructure/terraform/lambda/postcodeSplitter/main.tf | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/infrastructure/terraform/lambda/address2UPRN/main.tf b/infrastructure/terraform/lambda/address2UPRN/main.tf index 2d185497..f7750cb3 100644 --- a/infrastructure/terraform/lambda/address2UPRN/main.tf +++ b/infrastructure/terraform/lambda/address2UPRN/main.tf @@ -15,7 +15,7 @@ locals { } module "address2uprn" { - source = "../modules/lambda_with_sqs" + source = "../../modules/lambda_with_sqs" name = "address2uprn" stage = var.stage diff --git a/infrastructure/terraform/lambda/categorisation/main.tf b/infrastructure/terraform/lambda/categorisation/main.tf index b7193da4..01e16213 100644 --- a/infrastructure/terraform/lambda/categorisation/main.tf +++ b/infrastructure/terraform/lambda/categorisation/main.tf @@ -16,7 +16,7 @@ locals { } module "lambda" { - source = "../modules/lambda_with_sqs" + source = "../../modules/lambda_with_sqs" name = "categorisation" stage = var.stage diff --git a/infrastructure/terraform/lambda/condition-etl/main.tf b/infrastructure/terraform/lambda/condition-etl/main.tf index 0128f975..d654223c 100644 --- a/infrastructure/terraform/lambda/condition-etl/main.tf +++ b/infrastructure/terraform/lambda/condition-etl/main.tf @@ -17,7 +17,7 @@ locals { module "lambda" { - source = "../modules/lambda_with_sqs" + source = "../../modules/lambda_with_sqs" name = "condition-etl" stage = var.stage diff --git a/infrastructure/terraform/lambda/engine/main.tf b/infrastructure/terraform/lambda/engine/main.tf index 35c00fa3..3f28933b 100644 --- a/infrastructure/terraform/lambda/engine/main.tf +++ b/infrastructure/terraform/lambda/engine/main.tf @@ -17,7 +17,7 @@ locals { module "lambda" { - source = "../modules/lambda_with_sqs" + source = "../../modules/lambda_with_sqs" name = "engine" stage = var.stage diff --git a/infrastructure/terraform/lambda/postcodeSplitter/main.tf b/infrastructure/terraform/lambda/postcodeSplitter/main.tf index d37a01c9..94c5cd4e 100644 --- a/infrastructure/terraform/lambda/postcodeSplitter/main.tf +++ b/infrastructure/terraform/lambda/postcodeSplitter/main.tf @@ -26,7 +26,7 @@ data "terraform_remote_state" "address2uprn" { } module "lambda" { - source = "../modules/lambda_with_sqs" + source = "../../modules/lambda_with_sqs" name = "postcode-splitter" stage = var.stage From 51be55a70635c4403e706ea43be86d864d91b709 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 9 Mar 2026 14:00:30 +0000 Subject: [PATCH 027/124] create fastapi files and add ecr to shared tf --- .../terraform/lambda/fast-api/main.tf | 49 +++++++++++++++++++ .../terraform/lambda/fast-api/provider.tf | 16 ++++++ .../terraform/lambda/fast-api/variables.tf | 37 ++++++++++++++ infrastructure/terraform/shared/main.tf | 14 ++++++ 4 files changed, 116 insertions(+) create mode 100644 infrastructure/terraform/lambda/fast-api/main.tf create mode 100644 infrastructure/terraform/lambda/fast-api/provider.tf create mode 100644 infrastructure/terraform/lambda/fast-api/variables.tf diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf new file mode 100644 index 00000000..104d4a4d --- /dev/null +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -0,0 +1,49 @@ +data "terraform_remote_state" "shared" { + backend = "s3" + config = { + bucket = "assessment-model-terraform-state" + key = "env:/${var.stage}/terraform.tfstate" + region = "eu-west-2" + } +} + +module "lambda" { + source = "../../modules/lambda_with_sqs" + + name = REPLACE ME #"address2uprn" for example + stage = var.stage + + image_uri = local.image_uri + + # Optional: Set maximum_concurrency to limit concurrent SQS-triggered invocations (2-1000) + maximum_concurrency = var.maximum_concurrency + + batch_size = var.batch_size + + environment = { + STAGE = var.stage + LOG_LEVEL = "info" + } +} + +# ====================================================================== +# OPTIONAL: Attach S3 IAM policy to Lambda execution role +# ====================================================================== +# Uncomment and configure the resource below to attach S3 permissions +# +# Example 1: Attach existing policy from shared state +# resource "aws_iam_role_policy_attachment" "lambda_s3_policy" { +# role = module.lambda.role_name +# policy_arn = data.terraform_remote_state.shared.outputs.YOUR_POLICY_OUTPUT_NAME_arn +# } +# +# Example 2: Attach multiple policies +# resource "aws_iam_role_policy_attachment" "lambda_read_policy" { +# role = module.lambda.role_name +# policy_arn = data.terraform_remote_state.shared.outputs.postcode_splitter_s3_read_arn +# } +# +# resource "aws_iam_role_policy_attachment" "lambda_write_policy" { +# role = module.lambda.role_name +# policy_arn = data.terraform_remote_state.shared.outputs.another_policy_arn +# } diff --git a/infrastructure/terraform/lambda/fast-api/provider.tf b/infrastructure/terraform/lambda/fast-api/provider.tf new file mode 100644 index 00000000..37c412ce --- /dev/null +++ b/infrastructure/terraform/lambda/fast-api/provider.tf @@ -0,0 +1,16 @@ +terraform { + required_providers { + aws = { + source = "hashicorp/aws" + version = "~> 4.16" + } + } + + backend "s3" { + bucket = REPLACE_ME + key = "terraform.tfstate" + region = "eu-west-2" + } + + required_version = ">= 1.2.0" +} \ No newline at end of file diff --git a/infrastructure/terraform/lambda/fast-api/variables.tf b/infrastructure/terraform/lambda/fast-api/variables.tf new file mode 100644 index 00000000..e7646811 --- /dev/null +++ b/infrastructure/terraform/lambda/fast-api/variables.tf @@ -0,0 +1,37 @@ +variable "lambda_name" { + type = string + description = "Logical name of the lambda (e.g. address2uprn)" +} + +variable "stage" { + description = "Deployment stage (e.g. dev, prod)" + type = string +} +variable "ecr_repo_url" { + type = string + description = "ECR repository URL (no tag, no digest)" +} + +variable "image_digest" { + type = string + description = "Image digest (sha256:...)" +} + +variable "maximum_concurrency" { + type = number + default = null + description = "Maximum number of concurrent Lambda invocations from SQS (2-1000). null = no limit." +} + +variable "batch_size" { + type = number + default = 1 +} + +locals { + image_uri = "${var.ecr_repo_url}@${var.image_digest}" +} + +output "resolved_image_uri" { + value = local.image_uri +} diff --git a/infrastructure/terraform/shared/main.tf b/infrastructure/terraform/shared/main.tf index c19e3a0c..15198a34 100644 --- a/infrastructure/terraform/shared/main.tf +++ b/infrastructure/terraform/shared/main.tf @@ -489,3 +489,17 @@ module "engine_s3_read_and_write" { output "engine_s3_read_and_write_arn" { value = module.engine_s3_read_and_write.policy_arn } + +################################################ +# FastAPI – Lambda +################################################ +module "ara_fast_api_state_bucket" { + source = "../modules/tf_state_bucket" + bucket_name = "ara-fast-api-terraform-state" +} + +module "ara_fastapi_registry" { + source = "../modules/container_registry" + name = "engine" + stage = var.stage +} From 255d7e5dbf8a3d1df860b51f9cda8101db1f6c93 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 9 Mar 2026 14:12:41 +0000 Subject: [PATCH 028/124] correct ecr name --- infrastructure/terraform/shared/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/shared/main.tf b/infrastructure/terraform/shared/main.tf index 15198a34..0cac8d66 100644 --- a/infrastructure/terraform/shared/main.tf +++ b/infrastructure/terraform/shared/main.tf @@ -500,6 +500,6 @@ module "ara_fast_api_state_bucket" { module "ara_fastapi_registry" { source = "../modules/container_registry" - name = "engine" + name = "ara_fastapi" stage = var.stage } From cf3c4ea7a8b577abdb53e0aa497bd5c6a68b9f89 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 9 Mar 2026 14:14:04 +0000 Subject: [PATCH 029/124] correct ecr name --- infrastructure/terraform/shared/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/shared/main.tf b/infrastructure/terraform/shared/main.tf index 0cac8d66..05a3665e 100644 --- a/infrastructure/terraform/shared/main.tf +++ b/infrastructure/terraform/shared/main.tf @@ -500,6 +500,6 @@ module "ara_fast_api_state_bucket" { module "ara_fastapi_registry" { source = "../modules/container_registry" - name = "ara_fastapi" + name = "ara-fastapi" stage = var.stage } From 63cb200e95f8ff2c7cf6083db0132b516b6d62a2 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 9 Mar 2026 14:42:51 +0000 Subject: [PATCH 030/124] correct relative paths in moved module --- infrastructure/terraform/modules/lambda_with_sqs/main.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/infrastructure/terraform/modules/lambda_with_sqs/main.tf b/infrastructure/terraform/modules/lambda_with_sqs/main.tf index 74345d24..fe8c615b 100644 --- a/infrastructure/terraform/modules/lambda_with_sqs/main.tf +++ b/infrastructure/terraform/modules/lambda_with_sqs/main.tf @@ -2,7 +2,7 @@ # IAM role ############################################ module "role" { - source = "../../../modules/lambda_execution_role" + source = "../modules/lambda_execution_role" name = "${var.name}-lambda-${var.stage}" } @@ -14,7 +14,7 @@ output "role_name" { # SQS queue + DLQ ############################################ module "queue" { - source = "../../../modules/sqs_queue" + source = "../modules/sqs_queue" name = "${var.name}-queue-${var.stage}" } @@ -22,7 +22,7 @@ module "queue" { # Lambda ############################################ module "lambda" { - source = "../../../modules/lambda_service" + source = "../modules/lambda_service" name = "${var.name}-${var.stage}" role_arn = module.role.role_arn @@ -38,7 +38,7 @@ module "lambda" { # SQS → Lambda trigger ############################################ module "sqs_trigger" { - source = "../../../modules/lambda_sqs_trigger" + source = "../modules/lambda_sqs_trigger" lambda_arn = module.lambda.lambda_arn lambda_role_name = module.role.role_name From 7a2587fc9b6a6886a021ec0c83900bacdc563c8f Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 9 Mar 2026 14:51:53 +0000 Subject: [PATCH 031/124] correct relative paths in moved module --- infrastructure/terraform/modules/lambda_with_sqs/main.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/infrastructure/terraform/modules/lambda_with_sqs/main.tf b/infrastructure/terraform/modules/lambda_with_sqs/main.tf index fe8c615b..35626487 100644 --- a/infrastructure/terraform/modules/lambda_with_sqs/main.tf +++ b/infrastructure/terraform/modules/lambda_with_sqs/main.tf @@ -2,7 +2,7 @@ # IAM role ############################################ module "role" { - source = "../modules/lambda_execution_role" + source = "../lambda_execution_role" name = "${var.name}-lambda-${var.stage}" } @@ -14,7 +14,7 @@ output "role_name" { # SQS queue + DLQ ############################################ module "queue" { - source = "../modules/sqs_queue" + source = "../sqs_queue" name = "${var.name}-queue-${var.stage}" } @@ -22,7 +22,7 @@ module "queue" { # Lambda ############################################ module "lambda" { - source = "../modules/lambda_service" + source = "../lambda_service" name = "${var.name}-${var.stage}" role_arn = module.role.role_arn @@ -38,7 +38,7 @@ module "lambda" { # SQS → Lambda trigger ############################################ module "sqs_trigger" { - source = "../modules/lambda_sqs_trigger" + source = "../lambda_sqs_trigger" lambda_arn = module.lambda.lambda_arn lambda_role_name = module.role.role_name From cd822a3eedf6bbce7705d9622ea2c7e74ec6e6fa Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 9 Mar 2026 15:26:01 +0000 Subject: [PATCH 032/124] deploy terraform --- .github/workflows/deploy_terraform.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index 0fae2110..bde7eb21 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -316,3 +316,7 @@ jobs: stage: ${{ needs.determine_stage.outputs.stage }} ecr_repo: postcode_splitter-${{ needs.determine_stage.outputs.stage }} image_digest: ${{ needs.ordnanceSurvey_image.outputs.image_digest }} + secrets: + AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} + AWS_REGION: ${{ secrets.DEV_AWS_REGION }} From 4cf0194b7ec5fbe8cf2a0aff57d3c957df853d17 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 9 Mar 2026 15:36:33 +0000 Subject: [PATCH 033/124] missing bracket --- infrastructure/terraform/shared/main.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/infrastructure/terraform/shared/main.tf b/infrastructure/terraform/shared/main.tf index 905fbc78..4cf5ac46 100644 --- a/infrastructure/terraform/shared/main.tf +++ b/infrastructure/terraform/shared/main.tf @@ -481,6 +481,8 @@ module "ordnance_s3_read_and_write" { output "ordnance_s3_read_and_write_arn" { value = module.ordnance_s3_read_and_write.policy_arn +} + ################################################ # Engine – Lambda ECR ################################################ From ec1df5eaca0f126994834585b05722a29ace2d54 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 9 Mar 2026 15:51:11 +0000 Subject: [PATCH 034/124] modules file changes --- infrastructure/terraform/lambda/ordnanceSurvey/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/lambda/ordnanceSurvey/main.tf b/infrastructure/terraform/lambda/ordnanceSurvey/main.tf index 3af33ad7..a62996a1 100644 --- a/infrastructure/terraform/lambda/ordnanceSurvey/main.tf +++ b/infrastructure/terraform/lambda/ordnanceSurvey/main.tf @@ -14,7 +14,7 @@ locals { } module "ordnance" { - source = "../modules/lambda_with_sqs" + source = "../../modules/lambda_with_sqs" name = ordnanceSurvey #"address2uprn" for example stage = var.stage From b9105cc6582688f613e0c2e5798723f169b19e66 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 9 Mar 2026 16:48:37 +0000 Subject: [PATCH 035/124] added ordance survey api --- .github/workflows/_deploy_lambda.yml | 4 ++++ .github/workflows/deploy_terraform.yml | 1 + infrastructure/terraform/lambda/ordnanceSurvey/main.tf | 2 +- infrastructure/terraform/lambda/ordnanceSurvey/variables.tf | 6 ++++++ 4 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/_deploy_lambda.yml b/.github/workflows/_deploy_lambda.yml index ce1a0e77..103dee82 100644 --- a/.github/workflows/_deploy_lambda.yml +++ b/.github/workflows/_deploy_lambda.yml @@ -58,6 +58,8 @@ on: required: false TF_VAR_google_solar_api_key: required: false + TF_VAR_ORDNANCE_SURVEY_API_KEY: + required: false jobs: deploy: @@ -115,6 +117,7 @@ jobs: TF_VAR_domain_name: ${{ secrets.TF_VAR_domain_name }} TF_VAR_epc_auth_token: ${{ secrets.TF_VAR_epc_auth_token }} TF_VAR_google_solar_api_key: ${{ secrets.TF_VAR_google_solar_api_key }} + TF_VAR_ORDNANCE_SURVEY_API_KEY: ${{ secrets.ORDNANCE_SURVEY_API_KEY}} run: | terraform plan \ -var="stage=${{ inputs.stage }}" \ @@ -140,6 +143,7 @@ jobs: TF_VAR_domain_name: ${{ secrets.TF_VAR_domain_name }} TF_VAR_epc_auth_token: ${{ secrets.TF_VAR_epc_auth_token }} TF_VAR_google_solar_api_key: ${{ secrets.TF_VAR_google_solar_api_key }} + TF_VAR_ORDNANCE_SURVEY_API_KEY: ${{ secrets.ORDNANCE_SURVEY_API_KEY}} run: | terraform destroy -auto-approve \ -var="stage=${{ inputs.stage }}" \ diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index bde7eb21..6633eefd 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -320,3 +320,4 @@ jobs: AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} AWS_REGION: ${{ secrets.DEV_AWS_REGION }} + TF_VAR_ORDNANCE_SURVEY_API_KEY: ${{ secrets.ORDNANCE_SURVEY_API_KEY }} diff --git a/infrastructure/terraform/lambda/ordnanceSurvey/main.tf b/infrastructure/terraform/lambda/ordnanceSurvey/main.tf index a62996a1..7e045621 100644 --- a/infrastructure/terraform/lambda/ordnanceSurvey/main.tf +++ b/infrastructure/terraform/lambda/ordnanceSurvey/main.tf @@ -33,7 +33,7 @@ module "ordnance" { DB_USERNAME = local.db_credentials.db_assessment_model_username DB_PASSWORD = local.db_credentials.db_assessment_model_password S3_BUCKET_NAME = data.terraform_remote_state.shared.outputs.retrofit_sap_data_bucket_name - ORDNANCE_SURVEY_API_KEY:= "Reminder to add This somehow, ask if we are doing aws secret method or github secret method" + ORDNANCE_SURVEY_API_KEY = var.ordnance_survey_api_key }, ) } diff --git a/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf b/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf index e7646811..936aebc9 100644 --- a/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf +++ b/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf @@ -28,6 +28,12 @@ variable "batch_size" { default = 1 } +variable "ordnance_survey_api_key" { + type = string + sensitive = true +} + + locals { image_uri = "${var.ecr_repo_url}@${var.image_digest}" } From cc1c7d05cb10f0f981e56d7b0f64bd309bfcb753 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 9 Mar 2026 17:00:43 +0000 Subject: [PATCH 036/124] capital letter --- infrastructure/terraform/lambda/ordnanceSurvey/main.tf | 2 +- infrastructure/terraform/lambda/ordnanceSurvey/variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/terraform/lambda/ordnanceSurvey/main.tf b/infrastructure/terraform/lambda/ordnanceSurvey/main.tf index 7e045621..67732b67 100644 --- a/infrastructure/terraform/lambda/ordnanceSurvey/main.tf +++ b/infrastructure/terraform/lambda/ordnanceSurvey/main.tf @@ -33,7 +33,7 @@ module "ordnance" { DB_USERNAME = local.db_credentials.db_assessment_model_username DB_PASSWORD = local.db_credentials.db_assessment_model_password S3_BUCKET_NAME = data.terraform_remote_state.shared.outputs.retrofit_sap_data_bucket_name - ORDNANCE_SURVEY_API_KEY = var.ordnance_survey_api_key + ORDNANCE_SURVEY_API_KEY = var.ORDNANCE_SURVEY_API_KEY }, ) } diff --git a/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf b/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf index 936aebc9..6ce3dfd5 100644 --- a/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf +++ b/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf @@ -28,7 +28,7 @@ variable "batch_size" { default = 1 } -variable "ordnance_survey_api_key" { +variable "ORDNANCE_SURVEY_API_KEY" { type = string sensitive = true } From e64bae74ed7d318932fe1960f61e5642d4d0ed78 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 9 Mar 2026 17:07:22 +0000 Subject: [PATCH 037/124] lower case letter --- .github/workflows/_deploy_lambda.yml | 4 ++-- infrastructure/terraform/lambda/ordnanceSurvey/main.tf | 2 +- infrastructure/terraform/lambda/ordnanceSurvey/variables.tf | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/_deploy_lambda.yml b/.github/workflows/_deploy_lambda.yml index 103dee82..35c517ad 100644 --- a/.github/workflows/_deploy_lambda.yml +++ b/.github/workflows/_deploy_lambda.yml @@ -117,7 +117,7 @@ jobs: TF_VAR_domain_name: ${{ secrets.TF_VAR_domain_name }} TF_VAR_epc_auth_token: ${{ secrets.TF_VAR_epc_auth_token }} TF_VAR_google_solar_api_key: ${{ secrets.TF_VAR_google_solar_api_key }} - TF_VAR_ORDNANCE_SURVEY_API_KEY: ${{ secrets.ORDNANCE_SURVEY_API_KEY}} + TF_VAR_ordnance_survey_api_key: ${{ secrets.TF_VAR_ordnance_survey_api_key}} run: | terraform plan \ -var="stage=${{ inputs.stage }}" \ @@ -143,7 +143,7 @@ jobs: TF_VAR_domain_name: ${{ secrets.TF_VAR_domain_name }} TF_VAR_epc_auth_token: ${{ secrets.TF_VAR_epc_auth_token }} TF_VAR_google_solar_api_key: ${{ secrets.TF_VAR_google_solar_api_key }} - TF_VAR_ORDNANCE_SURVEY_API_KEY: ${{ secrets.ORDNANCE_SURVEY_API_KEY}} + TF_VAR_ordnance_survey_api_key: ${{ secrets.TF_VAR_ordnance_survey_api_key}} run: | terraform destroy -auto-approve \ -var="stage=${{ inputs.stage }}" \ diff --git a/infrastructure/terraform/lambda/ordnanceSurvey/main.tf b/infrastructure/terraform/lambda/ordnanceSurvey/main.tf index 67732b67..b2011d3d 100644 --- a/infrastructure/terraform/lambda/ordnanceSurvey/main.tf +++ b/infrastructure/terraform/lambda/ordnanceSurvey/main.tf @@ -33,7 +33,7 @@ module "ordnance" { DB_USERNAME = local.db_credentials.db_assessment_model_username DB_PASSWORD = local.db_credentials.db_assessment_model_password S3_BUCKET_NAME = data.terraform_remote_state.shared.outputs.retrofit_sap_data_bucket_name - ORDNANCE_SURVEY_API_KEY = var.ORDNANCE_SURVEY_API_KEY + ORDNANCE_SURVEY_API_KEY = var.ordnance_survey_api_keY }, ) } diff --git a/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf b/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf index 6ce3dfd5..936aebc9 100644 --- a/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf +++ b/infrastructure/terraform/lambda/ordnanceSurvey/variables.tf @@ -28,7 +28,7 @@ variable "batch_size" { default = 1 } -variable "ORDNANCE_SURVEY_API_KEY" { +variable "ordnance_survey_api_key" { type = string sensitive = true } From 48a728721d263da1de832b3964586094c09b6657 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 9 Mar 2026 17:08:14 +0000 Subject: [PATCH 038/124] lower case --- infrastructure/terraform/lambda/ordnanceSurvey/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/lambda/ordnanceSurvey/main.tf b/infrastructure/terraform/lambda/ordnanceSurvey/main.tf index b2011d3d..7e045621 100644 --- a/infrastructure/terraform/lambda/ordnanceSurvey/main.tf +++ b/infrastructure/terraform/lambda/ordnanceSurvey/main.tf @@ -33,7 +33,7 @@ module "ordnance" { DB_USERNAME = local.db_credentials.db_assessment_model_username DB_PASSWORD = local.db_credentials.db_assessment_model_password S3_BUCKET_NAME = data.terraform_remote_state.shared.outputs.retrofit_sap_data_bucket_name - ORDNANCE_SURVEY_API_KEY = var.ordnance_survey_api_keY + ORDNANCE_SURVEY_API_KEY = var.ordnance_survey_api_key }, ) } From 6642e1b357f43eec38922802cebc707ba034648c Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 9 Mar 2026 17:09:43 +0000 Subject: [PATCH 039/124] lower case --- .github/workflows/_deploy_lambda.yml | 2 +- infrastructure/terraform/lambda/ordnanceSurvey/main.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/_deploy_lambda.yml b/.github/workflows/_deploy_lambda.yml index 35c517ad..6d1430a2 100644 --- a/.github/workflows/_deploy_lambda.yml +++ b/.github/workflows/_deploy_lambda.yml @@ -58,7 +58,7 @@ on: required: false TF_VAR_google_solar_api_key: required: false - TF_VAR_ORDNANCE_SURVEY_API_KEY: + TF_VAR_ordnance_survey_api_key: required: false jobs: diff --git a/infrastructure/terraform/lambda/ordnanceSurvey/main.tf b/infrastructure/terraform/lambda/ordnanceSurvey/main.tf index 7e045621..fb8876fa 100644 --- a/infrastructure/terraform/lambda/ordnanceSurvey/main.tf +++ b/infrastructure/terraform/lambda/ordnanceSurvey/main.tf @@ -42,4 +42,4 @@ module "ordnance" { resource "aws_iam_role_policy_attachment" "ordanceSurvey_read_and_write" { role = module.ordnance.role_name policy_arn = data.terraform_remote_state.shared.outputs.ordnance_s3_read_and_write_arn -} +} \ No newline at end of file From 83ce83321e814cfd9525fd283db5fdae450b0d11 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 9 Mar 2026 17:17:01 +0000 Subject: [PATCH 040/124] lower case --- infrastructure/terraform/lambda/ordnanceSurvey/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/lambda/ordnanceSurvey/main.tf b/infrastructure/terraform/lambda/ordnanceSurvey/main.tf index fb8876fa..ace03ffc 100644 --- a/infrastructure/terraform/lambda/ordnanceSurvey/main.tf +++ b/infrastructure/terraform/lambda/ordnanceSurvey/main.tf @@ -16,7 +16,7 @@ locals { module "ordnance" { source = "../../modules/lambda_with_sqs" - name = ordnanceSurvey #"address2uprn" for example + name = "ordnanceSurvey" #"address2uprn" for example stage = var.stage image_uri = local.image_uri From 54255942f93acaf71521cf9d7d6c4e9baf2459fb Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 10 Mar 2026 08:51:08 +0000 Subject: [PATCH 041/124] add lambda_service_zip and lambda_with_api_gateway terraform modules --- .github/workflows/deploy_terraform.yml | 14 +++++------ .../modules/lambda_service_zip/main.tf | 24 +++++++++++++++++++ .../modules/lambda_with_api_gateway/main.tf | 0 3 files changed, 31 insertions(+), 7 deletions(-) create mode 100644 infrastructure/terraform/modules/lambda_service_zip/main.tf create mode 100644 infrastructure/terraform/modules/lambda_with_api_gateway/main.tf diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index bde7eb21..042bce35 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -41,7 +41,7 @@ jobs: fi # ============================================================ - # 1️⃣ Shared Terraform (infra) + # Shared Terraform (infra) # ============================================================ shared_terraform: needs: determine_stage @@ -79,7 +79,7 @@ jobs: run: terraform apply -auto-approve tfplan # ============================================================ - # 2️⃣ Build Address 2 UPRN image and Push + # Build Address 2 UPRN image and Push # ============================================================ address2uprn_image: needs: [determine_stage, shared_terraform] @@ -103,7 +103,7 @@ jobs: EPC_AUTH_TOKEN: ${{ secrets.DEV_EPC_AUTH_TOKEN }} # ============================================================ - # 3️⃣ Deploy Address 2 UPRN Lambda + # Deploy Address 2 UPRN Lambda # ============================================================ address2uprn_lambda: needs: [address2uprn_image, determine_stage] @@ -122,7 +122,7 @@ jobs: # ============================================================ - # 2️⃣ Build Postcode Splitter image and Push + # Build Postcode Splitter image and Push # ============================================================ postcodeSplitter_image: needs: [determine_stage, shared_terraform] @@ -144,7 +144,7 @@ jobs: DEV_DB_NAME: ${{ secrets.DEV_DB_NAME }} # ============================================================ - # 3️⃣ Deploy Postcode Splitter Lambda + # Deploy Postcode Splitter Lambda # ============================================================ postcodeSplitter_lambda: needs: [postcodeSplitter_image, determine_stage, address2uprn_lambda] @@ -283,7 +283,7 @@ jobs: TF_VAR_google_solar_api_key: ${{ secrets.DEV_GOOGLE_SOLAR_API_KEY }} # ============================================================ - # 2️⃣ Build OrdanceSurvey image and Push + # Build OrdanceSurvey image and Push # ============================================================ ordnanceSurvey_image: needs: [determine_stage, shared_terraform] @@ -305,7 +305,7 @@ jobs: DEV_DB_NAME: ${{ secrets.DEV_DB_NAME }} # ============================================================ - # 3️⃣ Deploy OrdanceSurvey Lambda + # Deploy OrdanceSurvey Lambda # ============================================================ ordnanceSurvey_lambda: needs: [ordnanceSurvey_image, determine_stage] diff --git a/infrastructure/terraform/modules/lambda_service_zip/main.tf b/infrastructure/terraform/modules/lambda_service_zip/main.tf new file mode 100644 index 00000000..285aa9d4 --- /dev/null +++ b/infrastructure/terraform/modules/lambda_service_zip/main.tf @@ -0,0 +1,24 @@ +resource "aws_lambda_function" "this" { + function_name = var.name + role = var.role_arn + package_type = "Zip" + filename = var.filename + source_code_hash = var.source_code_hash + handler = var.handler + runtime = var.runtime + timeout = var.timeout + memory_size = var.memory_size + publish = true + + environment { + variables = var.environment + } +} + +output "lambda_arn" { + value = aws_lambda_function.this.arn +} + +output "function_name" { + value = aws_lambda_function.this.function_name +} \ No newline at end of file diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf new file mode 100644 index 00000000..e69de29b From db50f8613f5223d11b0a40ff20f73fc0a158e23a Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 10 Mar 2026 08:58:40 +0000 Subject: [PATCH 042/124] make ecr_repo_url and image_digest optional in _deploy_lambda.yml --- .github/workflows/_deploy_lambda.yml | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/.github/workflows/_deploy_lambda.yml b/.github/workflows/_deploy_lambda.yml index ce1a0e77..7e11cf32 100644 --- a/.github/workflows/_deploy_lambda.yml +++ b/.github/workflows/_deploy_lambda.yml @@ -16,12 +16,14 @@ on: type: string ecr_repo: - required: true + required: false type: string + default: '' image_digest: - required: true + required: false type: string + default: '' terraform_apply: required: false @@ -116,11 +118,15 @@ jobs: TF_VAR_epc_auth_token: ${{ secrets.TF_VAR_epc_auth_token }} TF_VAR_google_solar_api_key: ${{ secrets.TF_VAR_google_solar_api_key }} run: | + EXTRA_VARS="" + if [[ -n "${{ inputs.ecr_repo }}" ]]; then + EXTRA_VARS="-var=ecr_repo_url=${{ steps.repo.outputs.ecr_repo_url }} -var=image_digest=${{ inputs.image_digest }}" + fi + terraform plan \ -var="stage=${{ inputs.stage }}" \ -var="lambda_name=${{ inputs.lambda_name }}" \ - -var="ecr_repo_url=${{ steps.repo.outputs.ecr_repo_url }}" \ - -var="image_digest=${{ inputs.image_digest }}" \ + $EXTRA_VARS \ -out=lambdaplan - name: Terraform Apply @@ -141,8 +147,12 @@ jobs: TF_VAR_epc_auth_token: ${{ secrets.TF_VAR_epc_auth_token }} TF_VAR_google_solar_api_key: ${{ secrets.TF_VAR_google_solar_api_key }} run: | + EXTRA_VARS="" + if [[ -n "${{ inputs.ecr_repo }}" ]]; then + EXTRA_VARS="-var=ecr_repo_url=${{ steps.repo.outputs.ecr_repo_url }} -var=image_digest=${{ inputs.image_digest }}" + fi + terraform destroy -auto-approve \ -var="stage=${{ inputs.stage }}" \ -var="lambda_name=${{ inputs.lambda_name }}" \ - -var="ecr_repo_url=${{ steps.repo.outputs.ecr_repo_url }}" \ - -var="image_digest=${{ inputs.image_digest }}" + $EXTRA_VARS From 3423ca76fb4adb137eb57825ab66112731c28f9f Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 10 Mar 2026 10:00:08 +0000 Subject: [PATCH 043/124] define terraform for lambda_with_api_gateway and lambda_service_zip --- .../modules/lambda_service_zip/variables.tf | 9 ++ .../modules/lambda_with_api_gateway/main.tf | 103 ++++++++++++++++++ .../lambda_with_api_gateway/outputs.tf | 11 ++ .../lambda_with_api_gateway/variables.tf | 18 +++ 4 files changed, 141 insertions(+) create mode 100644 infrastructure/terraform/modules/lambda_service_zip/variables.tf create mode 100644 infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf create mode 100644 infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf diff --git a/infrastructure/terraform/modules/lambda_service_zip/variables.tf b/infrastructure/terraform/modules/lambda_service_zip/variables.tf new file mode 100644 index 00000000..3a243c49 --- /dev/null +++ b/infrastructure/terraform/modules/lambda_service_zip/variables.tf @@ -0,0 +1,9 @@ +variable "name" { type = string } +variable "role_arn" { type = string } +variable "filename" { type = string } +variable "source_code_hash" { type = string } +variable "handler" { type = string } +variable "runtime" { type = string } +variable "timeout" { type = number default = 30 } +variable "memory_size" { type = number default = 128 } +variable "environment" { type = map(string) default = {} } \ No newline at end of file diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf index e69de29b..23ccc4b1 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf @@ -0,0 +1,103 @@ +############################################ +# IAM role +############################################ +module "role" { + source = "../lambda_execution_role" + name = "${var.name}-lambda-${var.stage}" +} + +############################################ +# Zip the source code +############################################ +data "archive_file" "this" { + type = "zip" + source_dir = var.source_dir + output_path = "${path.module}/lambda_package.zip" + excludes = var.zip_excludes +} + +############################################ +# Lambda +############################################ +module "lambda" { + source = "../lambda_service_zip" + + name = "${var.name}-${var.stage}" + role_arn = module.role.role_arn + filename = data.archive_file.this.output_path + source_code_hash = data.archive_file.this.output_base64sha256 + handler = var.handler + runtime = var.runtime + timeout = var.timeout + memory_size = var.memory_size + environment = var.environment +} + +############################################ +# API Gateway +############################################ +resource "aws_apigatewayv2_api" "this" { + name = "${var.name}-api-${var.stage}" + protocol_type = "HTTP" +} + +resource "aws_apigatewayv2_stage" "this" { + api_id = aws_apigatewayv2_api.this.id + name = "$default" + auto_deploy = true +} + +resource "aws_apigatewayv2_integration" "this" { + api_id = aws_apigatewayv2_api.this.id + integration_type = "AWS_PROXY" + integration_uri = module.lambda.lambda_arn + payload_format_version = "2.0" +} + +resource "aws_apigatewayv2_route" "catch_all" { + api_id = aws_apigatewayv2_api.this.id + route_key = "$default" + target = "integrations/${aws_apigatewayv2_integration.this.id}" +} + +resource "aws_lambda_permission" "apigw_invoke" { + statement_id = "AllowAPIGatewayInvoke" + action = "lambda:InvokeFunction" + function_name = module.lambda.lambda_arn + principal = "apigateway.amazonaws.com" + source_arn = "${aws_apigatewayv2_api.this.execution_arn}/*/*" +} + +############################################ +# Custom domain +############################################ +resource "aws_apigatewayv2_domain_name" "this" { + count = var.domain_name != null ? 1 : 0 + domain_name = var.domain_name + + domain_name_configuration { + certificate_arn = var.certificate_arn + endpoint_type = "REGIONAL" + security_policy = "TLS_1_2" + } +} + +resource "aws_apigatewayv2_api_mapping" "this" { + count = var.domain_name != null ? 1 : 0 + api_id = aws_apigatewayv2_api.this.id + domain_name = aws_apigatewayv2_domain_name.this[0].id + stage = aws_apigatewayv2_stage.this.id +} + +resource "aws_route53_record" "this" { + count = var.domain_name != null ? 1 : 0 + name = aws_apigatewayv2_domain_name.this[0].domain_name + type = "A" + zone_id = var.route53_zone_id + + alias { + name = aws_apigatewayv2_domain_name.this[0].domain_name_configuration[0].target_domain_name + zone_id = aws_apigatewayv2_domain_name.this[0].domain_name_configuration[0].hosted_zone_id + evaluate_target_health = false + } +} \ No newline at end of file diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf new file mode 100644 index 00000000..52db1ff9 --- /dev/null +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf @@ -0,0 +1,11 @@ +output "role_name" { + value = module.role.role_name +} + +output "api_endpoint" { + value = aws_apigatewayv2_stage.this.invoke_url +} + +output "custom_domain_endpoint" { + value = var.domain_name != null ? "https://${var.domain_name}" : null +} \ No newline at end of file diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf new file mode 100644 index 00000000..1a08ff2e --- /dev/null +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf @@ -0,0 +1,18 @@ +variable "name" { type = string } +variable "stage" { type = string } +variable "source_dir" { type = string } +variable "handler" { type = string } +variable "runtime" { type = string } + +variable "zip_excludes" { + type = list(string) + default = ["**/__pycache__/**", "**/*.pyc", "**/.pytest_cache/**"] +} + +variable "timeout" { type = number default = 600 } +variable "memory_size" { type = number default = 512 } +variable "environment" { type = map(string) default = {} } + +variable "domain_name" { type = string default = null } +variable "certificate_arn" { type = string default = null } +variable "route53_zone_id" { type = string default = null } \ No newline at end of file From 5a9881552928880a5e925798833ef1f948dc6d10 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Tue, 10 Mar 2026 10:10:59 +0000 Subject: [PATCH 044/124] didn't deploy --- .github/workflows/deploy_terraform.yml | 1 + backend/address2UPRN/README.md | 30 +++++++++++++++----------- 2 files changed, 19 insertions(+), 12 deletions(-) diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index 6633eefd..5841030c 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -316,6 +316,7 @@ jobs: stage: ${{ needs.determine_stage.outputs.stage }} ecr_repo: postcode_splitter-${{ needs.determine_stage.outputs.stage }} image_digest: ${{ needs.ordnanceSurvey_image.outputs.image_digest }} + terraform_apply: ${{ needs.determine_stage.outputs.terraform_apply }} secrets: AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} diff --git a/backend/address2UPRN/README.md b/backend/address2UPRN/README.md index b4876340..390aeb62 100644 --- a/backend/address2UPRN/README.md +++ b/backend/address2UPRN/README.md @@ -1,20 +1,26 @@ -We have list of address as input. - -It'll come in batches of the same post code and from then we want to somehow convert that into UPRN - -if this lambda/function can do that we'll be speeding ahead +So you want to fetch UPRN for an address list? -Energy Performance Information: https://epc.opendatacommunities.org/ +Before you run: -guidance page: https://epc.opendatacommunities.org/docs/guidance#field_domestic_LMK_KEY +Step 1) Get the list and ensure the following columns exists -Example of past khalims code that he wrote some tests for: https://github.com/Hestia-Homes/Model/blob/941be42b83a590e838fd3ee475bfd1ff31438789/backend/tests/test_search_epc.py#L11 +* Address 1 +* Address 2 +* Address 3 +* postcode + +And save it as a .csv file -Example of EPC search: https://github.com/Hestia-Homes/Model/blob/941be42b83a590e838fd3ee475bfd1ff31438789/backend/SearchEpc.py#L118 +Step 2) + +Before we run this, we need to upload it into S3 as well as put initiate a subtask + task + +* S3 upload I'll recommend somewhere in retrofit-data-dev and get the s3_uri + +For this example I'll be using "s3://retrofit-data-dev/ara_raw_inputs/calico/formated(Sheet1).csv" + +Go to Ara DB and make a new task_id with a randomly generated uuid as the primarily key - -Khalim has made a python package to help scrape data: https://github.com/KhalimCK/epc-api-python - From d42ba5b9cf6e47f22512c9e84a66ca00bd6fd3a2 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Tue, 10 Mar 2026 10:55:57 +0000 Subject: [PATCH 045/124] ecr repo --- .github/workflows/deploy_terraform.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index 5841030c..596ab82d 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -314,7 +314,7 @@ jobs: lambda_name: ordnanceSurvey lambda_path: infrastructure/terraform/lambda/ordnanceSurvey stage: ${{ needs.determine_stage.outputs.stage }} - ecr_repo: postcode_splitter-${{ needs.determine_stage.outputs.stage }} + ecr_repo: ordnance-${{ needs.determine_stage.outputs.stage }} image_digest: ${{ needs.ordnanceSurvey_image.outputs.image_digest }} terraform_apply: ${{ needs.determine_stage.outputs.terraform_apply }} secrets: From 41d817b218c496b88e42d29d6735537c5ddc7d6a Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Tue, 10 Mar 2026 11:31:40 +0000 Subject: [PATCH 046/124] added default --- .devcontainer/asset_list/devcontainer.json | 3 ++- backend/address2UPRN/README.md | 13 ++++++++++++- backend/app/config.py | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.devcontainer/asset_list/devcontainer.json b/.devcontainer/asset_list/devcontainer.json index 83e5a276..dfa9ba4d 100644 --- a/.devcontainer/asset_list/devcontainer.json +++ b/.devcontainer/asset_list/devcontainer.json @@ -25,7 +25,8 @@ "ms-python.vscode-python-envs", "ms-python.black-formatter", "GrapeCity.gc-excelviewer", - "jakobhoeg.vscode-pokemon" + "jakobhoeg.vscode-pokemon", + "eamodio.gitlens" ], "settings": { "files.defaultWorkspace": "/workspaces/model", diff --git a/backend/address2UPRN/README.md b/backend/address2UPRN/README.md index 390aeb62..aaeba08d 100644 --- a/backend/address2UPRN/README.md +++ b/backend/address2UPRN/README.md @@ -19,8 +19,19 @@ Before we run this, we need to upload it into S3 as well as put initiate a subta * S3 upload I'll recommend somewhere in retrofit-data-dev and get the s3_uri -For this example I'll be using "s3://retrofit-data-dev/ara_raw_inputs/calico/formated(Sheet1).csv" +For this example I'll be using "s3://retrofit-data-dev/ara_raw_inputs/calico/Calico Homes Full list EPC Properties(Sheet2) (1) (1).csv" Go to Ara DB and make a new task_id with a randomly generated uuid as the primarily key +task_id = a7b70a02-4df4-45b5-a50b-196e095910bb +sub_task_id = 567cf73b-1210-4909-9ecc-36ae7e23420e +Step 3) Alright, now lets make the input for postcode-splitter sqs to get the ball rolling +postcode-splitter-sqs => https://eu-west-2.console.aws.amazon.com/sqs/v3/home?region=eu-west-2#/queues/https%3A%2F%2Fsqs.eu-west-2.amazonaws.com%2F337213553626%2Fpostcode-splitter-queue-dev + +{ + "task_id": "a7b70a02-4df4-45b5-a50b-196e095910bb", + "sub_task_id": "567cf73b-1210-4909-9ecc-36ae7e23420e", + "s3_uri": "s3://retrofit-data-dev/ara_raw_inputs/calico/Calico Homes Full list EPC Properties(Sheet2) (1) (1).csv" +} +Each batch of csv should be saved in retrofit-data-dev///.csv \ No newline at end of file diff --git a/backend/app/config.py b/backend/app/config.py index b5b29137..6604fec9 100644 --- a/backend/app/config.py +++ b/backend/app/config.py @@ -35,7 +35,7 @@ class Settings(BaseSettings): SECRET_KEY: str = "changeme" ENVIRONMENT: str = "changeme" DATA_BUCKET: str = "changeme" - PLAN_TRIGGER_BUCKET: str + PLAN_TRIGGER_BUCKET: str = "changeme" ENGINE_SQS_URL: str = "changeme" CATEGORISATION_SQS_URL: str = "changeme" From dcb3efdb7ed97fdd2818cccd8986551f5d88ccbd Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 10 Mar 2026 11:42:06 +0000 Subject: [PATCH 047/124] update fast-api terraform --- .../terraform/lambda/fast-api/main.tf | 122 +++++++++++++----- .../terraform/lambda/fast-api/provider.tf | 2 +- .../terraform/lambda/fast-api/variables.tf | 47 ++++--- 3 files changed, 118 insertions(+), 53 deletions(-) diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index 104d4a4d..aabc1c52 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -7,43 +7,101 @@ data "terraform_remote_state" "shared" { } } -module "lambda" { - source = "../../modules/lambda_with_sqs" +data "aws_secretsmanager_secret_version" "db_credentials" { + secret_id = "${var.stage}/assessment_model/db_credentials" +} - name = REPLACE ME #"address2uprn" for example - stage = var.stage +locals { + db_credentials = jsondecode(data.aws_secretsmanager_secret_version.db_credentials.secret_string) +} - image_uri = local.image_uri - # Optional: Set maximum_concurrency to limit concurrent SQS-triggered invocations (2-1000) - maximum_concurrency = var.maximum_concurrency +data "aws_ssm_parameter" "certificate_arn" { + name = "/ssl_certificate_arn" +} - batch_size = var.batch_size +data "aws_route53_zone" "this" { + name = var.domain_name +} - environment = { - STAGE = var.stage - LOG_LEVEL = "info" +############################################ +# Install Python requirements +############################################ +resource "null_resource" "pip_install" { + triggers = { + requirements_hash = filemd5("${path.root}/../../../../backend/app/requirements/requirements.txt") + } + + provisioner "local-exec" { + command = < Date: Tue, 10 Mar 2026 12:04:53 +0000 Subject: [PATCH 048/124] read queue names from terraform state --- .../lambda/categorisation/outputs.tf | 9 ++++++++ .../terraform/lambda/engine/outputs.tf | 9 ++++++++ .../terraform/lambda/fast-api/main.tf | 22 +++++++++++++++++-- 3 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 infrastructure/terraform/lambda/categorisation/outputs.tf create mode 100644 infrastructure/terraform/lambda/engine/outputs.tf diff --git a/infrastructure/terraform/lambda/categorisation/outputs.tf b/infrastructure/terraform/lambda/categorisation/outputs.tf new file mode 100644 index 00000000..be1ac118 --- /dev/null +++ b/infrastructure/terraform/lambda/categorisation/outputs.tf @@ -0,0 +1,9 @@ +output "categorisation_queue_url" { + value = module.lambda.queu_url + description = "URL of the Categorisation SQS queue" +} + +output "categorisation_queue_arn" { + value = module.lambda.queu_arn + description = "ARN of the Categorisation SQS queue" +} \ No newline at end of file diff --git a/infrastructure/terraform/lambda/engine/outputs.tf b/infrastructure/terraform/lambda/engine/outputs.tf new file mode 100644 index 00000000..bba2046b --- /dev/null +++ b/infrastructure/terraform/lambda/engine/outputs.tf @@ -0,0 +1,9 @@ +output "ara_engine_queue_url" { + value = module.lambda.queu_url + description = "URL of the Engine SQS queue" +} + +output "ara_engine_queue_arn" { + value = module.lambda.queu_arn + description = "ARN of the Engine SQS queue" +} \ No newline at end of file diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index aabc1c52..82d2cc60 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -7,6 +7,24 @@ data "terraform_remote_state" "shared" { } } +data "terraform_remote_state" "engine" { + backend = "s3" + config = { + bucket = "ara-engine-terraform-state", + key = "env:/${var.stage}/teraform.tfstate" + region = "eu-west-2" + } +} + +data "terraform_remote_state" "categorisation" { + backend = "s3" + config = { + bucket = "categorisation-terraform-state", + key = "env:/${var.stage}/teraform.tfstate" + region = "eu-west-2" + } +} + data "aws_secretsmanager_secret_version" "db_credentials" { secret_id = "${var.stage}/assessment_model/db_credentials" } @@ -88,8 +106,8 @@ module "fastapi" { HOTWATER_KWH_PREDICTIONS_BUCKET = data.terraform_remote_state.shared.outputs.retrofit_hotwater_kwh_predictions_bucket_name ENERGY_ASSESSMENTS_BUCKET = data.terraform_remote_state.shared.outputs.retrofit_energy_assessments_bucket_name - ENGINE_SQS_URL = data.terraform_remote_state.shared.outputs.engine_queue_url - CATEGORISATION_SQS_URL = "https://sqs.eu-west-2.amazonaws.com/337213553626/categorisation-queue-dev" + ENGINE_SQS_URL = data.terraform_remote_state.engine.ara_engine_queue_url + CATEGORISATION_SQS_URL = data.terraform_remote_state.categorisation.categorisation_queue_url } } From 783ddd7be008120bbc9a9cd0d2cf23b9ec0c8bbe Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 10 Mar 2026 12:09:52 +0000 Subject: [PATCH 049/124] add some comments --- infrastructure/terraform/lambda/fast-api/main.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index 82d2cc60..ebf436c3 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -1,3 +1,6 @@ +############################################ +# Load Terraform State +############################################ data "terraform_remote_state" "shared" { backend = "s3" config = { @@ -25,6 +28,9 @@ data "terraform_remote_state" "categorisation" { } } +############################################ +# Load Credentials +############################################ data "aws_secretsmanager_secret_version" "db_credentials" { secret_id = "${var.stage}/assessment_model/db_credentials" } From 5b15cb551867cc836120f513b232631faf4c9966 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Tue, 10 Mar 2026 12:39:27 +0000 Subject: [PATCH 050/124] added __init__.py missing in ordancy survey and helpeer extensions --- .devcontainer/backend/devcontainer.json | 4 +- backend/address2UPRN/README.md | 20 +- .../scripts/combine_address2uprn_outputs.py | 65 + backend/scripts/combined.csv | 5292 +++++++++++++++++ backend/utils/__init__.py | 0 5 files changed, 5379 insertions(+), 2 deletions(-) create mode 100644 backend/scripts/combine_address2uprn_outputs.py create mode 100644 backend/scripts/combined.csv create mode 100644 backend/utils/__init__.py diff --git a/.devcontainer/backend/devcontainer.json b/.devcontainer/backend/devcontainer.json index ac654ac1..48a58bd6 100644 --- a/.devcontainer/backend/devcontainer.json +++ b/.devcontainer/backend/devcontainer.json @@ -27,7 +27,9 @@ "GrapeCity.gc-excelviewer", "jakobhoeg.vscode-pokemon", "github.vscode-github-actions", - "me-dutour-mathieu.vscode-github-actions" + "me-dutour-mathieu.vscode-github-actions", + "anthropic.claude-code", + "eamodio.gitlens" ], "settings": { "files.defaultWorkspace": "/workspaces/model", diff --git a/backend/address2UPRN/README.md b/backend/address2UPRN/README.md index aaeba08d..1a835b6e 100644 --- a/backend/address2UPRN/README.md +++ b/backend/address2UPRN/README.md @@ -34,4 +34,22 @@ postcode-splitter-sqs => https://eu-west-2.console.aws.amazon.com/sqs/v3/home?re "sub_task_id": "567cf73b-1210-4909-9ecc-36ae7e23420e", "s3_uri": "s3://retrofit-data-dev/ara_raw_inputs/calico/Calico Homes Full list EPC Properties(Sheet2) (1) (1).csv" } -Each batch of csv should be saved in retrofit-data-dev///.csv \ No newline at end of file +Each batch of csv should be saved in retrofit-data-dev/ara_postcode_splitter_batches///.csv + +outputs of address2uprn ( which is automatically triggered on postcodesplitter) will be saved on retrofit-data-dev/ara_raw_outputs///.csv + + +Run the script in backend/scripts/combine_address2uprn_outputs.py with . +This will combine all the outputs of the files for each address2uprn into one big file + +Find out which ones have missing uprn and save that as a seperate sheet and save it somewhere in s3://retrofit-data-dev + +I uploaded the missing uprn here: s3://retrofit-data-dev/ara_raw_inputs/calico/missinguprn.csv + +ordnance_survey sqs is => https://eu-west-2.console.aws.amazon.com/sqs/v3/home?region=eu-west-2#/queues/https%3A%2F%2Fsqs.eu-west-2.amazonaws.com%2F337213553626%2FordnanceSurvey-queue-dev + +{ + "s3_uri": "s3://retrofit-data-dev/ara_raw_inputs/calico/missinguprn.csv", + "task_id": "a7b70a02-4df4-45b5-a50b-196e095910bb", + "sub_task_id": "567cf73b-1210-4909-9ecc-36ae7e23420e" +} diff --git a/backend/scripts/combine_address2uprn_outputs.py b/backend/scripts/combine_address2uprn_outputs.py new file mode 100644 index 00000000..be17f610 --- /dev/null +++ b/backend/scripts/combine_address2uprn_outputs.py @@ -0,0 +1,65 @@ +#!/usr/bin/env python3 + +import argparse +import boto3 +import pandas as pd +from io import BytesIO + +BUCKET = "retrofit-data-dev" + + +def list_csv_files(task_id): + s3 = boto3.client("s3") + paginator = s3.get_paginator("list_objects_v2") + + prefix = f"ara_raw_outputs/{task_id}" + csv_files = [] + + for page in paginator.paginate(Bucket=BUCKET, Prefix=prefix): + for obj in page.get("Contents", []): + key = obj["Key"] + if key.endswith(".csv"): + csv_files.append(key) + + return csv_files + + +def download_csv(key): + s3 = boto3.client("s3") + obj = s3.get_object(Bucket=BUCKET, Key=key) + return pd.read_csv(BytesIO(obj["Body"].read())) + + +def main(task_id, output): + print(f"Scanning task: {task_id}") + + csv_files = list_csv_files(task_id) + + if not csv_files: + print("No CSV files found") + return + + print(f"Found {len(csv_files)} CSV files") + + dfs = [] + for key in csv_files: + print(f"Downloading {key}") + df = download_csv(key) + dfs.append(df) + + combined = pd.concat(dfs, ignore_index=True) + + combined.to_csv(output, index=False) + + print(f"Combined CSV saved to {output}") + print(f"Total rows: {len(combined)}") + + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument("task_id", help="Task ID folder in S3") + parser.add_argument("--output", default="combined.csv") + + args = parser.parse_args() + + main(args.task_id, args.output) diff --git a/backend/scripts/combined.csv b/backend/scripts/combined.csv new file mode 100644 index 00000000..faf72d0c --- /dev/null +++ b/backend/scripts/combined.csv @@ -0,0 +1,5292 @@ +Asset Reference,Occurrence Reference,Address 1,Address 2,Address 3,postcode,Property Type,Type,Pattern,Fitted / Renewed Date,Domestic Rating,SAP Score,Potential Domestic Rating,Potential SAP Score,postcode_clean,address2uprn_uprn,address2uprn_address,address2uprn_lexiscore +1804,362201,1 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB127DP,100010345293.0,"1 Lancaster Drive, Padiham",0.3985 +1907,225833,3 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Jun 2014,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127DP,100010345295.0,"3, Lancaster Drive, Padiham",0.3985 +2106,358932,7 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Feb 2023,C - 69 to 80,72.0,B - 81 to 91,84.0,BB127DP,100010345299.0,"7 Lancaster Drive, Padiham",0.3985 +2156,362220,8 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: End Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127DP,100010345300.0,"8 Lancaster Drive, Padiham",0.3985 +2205,229260,9 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2014,D - 55 to 68,67.0,B - 81 to 91,85.0,BB127DP,100010345301.0,"9, Lancaster Drive, Padiham",0.3985 +2253,221652,10 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,69.0,B - 81 to 91,86.0,BB127DP,100010345302.0,"10 Lancaster Drive, Padiham",0.4027 +2300,234536,11 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: End Terrace,Domestic EPC Required,EPC Present,16 Apr 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB127DP,100010345303.0,"11, Lancaster Drive, Padiham",0.4027 +2349,117344,12 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Sep 2011,C - 69 to 80,69.0,C - 69 to 80,74.0,BB127DP,100010345304.0,"12, Lancaster Drive, Padiham",0.4027 +2443,210876,14 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Sep 2013,C - 69 to 80,70.0,B - 81 to 91,87.0,BB127DP,100010345305.0,"14, Lancaster Drive, Padiham",0.4027 +2495,362234,15 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB127DP,100010345306.0,"15 Lancaster Drive, Padiham",0.4027 +2548,362238,16 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB127DP,100010345307.0,"16 Lancaster Drive, Padiham",0.4027 +2601,295248,17 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: End Terrace,Domestic EPC Required,EPC Present,12 Jan 2018,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127DP,100010345308.0,"17, Lancaster Drive, Padiham",0.4027 +2650,362250,18 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB127DP,100010345309.0,"18 Lancaster Drive, Padiham",0.4027 +2699,105257,19 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: End Terrace,Domestic EPC Required,EPC Present,07 Sep 2021,D - 55 to 68,68.0,B - 81 to 91,86.0,BB127DP,100010345310.0,"19 Lancaster Drive, Padiham",0.4027 +2749,362258,20 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: End Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB127DP,100010345311.0,"20 Lancaster Drive, Padiham",0.4027 +2898,359923,23 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: End Terrace,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB127DP,100010345314.0,"23 Lancaster Drive, Padiham",0.4027 +2948,362271,24 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB127DP,100010345315.0,"24 Lancaster Drive, Padiham",0.4027 +3046,40792,26 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Apr 2009,C - 69 to 80,70.0,C - 69 to 80,76.0,BB127DP,100010345317.0,"26, Lancaster Drive, Padiham",0.4027 +3096,206117,27 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jun 2013,C - 69 to 80,72.0,B - 81 to 91,87.0,BB127DP,100010345318.0,"27, Lancaster Drive, Padiham",0.4027 +3189,244966,29 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: End Terrace,Domestic EPC Required,EPC Present,02 Dec 2015,D - 55 to 68,63.0,B - 81 to 91,86.0,BB127DP,100010345320.0,"29, Lancaster Drive, Padiham",0.4027 +3234,362295,30 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: End Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127DP,100010345321.0,"30 Lancaster Drive, Padiham",0.4027 +1811,197122,19 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Jul 2024,C - 69 to 80,73.0,B - 81 to 91,91.0,BB101XX,100010352965.0,19 Queens Road,0.4536 +1919,325621,21 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Jan 2020,C - 69 to 80,72.0,B - 81 to 91,91.0,BB101XX,100010352967.0,"21, Queens Road",0.4536 +2018,69670,23 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,28 Jul 2009,C - 69 to 80,72.0,C - 69 to 80,74.0,BB101XX,100010352969.0,"23, Queens Road",0.4536 +2116,180688,25 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Apr 2025,D - 55 to 68,67.0,B - 81 to 91,89.0,BB101XX,100010352971.0,25 Queens Road,0.4536 +2212,211783,27 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Apr 2025,D - 55 to 68,65.0,B - 81 to 91,89.0,BB101XX,100010352972.0,27 Queens Road,0.4536 +2302,118999,29 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Apr 2025,C - 69 to 80,71.0,A - 92 Plus,92.0,BB101XX,100010352973.0,29 Queens Road,0.4536 +2400,233926,31 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Apr 2025,D - 55 to 68,57.0,C - 69 to 80,79.0,BB101XX,100010352974.0,31 Queens Road,0.4536 +2501,181694,33 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: End Terr,Domestic EPC Required,EPC Present,31 May 2012,D - 55 to 68,68.0,B - 81 to 91,90.0,BB101XX,100010352975.0,"33, Queens Road",0.4536 +2610,244358,35 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,90.0,BB101XX,100010352976.0,"35, Queens Road",0.4536 +2807,325623,39 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Jan 2020,D - 55 to 68,68.0,B - 81 to 91,89.0,BB101XX,100010352978.0,"39, Queens Road",0.4536 +13127,331004,37 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,91.0,BB101XX,100010352977.0,"37, Queens Road",0.4536 +1841,40736,53 Albion Street Burnley Lancashire BB11 4QD,,, BB11 4QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Nov 2019,C - 69 to 80,72.0,B - 81 to 91,90.0,BB114QD,100010327030.0,"53, Albion Street",0.4652 +13692,359248,45 Albion Street Burnley Lancashire BB11 4QD,,, BB11 4QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Mar 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB114QD,100010327022.0,45 Albion Street,0.4652 +1844,248843,135 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,69.0,A - 92 Plus,92.0,BB103JD,100010354088.0,"135, Ridge Avenue",0.4652 +2141,248844,141 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Bungalow: End Terr,Domestic EPC Required,EPC Present,31 Mar 2016,D - 55 to 68,68.0,B - 81 to 91,88.0,BB103JD,100010354091.0,"141, Ridge Avenue",0.4652 +2637,248930,151 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Flat: Bottom,Domestic EPC Required,EPC Present,31 Mar 2016,D - 55 to 68,65.0,C - 69 to 80,73.0,BB103JD,100010354096.0,"151, Ridge Avenue",0.4652 +2837,248932,155 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Flat: Top,Domestic EPC Required,EPC Present,04 Apr 2016,D - 55 to 68,68.0,C - 69 to 80,75.0,BB103JD,100010354098.0,"155, Ridge Avenue",0.4652 +2937,248950,157 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Flat: Top,Domestic EPC Required,EPC Present,31 Mar 2016,D - 55 to 68,66.0,C - 69 to 80,73.0,BB103JD,100010354099.0,"157, Ridge Avenue",0.4652 +3034,248953,159 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,House: End Terrace,Domestic EPC Required,EPC Present,30 Mar 2016,D - 55 to 68,68.0,B - 81 to 91,88.0,BB103JD,100010354100.0,"159, Ridge Avenue",0.4652 +3222,248954,163 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Apr 2016,C - 69 to 80,72.0,B - 81 to 91,91.0,BB103JD,100010354102.0,"163, Ridge Avenue",0.4652 +3419,248955,167 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Bungalow: End Terr,Domestic EPC Required,EPC Present,31 Mar 2016,C - 69 to 80,71.0,B - 81 to 91,91.0,BB103JD,100010354104.0,"167, Ridge Avenue",0.4652 +3522,248956,169 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Apr 2016,D - 55 to 68,68.0,A - 92 Plus,92.0,BB103JD,100010354105.0,"169, Ridge Avenue",0.4652 +3828,248958,175 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,80.0,BB103JD,100010354108.0,175 Ridge Avenue,0.4652 +12977,329118,133 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Apr 2016,D - 55 to 68,65.0,B - 81 to 91,90.0,BB103JD,100010354087.0,"133, Ridge Avenue",0.4652 +13528,351516,153 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Flat: Bottom,Domestic EPC Required,EPC Present,31 Mar 2016,D - 55 to 68,65.0,C - 69 to 80,73.0,BB103JD,100010354097.0,"153, Ridge Avenue",0.4652 +13776,368767,173 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,06 Apr 2016,C - 69 to 80,71.0,A - 92 Plus,92.0,BB103JD,100010354107.0,"173, Ridge Avenue",0.4652 +1920,325563,2 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,73.0,B - 81 to 91,88.0,BB102QA,100010335782.0,"2, Conway Grove",0.4536 +2019,94855,4 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: End Terrace,Domestic EPC Required,EPC Present,01 Apr 2009,D - 55 to 68,67.0,C - 69 to 80,71.0,BB102QA,100010335784.0,"4, Conway Grove",0.4536 +2111,209265,6 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,78.0,BB102QA,100010335786.0,6 Conway Grove,0.4536 +2260,221637,9 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,69.0,B - 81 to 91,88.0,BB102QA,100010335789.0,"9, Conway Grove",0.4536 +2356,325566,11 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,70.0,B - 81 to 91,88.0,BB102QA,100010335791.0,"11, Conway Grove",0.4596 +2402,325564,12 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,70.0,B - 81 to 91,88.0,BB102QA,100010335792.0,"12, Conway Grove",0.4596 +2504,222009,14 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Jan 2014,D - 55 to 68,66.0,B - 81 to 91,85.0,BB102QA,100010335794.0,"14, Conway Grove",0.4596 +2557,118345,15 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,70.0,B - 81 to 91,87.0,BB102QA,100010335795.0,"15, Conway Grove",0.4596 +2611,208337,16 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: End Terrace,Domestic EPC Required,EPC Present,16 Jul 2013,D - 55 to 68,61.0,C - 69 to 80,80.0,BB102QA,100010335796.0,"16, Conway Grove",0.4596 +2707,325561,18 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,74.0,B - 81 to 91,89.0,BB102QA,100010335798.0,"18, Conway Grove",0.4596 +2956,238596,23 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jul 2015,D - 55 to 68,59.0,B - 81 to 91,87.0,BB102QA,100010335803.0,"23, Conway Grove",0.4596 +3008,179651,24 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Nov 2025,C - 69 to 80,70.0,B - 81 to 91,84.0,BB102QA,100010335804.0,24 Conway Grove,0.4596 +3054,325559,25 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,70.0,B - 81 to 91,88.0,BB102QA,100010335805.0,"25, Conway Grove",0.4596 +3149,40798,27 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,11 May 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB102QA,100010335807.0,27 Conway Grove,0.4596 +3195,325565,28 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2020,C - 69 to 80,73.0,B - 81 to 91,87.0,BB102QA,100010335808.0,"28, Conway Grove",0.4596 +3245,89455,29 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Dec 2009,C - 69 to 80,70.0,C - 69 to 80,73.0,BB102QA,100010335809.0,"29, Conway Grove",0.4596 +3338,325560,31 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: End Terrace,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB102QA,100010335811.0,"31, Conway Grove",0.4596 +3389,325562,32 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: End Terrace,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,70.0,B - 81 to 91,87.0,BB102QA,100010335812.0,"32, Conway Grove",0.4596 +3492,40809,34 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Dec 2008,D - 55 to 68,59.0,C - 69 to 80,75.0,BB102QA,100010335814.0,"34, Conway Grove",0.4596 +13735,360345,5 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jun 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB102QA,100010335785.0,5 Conway Grove,0.4536 +1926,252182,16 Cornel Grove Burnley Lancashire BB11 5LB,,, BB11 5LB,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jun 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115LB,100010335840.0,16 Cornel Grove,0.4596 +2026,110810,18 Cornel Grove Burnley Lancashire BB11 5LB,,, BB11 5LB,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,61.0,C - 69 to 80,75.0,BB115LB,100010335841.0,"18, Cornel Grove",0.4596 +2221,110834,22 Cornel Grove Burnley Lancashire BB11 5LB,,, BB11 5LB,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Feb 2011,D - 55 to 68,65.0,C - 69 to 80,75.0,BB115LB,100010335843.0,"22, Cornel Grove",0.4596 +9758,110887,29 Cornel Grove Burnley Lancashire BB11 5LB,,, BB11 5LB,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,60.0,C - 69 to 80,74.0,BB115LB,100010335847.0,"29, Cornel Grove",0.4596 +1968,328485,1 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: End Terrace,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115SA,10023759872.0,"1, Mere Court",0.4401 +2065,76856,3 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Aug 2009,C - 69 to 80,72.0,C - 69 to 80,77.0,BB115SA,100010348655.0,"3, Mere Court",0.4401 +2109,219728,4 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: End Terrace,Domestic EPC Required,EPC Present,07 Nov 2013,D - 55 to 68,68.0,B - 81 to 91,85.0,BB115SA,100010348656.0,"4, Mere Court",0.4401 +2165,328487,5 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: End Terrace,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,70.0,B - 81 to 91,85.0,BB115SA,100010348657.0,"5, Mere Court",0.4401 +2210,328486,6 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115SA,100010348658.0,"6, Mere Court",0.4401 +2262,90258,7 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Feb 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB115SA,100010348659.0,7 Mere Court,0.4401 +2307,328484,8 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115SA,100010348660.0,"8, Mere Court",0.4401 +2354,211358,9 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: End Terrace,Domestic EPC Required,EPC Present,09 Oct 2013,D - 55 to 68,67.0,B - 81 to 91,84.0,BB115SA,100010348661.0,"9, Mere Court",0.4401 +2451,221657,11 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,70.0,B - 81 to 91,87.0,BB115SA,100010348663.0,"11, Mere Court",0.4471 +2499,223669,12 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,75.0,B - 81 to 91,85.0,BB115SA,100010348664.0,12 Mere Court,0.4471 +2654,328482,15 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: End Terrace,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115SA,100010348667.0,"15, Mere Court",0.4471 +9753,328483,13 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115SA,100010348665.0,"13, Mere Court",0.4471 +1987,40739,1 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,73.0,C - 69 to 80,76.0,BB128HY,10003780189.0,"1, Cross Hills, Padiham",0.392 +2034,125277,2 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,02 Dec 2011,D - 55 to 68,64.0,C - 69 to 80,70.0,BB128HY,10003780190.0,"2, Cross Hills, Padiham",0.392 +2086,98504,3 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,26 Aug 2010,C - 69 to 80,79.0,C - 69 to 80,79.0,BB128HY,10003780191.0,"3, Cross Hills, Padiham",0.392 +2129,232675,4 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,16 Feb 2015,C - 69 to 80,75.0,C - 69 to 80,79.0,BB128HY,10003780192.0,"4, Cross Hills, Padiham",0.392 +2183,196140,5 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,29 Jan 2013,D - 55 to 68,66.0,C - 69 to 80,75.0,BB128HY,10003780193.0,"5, Cross Hills, Padiham",0.392 +2230,235521,6 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,08 May 2015,C - 69 to 80,71.0,C - 69 to 80,77.0,BB128HY,10003780194.0,"6, Cross Hills, Padiham",0.392 +2281,163337,7 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Apr 2012,D - 55 to 68,66.0,C - 69 to 80,75.0,BB128HY,10003780195.0,"7, Cross Hills, Padiham",0.392 +2323,101567,8 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,07 Oct 2010,C - 69 to 80,77.0,C - 69 to 80,80.0,BB128HY,10003780196.0,"8, Cross Hills, Padiham",0.392 +2375,101569,9 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,07 Oct 2010,C - 69 to 80,73.0,C - 69 to 80,78.0,BB128HY,10003780197.0,"9, Cross Hills, Padiham",0.392 +2418,76915,10 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,07 Sep 2009,C - 69 to 80,70.0,C - 69 to 80,76.0,BB128HY,10003780198.0,"10, Cross Hills, Padiham",0.3958 +2472,362231,11 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,78.0,BB128HY,10003780199.0,"11 Cross Hills, Padiham",0.3958 +2520,89262,12 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,10 Nov 2009,C - 69 to 80,75.0,B - 81 to 91,81.0,BB128HY,10003780200.0,"12, Cross Hills, Padiham",0.3958 +2578,100561,13 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,61.0,D - 55 to 68,62.0,BB128HY,10003780201.0,"13, Cross Hills, Padiham",0.3958 +2626,136778,14 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,06 Mar 2012,C - 69 to 80,70.0,C - 69 to 80,74.0,BB128HY,10003780202.0,"14, Cross Hills, Padiham",0.3958 +2679,77012,15 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,20 Jun 2023,D - 55 to 68,66.0,C - 69 to 80,71.0,BB128HY,10003780203.0,"15 Cross Hills, Padiham",0.3958 +2721,116043,16 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,21 Jul 2011,C - 69 to 80,72.0,C - 69 to 80,75.0,BB128HY,10003780204.0,"16, Cross Hills, Padiham",0.3958 +2771,111530,17 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,05 May 2011,C - 69 to 80,70.0,C - 69 to 80,74.0,BB128HY,10003780205.0,"17, Cross Hills, Padiham",0.3958 +2823,252161,18 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,20 Jan 2016,C - 69 to 80,72.0,C - 69 to 80,75.0,BB128HY,10003780206.0,"18, Cross Hills, Padiham",0.3958 +2870,226564,19 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,09 Jul 2014,C - 69 to 80,73.0,C - 69 to 80,76.0,BB128HY,10003780207.0,"19, Cross Hills, Padiham",0.3958 +2926,112958,20 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,01 Jun 2011,C - 69 to 80,70.0,C - 69 to 80,74.0,BB128HY,10003780208.0,"20, Cross Hills, Padiham",0.3958 +2975,362273,21 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,78.0,BB128HY,10003780209.0,"21 Cross Hills, Padiham",0.3958 +3021,112960,22 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,01 Jun 2011,D - 55 to 68,64.0,C - 69 to 80,72.0,BB128HY,10003780210.0,"22, Cross Hills, Padiham",0.3958 +3069,69665,23 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,House: Detached,Domestic EPC Required,EPC Present,27 Jul 2009,C - 69 to 80,69.0,C - 69 to 80,74.0,BB128HY,10003780211.0,"23 Cross Hills, Padiham",0.3958 +2008,40740,53 Accrington Road Burnley Lancashire BB11 4AN,,, BB11 4AN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Jan 2024,D - 55 to 68,62.0,B - 81 to 91,86.0,BB114AN,100010326518.0,53 Accrington Road,0.4754 +2056,184724,1 Water Street Worsthorne Burnley Lancashire BB10 3NF,,, BB10 3NF,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,79.0,B - 81 to 91,82.0,BB103NF,100010359856.0,"1 Water Street, Worsthorne",0.5494 +2151,105073,3 Water Street Worsthorne Burnley Lancashire BB10 3NF,,, BB10 3NF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Dec 2010,C - 69 to 80,71.0,C - 69 to 80,73.0,BB103NF,100010359858.0,"3, Water Street, Worsthorne",0.5494 +2250,137014,5 Water Street Worsthorne Burnley Lancashire BB10 3NF,,, BB10 3NF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,09 Feb 2026,C - 69 to 80,72.0,B - 81 to 91,81.0,BB103NF,100010359860.0,"5, Water Street, Worsthorne",0.5494 +2345,243662,7 Water Street Worsthorne Burnley Lancashire BB10 3NF,,, BB10 3NF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,30 Oct 2015,C - 69 to 80,69.0,A - 92 Plus,122.0,BB103NF,100010359862.0,"7, Water Street, Worsthorne",0.5494 +2438,324933,9 Water Street Worsthorne Burnley Lancashire BB10 3NF,,, BB10 3NF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,05 Dec 2019,D - 55 to 68,66.0,B - 81 to 91,89.0,BB103NF,100010359864.0,"9, Water Street, Worsthorne",0.5494 +2545,324932,11 Water Street Worsthorne Burnley Lancashire BB10 3NF,,, BB10 3NF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,05 Dec 2019,C - 69 to 80,70.0,B - 81 to 91,91.0,BB103NF,100010359866.0,"11, Water Street, Worsthorne",0.5525 +2648,89514,13 Water Street Worsthorne Burnley Lancashire BB10 3NF,,, BB10 3NF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,14 Dec 2009,C - 69 to 80,72.0,C - 69 to 80,75.0,BB103NF,100010359868.0,"13, Water Street, Worsthorne",0.5525 +2744,362256,15 Water Street Worsthorne Burnley Lancashire BB10 3NF,,, BB10 3NF,Bungalow: End Terr,Domestic EPC Required,EPC Present,01 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,90.0,BB103NF,100010359870.0,"15 Water Street, Worsthorne",0.5525 +2081,324903,62 Burnley Road Cliviger Burnley Lancashire BB10 4SN,,, BB10 4SN,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2019,D - 55 to 68,59.0,B - 81 to 91,86.0,BB104SN,100010331980.0,"62, Burnley Road, Cliviger",0.5925 +2178,206122,64 Burnley Road Cliviger Burnley Lancashire BB10 4SN,,, BB10 4SN,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jun 2023,D - 55 to 68,57.0,B - 81 to 91,86.0,BB104SN,100010331981.0,"64 Burnley Road, Cliviger",0.5925 +2365,324902,68 Burnley Road Cliviger Burnley Lancashire BB10 4SN,,, BB10 4SN,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2019,D - 55 to 68,66.0,B - 81 to 91,87.0,BB104SN,100010331983.0,"68, Burnley Road, Cliviger",0.5925 +2968,221633,80 Burnley Road Cliviger Burnley Lancashire BB10 4SN,,, BB10 4SN,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,60.0,C - 69 to 80,78.0,BB104SN,100010331989.0,"80, Burnley Road, Cliviger",0.5925 +3158,220696,84 Burnley Road Cliviger Burnley Lancashire BB10 4SN,,, BB10 4SN,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Dec 2013,D - 55 to 68,58.0,C - 69 to 80,77.0,BB104SN,100010331991.0,"84, Burnley Road, Cliviger",0.5925 +3254,324901,86 Burnley Road Cliviger Burnley Lancashire BB10 4SN,,, BB10 4SN,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 May 2024,C - 69 to 80,76.0,B - 81 to 91,91.0,BB104SN,100010331992.0,"86 Burnley Road, Cliviger",0.5925 +3456,324900,90 Burnley Road Cliviger Burnley Lancashire BB10 4SN,,, BB10 4SN,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2019,D - 55 to 68,62.0,B - 81 to 91,87.0,BB104SN,100010331994.0,"90, Burnley Road, Cliviger",0.5925 +2090,201346,2 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Apr 2013,D - 55 to 68,55.0,C - 69 to 80,79.0,BB102QE,100010329865.0,"2, Brent Street",0.4536 +2190,362221,4 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: End Terrace,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB102QE,100010329867.0,4 Brent Street,0.4536 +2236,199683,5 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Dec 2026,D - 55 to 68,67.0,B - 81 to 91,82.0,BB102QE,100010329868.0,"5, Brent Street",0.4536 +2382,103979,8 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2010,D - 55 to 68,63.0,C - 69 to 80,73.0,BB102QE,100010329871.0,"8, Brent Street",0.4536 +2478,362233,10 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: End Terrace,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB102QE,100010329873.0,10 Brent Street,0.4596 +2584,252186,12 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: End Terrace,Domestic EPC Required,EPC Present,29 Apr 2025,C - 69 to 80,70.0,B - 81 to 91,86.0,BB102QE,100010329875.0,12 Brent Street,0.4596 +2731,225834,15 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Jun 2014,D - 55 to 68,59.0,B - 81 to 91,84.0,BB102QE,100010329878.0,"15, Brent Street",0.4596 +2831,240375,17 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Aug 2015,D - 55 to 68,64.0,B - 81 to 91,86.0,BB102QE,100010329880.0,"17, Brent Street",0.4596 +2983,362275,20 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB102QE,100010329883.0,20 Brent Street,0.4596 +3032,40789,21 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Nov 2008,D - 55 to 68,66.0,C - 69 to 80,74.0,BB102QE,,, +3170,246205,24 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Jan 2016,D - 55 to 68,61.0,B - 81 to 91,86.0,BB102QE,100010329887.0,"24, Brent Street",0.4596 +3220,107648,25 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: End Terrace,Domestic EPC Required,EPC Present,30 Mar 2011,D - 55 to 68,59.0,C - 69 to 80,74.0,BB102QE,100010329888.0,"25, Brent Street",0.4596 +3267,325392,26 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,86.0,BB102QE,100010329889.0,"26, Brent Street",0.4596 +3777,95850,36 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: End Terrace,Domestic EPC Required,EPC Present,08 Jun 2010,D - 55 to 68,55.0,C - 69 to 80,72.0,BB102QE,100010329898.0,"36, Brent Street",0.4596 +3982,362341,40 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB102QE,100010329900.0,40 Brent Street,0.4596 +4091,111161,42 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2021,D - 55 to 68,64.0,B - 81 to 91,86.0,BB102QE,100010329901.0,42 Brent Street,0.4596 +4196,136673,44 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Feb 2012,D - 55 to 68,63.0,C - 69 to 80,71.0,BB102QE,100010329902.0,"44, Brent Street",0.4596 +2107,40747,2 Thirlmere Avenue Padiham Lancashire BB12 8PF,,, BB12 8PF,House: End Terrace,Domestic EPC Required,EPC Present,16 Jan 2024,C - 69 to 80,69.0,B - 81 to 91,84.0,BB128PF,100010358181.0,"2 Thirlmere Avenue, Padiham",0.6242 +2494,221606,10 Thirlmere Avenue Padiham Lancashire BB12 8PF,,, BB12 8PF,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Jan 2014,C - 69 to 80,69.0,B - 81 to 91,86.0,BB128PF,100010358189.0,"10, Thirlmere Avenue, Padiham",0.6268 +2549,362239,11 Thirlmere Avenue Padiham Lancashire BB12 8PF,,, BB12 8PF,House: End Terrace,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB128PF,100010358190.0,"11 Thirlmere Avenue, Padiham",0.6268 +2652,94831,13 Thirlmere Avenue Padiham Lancashire BB12 8PF,,, BB12 8PF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Mar 2010,D - 55 to 68,66.0,C - 69 to 80,70.0,BB128PF,100010358192.0,"13 Thirlmere Avenue, Padiham",0.6268 +2748,362257,15 Thirlmere Avenue Padiham Lancashire BB12 8PF,,, BB12 8PF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,90.0,BB128PF,100010358193.0,"15 Thirlmere Avenue, Padiham",0.6268 +2119,362218,1 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB102QH,10003758856.0,1 Shannon Square,0.4652 +2268,110671,4 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Dec 2020,C - 69 to 80,75.0,B - 81 to 91,89.0,BB102QH,10003758863.0,"4 SHANNON SQUARE, BURNLEY",0.6185 +2312,187729,5 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Sep 2012,C - 69 to 80,72.0,B - 81 to 91,86.0,BB102QH,10003758864.0,"5, Shannon Square",0.4652 +2363,88994,6 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2025,C - 69 to 80,72.0,B - 81 to 91,86.0,BB102QH,10003758865.0,6 Shannon Square,0.4652 +2458,210912,8 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2013,C - 69 to 80,74.0,B - 81 to 91,87.0,BB102QH,10003758867.0,"8, Shannon Square",0.4652 +2508,179607,9 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,Bungalow: End Terr,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,70.0,B - 81 to 91,88.0,BB102QH,10003758868.0,9 Shannon Square,0.4652 +2560,180692,10 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,Bungalow: End Terr,Domestic EPC Required,EPC Present,03 Oct 2024,D - 55 to 68,67.0,B - 81 to 91,85.0,BB102QH,10003758857.0,10 Shannon Square,0.4705 +2615,103296,11 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,10 Nov 2010,C - 69 to 80,74.0,C - 69 to 80,76.0,BB102QH,10003758858.0,"11, Shannon Square",0.4705 +2662,40771,12 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,26 May 2023,C - 69 to 80,71.0,B - 81 to 91,88.0,BB102QH,10003758859.0,12 Shannon Square,0.4705 +2755,95854,14 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,14 Dec 2025,C - 69 to 80,71.0,C - 69 to 80,77.0,BB102QH,10003758860.0,14 Shannon Square,0.4705 +2128,104035,1 Heron Court Burnley Lancashire BB11 5RW,,, BB11 5RW,House: Cluster Block,Domestic EPC Required,EPC Present,23 Dec 2024,C - 69 to 80,70.0,B - 81 to 91,84.0,BB115RW,100010342279.0,1 Heron Court,0.4471 +2371,110680,6 Heron Court Burnley Lancashire BB11 5RW,,, BB11 5RW,House: Cluster Block,Domestic EPC Required,EPC Present,02 Feb 2026,C - 69 to 80,74.0,C - 69 to 80,80.0,BB115RW,100010342284.0,"6, Heron Court",0.4471 +2627,104047,11 Heron Court Burnley Lancashire BB11 5RW,,, BB11 5RW,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,69.0,C - 69 to 80,75.0,BB115RW,100010342289.0,11 Heron Court,0.4536 +2677,110773,12 Heron Court Burnley Lancashire BB11 5RW,,, BB11 5RW,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Dec 2010,E - 39 to 54,54.0,D - 55 to 68,67.0,BB115RW,100010342290.0,"12, Heron Court",0.4536 +2723,110781,13 Heron Court Burnley Lancashire BB11 5RW,,, BB11 5RW,House: End Terrace,Domestic EPC Required,EPC Present,14 Mar 2022,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115RW,100010342291.0,13 Heron Court,0.4536 +2769,94974,14 Heron Court Burnley Lancashire BB11 5RW,,, BB11 5RW,House: End Terrace,Domestic EPC Required,EPC Present,22 Dec 2010,D - 55 to 68,57.0,C - 69 to 80,71.0,BB115RW,100010342292.0,"14, Heron Court",0.4536 +3068,104056,20 Heron Court Burnley Lancashire BB11 5RW,,, BB11 5RW,House: End Terrace,Domestic EPC Required,EPC Present,19 Nov 2010,D - 55 to 68,60.0,C - 69 to 80,75.0,BB115RW,100010342298.0,"20, Heron Court",0.4536 +2152,69499,39 Robinson Street Burnley Lancashire BB10 1NG,,, BB10 1NG,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2010,C - 69 to 80,77.0,C - 69 to 80,77.0,BB101NG,100010354212.0,"39, Robinson Street",0.4754 +3534,69494,67 Robinson Street Burnley Lancashire BB10 1NG,,, BB10 1NG,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Jul 2009,C - 69 to 80,72.0,C - 69 to 80,74.0,BB101NG,100010354233.0,"67, Robinson Street",0.4754 +13372,352603,28 Robinson Street Burnley Lancashire BB10 1NG,,, BB10 1NG,House: End Terrace,Domestic EPC Required,EPC Present,24 Jun 2022,C - 69 to 80,73.0,B - 81 to 91,89.0,BB101NG,100010354204.0,28 Robinson Street,0.4754 +2161,247406,135 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Mar 2016,C - 69 to 80,69.0,B - 81 to 91,85.0,BB104NJ,100010331362.0,"135, Brunshaw Avenue",0.4801 +2256,247403,137 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2025,C - 69 to 80,74.0,B - 81 to 91,82.0,BB104NJ,100010331363.0,137 Brunshaw Avenue,0.4801 +2350,211370,139 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: End Terrace,Domestic EPC Required,EPC Present,02 Jun 2026,D - 55 to 68,65.0,C - 69 to 80,76.0,BB104NJ,100010331364.0,"139, Brunshaw Avenue",0.4801 +2750,40775,147 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2009,C - 69 to 80,71.0,C - 69 to 80,75.0,BB104NJ,100010331372.0,"147, Brunshaw Avenue",0.4801 +3049,248951,153 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 May 2016,C - 69 to 80,71.0,B - 81 to 91,89.0,BB104NJ,100010331378.0,"153, Brunshaw Avenue",0.4801 +3146,362286,155 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB104NJ,100010331380.0,155 Brunshaw Avenue,0.4801 +3240,323632,157 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: End Terrace,Domestic EPC Required,EPC Present,14 Oct 2019,C - 69 to 80,71.0,B - 81 to 91,86.0,BB104NJ,100010331382.0,"157, Brunshaw Avenue",0.4801 +3332,110642,159 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: End Terrace,Domestic EPC Required,EPC Present,07 Apr 2011,C - 69 to 80,73.0,C - 69 to 80,78.0,BB104NJ,100010331384.0,"159, Brunshaw Avenue",0.4801 +3380,89519,160 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: End Terrace,Domestic EPC Required,EPC Present,13 Feb 2026,C - 69 to 80,78.0,B - 81 to 91,81.0,BB104NJ,100010331385.0,160 Brunshaw Avenue,0.4801 +3431,244967,161 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2015,D - 55 to 68,65.0,B - 81 to 91,88.0,BB104NJ,100010331386.0,"161, Brunshaw Avenue",0.4801 +3693,247413,166 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: End Terrace,Domestic EPC Required,EPC Present,14 Mar 2016,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104NJ,100010331391.0,"166, Brunshaw Avenue",0.4801 +3789,247415,168 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Mar 2016,D - 55 to 68,55.0,B - 81 to 91,84.0,BB104NJ,100010331393.0,"168, Brunshaw Avenue",0.4801 +3891,247408,170 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Mar 2016,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104NJ,100010331395.0,"170, Brunshaw Avenue",0.4801 +3996,247407,172 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Mar 2016,D - 55 to 68,56.0,B - 81 to 91,85.0,BB104NJ,100010331397.0,"172, Brunshaw Avenue",0.4801 +4213,89044,176 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Dec 2026,C - 69 to 80,71.0,C - 69 to 80,80.0,BB104NJ,100010331401.0,"176, Brunshaw Avenue",0.4801 +4330,247405,178 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2025,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104NJ,100010331403.0,178 Brunshaw Avenue,0.4801 +12688,362802,174 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB104NJ,100010331399.0,174 Brunshaw Avenue,0.4801 +2163,40750,3 Fennyfold Terrace Padiham Lancashire BB12 7BP,,, BB12 7BP,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Dec 2021,C - 69 to 80,73.0,B - 81 to 91,87.0,BB127BP,10003780392.0,"3 Fennyfold Terrace, Padiham",0.6268 +2361,245832,7 Fennyfold Terrace Padiham Lancashire BB12 7BP,,, BB12 7BP,House: End Terrace,Domestic EPC Required,EPC Present,12 Jan 2016,C - 69 to 80,71.0,B - 81 to 91,86.0,BB127BP,10003780394.0,"7, Fennyfold Terrace, Padiham",0.6268 +2657,245833,13 Fennyfold Terrace Padiham Lancashire BB12 7BP,,, BB12 7BP,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Dec 2025,C - 69 to 80,79.0,B - 81 to 91,82.0,BB127BP,10003780397.0,"13 Fennyfold Terrace, Padiham",0.6293 +2217,100570,1 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2021,D - 55 to 68,64.0,B - 81 to 91,84.0,BB114EE,100010339596.0,1 Girvan Grove,0.4536 +2269,362224,2 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,82.0,BB114EE,100010339597.0,2 Girvan Grove,0.4536 +2311,362225,3 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB114EE,100010339598.0,3 Girvan Grove,0.4536 +2362,362226,4 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB114EE,100010339599.0,4 Girvan Grove,0.4536 +2406,362227,5 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB114EE,100010339600.0,5 Girvan Grove,0.4536 +2456,95218,6 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,12 May 2010,D - 55 to 68,64.0,C - 69 to 80,73.0,BB114EE,100010339601.0,"6, Girvan Grove",0.4536 +2562,362241,8 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB114EE,100010339603.0,8 Girvan Grove,0.4536 +2661,40770,10 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Jul 2022,D - 55 to 68,65.0,B - 81 to 91,87.0,BB114EE,100010339605.0,10 Girvan Grove,0.4596 +2713,112358,11 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,19 May 2011,E - 39 to 54,46.0,D - 55 to 68,68.0,BB114EE,100010339606.0,"11, Girvan Grove",0.4596 +2757,362259,12 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB114EE,100010339607.0,12 Girvan Grove,0.4596 +2812,362261,13 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB114EE,100010339608.0,13 Girvan Grove,0.4596 +2861,40780,14 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Mar 2023,D - 55 to 68,63.0,B - 81 to 91,83.0,BB114EE,100010339609.0,14 Girvan Grove,0.4596 +2913,362267,15 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB114EE,100010339610.0,15 Girvan Grove,0.4596 +2961,116044,16 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,Bungalow: End Terr,Domestic EPC Required,EPC Present,21 Jul 2011,D - 55 to 68,56.0,D - 55 to 68,65.0,BB114EE,100010339611.0,"16, Girvan Grove",0.4596 +3013,102924,17 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Nov 2010,C - 69 to 80,73.0,C - 69 to 80,74.0,BB114EE,100010339612.0,"17, Girvan Grove",0.4596 +3060,40793,18 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Jun 2009,D - 55 to 68,68.0,C - 69 to 80,72.0,BB114EE,100010339613.0,"18, Girvan Grove",0.4596 +3203,362292,21 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB114EE,100010339615.0,21 Girvan Grove,0.4596 +3296,362303,23 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB114EE,100010339616.0,23 Girvan Grove,0.4596 +3399,237559,25 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Jun 2015,D - 55 to 68,59.0,B - 81 to 91,86.0,BB114EE,100010339617.0,"25, Girvan Grove",0.4596 +2226,118997,37 Lawrence Street Padiham Lancashire BB12 8DL,,, BB12 8DL,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Sep 2011,D - 55 to 68,67.0,C - 69 to 80,70.0,BB128DL,100010345653.0,"37, Lawrence Street, Padiham",0.6242 +2284,325615,115 Burnley Road Briercliffe Burnley Lancashire BB10 2HJ,,, BB10 2HJ,House: End Terrace,Domestic EPC Required,EPC Present,15 Jan 2020,D - 55 to 68,63.0,B - 81 to 91,89.0,BB102HJ,10003759080.0,"115, Burnley Road, Briercliffe",0.6048 +2297,247994,173 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,70.0,B - 81 to 91,87.0,BB104QH,100010330962.0,"173, Brownhill Avenue",0.4845 +2392,247995,175 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,74.0,B - 81 to 91,89.0,BB104QH,100010330964.0,"175, Brownhill Avenue",0.4845 +2951,251658,186 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,House: End Terrace,Domestic EPC Required,EPC Present,27 Jun 2016,C - 69 to 80,70.0,B - 81 to 91,88.0,BB104QH,100010330971.0,"186, Brownhill Avenue",0.4845 +3045,247996,188 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Mar 2016,C - 69 to 80,74.0,B - 81 to 91,89.0,BB104QH,100010330973.0,"188, Brownhill Avenue",0.4845 +3141,247997,190 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,73.0,B - 81 to 91,89.0,BB104QH,100010330975.0,"190, Brownhill Avenue",0.4845 +3192,250155,191 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,18 May 2016,D - 55 to 68,68.0,C - 69 to 80,75.0,BB104QH,100010330976.0,"191, Brownhill Avenue",0.4845 +3284,40802,193 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,30 Jul 2013,C - 69 to 80,69.0,C - 69 to 80,72.0,BB104QH,100010330978.0,"193, Brownhill Avenue",0.4845 +3379,112964,195 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Top,Domestic EPC Required,EPC Present,01 Jun 2011,C - 69 to 80,70.0,C - 69 to 80,73.0,BB104QH,100010330980.0,"195, Brownhill Avenue",0.4845 +3483,115743,197 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Top,Domestic EPC Required,EPC Present,08 Jul 2011,C - 69 to 80,71.0,C - 69 to 80,75.0,BB104QH,100010330982.0,"197, Brownhill Avenue",0.4845 +3590,40815,199 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,22 Aug 2025,C - 69 to 80,71.0,C - 69 to 80,73.0,BB104QH,100010330983.0,199 Brownhill Avenue,0.4845 +3689,362325,201 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,78.0,BB104QH,100010330985.0,201 Brownhill Avenue,0.4845 +3791,95890,203 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Top,Domestic EPC Required,EPC Present,01 Jun 2010,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QH,100010330987.0,"203, Brownhill Avenue",0.4845 +3888,304940,205 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Top,Domestic EPC Required,EPC Present,17 Apr 2019,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104QH,100010330989.0,"205, Brownhill Avenue",0.4845 +3998,208559,207 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,16 Jul 2024,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104QH,100010330991.0,207 Brownhill Avenue,0.4845 +4050,250156,208 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,18 May 2016,D - 55 to 68,68.0,C - 69 to 80,72.0,BB104QH,100010330992.0,"208, Brownhill Avenue",0.4845 +4103,40840,209 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,24 Apr 2009,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104QH,100010330993.0,"209, Brownhill Avenue",0.4845 +4158,76999,210 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,01 Jul 2024,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104QH,100010330994.0,210 Brownhill Avenue,0.4845 +4211,208558,211 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Top,Domestic EPC Required,EPC Present,29 Jul 2013,D - 55 to 68,68.0,C - 69 to 80,69.0,BB104QH,100010330995.0,"211, Brownhill Avenue",0.4845 +4273,362361,212 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104QH,100010330996.0,212 Brownhill Avenue,0.4845 +4327,305167,213 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Top,Domestic EPC Required,EPC Present,10 May 2019,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104QH,100010330997.0,"213, Brownhill Avenue",0.4845 +4393,97184,214 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Top,Domestic EPC Required,EPC Present,30 Jun 2010,C - 69 to 80,74.0,C - 69 to 80,79.0,BB104QH,100010330998.0,"214, Brownhill Avenue",0.4845 +4450,248661,215 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,06 Apr 2016,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104QH,100010330999.0,"215, Brownhill Avenue",0.4845 +4567,247973,217 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104QH,100010331001.0,217 Brownhill Avenue,0.4845 +4785,247974,221 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Top,Domestic EPC Required,EPC Present,04 Mar 2016,B - 81 to 91,86.0,A - 92 Plus,,BB104QH,100010331005.0,"221, Brownhill Avenue",0.4845 +5232,248662,230 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,House: End Terrace,Domestic EPC Required,EPC Present,12 Apr 2016,D - 55 to 68,67.0,B - 81 to 91,88.0,BB104QH,100010331009.0,"230, Brownhill Avenue",0.4845 +2310,231071,327 Briercliffe Road Burnley Lancashire BB10 1TX,,, BB10 1TX,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Jan 2015,C - 69 to 80,69.0,B - 81 to 91,84.0,BB101TX,100010330244.0,"327, Briercliffe Road",0.4845 +2322,112178,3 Ingham Street Padiham Lancashire BB12 8DR,,, BB12 8DR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Apr 2011,D - 55 to 68,66.0,C - 69 to 80,69.0,BB128DR,100010344167.0,"3, Ingham Street, Padiham",0.6154 +2380,90281,1 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,04 Sep 2023,C - 69 to 80,74.0,C - 69 to 80,77.0,BB126EG,10003781453.0,1 Sycamore Close,0.4652 +2423,180883,2 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,12 Jun 2012,D - 55 to 68,66.0,C - 69 to 80,71.0,BB126EG,10003781464.0,"2, Sycamore Close",0.4652 +2479,250557,3 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,19 Jan 2026,C - 69 to 80,75.0,C - 69 to 80,77.0,BB126EG,10003781466.0,3 Sycamore Close,0.4652 +2527,190495,4 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,16 Oct 2012,D - 55 to 68,68.0,C - 69 to 80,72.0,BB126EG,10003781467.0,"4, Sycamore Close",0.4652 +2583,362244,5 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,79.0,BB126EG,10003781468.0,5 Sycamore Close,0.4652 +2633,190496,6 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,16 Oct 2012,C - 69 to 80,70.0,C - 69 to 80,74.0,BB126EG,10003781469.0,"6, Sycamore Close",0.4652 +2684,89606,7 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,06 Dec 2023,C - 69 to 80,74.0,C - 69 to 80,77.0,BB126EG,10003781470.0,7 Sycamore Close,0.4652 +2730,362254,8 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB126EG,10003781471.0,8 Sycamore Close,0.4652 +2780,241363,9 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,10 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,75.0,BB126EG,10003781472.0,9 Sycamore Close,0.4652 +2833,362262,10 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB126EG,10003781454.0,10 Sycamore Close,0.4705 +2881,103977,11 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,19 May 2021,C - 69 to 80,77.0,C - 69 to 80,79.0,BB126EG,10003781455.0,11 SYCAMORE CLOSE,0.4705 +2934,190520,12 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,17 Jul 2024,C - 69 to 80,78.0,C - 69 to 80,79.0,BB126EG,10003781456.0,12 Sycamore Close,0.4705 +2982,362274,13 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,79.0,BB126EG,10003781457.0,13 Sycamore Close,0.4705 +3030,222015,14 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,20 Jan 2014,C - 69 to 80,69.0,C - 69 to 80,73.0,BB126EG,10003781458.0,"14, Sycamore Close",0.4705 +3077,126693,15 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,20 Dec 2011,C - 69 to 80,70.0,C - 69 to 80,73.0,BB126EG,10003781459.0,"15, Sycamore Close",0.4705 +3172,105379,17 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,10 Jan 2011,C - 69 to 80,69.0,C - 69 to 80,73.0,BB126EG,10003781461.0,"17, Sycamore Close",0.4705 +3218,102784,18 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,29 Apr 2025,C - 69 to 80,77.0,C - 69 to 80,77.0,BB126EG,10003781462.0,18 Sycamore Close,0.4705 +3269,94852,19 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,01 Apr 2009,C - 69 to 80,69.0,C - 69 to 80,73.0,BB126EG,10003781463.0,"19, Sycamore Close",0.4705 +3314,225832,20 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,03 Jun 2014,D - 55 to 68,66.0,C - 69 to 80,71.0,BB126EG,10003781465.0,"20, Sycamore Close",0.4705 +13170,362821,16 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB126EG,10003781460.0,16 Sycamore Close,0.4705 +2381,341705,8 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Oct 2021,D - 55 to 68,67.0,B - 81 to 91,87.0,BB104NE,100010333649.0,8 Chiltern Avenue,0.4705 +2477,40765,10 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Jun 2009,D - 55 to 68,65.0,C - 69 to 80,72.0,BB104NE,100010333651.0,"10, Chiltern Avenue",0.4754 +3078,98753,22 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,02 Jun 2026,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104NE,100010333663.0,"22, Chiltern Avenue",0.4754 +3173,136776,24 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,24 May 2024,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104NE,100010333665.0,24 Chiltern Avenue,0.4754 +3270,118382,26 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,24 Feb 2026,D - 55 to 68,65.0,C - 69 to 80,73.0,BB104NE,100010333667.0,"26, Chiltern Avenue",0.4754 +3365,108843,28 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,21 Mar 2011,D - 55 to 68,68.0,B - 81 to 91,81.0,BB104NE,100010333669.0,"28, Chiltern Avenue",0.4754 +3574,181103,32 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,25 Jun 2012,D - 55 to 68,68.0,C - 69 to 80,75.0,BB104NE,100010333673.0,"32, Chiltern Avenue",0.4754 +3626,250559,33 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,09 Jun 2016,E - 39 to 54,54.0,D - 55 to 68,64.0,BB104NE,100010333674.0,"33, Chiltern Avenue",0.4754 +3676,40820,34 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,02 Jun 2026,D - 55 to 68,64.0,C - 69 to 80,73.0,BB104NE,100010333675.0,"34, Chiltern Avenue",0.4754 +3725,90265,35 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,08 Mar 2010,D - 55 to 68,67.0,C - 69 to 80,72.0,BB104NE,100010333676.0,"35, Chiltern Avenue",0.4754 +3776,222620,36 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,04 Mar 2014,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104NE,100010333677.0,"36, Chiltern Avenue",0.4754 +3826,323339,37 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,08 Oct 2019,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104NE,100010333678.0,"37, Chiltern Avenue",0.4754 +3875,323347,38 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,09 Oct 2019,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104NE,100010333679.0,"38, Chiltern Avenue",0.4754 +3925,268901,39 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,12 Dec 2016,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104NE,100010333680.0,"39, Chiltern Avenue",0.4754 +3981,40834,40 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,18 Apr 2023,C - 69 to 80,73.0,C - 69 to 80,75.0,BB104NE,100010333681.0,40 Chiltern Avenue,0.4754 +4035,323351,41 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,09 Oct 2019,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104NE,100010333682.0,"41, Chiltern Avenue",0.4754 +4088,237811,42 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,02 Jul 2015,C - 69 to 80,69.0,C - 69 to 80,77.0,BB104NE,100010333683.0,"42, Chiltern Avenue",0.4754 +4140,323338,43 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,07 Oct 2019,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104NE,100010333684.0,"43, Chiltern Avenue",0.4754 +4195,323348,44 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,09 Oct 2019,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104NE,100010333685.0,"44, Chiltern Avenue",0.4754 +4250,237812,45 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,02 Jul 2015,D - 55 to 68,68.0,C - 69 to 80,72.0,BB104NE,100010333686.0,"45, Chiltern Avenue",0.4754 +4308,323352,46 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,09 Oct 2019,C - 69 to 80,75.0,C - 69 to 80,76.0,BB104NE,100010333687.0,"46, Chiltern Avenue",0.4754 +4429,323350,48 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,09 Oct 2019,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104NE,100010333689.0,"48, Chiltern Avenue",0.4754 +4487,268810,49 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,28 Nov 2016,C - 69 to 80,73.0,C - 69 to 80,75.0,BB104NE,100010333690.0,"49, Chiltern Avenue",0.4754 +4604,205789,51 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,06 Jun 2013,D - 55 to 68,56.0,D - 55 to 68,67.0,BB104NE,100010333691.0,"51, Chiltern Avenue",0.4754 +4718,116416,53 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104NE,100010333693.0,53 Chiltern Avenue,0.4754 +4819,362395,55 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104NE,100010333695.0,55 Chiltern Avenue,0.4754 +5321,272421,65 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,13 Mar 2017,C - 69 to 80,73.0,C - 69 to 80,78.0,BB104NE,100010333697.0,"65, Chiltern Avenue",0.4754 +5429,224923,67 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,09 May 2014,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104NE,100010333698.0,"67, Chiltern Avenue",0.4754 +5536,253478,69 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,12 Sep 2016,C - 69 to 80,75.0,C - 69 to 80,76.0,BB104NE,100010333699.0,"69, Chiltern Avenue",0.4754 +5641,132615,71 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,13 Jan 2012,C - 69 to 80,70.0,C - 69 to 80,73.0,BB104NE,100010333700.0,"71, Chiltern Avenue",0.4754 +5843,362467,75 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,01 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104NE,100010333701.0,75 Chiltern Avenue,0.4754 +5939,94924,77 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,02 Dec 2026,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104NE,100010333702.0,"77, Chiltern Avenue",0.4754 +6117,100565,81 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,23 Sep 2010,D - 55 to 68,66.0,C - 69 to 80,73.0,BB104NE,100010333704.0,"81, Chiltern Avenue",0.4754 +2389,230490,1 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,05 Dec 2014,D - 55 to 68,61.0,C - 69 to 80,78.0,BB127DA,100010332614.0,"1, Cambridge Drive, Padiham",0.6214 +2433,190621,2 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,18 Oct 2012,D - 55 to 68,65.0,B - 81 to 91,83.0,BB127DA,100010332615.0,"2, Cambridge Drive, Padiham",0.6214 +2489,222852,3 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Jan 2026,C - 69 to 80,74.0,B - 81 to 91,87.0,BB127DA,100010332616.0,"3 Cambridge Drive, Padiham",0.6214 +2536,246398,4 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Feb 2016,D - 55 to 68,59.0,B - 81 to 91,83.0,BB127DA,100010332617.0,"4, Cambridge Drive, Padiham",0.6214 +2595,362246,5 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,D - 55 to 68,68.0,B - 81 to 91,85.0,BB127DA,100010332618.0,"5 Cambridge Drive, Padiham",0.6214 +2642,362249,6 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB127DA,100010332619.0,"6 Cambridge Drive, Padiham",0.6214 +2694,362252,7 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,24 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,83.0,BB127DA,100010332620.0,"7 Cambridge Drive, Padiham",0.6214 +2792,286346,9 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,19 Jul 2017,D - 55 to 68,62.0,B - 81 to 91,81.0,BB127DA,100010332622.0,"9, Cambridge Drive, Padiham",0.6214 +2892,295522,11 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Jan 2018,D - 55 to 68,64.0,B - 81 to 91,85.0,BB127DA,100010332624.0,"11, Cambridge Drive, Padiham",0.6242 +2993,119038,13 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,72.0,B - 81 to 91,88.0,BB127DA,100010332626.0,"13, Cambridge Drive, Padiham",0.6242 +3090,40795,15 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2010,D - 55 to 68,61.0,C - 69 to 80,74.0,BB127DA,100010332628.0,"15, Cambridge Drive, Padiham",0.6242 +3183,211488,17 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,16 Oct 2013,D - 55 to 68,64.0,B - 81 to 91,81.0,BB127DA,100010332630.0,"17, Cambridge Drive, Padiham",0.6242 +3274,94837,19 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Mar 2010,D - 55 to 68,67.0,C - 69 to 80,69.0,BB127DA,100010332632.0,"19, Cambridge Drive, Padiham",0.6242 +3321,189413,20 Cambridge Drive PADIHAM Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Oct 2012,D - 55 to 68,67.0,B - 81 to 91,85.0,BB127DA,100010332633.0,"20, Cambridge Drive, Padiham",0.6242 +3374,204822,21 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 May 2013,D - 55 to 68,62.0,B - 81 to 91,86.0,BB127DA,100010332634.0,"21, Cambridge Drive, Padiham",0.6242 +3581,180696,25 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,07 Jun 2012,D - 55 to 68,68.0,B - 81 to 91,85.0,BB127DA,100010332638.0,"25, Cambridge Drive, Padiham",0.6242 +3685,225366,27 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 May 2014,D - 55 to 68,67.0,B - 81 to 91,84.0,BB127DA,100010332640.0,"27, Cambridge Drive, Padiham",0.6242 +3737,362327,28 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB127DA,100010332641.0,"28 Cambridge Drive, Padiham",0.6242 +3782,90246,29 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Feb 2010,C - 69 to 80,69.0,C - 69 to 80,73.0,BB127DA,100010332642.0,"29, Cambridge Drive, Padiham",0.6242 +3831,40829,30 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Jan 2026,C - 69 to 80,72.0,B - 81 to 91,85.0,BB127DA,100010332643.0,"30 Cambridge Drive, Padiham",0.6242 +3882,97232,31 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,27 Jul 2010,D - 55 to 68,56.0,D - 55 to 68,61.0,BB127DA,100010332644.0,"31, Cambridge Drive, Padiham",0.6242 +3934,240302,32 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,18 Aug 2015,D - 55 to 68,55.0,B - 81 to 91,81.0,BB127DA,100010332645.0,"32, Cambridge Drive, Padiham",0.6242 +4204,252235,37 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Jun 2016,C - 69 to 80,70.0,B - 81 to 91,86.0,BB127DA,100010332650.0,"37, Cambridge Drive, Padiham",0.6242 +4380,362368,40 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB127DA,100010332653.0,"40 Cambridge Drive, Padiham",0.6242 +4557,362379,43 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB127DA,100010332656.0,"43 Cambridge Drive, Padiham",0.6242 +2393,324676,3 Downham Grove Burnley Lancashire BB10 4LG,,, BB10 4LG,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2019,D - 55 to 68,68.0,B - 81 to 91,87.0,BB104LG,100010337490.0,"3, Downham Grove",0.4596 +2445,40764,4 Downham Grove Burnley Lancashire BB10 4LG,,, BB10 4LG,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Jul 2024,C - 69 to 80,70.0,B - 81 to 91,84.0,BB104LG,100010337491.0,4 Downham Grove,0.4596 +2493,227728,5 Downham Grove Burnley Lancashire BB10 4LG,,, BB10 4LG,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,65.0,C - 69 to 80,76.0,BB104LG,100010337492.0,5 Downham Grove,0.4596 +2746,324698,10 Downham Grove Burnley Lancashire BB10 4LG,,, BB10 4LG,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2019,C - 69 to 80,73.0,B - 81 to 91,89.0,BB104LG,100010337497.0,"10, Downham Grove",0.4652 +2846,230500,12 Downham Grove Burnley Lancashire BB10 4LG,,, BB10 4LG,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Dec 2014,D - 55 to 68,66.0,B - 81 to 91,86.0,BB104LG,100010337499.0,"12, Downham Grove",0.4652 +2949,324697,14 Downham Grove Burnley Lancashire BB10 4LG,,, BB10 4LG,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2019,C - 69 to 80,71.0,B - 81 to 91,89.0,BB104LG,100010337501.0,"14, Downham Grove",0.4652 +3003,112184,15 Downham Grove Burnley Lancashire BB10 4LG,,, BB10 4LG,House: End Terrace,Domestic EPC Required,EPC Present,13 Apr 2011,D - 55 to 68,65.0,C - 69 to 80,70.0,BB104LG,100010337502.0,"15, Downham Grove",0.4652 +3047,77007,16 Downham Grove Burnley Lancashire BB10 4LG,,, BB10 4LG,House: End Terrace,Domestic EPC Required,EPC Present,01 Oct 2009,D - 55 to 68,67.0,C - 69 to 80,71.0,BB104LG,100010337503.0,"16, Downham Grove",0.4652 +3140,362285,18 Downham Grove Burnley Lancashire BB10 4LG,,, BB10 4LG,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB104LG,100010337505.0,18 Downham Grove,0.4652 +2413,247843,29 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QN,100010331156.0,"29, Browsholme Avenue",0.4845 +2517,247844,31 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,01 Mar 2016,D - 55 to 68,67.0,C - 69 to 80,74.0,BB104QN,100010331158.0,"31, Browsholme Avenue",0.4845 +2622,246816,33 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104QN,100010331160.0,"33, Browsholme Avenue",0.4845 +2725,246822,35 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,71.0,C - 69 to 80,74.0,BB104QN,100010331162.0,"35, Browsholme Avenue",0.4845 +2820,247845,37 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,01 Mar 2016,D - 55 to 68,68.0,C - 69 to 80,74.0,BB104QN,100010331164.0,"37, Browsholme Avenue",0.4845 +2923,247846,39 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QN,100010331166.0,"39, Browsholme Avenue",0.4845 +3020,247847,41 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,73.0,C - 69 to 80,75.0,BB104QN,100010331168.0,"41, Browsholme Avenue",0.4845 +3117,247848,43 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,74.0,C - 69 to 80,75.0,BB104QN,100010331170.0,"43, Browsholme Avenue",0.4845 +3211,247849,45 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QN,100010331172.0,"45, Browsholme Avenue",0.4845 +3306,247998,47 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,31 Mar 2016,D - 55 to 68,68.0,C - 69 to 80,72.0,BB104QN,100010331174.0,"47, Browsholme Avenue",0.4845 +3408,247964,49 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,73.0,C - 69 to 80,74.0,BB104QN,100010331176.0,"49, Browsholme Avenue",0.4845 +3513,248663,51 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,74.0,C - 69 to 80,75.0,BB104QN,100010331177.0,"51, Browsholme Avenue",0.4845 +3616,247850,53 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,70.0,C - 69 to 80,75.0,BB104QN,100010331178.0,"53, Browsholme Avenue",0.4845 +3716,247965,55 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,71.0,C - 69 to 80,76.0,BB104QN,100010331179.0,"55, Browsholme Avenue",0.4845 +3815,247851,57 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,75.0,C - 69 to 80,76.0,BB104QN,100010331180.0,"57, Browsholme Avenue",0.4845 +3865,246823,58 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QN,100010331181.0,"58, Browsholme Avenue",0.4845 +3914,248664,59 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,18 Apr 2016,C - 69 to 80,71.0,C - 69 to 80,76.0,BB104QN,100010331182.0,"59, Browsholme Avenue",0.4845 +3968,246824,60 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104QN,100010331183.0,"60, Browsholme Avenue",0.4845 +4021,247999,61 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,71.0,C - 69 to 80,76.0,BB104QN,100010331184.0,"61, Browsholme Avenue",0.4845 +4076,248000,62 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,31 Mar 2016,C - 69 to 80,70.0,C - 69 to 80,73.0,BB104QN,100010331185.0,"62, Browsholme Avenue",0.4845 +4128,247966,63 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Mar 2016,D - 55 to 68,68.0,C - 69 to 80,74.0,BB104QN,100010331186.0,"63, Browsholme Avenue",0.4845 +4182,247967,64 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QN,100010331187.0,64 Browsholme Avenue,0.4845 +4238,248189,65 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,29 Mar 2016,C - 69 to 80,71.0,C - 69 to 80,73.0,BB104QN,100010331188.0,"65, Browsholme Avenue",0.4845 +4302,246825,66 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,70.0,C - 69 to 80,75.0,BB104QN,100010331189.0,"66, Browsholme Avenue",0.4845 +4419,246826,68 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104QN,100010331191.0,"68, Browsholme Avenue",0.4845 +4475,247968,69 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104QN,100010331192.0,"69, Browsholme Avenue",0.4845 +4535,246827,70 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,15 Feb 2016,D - 55 to 68,67.0,C - 69 to 80,69.0,BB104QN,100010331193.0,"70, Browsholme Avenue",0.4845 +4594,246809,71 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,18 Feb 2016,D - 55 to 68,68.0,C - 69 to 80,72.0,BB104QN,100010331194.0,"71, Browsholme Avenue",0.4845 +4655,246828,72 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104QN,100010331195.0,"72, Browsholme Avenue",0.4845 +4706,246810,73 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,18 Feb 2016,C - 69 to 80,71.0,C - 69 to 80,72.0,BB104QN,100010331196.0,"73, Browsholme Avenue",0.4845 +4760,246829,74 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104QN,100010331197.0,"74, Browsholme Avenue",0.4845 +4809,246836,75 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,18 Feb 2016,C - 69 to 80,71.0,C - 69 to 80,72.0,BB104QN,100010331198.0,"75, Browsholme Avenue",0.4845 +4862,246832,76 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QN,100010331199.0,"76, Browsholme Avenue",0.4845 +4903,248667,77 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,12 Apr 2016,D - 55 to 68,68.0,C - 69 to 80,75.0,BB104QN,100010331200.0,"77, Browsholme Avenue",0.4845 +4948,247969,78 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104QN,100010331201.0,"78, Browsholme Avenue",0.4845 +4994,245696,79 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2016,D - 55 to 68,68.0,C - 69 to 80,73.0,BB104QN,100010331202.0,"79, Browsholme Avenue",0.4845 +5045,246833,80 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,75.0,C - 69 to 80,76.0,BB104QN,100010331203.0,"80, Browsholme Avenue",0.4845 +5094,246812,81 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,18 Feb 2016,C - 69 to 80,71.0,C - 69 to 80,72.0,BB104QN,100010331204.0,"81, Browsholme Avenue",0.4845 +5147,248190,82 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,30 Mar 2016,D - 55 to 68,59.0,D - 55 to 68,66.0,BB104QN,100010331205.0,"82, Browsholme Avenue",0.4845 +5198,250509,83 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,20 Jun 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB104QN,100010331206.0,83 Browsholme Avenue,0.4845 +5259,230638,84 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,17 Dec 2014,D - 55 to 68,61.0,C - 69 to 80,70.0,BB104QN,100010331207.0,"84, Browsholme Avenue",0.4845 +5367,247852,86 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104QN,100010331208.0,"86, Browsholme Avenue",0.4845 +5477,248668,88 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,12 Apr 2016,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104QN,100010331209.0,"88, Browsholme Avenue",0.4845 +5579,248191,90 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,11 Mar 2016,D - 55 to 68,68.0,C - 69 to 80,72.0,BB104QN,100010331210.0,"90, Browsholme Avenue",0.4845 +5685,248192,92 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QN,100010331211.0,"92, Browsholme Avenue",0.4845 +5784,246813,94 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,18 Feb 2016,C - 69 to 80,73.0,C - 69 to 80,74.0,BB104QN,100010331212.0,"94, Browsholme Avenue",0.4845 +5973,245697,98 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104QN,100010331214.0,"98, Browsholme Avenue",0.4845 +6066,245700,100 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2016,D - 55 to 68,68.0,C - 69 to 80,72.0,BB104QN,100010331215.0,"100, Browsholme Avenue",0.4886 +6158,245704,102 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104QN,100010331216.0,"102, Browsholme Avenue",0.4886 +6340,246389,106 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,68.0,C - 69 to 80,72.0,BB104QN,100010331218.0,"106, Browsholme Avenue",0.4886 +6438,245708,108 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104QN,100010331219.0,"108, Browsholme Avenue",0.4886 +6637,247970,112 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104QN,100010331221.0,"112, Browsholme Avenue",0.4886 +6736,245711,114 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,71.0,C - 69 to 80,75.0,BB104QN,100010331222.0,"114, Browsholme Avenue",0.4886 +6836,245715,116 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104QN,100010331223.0,"116, Browsholme Avenue",0.4886 +6936,247853,118 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104QN,100010331224.0,"118, Browsholme Avenue",0.4886 +7037,245717,120 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,73.0,C - 69 to 80,74.0,BB104QN,100010331225.0,"120, Browsholme Avenue",0.4886 +7135,247971,122 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104QN,100010331226.0,"122, Browsholme Avenue",0.4886 +7236,245718,124 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104QN,100010331227.0,"124, Browsholme Avenue",0.4886 +7336,244946,126 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Jan 2016,D - 55 to 68,68.0,C - 69 to 80,69.0,BB104QN,100010331228.0,"126, Browsholme Avenue",0.4886 +7430,247972,128 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104QN,100010331229.0,"128, Browsholme Avenue",0.4886 +7521,245812,130 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,71.0,C - 69 to 80,74.0,BB104QN,100010331230.0,"130, Browsholme Avenue",0.4886 +7623,245813,132 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,69.0,C - 69 to 80,72.0,BB104QN,100010331231.0,"132, Browsholme Avenue",0.4886 +7735,245814,134 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Jan 2016,D - 55 to 68,68.0,C - 69 to 80,69.0,BB104QN,100010331232.0,"134, Browsholme Avenue",0.4886 +7845,245815,136 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,74.0,C - 69 to 80,74.0,BB104QN,100010331233.0,"136, Browsholme Avenue",0.4886 +2422,222621,3 Slaidburn Avenue Burnley Lancashire BB10 4NS,,, BB10 4NS,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104NS,100010355953.0,3 Slaidburn Avenue,0.4754 +2631,243002,7 Slaidburn Avenue Burnley Lancashire BB10 4NS,,, BB10 4NS,House: End Terrace,Domestic EPC Required,EPC Present,22 Oct 2015,D - 55 to 68,61.0,B - 81 to 91,87.0,BB104NS,100010355957.0,"7, Slaidburn Avenue",0.4754 +2682,323777,8 Slaidburn Avenue Burnley Lancashire BB10 4NS,,, BB10 4NS,House: End Terrace,Domestic EPC Required,EPC Present,07 Nov 2019,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104NS,100010355958.0,"8, Slaidburn Avenue",0.4754 +2727,225871,9 Slaidburn Avenue Burnley Lancashire BB10 4NS,,, BB10 4NS,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Jan 2026,C - 69 to 80,74.0,B - 81 to 91,90.0,BB104NS,100010355959.0,9 Slaidburn Avenue,0.4754 +2878,40782,12 Slaidburn Avenue Burnley Lancashire BB10 4NS,,, BB10 4NS,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Apr 2009,D - 55 to 68,67.0,C - 69 to 80,76.0,BB104NS,100010355962.0,"12, Slaidburn Avenue",0.4801 +3517,90071,25 Slaidburn Avenue Burnley Lancashire BB10 4NS,,, BB10 4NS,House: End Terrace,Domestic EPC Required,EPC Present,19 Jan 2010,D - 55 to 68,60.0,C - 69 to 80,76.0,BB104NS,100010355973.0,"25, Slaidburn Avenue",0.4801 +3724,192307,29 Slaidburn Avenue Burnley Lancashire BB10 4NS,,, BB10 4NS,House: End Terrace,Domestic EPC Required,EPC Present,19 Aug 2024,C - 69 to 80,69.0,B - 81 to 91,85.0,BB104NS,100010355977.0,29 Slaidburn Avenue,0.4801 +3775,323776,30 Slaidburn Avenue Burnley Lancashire BB10 4NS,,, BB10 4NS,House: End Terrace,Domestic EPC Required,EPC Present,07 Nov 2019,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104NS,100010355978.0,"30, Slaidburn Avenue",0.4801 +2459,229251,2 Hall Hill Street Padiham Lancashire BB12 8HJ,,, BB12 8HJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,16 Oct 2014,D - 55 to 68,63.0,B - 81 to 91,86.0,BB128HJ,100010340829.0,"2, Hall Hill Street, Padiham",0.659 +2561,362240,4 Hall Hill Street Padiham Lancashire BB12 8HJ,,, BB12 8HJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB128HJ,100010340830.0,"4 Hall Hill Street, Padiham",0.659 +2663,40772,6 Hall Hill Street Padiham Lancashire BB12 8HJ,,, BB12 8HJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,68.0,B - 81 to 91,89.0,BB128HJ,100010340831.0,"6, Hall Hill Street, Padiham",0.659 +2756,196141,8 Hall Hill Street Padiham Lancashire BB12 8HJ,,, BB12 8HJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,29 Oct 2025,B - 81 to 91,86.0,B - 81 to 91,91.0,BB128HJ,100010340832.0,"8 Hall Hill Street, Padiham",0.659 +2860,362263,10 Hall Hill Street Padiham Lancashire BB12 8HJ,,, BB12 8HJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB128HJ,100010340833.0,"10 Hall Hill Street, Padiham",0.6617 +2963,189873,12 Hall Hill Street Padiham Lancashire BB12 8HJ,,, BB12 8HJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB128HJ,100010340834.0,"12 Hall Hill Street, Padiham",0.6617 +2475,221661,1 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2025,C - 69 to 80,76.0,C - 69 to 80,78.0,BB103DR,100010352006.0,1 Pheasantford Green,0.4845 +2522,129473,2 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,30 Jun 2025,C - 69 to 80,77.0,C - 69 to 80,77.0,BB103DR,100010352007.0,2 Pheasantford Green,0.4845 +2581,250517,3 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,06 Jun 2016,C - 69 to 80,69.0,C - 69 to 80,74.0,BB103DR,100010352008.0,"3, Pheasantford Green",0.4845 +2629,325779,4 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,79.0,C - 69 to 80,79.0,BB103DR,100010352009.0,"4, Pheasantford Green",0.4845 +2681,233713,5 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,75.0,BB103DR,100010352010.0,5 Pheasantford Green,0.4845 +2728,182482,6 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,18 Jul 2012,D - 55 to 68,63.0,C - 69 to 80,70.0,BB103DR,100010352011.0,"6, Pheasantford Green",0.4845 +2776,142712,7 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,16 Oct 2024,C - 69 to 80,76.0,C - 69 to 80,78.0,BB103DR,100010352012.0,7 Pheasantford Green,0.4845 +2828,325767,8 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,71.0,C - 69 to 80,71.0,BB103DR,100010352013.0,"8, Pheasantford Green",0.4845 +2877,325778,9 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,77.0,C - 69 to 80,78.0,BB103DR,100010352014.0,"9, Pheasantford Green",0.4845 +2930,253474,10 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,24 Aug 2016,C - 69 to 80,77.0,C - 69 to 80,78.0,BB103DR,100010352015.0,"10, Pheasantford Green",0.4886 +2978,325777,11 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,77.0,C - 69 to 80,79.0,BB103DR,100010352016.0,"11, Pheasantford Green",0.4886 +3027,221662,12 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,25 Jul 2025,C - 69 to 80,75.0,C - 69 to 80,75.0,BB103DR,100010352017.0,12 Pheasantford Green,0.4886 +3074,188285,13 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,78.0,BB103DR,100010352018.0,13 Pheasantford Green,0.4886 +3121,362283,14 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,76.0,C - 69 to 80,78.0,BB103DR,100010352019.0,14 Pheasantford Green,0.4886 +3167,325766,15 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,79.0,C - 69 to 80,79.0,BB103DR,100010352020.0,"15, Pheasantford Green",0.4886 +3215,119916,16 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,26 Oct 2011,D - 55 to 68,63.0,D - 55 to 68,67.0,BB103DR,100010352021.0,"16, Pheasantford Green",0.4886 +3264,225347,17 Pheasantford Green Burnley BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,01 Jul 2025,C - 69 to 80,75.0,C - 69 to 80,75.0,BB103DR,100010352022.0,17 Pheasantford Green,0.5742 +3311,325776,18 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,77.0,C - 69 to 80,78.0,BB103DR,100010352023.0,"18, Pheasantford Green",0.4886 +3363,325765,19 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,79.0,C - 69 to 80,79.0,BB103DR,100010352024.0,"19, Pheasantford Green",0.4886 +3412,325775,20 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,76.0,C - 69 to 80,79.0,BB103DR,100010352025.0,"20, Pheasantford Green",0.4886 +3463,325764,21 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,70.0,C - 69 to 80,71.0,BB103DR,100010352026.0,"21, Pheasantford Green",0.4886 +3515,325774,22 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,76.0,C - 69 to 80,78.0,BB103DR,100010352027.0,"22, Pheasantford Green",0.4886 +3570,325624,23 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,20 Jan 2020,C - 69 to 80,78.0,C - 69 to 80,79.0,BB103DR,100010352028.0,"23, Pheasantford Green",0.4886 +3622,325773,24 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,77.0,C - 69 to 80,79.0,BB103DR,100010352029.0,"24, Pheasantford Green",0.4886 +3673,325625,25 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,20 Jan 2020,C - 69 to 80,79.0,C - 69 to 80,80.0,BB103DR,100010352030.0,"25, Pheasantford Green",0.4886 +3723,116223,26 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,03 Aug 2011,C - 69 to 80,70.0,C - 69 to 80,72.0,BB103DR,100010352031.0,"26, Pheasantford Green",0.4886 +3773,40825,27 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB103DR,100010352032.0,27 Pheasantford Green,0.4886 +3822,362334,28 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jan 2020,C - 69 to 80,77.0,C - 69 to 80,79.0,BB103DR,100010352033.0,"28, Pheasantford Green",0.4886 +3870,179917,29 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,75.0,BB103DR,100010352034.0,29 Pheasantford Green,0.4886 +3921,109212,30 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,23 Mar 2011,C - 69 to 80,70.0,C - 69 to 80,73.0,BB103DR,100010352035.0,"30, Pheasantford Green",0.4886 +4029,325626,32 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,20 Jan 2020,C - 69 to 80,78.0,C - 69 to 80,78.0,BB103DR,100010352037.0,"32, Pheasantford Green",0.4886 +4082,325771,33 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,78.0,C - 69 to 80,78.0,BB103DR,100010352038.0,"33, Pheasantford Green",0.4886 +4134,325772,34 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,76.0,C - 69 to 80,79.0,BB103DR,100010352039.0,"34, Pheasantford Green",0.4886 +4244,194526,36 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,23 Jun 2025,C - 69 to 80,79.0,C - 69 to 80,80.0,BB103DR,100010352041.0,36 Pheasantford Green,0.4886 +4304,103474,37 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,11 Nov 2010,C - 69 to 80,70.0,C - 69 to 80,75.0,BB103DR,100010352042.0,"37, Pheasantford Green",0.4886 +4362,187507,38 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,28 Aug 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB103DR,100010352043.0,38 Pheasantford Green,0.4886 +4424,40851,39 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,13 Feb 2009,C - 69 to 80,73.0,C - 69 to 80,77.0,BB103DR,100010352044.0,"39, Pheasantford Green",0.4886 +4479,199714,40 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,01 Jul 2024,C - 69 to 80,75.0,C - 69 to 80,77.0,BB103DR,100010352045.0,40 Pheasantford Green,0.4886 +4543,325769,41 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,77.0,C - 69 to 80,79.0,BB103DR,100010352046.0,"41, Pheasantford Green",0.4886 +4600,40866,42 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,23 Sep 2008,C - 69 to 80,74.0,C - 69 to 80,80.0,BB103DR,,, +12655,302656,31 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,75.0,BB103DR,100010352036.0,31 Pheasantford Green,0.4886 +2488,245174,17 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: End Terrace,Domestic EPC Required,EPC Present,17 Nov 2015,C - 69 to 80,73.0,B - 81 to 91,90.0,BB104BJ,100010342956.0,"17, Holcombe Drive",0.4705 +2791,245175,23 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: End Terrace,Domestic EPC Required,EPC Present,16 Nov 2015,C - 69 to 80,69.0,B - 81 to 91,88.0,BB104BJ,100010342962.0,"23, Holcombe Drive",0.4705 +2992,245791,27 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,71.0,B - 81 to 91,89.0,BB104BJ,100010342966.0,"27, Holcombe Drive",0.4705 +3684,76903,41 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: End Terrace,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,71.0,B - 81 to 91,88.0,BB104BJ,100010342980.0,"41, Holcombe Drive",0.4705 +3783,245797,43 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: End Terrace,Domestic EPC Required,EPC Present,09 Dec 2015,C - 69 to 80,74.0,B - 81 to 91,90.0,BB104BJ,100010342982.0,"43, Holcombe Drive",0.4705 +3881,245178,45 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2015,C - 69 to 80,72.0,B - 81 to 91,90.0,BB104BJ,100010342984.0,"45, Holcombe Drive",0.4705 +3989,243797,47 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2015,D - 55 to 68,61.0,C - 69 to 80,79.0,BB104BJ,100010342986.0,"47, Holcombe Drive",0.4705 +4319,245800,53 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,64.0,C - 69 to 80,78.0,BB104BJ,100010342992.0,"53, Holcombe Drive",0.4705 +5494,246835,75 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Feb 2016,C - 69 to 80,74.0,B - 81 to 91,90.0,BB104BJ,100010343014.0,"75, Holcombe Drive",0.4705 +5595,245181,77 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2015,C - 69 to 80,75.0,A - 92 Plus,92.0,BB104BJ,100010343016.0,"77, Holcombe Drive",0.4705 +5993,243802,85 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Nov 2015,D - 55 to 68,62.0,C - 69 to 80,79.0,BB104BJ,100010343024.0,"85, Holcombe Drive",0.4705 +6455,243818,95 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2015,C - 69 to 80,69.0,B - 81 to 91,87.0,BB104BJ,100010343034.0,"95, Holcombe Drive",0.4705 +6559,245182,97 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Dec 2015,C - 69 to 80,72.0,B - 81 to 91,90.0,BB104BJ,100010343036.0,"97, Holcombe Drive",0.4705 +6659,245183,99 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,90.0,BB104BJ,100010343038.0,"99, Holcombe Drive",0.4705 +6762,243819,101 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,88.0,BB104BJ,100010343040.0,101 Holcombe Drive,0.4754 +6855,245184,103 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2015,C - 69 to 80,74.0,B - 81 to 91,90.0,BB104BJ,100010343042.0,"103, Holcombe Drive",0.4754 +2543,126616,186 Rossendale Road Burnley Lancashire BB11 5DF,,, BB11 5DF,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Dec 2011,D - 55 to 68,66.0,C - 69 to 80,69.0,BB115DF,100010354750.0,"186, Rossendale Road",0.4801 +2544,238928,1 Devon Grove Burnley Lancashire BB12 6AR,,, BB12 6AR,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jul 2015,C - 69 to 80,70.0,B - 81 to 91,86.0,BB126AR,100010337297.0,"1, Devon Grove",0.4471 +2646,222438,3 Devon Grove Burnley Lancashire BB12 6AR,,, BB12 6AR,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Dec 2023,D - 55 to 68,66.0,B - 81 to 91,85.0,BB126AR,100010337299.0,3 Devon Grove,0.4471 +2794,362260,6 Devon Grove Burnley Lancashire BB12 6AR,,, BB12 6AR,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB126AR,100010337302.0,6 Devon Grove,0.4471 +3044,200180,11 Devon Grove Burnley Lancashire BB12 6AR,,, BB12 6AR,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Mar 2013,C - 69 to 80,69.0,B - 81 to 91,86.0,BB126AR,100010337306.0,"11, Devon Grove",0.4536 +3281,362300,16 Devon Grove Burnley Lancashire BB12 6AR,,, BB12 6AR,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126AR,100010337311.0,16 Devon Grove,0.4536 +3329,182443,17 Devon Grove Burnley Lancashire BB12 6AR,,, BB12 6AR,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Jul 2012,D - 55 to 68,59.0,B - 81 to 91,87.0,BB126AR,100010337312.0,"17, Devon Grove",0.4536 +2593,362245,14 Ellis Street Burnley Lancashire BB11 4PS,,, BB11 4PS,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB114PS,100010338199.0,14 Ellis Street,0.4596 +2664,252212,1 Cromer Grove Burnley Lancashire BB10 3HB,,, BB10 3HB,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2025,D - 55 to 68,68.0,C - 69 to 80,75.0,BB103HB,100010336169.0,1 Cromer Grove,0.4536 +2714,116225,2 Cromer Grove Burnley Lancashire BB10 3HB,,, BB10 3HB,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Nov 2025,C - 69 to 80,77.0,B - 81 to 91,83.0,BB103HB,100010336170.0,2 Cromer Grove,0.4536 +2811,326174,4 Cromer Grove Burnley Lancashire BB10 3HB,,, BB10 3HB,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Feb 2020,C - 69 to 80,74.0,B - 81 to 91,87.0,BB103HB,100010336172.0,"4, Cromer Grove",0.4536 +2914,252189,6 Cromer Grove Burnley Lancashire BB10 3HB,,, BB10 3HB,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jul 2009,D - 55 to 68,67.0,C - 69 to 80,74.0,BB103HB,100010336174.0,"6, Cromer Grove",0.4536 +3154,252149,11 Cromer Grove Burnley Lancashire BB10 3HB,,, BB10 3HB,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2014,C - 69 to 80,71.0,B - 81 to 91,85.0,BB103HB,100010336179.0,"11, Cromer Grove",0.4596 +3353,326175,15 Cromer Grove Burnley Lancashire BB10 3HB,,, BB10 3HB,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Feb 2020,C - 69 to 80,75.0,B - 81 to 91,87.0,BB103HB,100010336183.0,"15, Cromer Grove",0.4596 +3660,220130,21 Cromer Grove Burnley Lancashire BB10 3HB,,, BB10 3HB,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jul 2013,D - 55 to 68,58.0,C - 69 to 80,72.0,BB103HB,100010336189.0,"21, Cromer Grove",0.4596 +2686,119039,4 Radnor Avenue Burnley Lancashire BB12 6AT,,, BB12 6AT,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Oct 2011,D - 55 to 68,65.0,C - 69 to 80,70.0,BB126AT,100010353051.0,"4, Radnor Avenue",0.4596 +2883,40783,8 Radnor Avenue Burnley Lancashire BB12 6AT,,, BB12 6AT,House: End Terrace,Domestic EPC Required,EPC Present,02 Nov 2025,D - 55 to 68,60.0,C - 69 to 80,78.0,BB126AT,100010353055.0,8 Radnor Avenue,0.4596 +3171,362290,14 Radnor Avenue Burnley Lancashire BB12 6AT,,, BB12 6AT,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB126AT,100010353061.0,14 Radnor Avenue,0.4652 +3219,362293,15 Radnor Avenue Burnley Lancashire BB12 6AT,,, BB12 6AT,House: End Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,83.0,BB126AT,100010353062.0,15 Radnor Avenue,0.4652 +3268,362299,16 Radnor Avenue Burnley Lancashire BB12 6AT,,, BB12 6AT,House: End Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,83.0,BB126AT,100010353063.0,16 Radnor Avenue,0.4652 +2729,126694,10 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: End Terr,Domestic EPC Required,EPC Present,15 Aug 2024,D - 55 to 68,66.0,B - 81 to 91,87.0,BB102HY,100010341521.0,"10 Harrison Street, Briercliffe",0.5636 +2830,325618,12 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Jan 2020,C - 69 to 80,72.0,B - 81 to 91,91.0,BB102HY,100010341523.0,"12, Harrison Street, Briercliffe",0.5636 +2931,239284,14 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Jan 2026,C - 69 to 80,72.0,B - 81 to 91,89.0,BB102HY,100010341525.0,"14 Harrison Street, Briercliffe",0.5636 +3026,253472,16 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: End Terr,Domestic EPC Required,EPC Present,02 Apr 2025,D - 55 to 68,68.0,B - 81 to 91,88.0,BB102HY,100010341527.0,"16 Harrison Street, Briercliffe",0.5636 +3873,325620,33 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: End Terr,Domestic EPC Required,EPC Present,15 Jan 2020,D - 55 to 68,68.0,B - 81 to 91,90.0,BB102HY,100010341538.0,"33, Harrison Street, Briercliffe",0.5636 +3980,246850,35 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Feb 2016,C - 69 to 80,71.0,B - 81 to 91,89.0,BB102HY,100010341539.0,"35, Harrison Street, Briercliffe",0.5636 +4085,205799,37 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,02 Feb 2026,C - 69 to 80,71.0,B - 81 to 91,81.0,BB102HY,100010341540.0,"37, Harrison Street, Briercliffe",0.5636 +4192,325619,39 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Jan 2020,C - 69 to 80,72.0,B - 81 to 91,91.0,BB102HY,100010341541.0,"39, Harrison Street, Briercliffe",0.5636 +4307,325617,41 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Jan 2020,C - 69 to 80,73.0,A - 92 Plus,92.0,BB102HY,100010341542.0,"41, Harrison Street, Briercliffe",0.5636 +4428,40852,43 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jun 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB102HY,100010341543.0,"43 Harrison Street, Briercliffe",0.5636 +2785,112759,50 Culshaw Street Burnley Lancashire BB10 4PE,,, BB10 4PE,House: Semi-Detached,Domestic EPC Required,EPC Present,24 May 2011,D - 55 to 68,62.0,C - 69 to 80,70.0,BB104PE,100010336515.0,"50, Culshaw Street",0.4705 +2796,40777,1 Valley Street Burnley Lancashire BB11 5LY,,, BB11 5LY,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Dec 2025,C - 69 to 80,74.0,C - 69 to 80,80.0,BB115LY,100010359187.0,1 Valley Street,0.4596 +2897,110666,3 Valley Street Burnley Lancashire BB11 5LY,,, BB11 5LY,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,62.0,C - 69 to 80,71.0,BB115LY,100010359188.0,"3, Valley Street",0.4596 +3000,69678,5 Valley Street Burnley Lancashire BB11 5LY,,, BB11 5LY,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jun 2024,C - 69 to 80,72.0,B - 81 to 91,89.0,BB115LY,100010359189.0,5 Valley Street,0.4596 +692,110630,2 Eskdale Gardens Padiham Lancashire BB12 8NX,,, BB12 8NX,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Oct 2015,D - 55 to 68,65.0,B - 81 to 91,88.0,BB128NX,10003780689.0,"2, Eskdale Gardens, Padiham",0.6214 +840,230660,5 Eskdale Gardens Padiham Lancashire BB12 8NX,,, BB12 8NX,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,30 Dec 2014,D - 55 to 68,63.0,B - 81 to 91,87.0,BB128NX,10003780692.0,"5, Eskdale Gardens, Padiham",0.6214 +888,232171,6 Eskdale Gardens Padiham Lancashire BB12 8NX,,, BB12 8NX,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Jan 2015,D - 55 to 68,68.0,B - 81 to 91,88.0,BB128NX,10003780693.0,"6, Eskdale Gardens, Padiham",0.6214 +939,221645,7 Eskdale Gardens Padiham Lancashire BB12 8NX,,, BB12 8NX,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,79.0,B - 81 to 91,81.0,BB128NX,10003780694.0,"7 Eskdale Gardens, Padiham",0.6214 +992,229123,8 Eskdale Gardens Padiham Lancashire BB12 8NX,,, BB12 8NX,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Jan 2026,C - 69 to 80,78.0,C - 69 to 80,80.0,BB128NX,10003780695.0,"8 Eskdale Gardens, Padiham",0.6214 +1049,222426,9 Eskdale Gardens Padiham Lancashire BB12 8NX,,, BB12 8NX,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Jan 2014,D - 55 to 68,63.0,B - 81 to 91,86.0,BB128NX,10003780696.0,"9, Eskdale Gardens, Padiham",0.6214 +1215,98979,12 Eskdale Gardens Padiham Lancashire BB12 8NX,,, BB12 8NX,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,06 Sep 2010,D - 55 to 68,65.0,C - 69 to 80,70.0,BB128NX,10003780699.0,"12, Eskdale Gardens, Padiham",0.6242 +13247,337695,10 Eskdale Gardens Padiham Lancashire BB12 8NX,,, BB12 8NX,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,02 Jan 2026,B - 81 to 91,87.0,B - 81 to 91,90.0,BB128NX,10003780697.0,"10 Eskdale Gardens, Padiham",0.6242 +734,105764,108 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 Jan 2026,C - 69 to 80,70.0,B - 81 to 91,87.0,BB104NP,100010331340.0,108 Brunshaw Avenue,0.4801 +835,221632,110 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Jan 2026,C - 69 to 80,71.0,B - 81 to 91,89.0,BB104NP,100010331341.0,110 Brunshaw Avenue,0.4801 +934,221135,112 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Jul 2024,C - 69 to 80,69.0,B - 81 to 91,89.0,BB104NP,100010331343.0,112 Brunshaw Avenue,0.4801 +1045,112886,114 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,25 May 2011,D - 55 to 68,63.0,D - 55 to 68,67.0,BB104NP,100010331344.0,"114, Brunshaw Avenue",0.4801 +1155,228074,116 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Aug 2014,D - 55 to 68,66.0,B - 81 to 91,89.0,BB104NP,100010331346.0,"116, Brunshaw Avenue",0.4801 +1210,226302,117 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Top,Domestic EPC Required,EPC Present,22 Jan 2026,C - 69 to 80,73.0,C - 69 to 80,78.0,BB104NP,100010331347.0,117 Brunshaw Avenue,0.4801 +1264,222615,118 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,26 Jan 2026,B - 81 to 91,84.0,B - 81 to 91,86.0,BB104NP,100010331348.0,118 Brunshaw Avenue,0.4801 +1322,323679,119 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Bottom,Domestic EPC Required,EPC Present,16 Oct 2019,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104NP,100010331349.0,"119, Brunshaw Avenue",0.4801 +1372,96023,120 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Jan 2026,B - 81 to 91,84.0,B - 81 to 91,86.0,BB104NP,100010331350.0,120 Brunshaw Avenue,0.4801 +1479,181037,122 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Aug 2025,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104NP,100010331352.0,122 Brunshaw Avenue,0.4801 +1536,323363,123 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Top,Domestic EPC Required,EPC Present,11 Oct 2019,C - 69 to 80,78.0,C - 69 to 80,79.0,BB104NP,100010331353.0,"123, Brunshaw Avenue",0.4801 +1586,107659,124 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2011,D - 55 to 68,66.0,C - 69 to 80,70.0,BB104NP,100010331354.0,"124, Brunshaw Avenue",0.4801 +1643,40726,125 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Top,Domestic EPC Required,EPC Present,10 Jul 2009,C - 69 to 80,78.0,B - 81 to 91,83.0,BB104NP,100010331355.0,"125, Brunshaw Avenue",0.4801 +1692,197123,126 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,05 Feb 2012,D - 55 to 68,67.0,B - 81 to 91,88.0,BB104NP,100010331356.0,"126, Brunshaw Avenue",0.4801 +1748,295081,127 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Bottom,Domestic EPC Required,EPC Present,26 Oct 2017,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104NP,100010331357.0,"127, Brunshaw Avenue",0.4801 +1803,112883,128 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,25 May 2011,D - 55 to 68,67.0,C - 69 to 80,70.0,BB104NP,100010331358.0,"128, Brunshaw Avenue",0.4801 +1864,90092,129 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Bottom,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,72.0,C - 69 to 80,74.0,BB104NP,100010331359.0,129 Brunshaw Avenue,0.4801 +1912,247416,130 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Nov 2025,C - 69 to 80,73.0,B - 81 to 91,81.0,BB104NP,100010331360.0,130 Brunshaw Avenue,0.4801 +1963,76855,131 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Top,Domestic EPC Required,EPC Present,22 Jan 2026,C - 69 to 80,73.0,C - 69 to 80,78.0,BB104NP,100010331361.0,131 Brunshaw Avenue,0.4801 +2395,210916,140 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2026,D - 55 to 68,63.0,B - 81 to 91,82.0,BB104NP,100010331365.0,"140, Brunshaw Avenue",0.4801 +2496,323360,142 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,11 Oct 2019,C - 69 to 80,72.0,B - 81 to 91,91.0,BB104NP,100010331367.0,"142, Brunshaw Avenue",0.4801 +2604,323362,144 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,11 Oct 2019,C - 69 to 80,71.0,B - 81 to 91,91.0,BB104NP,100010331369.0,"144, Brunshaw Avenue",0.4801 +2703,223486,146 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,25 Feb 2026,C - 69 to 80,73.0,B - 81 to 91,90.0,BB104NP,100010331371.0,"146, Brunshaw Avenue",0.4801 +2801,252266,148 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Jul 2016,D - 55 to 68,66.0,B - 81 to 91,90.0,BB104NP,100010331373.0,"148, Brunshaw Avenue",0.4801 +2900,323361,150 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,11 Oct 2019,C - 69 to 80,70.0,B - 81 to 91,89.0,BB104NP,100010331375.0,"150, Brunshaw Avenue",0.4801 +3004,323633,152 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,14 Oct 2019,C - 69 to 80,69.0,B - 81 to 91,90.0,BB104NP,100010331377.0,"152, Brunshaw Avenue",0.4801 +3097,76810,154 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,25 Feb 2026,C - 69 to 80,72.0,B - 81 to 91,89.0,BB104NP,100010331379.0,"154, Brunshaw Avenue",0.4801 +3190,163339,156 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,25 Jan 2026,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104NP,100010331381.0,156 Brunshaw Avenue,0.4801 +3285,40803,158 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 Mar 2009,D - 55 to 68,66.0,C - 69 to 80,71.0,BB104NP,100010331383.0,"158, Brunshaw Avenue",0.4801 +7299,101655,59 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jan 2026,C - 69 to 80,72.0,B - 81 to 91,81.0,BB104NP,100010331303.0,59 Brunshaw Avenue,0.4754 +7393,222616,61 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Top,Domestic EPC Required,EPC Present,27 Jan 2026,C - 69 to 80,71.0,C - 69 to 80,76.0,BB104NP,100010331305.0,61 Brunshaw Avenue,0.4754 +7484,163643,63 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Bottom,Domestic EPC Required,EPC Present,23 Apr 2012,C - 69 to 80,71.0,C - 69 to 80,75.0,BB104NP,100010331307.0,"63, Brunshaw Avenue",0.4754 +7583,362598,65 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Bottom,Domestic EPC Required,EPC Present,11 Oct 2019,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104NP,100010331308.0,"65, Brunshaw Avenue",0.4754 +7693,323364,67 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Top,Domestic EPC Required,EPC Present,11 Oct 2019,C - 69 to 80,79.0,C - 69 to 80,79.0,BB104NP,100010331310.0,"67, Brunshaw Avenue",0.4754 +7799,250071,69 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Top,Domestic EPC Required,EPC Present,12 May 2016,C - 69 to 80,75.0,C - 69 to 80,79.0,BB104NP,100010331312.0,"69, Brunshaw Avenue",0.4754 +7907,315216,71 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Bottom,Domestic EPC Required,EPC Present,31 May 2019,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104NP,100010331314.0,"71, Brunshaw Avenue",0.4754 +8007,90091,73 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Bottom,Domestic EPC Required,EPC Present,24 Oct 2021,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104NP,100010331316.0,73 Brunshaw Avenue,0.4754 +8107,194696,75 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Top,Domestic EPC Required,EPC Present,15 Jan 2013,C - 69 to 80,70.0,C - 69 to 80,75.0,BB104NP,100010331318.0,"75, Brunshaw Avenue",0.4754 +12661,305170,79 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104NP,100010331320.0,"79, Brunshaw Avenue",0.4754 +12662,305169,83 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104NP,100010331323.0,"83, Brunshaw Avenue",0.4754 +12663,304083,87 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104NP,100010331326.0,"87, Brunshaw Avenue",0.4754 +12664,304089,91 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104NP,100010331329.0,"91, Brunshaw Avenue",0.4754 +12665,304139,95 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104NP,100012536463.0,"95, Brunshaw Avenue",0.4754 +12666,304177,99 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104NP,100010331334.0,"99, Brunshaw Avenue",0.4754 +12667,305168,103 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104NP,100010331337.0,"103, Brunshaw Avenue",0.4801 +12668,304272,107 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104NP,100010331339.0,"107, Brunshaw Avenue",0.4801 +12669,304291,111 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104NP,100010331342.0,"111, Brunshaw Avenue",0.4801 +12670,304319,115 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104NP,100010331345.0,"115, Brunshaw Avenue",0.4801 +12671,305180,77 Brunshaw Avenue BURNLEY Lancashire BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,29 Mar 2019,C - 69 to 80,80.0,C - 69 to 80,80.0,BB104NP,100012536542.0,77 Brunshaw Avenue,0.4754 +12672,305179,81 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,B - 81 to 91,81.0,B - 81 to 91,81.0,BB104NP,10094111277.0,81 Brunshaw Avenue,0.4754 +12673,305178,85 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,79.0,C - 69 to 80,79.0,BB104NP,10094111278.0,85 Brunshaw Avenue,0.4754 +12674,305177,89 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,80.0,C - 69 to 80,80.0,BB104NP,100012536462.0,"Clear Cut, 89 Brunshaw Avenue",0.3869 +12675,305176,93 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,B - 81 to 91,81.0,B - 81 to 91,81.0,BB104NP,100010331330.0,93 Brunshaw Avenue,0.4754 +12676,305175,97 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,B - 81 to 91,81.0,B - 81 to 91,81.0,BB104NP,100012536558.0,"97, Brunshaw Avenue",0.4754 +12677,305173,105 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,80.0,C - 69 to 80,80.0,BB104NP,100012536461.0,105 Brunshaw Avenue,0.4801 +12678,305172,109 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,B - 81 to 91,81.0,B - 81 to 91,81.0,BB104NP,100012536545.0,"109, Brunshaw Avenue",0.4801 +12679,305174,101 Brunshaw Avenue Burnley Lancashire UK BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,79.0,C - 69 to 80,79.0,BB104NP,100012536544.0,101 Brunshaw Avenue,0.4365 +12680,305171,113 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,79.0,C - 69 to 80,79.0,BB104NP,100012536552.0,"Brunshaw Action Group, 113 Brunshaw Avenue",0.3678 +13367,342501,121 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Bottom,Domestic EPC Required,EPC Present,18 Oct 2024,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104NP,100010331351.0,121 Brunshaw Avenue,0.4801 +765,94843,40 Bivel Street Burnley Lancashire BB12 0PN,,, BB12 0PN,House: End Terrace,Domestic EPC Required,EPC Present,18 Mar 2010,E - 39 to 54,42.0,E - 39 to 54,48.0,BB120PN,100010329170.0,40 Bivel Street,0.4596 +12957,328732,(Blossom House) 35 Bivel Street Burnley Lancashire BB12 0PN,,, BB12 0PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Oct 2015,D - 55 to 68,66.0,A - 92 Plus,92.0,BB120PN,100010329168.0,"35, Bivel Street",0.3625 +788,116417,1 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: End Terrace,Domestic EPC Required,EPC Present,17 Aug 2011,D - 55 to 68,60.0,D - 55 to 68,63.0,BB102RQ,100010327827.0,"1, Aylesbury Walk",0.4652 +999,201778,5 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Oct 2025,C - 69 to 80,76.0,B - 81 to 91,82.0,BB102RQ,100010327831.0,5 Aylesbury Walk,0.4652 +1109,325288,7 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Dec 2019,C - 69 to 80,75.0,B - 81 to 91,90.0,BB102RQ,100010327833.0,"7, Aylesbury Walk",0.4652 +1375,325284,12 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,75.0,B - 81 to 91,89.0,BB102RQ,100010327838.0,"12, Aylesbury Walk",0.4705 +1429,234329,13 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: End Terrace,Domestic EPC Required,EPC Present,02 Feb 2026,C - 69 to 80,73.0,C - 69 to 80,79.0,BB102RQ,100010327839.0,"13, Aylesbury Walk",0.4705 +1752,89268,19 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: End Terrace,Domestic EPC Required,EPC Present,11 Nov 2009,D - 55 to 68,64.0,D - 55 to 68,67.0,BB102RQ,100010327845.0,"19, Aylesbury Walk",0.4705 +1865,221627,21 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,61.0,C - 69 to 80,79.0,BB102RQ,100010327847.0,"21, Aylesbury Walk",0.4705 +1966,136775,23 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: End Terrace,Domestic EPC Required,EPC Present,30 Jan 2026,C - 69 to 80,74.0,C - 69 to 80,80.0,BB102RQ,100010327849.0,23 Aylesbury Walk,0.4705 +2015,226569,24 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,87.0,BB102RQ,100010327850.0,24 Aylesbury Walk,0.4705 +2066,295101,25 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Sep 2017,C - 69 to 80,74.0,B - 81 to 91,89.0,BB102RQ,100010327851.0,"25, Aylesbury Walk",0.4705 +2264,180886,29 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Jun 2012,D - 55 to 68,67.0,B - 81 to 91,82.0,BB102RQ,100010327855.0,"29, Aylesbury Walk",0.4705 +801,362148,16 Alexander Grove Burnley Lancashire BB12 6DJ,,, BB12 6DJ,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB126DJ,100010327119.0,16 Alexander Grove,0.4754 +1058,362161,21 Alexander Grove Burnley Lancashire BB12 6DJ,,, BB12 6DJ,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB126DJ,100010327124.0,21 Alexander Grove,0.4754 +1383,95949,27 Alexander Grove Burnley Lancashire BB12 6DJ,,, BB12 6DJ,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,68.0,C - 69 to 80,75.0,BB126DJ,100010327130.0,27 Alexander Grove,0.4754 +9353,362706,4 Alexander Grove Burnley Lancashire BB12 6DJ,,, BB12 6DJ,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB126DJ,100010327107.0,4 Alexander Grove,0.4705 +9527,111047,7 Alexander Grove Burnley Lancashire BB12 6DJ,,, BB12 6DJ,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Nov 2010,D - 55 to 68,61.0,C - 69 to 80,75.0,BB126DJ,100010327110.0,"7, Alexander Grove",0.4705 +9573,362714,8 Alexander Grove Burnley Lancashire BB12 6DJ,,, BB12 6DJ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB126DJ,100010327111.0,8 Alexander Grove,0.4705 +875,362154,72 Harold Street Burnley Lancashire BB11 4DZ,,, BB11 4DZ,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Jul 2022,C - 69 to 80,71.0,B - 81 to 91,88.0,BB114DZ,100010341480.0,72 Harold Street,0.4652 +979,233925,74 Harold Street Burnley Lancashire BB11 4DZ,,, BB11 4DZ,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Mar 2015,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DZ,100010341482.0,"74, Harold Street",0.4652 +1091,40695,76 Harold Street Burnley Lancashire BB11 4DZ,,, BB11 4DZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2025,D - 55 to 68,66.0,C - 69 to 80,77.0,BB114DZ,100010341484.0,76 Harold Street,0.4652 +9449,250577,60 Harold Street Burnley Lancashire BB11 4DZ,,, BB11 4DZ,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Jun 2016,C - 69 to 80,69.0,B - 81 to 91,88.0,BB114DZ,100010341468.0,"60, Harold Street",0.4652 +13693,359002,68 Harold Street Burnley Lancashire BB11 4DZ,,, BB11 4DZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Feb 2023,D - 55 to 68,66.0,B - 81 to 91,83.0,BB114DZ,100010341476.0,68 Harold Street,0.4652 +890,248984,240 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,Bungalow: End Terr,Domestic EPC Required,EPC Present,25 Jul 2024,C - 69 to 80,70.0,A - 92 Plus,93.0,BB104QR,100010331577.0,240 Brunshaw Road,0.4705 +996,248985,242 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Apr 2016,C - 69 to 80,70.0,A - 92 Plus,92.0,BB104QR,100010331579.0,"242, Brunshaw Road",0.4705 +1220,250082,246 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,Bungalow: End Terr,Domestic EPC Required,EPC Present,05 May 2016,D - 55 to 68,67.0,B - 81 to 91,90.0,BB104QR,100010331583.0,"246, Brunshaw Road",0.4705 +2168,249095,264 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: End Terrace,Domestic EPC Required,EPC Present,18 Apr 2016,D - 55 to 68,65.0,B - 81 to 91,86.0,BB104QR,100010331601.0,"264, Brunshaw Road",0.4705 +2259,250030,266 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Apr 2016,C - 69 to 80,70.0,B - 81 to 91,90.0,BB104QR,100010331603.0,"266, Brunshaw Road",0.4705 +2360,250028,268 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Apr 2016,C - 69 to 80,71.0,B - 81 to 91,90.0,BB104QR,100010331605.0,"268, Brunshaw Road",0.4705 +2453,248673,270 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Apr 2016,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104QR,100010331607.0,270 Brunshaw Road,0.4705 +2558,252000,272 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Jun 2016,C - 69 to 80,70.0,B - 81 to 91,86.0,BB104QR,100010331609.0,"272, Brunshaw Road",0.4705 +2852,250031,278 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: End Terrace,Domestic EPC Required,EPC Present,28 Apr 2016,C - 69 to 80,70.0,B - 81 to 91,88.0,BB104QR,100010331615.0,"278, Brunshaw Road",0.4705 +2957,250029,280 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Apr 2016,D - 55 to 68,63.0,B - 81 to 91,83.0,BB104QR,100010331616.0,"280, Brunshaw Road",0.4705 +3244,250335,286 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: End Terrace,Domestic EPC Required,EPC Present,19 May 2016,D - 55 to 68,66.0,B - 81 to 91,86.0,BB104QR,100010331619.0,"286, Brunshaw Road",0.4705 +3345,250032,288 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: End Terrace,Domestic EPC Required,EPC Present,26 Apr 2016,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104QR,100010331620.0,"288, Brunshaw Road",0.4705 +3442,250076,290 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 May 2016,D - 55 to 68,68.0,B - 81 to 91,89.0,BB104QR,100010331621.0,"290, Brunshaw Road",0.4705 +3651,250033,294 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 May 2016,C - 69 to 80,72.0,B - 81 to 91,88.0,BB104QR,100010331623.0,"294, Brunshaw Road",0.4705 +3752,250034,296 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Apr 2016,C - 69 to 80,73.0,B - 81 to 91,89.0,BB104QR,100010331624.0,"296, Brunshaw Road",0.4705 +4638,250035,312 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 May 2016,C - 69 to 80,73.0,B - 81 to 91,87.0,BB104QR,100010331632.0,"312, Brunshaw Road",0.4705 +909,362157,48 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB114DY,100010338151.0,48 Elgin Crescent,0.4705 +1017,250579,50 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Jun 2016,D - 55 to 68,68.0,B - 81 to 91,84.0,BB114DY,100010338152.0,"50, Elgin Crescent",0.4705 +7557,358894,1 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Feb 2023,C - 69 to 80,73.0,B - 81 to 91,85.0,BB114DY,100010338112.0,1 Elgin Crescent,0.4652 +7609,220026,2 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Nov 2013,C - 69 to 80,71.0,B - 81 to 91,84.0,BB114DY,100010338113.0,"2, Elgin Crescent",0.4652 +7667,41002,3 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB114DY,100010338114.0,3 Elgin Crescent,0.4652 +7722,41004,4 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Sep 2008,E - 39 to 54,50.0,C - 69 to 80,71.0,BB114DY,,, +7883,362618,7 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,30 Aug 2022,C - 69 to 80,69.0,B - 81 to 91,90.0,BB114DY,100010338118.0,7 Elgin Crescent,0.4652 +7934,252207,8 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Nov 2025,D - 55 to 68,64.0,C - 69 to 80,72.0,BB114DY,100010338119.0,8 Elgin Crescent,0.4652 +7987,222434,9 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,13 Feb 2014,D - 55 to 68,68.0,B - 81 to 91,90.0,BB114DY,100010338120.0,"9, Elgin Crescent",0.4652 +8033,200179,10 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Mar 2013,D - 55 to 68,68.0,B - 81 to 91,85.0,BB114DY,100010338121.0,"10, Elgin Crescent",0.4705 +8083,41026,11 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,05 Nov 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB114DY,100010338122.0,11 Elgin Crescent,0.4705 +8135,362632,12 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DY,100010338123.0,12 Elgin Crescent,0.4705 +8183,227864,13 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,01 Dec 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB114DY,100010338124.0,13 Elgin Crescent,0.4705 +8236,180073,14 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,23 May 2012,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DY,100010338125.0,"14, Elgin Crescent",0.4705 +8279,362641,15 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,89.0,BB114DY,100010338126.0,15 Elgin Crescent,0.4705 +8336,41033,16 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DY,100010338127.0,16 Elgin Crescent,0.4705 +8385,104914,17 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Nov 2010,D - 55 to 68,60.0,D - 55 to 68,60.0,BB114DY,100010338128.0,"17, Elgin Crescent",0.4705 +8551,362657,20 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB114DY,100010338131.0,20 Elgin Crescent,0.4705 +8676,362666,22 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB114DY,100010338133.0,22 Elgin Crescent,0.4705 +8740,362670,23 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,Flat: Bottom,Domestic EPC Required,EPC Present,05 Sep 2023,C - 69 to 80,73.0,C - 69 to 80,76.0,BB114DY,100010338134.0,23 Elgin Crescent,0.4705 +8857,41053,25 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,Flat: Top,Domestic EPC Required,EPC Present,17 Sep 2024,D - 55 to 68,65.0,C - 69 to 80,69.0,BB114DY,100010338136.0,25 Elgin Crescent,0.4705 +8919,99136,26 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Sep 2010,D - 55 to 68,56.0,C - 69 to 80,74.0,BB114DY,100010338137.0,"26, Elgin Crescent",0.4705 +8971,362685,27 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,89.0,BB114DY,100010338138.0,27 Elgin Crescent,0.4705 +9027,101562,28 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Oct 2010,E - 39 to 54,48.0,D - 55 to 68,67.0,BB114DY,100010338139.0,"28, Elgin Crescent",0.4705 +9081,97190,29 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB114DY,100010338140.0,29 Elgin Crescent,0.4705 +9139,226562,30 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jul 2014,D - 55 to 68,65.0,B - 81 to 91,81.0,BB114DY,100010338141.0,"30, Elgin Crescent",0.4705 +9201,362699,31 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,89.0,BB114DY,100010338142.0,31 Elgin Crescent,0.4705 +9254,89512,32 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Aug 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB114DY,100010338143.0,32 Elgin Crescent,0.4705 +9487,252202,36 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Jul 2018,D - 55 to 68,67.0,B - 81 to 91,87.0,BB114DY,100010338145.0,"36, Elgin Crescent",0.4705 +9588,252210,38 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Jun 2011,E - 39 to 54,44.0,D - 55 to 68,68.0,BB114DY,100010338146.0,"38, Elgin Crescent",0.4705 +12739,316235,19 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,Flat: Top,Domestic EPC Required,EPC Present,28 May 2009,D - 55 to 68,60.0,C - 69 to 80,75.0,BB114DY,100010338130.0,"19, Elgin Crescent",0.4705 +13608,355327,21 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,Flat: Bottom,Domestic EPC Required,EPC Present,22 Nov 2022,C - 69 to 80,71.0,C - 69 to 80,75.0,BB114DY,100010338132.0,21 Elgin Crescent,0.4705 +949,250104,1 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,17 May 2016,C - 69 to 80,70.0,C - 69 to 80,76.0,BB114QG,10003781635.0,"1, Piccadilly Square",0.4801 +1002,252269,2 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Top,Domestic EPC Required,EPC Present,08 Jul 2016,C - 69 to 80,73.0,C - 69 to 80,76.0,BB114QG,10003781646.0,"2, Piccadilly Square",0.4801 +1059,98153,3 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Top,Domestic EPC Required,EPC Present,19 Aug 2010,C - 69 to 80,80.0,B - 81 to 91,81.0,BB114QG,10003781648.0,"3, Piccadilly Square",0.4801 +1114,106909,4 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,08 Feb 2011,C - 69 to 80,75.0,C - 69 to 80,79.0,BB114QG,10003781649.0,"4, Piccadilly Square",0.4801 +1170,252477,5 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,23 Jul 2016,D - 55 to 68,67.0,B - 81 to 91,89.0,BB114QG,10003781650.0,"5, Piccadilly Square",0.4801 +1226,362171,6 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB114QG,10003781651.0,6 Piccadilly Square,0.4801 +1278,362175,7 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Bungalow: End Terr,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,88.0,BB114QG,10003781652.0,7 Piccadilly Square,0.4801 +1335,134170,8 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,31 Jan 2012,C - 69 to 80,70.0,C - 69 to 80,71.0,BB114QG,10003781653.0,"8, Piccadilly Square",0.4801 +1385,98151,9 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Aug 2024,C - 69 to 80,69.0,B - 81 to 91,88.0,BB114QG,10003781654.0,9 Piccadilly Square,0.4801 +1439,40714,10 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,22 Sep 2008,C - 69 to 80,72.0,C - 69 to 80,77.0,BB114QG,,, +1490,100555,11 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Top,Domestic EPC Required,EPC Present,17 Sep 2010,C - 69 to 80,78.0,B - 81 to 91,82.0,BB114QG,10003781637.0,"11, Piccadilly Square",0.4845 +1551,106917,12 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Top,Domestic EPC Required,EPC Present,05 Aug 2021,C - 69 to 80,69.0,C - 69 to 80,76.0,BB114QG,10003781638.0,12 PICCADILLY SQUARE,0.4845 +1600,40725,13 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,74.0,C - 69 to 80,77.0,BB114QG,10003781639.0,13 Piccadilly Square,0.4845 +1655,221663,14 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,73.0,C - 69 to 80,73.0,BB114QG,10003781640.0,"14, Piccadilly Square",0.4845 +1703,40729,15 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Top,Domestic EPC Required,EPC Present,24 Mar 2009,C - 69 to 80,79.0,B - 81 to 91,82.0,BB114QG,10003781641.0,"15, Piccadilly Square",0.4845 +1762,107640,16 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Top,Domestic EPC Required,EPC Present,22 Feb 2011,C - 69 to 80,79.0,B - 81 to 91,83.0,BB114QG,10003781642.0,"16, Piccadilly Square",0.4845 +1815,134169,17 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,31 Jan 2012,C - 69 to 80,74.0,C - 69 to 80,74.0,BB114QG,10003781643.0,"17, Piccadilly Square",0.4845 +1874,211784,18 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Top,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,76.0,C - 69 to 80,77.0,BB114QG,10003781644.0,18 Piccadilly Square,0.4845 +1922,69668,19 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,22 Nov 2022,C - 69 to 80,76.0,C - 69 to 80,78.0,BB114QG,10003781645.0,19 Piccadilly Square,0.4845 +1974,362212,20 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,House: End Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB114QG,10003781647.0,20 Piccadilly Square,0.4845 +950,362158,1 Disraeli Street Burnley Lancashire BB10 1HR,,, BB10 1HR,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,83.0,BB101HR,10003758158.0,1 Disraeli Street,0.4705 +960,40685,2 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,17 Nov 2008,C - 69 to 80,74.0,B - 81 to 91,81.0,BB101DH,10003780756.0,"2, Viking Place",0.4536 +1015,125082,3 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,21 Nov 2011,C - 69 to 80,75.0,C - 69 to 80,79.0,BB101DH,10003781855.0,"3, Viking Place",0.4536 +1074,40692,4 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,04 Sep 2024,C - 69 to 80,74.0,C - 69 to 80,76.0,BB101DH,10003780757.0,4 Viking Place,0.4536 +1127,221670,5 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,03 Dec 2024,C - 69 to 80,76.0,C - 69 to 80,76.0,BB101DH,10003781856.0,5 Viking Place,0.4536 +1185,110639,6 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,07 Apr 2011,B - 81 to 91,81.0,B - 81 to 91,85.0,BB101DH,10003780758.0,"6, Viking Place",0.4536 +1237,94925,7 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,14 Apr 2010,B - 81 to 91,82.0,B - 81 to 91,86.0,BB101DH,10003780759.0,"7, Viking Place",0.4536 +1294,226297,8 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,25 Jun 2014,C - 69 to 80,76.0,C - 69 to 80,80.0,BB101DH,10003780760.0,"8, Viking Place",0.4536 +1346,111666,9 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,12 May 2011,C - 69 to 80,74.0,C - 69 to 80,77.0,BB101DH,10003781857.0,"9, Viking Place",0.4536 +1397,208335,10 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,26 May 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB101DH,10003780761.0,10 Viking Place,0.4596 +1450,40715,11 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,11 Dec 2008,C - 69 to 80,78.0,B - 81 to 91,84.0,BB101DH,10003781850.0,"11, Viking Place",0.4596 +1506,252998,12 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,11 Aug 2016,C - 69 to 80,73.0,C - 69 to 80,79.0,BB101DH,10003780762.0,"12, Viking Place",0.4596 +1560,228333,13 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,16 Sep 2014,C - 69 to 80,75.0,C - 69 to 80,79.0,BB101DH,10003781851.0,"13, Viking Place",0.4596 +1614,326489,14 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,17 Feb 2020,C - 69 to 80,76.0,C - 69 to 80,78.0,BB101DH,10003780763.0,"14, Viking Place",0.4596 +1664,221671,15 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,78.0,C - 69 to 80,80.0,BB101DH,10003781852.0,"15, Viking Place",0.4596 +1714,315940,16 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,04 Jul 2019,C - 69 to 80,72.0,C - 69 to 80,77.0,BB101DH,10003780764.0,"16, Viking Place",0.4596 +1771,40732,17 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,22 Feb 2009,C - 69 to 80,79.0,B - 81 to 91,85.0,BB101DH,10003781853.0,"17, Viking Place",0.4596 +1824,204084,18 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,15 May 2013,C - 69 to 80,76.0,C - 69 to 80,79.0,BB101DH,10003780765.0,"18, Viking Place",0.4596 +1881,96235,19 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,05 Jul 2010,C - 69 to 80,78.0,B - 81 to 91,84.0,BB101DH,10003780766.0,"19, Viking Place",0.4596 +1931,125015,20 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,15 Nov 2011,C - 69 to 80,75.0,C - 69 to 80,79.0,BB101DH,10003780767.0,"20, Viking Place",0.4596 +1983,89222,21 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,05 Nov 2009,C - 69 to 80,76.0,B - 81 to 91,84.0,BB101DH,10003780768.0,"21, Viking Place",0.4596 +2032,40741,22 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,07 Jun 2021,C - 69 to 80,78.0,C - 69 to 80,79.0,BB101DH,10003780769.0,"22, Viking Place",0.4596 +2083,40745,23 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,18 Sep 2008,C - 69 to 80,78.0,B - 81 to 91,83.0,BB101DH,,, +2133,103656,24 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,22 Feb 2022,C - 69 to 80,76.0,C - 69 to 80,78.0,BB101DH,10003780770.0,24 Viking Place,0.4596 +2180,326488,25 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,17 Feb 2020,C - 69 to 80,75.0,C - 69 to 80,78.0,BB101DH,10003780771.0,"25, Viking Place",0.4596 +2227,40754,26 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,18 Sep 2008,C - 69 to 80,76.0,B - 81 to 91,83.0,BB101DH,,, +11602,362719,27 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB101DH,10023762734.0,27 Viking Place,0.4596 +11603,250430,1 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,25 May 2016,C - 69 to 80,75.0,C - 69 to 80,79.0,BB101DH,10003780755.0,"1, Viking Place",0.4536 +961,247059,17 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Mar 2016,D - 55 to 68,64.0,B - 81 to 91,86.0,BB103HA,100010336149.0,"17, Cromer Avenue",0.4652 +1290,326176,23 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Feb 2020,D - 55 to 68,67.0,B - 81 to 91,85.0,BB103HA,100010336152.0,"23, Cromer Avenue",0.4652 +1930,326178,35 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Feb 2020,C - 69 to 80,73.0,B - 81 to 91,86.0,BB103HA,100010336158.0,"35, Cromer Avenue",0.4652 +2319,40757,43 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,Flat: Bottom,Domestic EPC Required,EPC Present,01 Jul 2024,C - 69 to 80,74.0,C - 69 to 80,76.0,BB103HA,100010336162.0,43 Cromer Avenue,0.4652 +2415,100559,45 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,Flat: Bottom,Domestic EPC Required,EPC Present,22 Sep 2010,D - 55 to 68,65.0,C - 69 to 80,76.0,BB103HA,100010336163.0,"45, Cromer Avenue",0.4652 +2515,40768,47 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,Flat: Top,Domestic EPC Required,EPC Present,04 Apr 2009,B - 81 to 91,82.0,B - 81 to 91,83.0,BB103HA,100010336164.0,47 Cromer Avenue,0.4652 +2623,221600,49 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,Flat: Top,Domestic EPC Required,EPC Present,30 Dec 2013,C - 69 to 80,75.0,C - 69 to 80,77.0,BB103HA,100010336165.0,"49, Cromer Avenue",0.4652 +2719,326177,51 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,Flat: Bottom,Domestic EPC Required,EPC Present,04 Feb 2020,C - 69 to 80,71.0,C - 69 to 80,75.0,BB103HA,100010336166.0,"51, Cromer Avenue",0.4652 +2822,223679,53 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,Flat: Bottom,Domestic EPC Required,EPC Present,23 Apr 2014,C - 69 to 80,73.0,C - 69 to 80,76.0,BB103HA,100010336167.0,"53, Cromer Avenue",0.4652 +2921,95570,55 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,Flat: Top,Domestic EPC Required,EPC Present,27 May 2010,C - 69 to 80,79.0,B - 81 to 91,81.0,BB103HA,100010336168.0,"55, Cromer Avenue",0.4652 +12863,328308,41 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,Flat: Top,Domestic EPC Required,EPC Present,19 Aug 2023,C - 69 to 80,75.0,C - 69 to 80,75.0,BB103HA,100010336161.0,41 Cromer Avenue,0.4652 +963,246359,1 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB104QL,100010331137.0,"1, Browsholme Avenue",0.4801 +1073,246360,3 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,08 Dec 2015,D - 55 to 68,68.0,B - 81 to 91,88.0,BB104QL,100010331138.0,"3, Browsholme Avenue",0.4801 +1184,246361,5 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,66.0,B - 81 to 91,87.0,BB104QL,100010331140.0,"5, Browsholme Avenue",0.4801 +1293,246362,7 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB104QL,100010331142.0,"7, Browsholme Avenue",0.4801 +1400,246363,9 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB104QL,,, +1505,246358,11 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,90.0,BB104QL,100010331144.0,"11, Browsholme Avenue",0.4845 +1610,246364,13 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB104QL,100010331145.0,"13, Browsholme Avenue",0.4845 +1713,246365,15 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Dec 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB104QL,100010331146.0,"15, Browsholme Avenue",0.4845 +1825,246366,17 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,67.0,B - 81 to 91,87.0,BB104QL,100010331147.0,"17, Browsholme Avenue",0.4845 +1932,246367,19 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,08 Dec 2015,D - 55 to 68,67.0,B - 81 to 91,88.0,BB104QL,100010331148.0,"19, Browsholme Avenue",0.4845 +2030,246368,21 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,66.0,B - 81 to 91,89.0,BB104QL,100010331149.0,"21, Browsholme Avenue",0.4845 +2127,246369,23 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,67.0,B - 81 to 91,87.0,BB104QL,100010331150.0,"23, Browsholme Avenue",0.4845 +2181,246808,24 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,18 Feb 2016,D - 55 to 68,66.0,B - 81 to 91,88.0,BB104QL,100010331151.0,"24, Browsholme Avenue",0.4845 +2229,246371,25 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,02 Oct 2025,C - 69 to 80,73.0,B - 81 to 91,81.0,BB104QL,100010331152.0,25 Browsholme Avenue,0.4845 +2278,246372,26 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB104QL,100010331153.0,"26, Browsholme Avenue",0.4845 +2327,246373,27 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,67.0,B - 81 to 91,87.0,BB104QL,100010331154.0,"27, Browsholme Avenue",0.4845 +2378,246374,28 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,67.0,B - 81 to 91,90.0,BB104QL,100010331155.0,"28, Browsholme Avenue",0.4845 +2467,246375,30 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,68.0,B - 81 to 91,89.0,BB104QL,100010331157.0,"30, Browsholme Avenue",0.4845 +2575,246376,32 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,67.0,B - 81 to 91,87.0,BB104QL,100010331159.0,"32, Browsholme Avenue",0.4845 +2678,246377,34 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,01 Jun 2023,C - 69 to 80,70.0,B - 81 to 91,90.0,BB104QL,100010331161.0,34 Browsholme Avenue,0.4845 +2767,246378,36 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,57.0,C - 69 to 80,78.0,BB104QL,100010331163.0,"36, Browsholme Avenue",0.4845 +2868,246357,38 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,90.0,BB104QL,100010331165.0,"38, Browsholme Avenue",0.4845 +2974,246379,40 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB104QL,100010331167.0,"40, Browsholme Avenue",0.4845 +3066,246380,42 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,66.0,B - 81 to 91,87.0,BB104QL,100010331169.0,"42, Browsholme Avenue",0.4845 +3162,246381,44 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,68.0,B - 81 to 91,89.0,BB104QL,100010331171.0,"44, Browsholme Avenue",0.4845 +3258,246382,46 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,67.0,B - 81 to 91,87.0,BB104QL,100010331173.0,"46, Browsholme Avenue",0.4845 +3358,246388,48 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,55.0,C - 69 to 80,75.0,BB104QL,100010331175.0,"48, Browsholme Avenue",0.4845 +991,326491,63 Ennismore Street Burnley Lancashire BB10 3EU,,, BB10 3EU,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Feb 2020,D - 55 to 68,66.0,B - 81 to 91,85.0,BB103EU,100010338413.0,"63, Ennismore Street",0.4801 +7956,326490,22 Ennismore Street Burnley Lancashire BB10 3EU,,, BB10 3EU,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Dec 2025,D - 55 to 68,65.0,C - 69 to 80,77.0,BB103EU,100010338387.0,22 Ennismore Street,0.4801 +1021,115722,26 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Jul 2011,D - 55 to 68,60.0,C - 69 to 80,69.0,BB102QF,100010353842.0,"26, Ribble Avenue",0.4652 +1081,40694,27 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB102QF,100010353843.0,27 Ribble Avenue,0.4652 +1190,131106,29 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Jan 2012,D - 55 to 68,67.0,C - 69 to 80,69.0,BB102QF,100010353844.0,"29, Ribble Avenue",0.4652 +1245,40702,30 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,Flat: Bottom,Domestic EPC Required,EPC Present,13 Aug 2023,C - 69 to 80,74.0,C - 69 to 80,76.0,BB102QF,100010353845.0,30 Ribble Avenue,0.4652 +1298,69677,31 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2022,C - 69 to 80,74.0,B - 81 to 91,87.0,BB102QF,100010353846.0,31 Ribble Avenue,0.4652 +1352,325554,32 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,Flat: Bottom,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,72.0,C - 69 to 80,75.0,BB102QF,100010353847.0,"32, Ribble Avenue",0.4652 +1459,40717,34 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,Flat: Top,Domestic EPC Required,EPC Present,18 Sep 2008,C - 69 to 80,73.0,C - 69 to 80,79.0,BB102QF,,, +1569,90172,36 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,Flat: Top,Domestic EPC Required,EPC Present,10 Feb 2010,C - 69 to 80,76.0,B - 81 to 91,82.0,BB102QF,100010353851.0,"36, Ribble Avenue",0.4652 +1726,90248,39 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Mar 2010,D - 55 to 68,64.0,C - 69 to 80,70.0,BB102QF,100010353853.0,"39, Ribble Avenue",0.4652 +1834,95009,41 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,House: Semi-Detached,Domestic EPC Required,EPC Present,05 May 2010,C - 69 to 80,75.0,C - 69 to 80,77.0,BB102QF,100010353854.0,"41, Ribble Avenue",0.4652 +1033,94870,2 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,House: End Terrace,Domestic EPC Required,EPC Present,19 Jan 2026,D - 55 to 68,60.0,B - 81 to 91,82.0,BB128PA,100010329380.0,"2 Bowness Road, Padiham",0.6121 +1087,112176,3 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 May 2011,D - 55 to 68,66.0,C - 69 to 80,69.0,BB128PA,100010329381.0,"3, Bowness Road, Padiham",0.6121 +1253,40703,6 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Oct 2021,C - 69 to 80,69.0,B - 81 to 91,88.0,BB128PA,100010329384.0,"6 Bowness Road, Padiham",0.6121 +1312,106942,7 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,Bungalow: End Terr,Domestic EPC Required,EPC Present,19 Jan 2026,B - 81 to 91,82.0,B - 81 to 91,90.0,BB128PA,100010329385.0,"7 Bowness Road, Padiham",0.6121 +1359,103133,8 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,House: End Terrace,Domestic EPC Required,EPC Present,23 Jan 2026,D - 55 to 68,63.0,C - 69 to 80,77.0,BB128PA,100010329386.0,"8 Bowness Road, Padiham",0.6121 +1416,94908,9 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,House: End Terrace,Domestic EPC Required,EPC Present,12 Apr 2010,D - 55 to 68,63.0,C - 69 to 80,71.0,BB128PA,100010329387.0,"9, Bowness Road, Padiham",0.6121 +1681,362194,14 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB128PA,100010329392.0,"14 Bowness Road, Padiham",0.6154 +1736,220606,15 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,House: End Terrace,Domestic EPC Required,EPC Present,15 Aug 2024,D - 55 to 68,67.0,B - 81 to 91,83.0,BB128PA,100010329393.0,"15 Bowness Road, Padiham",0.6154 +2101,207476,22 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jul 2013,C - 69 to 80,70.0,B - 81 to 91,87.0,BB128PA,100010329397.0,"22, Bowness Road, Padiham",0.6154 +2202,40752,24 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,House: End Terrace,Domestic EPC Required,EPC Present,16 Jan 2024,C - 69 to 80,69.0,B - 81 to 91,84.0,BB128PA,100010329398.0,"24 Bowness Road, Padiham",0.6154 +1050,111167,43 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jun 2024,C - 69 to 80,74.0,B - 81 to 91,90.0,BB115LH,100010359258.0,43 Venice Avenue,0.4652 +1160,111174,45 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,72.0,B - 81 to 91,85.0,BB115LH,100010359260.0,45 Venice Avenue,0.4652 +1267,111180,47 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,20 May 2021,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115LH,100010359262.0,47 VENICE AVENUE,0.4652 +1374,40710,49 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jun 2025,C - 69 to 80,72.0,C - 69 to 80,78.0,BB115LH,100010359264.0,49 Venice Avenue,0.4652 +1486,111188,51 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: End Terrace,Domestic EPC Required,EPC Present,10 Jun 2024,C - 69 to 80,74.0,B - 81 to 91,89.0,BB115LH,100010359266.0,51 Venice Avenue,0.4652 +1594,111191,53 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Mar 2011,D - 55 to 68,67.0,C - 69 to 80,75.0,BB115LH,100010359268.0,"53, Venice Avenue",0.4652 +1755,111197,56 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Jul 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115LH,100010359270.0,56 Venice Avenue,0.4652 +1810,194085,57 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Dec 2012,D - 55 to 68,66.0,B - 81 to 91,84.0,BB115LH,100010359271.0,"57, Venice Avenue",0.4652 +1870,223442,58 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Apr 2013,D - 55 to 68,66.0,B - 81 to 91,82.0,BB115LH,100010359272.0,"58, Venice Avenue",0.4652 +1916,94922,59 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Apr 2010,C - 69 to 80,69.0,C - 69 to 80,72.0,BB115LH,100010359273.0,"59, Venice Avenue",0.4652 +1969,111201,60 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jun 2024,C - 69 to 80,72.0,B - 81 to 91,89.0,BB115LH,100010359274.0,60 Venice Avenue,0.4652 +2014,110634,61 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: End Terrace,Domestic EPC Required,EPC Present,29 Oct 2025,C - 69 to 80,73.0,B - 81 to 91,81.0,BB115LH,100010359275.0,61 Venice Avenue,0.4652 +2070,111205,62 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Sep 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115LH,100010359276.0,62 Venice Avenue,0.4652 +2110,111206,63 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: End Terrace,Domestic EPC Required,EPC Present,03 Oct 2023,C - 69 to 80,74.0,B - 81 to 91,91.0,BB115LH,100010359277.0,63 Venice Avenue,0.4652 +2164,111207,64 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Jan 2026,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115LH,100010359278.0,64 Venice Avenue,0.4652 +2211,111208,65 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Oct 2023,C - 69 to 80,74.0,B - 81 to 91,91.0,BB115LH,100010359279.0,65 Venice Avenue,0.4652 +2263,230659,66 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jan 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB115LH,100010359280.0,66 Venice Avenue,0.4652 +2301,40756,67 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Aug 2025,C - 69 to 80,72.0,C - 69 to 80,80.0,BB115LH,100010359281.0,67 Venice Avenue,0.4652 +2355,197119,68 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB115LH,100010359282.0,68 Venice Avenue,0.4652 +2398,40760,69 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Oct 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115LH,100010359283.0,69 Venice Avenue,0.4652 +2452,111215,70 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115LH,100010359284.0,70 Venice Avenue,0.4652 +2607,89361,73 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: End Terrace,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115LH,100010359287.0,73 Venice Avenue,0.4652 +2655,111288,74 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Aug 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115LH,100010359288.0,74 Venice Avenue,0.4652 +2705,111289,75 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: End Terrace,Domestic EPC Required,EPC Present,04 Jul 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB115LH,100010359289.0,75 Venice Avenue,0.4652 +2908,111292,79 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Oct 2022,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LH,100010359292.0,79 Venice Avenue,0.4652 +2960,40787,80 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,63.0,C - 69 to 80,71.0,BB115LH,100010359293.0,"80, Venice Avenue",0.4652 +3012,111295,81 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Jul 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115LH,100010359294.0,81 Venice Avenue,0.4652 +3103,210870,83 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,88.0,BB115LH,100010359296.0,83 Venice Avenue,0.4652 +3197,111297,85 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: End Terrace,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LH,100010359298.0,85 Venice Avenue,0.4652 +3494,40810,91 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2021,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LH,100010359304.0,91 Venice Avenue,0.4652 +3547,111300,92 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Feb 2011,D - 55 to 68,66.0,C - 69 to 80,74.0,BB115LH,100010359305.0,"92, Venice Avenue",0.4652 +1104,273886,33 Romney Avenue Burnley Lancashire BB11 2PF,,, BB11 2PF,House: End Terrace,Domestic EPC Required,EPC Present,09 May 2017,D - 55 to 68,56.0,B - 81 to 91,83.0,BB112PF,100010354335.0,"33, Romney Avenue",0.4652 +1325,272191,37 Romney Avenue Burnley Lancashire BB11 2PF,,, BB11 2PF,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Feb 2017,C - 69 to 80,69.0,B - 81 to 91,86.0,BB112PF,100010354337.0,"37, Romney Avenue",0.4652 +1107,295094,203 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2017,C - 69 to 80,69.0,C - 69 to 80,78.0,BB126BB,100010357624.0,"203, Sycamore Avenue",0.4801 +1218,40700,205 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Dec 2023,D - 55 to 68,62.0,C - 69 to 80,76.0,BB126BB,100010357626.0,205 Sycamore Avenue,0.4801 +1326,220108,207 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Aug 2017,D - 55 to 68,64.0,C - 69 to 80,78.0,BB126BB,100010357628.0,"207, Sycamore Avenue",0.4801 +1433,226982,209 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Jul 2014,D - 55 to 68,58.0,C - 69 to 80,77.0,BB126BB,100010357630.0,"209, Sycamore Avenue",0.4801 +1806,247947,216 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Apr 2016,D - 55 to 68,68.0,B - 81 to 91,87.0,BB126BB,100010357637.0,"216, Sycamore Avenue",0.4801 +2214,362222,224 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: End Terrace,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB126BB,100010357644.0,224 Sycamore Avenue,0.4801 +2609,362247,232 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: End Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,89.0,BB126BB,100010357652.0,232 Sycamore Avenue,0.4801 +2710,362253,234 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,90.0,BB126BB,100010357654.0,234 Sycamore Avenue,0.4801 +3009,220133,240 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: End Terrace,Domestic EPC Required,EPC Present,02 Dec 2013,C - 69 to 80,69.0,B - 81 to 91,88.0,BB126BB,100010357659.0,"240, Sycamore Avenue",0.4801 +3106,362280,242 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,90.0,BB126BB,100010357661.0,242 Sycamore Avenue,0.4801 +3199,183760,244 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Aug 2012,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126BB,100010357663.0,"244, Sycamore Avenue",0.4801 +3291,199319,246 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: End Terrace,Domestic EPC Required,EPC Present,06 Dec 2025,C - 69 to 80,74.0,C - 69 to 80,80.0,BB126BB,100010357665.0,246 Sycamore Avenue,0.4801 +3750,362329,255 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Oct 2022,D - 55 to 68,64.0,C - 69 to 80,74.0,BB126BB,100010357674.0,255 Sycamore Avenue,0.4801 +4579,362381,270 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB126BB,100010357688.0,270 Sycamore Avenue,0.4801 +4794,362394,274 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,90.0,BB126BB,100010357692.0,274 Sycamore Avenue,0.4801 +4894,362398,276 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,89.0,BB126BB,100010357693.0,276 Sycamore Avenue,0.4801 +1138,69489,15 Thompson Street Padiham Lancashire BB12 7AP,,, BB12 7AP,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 May 2024,C - 69 to 80,73.0,B - 81 to 91,85.0,BB127AP,100012538595.0,"15 Thompson Street, Padiham",0.6242 +1159,250039,2 Chelburn Grove Burnley Lancashire BB10 4QE,,, BB10 4QE,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Apr 2016,C - 69 to 80,71.0,A - 92 Plus,92.0,BB104QE,100010333572.0,"2, Chelburn Grove",0.4652 +1266,250427,4 Chelburn Grove Burnley Lancashire BB10 4QE,,, BB10 4QE,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Apr 2016,C - 69 to 80,69.0,A - 92 Plus,92.0,BB104QE,100010333574.0,"4, Chelburn Grove",0.4652 +1373,250040,6 Chelburn Grove Burnley Lancashire BB10 4QE,,, BB10 4QE,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,65.0,C - 69 to 80,78.0,BB104QE,100010333576.0,6 Chelburn Grove,0.4652 +1484,250049,8 Chelburn Grove Burnley Lancashire BB10 4QE,,, BB10 4QE,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Jun 2024,C - 69 to 80,71.0,A - 92 Plus,92.0,BB104QE,100010333578.0,8 Chelburn Grove,0.4652 +1593,250050,10 Chelburn Grove Burnley Lancashire BB10 4QE,,, BB10 4QE,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Apr 2016,C - 69 to 80,70.0,A - 92 Plus,92.0,BB104QE,100010333580.0,"10, Chelburn Grove",0.4705 +1693,250051,12 Chelburn Grove Burnley Lancashire BB10 4QE,,, BB10 4QE,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Apr 2016,C - 69 to 80,71.0,A - 92 Plus,92.0,BB104QE,100010333582.0,"12, Chelburn Grove",0.4705 +1809,250052,14 Chelburn Grove Burnley Lancashire BB10 4QE,,, BB10 4QE,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,26 Apr 2016,C - 69 to 80,71.0,A - 92 Plus,92.0,BB104QE,100010333584.0,"14, Chelburn Grove",0.4705 +1914,250053,16 Chelburn Grove Burnley Lancashire BB10 4QE,,, BB10 4QE,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Dec 2025,D - 55 to 68,63.0,C - 69 to 80,72.0,BB104QE,100010333586.0,16 Chelburn Grove,0.4705 +1176,362166,37 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB112NU,100010335761.0,37 Constable Avenue,0.4801 +1234,110933,38 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Dec 2010,D - 55 to 68,62.0,C - 69 to 80,74.0,BB112NU,100010335762.0,"38, Constable Avenue",0.4801 +1285,221636,39 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,59.0,C - 69 to 80,80.0,BB112NU,100010335763.0,"39, Constable Avenue",0.4801 +1340,96321,40 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: End Terrace,Domestic EPC Required,EPC Present,09 Jul 2010,C - 69 to 80,70.0,C - 69 to 80,71.0,BB112NU,100010335764.0,"40, Constable Avenue",0.4801 +1392,111159,41 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Nov 2010,D - 55 to 68,62.0,C - 69 to 80,74.0,BB112NU,100010335765.0,"41, Constable Avenue",0.4801 +1448,108722,42 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Mar 2011,C - 69 to 80,73.0,C - 69 to 80,75.0,BB112NU,100010335766.0,"42, Constable Avenue",0.4801 +1500,111165,43 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Dec 2010,D - 55 to 68,63.0,C - 69 to 80,75.0,BB112NU,100010335767.0,"43, Constable Avenue",0.4801 +1558,111168,44 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Nov 2010,D - 55 to 68,61.0,C - 69 to 80,76.0,BB112NU,100010335768.0,"44, Constable Avenue",0.4801 +1603,111172,45 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Nov 2010,D - 55 to 68,60.0,C - 69 to 80,75.0,BB112NU,100010335769.0,"45, Constable Avenue",0.4801 +1663,109801,46 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: End Terrace,Domestic EPC Required,EPC Present,23 May 2017,D - 55 to 68,65.0,B - 81 to 91,85.0,BB112NU,100010335770.0,"46, Constable Avenue",0.4801 +1711,221609,47 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Jul 2024,C - 69 to 80,69.0,B - 81 to 91,85.0,BB112NU,100010335771.0,47 Constable Avenue,0.4801 +1821,111183,49 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Nov 2010,D - 55 to 68,67.0,C - 69 to 80,74.0,BB112NU,100010335773.0,"49, Constable Avenue",0.4801 +2080,40744,54 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Nov 2010,E - 39 to 54,53.0,C - 69 to 80,69.0,BB112NU,100010335777.0,"54, Constable Avenue",0.4801 +2177,111196,56 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Jul 2024,C - 69 to 80,69.0,B - 81 to 91,89.0,BB112NU,100010335778.0,56 Constable Avenue,0.4801 +2275,105280,58 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: End Terrace,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,62.0,C - 69 to 80,75.0,BB112NU,100010335779.0,"58, Constable Avenue",0.4801 +9619,184509,52 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: End Terrace,Domestic EPC Required,EPC Present,10 Aug 2012,D - 55 to 68,65.0,B - 81 to 91,84.0,BB112NU,100010335776.0,"52, Constable Avenue",0.4801 +1382,100999,90 Dugdale Road Burnley Lancashire BB12 6DW,,, BB12 6DW,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Feb 2026,C - 69 to 80,72.0,C - 69 to 80,78.0,BB126DW,100010337682.0,"90, Dugdale Road",0.4596 +6608,359252,15 Dugdale Road Burnley Lancashire BB12 6DW,,, BB12 6DW,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Mar 2024,C - 69 to 80,71.0,B - 81 to 91,85.0,BB126DW,100010337625.0,15 Dugdale Road,0.4596 +6910,362546,21 Dugdale Road Burnley Lancashire BB12 6DW,,, BB12 6DW,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126DW,100010337631.0,21 Dugdale Road,0.4596 +7108,362567,25 Dugdale Road Burnley Lancashire BB12 6DW,,, BB12 6DW,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126DW,100010337635.0,25 Dugdale Road,0.4596 +8017,362625,43 Dugdale Road Burnley Lancashire BB12 6DW,,, BB12 6DW,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126DW,100010337652.0,43 Dugdale Road,0.4596 +8118,90065,45 Dugdale Road Burnley Lancashire BB12 6DW,,, BB12 6DW,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Aug 2024,C - 69 to 80,71.0,B - 81 to 91,88.0,BB126DW,100010337653.0,45 Dugdale Road,0.4596 +8216,362637,47 Dugdale Road Burnley Lancashire BB12 6DW,,, BB12 6DW,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126DW,100010337655.0,47 Dugdale Road,0.4596 +1389,225870,1 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,Flat: Top,Domestic EPC Required,EPC Present,04 Jun 2014,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104JZ,100010343865.0,"1, Hurstwood Avenue",0.4754 +1502,226298,3 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,Flat: Bottom,Domestic EPC Required,EPC Present,21 Jan 2026,C - 69 to 80,70.0,C - 69 to 80,72.0,BB104JZ,100010343867.0,3 Hurstwood Avenue,0.4754 +1767,181093,8 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: End Terrace,Domestic EPC Required,EPC Present,25 Jun 2012,D - 55 to 68,60.0,B - 81 to 91,86.0,BB104JZ,100010343872.0,"8, Hurstwood Avenue",0.4754 +1820,324664,9 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Nov 2019,D - 55 to 68,68.0,B - 81 to 91,88.0,BB104JZ,100010343873.0,"9, Hurstwood Avenue",0.4754 +1880,324660,10 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: End Terrace,Domestic EPC Required,EPC Present,20 Nov 2019,C - 69 to 80,71.0,B - 81 to 91,85.0,BB104JZ,100010343874.0,"10, Hurstwood Avenue",0.4801 +1980,244950,12 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB104JZ,100010343876.0,12 Hurstwood Avenue,0.4801 +2175,324663,16 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: End Terrace,Domestic EPC Required,EPC Present,20 Nov 2019,C - 69 to 80,70.0,B - 81 to 91,85.0,BB104JZ,100010343880.0,"16, Hurstwood Avenue",0.4801 +2314,241667,19 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: End Terrace,Domestic EPC Required,EPC Present,16 Sep 2015,D - 55 to 68,62.0,B - 81 to 91,87.0,BB104JZ,100010343883.0,"19, Hurstwood Avenue",0.4801 +2512,324662,23 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Nov 2019,C - 69 to 80,76.0,B - 81 to 91,89.0,BB104JZ,100010343886.0,"23, Hurstwood Avenue",0.4801 +2919,362268,31 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB104JZ,100010343890.0,31 Hurstwood Avenue,0.4801 +3018,267111,33 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Oct 2016,D - 55 to 68,68.0,B - 81 to 91,89.0,BB104JZ,100010343891.0,"33, Hurstwood Avenue",0.4801 +3115,324674,35 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: End Terrace,Domestic EPC Required,EPC Present,22 Nov 2019,C - 69 to 80,74.0,B - 81 to 91,87.0,BB104JZ,100010343892.0,"35, Hurstwood Avenue",0.4801 +3207,324675,37 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: End Terrace,Domestic EPC Required,EPC Present,22 Nov 2019,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104JZ,100010343893.0,"37, Hurstwood Avenue",0.4801 +1410,362183,2 Kensington Place Burnley Lancashire BB11 4NL,,, BB11 4NL,Flat: Top,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,C - 69 to 80,73.0,BB114NL,100010344485.0,2 Kensington Place,0.4754 +1519,362186,4 Kensington Place Burnley Lancashire BB11 4NL,,, BB11 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,70.0,C - 69 to 80,75.0,BB114NL,100010344487.0,4 Kensington Place,0.4754 +1626,90269,6 Kensington Place Burnley Lancashire BB11 4NL,,, BB11 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,08 Jun 2021,D - 55 to 68,63.0,C - 69 to 80,73.0,BB114NL,100010344489.0,6 KENSINGTON PLACE,0.4754 +13829,376682,8 Kensington Place Burnley Lancashire BB11 4NL,,, BB11 4NL,Flat: Top,Domestic EPC Required,EPC Present,07 Mar 2024,C - 69 to 80,71.0,C - 69 to 80,72.0,BB114NL,100010344491.0,8 Kensington Place,0.4754 +1456,40716,11 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jan 2026,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115HX,100010335671.0,11 Comrie Crescent,0.4754 +1672,89607,15 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Dec 2009,D - 55 to 68,60.0,C - 69 to 80,71.0,BB115HX,100010335675.0,"15, Comrie Crescent",0.4754 +1837,362203,18 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115HX,100010335678.0,18 Comrie Crescent,0.4754 +1889,108705,19 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Nov 2017,C - 69 to 80,70.0,B - 81 to 91,86.0,BB115HX,100010335679.0,"19, Comrie Crescent",0.4754 +1940,362209,20 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115HX,100010335680.0,20 Comrie Crescent,0.4754 +1991,362214,21 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115HX,100010335681.0,21 Comrie Crescent,0.4754 +2041,189416,22 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Oct 2012,C - 69 to 80,69.0,B - 81 to 91,86.0,BB115HX,100010335682.0,"22, Comrie Crescent",0.4754 +2092,362216,23 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115HX,100010335683.0,23 Comrie Crescent,0.4754 +2138,95021,24 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Jan 2026,C - 69 to 80,75.0,B - 81 to 91,88.0,BB115HX,100010335684.0,24 Comrie Crescent,0.4754 +2237,362223,26 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115HX,100010335685.0,26 Comrie Crescent,0.4754 +2330,40758,28 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2008,E - 39 to 54,53.0,C - 69 to 80,73.0,BB115HX,100010335686.0,"28, Comrie Crescent",0.4754 +2425,362228,30 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115HX,100010335687.0,30 Comrie Crescent,0.4754 +2528,250424,32 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,24 May 2016,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115HX,100010335688.0,"32, Comrie Crescent",0.4754 +2634,242908,34 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Oct 2015,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115HX,100010335689.0,"34, Comrie Crescent",0.4754 +1457,111218,71 Lawrence Avenue Burnley Lancashire BB11 5LW,,, BB11 5LW,House: End Terrace,Domestic EPC Required,EPC Present,05 Dec 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115LW,100010345612.0,71 Lawrence Avenue,0.4754 +1723,111290,76 Lawrence Avenue Burnley Lancashire BB11 5LW,,, BB11 5LW,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Jul 2024,C - 69 to 80,72.0,B - 81 to 91,89.0,BB115LW,100010345614.0,76 Lawrence Avenue,0.4754 +1941,179609,80 Lawrence Avenue Burnley Lancashire BB11 5LW,,, BB11 5LW,House: End Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,74.0,B - 81 to 91,88.0,BB115LW,100010345616.0,80 Lawrence Avenue,0.4754 +9629,111291,78 Lawrence Avenue Burnley Lancashire BB11 5LW,,, BB11 5LW,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Dec 2010,D - 55 to 68,62.0,C - 69 to 80,76.0,BB115LW,100010345615.0,"78, Lawrence Avenue",0.4754 +9733,101973,67 Lawrence Avenue Burnley Lancashire BB11 5LW,,, BB11 5LW,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2021,C - 69 to 80,74.0,B - 81 to 91,90.0,BB115LW,100010345610.0,67 Lawrence Avenue,0.4754 +1460,96025,88 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jun 2010,D - 55 to 68,65.0,C - 69 to 80,72.0,BB103EY,100010345758.0,"88, Leamington Avenue",0.4845 +7570,326217,31 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,Flat: Top,Domestic EPC Required,EPC Present,07 Feb 2020,C - 69 to 80,72.0,C - 69 to 80,76.0,BB103EY,100010345707.0,"31, Leamington Avenue",0.4845 +7680,223672,33 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,Flat: Bottom,Domestic EPC Required,EPC Present,17 Apr 2014,C - 69 to 80,70.0,C - 69 to 80,79.0,BB103EY,100010345709.0,"33, Leamington Avenue",0.4845 +7787,198529,35 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,Flat: Bottom,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,74.0,C - 69 to 80,76.0,BB103EY,100010345711.0,35 Leamington Avenue,0.4845 +7894,236579,37 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,Flat: Top,Domestic EPC Required,EPC Present,02 Jun 2015,D - 55 to 68,68.0,C - 69 to 80,77.0,BB103EY,100010345713.0,"37, Leamington Avenue",0.4845 +7996,326212,39 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,Flat: Top,Domestic EPC Required,EPC Present,07 Feb 2020,C - 69 to 80,74.0,C - 69 to 80,75.0,BB103EY,100010345715.0,"39, Leamington Avenue",0.4845 +8091,326218,41 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,Flat: Bottom,Domestic EPC Required,EPC Present,07 Feb 2020,C - 69 to 80,69.0,C - 69 to 80,75.0,BB103EY,100010345717.0,"41, Leamington Avenue",0.4845 +8192,89226,43 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,Flat: Bottom,Domestic EPC Required,EPC Present,25 Oct 2021,C - 69 to 80,69.0,C - 69 to 80,77.0,BB103EY,100010345719.0,43 Leamington Avenue,0.4845 +8289,116418,45 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,Flat: Top,Domestic EPC Required,EPC Present,17 Aug 2011,C - 69 to 80,75.0,C - 69 to 80,76.0,BB103EY,100010345720.0,"45, Leamington Avenue",0.4845 +8977,125499,57 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Dec 2011,D - 55 to 68,66.0,C - 69 to 80,71.0,BB103EY,100010345727.0,"57, Leamington Avenue",0.4845 +9206,89547,61 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Dec 2009,D - 55 to 68,65.0,C - 69 to 80,71.0,BB103EY,100010345731.0,"61, Leamington Avenue",0.4845 +1468,359959,5 Suffolk Avenue Burnley Lancashire BB12 6AP,,, BB12 6AP,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Jun 2023,D - 55 to 68,65.0,B - 81 to 91,85.0,BB126AP,100010357218.0,5 Suffolk Avenue,0.4652 +1633,236526,8 Suffolk Avenue Burnley Lancashire BB12 6AP,,, BB12 6AP,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jun 2024,C - 69 to 80,69.0,B - 81 to 91,88.0,BB126AP,100010357221.0,8 Suffolk Avenue,0.4652 +1679,322295,9 Suffolk Avenue Burnley Lancashire BB12 6AP,,, BB12 6AP,House: End Terrace,Domestic EPC Required,EPC Present,23 Aug 2019,D - 55 to 68,60.0,B - 81 to 91,86.0,BB126AP,100010357222.0,"9, Suffolk Avenue",0.4652 +1737,110949,10 Suffolk Avenue Burnley Lancashire BB12 6AP,,, BB12 6AP,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Apr 2011,D - 55 to 68,60.0,C - 69 to 80,74.0,BB126AP,100010357223.0,"10, Suffolk Avenue",0.4705 +1790,223071,11 Suffolk Avenue Burnley Lancashire BB12 6AP,,, BB12 6AP,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Apr 2014,D - 55 to 68,60.0,B - 81 to 91,86.0,BB126AP,100010357224.0,"11, Suffolk Avenue",0.4705 +1852,180071,12 Suffolk Avenue Burnley Lancashire BB12 6AP,,, BB12 6AP,House: End Terrace,Domestic EPC Required,EPC Present,14 Jun 2024,D - 55 to 68,67.0,B - 81 to 91,87.0,BB126AP,100010357225.0,12 Suffolk Avenue,0.4705 +1899,362205,13 Suffolk Avenue Burnley Lancashire BB12 6AP,,, BB12 6AP,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB126AP,100010357226.0,13 Suffolk Avenue,0.4705 +1953,295098,14 Suffolk Avenue Burnley Lancashire BB12 6AP,,, BB12 6AP,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Sep 2017,D - 55 to 68,57.0,B - 81 to 91,82.0,BB126AP,100010357227.0,"14, Suffolk Avenue",0.4705 +2005,359733,15 Suffolk Avenue Burnley Lancashire BB12 6AP,,, BB12 6AP,House: End Terrace,Domestic EPC Required,EPC Present,18 Apr 2023,D - 55 to 68,63.0,B - 81 to 91,85.0,BB126AP,100010357228.0,15 Suffolk Avenue,0.4705 +1581,115719,30 Montgomery Grove Burnley Lancashire BB12 6DR,,, BB12 6DR,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Jun 2011,D - 55 to 68,65.0,C - 69 to 80,70.0,BB126DR,100010349241.0,"30, Montgomery Grove",0.4801 +1637,362191,31 Montgomery Grove Burnley Lancashire BB12 6DR,,, BB12 6DR,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB126DR,100010349242.0,31 Montgomery Grove,0.4801 +9279,362702,2 Montgomery Grove Burnley Lancashire BB12 6DR,,, BB12 6DR,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB126DR,100010349213.0,2 Montgomery Grove,0.4754 +1590,111301,98 Glen View Road Burnley Lancashire BB11 2QP,,, BB11 2QP,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Nov 2010,D - 55 to 68,59.0,C - 69 to 80,75.0,BB112QP,100010339750.0,"98, Glen View Road",0.5169 +2804,277198,122 Glen View Road Burnley Lancashire BB11 2QP,,, BB11 2QP,House: End Terrace,Domestic EPC Required,EPC Present,29 Jun 2017,D - 55 to 68,61.0,B - 81 to 91,87.0,BB112QP,100010339770.0,"122, Glen View Road",0.5219 +1628,362190,3 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB113JN,100010355034.0,3 Russell Court,0.4596 +1674,40728,4 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Feb 2009,C - 69 to 80,75.0,C - 69 to 80,76.0,BB113JN,100010355035.0,"4, Russell Court",0.4596 +1732,247665,5 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Mar 2016,C - 69 to 80,72.0,B - 81 to 91,87.0,BB113JN,100010355036.0,"5, Russell Court",0.4596 +1783,219312,6 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2013,C - 69 to 80,69.0,B - 81 to 91,85.0,BB113JN,100010355037.0,"6, Russell Court",0.4596 +1839,201781,7 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2013,C - 69 to 80,69.0,B - 81 to 91,85.0,BB113JN,100010355038.0,"7, Russell Court",0.4596 +1891,245836,8 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: End Terrace,Domestic EPC Required,EPC Present,13 Nov 2015,C - 69 to 80,72.0,B - 81 to 91,86.0,BB113JN,100010355039.0,"8, Russell Court",0.4596 +2045,179918,11 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 May 2012,C - 69 to 80,72.0,B - 81 to 91,88.0,BB113JN,100010355042.0,"11, Russell Court",0.4652 +2095,105389,12 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Jan 2011,C - 69 to 80,76.0,C - 69 to 80,79.0,BB113JN,100010355043.0,"12, Russell Court",0.4652 +2140,245835,13 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,86.0,BB113JN,100010355044.0,"13, Russell Court",0.4652 +2194,245834,14 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2015,C - 69 to 80,73.0,B - 81 to 91,86.0,BB113JN,100010355045.0,"14, Russell Court",0.4652 +2291,89435,16 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2009,C - 69 to 80,71.0,C - 69 to 80,75.0,BB113JN,100010355047.0,"16, Russell Court",0.4652 +2333,243347,17 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Oct 2015,C - 69 to 80,70.0,B - 81 to 91,87.0,BB113JN,100010355048.0,"17, Russell Court",0.4652 +2385,221666,18 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,73.0,B - 81 to 91,83.0,BB113JN,100010355049.0,"18, Russell Court",0.4652 +2428,192282,19 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Nov 2012,C - 69 to 80,73.0,B - 81 to 91,87.0,BB113JN,100010355050.0,"19, Russell Court",0.4652 +2530,105387,21 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Jan 2011,C - 69 to 80,73.0,C - 69 to 80,76.0,BB113JN,100010355052.0,"21, Russell Court",0.4652 +2589,88990,22 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Oct 2009,B - 81 to 91,82.0,B - 81 to 91,88.0,BB113JN,100010355053.0,"22, Russell Court",0.4652 +2636,244954,23 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: End Terrace,Domestic EPC Required,EPC Present,16 Oct 2015,C - 69 to 80,70.0,B - 81 to 91,86.0,BB113JN,100010355054.0,"23, Russell Court",0.4652 +2687,252150,24 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,86.0,BB113JN,100010355055.0,"24, Russell Court",0.4652 +2735,245838,25 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: End Terrace,Domestic EPC Required,EPC Present,20 Nov 2015,C - 69 to 80,72.0,B - 81 to 91,86.0,BB113JN,100010355056.0,"25, Russell Court",0.4652 +2787,245837,26 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: End Terrace,Domestic EPC Required,EPC Present,13 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,86.0,BB113JN,100010355057.0,"26, Russell Court",0.4652 +2836,40778,27 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Mar 2009,C - 69 to 80,74.0,C - 69 to 80,79.0,BB113JN,100010355058.0,"27, Russell Court",0.4652 +2936,252154,29 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: End Terrace,Domestic EPC Required,EPC Present,20 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,86.0,BB113JN,100010355060.0,"29, Russell Court",0.4652 +1718,244344,2 Denbigh Grove Burnley Lancashire BB12 6AX,,, BB12 6AX,House: End Terrace,Domestic EPC Required,EPC Present,07 Dec 2025,D - 55 to 68,68.0,C - 69 to 80,75.0,BB126AX,100010337243.0,2 Denbigh Grove,0.4596 +2087,40746,9 Denbigh Grove Burnley Lancashire BB12 6AX,,, BB12 6AX,House: End Terrace,Domestic EPC Required,EPC Present,18 Oct 2019,C - 69 to 80,72.0,B - 81 to 91,87.0,BB126AX,100010337250.0,"9, Denbigh Grove",0.4596 +2416,40763,16 Denbigh Grove Burnley Lancashire BB12 6AX,,, BB12 6AX,House: End Terrace,Domestic EPC Required,EPC Present,24 Mar 2009,D - 55 to 68,64.0,C - 69 to 80,72.0,BB126AX,100010337257.0,"16, Denbigh Grove",0.4652 +2516,362235,18 Denbigh Grove Burnley Lancashire BB12 6AX,,, BB12 6AX,House: End Terrace,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB126AX,100010337259.0,18 Denbigh Grove,0.4652 +2624,362248,20 Denbigh Grove Burnley Lancashire BB12 6AX,,, BB12 6AX,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,76.0,B - 81 to 91,89.0,BB126AX,100010337261.0,20 Denbigh Grove,0.4652 +1725,245884,4 Finsley View Briercliffe Burnley Lancashire BB10 2JG,,, BB10 2JG,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Jan 2016,D - 55 to 68,60.0,B - 81 to 91,87.0,BB102JG,10003781960.0,"4, Finsley View, Briercliffe",0.5525 +1779,325614,5 Finsley View Briercliffe Burnley Lancashire BB10 2JG,,, BB10 2JG,Bungalow: End Terr,Domestic EPC Required,EPC Present,15 Jan 2020,C - 69 to 80,69.0,B - 81 to 91,91.0,BB102JG,10014136844.0,"5, Finsley View, Briercliffe",0.5525 +1835,40657,6 Finsley View Briercliffe Burnley Lancashire BB10 2JG,,, BB10 2JG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Jan 2026,C - 69 to 80,73.0,B - 81 to 91,90.0,BB102JG,10003781961.0,"6 Finsley View, Briercliffe",0.5525 +1888,272341,7 Finsley View Briercliffe Burnley Lancashire BB10 2JG,,, BB10 2JG,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Mar 2017,D - 55 to 68,58.0,C - 69 to 80,78.0,BB102JG,10014136845.0,"7, Finsley View, Briercliffe",0.5525 +1738,208550,2 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Dec 2025,D - 55 to 68,68.0,C - 69 to 80,76.0,BB104BH,100010342941.0,2 Holcombe Drive,0.4652 +1848,242509,4 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,79.0,BB104BH,100010342943.0,4 Holcombe Drive,0.4652 +1952,242532,6 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Bungalow: End Terr,Domestic EPC Required,EPC Present,16 Sep 2015,D - 55 to 68,63.0,B - 81 to 91,87.0,BB104BH,100010342945.0,"6, Holcombe Drive",0.4652 +2052,243782,8 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Bungalow: End Terr,Domestic EPC Required,EPC Present,16 Sep 2015,D - 55 to 68,65.0,B - 81 to 91,88.0,BB104BH,100010342947.0,"8, Holcombe Drive",0.4652 +2148,242755,10 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Sep 2015,D - 55 to 68,67.0,B - 81 to 91,89.0,BB104BH,100010342949.0,"10, Holcombe Drive",0.4705 +2246,242756,12 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Bungalow: End Terr,Domestic EPC Required,EPC Present,16 Sep 2015,D - 55 to 68,65.0,B - 81 to 91,87.0,BB104BH,100010342951.0,"12, Holcombe Drive",0.4705 +2341,242789,14 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bottom,Domestic EPC Required,EPC Present,07 Dec 2025,C - 69 to 80,70.0,C - 69 to 80,73.0,BB104BH,100010342953.0,14 Holcombe Drive,0.4705 +2434,209258,16 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bottom,Domestic EPC Required,EPC Present,19 Oct 2015,C - 69 to 80,69.0,C - 69 to 80,73.0,BB104BH,100010342955.0,"16, Holcombe Drive",0.4705 +2535,209257,18 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Top,Domestic EPC Required,EPC Present,19 Oct 2015,C - 69 to 80,71.0,C - 69 to 80,72.0,BB104BH,100010342957.0,"18, Holcombe Drive",0.4705 +2644,243319,20 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Top,Domestic EPC Required,EPC Present,26 Oct 2015,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104BH,100010342959.0,"20, Holcombe Drive",0.4705 +2742,105063,22 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bottom,Domestic EPC Required,EPC Present,26 Oct 2015,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104BH,100010342961.0,"22, Holcombe Drive",0.4705 +2842,220113,24 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bottom,Domestic EPC Required,EPC Present,19 Oct 2015,D - 55 to 68,68.0,C - 69 to 80,71.0,BB104BH,100010342963.0,"24, Holcombe Drive",0.4705 +2939,243337,26 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Top,Domestic EPC Required,EPC Present,26 Oct 2015,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104BH,100010342965.0,"26, Holcombe Drive",0.4705 +3135,112880,30 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bedsit bottom,Domestic EPC Required,EPC Present,01 Dec 2025,C - 69 to 80,69.0,C - 69 to 80,72.0,BB104BH,100010342969.0,30 Holcombe Drive,0.4705 +3225,98752,32 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bottom,Domestic EPC Required,EPC Present,26 Oct 2015,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104BH,100010342971.0,"32, Holcombe Drive",0.4705 +3320,243346,34 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bedsit top,Domestic EPC Required,EPC Present,26 Oct 2015,C - 69 to 80,71.0,C - 69 to 80,74.0,BB104BH,100010342973.0,"34, Holcombe Drive",0.4705 +3422,243384,36 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Top,Domestic EPC Required,EPC Present,17 Nov 2015,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104BH,100010342975.0,"36, Holcombe Drive",0.4705 +3525,224918,38 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bottom,Domestic EPC Required,EPC Present,19 Oct 2015,C - 69 to 80,69.0,C - 69 to 80,73.0,BB104BH,100010342977.0,"38, Holcombe Drive",0.4705 +3637,252244,40 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bedsit bottom,Domestic EPC Required,EPC Present,04 Jul 2016,C - 69 to 80,70.0,C - 69 to 80,73.0,BB104BH,100010342979.0,"40, Holcombe Drive",0.4705 +3732,243385,42 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Top,Domestic EPC Required,EPC Present,19 Oct 2015,C - 69 to 80,72.0,C - 69 to 80,73.0,BB104BH,100010342981.0,"42, Holcombe Drive",0.4705 +3830,243386,44 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bedsit top,Domestic EPC Required,EPC Present,19 Oct 2015,D - 55 to 68,68.0,C - 69 to 80,70.0,BB104BH,100010342983.0,"44, Holcombe Drive",0.4705 +4042,243388,48 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bottom,Domestic EPC Required,EPC Present,19 Oct 2015,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104BH,100010342987.0,48 Holcombe Drive,0.4705 +4149,243798,50 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bedsit top,Domestic EPC Required,EPC Present,10 Nov 2015,C - 69 to 80,70.0,C - 69 to 80,71.0,BB104BH,100010342989.0,50 Holcombe Drive,0.4705 +4261,243389,52 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Top,Domestic EPC Required,EPC Present,26 Oct 2015,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104BH,100010342991.0,"52, Holcombe Drive",0.4705 +4379,243390,54 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bottom,Domestic EPC Required,EPC Present,19 Oct 2015,C - 69 to 80,69.0,C - 69 to 80,73.0,BB104BH,100010342993.0,"54, Holcombe Drive",0.4705 +4496,243391,56 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bedsit bottom,Domestic EPC Required,EPC Present,26 Oct 2015,D - 55 to 68,67.0,C - 69 to 80,74.0,BB104BH,100010342995.0,"56, Holcombe Drive",0.4705 +4621,243799,58 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Top,Domestic EPC Required,EPC Present,09 Nov 2015,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104BH,100010342997.0,"58, Holcombe Drive",0.4705 +4731,243392,60 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bedsit top,Domestic EPC Required,EPC Present,19 Oct 2015,C - 69 to 80,70.0,C - 69 to 80,71.0,BB104BH,100010342999.0,"60, Holcombe Drive",0.4705 +5443,245179,74 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: End Terrace,Domestic EPC Required,EPC Present,16 Nov 2015,D - 55 to 68,59.0,C - 69 to 80,78.0,BB104BH,100010343013.0,"74, Holcombe Drive",0.4705 +5855,234696,82 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,76.0,B - 81 to 91,90.0,BB104BH,100010343021.0,"82, Holcombe Drive",0.4705 +6127,235413,88 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 May 2015,D - 55 to 68,67.0,B - 81 to 91,81.0,BB104BH,100010343027.0,"88, Holcombe Drive",0.4705 +6218,243816,90 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Nov 2015,C - 69 to 80,72.0,B - 81 to 91,89.0,BB104BH,100010343029.0,"90, Holcombe Drive",0.4705 +6309,246837,92 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Feb 2016,C - 69 to 80,70.0,B - 81 to 91,89.0,BB104BH,100010343031.0,"92, Holcombe Drive",0.4705 +6403,243817,94 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2015,C - 69 to 80,72.0,B - 81 to 91,90.0,BB104BH,100010343033.0,"94, Holcombe Drive",0.4705 +7303,243393,112 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: End Terrace,Domestic EPC Required,EPC Present,26 Oct 2015,C - 69 to 80,70.0,B - 81 to 91,88.0,BB104BH,100010343048.0,112 Holcombe Drive,0.4754 +7394,245810,114 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104BH,100010343049.0,114 Holcombe Drive,0.4754 +7588,245185,118 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2015,C - 69 to 80,73.0,B - 81 to 91,90.0,BB104BH,100010343051.0,"118, Holcombe Drive",0.4754 +7915,243394,124 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Oct 2015,C - 69 to 80,73.0,B - 81 to 91,88.0,BB104BH,100010343054.0,"124, Holcombe Drive",0.4754 +8014,243820,126 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: End Terrace,Domestic EPC Required,EPC Present,02 Feb 2026,C - 69 to 80,76.0,B - 81 to 91,82.0,BB104BH,100010343055.0,"126, Holcombe Drive",0.4754 +8773,245811,140 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,74.0,B - 81 to 91,89.0,BB104BH,100010343062.0,"140, Holcombe Drive",0.4754 +9223,243821,148 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Dec 2015,B - 81 to 91,82.0,B - 81 to 91,87.0,BB104BH,100010343066.0,"148, Holcombe Drive",0.4754 +12657,303770,46 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bedsit bottom,Domestic EPC Required,EPC Present,26 Oct 2015,D - 55 to 68,66.0,C - 69 to 80,74.0,BB104BH,100010342985.0,"46, Holcombe Drive",0.4705 +12683,304730,28 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Top,Domestic EPC Required,EPC Present,19 Oct 2015,C - 69 to 80,70.0,C - 69 to 80,72.0,BB104BH,100010342967.0,"28, Holcombe Drive",0.4705 +1746,362199,1 Heather Bank Burnley Lancashire BB11 5LA,,, BB11 5LA,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115LA,100010341993.0,1 Heather Bank,0.4536 +1857,207692,3 Heather Bank Burnley Lancashire BB11 5LA,,, BB11 5LA,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Feb 2026,C - 69 to 80,71.0,C - 69 to 80,79.0,BB115LA,100010341995.0,"3, Heather Bank",0.4536 +10978,108795,5 Heather Bank Burnley Lancashire BB11 5LA,,, BB11 5LA,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Mar 2011,C - 69 to 80,69.0,C - 69 to 80,71.0,BB115LA,100010341997.0,"5, Heather Bank",0.4536 +1749,252147,1 Rye Grove Padiham Lancashire BB12 7BJ,,, BB12 7BJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,10 Oct 2024,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BJ,10003780704.0,"1 Rye Grove, Padiham",0.6007 +1800,94835,2 Rye Grove Padiham Lancashire BB12 7BJ,,, BB12 7BJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,10 Oct 2024,B - 81 to 91,87.0,B - 81 to 91,91.0,BB127BJ,10003780705.0,"2 Rye Grove, Padiham",0.6007 +1859,100111,3 Rye Grove Padiham Lancashire BB12 7BJ,,, BB12 7BJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,10 Oct 2024,B - 81 to 91,87.0,B - 81 to 91,91.0,BB127BJ,10003780706.0,"3 Rye Grove, Padiham",0.6007 +1908,180887,4 Rye Grove Padiham Lancashire BB12 7BJ,,, BB12 7BJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,10 Oct 2024,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127BJ,10003780707.0,"4 Rye Grove, Padiham",0.6007 +1761,206143,2 Nelson Square Burnley Lancashire BB11 1LA,,, BB11 1LA,House: End Terrace,Domestic EPC Required,EPC Present,26 Jun 2025,E - 39 to 54,54.0,C - 69 to 80,76.0,BB111LA,100010349868.0,2 Nelson Square,0.4596 +2267,181102,12 Nelson Square Burnley Lancashire BB11 1LA,,, BB11 1LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Sep 2022,E - 39 to 54,45.0,C - 69 to 80,77.0,BB111LA,100010349873.0,12 Nelson Square,0.4652 +2457,362230,16 Nelson Square Burnley Lancashire BB11 1LA,,, BB11 1LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB111LA,100010349875.0,16 Nelson Square,0.4652 +2563,362242,18 Nelson Square Burnley Lancashire BB11 1LA,,, BB11 1LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB111LA,100010349876.0,18 Nelson Square,0.4652 +1794,245851,2 Mansergh Street Burnley Lancashire BB10 1TR,,, BB10 1TR,House: End Terrace,Domestic EPC Required,EPC Present,26 Jan 2026,D - 55 to 68,60.0,C - 69 to 80,74.0,BB101TR,100010347966.0,2 Mansergh Street,0.4705 +2490,268809,16 Mansergh Street Burnley Lancashire BB10 1TR,,, BB10 1TR,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Nov 2016,D - 55 to 68,67.0,B - 81 to 91,87.0,BB101TR,100010347980.0,"16, Mansergh Street",0.4754 +1796,40733,37 Magpie Close Burnley Lancashire BB11 5RP,,, BB11 5RP,House: Cluster Block,Domestic EPC Required,EPC Present,16 May 2013,C - 69 to 80,69.0,B - 81 to 91,83.0,BB115RP,10003780823.0,"37, Magpie Close",0.4596 +1901,339075,39 Magpie Close Burnley Lancashire BB11 5RP,,, BB11 5RP,House: Cluster Block,Domestic EPC Required,EPC Present,24 Jun 2021,C - 69 to 80,70.0,B - 81 to 91,87.0,BB115RP,10003780825.0,39 MAGPIE CLOSE,0.4596 +1955,96241,40 Magpie Close Burnley Lancashire BB11 5RP,,, BB11 5RP,House: Cluster Block,Domestic EPC Required,EPC Present,05 Jul 2010,C - 69 to 80,70.0,C - 69 to 80,75.0,BB115RP,10003780826.0,"40, Magpie Close",0.4596 +9042,41060,1 Magpie Close Burnley Lancashire BB11 5RP,,, BB11 5RP,House: End Terrace,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB115RP,10003780788.0,1 Magpie Close,0.4536 +9094,189709,2 Magpie Close Burnley Lancashire BB11 5RP,,, BB11 5RP,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 May 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115RP,10003780789.0,2 Magpie Close,0.4536 +6914,362547,1 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,07 Nov 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB120LA,100012382427.0,"1 Crow Wood Court, Crow Wood Avenue",0.4661 +7361,362579,10 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,08 Nov 2023,C - 69 to 80,79.0,C - 69 to 80,80.0,BB120LA,100012382436.0,"10 Crow Wood Court, Crow Wood Avenue",0.4704 +8847,362678,38 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,01 Nov 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB120LA,100012382464.0,"38 Crow Wood Court, Crow Wood Avenue",0.4704 +8906,362681,39 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,01 Nov 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB120LA,100012382465.0,"39 Crow Wood Court, Crow Wood Avenue",0.4704 +6965,362554,2 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,28 Apr 2022,C - 69 to 80,74.0,C - 69 to 80,78.0,BB120LA,100012382428.0,"2 Crow Wood Court, Crow Wood Avenue",0.4661 +7020,221640,3 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,05 Jan 2022,C - 69 to 80,76.0,C - 69 to 80,78.0,BB120LA,100012382429.0,"3 Crow Wood Court, Crow Wood Avenue",0.4661 +7062,221626,4 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB120LA,100012382430.0,"4 Crow Wood Court, Crow Wood Avenue",0.4661 +7114,136676,5 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,01 Mar 2012,C - 69 to 80,76.0,C - 69 to 80,77.0,BB120LA,100012382431.0,"5, Crow Wood Court, Crow Wood Avenue",0.4661 +7163,180893,6 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,14 Jun 2012,C - 69 to 80,77.0,C - 69 to 80,79.0,BB120LA,100012382432.0,"6, Crow Wood Court, Crow Wood Avenue",0.4661 +7216,210914,7 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,10 Sep 2013,C - 69 to 80,79.0,C - 69 to 80,79.0,BB120LA,100012382433.0,"7, Crow Wood Court, Crow Wood Avenue",0.4661 +7261,137013,8 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,01 Nov 2025,B - 81 to 91,81.0,B - 81 to 91,81.0,BB120LA,100012382434.0,"8 Crow Wood Court, Crow Wood Avenue",0.4661 +7313,95418,9 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,19 Apr 2023,B - 81 to 91,82.0,B - 81 to 91,82.0,BB120LA,100012382435.0,"9 Crow Wood Court, Crow Wood Avenue",0.4661 +7407,340593,11 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,02 Sep 2021,C - 69 to 80,78.0,C - 69 to 80,78.0,BB120LA,100012382437.0,"11 Crow Wood Court, Crow Wood Avenue",0.4704 +7455,102917,12 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,80.0,C - 69 to 80,80.0,BB120LA,100012382438.0,"12 Crow Wood Court, Crow Wood Avenue",0.4704 +7502,106384,13 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,08 Sep 2021,C - 69 to 80,76.0,C - 69 to 80,76.0,BB120LA,100012382439.0,"13 Crow Wood Court, Crow Wood Avenue",0.4704 +7549,95221,14 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,12 May 2010,B - 81 to 91,84.0,B - 81 to 91,86.0,BB120LA,100012382440.0,"14, Crow Wood Court, Crow Wood Avenue",0.4704 +7599,40999,15 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,19 Feb 2009,B - 81 to 91,84.0,B - 81 to 91,86.0,BB120LA,100012382441.0,"15, Crow Wood Court, Crow Wood Avenue",0.4704 +7713,180894,17 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,14 Jun 2012,C - 69 to 80,77.0,C - 69 to 80,79.0,BB120LA,100012382443.0,"17, Crow Wood Court, Crow Wood Avenue",0.4704 +7764,94990,18 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,31 Mar 2010,B - 81 to 91,84.0,B - 81 to 91,86.0,BB120LA,100012382444.0,"18, Crow Wood Court, Crow Wood Avenue",0.4704 +7818,362614,19 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,24 Jun 2022,C - 69 to 80,74.0,C - 69 to 80,78.0,BB120LA,100012382445.0,"19 Crow Wood Court, Crow Wood Avenue",0.4704 +7874,272780,20 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,22 Mar 2017,C - 69 to 80,74.0,C - 69 to 80,76.0,BB120LA,100012382446.0,"20, Crow Wood Court, Crow Wood Avenue",0.4704 +7924,339408,21 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,08 Jul 2021,C - 69 to 80,76.0,C - 69 to 80,77.0,BB120LA,100012382447.0,"21 CROW WOOD COURT, CROW WOOD AVENUE",0.4704 +7979,89578,22 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,24 Nov 2021,C - 69 to 80,76.0,C - 69 to 80,78.0,BB120LA,100012382448.0,"22 Crow Wood Court, Crow Wood Avenue",0.4704 +8027,41021,23 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,22 Nov 2021,C - 69 to 80,77.0,C - 69 to 80,77.0,BB120LA,100012382449.0,"23 Crow Wood Court, Crow Wood Avenue",0.4704 +8075,94926,24 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,14 Apr 2010,B - 81 to 91,84.0,B - 81 to 91,86.0,BB120LA,100012382450.0,"24, Crow Wood Court, Crow Wood Avenue",0.4704 +8124,359094,25 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,22 Feb 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB120LA,100012382451.0,"25 Crow Wood Court, Crow Wood Avenue",0.4704 +8174,246399,26 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,03 Feb 2016,C - 69 to 80,78.0,C - 69 to 80,78.0,BB120LA,100012382452.0,"26, Crow Wood Court, Crow Wood Avenue",0.4704 +8229,119219,27 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,04 Jan 2023,C - 69 to 80,77.0,C - 69 to 80,79.0,BB120LA,100012382453.0,"27 Crow Wood Court, Crow Wood Avenue",0.4704 +8273,246353,28 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,26 Jan 2016,C - 69 to 80,77.0,C - 69 to 80,78.0,BB120LA,100012382454.0,"28, Crow Wood Court, Crow Wood Avenue",0.4704 +8327,105398,29 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,19 May 2021,C - 69 to 80,76.0,C - 69 to 80,79.0,BB120LA,100012382455.0,"29 CROW WOOD COURT, CROW WOOD AVENUE",0.4704 +8380,41035,30 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,11 Jan 2009,B - 81 to 91,85.0,B - 81 to 91,87.0,BB120LA,100012382456.0,"30, Crow Wood Court, Crow Wood Avenue",0.4704 +8430,225824,31 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,02 Jun 2014,C - 69 to 80,77.0,C - 69 to 80,78.0,BB120LA,100012382457.0,"31, Crow Wood Court, Crow Wood Avenue",0.4704 +8486,110640,32 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,07 Apr 2011,B - 81 to 91,83.0,B - 81 to 91,85.0,BB120LA,100012382458.0,"32, Crow Wood Court, Crow Wood Avenue",0.4704 +8540,111667,33 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,26 Jan 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB120LA,100012382459.0,"33 Crow Wood Court, Crow Wood Avenue",0.4704 +8606,94839,34 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Top,Domestic EPC Required,EPC Present,17 Mar 2010,B - 81 to 91,82.0,B - 81 to 91,84.0,BB120LA,100012382460.0,"34, Crow Wood Court, Crow Wood Avenue",0.4704 +8671,220131,35 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,02 Dec 2013,C - 69 to 80,77.0,C - 69 to 80,79.0,BB120LA,100012382461.0,"35, Crow Wood Court, Crow Wood Avenue",0.4704 +8730,94991,36 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,30 Sep 2025,C - 69 to 80,76.0,C - 69 to 80,79.0,BB120LA,100012382462.0,"36 Crow Wood Court, Crow Wood Avenue",0.4704 +8789,339409,37 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,08 Jul 2021,C - 69 to 80,76.0,C - 69 to 80,78.0,BB120LA,100012382463.0,"37 CROW WOOD COURT, CROW WOOD AVENUE",0.4704 +8960,244345,40 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,18 Nov 2015,C - 69 to 80,76.0,C - 69 to 80,78.0,BB120LA,100012382466.0,"40, Crow Wood Court, Crow Wood Avenue",0.4704 +9019,274476,41 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,06 Jun 2017,C - 69 to 80,72.0,C - 69 to 80,73.0,BB120LA,100012382467.0,"41, Crow Wood Court, Crow Wood Avenue",0.4704 +9070,221136,42 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,12 Dec 2013,C - 69 to 80,78.0,C - 69 to 80,79.0,BB120LA,100012382468.0,"42, Crow Wood Court, Crow Wood Avenue",0.4704 +9125,339407,43 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,07 Jul 2021,C - 69 to 80,77.0,C - 69 to 80,79.0,BB120LA,100012382469.0,"43 CROW WOOD COURT, CROW WOOD AVENUE",0.4704 +9191,105062,44 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,08 Dec 2010,B - 81 to 91,83.0,B - 81 to 91,85.0,BB120LA,100012382470.0,"44, Crow Wood Court, Crow Wood Avenue",0.4704 +9244,250558,45 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,09 Jun 2016,C - 69 to 80,76.0,C - 69 to 80,78.0,BB120LA,100012382471.0,"45, Crow Wood Court, Crow Wood Avenue",0.4704 +9307,191101,46 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,09 Nov 2012,C - 69 to 80,76.0,C - 69 to 80,77.0,BB120LA,100012382472.0,"46, Crow Wood Court, Crow Wood Avenue",0.4704 +11600,253506,47 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Top,Domestic EPC Required,EPC Present,22 Sep 2016,C - 69 to 80,75.0,C - 69 to 80,76.0,BB120LA,10023762735.0,"47 Crow Wood Court, Crow Wood Avenue",0.4704 +11601,243660,16 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,30 Oct 2015,C - 69 to 80,75.0,C - 69 to 80,77.0,BB120LA,100012382442.0,"16, Crow Wood Court, Crow Wood Avenue",0.4704 +6940,362551,83 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: End Terrace,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB102AU,100010337955.0,83 Eastern Avenue,0.4705 +5378,40900,51 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: End Terrace,Domestic EPC Required,EPC Present,20 Jun 2009,D - 55 to 68,63.0,C - 69 to 80,70.0,BB102AU,100010337939.0,"51, Eastern Avenue",0.4705 +5484,222007,53 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: End Terrace,Domestic EPC Required,EPC Present,15 Jan 2014,C - 69 to 80,69.0,B - 81 to 91,85.0,BB102AU,100010337940.0,"53, Eastern Avenue",0.4705 +5589,326168,55 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Feb 2020,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102AU,100010337941.0,"55, Eastern Avenue",0.4705 +5979,359932,63 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 May 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB102AU,100010337945.0,63 Eastern Avenue,0.4705 +6073,132616,65 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jan 2012,C - 69 to 80,71.0,C - 69 to 80,75.0,BB102AU,100010337946.0,"65, Eastern Avenue",0.4705 +6446,360355,73 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: End Terrace,Domestic EPC Required,EPC Present,27 Jun 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB102AU,100010337950.0,73 Eastern Avenue,0.4705 +6642,252236,77 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Jul 2016,C - 69 to 80,73.0,B - 81 to 91,87.0,BB102AU,100010337952.0,"77, Eastern Avenue",0.4705 +6745,247944,79 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,69.0,B - 81 to 91,91.0,BB102AU,100010337953.0,"79, Eastern Avenue",0.4705 +6842,305159,81 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 May 2019,C - 69 to 80,72.0,B - 81 to 91,89.0,BB102AU,100010337954.0,"81, Eastern Avenue",0.4705 +8250,253471,109 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Dec 2025,D - 55 to 68,66.0,C - 69 to 80,75.0,BB102AU,100010337968.0,109 Eastern Avenue,0.4754 +8351,89463,111 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,03 Dec 2009,C - 69 to 80,71.0,C - 69 to 80,77.0,BB102AU,100010337969.0,"111, Eastern Avenue",0.4754 +8458,94977,113 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Jul 2021,C - 69 to 80,69.0,B - 81 to 91,90.0,BB102AU,100010337970.0,113 EASTERN AVENUE,0.4754 +8577,325760,115 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,89.0,BB102AU,100010337971.0,"115, Eastern Avenue",0.4754 +8696,226550,117 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,Bungalow: End Terr,Domestic EPC Required,EPC Present,01 Jul 2014,C - 69 to 80,69.0,B - 81 to 91,90.0,BB102AU,100010337972.0,"117, Eastern Avenue",0.4754 +8816,211357,119 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,09 Oct 2013,C - 69 to 80,69.0,B - 81 to 91,91.0,BB102AU,100010337973.0,"119, Eastern Avenue",0.4754 +8933,339331,121 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,01 Jul 2021,C - 69 to 80,71.0,B - 81 to 91,91.0,BB102AU,100010337974.0,121 EASTERN AVENUE,0.4754 +9044,106960,123 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,Bungalow: End Terr,Domestic EPC Required,EPC Present,15 Jul 2022,D - 55 to 68,68.0,B - 81 to 91,90.0,BB102AU,100010337975.0,123 Eastern Avenue,0.4754 +7302,362576,7 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Dec 2023,D - 55 to 68,67.0,B - 81 to 91,82.0,BB103NS,100010350461.0,"7 Old Hall Square, Worsthorne",0.5944 +7002,324908,1 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,02 Dec 2019,C - 69 to 80,69.0,B - 81 to 91,89.0,BB103NS,100010350455.0,"1, Old Hall Square, Worsthorne",0.5944 +7054,324907,2 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,02 Dec 2019,C - 69 to 80,70.0,B - 81 to 91,89.0,BB103NS,100010350456.0,"2, Old Hall Square, Worsthorne",0.5944 +7105,245153,3 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Dec 2025,B - 81 to 91,86.0,B - 81 to 91,88.0,BB103NS,100010350457.0,"3 Old Hall Square, Worsthorne",0.5944 +7151,186756,4 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,12 Dec 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB103NS,100010350458.0,"4 Old Hall Square, Worsthorne",0.5944 +7207,118381,5 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Sep 2011,D - 55 to 68,65.0,D - 55 to 68,66.0,BB103NS,100010350459.0,"5, Old Hall Square, Worsthorne",0.5944 +7256,114855,6 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,63.0,B - 81 to 91,87.0,BB103NS,100010350460.0,"6, Old Hall Square, Worsthorne",0.5944 +7647,112884,14 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,House: Semi-Detached,Domestic EPC Required,EPC Present,25 May 2011,D - 55 to 68,66.0,C - 69 to 80,69.0,BB103NS,100010350468.0,"14, Old Hall Square, Worsthorne",0.5972 +7967,324936,20 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Dec 2019,C - 69 to 80,71.0,B - 81 to 91,88.0,BB103NS,100010350474.0,"20, Old Hall Square, Worsthorne",0.5972 +8064,324935,22 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jan 2026,C - 69 to 80,70.0,C - 69 to 80,79.0,BB103NS,100010350476.0,"22 Old Hall Square, Worsthorne",0.5972 +7425,362585,13 Carter Avenue Hapton Burnley Lancashire BB11 5RG,,, BB11 5RG,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Oct 2023,C - 69 to 80,71.0,B - 81 to 91,84.0,BB115RG,100010333105.0,"13 Carter Avenue, Hapton",0.5426 +7467,362590,14 Carter Avenue Hapton Burnley Lancashire BB11 5RG,,, BB11 5RG,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Oct 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115RG,100010333106.0,"14 Carter Avenue, Hapton",0.5426 +7281,244964,10 Carter Avenue Hapton Burnley Lancashire BB11 5RG,,, BB11 5RG,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2015,C - 69 to 80,69.0,B - 81 to 91,84.0,BB115RG,100010333102.0,"10, Carter Avenue, Hapton",0.5426 +7673,210913,18 Carter Avenue Hapton Burnley Lancashire BB11 5RG,,, BB11 5RG,House: End Terrace,Domestic EPC Required,EPC Present,10 Sep 2013,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115RG,100010333110.0,"18, Carter Avenue, Hapton",0.5426 +7837,222437,21 Carter Avenue Hapton Burnley Lancashire BB11 5RG,,, BB11 5RG,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2014,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115RG,100010333113.0,"21, Carter Avenue, Hapton",0.5426 +7989,244947,24 Carter Avenue Hapton Burnley Lancashire BB11 5RG,,, BB11 5RG,House: End Terrace,Domestic EPC Required,EPC Present,22 Oct 2015,C - 69 to 80,69.0,B - 81 to 91,86.0,BB115RG,100010333116.0,"24, Carter Avenue, Hapton",0.5426 +8288,362644,18 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,House: End Terrace,Domestic EPC Required,EPC Present,14 Nov 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB128NY,100010345404.0,"18 Langdale Road, Padiham",0.6185 +719,119249,47 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,69.0,B - 81 to 91,86.0,BB128NY,100010345433.0,"47, Langdale Road, Padiham",0.6185 +921,111187,51 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Aug 2021,D - 55 to 68,58.0,B - 81 to 91,89.0,BB128NY,100010345437.0,"51 Langdale Road, Padiham",0.6185 +7428,362587,1 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,90.0,BB128NY,100010345387.0,"1 Langdale Road, Padiham",0.6154 +7520,89502,3 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Dec 2009,D - 55 to 68,66.0,C - 69 to 80,73.0,BB128NY,100010345389.0,"3, Langdale Road, Padiham",0.6154 +7622,90190,5 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Feb 2010,C - 69 to 80,72.0,C - 69 to 80,76.0,BB128NY,100010345391.0,"5, Langdale Road, Padiham",0.6154 +7733,231196,7 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,21 Jan 2015,D - 55 to 68,61.0,B - 81 to 91,85.0,BB128NY,100010345393.0,"7, Langdale Road, Padiham",0.6154 +7786,362611,8 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB128NY,100010345394.0,"8 Langdale Road, Padiham",0.6154 +7844,201775,9 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,09 Apr 2013,D - 55 to 68,65.0,B - 81 to 91,89.0,BB128NY,100010345395.0,"9, Langdale Road, Padiham",0.6154 +7948,332661,11 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,23 Oct 2020,D - 55 to 68,64.0,D - 55 to 68,66.0,BB128NY,100010345397.0,"11 LANGDALE ROAD, PADIHAM",0.6185 +8043,221654,13 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,68.0,B - 81 to 91,90.0,BB128NY,100010345399.0,"13, Langdale Road, Padiham",0.6185 +8143,89317,15 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Nov 2009,C - 69 to 80,69.0,C - 69 to 80,70.0,BB128NY,100010345401.0,"15, Langdale Road, Padiham",0.6185 +8245,219720,17 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jun 2025,C - 69 to 80,69.0,C - 69 to 80,77.0,BB128NY,100010345403.0,"17 Langdale Road, Padiham",0.6185 +8345,69650,19 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,27 Jan 2023,C - 69 to 80,69.0,B - 81 to 91,91.0,BB128NY,100010345405.0,"19 Langdale Road, Padiham",0.6185 +8450,94902,21 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Oct 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB128NY,100010345407.0,"21 Langdale Road, Padiham",0.6185 +8562,94904,23 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Oct 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB128NY,100010345409.0,"23 Langdale Road, Padiham",0.6185 +8686,112185,25 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 May 2011,D - 55 to 68,65.0,D - 55 to 68,68.0,BB128NY,100010345411.0,"25, Langdale Road, Padiham",0.6185 +8809,94972,27 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Apr 2010,C - 69 to 80,73.0,C - 69 to 80,77.0,BB128NY,100010345413.0,"27, Langdale Road, Padiham",0.6185 +8928,247015,29 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,02 Mar 2016,D - 55 to 68,65.0,B - 81 to 91,90.0,BB128NY,100010345415.0,"29, Langdale Road, Padiham",0.6185 +9035,362688,31 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,90.0,BB128NY,100010345417.0,"31 Langdale Road, Padiham",0.6185 +9149,359955,33 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 May 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128NY,100010345419.0,"33 Langdale Road, Padiham",0.6185 +9269,138693,35 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,02 Sep 2022,C - 69 to 80,69.0,A - 92 Plus,92.0,BB128NY,100010345421.0,"35 Langdale Road, Padiham",0.6185 +9382,187823,37 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Sep 2012,C - 69 to 80,69.0,A - 92 Plus,92.0,BB128NY,100010345423.0,"37, Langdale Road, Padiham",0.6185 +9495,362711,39 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128NY,100010345425.0,"39 Langdale Road, Padiham",0.6185 +8662,362665,140 Kiddrow Lane Burnley Lancashire BB12 6LL,,, BB12 6LL,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Dec 2023,D - 55 to 68,66.0,B - 81 to 91,84.0,BB126LL,100010344642.0,140 Kiddrow Lane,0.4652 +9249,118349,64 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: End Terrace,Domestic EPC Required,EPC Present,16 Oct 2023,D - 55 to 68,65.0,B - 81 to 91,85.0,BB112NX,100010349382.0,64 Moorland Road,0.4652 +605,179913,74 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 May 2012,D - 55 to 68,66.0,B - 81 to 91,85.0,BB112NX,100010349387.0,"74, Moorland Road",0.4652 +809,94859,78 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: End Terrace,Domestic EPC Required,EPC Present,10 Jul 2017,D - 55 to 68,65.0,B - 81 to 91,87.0,BB112NX,100010349389.0,"78, Moorland Road",0.4652 +904,111293,80 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: End Terrace,Domestic EPC Required,EPC Present,28 Jun 2017,D - 55 to 68,64.0,B - 81 to 91,85.0,BB112NX,100010349390.0,"80, Moorland Road",0.4652 +1011,233913,82 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Jun 2017,D - 55 to 68,67.0,B - 81 to 91,85.0,BB112NX,100010349391.0,"82, Moorland Road",0.4652 +1231,230220,86 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: End Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,C - 69 to 80,69.0,B - 81 to 91,87.0,BB112NX,100010349393.0,86 Moorland Road,0.4652 +1343,274463,88 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: End Terrace,Domestic EPC Required,EPC Present,05 Jun 2017,D - 55 to 68,56.0,B - 81 to 91,83.0,BB112NX,100010349394.0,"88, Moorland Road",0.4652 +1445,286340,90 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jun 2017,D - 55 to 68,63.0,B - 81 to 91,85.0,BB112NX,100010349395.0,"90, Moorland Road",0.4652 +1659,275592,94 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: End Terrace,Domestic EPC Required,EPC Present,28 Jun 2017,D - 55 to 68,64.0,B - 81 to 91,87.0,BB112NX,100010349397.0,"94, Moorland Road",0.4652 +6964,40971,21 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Mar 2025,D - 55 to 68,68.0,B - 81 to 91,86.0,BB112NX,100010349345.0,21 Moorland Road,0.4652 +6973,275598,21a Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jun 2017,D - 55 to 68,59.0,B - 81 to 91,87.0,BB112NX,100010349343.0,"21a, Moorland Road",0.5219 +6977,194691,21b Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jan 2013,C - 69 to 80,70.0,B - 81 to 91,87.0,BB112NX,100010349344.0,"21b, Moorland Road",0.5219 +7061,40974,23 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Mar 2022,D - 55 to 68,59.0,B - 81 to 91,82.0,BB112NX,100010349347.0,23 Moorland Road,0.4652 +7162,110878,25 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jun 2017,D - 55 to 68,64.0,B - 81 to 91,85.0,BB112NX,100010349349.0,"25, Moorland Road",0.4652 +7362,89742,29 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Jan 2010,D - 55 to 68,59.0,C - 69 to 80,73.0,BB112NX,100010349353.0,"29, Moorland Road",0.4652 +7456,40992,31 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Jun 2017,D - 55 to 68,58.0,D - 55 to 68,62.0,BB112NX,100010349355.0,"31, Moorland Road",0.4652 +7548,206144,33 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jul 2024,C - 69 to 80,72.0,B - 81 to 91,87.0,BB112NX,100010349357.0,33 Moorland Road,0.4652 +7660,110926,35 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Jun 2017,D - 55 to 68,63.0,B - 81 to 91,84.0,BB112NX,100012536949.0,"35, Moorland Road",0.4652 +7760,41007,37 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Mar 2025,C - 69 to 80,69.0,B - 81 to 91,87.0,BB112NX,100010349360.0,37 Moorland Road,0.4652 +7869,275576,39 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Jun 2017,D - 55 to 68,64.0,B - 81 to 91,89.0,BB112NX,100010349362.0,"39, Moorland Road",0.4652 +7977,111160,41 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Jun 2017,D - 55 to 68,63.0,B - 81 to 91,85.0,BB112NX,100010349364.0,"41, Moorland Road",0.4652 +8173,286337,45 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jun 2017,D - 55 to 68,55.0,B - 81 to 91,83.0,BB112NX,100010349368.0,"45, Moorland Road",0.4652 +8272,111179,47 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jun 2017,D - 55 to 68,63.0,B - 81 to 91,86.0,BB112NX,100010349370.0,"47, Moorland Road",0.4652 +8669,111194,54 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: End Terrace,Domestic EPC Required,EPC Present,28 Jun 2017,D - 55 to 68,65.0,B - 81 to 91,84.0,BB112NX,100010349377.0,"54, Moorland Road",0.4652 +9018,111200,60 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Jul 2017,D - 55 to 68,65.0,B - 81 to 91,85.0,BB112NX,100010349380.0,"60, Moorland Road",0.4652 +9133,111204,62 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Feb 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB112NX,100010349381.0,62 Moorland Road,0.4652 +9364,111211,66 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Jun 2017,D - 55 to 68,67.0,B - 81 to 91,85.0,BB112NX,100010349383.0,"66, Moorland Road",0.4652 +9476,98118,68 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Mar 2022,C - 69 to 80,70.0,B - 81 to 91,89.0,BB112NX,100010349384.0,68 Moorland Road,0.4652 +13250,337854,84 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Feb 2014,C - 69 to 80,69.0,B - 81 to 91,86.0,BB112NX,100010349392.0,"84, Moorland Road",0.4652 +9519,362712,7 Derwent Avenue Padiham Lancashire BB12 8NZ,,, BB12 8NZ,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB128NZ,100010337272.0,"7 Derwent Avenue, Padiham",0.6185 +9289,268941,3 Derwent Avenue Padiham Lancashire BB12 8NZ,,, BB12 8NZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Dec 2016,C - 69 to 80,69.0,B - 81 to 91,88.0,BB128NZ,100010337268.0,"3, Derwent Avenue, Padiham",0.6185 +9344,137009,4 Derwent Avenue Padiham Lancashire BB12 8NZ,,, BB12 8NZ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Mar 2012,D - 55 to 68,67.0,C - 69 to 80,72.0,BB128NZ,100010337269.0,"4, Derwent Avenue, Padiham",0.6185 +9460,362710,6 Derwent Avenue Padiham Lancashire BB12 8NZ,,, BB12 8NZ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB128NZ,100010337271.0,"6 Derwent Avenue, Padiham",0.6185 +10801,76919,45 Laithe Street Burnley Lancashire BB11 2LH,,, BB11 2LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB112LH,100010345223.0,45 Laithe Street,0.4652 +13085,333853,2 Laithe Street Burnley Lancashire BB11 2LH,,, BB11 2LH,House: End Terrace,Domestic EPC Required,EPC Present,01 Dec 2025,C - 69 to 80,70.0,C - 69 to 80,77.0,BB112LH,100010345180.0,"2 LAITHE STREET, BURNLEY",0.6154 +13086,336089,4 Laithe Street Burnley Lancashire BB11 2LH,,, BB11 2LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Nov 2020,C - 69 to 80,74.0,C - 69 to 80,79.0,BB112LH,100010345182.0,"4 LAITHE STREET, BURNLEY",0.6154 +13087,336085,32 Laithe Street Burnley Lancashire BB11 2LH,,, BB11 2LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Nov 2020,C - 69 to 80,73.0,C - 69 to 80,79.0,BB112LH,100010345210.0,"32 LAITHE STREET, BURNLEY",0.6185 +13111,336234,17 Laithe Street Burnley Lancashire BB11 2LH,,, BB11 2LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Nov 2020,C - 69 to 80,74.0,A - 92 Plus,92.0,BB112LH,100010345195.0,"17 LAITHE STREET, BURNLEY",0.6185 +13366,357161,12 Laithe Street Burnley Lancashire BB11 2LH,,, BB11 2LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Feb 2022,C - 69 to 80,73.0,A - 92 Plus,92.0,BB112LH,100010345190.0,12 Laithe Street,0.4652 +13373,357164,7 Laithe Street Burnley Lancashire BB11 2LH,,, BB11 2LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Feb 2022,C - 69 to 80,74.0,A - 92 Plus,93.0,BB112LH,100010345185.0,7 Laithe Street,0.4596 +13382,357135,30 Laithe Street Burnley Lancashire BB11 2LH,,, BB11 2LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Mar 2022,C - 69 to 80,73.0,A - 92 Plus,92.0,BB112LH,100010345208.0,30 Laithe Street,0.4652 +13736,360349,47 Laithe Street Burnley Lancashire BB11 2LH,,, BB11 2LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jun 2023,C - 69 to 80,76.0,B - 81 to 91,89.0,BB112LH,100010345225.0,47 Laithe Street,0.4652 +11076,181806,6 Plover Street Burnley Lancashire BB12 0HE,,, BB12 0HE,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Oct 2023,D - 55 to 68,65.0,B - 81 to 91,83.0,BB120HE,100010352290.0,6 Plover Street,0.4596 +11134,362718,6 Wood Street Colne Lancashire BB8 8HA,,, BB8 8HA,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Oct 2023,D - 55 to 68,65.0,B - 81 to 91,84.0,BB88HA,61024084.0,6 Wood Street,0.457 +11135,190675,10 Wood Street Colne Lancashire BB8 8HA,,, BB8 8HA,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Sep 2012,E - 39 to 54,49.0,B - 81 to 91,85.0,BB88HA,61024075.0,"10, Wood Street",0.4635 +11136,190679,14 Wood Street Colne Lancashire BB8 8HA,,, BB8 8HA,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Aug 2008,D - 55 to 68,64.0,C - 69 to 80,77.0,BB88HA,,, +12286,362768,Flat 13 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Top,Domestic EPC Required,EPC Present,01 Mar 2024,C - 69 to 80,80.0,C - 69 to 80,80.0,BB120LY,10003782512.0,"12, Whittle Court",0.0462 +12287,362769,Flat 14 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Top,Domestic EPC Required,EPC Present,01 Mar 2024,C - 69 to 80,80.0,C - 69 to 80,80.0,BB120LY,10003782512.0,"12, Whittle Court",0.0462 +12288,362770,Flat 15 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Top,Domestic EPC Required,EPC Present,01 Mar 2024,B - 81 to 91,81.0,B - 81 to 91,81.0,BB120LY,10003782512.0,"12, Whittle Court",0.0462 +12274,362756,Flat 1 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Bottom,Domestic EPC Required,EPC Present,28 Mar 2016,D - 55 to 68,65.0,C - 69 to 80,75.0,BB120LY,10003782507.0,"1, Whittle Court",0.1093 +12275,362757,Flat 2 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Bottom,Domestic EPC Required,EPC Present,16 Sep 2016,D - 55 to 68,68.0,C - 69 to 80,76.0,BB120LY,10003782509.0,"2, Whittle Court",0.1093 +12276,362758,Flat 3 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Bottom,Domestic EPC Required,EPC Present,22 Apr 2016,C - 69 to 80,73.0,C - 69 to 80,79.0,BB120LY,10003782510.0,"3, Whittle Court",0.1093 +12277,362759,Flat 4 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Bottom,Domestic EPC Required,EPC Present,25 Oct 2015,C - 69 to 80,79.0,B - 81 to 91,81.0,BB120LY,10003782511.0,"4, Whittle Court",0.1093 +12278,362760,Flat 5 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Middle,Domestic EPC Required,EPC Present,16 Sep 2016,C - 69 to 80,71.0,C - 69 to 80,75.0,BB120LY,10003782517.0,"5, Whittle Court",0.1093 +12279,362761,Flat 6 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Middle,Domestic EPC Required,EPC Present,16 Sep 2016,C - 69 to 80,72.0,C - 69 to 80,75.0,BB120LY,10003782513.0,"6, Whittle Court",0.1093 +12280,362762,Flat 7 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Middle,Domestic EPC Required,EPC Present,16 Jun 2016,C - 69 to 80,74.0,C - 69 to 80,76.0,BB120LY,10003782514.0,"7, Whittle Court",0.1093 +12281,362763,Flat 8 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Middle,Domestic EPC Required,EPC Present,16 Sep 2016,C - 69 to 80,70.0,C - 69 to 80,76.0,BB120LY,10003782515.0,"8, Whittle Court",0.1093 +12282,362764,Flat 9 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Middle,Domestic EPC Required,EPC Present,28 Mar 2016,C - 69 to 80,70.0,C - 69 to 80,76.0,BB120LY,10003782516.0,"9, Whittle Court",0.1093 +12283,362765,Flat 10 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Middle,Domestic EPC Required,EPC Present,16 Sep 2016,D - 55 to 68,68.0,C - 69 to 80,75.0,BB120LY,10003782518.0,"10, Whittle Court",0.1157 +12284,362766,Flat 11 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Top,Domestic EPC Required,EPC Present,15 Mar 2016,C - 69 to 80,77.0,C - 69 to 80,78.0,BB120LY,10003782520.0,"11, Whittle Court",0.1157 +12285,362767,Flat 12 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Top,Domestic EPC Required,EPC Present,28 Mar 2016,C - 69 to 80,69.0,C - 69 to 80,75.0,BB120LY,10003782512.0,"12, Whittle Court",0.1157 +12516,362801,32 Ferndale Street Burnley Lancashire BB10 3EP,,, BB10 3EP,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2023,D - 55 to 68,61.0,C - 69 to 80,80.0,BB103EP,100010338792.0,32 Ferndale Street,0.4754 +13714,362948,72 Briercliffe Road Burnley Lancashire BB10 1UX,,, BB10 1UX,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,25 Oct 2023,D - 55 to 68,68.0,B - 81 to 91,87.0,BB101UX,100010330052.0,72 Briercliffe Road,0.4801 +13772,368818,42 Nairne Street Burnley Lancashire BB11 4BT,,, BB11 4BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Oct 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB114BT,100010349759.0,42 Nairne Street,0.4652 +13412,362843,15 Nairne Street BURNLEY Lancashire BB11 4BT,,, BB11 4BT,House: End Terrace,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BT,10094112259.0,15 Nairne Street,0.4652 +13413,362844,17 Nairne Street BURNLEY Lancashire BB11 4BT,,, BB11 4BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BT,10094112253.0,17 Nairne Street,0.4652 +13414,362845,19 Nairne Street BURNLEY Lancashire BB11 4BT,,, BB11 4BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BT,10094112255.0,19 Nairne Street,0.4652 +13415,362846,22 Nairne Street BURNLEY Lancashire BB11 4BT,,, BB11 4BT,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BT,10094112258.0,22 Nairne Street,0.4652 +13416,362847,20 Nairne Street BURNLEY Lancashire BB11 4BT,,, BB11 4BT,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BT,10094112256.0,20 Nairne Street,0.4652 +13417,362848,18 Nairne Street BURNLEY Lancashire BB11 4BT,,, BB11 4BT,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BT,10094112254.0,18 Nairne Street,0.4652 +13418,362849,16 Nairne Street BURNLEY Lancashire BB11 4BT,,, BB11 4BT,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BT,10094112252.0,16 Nairne Street,0.4652 +13419,362850,21 Nairne Street BURNLEY Lancashire BB11 4BT,,, BB11 4BT,House: End Terrace,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BT,10094112257.0,21 Nairne Street,0.4652 +13707,358380,33 Nairne Street Burnley Lancashire BB11 4BT,,, BB11 4BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 May 2015,C - 69 to 80,75.0,B - 81 to 91,89.0,BB114BT,100010349748.0,"33, Nairne Street",0.4652 +13709,358439,38 Nairne Street Burnley Lancashire BB11 4BT,,, BB11 4BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Feb 2015,C - 69 to 80,74.0,B - 81 to 91,90.0,BB114BT,100010349755.0,"38, Nairne Street",0.4652 +13710,358473,39 Nairne Street Burnley Lancashire BB11 4BT,,, BB11 4BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 May 2015,C - 69 to 80,73.0,B - 81 to 91,89.0,BB114BT,100010349756.0,"39, Nairne Street",0.4652 +13711,362946,53 Nairne Street Burnley Lancashire BB11 4BT,,, BB11 4BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 May 2015,C - 69 to 80,74.0,A - 92 Plus,93.0,BB114BT,100010349770.0,"53, Nairne Street",0.4652 +13779,368970,20 Brockenhurst Street Burnley Lancashire BB10 4ET,,, BB10 4ET,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Nov 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB104ET,100010330521.0,"20 BROCKENHURST STREET, BURNLEY",0.6339 +13780,369211,8 Kyan Street Burnley Lancashire BB10 1HJ,,, BB10 1HJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Nov 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB101HJ,100010345074.0,8 Kyan Street,0.4471 +13796,374982,67 Nairne Street Burnley Lancashire BB11 4PE,,, BB11 4PE,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB114PE,100010349784.0,67 Nairne Street,0.4652 +13477,357200,101 Nairne Street Burnley Lancashire BB11 4PE,,, BB11 4PE,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Aug 2022,C - 69 to 80,72.0,B - 81 to 91,89.0,BB114PE,100010349818.0,101 Nairne Street,0.4705 +13638,359006,61 Nairne Street Burnley Lancashire BB11 4PE,,, BB11 4PE,House: End Terrace,Domestic EPC Required,EPC Present,15 Feb 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB114PE,100010349778.0,61 Nairne Street,0.4652 +13639,359010,75 Nairne Street Burnley Lancashire BB11 4PE,,, BB11 4PE,House: End Terrace,Domestic EPC Required,EPC Present,15 Feb 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB114PE,100010349792.0,75 Nairne Street,0.4652 +13809,374968,315 Cog Lane Hargher Clough BURNLEY Lancashire BB11 5JP,,, BB11 5JP,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Jan 2024,C - 69 to 80,70.0,B - 81 to 91,84.0,BB115JP,100010335017.0,315 Cog Lane,0.342 +13810,374969,59 Westmorland Street Burnley Lancashire BB11 4PN,,, BB11 4PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Nov 2020,D - 55 to 68,65.0,B - 81 to 91,89.0,BB114PN,100010360576.0,"59 WESTMORLAND STREET, BURNLEY",0.6317 +13334,342046,65 Westmorland Street Burnley Lancashire BB11 4PN,,, BB11 4PN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Oct 2021,C - 69 to 80,74.0,A - 92 Plus,92.0,BB114PN,100010360579.0,65 Westmorland Street,0.4886 +13701,358188,10 Westmorland Street Burnley Lancashire BB11 4PN,,, BB11 4PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Feb 2017,C - 69 to 80,70.0,B - 81 to 91,89.0,BB114PN,100010360545.0,10 Westmorland Street,0.4886 +13703,358256,14 Westmorland Street Burnley Lancashire BB11 4PN,,, BB11 4PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Apr 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB114PN,100010360547.0,"14, Westmorland Street",0.4886 +13704,362944,16 Westmorland Street Burnley Lancashire BB11 4PN,,, BB11 4PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Jun 2014,C - 69 to 80,74.0,B - 81 to 91,91.0,BB114PN,100010360548.0,"16, Westmorland Street",0.4886 +13811,374967,14 Prestwich Street BURNLEY Lancashire BB11 4NZ,,, BB11 4NZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Dec 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB114NZ,100010352546.0,14 Prestwich Street,0.4801 +13755,362958,18 Prestwich Street Burnley Lancashire BB11 4NZ,,, BB11 4NZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB114NZ,100010352549.0,18 Prestwich Street,0.4801 +13825,375715,53 Elmwood Street Burnley Lancashire BB11 4BP,,, BB11 4BP,House: End Terrace,Domestic EPC Required,EPC Present,08 Mar 2024,C - 69 to 80,69.0,B - 81 to 91,85.0,BB114BP,100010338306.0,53 Elmwood Street,0.4705 +13303,339784,29 Elmwood Street Burnley Lancashire BB11 4BP,,, BB11 4BP,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Jun 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB114BP,100010338282.0,29 ELMWOOD STREET,0.4705 +13369,357184,45 Elmwood Street Burnley Lancashire BB11 4BP,,, BB11 4BP,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Feb 2022,C - 69 to 80,77.0,A - 92 Plus,92.0,BB114BP,100010338298.0,45 Elmwood Street,0.4705 +13467,357187,26 Elmwood Street Burnley Lancashire BB11 4BP,,, BB11 4BP,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Jul 2022,C - 69 to 80,74.0,A - 92 Plus,92.0,BB114BP,100010338279.0,26 Elmwood Street,0.4705 +13548,357190,52 Elmwood Street Burnley Lancashire BB11 4BP,,, BB11 4BP,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Sep 2022,C - 69 to 80,75.0,B - 81 to 91,89.0,BB114BP,100010338305.0,52 Elmwood Street,0.4705 +13770,368811,46 Elmwood Street Burnley Lancashire BB11 4BP,,, BB11 4BP,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Jul 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB114BP,100010338299.0,46 Elmwood Street,0.4705 +13826,375584,14 Richmond Street Burnley Lancashire BB11 4NT,,, BB11 4NT,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Feb 2024,C - 69 to 80,71.0,B - 81 to 91,85.0,BB114NT,100010354039.0,14 Richmond Street,0.4754 +13859,380325,49 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112648.0,49 Kinross Street,0.4705 +13860,380327,40 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112663.0,40 Kinross Street,0.4705 +13861,380332,50 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112668.0,50 Kinross Street,0.4705 +13862,380324,51 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112649.0,51 Kinross Street,0.4705 +13863,380333,52 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112669.0,52 Kinross Street,0.4705 +13864,380321,55 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112651.0,55 Kinross Street,0.4705 +13865,380336,58 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112672.0,58 Kinross Street,0.4705 +13866,380337,60 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112673.0,60 Kinross Street,0.4705 +13867,380339,64 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112675.0,64 Kinross Street,0.4705 +13868,380340,66 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112676.0,66 Kinross Street,0.4705 +13869,380341,68 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112677.0,68 Kinross Street,0.4705 +13870,380326,47A Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112660.0,47a Kinross Street,0.5265 +13871,380322,53A Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112661.0,53a Kinross Street,0.5265 +13872,380328,42 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112664.0,42 Kinross Street,0.4705 +13873,380329,44 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112665.0,44 Kinross Street,0.4705 +13874,380330,46 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112666.0,46 Kinross Street,0.4705 +13875,380331,48 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112667.0,48 Kinross Street,0.4705 +13876,380323,53 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112650.0,53 Kinross Street,0.4705 +13877,380334,54 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112670.0,54 Kinross Street,0.4705 +13878,380335,56 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112671.0,56 Kinross Street,0.4705 +13879,380338,62 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112674.0,62 Kinross Street,0.4705 +13880,380320,57 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112652.0,57 Kinross Street,0.4705 +2170,180998,71 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jun 2012,C - 69 to 80,72.0,B - 81 to 91,83.0,BB114DP,100010344974.0,"71, Kinross Street",0.4705 +7587,362599,1 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,85.0,BB114DP,100010344947.0,1 Kinross Street,0.4652 +7699,362606,3 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB114DP,100010344949.0,3 Kinross Street,0.4652 +7911,132671,7 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Aug 2024,D - 55 to 68,62.0,B - 81 to 91,87.0,BB114DP,100010344953.0,7 Kinross Street,0.4652 +7965,89816,8 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Jan 2010,D - 55 to 68,57.0,C - 69 to 80,73.0,BB114DP,100010344954.0,"8, Kinross Street",0.4652 +8012,41020,9 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Nov 2008,D - 55 to 68,59.0,C - 69 to 80,69.0,BB114DP,100010344955.0,"9, Kinross Street",0.4652 +8062,362628,10 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DP,100010344956.0,10 Kinross Street,0.4705 +8113,341260,11 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Oct 2021,D - 55 to 68,67.0,B - 81 to 91,82.0,BB114DP,100010344957.0,11 Kinross Street,0.4705 +8210,118350,13 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jan 2026,D - 55 to 68,68.0,B - 81 to 91,83.0,BB114DP,100010344959.0,13 Kinross Street,0.4705 +8474,89003,18 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2025,D - 55 to 68,64.0,C - 69 to 80,73.0,BB114DP,100010344962.0,18 Kinross Street,0.4705 +8713,89811,22 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,80.0,BB114DP,100010344964.0,22 Kinross Street,0.4705 +8834,362677,24 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,84.0,BB114DP,100010344966.0,24 Kinross Street,0.4705 +10900,99041,2 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2010,C - 69 to 80,75.0,C - 69 to 80,75.0,BB114DP,100010344948.0,"2, Kinross Street",0.4652 +10901,100549,6 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Sep 2010,C - 69 to 80,77.0,C - 69 to 80,77.0,BB114DP,100010344952.0,6 Kinross Street,0.4652 +12400,296596,27 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110211.0,"27, Kinross Street",0.4705 +12401,296598,29 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110212.0,"29, Kinross Street",0.4705 +12402,296600,31 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110213.0,"31, Kinross Street",0.4705 +12403,296602,33 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110214.0,"33, Kinross Street",0.4705 +12404,296604,35 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110215.0,"35, Kinross Street",0.4705 +12405,296606,37 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110216.0,"37, Kinross Street",0.4705 +12411,296631,19 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110207.0,"19, Kinross Street",0.4705 +12412,296629,21 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110208.0,"21, Kinross Street",0.4705 +12413,296627,23 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110209.0,"23, Kinross Street",0.4705 +12414,296625,25 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110210.0,"25, Kinross Street",0.4705 +12415,316672,15 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Mar 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110205.0,"15, Kinross Street",0.4705 +12416,316673,17 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Mar 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110206.0,"17, Kinross Street",0.4705 +12417,297571,39 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,Bungalow: Detached,Domestic EPC Required,EPC Present,14 Mar 2018,B - 81 to 91,83.0,A - 92 Plus,94.0,BB114DP,10094110217.0,"39, Kinross Street",0.4705 +13884,381269,47 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Sep 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112647.0,47 Kinross Street,0.4705 +13887,383258,45 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Oct 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DP,10094112646.0,45 Kinross Street,0.4705 +13888,382377,43 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Sep 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112645.0,43 Kinross Street,0.4705 +13889,382367,41A Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Sep 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112659.0,41a Kinross Street,0.5265 +13890,382347,41 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Sep 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DP,10094112644.0,41 Kinross Street,0.4705 +13894,382739,67 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,94.0,A - 92 Plus,96.0,BB114DP,10094112657.0,67 Kinross Street,0.4705 +13895,382625,82 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,93.0,A - 92 Plus,95.0,BB114DP,10094112684.0,82 Kinross Street,0.4705 +13896,382638,80 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: End Terrace,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,94.0,A - 92 Plus,95.0,BB114DP,10094112683.0,80 Kinross Street,0.4705 +13897,383189,65 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: End Terrace,Domestic EPC Required,EPC Present,12 Nov 2024,A - 92 Plus,94.0,A - 92 Plus,95.0,BB114DP,10094112656.0,65 Kinross Street,0.4705 +13898,383243,63 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Nov 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DP,10094112655.0,63 Kinross Street,0.4705 +13899,383233,61 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Nov 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112654.0,61 Kinross Street,0.4705 +13900,383164,59A Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112662.0,59a Kinross Street,0.5265 +13901,383176,59 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Dec 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112653.0,59 Kinross Street,0.4705 +13902,382618,70 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112678.0,70 Kinross Street,0.4705 +13903,382651,72 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112679.0,72 Kinross Street,0.4705 +13904,382664,74 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112680.0,74 Kinross Street,0.4705 +13905,382677,76 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112681.0,76 Kinross Street,0.4705 +13906,382690,78 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112682.0,78 Kinross Street,0.4705 +13907,382727,69 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,Bungalow: End Terr,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112658.0,69 Kinross Street,0.4705 +13908,382703,84 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,Bungalow: End Terr,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112685.0,84 Kinross Street,0.4705 +438,103503,137 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,31 Jan 2022,C - 69 to 80,73.0,C - 69 to 80,78.0,BB104QQ,100010330932.0,137 Brownhill Avenue,0.4845 +538,40662,139 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,05 Aug 2021,C - 69 to 80,75.0,C - 69 to 80,75.0,BB104QQ,100010330934.0,139 Brownhill Avenue,0.4845 +1154,192280,151 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Mar 2016,C - 69 to 80,74.0,B - 81 to 91,87.0,BB104QQ,100010330942.0,"151, Brownhill Avenue",0.4845 +1370,247989,155 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,House: End Terrace,Domestic EPC Required,EPC Present,29 Mar 2016,D - 55 to 68,66.0,B - 81 to 91,83.0,BB104QQ,100010330945.0,"155, Brownhill Avenue",0.4845 +1478,247990,157 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,House: End Terrace,Domestic EPC Required,EPC Present,20 Oct 2025,C - 69 to 80,76.0,B - 81 to 91,81.0,BB104QQ,100010330947.0,157 Brownhill Avenue,0.4845 +1691,247992,161 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Apr 2016,C - 69 to 80,73.0,B - 81 to 91,90.0,BB104QQ,100010330951.0,"161, Brownhill Avenue",0.4845 +1801,247993,163 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Mar 2016,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104QQ,100010330953.0,"163, Brownhill Avenue",0.4845 +4960,362403,47 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104QQ,100010330849.0,47 Brownhill Avenue,0.4801 +5054,222430,49 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jun 2023,C - 69 to 80,73.0,C - 69 to 80,78.0,BB104QQ,100010330851.0,49 Brownhill Avenue,0.4801 +5163,222809,51 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB104QQ,100010330853.0,51 Brownhill Avenue,0.4801 +5271,362422,53 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB104QQ,100010330855.0,53 Brownhill Avenue,0.4801 +5388,223671,55 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,17 Apr 2014,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104QQ,100010330857.0,"55, Brownhill Avenue",0.4801 +5489,106950,57 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,08 Aug 2013,D - 55 to 68,62.0,C - 69 to 80,71.0,BB104QQ,100010330859.0,"57, Brownhill Avenue",0.4801 +5593,209238,59 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,30 Jul 2013,D - 55 to 68,63.0,D - 55 to 68,68.0,BB104QQ,100010330861.0,"59, Brownhill Avenue",0.4801 +5800,190991,63 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,30 Jul 2013,D - 55 to 68,65.0,D - 55 to 68,68.0,BB104QQ,100010330865.0,"63, Brownhill Avenue",0.4801 +5897,72918,65 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,31 Jul 2009,C - 69 to 80,71.0,C - 69 to 80,71.0,BB104QQ,100010330867.0,"65, Brownhill Avenue",0.4801 +5988,76905,67 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2025,C - 69 to 80,76.0,C - 69 to 80,78.0,BB104QQ,100010330869.0,67 Brownhill Avenue,0.4801 +6077,101310,69 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,20 Apr 2022,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104QQ,100010330871.0,69 Brownhill Avenue,0.4801 +7046,210918,89 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,13 Sep 2013,C - 69 to 80,69.0,C - 69 to 80,77.0,BB104QQ,100010330886.0,"89, Brownhill Avenue",0.4801 +7144,209260,91 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,02 Feb 2026,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104QQ,100010330888.0,"91, Brownhill Avenue",0.4801 +7251,100132,93 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,15 Sep 2010,C - 69 to 80,74.0,C - 69 to 80,78.0,BB104QQ,100010330890.0,"93, Brownhill Avenue",0.4801 +7350,190992,95 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,15 Oct 2012,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104QQ,100010330892.0,"95, Brownhill Avenue",0.4801 +8158,247016,111 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Mar 2016,C - 69 to 80,71.0,B - 81 to 91,89.0,BB104QQ,100010330907.0,"111, Brownhill Avenue",0.4845 +8470,252272,117 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,House: End Terrace,Domestic EPC Required,EPC Present,11 Jul 2016,C - 69 to 80,70.0,B - 81 to 91,88.0,BB104QQ,100010330912.0,"117, Brownhill Avenue",0.4845 +8942,362683,125 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,23 Oct 2025,C - 69 to 80,75.0,C - 69 to 80,79.0,BB104QQ,100010330920.0,125 Brownhill Avenue,0.4845 +9054,362690,127 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,78.0,BB104QQ,100010330922.0,127 Brownhill Avenue,0.4845 +9164,362696,129 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104QQ,100010330924.0,129 Brownhill Avenue,0.4845 +9283,89056,131 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,30 Oct 2009,C - 69 to 80,78.0,B - 81 to 91,83.0,BB104QQ,100010330926.0,"131, Brownhill Avenue",0.4845 +9401,69497,133 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,17 Jul 2009,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104QQ,100010330928.0,"133, Brownhill Avenue",0.4845 +9516,304939,135 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,17 Apr 2019,C - 69 to 80,71.0,C - 69 to 80,75.0,BB104QQ,100010330930.0,"135, Brownhill Avenue",0.4845 +12649,302163,119 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Dec 2015,C - 69 to 80,70.0,B - 81 to 91,84.0,BB104QQ,100010330914.0,"119, Brownhill Avenue",0.4845 +12715,305391,167 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2025,D - 55 to 68,66.0,C - 69 to 80,70.0,BB104QQ,100010330957.0,167 Brownhill Avenue,0.4845 +442,228329,190 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Middle,Domestic EPC Required,EPC Present,10 Sep 2014,C - 69 to 80,74.0,C - 69 to 80,77.0,BB126AS,100010357612.0,"190, Sycamore Avenue",0.4801 +546,244899,192 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Bottom,Domestic EPC Required,EPC Present,28 Nov 2015,C - 69 to 80,71.0,C - 69 to 80,76.0,BB126AS,100010357613.0,"192, Sycamore Avenue",0.4801 +642,359922,194 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Bottom,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,75.0,C - 69 to 80,76.0,BB126AS,100010357615.0,194 Sycamore Avenue,0.4801 +737,362147,196 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Middle,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,80.0,C - 69 to 80,80.0,BB126AS,100010357617.0,196 Sycamore Avenue,0.4801 +842,362151,198 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Top,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB126AS,100010357619.0,198 Sycamore Avenue,0.4801 +937,252282,200 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Top,Domestic EPC Required,EPC Present,14 Jul 2016,D - 55 to 68,58.0,D - 55 to 68,67.0,BB126AS,100010357621.0,"200, Sycamore Avenue",0.4801 +1047,226983,202 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Middle,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,79.0,C - 69 to 80,79.0,BB126AS,100010357623.0,202 Sycamore Avenue,0.4801 +1161,40699,204 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Bottom,Domestic EPC Required,EPC Present,15 Nov 2008,C - 69 to 80,75.0,C - 69 to 80,80.0,BB126AS,100010357625.0,"204, Sycamore Avenue",0.4801 +1271,89043,206 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Bottom,Domestic EPC Required,EPC Present,27 Oct 2009,C - 69 to 80,69.0,C - 69 to 80,80.0,BB126AS,100010357627.0,"206, Sycamore Avenue",0.4801 +8264,111315,166 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Feb 2011,D - 55 to 68,64.0,C - 69 to 80,73.0,BB126AS,100010357590.0,"166, Sycamore Avenue",0.4801 +8950,244955,178 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Nov 2015,D - 55 to 68,57.0,C - 69 to 80,77.0,BB126AS,100010357602.0,"178, Sycamore Avenue",0.4801 +9174,112180,182 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,House: End Terrace,Domestic EPC Required,EPC Present,13 May 2011,D - 55 to 68,56.0,D - 55 to 68,61.0,BB126AS,100010357606.0,"182, Sycamore Avenue",0.4801 +9465,359735,187 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Apr 2023,D - 55 to 68,63.0,C - 69 to 80,76.0,BB126AS,100010357610.0,187 Sycamore Avenue,0.4801 +11685,237961,210 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Top,Domestic EPC Required,EPC Present,16 Nov 2021,C - 69 to 80,71.0,C - 69 to 80,76.0,BB126AS,100010357631.0,210 Sycamore Avenue,0.4801 +443,362134,31 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: End Terrace,Domestic EPC Required,EPC Present,24 Jun 2022,C - 69 to 80,74.0,B - 81 to 91,89.0,BB115JX,100010359246.0,31 Venice Avenue,0.4652 +544,40664,33 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115JX,100010359248.0,33 Venice Avenue,0.4652 +591,40667,34 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,61.0,C - 69 to 80,71.0,BB115JX,100010359249.0,"34, Venice Avenue",0.4652 +744,40673,37 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Jan 2024,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115JX,100010359252.0,37 Venice Avenue,0.4652 +843,111156,39 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Jul 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB115JX,100010359254.0,39 Venice Avenue,0.4652 +889,362155,40 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115JX,100010359255.0,40 Venice Avenue,0.4652 +993,208551,42 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2025,D - 55 to 68,57.0,C - 69 to 80,77.0,BB115JX,100010359257.0,42 Venice Avenue,0.4652 +1110,40697,44 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115JX,100010359259.0,44 Venice Avenue,0.4652 +1434,229678,50 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Oct 2014,D - 55 to 68,64.0,B - 81 to 91,82.0,BB115JX,100010359265.0,"50, Venice Avenue",0.4652 +1545,76865,52 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Jul 2024,C - 69 to 80,74.0,B - 81 to 91,89.0,BB115JX,100010359267.0,52 Venice Avenue,0.4652 +7966,362623,1 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115JX,100010359218.0,1 Venice Avenue,0.4596 +8164,76864,5 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Jul 2021,C - 69 to 80,71.0,B - 81 to 91,89.0,BB115JX,100010359220.0,5 VENICE AVENUE,0.4596 +8262,362639,7 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115JX,100010359222.0,7 Venice Avenue,0.4596 +8367,110753,9 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Oct 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115JX,100010359224.0,9 Venice Avenue,0.4596 +8413,110760,10 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Sep 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB115JX,100010359225.0,10 Venice Avenue,0.4652 +8473,90143,11 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,81.0,BB115JX,100010359226.0,11 Venice Avenue,0.4652 +8523,241367,12 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Dec 2025,D - 55 to 68,64.0,C - 69 to 80,77.0,BB115JX,100010359227.0,12 Venice Avenue,0.4652 +8593,362659,13 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115JX,100010359228.0,13 Venice Avenue,0.4652 +8715,362669,15 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115JX,100010359230.0,15 Venice Avenue,0.4652 +8767,362674,16 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115JX,100010359231.0,16 Venice Avenue,0.4652 +8833,362676,17 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115JX,100010359232.0,17 Venice Avenue,0.4652 +8890,103763,18 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115JX,100010359233.0,18 Venice Avenue,0.4652 +8947,110823,19 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115JX,100010359234.0,19 Venice Avenue,0.4652 +9056,362691,21 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: End Terrace,Domestic EPC Required,EPC Present,04 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115JX,100010359236.0,21 Venice Avenue,0.4652 +9109,226300,22 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Nov 2025,C - 69 to 80,72.0,B - 81 to 91,84.0,BB115JX,100010359237.0,22 Venice Avenue,0.4652 +9407,197129,27 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2026,C - 69 to 80,75.0,B - 81 to 91,89.0,BB115JX,100010359242.0,"27, Venice Avenue",0.4652 +9459,76901,28 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Mar 2022,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115JX,100010359243.0,28 Venice Avenue,0.4652 +12805,324260,48 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,65.0,C - 69 to 80,75.0,BB115JX,100010359263.0,"48, Venice Avenue",0.4652 +447,248672,231 Brunshaw Road Burnley Lancashire BB10 4DW,,, BB10 4DW,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Apr 2016,D - 55 to 68,64.0,B - 81 to 91,91.0,BB104DW,100010331575.0,"231, Brunshaw Road",0.4705 +9295,248669,225 Brunshaw Road Burnley Lancashire BB10 4DW,,, BB10 4DW,Bungalow: End Terr,Domestic EPC Required,EPC Present,17 Dec 2025,C - 69 to 80,69.0,C - 69 to 80,77.0,BB104DW,100010331572.0,225 Brunshaw Road,0.4705 +9409,248670,227 Brunshaw Road Burnley Lancashire BB10 4DW,,, BB10 4DW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Sep 2021,C - 69 to 80,69.0,A - 92 Plus,92.0,BB104DW,100010331573.0,227 Brunshaw Road,0.4705 +9520,248671,229 Brunshaw Road Burnley Lancashire BB10 4DW,,, BB10 4DW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Apr 2016,D - 55 to 68,66.0,A - 92 Plus,92.0,BB104DW,100010331574.0,"229, Brunshaw Road",0.4705 +449,236213,40 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,28 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104AX,10003780147.0,40 Anne Close,0.4471 +497,194020,41 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,07 Jul 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104AX,10003780119.0,41 Anne Close,0.4471 +551,322688,42 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,23 Sep 2019,C - 69 to 80,78.0,C - 69 to 80,80.0,BB104AX,10003780148.0,"42, Anne Close",0.4471 +598,205802,43 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,28 Oct 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB104AX,10003780120.0,43 Anne Close,0.4471 +649,76759,44 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,05 Aug 2009,B - 81 to 91,81.0,B - 81 to 91,84.0,BB104AX,10003780149.0,"44, Anne Close",0.4471 +696,40672,45 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB104AX,10003780121.0,45 Anne Close,0.4471 +799,187730,47 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,27 Oct 2025,C - 69 to 80,76.0,C - 69 to 80,78.0,BB104AX,10003780122.0,47 Anne Close,0.4471 +848,322692,48 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,23 Sep 2019,C - 69 to 80,77.0,C - 69 to 80,78.0,BB104AX,10003780151.0,"48, Anne Close",0.4471 +897,235519,49 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,27 Oct 2025,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104AX,10003780123.0,49 Anne Close,0.4471 +946,322691,50 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,23 Sep 2019,C - 69 to 80,76.0,C - 69 to 80,79.0,BB104AX,10003780152.0,"50, Anne Close",0.4471 +1056,323196,52 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,01 Oct 2019,C - 69 to 80,75.0,C - 69 to 80,79.0,BB104AX,10003780153.0,"52, Anne Close",0.4471 +1167,190795,54 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,25 Oct 2012,C - 69 to 80,75.0,C - 69 to 80,79.0,BB104AX,10003780154.0,"54, Anne Close",0.4471 +1225,236529,55 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,27 Oct 2025,C - 69 to 80,75.0,C - 69 to 80,75.0,BB104AX,10003780126.0,55 Anne Close,0.4471 +1275,136667,56 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,21 Feb 2012,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104AX,10003780155.0,"56, Anne Close",0.4471 +1336,181488,57 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,28 Oct 2025,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104AX,10003780127.0,57 Anne Close,0.4471 +1381,362180,58 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,25 Sep 2019,C - 69 to 80,76.0,C - 69 to 80,79.0,BB104AX,10003780156.0,"58, Anne Close",0.4471 +1492,197120,60 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,05 Oct 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB104AX,10003780157.0,60 Anne Close,0.4471 +1549,245314,61 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,15 Dec 2015,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104AX,10003780129.0,"61, Anne Close",0.4471 +1599,89048,62 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,08 Jun 2021,C - 69 to 80,77.0,C - 69 to 80,79.0,BB104AX,10003780158.0,62 ANNE CLOSE,0.4471 +1702,223041,64 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,29 Oct 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104AX,10003780159.0,64 Anne Close,0.4471 +7545,197130,2 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,73.0,BB104AX,10003780130.0,2 Anne Close,0.4401 +7650,107911,4 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,03 Mar 2011,B - 81 to 91,81.0,B - 81 to 91,84.0,BB104AX,10003780131.0,"4, Anne Close",0.4401 +7758,41006,6 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,04 Sep 2024,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104AX,10003780132.0,6 Anne Close,0.4401 +7809,322653,7 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,77.0,C - 69 to 80,80.0,BB104AX,10003780104.0,"7, Anne Close",0.4401 +7867,114098,8 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104AX,10003780133.0,8 Anne Close,0.4401 +7971,250425,10 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,24 May 2016,C - 69 to 80,73.0,C - 69 to 80,78.0,BB104AX,10003780134.0,"10, Anne Close",0.4471 +8068,322645,12 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,78.0,C - 69 to 80,80.0,BB104AX,10003780135.0,"12, Anne Close",0.4471 +8169,137011,14 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,05 Nov 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104AX,10003780136.0,14 Anne Close,0.4471 +8268,322709,16 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,25 Sep 2019,C - 69 to 80,75.0,C - 69 to 80,79.0,BB104AX,10003781962.0,"16, Anne Close",0.4471 +8370,102915,18 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,18 May 2023,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104AX,10003780181.0,18 Anne Close,0.4471 +8480,322648,20 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,78.0,C - 69 to 80,80.0,BB104AX,10003780137.0,"20, Anne Close",0.4471 +8534,362656,21 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB104AX,10003780110.0,21 Anne Close,0.4471 +8601,191034,22 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,23 Jun 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB104AX,10003780138.0,22 Anne Close,0.4471 +8656,88997,23 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,75.0,BB104AX,10003780111.0,23 Anne Close,0.4471 +8721,112962,24 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,75.0,BB104AX,10003780139.0,24 Anne Close,0.4471 +8840,41050,26 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,73.0,B - 81 to 91,75.0,BB104AX,10003780140.0,26 Anne Close,0.4471 +8895,220608,27 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,74.0,BB104AX,10003781963.0,27 Anne Close,0.4471 +8953,41056,28 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,75.0,BB104AX,10003780141.0,28 Anne Close,0.4471 +9005,322689,29 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,23 Sep 2019,C - 69 to 80,79.0,C - 69 to 80,79.0,BB104AX,10003780113.0,"29, Anne Close",0.4471 +9064,41061,30 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,80.0,BB104AX,10003780142.0,30 Anne Close,0.4471 +9120,90201,31 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,08 Jul 2023,C - 69 to 80,73.0,C - 69 to 80,75.0,BB104AX,10003780114.0,31 Anne Close,0.4471 +9184,225151,32 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,10 Dec 2025,C - 69 to 80,71.0,C - 69 to 80,71.0,BB104AX,10003780143.0,32 Anne Close,0.4471 +9240,223040,33 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,75.0,C - 69 to 80,76.0,BB104AX,10003780115.0,33 Anne Close,0.4471 +9302,322650,34 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,78.0,C - 69 to 80,80.0,BB104AX,10003780144.0,"34, Anne Close",0.4471 +9359,322649,35 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,77.0,C - 69 to 80,80.0,BB104AX,10003780116.0,"35, Anne Close",0.4471 +9472,322651,37 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,76.0,C - 69 to 80,79.0,BB104AX,10003780117.0,"37, Anne Close",0.4471 +9526,94888,38 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,03 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,75.0,BB104AX,10003780146.0,38 Anne Close,0.4471 +9571,41080,39 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,05 Nov 2025,C - 69 to 80,77.0,B - 81 to 91,78.0,BB104AX,10003780118.0,39 Anne Close,0.4471 +13760,360113,17 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,76.0,C - 69 to 80,79.0,BB104AX,10003780108.0,"17, Anne Close",0.4471 +456,101656,39 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: End Terr,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB104NL,10003780948.0,39 Stoneyhurst Avenue,0.4886 +558,105761,41 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB104NL,10003780949.0,41 Stoneyhurst Avenue,0.4886 +660,126395,43 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: End Terr,Domestic EPC Required,EPC Present,14 Dec 2011,D - 55 to 68,56.0,D - 55 to 68,61.0,BB104NL,10003780950.0,"43, Stoneyhurst Avenue",0.4886 +758,241675,45 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Sep 2015,D - 55 to 68,65.0,B - 81 to 91,85.0,BB104NL,10003780951.0,"45, Stoneyhurst Avenue",0.4886 +855,40677,47 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Jan 2024,C - 69 to 80,71.0,B - 81 to 91,91.0,BB104NL,10003780952.0,47 Stoneyhurst Avenue,0.4886 +954,248952,49 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,80.0,BB104NL,10003780953.0,49 Stoneyhurst Avenue,0.4886 +1064,232674,51 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Nov 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB104NL,10003780954.0,51 Stoneyhurst Avenue,0.4886 +1172,111261,53 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Nov 2025,D - 55 to 68,68.0,C - 69 to 80,77.0,BB104NL,10003780955.0,53 Stoneyhurst Avenue,0.4886 +1394,323334,57 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,71.0,B - 81 to 91,90.0,BB104NL,10003780957.0,"57, Stoneyhurst Avenue",0.4886 +1555,323327,60 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104NL,10003780962.0,"60, Stoneyhurst Avenue",0.4886 +1765,323328,64 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Top,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104NL,10003780964.0,"64, Stoneyhurst Avenue",0.4886 +1879,253480,66 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Top,Domestic EPC Required,EPC Present,19 Sep 2016,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104NL,10003780965.0,"66, Stoneyhurst Avenue",0.4886 +1978,198890,68 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,02 Feb 2026,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104NL,10003780966.0,"68, Stoneyhurst Avenue",0.4886 +2078,191033,70 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,06 Feb 2023,C - 69 to 80,73.0,C - 69 to 80,75.0,BB104NL,10003780967.0,70 Stoneyhurst Avenue,0.4886 +2174,323326,72 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Top,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104NL,10003780968.0,"72, Stoneyhurst Avenue",0.4886 +2273,90135,74 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Top,Domestic EPC Required,EPC Present,29 Jan 2010,B - 81 to 91,81.0,B - 81 to 91,82.0,BB104NL,10003780969.0,"74, Stoneyhurst Avenue",0.4886 +2368,244458,76 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,26 Nov 2015,C - 69 to 80,71.0,C - 69 to 80,78.0,BB104NL,10003780970.0,"76, Stoneyhurst Avenue",0.4886 +2570,190797,80 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Top,Domestic EPC Required,EPC Present,26 Oct 2012,C - 69 to 80,74.0,C - 69 to 80,75.0,BB104NL,10003780972.0,"80, Stoneyhurst Avenue",0.4886 +2670,323333,82 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Top,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,74.0,C - 69 to 80,75.0,BB104NL,10003780973.0,"82, Stoneyhurst Avenue",0.4886 +2766,116226,84 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,03 Aug 2011,C - 69 to 80,70.0,C - 69 to 80,73.0,BB104NL,10003780974.0,"84, Stoneyhurst Avenue",0.4886 +2867,40781,86 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,02 Mar 2026,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104NL,10003780975.0,"86, Stoneyhurst Avenue",0.4886 +2967,323329,88 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Top,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104NL,10003780976.0,"88, Stoneyhurst Avenue",0.4886 +3064,323332,90 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Top,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104NL,10003780977.0,"90, Stoneyhurst Avenue",0.4886 +3159,95849,92 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,02 Jun 2026,D - 55 to 68,64.0,C - 69 to 80,73.0,BB104NL,10003780978.0,"92, Stoneyhurst Avenue",0.4886 +3256,323331,94 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104NL,10003780979.0,"94, Stoneyhurst Avenue",0.4886 +3356,323330,96 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Top,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104NL,10003780980.0,"96, Stoneyhurst Avenue",0.4886 +7550,274694,1 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,House: End Terrace,Domestic EPC Required,EPC Present,12 Jun 2017,D - 55 to 68,67.0,B - 81 to 91,87.0,BB104NL,10003780943.0,"1, Stoneyhurst Avenue",0.4845 +7714,116271,4 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2025,D - 55 to 68,65.0,C - 69 to 80,76.0,BB104NL,10003780958.0,4 Stoneyhurst Avenue,0.4845 +7929,362620,8 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB104NL,10003780959.0,8 Stoneyhurst Avenue,0.4845 +8790,323335,24 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,72.0,B - 81 to 91,85.0,BB104NL,10003780961.0,"24, Stoneyhurst Avenue",0.4886 +13607,355272,55 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Sep 2022,C - 69 to 80,73.0,A - 92 Plus,93.0,BB104NL,10003780956.0,55 Stoneyhurst Avenue,0.4886 +13759,360056,78 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,18 May 2023,C - 69 to 80,72.0,C - 69 to 80,74.0,BB104NL,10003780971.0,78 Stoneyhurst Avenue,0.4886 +13778,368877,62 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,19 Aug 2023,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104NL,10003780963.0,62 Stoneyhurst Avenue,0.4886 +458,271904,12 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Feb 2017,C - 69 to 80,71.0,B - 81 to 91,88.0,BB127EA,100010355109.0,"12, Rutland Place, Padiham",0.6185 +509,104051,13 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Nov 2010,D - 55 to 68,64.0,C - 69 to 80,77.0,BB127EA,100010355110.0,"13, Rutland Place, Padiham",0.6185 +562,104052,14 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Oct 2025,D - 55 to 68,62.0,C - 69 to 80,73.0,BB127EA,100010355111.0,"14 Rutland Place, Padiham",0.6185 +609,362142,15 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: End Terrace,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB127EA,100010355112.0,"15 Rutland Place, Padiham",0.6185 +9024,362686,1 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: End Terrace,Domestic EPC Required,EPC Present,11 Feb 2022,D - 55 to 68,66.0,B - 81 to 91,86.0,BB127EA,100010355098.0,"1 Rutland Place, Padiham",0.6154 +9075,95506,2 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: End Terrace,Domestic EPC Required,EPC Present,06 Feb 2019,D - 55 to 68,60.0,B - 81 to 91,81.0,BB127EA,100010355099.0,"2, Rutland Place, Padiham",0.6154 +9134,90188,3 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Feb 2010,C - 69 to 80,70.0,C - 69 to 80,74.0,BB127EA,100010355100.0,"3, Rutland Place, Padiham",0.6154 +9195,95504,4 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Dec 2010,D - 55 to 68,65.0,C - 69 to 80,77.0,BB127EA,100010355101.0,"4, Rutland Place, Padiham",0.6154 +9251,76884,5 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Aug 2009,C - 69 to 80,70.0,C - 69 to 80,74.0,BB127EA,100010355102.0,"5, Rutland Place, Padiham",0.6154 +9427,362709,8 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: End Terrace,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127EA,100010355105.0,"8 Rutland Place, Padiham",0.6154 +9479,253507,9 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: End Terrace,Domestic EPC Required,EPC Present,22 Sep 2016,C - 69 to 80,71.0,B - 81 to 91,86.0,BB127EA,100010355106.0,"9, Rutland Place, Padiham",0.6154 +9532,204821,10 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: End Terrace,Domestic EPC Required,EPC Present,06 May 2013,D - 55 to 68,65.0,B - 81 to 91,82.0,BB127EA,100010355107.0,"10, Rutland Place, Padiham",0.6185 +9584,250516,11 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Jun 2016,C - 69 to 80,71.0,B - 81 to 91,88.0,BB127EA,100010355108.0,"11, Rutland Place, Padiham",0.6185 +462,110736,8 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Jul 2021,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115LG,100010348046.0,8 MARINE AVENUE,0.4596 +513,110751,9 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Jul 2021,C - 69 to 80,72.0,B - 81 to 91,89.0,BB115LG,100010348047.0,9 MARINE AVENUE,0.4596 +566,110757,10 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,66.0,C - 69 to 80,75.0,BB115LG,100010348048.0,"10, Marine Avenue",0.4652 +614,362144,11 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115LG,100010348049.0,11 Marine Avenue,0.4652 +665,110775,12 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115LG,100010348050.0,12 Marine Avenue,0.4652 +712,125269,13 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Dec 2011,D - 55 to 68,64.0,D - 55 to 68,67.0,BB115LG,100010348051.0,"13, Marine Avenue",0.4652 +764,40674,14 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Sep 2024,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115LG,100010348052.0,14 Marine Avenue,0.4652 +861,76960,16 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jun 2025,C - 69 to 80,72.0,C - 69 to 80,78.0,BB115LG,100010348054.0,16 Marine Avenue,0.4652 +913,102920,17 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Feb 2011,D - 55 to 68,65.0,C - 69 to 80,74.0,BB115LG,100010348055.0,"17, Marine Avenue",0.4652 +965,125270,18 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Jul 2025,C - 69 to 80,70.0,C - 69 to 80,80.0,BB115LG,100010348056.0,18 Marine Avenue,0.4652 +1018,110820,19 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Aug 2011,D - 55 to 68,68.0,D - 55 to 68,68.0,BB115LG,100010348057.0,"19, Marine Avenue",0.4652 +1076,110828,20 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Feb 2011,D - 55 to 68,56.0,C - 69 to 80,74.0,BB115LG,100010348058.0,"20, Marine Avenue",0.4652 +1130,110832,21 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Feb 2022,C - 69 to 80,72.0,B - 81 to 91,89.0,BB115LG,100010348059.0,21 Marine Avenue,0.4652 +1186,228726,22 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Nov 2025,C - 69 to 80,71.0,B - 81 to 91,85.0,BB115LG,100010348060.0,22 Marine Avenue,0.4652 +1238,40701,23 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,64.0,C - 69 to 80,74.0,BB115LG,100010348061.0,"23, Marine Avenue",0.4652 +1295,105926,24 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Jul 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115LG,100010348062.0,24 Marine Avenue,0.4652 +1347,110877,25 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,65.0,C - 69 to 80,75.0,BB115LG,100010348063.0,"25, Marine Avenue",0.4652 +1402,105081,26 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: End Terrace,Domestic EPC Required,EPC Present,24 Dec 2010,D - 55 to 68,63.0,C - 69 to 80,76.0,BB115LG,100010348064.0,"26, Marine Avenue",0.4652 +1454,250072,27 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,12 May 2016,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115LG,100010348065.0,"27, Marine Avenue",0.4652 +1510,110886,28 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LG,100010348066.0,28 Marine Avenue,0.4652 +1563,40724,29 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Nov 2025,D - 55 to 68,66.0,B - 81 to 91,81.0,BB115LG,100010348067.0,29 Marine Avenue,0.4652 +1669,110903,31 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,67.0,C - 69 to 80,74.0,BB115LG,100010348069.0,"31, Marine Avenue",0.4652 +1775,302202,33 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jan 2019,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115LG,100010348071.0,"33, Marine Avenue",0.4652 +1830,110921,34 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Dec 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115LG,100010348072.0,34 Marine Avenue,0.4652 +1885,208552,35 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Jul 2013,D - 55 to 68,68.0,B - 81 to 91,87.0,BB115LG,100010348073.0,"35, Marine Avenue",0.4652 +2189,76809,41 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115LG,100010348076.0,41 Marine Avenue,0.4652 +2285,107638,43 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: End Terrace,Domestic EPC Required,EPC Present,22 Feb 2011,D - 55 to 68,66.0,C - 69 to 80,70.0,BB115LG,100010348077.0,"43, Marine Avenue",0.4652 +9255,41067,1 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Jun 2021,C - 69 to 80,72.0,B - 81 to 91,89.0,BB115LG,100010348039.0,1 MARINE AVENUE,0.4596 +9316,41074,2 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115LG,100010348040.0,2 Marine Avenue,0.4596 +9372,41076,3 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,70.0,B - 81 to 91,87.0,BB115LG,100010348041.0,3 Marine Avenue,0.4596 +9432,110670,4 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jun 2024,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115LG,100010348042.0,4 Marine Avenue,0.4596 +9483,110677,5 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Dec 2010,D - 55 to 68,62.0,C - 69 to 80,75.0,BB115LG,100010348043.0,"5, Marine Avenue",0.4596 +9537,107646,6 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,64.0,C - 69 to 80,72.0,BB115LG,100010348044.0,"6, Marine Avenue",0.4596 +9587,362715,7 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115LG,100010348045.0,7 Marine Avenue,0.4596 +9703,250555,37 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: End Terrace,Domestic EPC Required,EPC Present,08 Jun 2016,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115LG,100010348074.0,"37, Marine Avenue",0.4652 +3812,362333,2 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: End Terrace,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB128TD,100010361482.0,"2 Wordsworth Avenue, Padiham",0.6268 +3910,95007,4 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,71.0,B - 81 to 91,86.0,BB128TD,100010361484.0,"4, Wordsworth Avenue, Padiham",0.6268 +4018,220697,6 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Dec 2013,C - 69 to 80,71.0,B - 81 to 91,87.0,BB128TD,100010361486.0,"6, Wordsworth Avenue, Padiham",0.6268 +4073,362345,7 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB128TD,100010361487.0,"7 Wordsworth Avenue, Padiham",0.6268 +4124,362351,8 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB128TD,100010361488.0,"8 Wordsworth Avenue, Padiham",0.6268 +4181,362355,9 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB128TD,100010361489.0,"9 Wordsworth Avenue, Padiham",0.6268 +4295,223070,11 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: End Terrace,Domestic EPC Required,EPC Present,02 Apr 2014,C - 69 to 80,69.0,B - 81 to 91,85.0,BB128TD,100010361491.0,"11, Wordsworth Avenue, Padiham",0.6293 +4900,99552,22 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Sep 2010,C - 69 to 80,72.0,C - 69 to 80,74.0,BB128TD,100010361502.0,"22, Wordsworth Avenue, Padiham",0.6293 +5192,362415,28 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB128TD,100010361506.0,"28 Wordsworth Avenue, Padiham",0.6293 +13565,352243,12 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: End Terrace,Domestic EPC Required,EPC Present,03 Aug 2021,D - 55 to 68,62.0,B - 81 to 91,82.0,BB128TD,100010361492.0,"12 WORDSWORTH AVENUE, PADIHAM",0.6293 +3848,69675,169 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Jul 2009,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104NQ,100010331394.0,"169, Brunshaw Avenue",0.4801 +3944,252271,171 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Jul 2016,C - 69 to 80,72.0,B - 81 to 91,89.0,BB104NQ,100010331396.0,"171, Brunshaw Avenue",0.4801 +4054,267810,173 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: End Terrace,Domestic EPC Required,EPC Present,08 Nov 2016,D - 55 to 68,64.0,B - 81 to 91,83.0,BB104NQ,100010331398.0,"173, Brunshaw Avenue",0.4801 +4842,362396,187 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: End Terrace,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB104NQ,100010331411.0,187 Brunshaw Avenue,0.4801 +4887,362397,188 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,74.0,B - 81 to 91,87.0,BB104NQ,100010331412.0,188 Brunshaw Avenue,0.4801 +4927,101314,189 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Oct 2010,C - 69 to 80,75.0,C - 69 to 80,79.0,BB104NQ,100010331413.0,"189, Brunshaw Avenue",0.4801 +5399,247945,198 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Mar 2016,D - 55 to 68,68.0,B - 81 to 91,91.0,BB104NQ,100010331421.0,"198, Brunshaw Avenue",0.4801 +5717,112887,204 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Jul 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB104NQ,100010331427.0,204 Brunshaw Avenue,0.4801 +5860,323676,207 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Oct 2019,C - 69 to 80,74.0,B - 81 to 91,88.0,BB104NQ,100010331430.0,"207, Brunshaw Avenue",0.4801 +6139,362489,213 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB104NQ,100010331435.0,213 Brunshaw Avenue,0.4801 +6274,250502,216 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Jun 2016,D - 55 to 68,67.0,B - 81 to 91,89.0,BB104NQ,100010331438.0,"216, Brunshaw Avenue",0.4801 +6366,323677,218 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: End Terrace,Domestic EPC Required,EPC Present,16 Oct 2019,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104NQ,100010331440.0,"218, Brunshaw Avenue",0.4801 +6418,323686,219 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Oct 2019,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104NQ,100010331441.0,"219, Brunshaw Avenue",0.4801 +6667,323678,224 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: End Terrace,Domestic EPC Required,EPC Present,16 Oct 2019,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104NQ,100010331446.0,"224, Brunshaw Avenue",0.4801 +6963,362553,230 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB104NQ,100010331451.0,230 Brunshaw Avenue,0.4801 +7161,187321,234 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Feb 2026,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104NQ,100010331455.0,"234, Brunshaw Avenue",0.4801 +3927,193904,2 Verona Avenue Burnley Lancashire BB11 5LP,,, BB11 5LP,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2025,D - 55 to 68,68.0,B - 81 to 91,82.0,BB115LP,100010359307.0,2 Verona Avenue,0.4596 +3953,362339,55 Barry Street Burnley Lancashire BB12 6DU,,, BB12 6DU,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB126DU,100010328419.0,55 Barry Street,0.4596 +4170,362353,59 Barry Street Burnley Lancashire BB12 6DU,,, BB12 6DU,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB126DU,100010328421.0,59 Barry Street,0.4596 +5029,188283,75 Barry Street Burnley Lancashire BB12 6DU,,, BB12 6DU,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Sep 2012,D - 55 to 68,65.0,B - 81 to 91,83.0,BB126DU,100010328429.0,"75, Barry Street",0.4596 +5132,94853,77 Barry Street Burnley Lancashire BB12 6DU,,, BB12 6DU,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Mar 2010,D - 55 to 68,66.0,C - 69 to 80,71.0,BB126DU,100010328430.0,"77, Barry Street",0.4596 +3958,362340,2 Berridge Avenue Burnley Lancashire BB12 6AW,,, BB12 6AW,House: End Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB126AW,100010328992.0,2 Berridge Avenue,0.4705 +4066,358893,4 Berridge Avenue Burnley Lancashire BB12 6AW,,, BB12 6AW,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Dec 2025,C - 69 to 80,73.0,B - 81 to 91,83.0,BB126AW,100010328993.0,4 Berridge Avenue,0.4705 +4413,144002,10 Berridge Avenue Burnley Lancashire BB12 6AW,,, BB12 6AW,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Apr 2012,C - 69 to 80,69.0,B - 81 to 91,88.0,BB126AW,100010328996.0,"10, Berridge Avenue",0.4754 +4529,362377,12 Berridge Avenue Burnley Lancashire BB12 6AW,,, BB12 6AW,House: End Terrace,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB126AW,100010328997.0,12 Berridge Avenue,0.4754 +4854,222017,18 Berridge Avenue Burnley Lancashire BB12 6AW,,, BB12 6AW,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,66.0,C - 69 to 80,72.0,BB126AW,100010329000.0,18 Berridge Avenue,0.4754 +5036,89039,22 Berridge Avenue Burnley Lancashire BB12 6AW,,, BB12 6AW,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Oct 2009,C - 69 to 80,72.0,C - 69 to 80,73.0,BB126AW,100010329002.0,"22, Berridge Avenue",0.4754 +3970,40833,2 Mitton Grove Burnley Lancashire BB10 4NY,,, BB10 4NY,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Feb 2026,D - 55 to 68,68.0,B - 81 to 91,82.0,BB104NY,100010349146.0,"2, Mitton Grove",0.4536 +4080,324691,4 Mitton Grove Burnley Lancashire BB10 4NY,,, BB10 4NY,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2019,C - 69 to 80,73.0,B - 81 to 91,89.0,BB104NY,100010349148.0,"4, Mitton Grove",0.4536 +4185,324690,6 Mitton Grove Burnley Lancashire BB10 4NY,,, BB10 4NY,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2019,C - 69 to 80,74.0,B - 81 to 91,89.0,BB104NY,100010349150.0,"6, Mitton Grove",0.4536 +4300,324689,8 Mitton Grove Burnley Lancashire BB10 4NY,,, BB10 4NY,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2019,C - 69 to 80,73.0,B - 81 to 91,89.0,BB104NY,100010349152.0,"8, Mitton Grove",0.4536 +3987,359933,1 Griffin Close Burnley Lancashire BB11 5SD,,, BB11 5SD,Bungalow: End Terr,Domestic EPC Required,EPC Present,12 May 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB115SD,100010340647.0,1 Griffin Close,0.4596 +4095,244963,3 Griffin Close Burnley Lancashire BB11 5SD,,, BB11 5SD,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,71.0,C - 69 to 80,79.0,BB115SD,100010340648.0,3 Griffin Close,0.4596 +4202,40843,5 Griffin Close Burnley Lancashire BB11 5SD,,, BB11 5SD,Flat: Bottom,Domestic EPC Required,EPC Present,02 Mar 2009,C - 69 to 80,78.0,C - 69 to 80,80.0,BB115SD,100012537825.0,"5, Griffin Close",0.4596 +4312,362363,7 Griffin Close Burnley Lancashire BB11 5SD,,, BB11 5SD,Flat: Top,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB115SD,100012537826.0,7 Griffin Close,0.4596 +4433,362373,9 Griffin Close Burnley Lancashire BB11 5SD,,, BB11 5SD,Flat: Top,Domestic EPC Required,EPC Present,27 Apr 2022,C - 69 to 80,75.0,C - 69 to 80,78.0,BB115SD,100012537827.0,9 Griffin Close,0.4596 +12996,341706,11 Griffin Close Burnley Lancashire BB11 5SD,,, BB11 5SD,Flat: Bottom,Domestic EPC Required,EPC Present,07 Oct 2021,C - 69 to 80,73.0,C - 69 to 80,76.0,BB115SD,100012537824.0,11 Griffin Close,0.4652 +3990,300665,23 Lennox Street Worsthorne Burnley Lancashire BB10 3LY,,, BB10 3LY,House: End Terrace,Domestic EPC Required,EPC Present,14 Aug 2018,D - 55 to 68,57.0,B - 81 to 91,85.0,BB103LY,100010345882.0,"23, Lennox Street, Worsthorne",0.5555 +4014,240376,12 Bruce Street Burnley Lancashire BB11 4BL,,, BB11 4BL,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Aug 2015,D - 55 to 68,67.0,B - 81 to 91,89.0,BB114BL,100010331239.0,"12, Bruce Street",0.4596 +4228,362358,16 Bruce Street Burnley Lancashire BB11 4BL,,, BB11 4BL,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Jul 2023,D - 55 to 68,66.0,B - 81 to 91,84.0,BB114BL,100010331241.0,16 Bruce Street,0.4596 +4025,362343,32 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB128NP,100010339473.0,"32 Garden Street, Padiham",0.6185 +4130,204090,34 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jun 2025,C - 69 to 80,69.0,C - 69 to 80,76.0,BB128NP,100010339475.0,"34 Garden Street, Padiham",0.6185 +4237,225155,36 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,15 May 2014,C - 69 to 80,70.0,B - 81 to 91,87.0,BB128NP,100010339477.0,"36, Garden Street, Padiham",0.6185 +4360,226567,38 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Jul 2014,D - 55 to 68,66.0,B - 81 to 91,88.0,BB128NP,100010339479.0,"38, Garden Street, Padiham",0.6185 +4474,186374,40 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Jan 2026,D - 55 to 68,68.0,B - 81 to 91,83.0,BB128NP,100010339481.0,"40 Garden Street, Padiham",0.6185 +4593,40865,42 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2020,D - 55 to 68,66.0,C - 69 to 80,74.0,BB128NP,100010339483.0,"42 Garden Street, Padiham",0.6185 +4712,201436,44 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Apr 2013,C - 69 to 80,70.0,B - 81 to 91,88.0,BB128NP,100010339485.0,"44, Garden Street, Padiham",0.6185 +4905,362400,48 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB128NP,100010339489.0,"48 Garden Street, Padiham",0.6185 +4998,77014,50 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Oct 2009,D - 55 to 68,65.0,C - 69 to 80,70.0,BB128NP,100010339491.0,"50, Garden Street, Padiham",0.6185 +5095,76998,52 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Jan 2026,C - 69 to 80,69.0,C - 69 to 80,77.0,BB128NP,100010339493.0,"52 Garden Street, Padiham",0.6185 +5201,362416,54 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB128NP,100010339495.0,"54 Garden Street, Padiham",0.6185 +5260,210915,55 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: End Terrace,Domestic EPC Required,EPC Present,12 Sep 2013,D - 55 to 68,65.0,B - 81 to 91,83.0,BB128NP,100010339496.0,"55, Garden Street, Padiham",0.6185 +5312,40898,56 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Jan 2026,D - 55 to 68,61.0,B - 81 to 91,85.0,BB128NP,100010339497.0,"56 Garden Street, Padiham",0.6185 +5421,224364,58 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,06 May 2014,C - 69 to 80,70.0,B - 81 to 91,86.0,BB128NP,100010339499.0,"58, Garden Street, Padiham",0.6185 +5478,226568,59 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jul 2014,C - 69 to 80,70.0,B - 81 to 91,88.0,BB128NP,100010339500.0,"59, Garden Street, Padiham",0.6185 +5527,118888,60 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Nov 2025,C - 69 to 80,69.0,C - 69 to 80,76.0,BB128NP,100010339501.0,"60 Garden Street, Padiham",0.6185 +5629,338857,62 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Jun 2021,D - 55 to 68,59.0,B - 81 to 91,86.0,BB128NP,100010339503.0,"62 GARDEN STREET, PADIHAM",0.6185 +5686,211777,63 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Oct 2013,D - 55 to 68,58.0,C - 69 to 80,80.0,BB128NP,100010339504.0,"63, Garden Street, Padiham",0.6185 +5735,362456,64 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB128NP,100010339505.0,"64 Garden Street, Padiham",0.6185 +5789,40920,65 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Mar 2009,D - 55 to 68,56.0,C - 69 to 80,69.0,BB128NP,100010339506.0,"65, Garden Street, Padiham",0.6185 +5884,272782,67 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Mar 2017,D - 55 to 68,59.0,B - 81 to 91,84.0,BB128NP,100010339508.0,"67, Garden Street, Padiham",0.6185 +10983,111052,13 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: End Terrace,Domestic EPC Required,EPC Present,30 Nov 2009,E - 39 to 54,45.0,D - 55 to 68,60.0,BB128NP,200002826961.0,"13, Garden Street, Padiham",0.6185 +4026,250085,8 Turton Grove Burnley Lancashire BB10 4PZ,,, BB10 4PZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 May 2016,D - 55 to 68,68.0,B - 81 to 91,88.0,BB104PZ,100010359052.0,"8, Turton Grove",0.4536 +4240,250086,12 Turton Grove Burnley Lancashire BB10 4PZ,,, BB10 4PZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 May 2016,D - 55 to 68,68.0,B - 81 to 91,88.0,BB104PZ,100010359054.0,"12, Turton Grove",0.4596 +4027,324248,35 Slaidburn Avenue Burnley Lancashire BB10 4NZ,,, BB10 4NZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Nov 2019,D - 55 to 68,59.0,C - 69 to 80,75.0,BB104NZ,100010355981.0,"35, Slaidburn Avenue",0.4801 +4243,324249,39 Slaidburn Avenue Burnley Lancashire BB10 4NZ,,, BB10 4NZ,House: End Terrace,Domestic EPC Required,EPC Present,26 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB104NZ,100010355985.0,39 Slaidburn Avenue,0.4801 +4366,210254,41 Slaidburn Avenue Burnley Lancashire BB10 4NZ,,, BB10 4NZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Aug 2013,C - 69 to 80,73.0,B - 81 to 91,89.0,BB104NZ,100010355987.0,"41, Slaidburn Avenue",0.4801 +4484,323770,43 Slaidburn Avenue Burnley Lancashire BB10 4NZ,,, BB10 4NZ,House: End Terrace,Domestic EPC Required,EPC Present,07 Nov 2019,C - 69 to 80,71.0,B - 81 to 91,85.0,BB104NZ,100010355989.0,"43, Slaidburn Avenue",0.4801 +5050,324250,54 Slaidburn Avenue Burnley Lancashire BB10 4NZ,,, BB10 4NZ,House: End Terrace,Domestic EPC Required,EPC Present,11 Nov 2019,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104NZ,100010355998.0,"54, Slaidburn Avenue",0.4801 +5206,322646,57 Slaidburn Avenue Burnley Lancashire BB10 4NZ,,, BB10 4NZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,70.0,B - 81 to 91,89.0,BB104NZ,100010356001.0,"57, Slaidburn Avenue",0.4801 +4040,194690,7 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Jan 2013,D - 55 to 68,57.0,B - 81 to 91,84.0,BB126AA,100010348737.0,"7, Middlesex Avenue",0.4754 +4096,362346,8 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB126AA,100010348738.0,8 Middlesex Avenue,0.4754 +4258,226305,11 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: End Terrace,Domestic EPC Required,EPC Present,23 Jun 2014,D - 55 to 68,61.0,B - 81 to 91,87.0,BB126AA,100010348741.0,"11, Middlesex Avenue",0.4801 +4316,362364,12 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB126AA,100010348742.0,12 Middlesex Avenue,0.4801 +4374,362367,13 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB126AA,100010348743.0,13 Middlesex Avenue,0.4801 +4438,90193,14 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Feb 2010,D - 55 to 68,55.0,C - 69 to 80,71.0,BB126AA,100010348744.0,14 Middlesex Avenue,0.4801 +4670,222898,18 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Mar 2014,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126AA,100010348748.0,"18, Middlesex Avenue",0.4801 +4915,362401,23 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB126AA,100010348753.0,23 Middlesex Avenue,0.4801 +5011,222810,25 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Feb 2014,D - 55 to 68,63.0,B - 81 to 91,86.0,BB126AA,100010348755.0,"25, Middlesex Avenue",0.4801 +5217,362418,29 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB126AA,100010348759.0,29 Middlesex Avenue,0.4801 +5275,362423,30 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,88.0,BB126AA,100010348760.0,30 Middlesex Avenue,0.4801 +5490,116276,34 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Aug 2011,D - 55 to 68,60.0,C - 69 to 80,71.0,BB126AA,100010348764.0,"34, Middlesex Avenue",0.4801 +5900,103137,42 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Oct 2017,D - 55 to 68,59.0,B - 81 to 91,84.0,BB126AA,100010348771.0,"42, Middlesex Avenue",0.4801 +6079,272779,46 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2017,D - 55 to 68,58.0,B - 81 to 91,84.0,BB126AA,100010348773.0,"46, Middlesex Avenue",0.4801 +4092,193907,4 Peebles Grove Burnley Lancashire BB11 4ES,,, BB11 4ES,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Jan 2026,D - 55 to 68,63.0,C - 69 to 80,78.0,BB114ES,100010351821.0,4 Peebles Grove,0.4596 +4137,360353,4 Russell Terrace Padiham Lancashire BB12 7HB,,, BB12 7HB,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jun 2023,D - 55 to 68,60.0,C - 69 to 80,79.0,BB127HB,10003759595.0,"4 Russell Terrace, Padiham",0.6214 +6023,247058,40 Russell Terrace Padiham Lancashire BB12 7HB,,, BB12 7HB,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Mar 2016,D - 55 to 68,62.0,B - 81 to 91,86.0,BB127HB,10003759596.0,"40, Russell Terrace, Padiham",0.6242 +4176,197124,2 Colin Street Burnley Lancashire BB11 4BN,,, BB11 4BN,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Oct 2025,D - 55 to 68,63.0,B - 81 to 91,83.0,BB114BN,100010335316.0,2 Colin Street,0.4536 +4291,243006,4 Colin Street Burnley Lancashire BB11 4BN,,, BB11 4BN,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Oct 2015,D - 55 to 68,61.0,B - 81 to 91,86.0,BB114BN,100010335318.0,"4, Colin Street",0.4536 +4750,362392,12 Colin Street Burnley Lancashire BB11 4BN,,, BB11 4BN,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB114BN,100010335322.0,12 Colin Street,0.4596 +4851,359927,14 Colin Street Burnley Lancashire BB11 4BN,,, BB11 4BN,House: Semi-Detached,Domestic EPC Required,EPC Present,05 May 2023,D - 55 to 68,67.0,B - 81 to 91,82.0,BB114BN,100010335323.0,14 Colin Street,0.4596 +5134,342011,20 Colin Street Burnley Lancashire BB11 4BN,,, BB11 4BN,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Oct 2021,D - 55 to 68,63.0,B - 81 to 91,86.0,BB114BN,100010335326.0,20 Colin Street,0.4596 +4205,232689,1 Tennyson Avenue Padiham Lancashire BB12 8TE,,, BB12 8TE,House: End Terrace,Domestic EPC Required,EPC Present,18 Feb 2015,D - 55 to 68,63.0,B - 81 to 91,86.0,BB128TE,100010357946.0,"1, Tennyson Avenue, Padiham",0.6214 +4263,227755,2 Tennyson Avenue Padiham Lancashire BB12 8TE,,, BB12 8TE,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Aug 2014,D - 55 to 68,68.0,B - 81 to 91,85.0,BB128TE,100010357947.0,"2, Tennyson Avenue, Padiham",0.6214 +4558,40860,7 Tennyson Avenue Padiham Lancashire BB12 8TE,,, BB12 8TE,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,71.0,B - 81 to 91,86.0,BB128TE,100010357951.0,"7, Tennyson Avenue, Padiham",0.6214 +4676,362387,9 Tennyson Avenue Padiham Lancashire BB12 8TE,,, BB12 8TE,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2022,D - 55 to 68,66.0,B - 81 to 91,88.0,BB128TE,100010357952.0,"9 Tennyson Avenue, Padiham",0.6214 +4970,343113,15 Tennyson Avenue Padiham Lancashire BB12 8TE,,, BB12 8TE,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2021,D - 55 to 68,68.0,B - 81 to 91,89.0,BB128TE,100010357955.0,"15 Tennyson Avenue, Padiham",0.6242 +5060,362406,17 Tennyson Avenue Padiham Lancashire BB12 8TE,,, BB12 8TE,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB128TE,100010357956.0,"17 Tennyson Avenue, Padiham",0.6242 +13549,362891,5 Tennyson Avenue Padiham Lancashire BB12 8TE,,, BB12 8TE,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jun 2022,D - 55 to 68,59.0,C - 69 to 80,77.0,BB128TE,100010357950.0,"5 Tennyson Avenue, Padiham",0.6214 +4232,252173,1 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Top,Domestic EPC Required,EPC Present,14 Nov 2013,E - 39 to 54,49.0,C - 69 to 80,71.0,BB104LF,10003758895.0,"1, Wycoller Avenue",0.4705 +4287,192369,2 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Top,Domestic EPC Required,EPC Present,30 Nov 2012,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104LF,10003758905.0,"2, Wycoller Avenue",0.4705 +4341,89282,3 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Bottom,Domestic EPC Required,EPC Present,17 May 2021,C - 69 to 80,71.0,C - 69 to 80,76.0,BB104LF,10003758912.0,"3 WYCOLLER AVENUE, BURNLEY",0.6214 +4528,289895,6 Wycoller Avenue burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Bottom,Domestic EPC Required,EPC Present,21 Jul 2017,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104LF,10003758943.0,"6, Wycoller Avenue",0.4705 +4582,245845,7 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Top,Domestic EPC Required,EPC Present,02 Dec 2015,D - 55 to 68,66.0,C - 69 to 80,77.0,BB104LF,10003758954.0,"7, Wycoller Avenue",0.4705 +4642,95016,8 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Top,Domestic EPC Required,EPC Present,28 Jan 2026,C - 69 to 80,71.0,C - 69 to 80,76.0,BB104LF,10003758960.0,8 Wycoller Avenue,0.4705 +4697,362389,9 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Top,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104LF,10003758966.0,9 Wycoller Avenue,0.4705 +4751,108844,10 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Nov 2025,D - 55 to 68,67.0,B - 81 to 91,84.0,BB104LF,10003758896.0,10 Wycoller Avenue,0.4754 +4798,118275,11 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Bottom,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104LF,10003758898.0,11 Wycoller Avenue,0.4754 +4897,323690,13 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Bottom,Domestic EPC Required,EPC Present,17 Oct 2019,D - 55 to 68,67.0,C - 69 to 80,76.0,BB104LF,10003758900.0,13 Wycoller Avenue,0.4754 +5035,324374,16 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,73.0,B - 81 to 91,87.0,BB104LF,10003758902.0,"16, Wycoller Avenue",0.4754 +6011,40931,35 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Nov 2025,D - 55 to 68,61.0,C - 69 to 80,74.0,BB104LF,10003758918.0,35 Wycoller Avenue,0.4754 +6062,252214,36 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Apr 2010,D - 55 to 68,59.0,C - 69 to 80,72.0,BB104LF,10003758973.0,"36, Wycoller Avenue",0.4754 +6284,234409,41 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2015,D - 55 to 68,59.0,B - 81 to 91,86.0,BB104LF,10003758923.0,"41, Wycoller Avenue",0.4754 +6334,324375,42 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2019,D - 55 to 68,67.0,B - 81 to 91,86.0,BB104LF,10003758924.0,"42, Wycoller Avenue",0.4754 +6536,232314,46 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Jul 2025,C - 69 to 80,70.0,B - 81 to 91,81.0,BB104LF,10003758928.0,46 Wycoller Avenue,0.4754 +6876,211781,53 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: End Terrace,Domestic EPC Required,EPC Present,23 Oct 2013,D - 55 to 68,55.0,B - 81 to 91,83.0,BB104LF,10003758936.0,"53, Wycoller Avenue",0.4754 +6927,40966,54 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2026,D - 55 to 68,58.0,C - 69 to 80,77.0,BB104LF,10003758937.0,54 Wycoller Avenue,0.4754 +7028,98120,56 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Dec 2010,D - 55 to 68,62.0,D - 55 to 68,62.0,BB104LF,10003758939.0,"56, Wycoller Avenue",0.4754 +7371,324376,63 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104LF,10003758947.0,"63, Wycoller Avenue",0.4754 +7511,248689,66 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Apr 2016,D - 55 to 68,59.0,B - 81 to 91,84.0,BB104LF,10003758950.0,"66, Wycoller Avenue",0.4754 +7558,324377,67 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,72.0,B - 81 to 91,86.0,BB104LF,10003758951.0,"67, Wycoller Avenue",0.4754 +7612,324378,68 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: End Terrace,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,70.0,B - 81 to 91,85.0,BB104LF,,, +7723,324379,70 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: End Terrace,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,71.0,B - 81 to 91,86.0,BB104LF,10003758955.0,"70, Wycoller Avenue",0.4754 +7831,41014,72 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Mar 2026,D - 55 to 68,60.0,C - 69 to 80,79.0,BB104LF,10003758956.0,"72, Wycoller Avenue",0.4754 +8034,324380,76 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: End Terrace,Domestic EPC Required,EPC Present,14 Nov 2019,D - 55 to 68,68.0,B - 81 to 91,87.0,BB104LF,10003758958.0,"76, Wycoller Avenue",0.4754 +8237,180890,80 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Jun 2012,D - 55 to 68,65.0,B - 81 to 91,86.0,BB104LF,10003758961.0,"80, Wycoller Avenue",0.4754 +8441,190989,84 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Dec 2024,C - 69 to 80,73.0,B - 81 to 91,87.0,BB104LF,10003758963.0,84 Wycoller Avenue,0.4754 +9141,324382,96 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,72.0,B - 81 to 91,86.0,BB104LF,10003758974.0,"96, Wycoller Avenue",0.4754 +9374,324381,100 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104LF,10003758897.0,"100, Wycoller Avenue",0.4801 +9730,90140,4 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Bottom,Domestic EPC Required,EPC Present,31 May 2023,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104LF,10003758921.0,4 Wycoller Avenue,0.4705 +12978,329170,5 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Bottom,Domestic EPC Required,EPC Present,16 Sep 2011,D - 55 to 68,63.0,C - 69 to 80,72.0,BB104LF,10003758932.0,"5, Wycoller Avenue",0.4705 +4236,362360,3 Albion Terrace Burnley Lancashire BB11 4QE,,, BB11 4QE,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 May 2024,D - 55 to 68,59.0,C - 69 to 80,72.0,BB114QE,10003781410.0,3 Albion Terrace,0.4652 +4309,295832,2 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Feb 2018,C - 69 to 80,74.0,B - 81 to 91,89.0,BB120JS,100010328511.0,"2, Beachley Square",0.4705 +4368,295829,3 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Feb 2018,C - 69 to 80,74.0,B - 81 to 91,90.0,BB120JS,100010328512.0,"3, Beachley Square",0.4705 +4769,163898,10 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,House: End Terrace,Domestic EPC Required,EPC Present,24 Apr 2012,D - 55 to 68,62.0,C - 69 to 80,80.0,BB120JS,100010328519.0,"10, Beachley Square",0.4754 +4818,205795,11 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Jun 2013,C - 69 to 80,70.0,B - 81 to 91,84.0,BB120JS,100010328520.0,"11, Beachley Square",0.4754 +5005,40885,15 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,House: End Terrace,Domestic EPC Required,EPC Present,19 Jun 2009,D - 55 to 68,60.0,D - 55 to 68,62.0,BB120JS,100010328524.0,"15, Beachley Square",0.4754 +5052,245743,16 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,Bungalow: End Terr,Domestic EPC Required,EPC Present,31 Oct 2025,B - 81 to 91,86.0,B - 81 to 91,88.0,BB120JS,100010328525.0,16 Beachley Square,0.4754 +5101,362409,17 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,27 Jun 2022,C - 69 to 80,72.0,A - 92 Plus,92.0,BB120JS,100010328526.0,17 Beachley Square,0.4754 +5157,245819,18 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,10 Nov 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB120JS,100010328527.0,"18, Beachley Square",0.4754 +5210,295834,19 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Feb 2018,C - 69 to 80,71.0,B - 81 to 91,91.0,BB120JS,100010328528.0,"19, Beachley Square",0.4754 +5270,95223,20 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,Bungalow: End Terr,Domestic EPC Required,EPC Present,12 May 2010,D - 55 to 68,68.0,C - 69 to 80,72.0,BB120JS,100010328529.0,"20, Beachley Square",0.4754 +5324,295835,21 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Feb 2018,C - 69 to 80,70.0,B - 81 to 91,89.0,BB120JS,100010328530.0,"21, Beachley Square",0.4754 +5382,295830,22 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,06 Feb 2018,C - 69 to 80,72.0,A - 92 Plus,92.0,BB120JS,100010328531.0,"22, Beachley Square",0.4754 +5432,295831,23 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,Bungalow: End Terr,Domestic EPC Required,EPC Present,06 Feb 2018,C - 69 to 80,70.0,B - 81 to 91,90.0,BB120JS,100010328532.0,"23, Beachley Square",0.4754 +4315,252180,4 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,69.0,C - 69 to 80,76.0,BB103HD,100010338904.0,4 Fleetwood Road,0.4652 +4437,221647,6 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB103HD,100010338906.0,6 Fleetwood Road,0.4652 +4666,247011,10 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,75.0,B - 81 to 91,88.0,BB103HD,100010338910.0,"10, Fleetwood Road",0.4705 +4873,40879,14 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Jun 2009,D - 55 to 68,66.0,C - 69 to 80,71.0,BB103HD,100010338914.0,"14, Fleetwood Road",0.4705 +5055,246390,18 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Feb 2016,C - 69 to 80,75.0,B - 81 to 91,89.0,BB103HD,100010338917.0,"18, Fleetwood Road",0.4705 +5159,252179,20 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jul 2013,D - 55 to 68,59.0,C - 69 to 80,72.0,BB103HD,100010338919.0,"20, Fleetwood Road",0.4705 +5216,40895,21 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,Flat: Bottom,Domestic EPC Required,EPC Present,22 Jun 2021,C - 69 to 80,71.0,C - 69 to 80,76.0,BB103HD,100010338920.0,21 FLEETWOOD ROAD,0.4705 +5330,295080,23 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,Flat: Bottom,Domestic EPC Required,EPC Present,25 Oct 2017,C - 69 to 80,71.0,C - 69 to 80,75.0,BB103HD,100010338922.0,"23, Fleetwood Road",0.4705 +5434,252263,25 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,Flat: Top,Domestic EPC Required,EPC Present,07 Jul 2016,C - 69 to 80,74.0,C - 69 to 80,77.0,BB103HD,100010338924.0,"25, Fleetwood Road",0.4705 +9635,251530,22 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Jun 2016,C - 69 to 80,74.0,B - 81 to 91,83.0,BB103HD,,, +9674,251532,24 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Jun 2016,C - 69 to 80,74.0,B - 81 to 91,83.0,BB103HD,,, +13590,353080,19 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,Flat: Top,Domestic EPC Required,EPC Present,30 Aug 2022,C - 69 to 80,73.0,C - 69 to 80,73.0,BB103HD,100010338918.0,19 Fleetwood Road,0.4705 +4318,101564,1 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,15 Aug 2024,C - 69 to 80,75.0,C - 69 to 80,77.0,BB113AU,100010356307.0,1 Springfield Bank,0.4754 +4382,204088,2 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,79.0,C - 69 to 80,79.0,BB113AU,100010356308.0,2 Springfield Bank,0.4754 +4442,111259,3 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,77.0,BB113AU,100010356309.0,3 Springfield Bank,0.4754 +4498,252191,4 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,79.0,C - 69 to 80,79.0,BB113AU,100010356310.0,4 Springfield Bank,0.4754 +4563,269455,5 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jan 2017,C - 69 to 80,74.0,C - 69 to 80,78.0,BB113AU,100010356311.0,"5, Springfield Bank",0.4754 +4619,40867,6 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,09 Apr 2009,D - 55 to 68,66.0,C - 69 to 80,74.0,BB113AU,100010356312.0,"6, Springfield Bank",0.4754 +4673,269457,7 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,19 Jan 2017,C - 69 to 80,75.0,C - 69 to 80,78.0,BB113AU,100010356313.0,"7, Springfield Bank",0.4754 +4730,328284,8 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,79.0,C - 69 to 80,79.0,BB113AU,100010356314.0,"8, Springfield Bank",0.4754 +4780,112183,9 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,09 Nov 2021,C - 69 to 80,76.0,C - 69 to 80,79.0,BB113AU,100010356315.0,9 Springfield Bank,0.4754 +4834,252167,10 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,10 Jun 2011,D - 55 to 68,64.0,C - 69 to 80,70.0,BB113AU,100010356316.0,"10, Springfield Bank",0.4801 +4882,121797,11 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,75.0,BB113AU,100010356317.0,11 Springfield Bank,0.4801 +4923,220700,12 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,05 Dec 2013,C - 69 to 80,76.0,C - 69 to 80,77.0,BB113AU,100010356318.0,"12, Springfield Bank",0.4801 +4971,328069,13 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113AU,100010356319.0,"13, Springfield Bank",0.4801 +5017,328285,14 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113AU,100010356320.0,"14, Springfield Bank",0.4801 +5064,76955,15 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,06 Feb 2026,C - 69 to 80,76.0,C - 69 to 80,78.0,BB113AU,100010356321.0,"15, Springfield Bank",0.4801 +5113,105394,16 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,06 Feb 2026,C - 69 to 80,79.0,C - 69 to 80,79.0,BB113AU,100010356322.0,"16, Springfield Bank",0.4801 +5167,224899,17 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,76.0,C - 69 to 80,78.0,BB113AU,100010356323.0,17 Springfield Bank,0.4801 +5224,118384,18 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,05 Jul 2022,C - 69 to 80,79.0,C - 69 to 80,79.0,BB113AU,100010356324.0,18 Springfield Bank,0.4801 +5276,207690,19 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113AU,100010356325.0,19 Springfield Bank,0.4801 +5335,192464,20 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,15 Aug 2024,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113AU,100010356326.0,20 Springfield Bank,0.4801 +5393,163896,21 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113AU,100010356327.0,21 Springfield Bank,0.4801 +5498,40909,23 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,13 Jun 2023,C - 69 to 80,76.0,C - 69 to 80,78.0,BB113AU,100010356329.0,"23, Springfield Bank",0.4801 +5545,328286,24 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,77.0,C - 69 to 80,79.0,BB113AU,100010356330.0,"24, Springfield Bank",0.4801 +5596,252190,25 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,10 Jun 2011,D - 55 to 68,61.0,D - 55 to 68,67.0,BB113AU,100010356331.0,"25, Springfield Bank",0.4801 +5647,245099,26 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,07 Dec 2015,C - 69 to 80,77.0,C - 69 to 80,78.0,BB113AU,100010356332.0,"26, Springfield Bank",0.4801 +5706,136675,27 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,18 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,76.0,BB113AU,100010356333.0,27 Springfield Bank,0.4801 +5753,252192,28 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,77.0,C - 69 to 80,77.0,BB113AU,100010356334.0,28 Springfield Bank,0.4801 +5807,197608,29 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,10 Dec 2025,C - 69 to 80,75.0,C - 69 to 80,78.0,BB113AU,100010356335.0,29 Springfield Bank,0.4801 +5853,328287,30 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113AU,100010356336.0,"30, Springfield Bank",0.4801 +5950,90289,32 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,17 Oct 2024,C - 69 to 80,80.0,B - 81 to 91,81.0,BB113AU,100010356338.0,32 Springfield Bank,0.4801 +5995,328288,33 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,77.0,C - 69 to 80,78.0,BB113AU,100010356339.0,"33, Springfield Bank",0.4801 +6038,362479,34 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,11 Oct 2022,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113AU,100010356340.0,34 Springfield Bank,0.4801 +6082,328289,35 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113AU,100010356341.0,"35, Springfield Bank",0.4801 +6132,229669,36 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,30 Oct 2014,C - 69 to 80,75.0,C - 69 to 80,78.0,BB113AU,100010356342.0,"36, Springfield Bank",0.4801 +6176,183762,37 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,03 Aug 2012,C - 69 to 80,76.0,C - 69 to 80,78.0,BB113AU,100010356343.0,"37, Springfield Bank",0.4801 +6220,181846,38 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,17 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,80.0,BB113AU,100010356344.0,38 Springfield Bank,0.4801 +6264,98126,39 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,77.0,C - 69 to 80,77.0,BB113AU,100010356345.0,39 Springfield Bank,0.4801 +6311,229120,40 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,08 Oct 2014,C - 69 to 80,74.0,C - 69 to 80,79.0,BB113AU,100010356346.0,"40, Springfield Bank",0.4801 +6360,328290,41 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,79.0,C - 69 to 80,79.0,BB113AU,100010356347.0,"41, Springfield Bank",0.4801 +6407,40950,42 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,77.0,BB113AU,100010356348.0,42 Springfield Bank,0.4801 +6661,118348,47 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,25 Aug 2011,D - 55 to 68,68.0,C - 69 to 80,71.0,BB113AU,100010356349.0,"47, Springfield Bank",0.4801 +6707,328291,48 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,77.0,C - 69 to 80,78.0,BB113AU,100010356350.0,"48, Springfield Bank",0.4801 +6763,180013,49 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,17 May 2012,C - 69 to 80,72.0,C - 69 to 80,76.0,BB113AU,100010356351.0,49 Springfield Bank,0.4801 +6807,241364,50 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,18 Nov 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB113AU,100010356352.0,50 Springfield Bank,0.4801 +6858,194693,51 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,11 Jan 2013,C - 69 to 80,76.0,C - 69 to 80,79.0,BB113AU,100010356353.0,"51, Springfield Bank",0.4801 +6904,328292,52 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,77.0,C - 69 to 80,78.0,BB113AU,100010356354.0,"52, Springfield Bank",0.4801 +6955,252168,53 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,09 Aug 2024,C - 69 to 80,76.0,C - 69 to 80,77.0,BB113AU,100010356355.0,53 Springfield Bank,0.4801 +7004,71531,54 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,18 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113AU,100010356356.0,54 Springfield Bank,0.4801 +7055,221668,55 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,70.0,C - 69 to 80,70.0,BB113AU,100010356357.0,"55, Springfield Bank",0.4801 +7103,90293,56 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113AU,100010356358.0,56 Springfield Bank,0.4801 +7152,328293,57 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,79.0,C - 69 to 80,79.0,BB113AU,100010356359.0,"57, Springfield Bank",0.4801 +7205,221669,58 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,76.0,BB113AU,100010356360.0,58 Springfield Bank,0.4801 +12512,298713,22 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,13 Dec 2016,C - 69 to 80,76.0,C - 69 to 80,79.0,BB113AU,100010356328.0,"22, Springfield Bank",0.4801 +13368,342544,31 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,18 Nov 2025,C - 69 to 80,77.0,C - 69 to 80,79.0,BB113AU,100010356337.0,31 Springfield Bank,0.4801 +4351,116774,1 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,64.0,D - 55 to 68,68.0,BB115DW,100010343329.0,"1, Holmestrand Avenue",0.4845 +4471,109794,3 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,64.0,C - 69 to 80,69.0,BB115DW,100010343331.0,"3, Holmestrand Avenue",0.4845 +4591,116776,5 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,65.0,C - 69 to 80,69.0,BB115DW,100010343333.0,"5, Holmestrand Avenue",0.4845 +4653,116777,6 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,62.0,D - 55 to 68,66.0,BB115DW,100010343334.0,"6, Holmestrand Avenue",0.4845 +4758,106919,8 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,62.0,D - 55 to 68,66.0,BB115DW,100010343336.0,"8, Holmestrand Avenue",0.4845 +4858,116778,10 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,62.0,D - 55 to 68,66.0,BB115DW,100010343338.0,"10, Holmestrand Avenue",0.4886 +4946,116780,12 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,63.0,D - 55 to 68,66.0,BB115DW,100010343340.0,"12, Holmestrand Avenue",0.4886 +4992,116781,13 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,63.0,D - 55 to 68,66.0,BB115DW,100010343341.0,"13, Holmestrand Avenue",0.4886 +5040,116782,14 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,12 Sep 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB115DW,100010343342.0,14 Holmestrand Avenue,0.4886 +5091,116783,15 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,27 Sep 2024,D - 55 to 68,67.0,B - 81 to 91,84.0,BB115DW,100010343343.0,15 Holmestrand Avenue,0.4886 +5142,116784,16 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,66.0,D - 55 to 68,68.0,BB115DW,100010343344.0,"16, Holmestrand Avenue",0.4886 +5193,116785,17 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,61.0,D - 55 to 68,66.0,BB115DW,100010343345.0,"17, Holmestrand Avenue",0.4886 +5253,116786,18 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,60.0,D - 55 to 68,66.0,BB115DW,100010343346.0,"18, Holmestrand Avenue",0.4886 +5417,40903,21 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,15 May 2025,C - 69 to 80,69.0,B - 81 to 91,85.0,BB115DW,100010343349.0,21 Holmestrand Avenue,0.4886 +5470,104057,22 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,11 Mar 2022,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115DW,100010343350.0,22 Holmestrand Avenue,0.4886 +5519,116787,23 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,65.0,D - 55 to 68,68.0,BB115DW,100010343351.0,"23, Holmestrand Avenue",0.4886 +5621,116788,25 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,60.0,D - 55 to 68,66.0,BB115DW,100010343353.0,"25, Holmestrand Avenue",0.4886 +5680,116789,26 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,65.0,D - 55 to 68,68.0,BB115DW,100010343354.0,"26, Holmestrand Avenue",0.4886 +5782,116790,28 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,65.0,D - 55 to 68,68.0,BB115DW,100010343355.0,"28, Holmestrand Avenue",0.4886 +5878,116791,30 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,65.0,D - 55 to 68,68.0,BB115DW,100010343357.0,"30, Holmestrand Avenue",0.4886 +6012,116792,33 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,62.0,D - 55 to 68,68.0,BB115DW,100010343359.0,"33, Holmestrand Avenue",0.4886 +6104,97640,35 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,65.0,D - 55 to 68,68.0,BB115DW,100010343360.0,"35, Holmestrand Avenue",0.4886 +6196,116793,37 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,65.0,C - 69 to 80,69.0,BB115DW,100010343361.0,"37, Holmestrand Avenue",0.4886 +6288,116794,39 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,68.0,C - 69 to 80,71.0,BB115DW,100010343362.0,"39, Holmestrand Avenue",0.4886 +11671,237658,11 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,11 Jun 2015,C - 69 to 80,74.0,B - 81 to 91,85.0,BB115DW,100010343339.0,"11, Holmestrand Avenue",0.4886 +4399,98981,21 Kingfisher Bank Burnley Lancashire BB11 5RU,,, BB11 5RU,House: End Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,73.0,B - 81 to 91,85.0,BB115RU,10003782029.0,21 Kingfisher Bank,0.4754 +4448,194527,22 Kingfisher Bank Burnley Lancashire BB11 5RU,,, BB11 5RU,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,88.0,BB115RU,10003782030.0,22 Kingfisher Bank,0.4754 +4511,112761,23 Kingfisher Bank Burnley Lancashire BB11 5RU,,, BB11 5RU,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Nov 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115RU,10003782031.0,23 Kingfisher Bank,0.4754 +4569,40863,24 Kingfisher Bank Burnley Lancashire BB11 5RU,,, BB11 5RU,House: End Terrace,Domestic EPC Required,EPC Present,19 Jul 2018,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115RU,10003782032.0,"24, Kingfisher Bank",0.4754 +4629,232824,25 Kingfisher Bank Burnley Lancashire BB11 5RU,,, BB11 5RU,House: End Terrace,Domestic EPC Required,EPC Present,12 Mar 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB115RU,10003782033.0,25 Kingfisher Bank,0.4754 +4740,90059,27 Kingfisher Bank Burnley Lancashire BB11 5RU,,, BB11 5RU,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jan 2026,C - 69 to 80,72.0,B - 81 to 91,84.0,BB115RU,10003782035.0,27 Kingfisher Bank,0.4754 +4548,194949,136 Abel Street Burnley Lancashire BB10 1QB,,, BB10 1QB,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Dec 2012,C - 69 to 80,70.0,B - 81 to 91,86.0,BB101QB,100010326412.0,"136, Abel Street",0.4596 +4624,108982,2 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Jul 2025,C - 69 to 80,69.0,C - 69 to 80,77.0,BB115JG,100010338703.0,2 Fenwick Street,0.4652 +4681,179920,3 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Dec 2025,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115JG,100010338704.0,3 Fenwick Street,0.4652 +4735,110668,4 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Sep 2025,C - 69 to 80,70.0,C - 69 to 80,79.0,BB115JG,100010338705.0,4 Fenwick Street,0.4652 +4783,189870,5 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Dec 2025,C - 69 to 80,70.0,B - 81 to 91,84.0,BB115JG,100010338706.0,5 Fenwick Street,0.4652 +4838,101652,6 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,13 Oct 2010,D - 55 to 68,57.0,D - 55 to 68,68.0,BB115JG,100010338707.0,"6, Fenwick Street",0.4652 +4883,76845,7 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Feb 2026,C - 69 to 80,75.0,B - 81 to 91,81.0,BB115JG,100010338708.0,"7, Fenwick Street",0.4652 +4925,99549,8 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Sep 2025,C - 69 to 80,70.0,C - 69 to 80,79.0,BB115JG,100010338709.0,8 Fenwick Street,0.4652 +4972,250438,9 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Jun 2016,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115JG,100010338710.0,"9, Fenwick Street",0.4652 +5018,180750,10 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,08 Jun 2012,D - 55 to 68,67.0,B - 81 to 91,88.0,BB115JG,100010338711.0,"10, Fenwick Street",0.4705 +5067,237175,11 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Feb 2026,C - 69 to 80,76.0,B - 81 to 91,82.0,BB115JG,100010338712.0,"11, Fenwick Street",0.4705 +5118,40893,12 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Dec 2024,D - 55 to 68,67.0,B - 81 to 91,89.0,BB115JG,100010338713.0,12 Fenwick Street,0.4705 +5171,89062,13 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Oct 2009,E - 39 to 54,53.0,C - 69 to 80,69.0,BB115JG,100010338714.0,"13, Fenwick Street",0.4705 +5227,225868,14 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,31 Jul 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB115JG,100010338715.0,14 Fenwick Street,0.4705 +5284,97186,15 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Sep 2021,C - 69 to 80,71.0,B - 81 to 91,88.0,BB115JG,100010338716.0,15 Fenwick Street,0.4705 +5339,97188,16 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Dec 2025,D - 55 to 68,62.0,B - 81 to 91,81.0,BB115JG,100010338717.0,16 Fenwick Street,0.4705 +5396,110802,17 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Jan 2011,E - 39 to 54,49.0,C - 69 to 80,73.0,BB115JG,100010338718.0,"17, Fenwick Street",0.4705 +5446,362437,18 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,90.0,BB115JG,100010338719.0,18 Fenwick Street,0.4705 +5598,362445,21 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,90.0,BB115JG,100010338722.0,21 Fenwick Street,0.4705 +5710,115842,23 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,28 Nov 2025,D - 55 to 68,61.0,C - 69 to 80,71.0,BB115JG,100010338724.0,23 Fenwick Street,0.4705 +5757,362458,24 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115JG,100010338725.0,24 Fenwick Street,0.4705 +5808,221646,25 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,05 Nov 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB115JG,100010338726.0,25 Fenwick Street,0.4705 +5857,136666,26 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Jul 2024,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115JG,100010338727.0,26 Fenwick Street,0.4705 +5906,105146,27 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,16 Dec 2010,D - 55 to 68,58.0,C - 69 to 80,69.0,BB115JG,100010338728.0,"27, Fenwick Street",0.4705 +5951,182483,28 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Jul 2012,C - 69 to 80,69.0,B - 81 to 91,85.0,BB115JG,100010338729.0,"28, Fenwick Street",0.4705 +5997,110888,29 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,07 Aug 2024,C - 69 to 80,69.0,B - 81 to 91,90.0,BB115JG,100010338730.0,29 Fenwick Street,0.4705 +6043,362480,30 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115JG,100010338731.0,30 Fenwick Street,0.4705 +6090,191097,31 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,19 Jan 2026,D - 55 to 68,65.0,C - 69 to 80,75.0,BB115JG,100010338732.0,31 Fenwick Street,0.4705 +6133,362487,32 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115JG,100010338733.0,32 Fenwick Street,0.4705 +6178,110917,33 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Sep 2025,C - 69 to 80,70.0,C - 69 to 80,79.0,BB115JG,100010338734.0,33 Fenwick Street,0.4705 +6221,252188,34 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Jun 2011,E - 39 to 54,50.0,C - 69 to 80,70.0,BB115JG,100010338735.0,"34, Fenwick Street",0.4705 +6270,110923,35 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Dec 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115JG,100010338736.0,35 Fenwick Street,0.4705 +6315,89434,36 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Jun 2025,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115JG,100010338737.0,36 Fenwick Street,0.4705 +6362,295099,37 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,28 Nov 2025,D - 55 to 68,65.0,C - 69 to 80,74.0,BB115JG,100010338738.0,37 Fenwick Street,0.4705 +6459,362518,39 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,90.0,BB115JG,100010338740.0,39 Fenwick Street,0.4705 +6511,111157,40 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Jun 2025,C - 69 to 80,69.0,B - 81 to 91,90.0,BB115JG,100010338741.0,40 Fenwick Street,0.4705 +6610,111162,42 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Sep 2025,C - 69 to 80,71.0,C - 69 to 80,79.0,BB115JG,100010338743.0,42 Fenwick Street,0.4705 +6711,111169,44 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Sep 2025,C - 69 to 80,70.0,C - 69 to 80,79.0,BB115JG,100010338745.0,44 Fenwick Street,0.4705 +6766,240297,45 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Aug 2015,C - 69 to 80,69.0,B - 81 to 91,85.0,BB115JG,100010338746.0,"45, Fenwick Street",0.4705 +6810,111176,46 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,26 Jun 2025,C - 69 to 80,69.0,C - 69 to 80,77.0,BB115JG,100010338747.0,46 Fenwick Street,0.4705 +6907,271935,48 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,16 Feb 2017,D - 55 to 68,66.0,B - 81 to 91,87.0,BB115JG,100010338749.0,"48, Fenwick Street",0.4705 +6959,362552,49 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115JG,100010338750.0,49 Fenwick Street,0.4705 +7058,179915,51 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,14 May 2012,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115JG,100010338751.0,"51, Fenwick Street",0.4705 +7354,136925,57 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Sep 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115JG,100010338754.0,57 Fenwick Street,0.4705 +7451,111199,59 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,18 May 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115JG,100010338755.0,59 Fenwick Street,0.4705 +7542,362596,61 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115JG,100010338756.0,61 Fenwick Street,0.4705 +7651,362603,63 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115JG,100010338757.0,63 Fenwick Street,0.4705 +7756,221835,65 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Jul 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115JG,100010338758.0,65 Fenwick Street,0.4705 +7972,234693,69 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Nov 2025,C - 69 to 80,70.0,B - 81 to 91,83.0,BB115JG,100010338760.0,69 Fenwick Street,0.4705 +13358,357210,19 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jan 2022,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115JG,100010338720.0,19 Fenwick Street,0.4705 +4644,40870,282 Accrington Road Burnley Lancashire BB11 5EU,,, BB11 5EU,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Dec 2010,D - 55 to 68,68.0,C - 69 to 80,69.0,BB115EU,100010326598.0,"282, Accrington Road",0.4801 +4665,76850,86 Brunswick Street Burnley Lancashire BB11 3LT,,, BB11 3LT,House: End Terrace,Domestic EPC Required,EPC Present,17 Aug 2009,D - 55 to 68,56.0,D - 55 to 68,58.0,BB113LT,100010331858.0,"86, Brunswick Street",0.4801 +4709,210879,4 Chingford Bank Burnley Lancashire BB10 2RN,,, BB10 2RN,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Aug 2013,D - 55 to 68,66.0,C - 69 to 80,80.0,BB102RN,100010333708.0,"4, Chingford Bank",0.4652 +4759,325353,5 Chingford Bank Burnley Lancashire BB10 2RN,,, BB10 2RN,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2019,C - 69 to 80,73.0,B - 81 to 91,88.0,BB102RN,100010333709.0,"5, Chingford Bank",0.4652 +4861,76812,7 Chingford Bank Burnley Lancashire BB10 2RN,,, BB10 2RN,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Oct 2025,C - 69 to 80,75.0,B - 81 to 91,81.0,BB102RN,100010333711.0,7 Chingford Bank,0.4652 +5093,199713,12 Chingford Bank Burnley Lancashire BB10 2RN,,, BB10 2RN,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Oct 2025,C - 69 to 80,73.0,B - 81 to 91,85.0,BB102RN,100010333716.0,12 Chingford Bank,0.4705 +5258,131105,15 Chingford Bank Burnley Lancashire BB10 2RN,,, BB10 2RN,House: End Terrace,Domestic EPC Required,EPC Present,30 Jan 2026,C - 69 to 80,72.0,C - 69 to 80,78.0,BB102RN,100010333719.0,15 Chingford Bank,0.4705 +5578,110831,21 Chingford Bank Burnley Lancashire BB10 2RN,,, BB10 2RN,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2010,E - 39 to 54,45.0,D - 55 to 68,58.0,BB102RN,100010333725.0,"21, Chingford Bank",0.4705 +4716,138691,165 Rosehill Road Burnley Lancashire BB11 2QX,,, BB11 2QX,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2012,C - 69 to 80,69.0,C - 69 to 80,70.0,BB112QX,100010354546.0,"165, Rosehill Road",0.4705 +5743,340116,185 Rosehill Road Burnley Lancashire BB11 2QX,,, BB11 2QX,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Aug 2021,D - 55 to 68,57.0,B - 81 to 91,85.0,BB112QX,100010354556.0,185 Rosehill Road,0.4705 +5937,210877,189 Rosehill Road Burnley Lancashire BB11 2QX,,, BB11 2QX,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2013,C - 69 to 80,69.0,B - 81 to 91,88.0,BB112QX,100010354558.0,"189, Rosehill Road",0.4705 +6028,275588,191 Rosehill Road Burnley Lancashire BB11 2QX,,, BB11 2QX,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jun 2017,D - 55 to 68,55.0,B - 81 to 91,83.0,BB112QX,100010354559.0,"191, Rosehill Road",0.4705 +6111,362486,193 Rosehill Road Burnley Lancashire BB11 2QX,,, BB11 2QX,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112QX,100010354560.0,193 Rosehill Road,0.4705 +6391,111323,199 Rosehill Road Burnley Lancashire BB11 2QX,,, BB11 2QX,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Dec 2010,D - 55 to 68,61.0,C - 69 to 80,74.0,BB112QX,100010354563.0,"199, Rosehill Road",0.4705 +6597,362526,203 Rosehill Road Burnley Lancashire BB11 2QX,,, BB11 2QX,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112QX,100010354565.0,203 Rosehill Road,0.4705 +6791,197125,207 Rosehill Road Burnley Lancashire BB11 2QX,,, BB11 2QX,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Feb 2013,C - 69 to 80,69.0,B - 81 to 91,86.0,BB112QX,100010354567.0,"207, Rosehill Road",0.4705 +6992,362558,211 Rosehill Road Burnley Lancashire BB11 2QX,,, BB11 2QX,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112QX,100010354569.0,211 Rosehill Road,0.4705 +4833,69661,2 St Stephen Street Burnley Lancashire BB11 3JA,,, BB11 3JA,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,63.0,C - 69 to 80,79.0,BB113JA,10003781742.0,2 St. Stephen Street,0.4961 +4911,275591,4 Reynolds Street Burnley Lancashire BB11 2NJ,,, BB11 2NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jun 2017,D - 55 to 68,61.0,B - 81 to 91,87.0,BB112NJ,100010353772.0,"4, Reynolds Street",0.4705 +4913,210886,28 Booth Court Burnley Lancashire BB10 1NS,,, BB10 1NS,Bungalow: Detached,Domestic EPC Required,EPC Present,01 Apr 2025,D - 55 to 68,67.0,C - 69 to 80,71.0,BB101NS,10003780575.0,28 Booth Court,0.4536 +4959,205800,29 Booth Court Burnley Lancashire BB10 1NS,,, BB10 1NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,16 Jul 2024,C - 69 to 80,69.0,B - 81 to 91,87.0,BB101NS,10003780576.0,29 Booth Court,0.4536 +5004,136672,30 Booth Court Burnley Lancashire BB10 1NS,,, BB10 1NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,28 Feb 2012,D - 55 to 68,65.0,D - 55 to 68,68.0,BB101NS,10003780577.0,"30, Booth Court",0.4536 +5053,245821,31 Booth Court Burnley Lancashire BB10 1NS,,, BB10 1NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,26 Nov 2015,D - 55 to 68,65.0,B - 81 to 91,88.0,BB101NS,,, +5103,111260,32 Booth Court Burnley Lancashire BB10 1NS,,, BB10 1NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,20 Jan 2026,B - 81 to 91,88.0,B - 81 to 91,90.0,BB101NS,10003780579.0,32 Booth Court,0.4536 +5158,252005,33 Booth Court Burnley Lancashire BB10 1NS,,, BB10 1NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,19 Dec 2025,C - 69 to 80,80.0,B - 81 to 91,81.0,BB101NS,10003780580.0,33 Booth Court,0.4536 +5211,119423,34 Booth Court Burnley Lancashire BB10 1NS,,, BB10 1NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,20 Oct 2011,D - 55 to 68,63.0,D - 55 to 68,63.0,BB101NS,10003780581.0,"34, Booth Court",0.4536 +4921,76849,18 Smalley Street Burnley Lancashire BB11 3HH,,, BB11 3HH,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Aug 2009,C - 69 to 80,69.0,C - 69 to 80,70.0,BB113HH,100010356015.0,"18, Smalley Street",0.4705 +13355,357173,24 Smalley Street Burnley Lancashire BB11 3HH,,, BB11 3HH,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Mar 2022,C - 69 to 80,74.0,B - 81 to 91,89.0,BB113HH,100010356018.0,24 Smalley Street,0.4705 +4968,110835,22 Harold Avenue Burnley Lancashire BB11 5JZ,,, BB11 5JZ,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115JZ,100010341353.0,22 Harold Avenue,0.4652 +5061,110876,24 Harold Avenue Burnley Lancashire BB11 5JZ,,, BB11 5JZ,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Dec 2010,D - 55 to 68,60.0,C - 69 to 80,75.0,BB115JZ,100010341354.0,"24, Harold Avenue",0.4652 +5221,40896,27 Harold Avenue Burnley Lancashire BB11 5JZ,,, BB11 5JZ,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Feb 2011,D - 55 to 68,61.0,C - 69 to 80,75.0,BB115JZ,100010341356.0,27 Harold Avenue,0.4652 +5282,362424,28 Harold Avenue Burnley Lancashire BB11 5JZ,,, BB11 5JZ,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115JZ,100010341357.0,28 Harold Avenue,0.4652 +4979,362404,1 Amersham Grove Burnley Lancashire BB10 2RP,,, BB10 2RP,House: End Terrace,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB102RP,10003757992.0,1 Amersham Grove,0.4652 +5292,235640,7 Amersham Grove Burnley Lancashire BB10 2RP,,, BB10 2RP,House: End Terrace,Domestic EPC Required,EPC Present,14 May 2015,D - 55 to 68,64.0,C - 69 to 80,79.0,BB102RP,10003758004.0,"7, Amersham Grove",0.4652 +5351,76996,8 Amersham Grove Burnley Lancashire BB10 2RP,,, BB10 2RP,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Apr 2022,C - 69 to 80,73.0,B - 81 to 91,88.0,BB102RP,10003758003.0,8 Amersham Grove,0.4652 +6190,339076,25 Amersham Grove Burnley Lancashire BB10 2RP,,, BB10 2RP,House: End Terrace,Domestic EPC Required,EPC Present,23 Jun 2021,C - 69 to 80,69.0,B - 81 to 91,88.0,BB102RP,10003757994.0,25 AMERSHAM GROVE,0.4705 +6280,223391,27 Amersham Grove Burnley Lancashire BB10 2RP,,, BB10 2RP,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Apr 2014,D - 55 to 68,68.0,B - 81 to 91,81.0,BB102RP,10003758015.0,"27, Amersham Grove",0.4705 +6326,252245,28 Amersham Grove Burnley Lancashire BB10 2RP,,, BB10 2RP,House: End Terrace,Domestic EPC Required,EPC Present,04 Jul 2016,D - 55 to 68,60.0,C - 69 to 80,80.0,BB102RP,10003758014.0,"28, Amersham Grove",0.4705 +6530,362520,32 Amersham Grove Burnley Lancashire BB10 2RP,,, BB10 2RP,House: End Terrace,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB102RP,10003758010.0,32 Amersham Grove,0.4705 +4986,222435,16 Hambledon Street Padiham Lancashire BB12 8QU,,, BB12 8QU,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Aug 2023,D - 55 to 68,67.0,B - 81 to 91,87.0,BB128QU,100010340912.0,"16 Hambledon Street, Padiham",0.6268 +4996,180748,7 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: End Terrace,Domestic EPC Required,EPC Present,08 Jun 2012,C - 69 to 80,69.0,B - 81 to 91,90.0,BB112NP,100010354900.0,"7, Rossetti Avenue",0.4705 +5044,252181,8 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Nov 2010,D - 55 to 68,62.0,C - 69 to 80,75.0,BB112NP,100010354901.0,8 Rossetti Avenue,0.4705 +5092,227771,9 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: End Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,D - 55 to 68,68.0,B - 81 to 91,86.0,BB112NP,100010354902.0,9 Rossetti Avenue,0.4705 +5199,112760,11 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Jun 2017,D - 55 to 68,64.0,B - 81 to 91,84.0,BB112NP,100010354904.0,"11, Rossetti Avenue",0.4754 +5369,110786,14 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: End Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,C - 69 to 80,70.0,B - 81 to 91,85.0,BB112NP,100010354907.0,14 Rossetti Avenue,0.4754 +5423,208338,15 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: End Terrace,Domestic EPC Required,EPC Present,16 Jul 2013,C - 69 to 80,71.0,B - 81 to 91,87.0,BB112NP,100010354908.0,"15, Rossetti Avenue",0.4754 +5734,40918,21 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: End Terrace,Domestic EPC Required,EPC Present,09 Dec 2008,D - 55 to 68,58.0,C - 69 to 80,73.0,BB112NP,100010354914.0,"21, Rossetti Avenue",0.4754 +6110,110895,29 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: End Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,D - 55 to 68,68.0,B - 81 to 91,86.0,BB112NP,100010354922.0,29 Rossetti Avenue,0.4754 +6341,110922,34 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Dec 2010,D - 55 to 68,61.0,C - 69 to 80,74.0,BB112NP,100010354927.0,34 Rossetti Avenue,0.4754 +6441,250503,36 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: End Terrace,Domestic EPC Required,EPC Present,02 Jun 2016,D - 55 to 68,64.0,B - 81 to 91,82.0,BB112NP,100010354929.0,"36, Rossetti Avenue",0.4754 +6542,187506,38 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jul 2017,D - 55 to 68,65.0,B - 81 to 91,85.0,BB112NP,100010354931.0,"38, Rossetti Avenue",0.4754 +6646,204093,40a Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: Semi-Detached,Domestic EPC Required,EPC Present,15 May 2013,C - 69 to 80,70.0,B - 81 to 91,86.0,BB112NP,100010354933.0,"40a, Rossetti Avenue",0.5309 +5003,99123,6 Reynolds Street Burnley Lancashire BB11 2NL,,, BB11 2NL,House: End Terrace,Domestic EPC Required,EPC Present,16 Dec 2021,D - 55 to 68,65.0,B - 81 to 91,86.0,BB112NL,100010353774.0,6 Reynolds Street,0.4705 +5323,274453,12 Reynolds Street Burnley Lancashire BB11 2NL,,, BB11 2NL,House: End Terrace,Domestic EPC Required,EPC Present,02 Jun 2017,E - 39 to 54,53.0,B - 81 to 91,84.0,BB112NL,100010353780.0,"12, Reynolds Street",0.4754 +5842,362466,22 Reynolds Street Burnley Lancashire BB11 2NL,,, BB11 2NL,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112NL,100010353790.0,22 Reynolds Street,0.4754 +6031,246851,26 Reynolds Street Burnley Lancashire BB11 2NL,,, BB11 2NL,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Feb 2016,D - 55 to 68,68.0,B - 81 to 91,81.0,BB112NL,100010353793.0,"26, Reynolds Street",0.4754 +6209,274451,30 Reynolds Street Burnley Lancashire BB11 2NL,,, BB11 2NL,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jun 2017,D - 55 to 68,56.0,B - 81 to 91,81.0,BB112NL,100010353795.0,"30, Reynolds Street",0.4754 +5009,102256,20 Griffin Close Burnley Lancashire BB11 5SE,,, BB11 5SE,House: End Terrace,Domestic EPC Required,EPC Present,04 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB115SE,100010340654.0,20 Griffin Close,0.4652 +5106,40892,22 Griffin Close Burnley Lancashire BB11 5SE,,, BB11 5SE,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Dec 2025,C - 69 to 80,71.0,B - 81 to 91,85.0,BB115SE,100010340656.0,22 Griffin Close,0.4652 +5213,136629,24 Griffin Close Burnley Lancashire BB11 5SE,,, BB11 5SE,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2025,C - 69 to 80,76.0,C - 69 to 80,83.0,BB115SE,100010340658.0,24 Griffin Close,0.4652 +5326,362428,26 Griffin Close Burnley Lancashire BB11 5SE,,, BB11 5SE,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,87.0,BB115SE,100010340660.0,26 Griffin Close,0.4652 +5384,328491,27 Griffin Close Burnley Lancashire BB11 5SE,,, BB11 5SE,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115SE,100010340661.0,"27, Griffin Close",0.4652 +5433,328490,28 Griffin Close Burnley Lancashire BB11 5SE,,, BB11 5SE,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115SE,100010340662.0,"28, Griffin Close",0.4652 +9628,328489,29 Griffin Close Burnley Lancashire BB11 5SE,,, BB11 5SE,House: End Terrace,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,70.0,B - 81 to 91,87.0,BB115SE,100010340663.0,"29, Griffin Close",0.4652 +5022,40886,79 Marlborough Street Burnley Lancashire BB11 2HW,,, BB11 2HW,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Dec 2008,D - 55 to 68,63.0,C - 69 to 80,72.0,BB112HW,100010348104.0,"79, Marlborough Street",0.4886 +6522,89315,109 Marlborough Street Burnley Lancashire BB11 2HW,,, BB11 2HW,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Dec 2024,D - 55 to 68,61.0,B - 81 to 91,84.0,BB112HW,100010348119.0,109 Marlborough Street,0.4925 +5066,243000,1 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,19 Dec 2025,C - 69 to 80,75.0,C - 69 to 80,80.0,BB101NR,,, +5114,252003,2 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,01 Apr 2025,C - 69 to 80,69.0,C - 69 to 80,73.0,BB101NR,10003780622.0,2 Allen Court,0.4471 +5170,252004,3 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,15 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,90.0,BB101NR,10003780623.0,3 Allen Court,0.4471 +5226,115723,4 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,01 Apr 2025,D - 55 to 68,68.0,C - 69 to 80,72.0,BB101NR,10003780624.0,4 Allen Court,0.4471 +5280,244943,5 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Oct 2015,D - 55 to 68,68.0,B - 81 to 91,89.0,BB101NR,10003780625.0,"5, Allen Court",0.4471 +5337,103053,6 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,16 Jul 2024,C - 69 to 80,70.0,B - 81 to 91,89.0,BB101NR,10003780626.0,6 Allen Court,0.4471 +5395,208445,7 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Flat: Bottom,Domestic EPC Required,EPC Present,18 Jul 2013,C - 69 to 80,70.0,C - 69 to 80,77.0,BB101NR,10003780627.0,"7, Allen Court",0.4471 +5548,182481,10 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Flat: Bottom,Domestic EPC Required,EPC Present,30 Jan 2026,C - 69 to 80,72.0,C - 69 to 80,75.0,BB101NR,10003780630.0,10 Allen Court,0.4536 +13118,330868,9 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Flat: Top,Domestic EPC Required,EPC Present,21 Jun 2019,C - 69 to 80,72.0,C - 69 to 80,75.0,BB101NR,10003780629.0,"9, Allen Court",0.4471 +13602,355054,8 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Flat: Top,Domestic EPC Required,EPC Present,08 Jan 2026,C - 69 to 80,76.0,C - 69 to 80,76.0,BB101NR,10003780628.0,8 Allen Court,0.4471 +5086,90197,1a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Maisonette: no shop,Domestic EPC Required,EPC Present,18 Feb 2010,C - 69 to 80,70.0,C - 69 to 80,75.0,BB126AY,100012538416.0,"1a, Anglesey Avenue",0.5265 +5196,232676,3a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Maisonette: no shop,Domestic EPC Required,EPC Present,18 Feb 2015,D - 55 to 68,59.0,C - 69 to 80,71.0,BB126AY,100010327327.0,"3a, Anglesey Avenue",0.5265 +5256,89270,4a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Maisonette: no shop,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,75.0,C - 69 to 80,75.0,BB126AY,100010327328.0,4a Anglesey Avenue,0.5265 +5307,362959,5a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Maisonette: no shop,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,69.0,C - 69 to 80,73.0,BB126AY,100010327329.0,5a Anglesey Avenue,0.5265 +5365,289897,6a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Maisonette: no shop,Domestic EPC Required,EPC Present,12 Jul 2017,D - 55 to 68,58.0,C - 69 to 80,71.0,BB126AY,100010327330.0,"6a, Anglesey Avenue",0.5265 +5406,295084,7 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,08 Aug 2017,C - 69 to 80,76.0,C - 69 to 80,77.0,BB126AY,100010327332.0,"7, Anglesey Avenue",0.4705 +5412,69652,7a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Top,Domestic EPC Required,EPC Present,22 Jul 2009,C - 69 to 80,70.0,C - 69 to 80,76.0,BB126AY,100010327331.0,"7a, Anglesey Avenue",0.5265 +5461,40906,8 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,75.0,BB126AY,100010327334.0,8 Anglesey Avenue,0.4705 +5465,180888,8a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Top,Domestic EPC Required,EPC Present,13 Jun 2012,C - 69 to 80,70.0,C - 69 to 80,74.0,BB126AY,100010327333.0,"8a, Anglesey Avenue",0.5265 +5509,289896,9 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,13 Jul 2017,C - 69 to 80,72.0,C - 69 to 80,76.0,BB126AY,100010327336.0,"9, Anglesey Avenue",0.4705 +5513,40910,9a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Top,Domestic EPC Required,EPC Present,12 Jan 2009,C - 69 to 80,69.0,C - 69 to 80,75.0,BB126AY,100010327335.0,"9a, Anglesey Avenue",0.5265 +5563,40911,10 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,76.0,BB126AY,100010327338.0,10 Anglesey Avenue,0.4754 +5569,136777,10a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Top,Domestic EPC Required,EPC Present,06 Mar 2012,D - 55 to 68,64.0,D - 55 to 68,67.0,BB126AY,100010327337.0,"10a, Anglesey Avenue",0.5309 +5670,289899,12 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Top,Domestic EPC Required,EPC Present,10 Jul 2017,C - 69 to 80,73.0,C - 69 to 80,78.0,BB126AY,100010327340.0,"12, Anglesey Avenue",0.4754 +5723,40917,13 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Middle,Domestic EPC Required,EPC Present,29 Sep 2008,C - 69 to 80,69.0,C - 69 to 80,75.0,BB126AY,,, +5772,105377,14 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Middle,Domestic EPC Required,EPC Present,10 Jan 2011,B - 81 to 91,81.0,B - 81 to 91,85.0,BB126AY,100010327342.0,"14, Anglesey Avenue",0.4754 +5822,89272,15 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,12 Nov 2009,C - 69 to 80,76.0,C - 69 to 80,80.0,BB126AY,100010327343.0,"15, Anglesey Avenue",0.4754 +5871,362469,16 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,31 Jul 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB126AY,100010327344.0,16 Anglesey Avenue,0.4754 +5961,196142,18 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,17 Jul 2017,C - 69 to 80,70.0,C - 69 to 80,76.0,BB126AY,100010327346.0,"18, Anglesey Avenue",0.4754 +6009,286350,19 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Middle,Domestic EPC Required,EPC Present,13 Jul 2017,C - 69 to 80,71.0,C - 69 to 80,79.0,BB126AY,100010327347.0,"19, Anglesey Avenue",0.4754 +6193,40941,23 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Top,Domestic EPC Required,EPC Present,04 Apr 2009,C - 69 to 80,78.0,B - 81 to 91,82.0,BB126AY,100010327351.0,"23, Anglesey Avenue",0.4754 +6283,90282,25 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Middle,Domestic EPC Required,EPC Present,11 Mar 2010,C - 69 to 80,79.0,B - 81 to 91,82.0,BB126AY,100010327353.0,"25, Anglesey Avenue",0.4754 +6330,362508,26 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Middle,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,80.0,C - 69 to 80,80.0,BB126AY,100010327354.0,26 Anglesey Avenue,0.4754 +6377,194694,27 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,11 Jan 2013,C - 69 to 80,75.0,C - 69 to 80,78.0,BB126AY,100010327355.0,"27, Anglesey Avenue",0.4754 +6428,103139,28 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,08 Nov 2010,C - 69 to 80,75.0,C - 69 to 80,79.0,BB126AY,100010327356.0,"28, Anglesey Avenue",0.4754 +6472,40954,29 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jun 2009,C - 69 to 80,73.0,C - 69 to 80,78.0,BB126AY,100010327357.0,"29, Anglesey Avenue",0.4754 +6532,113830,30 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB126AY,100010327358.0,30 Anglesey Avenue,0.4754 +6620,76888,32 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Top,Domestic EPC Required,EPC Present,26 Aug 2009,C - 69 to 80,75.0,B - 81 to 91,81.0,BB126AY,100010327360.0,"32, Anglesey Avenue",0.4754 +9761,89453,2a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Maisonette: no shop,Domestic EPC Required,EPC Present,01 Dec 2009,D - 55 to 68,67.0,C - 69 to 80,74.0,BB126AY,100010327326.0,"2a, Anglesey Avenue",0.5265 +12682,304678,17 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,17 Jul 2017,C - 69 to 80,72.0,C - 69 to 80,77.0,BB126AY,100010327345.0,"17, Anglesey Avenue",0.4754 +5102,326492,55 Burns Street Burnley Lancashire BB12 0AJ,,, BB12 0AJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2020,C - 69 to 80,72.0,B - 81 to 91,90.0,BB120AJ,100010332291.0,"55, Burns Street",0.4596 +6075,89457,74 Burns Street Burnley Lancashire BB12 0AJ,,, BB12 0AJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Jun 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB120AJ,100010332309.0,74 Burns Street,0.4596 +5117,77004,9 Cairo Street Burnley Lancashire BB12 0NL,,, BB12 0NL,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Sep 2009,D - 55 to 68,65.0,C - 69 to 80,72.0,BB120NL,100010332559.0,"9, Cairo Street",0.4536 +10803,75539,4 Cairo Street Burnley Lancashire BB12 0NL,,, BB12 0NL,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Jul 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB120NL,100010332554.0,4 Cairo Street,0.4536 +12718,315219,12 Cairo Street Burnley Lancashire BB12 0NL,,, BB12 0NL,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Sep 2019,C - 69 to 80,69.0,B - 81 to 91,87.0,BB120NL,100010332562.0,"12, Cairo Street",0.4596 +12759,325268,20 Cairo Street Burnley Lancashire BB12 0NL,,, BB12 0NL,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2018,D - 55 to 68,66.0,B - 81 to 91,89.0,BB120NL,100010332570.0,"20, Cairo Street",0.4596 +13831,378945,(Cherry House) 8 Cairo Street Burnley Lancashire BB12 0NL,,, BB12 0NL,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Feb 2009,D - 55 to 68,62.0,C - 69 to 80,70.0,BB120NL,100010332558.0,"8, Cairo Street",0.3587 +13832,379036,(Hazel House) 18 Cairo Street Burnley Lancashire BB12 0NL,,, BB12 0NL,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Aug 2009,D - 55 to 68,60.0,D - 55 to 68,60.0,BB120NL,100010332568.0,"18, Cairo Street",0.3667 +13833,379048,(Chestnut House) 3 Cairo Street Burnley Lancashire BB12 0NL,,, BB12 0NL,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Feb 2015,D - 55 to 68,67.0,B - 81 to 91,88.0,BB120NL,100010332553.0,"3, Cairo Street",0.3547 +5203,76898,1 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Nov 2025,D - 55 to 68,67.0,C - 69 to 80,74.0,BB114DS,100010355572.0,1 Selkirk Street,0.4652 +5265,362421,2 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB114DS,100010355573.0,2 Selkirk Street,0.4652 +5376,76858,4 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Feb 2022,C - 69 to 80,70.0,B - 81 to 91,90.0,BB114DS,100010355575.0,4 Selkirk Street,0.4652 +5483,105052,6 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Dec 2010,C - 69 to 80,69.0,C - 69 to 80,73.0,BB114DS,100010355577.0,"6, Selkirk Street",0.4652 +5530,359929,7 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Bottom,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,71.0,C - 69 to 80,76.0,BB114DS,100010355578.0,7 Selkirk Street,0.4652 +5585,252166,8 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Sep 2015,D - 55 to 68,55.0,C - 69 to 80,76.0,BB114DS,100010355579.0,"8, Selkirk Street",0.4652 +5630,105050,9 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Top,Domestic EPC Required,EPC Present,02 Dec 2010,C - 69 to 80,75.0,C - 69 to 80,79.0,BB114DS,100010355580.0,"9, Selkirk Street",0.4652 +5693,338856,10 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,25 May 2021,C - 69 to 80,71.0,B - 81 to 91,89.0,BB114DS,100010355581.0,10 SELKIRK STREET,0.4705 +5739,362457,11 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Top,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,73.0,C - 69 to 80,75.0,BB114DS,100010355582.0,11 Selkirk Street,0.4705 +5794,367827,12 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Bungalow: Detached,Domestic EPC Required,EPC Present,02 Dec 2025,D - 55 to 68,66.0,C - 69 to 80,75.0,BB114DS,100010355583.0,12 Selkirk Street,0.4705 +5838,40923,13 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Bottom,Domestic EPC Required,EPC Present,18 Dec 2008,C - 69 to 80,69.0,C - 69 to 80,73.0,BB114DS,100010355584.0,"13, Selkirk Street",0.4705 +5935,40926,15 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Bottom,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,73.0,BB114DS,100010355586.0,15 Selkirk Street,0.4705 +5983,234526,16 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Apr 2015,C - 69 to 80,69.0,A - 92 Plus,107.0,BB114DS,100010355587.0,"16, Selkirk Street",0.4705 +6024,362476,17 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Top,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,74.0,C - 69 to 80,76.0,BB114DS,100010355588.0,17 Selkirk Street,0.4705 +6112,252216,19 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Oct 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB114DS,100010355590.0,19 Selkirk Street,0.4705 +6160,228727,20 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,09 Nov 2025,D - 55 to 68,65.0,C - 69 to 80,73.0,BB114DS,100010355591.0,20 Selkirk Street,0.4705 +6204,362498,21 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB114DS,100010355592.0,21 Selkirk Street,0.4705 +6254,95013,22 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,05 May 2010,D - 55 to 68,64.0,C - 69 to 80,74.0,BB114DS,100010355593.0,"22, Selkirk Street",0.4705 +6392,300658,25 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Mar 2018,C - 69 to 80,70.0,B - 81 to 91,83.0,BB114DS,100010355596.0,"25, Selkirk Street",0.4705 +6492,119424,27 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Oct 2011,D - 55 to 68,64.0,D - 55 to 68,65.0,BB114DS,100010355598.0,"27, Selkirk Street",0.4705 +6693,250066,31 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,10 May 2016,C - 69 to 80,69.0,B - 81 to 91,86.0,BB114DS,100010355602.0,"31, Selkirk Street",0.4705 +6792,94996,33 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Jun 2021,C - 69 to 80,70.0,B - 81 to 91,85.0,BB114DS,100010355603.0,33 SELKIRK STREET,0.4705 +6890,222936,35 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Top,Domestic EPC Required,EPC Present,24 Mar 2014,C - 69 to 80,72.0,C - 69 to 80,73.0,BB114DS,10023762452.0,"35, Selkirk Street",0.4705 +6989,210878,37 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Bottom,Domestic EPC Required,EPC Present,24 Mar 2014,C - 69 to 80,70.0,C - 69 to 80,74.0,BB114DS,10023762453.0,"37, Selkirk Street",0.4705 +7087,222937,39 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Bottom,Domestic EPC Required,EPC Present,24 Mar 2014,C - 69 to 80,71.0,C - 69 to 80,75.0,BB114DS,10023762454.0,"39, Selkirk Street",0.4705 +7185,222938,41 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Top,Domestic EPC Required,EPC Present,24 Mar 2014,C - 69 to 80,72.0,C - 69 to 80,73.0,BB114DS,10023762455.0,"41, Selkirk Street",0.4705 +13566,352255,3 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Top,Domestic EPC Required,EPC Present,20 Feb 2013,D - 55 to 68,67.0,C - 69 to 80,70.0,BB114DS,100010355574.0,"3, Selkirk Street",0.4652 +13615,355932,5 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Bottom,Domestic EPC Required,EPC Present,04 Sep 2023,C - 69 to 80,74.0,C - 69 to 80,77.0,BB114DS,100010355576.0,5 Selkirk Street,0.4652 +5245,195126,1 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Sep 2018,D - 55 to 68,63.0,B - 81 to 91,82.0,BB114EF,100010337793.0,"1, Dunoon Street",0.4596 +5295,252153,2 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Dec 2015,C - 69 to 80,71.0,B - 81 to 91,85.0,BB114EF,100012537429.0,"2, Dunoon Street",0.4596 +5347,40899,3 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2018,D - 55 to 68,63.0,B - 81 to 91,84.0,BB114EF,100010337794.0,"3, Dunoon Street",0.4596 +5408,252199,4 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Apr 2022,D - 55 to 68,63.0,B - 81 to 91,86.0,BB114EF,100010337795.0,4 Dunoon Street,0.4596 +5455,227466,5 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Aug 2014,D - 55 to 68,66.0,B - 81 to 91,86.0,BB114EF,100010337796.0,"5, Dunoon Street",0.4596 +5508,362440,6 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB114EF,100010337797.0,6 Dunoon Street,0.4596 +5562,252267,7 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Top,Domestic EPC Required,EPC Present,07 Jul 2016,C - 69 to 80,70.0,C - 69 to 80,72.0,BB114EF,100010337798.0,"7, Dunoon Street",0.4596 +5613,184327,8 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Top,Domestic EPC Required,EPC Present,08 Aug 2012,D - 55 to 68,65.0,C - 69 to 80,73.0,BB114EF,100010337799.0,"8, Dunoon Street",0.4596 +5672,182787,9 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Bottom,Domestic EPC Required,EPC Present,24 Jul 2012,C - 69 to 80,72.0,C - 69 to 80,75.0,BB114EF,100010337800.0,"9, Dunoon Street",0.4596 +5720,40916,10 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Bottom,Domestic EPC Required,EPC Present,11 Nov 2008,C - 69 to 80,71.0,C - 69 to 80,79.0,BB114EF,100010337801.0,"10, Dunoon Street",0.4652 +5773,233289,11 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Bottom,Domestic EPC Required,EPC Present,26 Feb 2015,D - 55 to 68,62.0,C - 69 to 80,74.0,BB114EF,100010337802.0,"11, Dunoon Street",0.4652 +5818,88992,12 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Bottom,Domestic EPC Required,EPC Present,16 Oct 2009,D - 55 to 68,65.0,C - 69 to 80,76.0,BB114EF,100010337803.0,"12, Dunoon Street",0.4652 +5872,95845,13 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Top,Domestic EPC Required,EPC Present,27 Jun 2023,C - 69 to 80,73.0,C - 69 to 80,73.0,BB114EF,100010337804.0,13 Dunoon Street,0.4652 +5913,40924,14 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Top,Domestic EPC Required,EPC Present,07 Jul 2009,D - 55 to 68,65.0,C - 69 to 80,75.0,BB114EF,100010337805.0,"14, Dunoon Street",0.4652 +6004,286347,16 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Bungalow: End Terr,Domestic EPC Required,EPC Present,19 Jul 2017,D - 55 to 68,57.0,B - 81 to 91,84.0,BB114EF,100010337807.0,"16, Dunoon Street",0.4652 +6057,362481,17 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB114EF,100010337808.0,17 Dunoon Street,0.4652 +6097,95193,18 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,11 May 2010,C - 69 to 80,69.0,C - 69 to 80,72.0,BB114EF,100010337809.0,"18, Dunoon Street",0.4652 +6144,362491,19 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB114EF,100010337810.0,19 Dunoon Street,0.4652 +6188,106385,20 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Feb 2011,D - 55 to 68,66.0,C - 69 to 80,70.0,BB114EF,,, +6234,126692,21 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB114EF,100010337812.0,21 Dunoon Street,0.4652 +6281,362506,22 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Bungalow: End Terr,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB114EF,100010337813.0,22 Dunoon Street,0.4652 +6331,40944,23 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Top,Domestic EPC Required,EPC Present,26 May 2021,D - 55 to 68,63.0,C - 69 to 80,70.0,BB114EF,100010337814.0,23 DUNOON STREET,0.4652 +6372,96033,24 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Top,Domestic EPC Required,EPC Present,10 Nov 2021,D - 55 to 68,65.0,C - 69 to 80,73.0,BB114EF,100010337815.0,24 Dunoon Street,0.4652 +6421,229148,25 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Bottom,Domestic EPC Required,EPC Present,09 Oct 2014,D - 55 to 68,65.0,C - 69 to 80,75.0,BB114EF,100010337816.0,"25, Dunoon Street",0.4652 +6469,40953,26 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Bottom,Domestic EPC Required,EPC Present,22 Feb 2009,D - 55 to 68,63.0,C - 69 to 80,74.0,BB114EF,100010337817.0,"26, Dunoon Street",0.4652 +6575,241793,28 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Bottom,Domestic EPC Required,EPC Present,29 Sep 2015,D - 55 to 68,64.0,C - 69 to 80,71.0,BB114EF,100010337819.0,"28, Dunoon Street",0.4652 +6674,40957,30 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Top,Domestic EPC Required,EPC Present,27 Jun 2023,D - 55 to 68,67.0,C - 69 to 80,74.0,BB114EF,100010337821.0,30 Dunoon Street,0.4652 +6722,304933,31 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Apr 2019,D - 55 to 68,65.0,B - 81 to 91,85.0,BB114EF,100010337822.0,"31, Dunoon Street",0.4652 +6774,100568,32 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Sep 2018,D - 55 to 68,57.0,C - 69 to 80,80.0,BB114EF,100010337823.0,"32, Dunoon Street",0.4652 +6868,196095,34 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Jan 2013,E - 39 to 54,52.0,B - 81 to 91,85.0,BB114EF,100010337825.0,"34, Dunoon Street",0.4652 +6921,116277,35 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Jul 2025,D - 55 to 68,67.0,C - 69 to 80,79.0,BB114EF,100010337826.0,35 Dunoon Street,0.4652 +9755,252162,29 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Top,Domestic EPC Required,EPC Present,02 Mar 2016,D - 55 to 68,66.0,C - 69 to 80,75.0,BB114EF,100010337820.0,"29, Dunoon Street",0.4652 +13748,359597,15 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Bungalow: End Terr,Domestic EPC Required,EPC Present,05 May 2023,D - 55 to 68,67.0,B - 81 to 91,88.0,BB114EF,100010337806.0,15 Dunoon Street,0.4652 +13765,360279,27 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jun 2023,C - 69 to 80,70.0,C - 69 to 80,73.0,BB114EF,100010337818.0,27 Dunoon Street,0.4652 +5332,110889,29 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,82.0,BB115LJ,100010341358.0,29 Harold Avenue,0.4652 +5442,40904,31 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Oct 2023,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LJ,100010341360.0,31 Harold Avenue,0.4652 +5496,252242,32 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jul 2016,D - 55 to 68,68.0,B - 81 to 91,84.0,BB115LJ,100010341361.0,"32, Harold Avenue",0.4652 +5544,226301,33 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,70.0,B - 81 to 91,84.0,BB115LJ,100010341362.0,33 Harold Avenue,0.4652 +5648,110925,35 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,69.0,C - 69 to 80,75.0,BB115LJ,100010341364.0,35 Harold Avenue,0.4652 +5707,110930,36 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Dec 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115LJ,100010341365.0,36 Harold Avenue,0.4652 +5949,89319,41 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Nov 2009,C - 69 to 80,69.0,C - 69 to 80,71.0,BB115LJ,100010341370.0,"41, Harold Avenue",0.4652 +6081,111170,44 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Oct 2023,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115LJ,100010341373.0,44 Harold Avenue,0.4652 +6130,250581,45 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Jun 2016,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115LJ,100010341374.0,"45, Harold Avenue",0.4652 +6173,96031,46 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Feb 2011,D - 55 to 68,60.0,C - 69 to 80,74.0,BB115LJ,100010341375.0,"46, Harold Avenue",0.4652 +6219,111178,47 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,67.0,C - 69 to 80,75.0,BB115LJ,100010341376.0,"47, Harold Avenue",0.4652 +6261,111181,48 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115LJ,100010341377.0,48 Harold Avenue,0.4652 +6404,111186,51 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2021,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LJ,100010341380.0,51 Harold Avenue,0.4652 +6454,40952,52 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,60.0,C - 69 to 80,74.0,BB115LJ,100010341381.0,"52, Harold Avenue",0.4652 +6561,111193,54 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Feb 2026,C - 69 to 80,72.0,C - 69 to 80,78.0,BB115LJ,100010341383.0,"54, Harold Avenue",0.4652 +6605,76963,55 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Dec 2025,C - 69 to 80,71.0,C - 69 to 80,79.0,BB115LJ,100010341384.0,55 Harold Avenue,0.4652 +6705,40960,57 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: End Terrace,Domestic EPC Required,EPC Present,05 Jul 2009,D - 55 to 68,66.0,C - 69 to 80,71.0,BB115LJ,100010341386.0,"57, Harold Avenue",0.4652 +6759,111198,58 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,71.0,B - 81 to 91,89.0,BB115LJ,100010341387.0,58 Harold Avenue,0.4652 +6803,238797,59 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jan 2026,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115LJ,100010341388.0,59 Harold Avenue,0.4652 +7051,94841,64 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115LJ,100010341393.0,64 Harold Avenue,0.4652 +7149,40978,66 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Feb 2026,C - 69 to 80,71.0,C - 69 to 80,77.0,BB115LJ,100010341395.0,"66, Harold Avenue",0.4652 +7300,111213,69 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Dec 2010,D - 55 to 68,60.0,C - 69 to 80,75.0,BB115LJ,100010341398.0,"69, Harold Avenue",0.4652 +7490,362592,73 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB115LJ,100010341402.0,73 Harold Avenue,0.4652 +7804,103505,79 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: End Terrace,Domestic EPC Required,EPC Present,28 Nov 2025,D - 55 to 68,68.0,C - 69 to 80,76.0,BB115LJ,100010341407.0,79 Harold Avenue,0.4652 +8011,41019,83 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Dec 2010,D - 55 to 68,61.0,C - 69 to 80,76.0,BB115LJ,100010341409.0,"83, Harold Avenue",0.4652 +8211,111298,87 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: End Terrace,Domestic EPC Required,EPC Present,09 Feb 2011,D - 55 to 68,67.0,C - 69 to 80,75.0,BB115LJ,100010341411.0,"87, Harold Avenue",0.4652 +9668,110920,34 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Dec 2021,C - 69 to 80,71.0,B - 81 to 91,88.0,BB115LJ,100010341363.0,34 Harold Avenue,0.4652 +5357,102922,2 Mount Lane Cliviger Burnley Lancashire BB10 4TL,,, BB10 4TL,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2025,C - 69 to 80,79.0,A - 92 Plus,116.0,BB104TL,100010349640.0,"2 Mount Lane, Cliviger",0.535 +5467,244952,4 Mount Lane Cliviger Burnley Lancashire BB10 4TL,,, BB10 4TL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Oct 2015,C - 69 to 80,71.0,B - 81 to 91,90.0,BB104TL,100010349642.0,"4, Mount Lane, Cliviger",0.535 +5392,223038,26 Killington Street Burnley Lancashire BB10 1TT,,, BB10 1TT,House: End Terrace,Domestic EPC Required,EPC Present,26 Jun 2025,D - 55 to 68,61.0,C - 69 to 80,77.0,BB101TT,100010344672.0,26 Killington Street,0.4845 +10891,41104,19 Killington Street Burnley Lancashire BB10 1TT,,, BB10 1TT,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Mar 2009,D - 55 to 68,57.0,D - 55 to 68,67.0,BB101TT,100010344666.0,"19, Killington Street",0.4845 +5404,40901,5 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,House: End Terrace,Domestic EPC Required,EPC Present,05 Mar 2009,D - 55 to 68,60.0,D - 55 to 68,66.0,BB102RJ,100010328572.0,"5, Beckenham Court",0.4705 +5721,362454,11 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,House: End Terrace,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102RJ,100010328578.0,11 Beckenham Court,0.4754 +5771,362460,12 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,75.0,B - 81 to 91,88.0,BB102RJ,100010328579.0,12 Beckenham Court,0.4754 +5821,250068,13 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 May 2016,C - 69 to 80,69.0,B - 81 to 91,82.0,BB102RJ,100010328580.0,"13, Beckenham Court",0.4754 +5868,252238,14 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,House: End Terrace,Domestic EPC Required,EPC Present,17 Jul 2024,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102RJ,100010328581.0,14 Beckenham Court,0.4754 +5917,94887,15 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Bottom,Domestic EPC Required,EPC Present,22 Feb 2012,D - 55 to 68,58.0,D - 55 to 68,61.0,BB102RJ,100010328582.0,"15, Beckenham Court",0.4754 +5966,40929,16 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Bottom,Domestic EPC Required,EPC Present,12 May 2023,C - 69 to 80,74.0,C - 69 to 80,77.0,BB102RJ,100010328583.0,16 Beckenham Court,0.4754 +6008,40930,17 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Bottom,Domestic EPC Required,EPC Present,21 Jan 2026,C - 69 to 80,76.0,C - 69 to 80,79.0,BB102RJ,100010328584.0,17 Beckenham Court,0.4754 +6053,89765,18 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Top,Domestic EPC Required,EPC Present,08 Oct 2024,C - 69 to 80,77.0,C - 69 to 80,78.0,BB102RJ,100010328585.0,18 Beckenham Court,0.4754 +6100,362483,19 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Top,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB102RJ,100010328586.0,19 Beckenham Court,0.4754 +6148,290413,20 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Top,Domestic EPC Required,EPC Present,02 Aug 2017,C - 69 to 80,75.0,C - 69 to 80,78.0,BB102RJ,100010328587.0,"20, Beckenham Court",0.4754 +6192,362495,21 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Bottom,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,76.0,C - 69 to 80,78.0,BB102RJ,100010328588.0,21 Beckenham Court,0.4754 +6239,362502,22 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Bottom,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,77.0,C - 69 to 80,78.0,BB102RJ,100010328589.0,22 Beckenham Court,0.4754 +6279,250582,23 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Bottom,Domestic EPC Required,EPC Present,15 Jun 2016,D - 55 to 68,68.0,C - 69 to 80,74.0,BB102RJ,100010328590.0,"23, Beckenham Court",0.4754 +6333,40945,24 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Top,Domestic EPC Required,EPC Present,28 Aug 2025,C - 69 to 80,80.0,C - 69 to 80,80.0,BB102RJ,100010328591.0,24 Beckenham Court,0.4754 +6376,362512,25 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Top,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB102RJ,100010328592.0,25 Beckenham Court,0.4754 +6427,116217,26 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Top,Domestic EPC Required,EPC Present,21 Nov 2025,C - 69 to 80,80.0,C - 69 to 80,80.0,BB102RJ,100010328593.0,26 Beckenham Court,0.4754 +6471,90209,27 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,House: End Terrace,Domestic EPC Required,EPC Present,22 Feb 2010,D - 55 to 68,62.0,D - 55 to 68,63.0,BB102RJ,100010328594.0,"27, Beckenham Court",0.4754 +6625,325381,30 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Jan 2020,C - 69 to 80,76.0,B - 81 to 91,89.0,BB102RJ,100010328597.0,"30, Beckenham Court",0.4754 +6675,98124,31 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Bottom,Domestic EPC Required,EPC Present,28 Aug 2025,C - 69 to 80,75.0,C - 69 to 80,78.0,BB102RJ,100010328598.0,31 Beckenham Court,0.4754 +6727,325281,32 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Bottom,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,71.0,C - 69 to 80,76.0,BB102RJ,100010328599.0,"32, Beckenham Court",0.4754 +6776,325282,33 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Bottom,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,73.0,C - 69 to 80,77.0,BB102RJ,100010328600.0,"33, Beckenham Court",0.4754 +6827,90086,34 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Top,Domestic EPC Required,EPC Present,02 Jan 2026,C - 69 to 80,77.0,C - 69 to 80,77.0,BB102RJ,100010328601.0,34 Beckenham Court,0.4754 +6875,40965,35 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Top,Domestic EPC Required,EPC Present,21 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,78.0,BB102RJ,100010328602.0,35 Beckenham Court,0.4754 +12765,322338,36 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Top,Domestic EPC Required,EPC Present,18 Nov 2012,D - 55 to 68,68.0,C - 69 to 80,71.0,BB102RJ,100010328603.0,"36, Beckenham Court",0.4754 +5471,295089,8 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,House: End Terrace,Domestic EPC Required,EPC Present,24 Aug 2017,D - 55 to 68,63.0,C - 69 to 80,78.0,BB126AZ,100010332810.0,8 Cardigan Avenue,0.4705 +5518,222433,9 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,House: End Terrace,Domestic EPC Required,EPC Present,12 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,80.0,BB126AZ,100010332811.0,9 Cardigan Avenue,0.4705 +5573,210943,10 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2013,D - 55 to 68,58.0,C - 69 to 80,80.0,BB126AZ,100010332812.0,"10, Cardigan Avenue",0.4754 +5623,112174,11 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,House: End Terrace,Domestic EPC Required,EPC Present,02 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB126AZ,100010332813.0,11 Cardigan Avenue,0.4754 +5681,362449,12 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Sep 2022,C - 69 to 80,73.0,B - 81 to 91,88.0,BB126AZ,100010332814.0,12 Cardigan Avenue,0.4754 +5780,362461,14 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,Flat: Top,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB126AZ,100010332816.0,14 Cardigan Avenue,0.4754 +5828,362464,15 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,83.0,BB126AZ,100010332817.0,15 Cardigan Avenue,0.4754 +5880,223607,16 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,Flat: Bottom,Domestic EPC Required,EPC Present,25 Sep 2024,C - 69 to 80,72.0,C - 69 to 80,74.0,BB126AZ,100010332818.0,16 Cardigan Avenue,0.4754 +5925,245846,17 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,House: End Terrace,Domestic EPC Required,EPC Present,24 Jul 2017,D - 55 to 68,63.0,C - 69 to 80,78.0,BB126AZ,100010332819.0,17 Cardigan Avenue,0.4754 +5971,324895,18 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,Flat: Bottom,Domestic EPC Required,EPC Present,07 Jul 2016,C - 69 to 80,71.0,C - 69 to 80,73.0,BB126AZ,100010332820.0,"18, Cardigan Avenue",0.4754 +6013,245825,19 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,Flat: Top,Domestic EPC Required,EPC Present,02 Dec 2015,C - 69 to 80,74.0,C - 69 to 80,77.0,BB126AZ,100010332821.0,"19, Cardigan Avenue",0.4754 +6063,179652,20 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,Flat: Top,Domestic EPC Required,EPC Present,02 May 2012,C - 69 to 80,73.0,C - 69 to 80,79.0,BB126AZ,100010332822.0,"20, Cardigan Avenue",0.4754 +6105,362484,21 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,Flat: Middle,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB126AZ,100010332823.0,21 Cardigan Avenue,0.4754 +6153,359963,22 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,Flat: Top,Domestic EPC Required,EPC Present,06 Jun 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB126AZ,100010332824.0,22 Cardigan Avenue,0.4754 +6244,205937,24 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,Flat: Bottom,Domestic EPC Required,EPC Present,02 Jan 2026,C - 69 to 80,70.0,C - 69 to 80,75.0,BB126AZ,100010332826.0,24 Cardigan Avenue,0.4754 +11684,237914,23 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,Flat: Bottom,Domestic EPC Required,EPC Present,07 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,76.0,BB126AZ,100010332825.0,23 Cardigan Avenue,0.4754 +5481,40908,1 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Jul 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB127BU,10003781595.0,"1 Regent Close, Padiham",0.6121 +5526,252142,2 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,79.0,BB127BU,10003781598.0,"2 Regent Close, Padiham",0.6121 +5581,221664,3 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127BU,10003781599.0,"3, Regent Close, Padiham",0.6121 +5627,222850,4 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Mar 2014,C - 69 to 80,70.0,B - 81 to 91,91.0,BB127BU,10003781600.0,"4, Regent Close, Padiham",0.6121 +5692,252133,5 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Nov 2015,C - 69 to 80,72.0,A - 92 Plus,92.0,BB127BU,10003781601.0,"5 Regent Close, Padiham",0.6121 +5736,233924,6 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Mar 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127BU,10003781602.0,"6, Regent Close, Padiham",0.6121 +5790,90133,7 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: End Terr,Domestic EPC Required,EPC Present,29 Jan 2010,D - 55 to 68,64.0,C - 69 to 80,71.0,BB127BU,10003781603.0,"7 Regent Close, Padiham",0.6121 +5836,252146,8 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: End Terr,Domestic EPC Required,EPC Present,31 May 2024,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BU,10003781604.0,"8 Regent Close, Padiham",0.6121 +5932,118271,10 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,75.0,B - 81 to 91,83.0,BB127BU,10003781596.0,"10 Regent Close, Padiham",0.6154 +6021,211778,12 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,79.0,B - 81 to 91,86.0,BB127BU,10003781597.0,"12 Regent Close, Padiham",0.6154 +5535,295103,1 Portal Grove Burnley Lancashire BB12 6DN,,, BB12 6DN,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Sep 2017,D - 55 to 68,64.0,B - 81 to 91,86.0,BB126DN,100010352391.0,"1, Portal Grove",0.4536 +5940,362472,9 Portal Grove Burnley Lancashire BB12 6DN,,, BB12 6DN,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB126DN,100010352399.0,9 Portal Grove,0.4536 +5984,362474,10 Portal Grove Burnley Lancashire BB12 6DN,,, BB12 6DN,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,84.0,BB126DN,100010352400.0,10 Portal Grove,0.4596 +6030,362478,11 Portal Grove Burnley Lancashire BB12 6DN,,, BB12 6DN,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126DN,100010352401.0,11 Portal Grove,0.4596 +6166,239481,14 Portal Grove Burnley Lancashire BB12 6DN,,, BB12 6DN,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Aug 2015,D - 55 to 68,68.0,B - 81 to 91,86.0,BB126DN,100010352404.0,"14, Portal Grove",0.4596 +5549,96715,108 Victoria Road Padiham Lancashire BB12 8TG,,, BB12 8TG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Jul 2010,D - 55 to 68,65.0,C - 69 to 80,70.0,BB128TG,100010359438.0,"108, Victoria Road, Padiham",0.6214 +5655,244956,110 Victoria Road Padiham Lancashire BB12 8TG,,, BB12 8TG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Oct 2015,D - 55 to 68,66.0,B - 81 to 91,90.0,BB128TG,100010359439.0,"110, Victoria Road, Padiham",0.6214 +5624,40915,41 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Aug 2022,C - 69 to 80,72.0,B - 81 to 91,89.0,BB114DN,100010348482.0,41 Melrose Avenue,0.4705 +5733,95502,43 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,26 May 2010,D - 55 to 68,68.0,D - 55 to 68,68.0,BB114DN,100010348484.0,"43, Melrose Avenue",0.4705 +5831,362465,45 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB114DN,100010348486.0,45 Melrose Avenue,0.4705 +5928,252196,47 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jun 2011,E - 39 to 54,47.0,C - 69 to 80,69.0,BB114DN,100010348488.0,"47, Melrose Avenue",0.4705 +6020,113833,49 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,13 Jun 2011,D - 55 to 68,61.0,D - 55 to 68,67.0,BB114DN,100010348490.0,"49, Melrose Avenue",0.4705 +6109,40938,51 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,19 Aug 2023,D - 55 to 68,67.0,B - 81 to 91,89.0,BB114DN,100010348492.0,51 Melrose Avenue,0.4705 +6200,362496,53 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB114DN,100010348494.0,53 Melrose Avenue,0.4705 +6290,113834,55 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Sep 2025,C - 69 to 80,70.0,C - 69 to 80,79.0,BB114DN,100010348496.0,55 Melrose Avenue,0.4705 +6484,111258,59 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Apr 2011,D - 55 to 68,59.0,D - 55 to 68,65.0,BB114DN,100010348500.0,"59, Melrose Avenue",0.4705 +6588,252209,61 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jun 2011,E - 39 to 54,45.0,D - 55 to 68,68.0,BB114DN,100010348502.0,"61, Melrose Avenue",0.4705 +6688,362530,63 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB114DN,100010348504.0,63 Melrose Avenue,0.4705 +6788,95011,65 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,05 May 2010,D - 55 to 68,66.0,B - 81 to 91,83.0,BB114DN,100010348506.0,"65, Melrose Avenue",0.4705 +7337,220129,76 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Nov 2013,C - 69 to 80,73.0,B - 81 to 91,86.0,BB114DN,100010348509.0,"76, Melrose Avenue",0.4705 +7427,362586,78 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB114DN,100010348510.0,78 Melrose Avenue,0.4705 +7624,362601,82 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB114DN,100010348512.0,82 Melrose Avenue,0.4705 +10902,99022,84 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2010,C - 69 to 80,75.0,C - 69 to 80,75.0,BB114DN,100010348513.0,84 Melrose Avenue,0.4705 +13353,341046,57 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,08 Sep 2021,D - 55 to 68,67.0,A - 92 Plus,92.0,BB114DN,100010348498.0,57 Melrose Avenue,0.4705 +5664,252219,1 Greenock Street Burnley Lancashire BB11 4DT,,, BB11 4DT,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB114DT,100010340520.0,1 Greenock Street,0.4705 +5713,362451,2 Greenock Street Burnley Lancashire BB11 4DT,,, BB11 4DT,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB114DT,100010340521.0,2 Greenock Street,0.4705 +5766,252197,3 Greenock Street Burnley Lancashire BB11 4DT,,, BB11 4DT,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2025,C - 69 to 80,73.0,C - 69 to 80,73.0,BB114DT,100010340522.0,3 Greenock Street,0.4705 +5816,184508,4 Greenock Street Burnley Lancashire BB11 4DT,,, BB11 4DT,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Dec 2025,D - 55 to 68,65.0,C - 69 to 80,80.0,BB114DT,100010340523.0,4 Greenock Street,0.4705 +6002,69667,8 Greenock Street Burnley Lancashire BB11 4DT,,, BB11 4DT,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Oct 2021,C - 69 to 80,72.0,B - 81 to 91,89.0,BB114DT,100010340526.0,8 Greenock Street,0.4705 +6095,40937,10 Greenock Street Burnley Lancashire BB11 4DT,,, BB11 4DT,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Sep 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB114DT,100010340527.0,10 Greenock Street,0.4754 +6185,252215,12 Greenock Street Burnley Lancashire BB11 4DT,,, BB11 4DT,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jul 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB114DT,100010340528.0,12 Greenock Street,0.4754 +6277,134546,14 Greenock Street Burnley Lancashire BB11 4DT,,, BB11 4DT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Feb 2012,D - 55 to 68,65.0,D - 55 to 68,65.0,BB114DT,100010340529.0,"14, Greenock Street",0.4754 +6370,362510,16 Greenock Street Burnley Lancashire BB11 4DT,,, BB11 4DT,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB114DT,100010340530.0,16 Greenock Street,0.4754 +5665,104038,2 Narvik Avenue Burnley Lancashire BB11 5DN,,, BB11 5DN,Bungalow: Detached,Domestic EPC Required,EPC Present,05 May 2011,D - 55 to 68,64.0,D - 55 to 68,66.0,BB115DN,100010349864.0,"2, Narvik Avenue",0.4596 +5767,104041,4 Narvik Avenue Burnley Lancashire BB11 5DN,,, BB11 5DN,Bungalow: Detached,Domestic EPC Required,EPC Present,27 Jan 2026,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115DN,100010349866.0,4 Narvik Avenue,0.4596 +5677,328071,9 Branch Road Burnley Lancashire BB11 3AT,,, BB11 3AT,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,71.0,B - 81 to 91,90.0,BB113AT,100010329513.0,"9, Branch Road",0.4471 +6059,40934,17 Branch Road Burnley Lancashire BB11 3AT,,, BB11 3AT,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 May 2009,D - 55 to 68,65.0,C - 69 to 80,70.0,BB113AT,100010329521.0,"17, Branch Road",0.4536 +12954,332693,46 Branch Road Burnley Lancashire BB11 3AT,,, BB11 3AT,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Oct 2020,C - 69 to 80,73.0,C - 69 to 80,78.0,BB113AT,100010329548.0,"46 BRANCH ROAD, BURNLEY",0.6121 +5683,229126,68 Church Street Padiham Lancashire BB12 8JQ,,, BB12 8JQ,House: End Terrace,Domestic EPC Required,EPC Present,08 Oct 2014,D - 55 to 68,59.0,B - 81 to 91,85.0,BB128JQ,10003759500.0,"68, Church Street, Padiham",0.6185 +5697,362450,3 Berkeley Crescent Padiham Lancashire BB12 6AF,,, BB12 6AF,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126AF,100010328981.0,"3, Berkshire Avenue",0.2122 +5797,105313,5 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Nov 2010,E - 39 to 54,54.0,C - 69 to 80,71.0,BB128NR,100010328921.0,"5, Berkeley Crescent, Padiham",0.6268 +5892,97713,7 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,14 Jun 2025,D - 55 to 68,63.0,B - 81 to 91,84.0,BB128NR,100010328923.0,"7 Berkeley Crescent, Padiham",0.6268 +5978,77015,9 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,70.0,B - 81 to 91,86.0,BB128NR,100010328925.0,"9, Berkeley Crescent, Padiham",0.6268 +6027,362477,10 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB128NR,100010328926.0,"10 Berkeley Crescent, Padiham",0.6293 +6074,110764,11 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Nov 2010,D - 55 to 68,58.0,C - 69 to 80,78.0,BB128NR,100010328927.0,"11, Berkeley Crescent, Padiham",0.6293 +6115,228557,12 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Sep 2014,C - 69 to 80,71.0,B - 81 to 91,86.0,BB128NR,100010328928.0,"12, Berkeley Crescent, Padiham",0.6293 +6163,362493,13 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB128NR,100010328929.0,"13 Berkeley Crescent, Padiham",0.6293 +6207,110783,14 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Nov 2010,D - 55 to 68,57.0,C - 69 to 80,73.0,BB128NR,100010328930.0,"14, Berkeley Crescent, Padiham",0.6293 +6297,362507,16 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB128NR,100010328932.0,"16 Berkeley Crescent, Padiham",0.6293 +6350,229259,17 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2014,D - 55 to 68,67.0,B - 81 to 91,82.0,BB128NR,100010328933.0,"17, Berkeley Crescent, Padiham",0.6293 +6395,362514,18 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB128NR,100010328934.0,"18 Berkeley Crescent, Padiham",0.6293 +6448,232405,19 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Feb 2015,D - 55 to 68,64.0,B - 81 to 91,84.0,BB128NR,100010328935.0,"19, Berkeley Crescent, Padiham",0.6293 +6550,362523,21 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB128NR,100010328937.0,"21 Berkeley Crescent, Padiham",0.6293 +6595,221629,22 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,70.0,B - 81 to 91,88.0,BB128NR,100010328938.0,"22, Berkeley Crescent, Padiham",0.6293 +6643,200833,23 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,14 Jun 2025,C - 69 to 80,69.0,B - 81 to 91,83.0,BB128NR,100010328939.0,"23 Berkeley Crescent, Padiham",0.6293 +6695,110874,24 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,24 Jan 2011,D - 55 to 68,64.0,C - 69 to 80,73.0,BB128NR,100010328940.0,"24, Berkeley Crescent, Padiham",0.6293 +6746,362536,25 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB128NR,100010328941.0,"25 Berkeley Crescent, Padiham",0.6293 +6794,362539,26 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB128NR,100010328942.0,"26 Berkeley Crescent, Padiham",0.6293 +6844,362542,27 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB128NR,100010328943.0,"27 Berkeley Crescent, Padiham",0.6293 +6892,274449,28 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Jun 2017,C - 69 to 80,69.0,B - 81 to 91,82.0,BB128NR,100010328944.0,"28, Berkeley Crescent, Padiham",0.6293 +6941,40968,29 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Mar 2022,D - 55 to 68,67.0,B - 81 to 91,88.0,BB128NR,100010328945.0,"29 Berkeley Crescent, Padiham",0.6293 +6991,362557,30 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB128NR,100010328946.0,"30 Berkeley Crescent, Padiham",0.6293 +7042,362563,31 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB128NR,100010328947.0,"31 Berkeley Crescent, Padiham",0.6293 +7089,362565,32 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB128NR,100010328948.0,"32 Berkeley Crescent, Padiham",0.6293 +7188,113828,34 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,30 Aug 2021,D - 55 to 68,67.0,B - 81 to 91,87.0,BB128NR,100010328950.0,"34 Berkeley Crescent, Padiham",0.6293 +7240,362572,35 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB128NR,100010328951.0,"35 Berkeley Crescent, Padiham",0.6293 +7291,362575,36 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB128NR,100010328952.0,"36 Berkeley Crescent, Padiham",0.6293 +7340,362578,37 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Aug 2022,D - 55 to 68,66.0,B - 81 to 91,86.0,BB128NR,100010328953.0,"37 Berkeley Crescent, Padiham",0.6293 +7384,362583,38 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB128NR,100010328954.0,"38 Berkeley Crescent, Padiham",0.6293 +7435,111154,39 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,19 Aug 2021,D - 55 to 68,66.0,B - 81 to 91,87.0,BB128NR,100010328955.0,"39 Berkeley Crescent, Padiham",0.6293 +7481,207475,40 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,10 Jul 2013,C - 69 to 80,69.0,B - 81 to 91,82.0,BB128NR,100010328956.0,"40, Berkeley Crescent, Padiham",0.6293 +7529,193901,41 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,07 Dec 2012,D - 55 to 68,68.0,B - 81 to 91,84.0,BB128NR,100010328957.0,"41, Berkeley Crescent, Padiham",0.6293 +7628,234530,43 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Apr 2015,C - 69 to 80,70.0,B - 81 to 91,88.0,BB128NR,100010328959.0,"43, Berkeley Crescent, Padiham",0.6293 +7686,90298,44 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jun 2014,C - 69 to 80,72.0,B - 81 to 91,85.0,BB128NR,100010328960.0,"44, Berkeley Crescent, Padiham",0.6293 +7741,362608,45 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,87.0,BB128NR,100010328961.0,"45 Berkeley Crescent, Padiham",0.6293 +7790,229261,46 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2014,C - 69 to 80,71.0,B - 81 to 91,84.0,BB128NR,100010328962.0,"46, Berkeley Crescent, Padiham",0.6293 +7849,362617,47 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB128NR,100010328963.0,"47 Berkeley Crescent, Padiham",0.6293 +7952,362621,49 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB128NR,100010328965.0,"49 Berkeley Crescent, Padiham",0.6293 +8048,222012,51 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Dec 2024,D - 55 to 68,60.0,B - 81 to 91,83.0,BB128NR,100010328966.0,"51 Berkeley Crescent, Padiham",0.6293 +8148,189412,53 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,02 Oct 2012,C - 69 to 80,69.0,B - 81 to 91,85.0,BB128NR,100010328967.0,"53, Berkeley Crescent, Padiham",0.6293 +8249,106907,55 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,68.0,C - 69 to 80,75.0,BB128NR,100010328968.0,"55, Berkeley Crescent, Padiham",0.6293 +8457,223678,59 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,22 Apr 2014,D - 55 to 68,65.0,B - 81 to 91,85.0,BB128NR,100010328970.0,"59, Berkeley Crescent, Padiham",0.6293 +8815,362675,65 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB128NR,100010328973.0,"65 Berkeley Crescent, Padiham",0.6293 +8930,96238,67 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Mar 2011,D - 55 to 68,58.0,C - 69 to 80,78.0,BB128NR,100010328974.0,"67, Berkeley Crescent, Padiham",0.6293 +9040,69689,69 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jul 2009,D - 55 to 68,68.0,C - 69 to 80,75.0,BB128NR,100010328975.0,"69, Berkeley Crescent, Padiham",0.6293 +9154,183759,71 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,02 Aug 2012,D - 55 to 68,68.0,B - 81 to 91,83.0,BB128NR,100010328976.0,"71, Berkeley Crescent, Padiham",0.6293 +9271,105068,73 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Aug 2021,D - 55 to 68,63.0,B - 81 to 91,85.0,BB128NR,100010328977.0,"73 Berkeley Crescent, Padiham",0.6293 +9389,362708,75 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,70.0,B - 81 to 91,89.0,BB128NR,100010328978.0,"75 Berkeley Crescent, Padiham",0.6293 +11053,181094,20 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Jun 2012,C - 69 to 80,74.0,B - 81 to 91,89.0,BB128NR,100010328936.0,"20, Berkeley Crescent, Padiham",0.6293 +5827,362463,11 Cunningham Grove Burnley Lancashire BB12 6DD,,, BB12 6DD,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB126DD,100010336650.0,11 Cunningham Grove,0.4801 +6015,295100,15 Cunningham Grove Burnley Lancashire BB12 6DD,,, BB12 6DD,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2017,D - 55 to 68,63.0,B - 81 to 91,86.0,BB126DD,100010336652.0,"15, Cunningham Grove",0.4801 +6586,105071,27 Cunningham Grove Burnley Lancashire BB12 6DD,,, BB12 6DD,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Dec 2025,C - 69 to 80,69.0,C - 69 to 80,75.0,BB126DD,100010336658.0,27 Cunningham Grove,0.4801 +5847,104061,36 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jul 2025,C - 69 to 80,74.0,C - 69 to 80,80.0,BB115SG,100010340666.0,36 Griffin Close,0.4652 +5942,104065,38 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Jan 2016,C - 69 to 80,73.0,B - 81 to 91,85.0,BB115SG,100010340668.0,"38, Griffin Close",0.4652 +6033,252270,40 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,House: End Terrace,Domestic EPC Required,EPC Present,08 Jul 2016,C - 69 to 80,72.0,B - 81 to 91,86.0,BB115SG,100010340670.0,"40, Griffin Close",0.4652 +6449,97638,49 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,House: End Terrace,Domestic EPC Required,EPC Present,04 Aug 2010,C - 69 to 80,70.0,C - 69 to 80,75.0,BB115SG,100010340677.0,"49, Griffin Close",0.4652 +6500,105056,50 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,House: End Terrace,Domestic EPC Required,EPC Present,23 Nov 2025,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115SG,100010340678.0,50 Griffin Close,0.4652 +7048,116215,61 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,Flat: Bottom,Domestic EPC Required,EPC Present,29 Jul 2011,C - 69 to 80,69.0,C - 69 to 80,73.0,BB115SG,100010340684.0,"61, Griffin Close",0.4652 +7146,199682,63 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,Flat: Top,Domestic EPC Required,EPC Present,13 Mar 2013,C - 69 to 80,72.0,C - 69 to 80,75.0,BB115SG,100010340685.0,"63, Griffin Close",0.4652 +7249,362573,65 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,Flat: Bottom,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB115SG,100010340686.0,65 Griffin Close,0.4652 +7345,114857,67 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,Flat: Top,Domestic EPC Required,EPC Present,24 Jun 2011,C - 69 to 80,75.0,C - 69 to 80,77.0,BB115SG,100010340687.0,"67, Griffin Close",0.4652 +7443,232410,69 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,Flat: Top,Domestic EPC Required,EPC Present,11 Feb 2015,C - 69 to 80,74.0,C - 69 to 80,76.0,BB115SG,100010340688.0,"69, Griffin Close",0.4652 +9734,328488,48 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115SG,100010340676.0,"48, Griffin Close",0.4652 +10904,94951,46 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jan 2026,C - 69 to 80,76.0,B - 81 to 91,88.0,BB115SG,100010340675.0,46 Griffin Close,0.4652 +12685,304831,71 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,Flat: Bottom,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,74.0,C - 69 to 80,76.0,BB115SG,100010340689.0,71 Griffin Close,0.4652 +5869,227402,1 Rydal Close Padiham Lancashire BB12 8PQ,,, BB12 8PQ,House: End Terrace,Domestic EPC Required,EPC Present,05 Aug 2014,D - 55 to 68,58.0,B - 81 to 91,85.0,BB128PQ,100010355113.0,"1, Rydal Close, Padiham",0.6085 +5921,136774,2 Rydal Close Padiham Lancashire BB12 8PQ,,, BB12 8PQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,65.0,C - 69 to 80,73.0,BB128PQ,100010355114.0,"2 Rydal Close, Padiham",0.6085 +6005,90203,4 Rydal Close Padiham Lancashire BB12 8PQ,,, BB12 8PQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Feb 2010,D - 55 to 68,64.0,D - 55 to 68,67.0,BB128PQ,100010355116.0,"4, Rydal Close, Padiham",0.6085 +6098,108807,6 Rydal Close Padiham Lancashire BB12 8PQ,,, BB12 8PQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Mar 2011,C - 69 to 80,71.0,C - 69 to 80,74.0,BB128PQ,100010355118.0,"6, Rydal Close, Padiham",0.6085 +6189,40940,8 Rydal Close Padiham Lancashire BB12 8PQ,,, BB12 8PQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,17 Nov 2008,C - 69 to 80,69.0,C - 69 to 80,75.0,BB128PQ,100010355120.0,"8, Rydal Close, Padiham",0.6085 +6235,362501,9 Rydal Close Padiham Lancashire BB12 8PQ,,, BB12 8PQ,House: End Terrace,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB128PQ,100010355121.0,"9 Rydal Close, Padiham",0.6085 +6422,362516,13 Rydal Close Padiham Lancashire BB12 8PQ,,, BB12 8PQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB128PQ,100010355123.0,"13 Rydal Close, Padiham",0.6121 +5898,104063,37 Griffin Close Burnley Lancashire BB11 5SF,,, BB11 5SF,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Nov 2010,D - 55 to 68,62.0,C - 69 to 80,76.0,BB115SF,100010340667.0,"37, Griffin Close",0.4652 +5986,111155,39 Griffin Close Burnley Lancashire BB11 5SF,,, BB11 5SF,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Feb 2011,D - 55 to 68,57.0,C - 69 to 80,72.0,BB115SF,100010340669.0,"39, Griffin Close",0.4652 +6078,104069,41 Griffin Close Burnley Lancashire BB11 5SF,,, BB11 5SF,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Jul 2024,C - 69 to 80,77.0,B - 81 to 91,89.0,BB115SF,100010340671.0,41 Griffin Close,0.4652 +6170,111166,43 Griffin Close Burnley Lancashire BB11 5SF,,, BB11 5SF,House: End Terrace,Domestic EPC Required,EPC Present,23 Dec 2010,D - 55 to 68,56.0,C - 69 to 80,70.0,BB115SF,100010340673.0,"43, Griffin Close",0.4652 +5947,200834,2 Windermere Avenue Burnley Lancashire BB10 2AE,,, BB10 2AE,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Mar 2013,D - 55 to 68,68.0,B - 81 to 91,88.0,BB102AE,,, +6175,180891,7 Windermere Avenue Burnley Lancashire BB10 2AE,,, BB10 2AE,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Sep 2024,D - 55 to 68,67.0,B - 81 to 91,85.0,BB102AE,100010361124.0,7 Windermere Avenue,0.4801 +6217,326221,8 Windermere Avenue Burnley Lancashire BB10 2AE,,, BB10 2AE,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Feb 2020,C - 69 to 80,71.0,B - 81 to 91,86.0,BB102AE,100010361125.0,"8, Windermere Avenue",0.4801 +6308,243349,10 Windermere Avenue Burnley Lancashire BB10 2AE,,, BB10 2AE,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2015,D - 55 to 68,62.0,B - 81 to 91,88.0,BB102AE,100010361127.0,"10, Windermere Avenue",0.4845 +6356,326220,11 Windermere Avenue Burnley Lancashire BB10 2AE,,, BB10 2AE,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,62.0,C - 69 to 80,75.0,BB102AE,100010361128.0,11 Windermere Avenue,0.4845 +6706,326222,18 Windermere Avenue Burnley Lancashire BB10 2AE,,, BB10 2AE,House: End Terrace,Domestic EPC Required,EPC Present,07 Feb 2020,D - 55 to 68,68.0,B - 81 to 91,87.0,BB102AE,100010361135.0,"18, Windermere Avenue",0.4845 +6761,295079,19 Windermere Avenue Burnley Lancashire BB10 2AE,,, BB10 2AE,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Oct 2017,C - 69 to 80,70.0,B - 81 to 91,86.0,BB102AE,100010361136.0,"19, Windermere Avenue",0.4845 +6853,326219,21 Windermere Avenue Burnley Lancashire BB10 2AE,,, BB10 2AE,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Feb 2020,D - 55 to 68,63.0,B - 81 to 91,83.0,BB102AE,100010361138.0,"21, Windermere Avenue",0.4845 +7201,40979,28 Windermere Avenue Burnley Lancashire BB10 2AE,,, BB10 2AE,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jan 2009,D - 55 to 68,68.0,C - 69 to 80,71.0,BB102AE,100010361145.0,"28, Windermere Avenue",0.4845 +6000,90252,1 Moorland Road Burnley Lancashire BB11 2NY,,, BB11 2NY,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112NY,100010349321.0,1 Moorland Road,0.4596 +6367,40948,9 Moorland Road Burnley Lancashire BB11 2NY,,, BB11 2NY,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Nov 2008,D - 55 to 68,68.0,C - 69 to 80,73.0,BB112NY,100010349329.0,"9, Moorland Road",0.4596 +6864,110821,19 Moorland Road Burnley Lancashire BB11 2NY,,, BB11 2NY,House: End Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,C - 69 to 80,74.0,B - 81 to 91,86.0,BB112NY,100010349341.0,19 Moorland Road,0.4652 +6874,210871,19a Moorland Road Burnley Lancashire BB11 2NY,,, BB11 2NY,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Mar 2025,C - 69 to 80,69.0,B - 81 to 91,85.0,BB112NY,100010349339.0,19a Moorland Road,0.5219 +6877,362544,19b Moorland Road Burnley Lancashire BB11 2NY,,, BB11 2NY,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB112NY,100010349340.0,19b Moorland Road,0.5219 +6918,197121,20 Moorland Road Burnley Lancashire BB11 2NY,,, BB11 2NY,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Feb 2013,D - 55 to 68,67.0,B - 81 to 91,83.0,BB112NY,100010349342.0,20 Moorland Road,0.4652 +7218,110880,26 Moorland Road Burnley Lancashire BB11 2NY,,, BB11 2NY,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Jun 2017,D - 55 to 68,64.0,B - 81 to 91,85.0,BB112NY,100010349350.0,"26, Moorland Road",0.4652 +7814,194692,38 Moorland Road Burnley Lancashire BB11 2NY,,, BB11 2NY,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,C - 69 to 80,71.0,B - 81 to 91,84.0,BB112NY,100010349361.0,38 Moorland Road,0.4652 +6016,194525,21 Pheasantford Street Burnley Lancashire BB10 3BD,,, BB10 3BD,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Nov 2025,D - 55 to 68,65.0,C - 69 to 80,78.0,BB103BD,100010352068.0,21 Pheasantford Street,0.4925 +6034,40932,299 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Bottom,Domestic EPC Required,EPC Present,06 Jan 2026,C - 69 to 80,70.0,C - 69 to 80,70.0,BB115BS,100010334720.0,299 Coal Clough Lane,0.5309 +6122,201780,301 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Top,Domestic EPC Required,EPC Present,08 Apr 2013,C - 69 to 80,77.0,C - 69 to 80,78.0,BB115BS,100010334722.0,"301, Coal Clough Lane",0.5309 +6211,186167,303 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Bottom,Domestic EPC Required,EPC Present,16 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB115BS,100010334724.0,303 Coal Clough Lane,0.5309 +6303,89545,305 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Top,Domestic EPC Required,EPC Present,15 Nov 2025,A - 92 Plus,94.0,A - 92 Plus,95.0,BB115BS,100010334726.0,305 Coal Clough Lane,0.5309 +6399,221635,307 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,71.0,C - 69 to 80,75.0,BB115BS,100010334728.0,"307, Coal Clough Lane",0.5309 +6499,245296,309 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Top,Domestic EPC Required,EPC Present,15 Dec 2015,C - 69 to 80,72.0,C - 69 to 80,72.0,BB115BS,100010334729.0,"309, Coal Clough Lane",0.5309 +6600,96581,311 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Bottom,Domestic EPC Required,EPC Present,16 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,75.0,BB115BS,100010334731.0,311 Coal Clough Lane,0.5309 +6698,223072,313 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Top,Domestic EPC Required,EPC Present,16 Nov 2025,C - 69 to 80,79.0,C - 69 to 80,79.0,BB115BS,100010334733.0,313 Coal Clough Lane,0.5309 +6798,197947,315 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Bottom,Domestic EPC Required,EPC Present,16 Nov 2025,C - 69 to 80,76.0,C - 69 to 80,78.0,BB115BS,100010334735.0,315 Coal Clough Lane,0.5309 +6898,252163,317 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Top,Domestic EPC Required,EPC Present,17 Jun 2011,D - 55 to 68,64.0,C - 69 to 80,75.0,BB115BS,100010334737.0,"317, Coal Clough Lane",0.5309 +6998,359926,319 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Bottom,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,76.0,C - 69 to 80,78.0,BB115BS,100010334739.0,319 Coal Clough Lane,0.5309 +7092,252157,321 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Top,Domestic EPC Required,EPC Present,04 Oct 2024,C - 69 to 80,76.0,C - 69 to 80,77.0,BB115BS,100010334741.0,321 Coal Clough Lane,0.5309 +7198,138694,323 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jan 2026,C - 69 to 80,77.0,C - 69 to 80,78.0,BB115BS,100010334743.0,323 Coal Clough Lane,0.5309 +7297,107909,325 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Top,Domestic EPC Required,EPC Present,02 Mar 2026,C - 69 to 80,77.0,C - 69 to 80,79.0,BB115BS,100010334745.0,"325, Coal Clough Lane",0.5309 +7388,210924,327 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Bottom,Domestic EPC Required,EPC Present,19 Jul 2023,C - 69 to 80,75.0,C - 69 to 80,78.0,BB115BS,100010334748.0,327 Coal Clough Lane,0.5309 +7401,245151,327a Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Top,Domestic EPC Required,EPC Present,16 Oct 2015,C - 69 to 80,74.0,C - 69 to 80,78.0,BB115BS,100010334747.0,"327a, Coal Clough Lane",0.575 +6045,69660,6 Hogarth Avenue Burnley Lancashire BB11 2NW,,, BB11 2NW,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jul 2009,D - 55 to 68,67.0,C - 69 to 80,70.0,BB112NW,100010342850.0,"6, Hogarth Avenue",0.4652 +6089,221599,7 Hogarth Avenue Burnley Lancashire BB11 2NW,,, BB11 2NW,House: End Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,D - 55 to 68,68.0,B - 81 to 91,86.0,BB112NW,100010342851.0,7 Hogarth Avenue,0.4652 +6179,110750,9 Hogarth Avenue Burnley Lancashire BB11 2NW,,, BB11 2NW,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Dec 2010,D - 55 to 68,63.0,C - 69 to 80,75.0,BB112NW,100010342853.0,"9, Hogarth Avenue",0.4652 +6222,246345,10 Hogarth Avenue Burnley Lancashire BB11 2NW,,, BB11 2NW,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jan 2016,D - 55 to 68,56.0,B - 81 to 91,86.0,BB112NW,100010342854.0,"10, Hogarth Avenue",0.4705 +6363,362509,13 Hogarth Avenue Burnley Lancashire BB11 2NW,,, BB11 2NW,House: End Terrace,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112NW,100010342857.0,13 Hogarth Avenue,0.4705 +6609,197464,18 Hogarth Avenue Burnley Lancashire BB11 2NW,,, BB11 2NW,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Feb 2013,D - 55 to 68,62.0,B - 81 to 91,82.0,BB112NW,100010342862.0,"18, Hogarth Avenue",0.4705 +6861,286338,23 Hogarth Avenue Burnley Lancashire BB11 2NW,,, BB11 2NW,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jun 2017,D - 55 to 68,63.0,B - 81 to 91,86.0,BB112NW,100010342867.0,"23, Hogarth Avenue",0.4705 +6906,226563,24 Hogarth Avenue Burnley Lancashire BB11 2NW,,, BB11 2NW,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,C - 69 to 80,69.0,B - 81 to 91,87.0,BB112NW,100010342868.0,24 Hogarth Avenue,0.4705 +6092,362482,1 Forfar Grove Burnley Lancashire BB11 5HZ,,, BB11 5HZ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB115HZ,10023759347.0,1 Forfar Grove,0.4536 +6136,362488,2 Forfar Grove Burnley Lancashire BB11 5HZ,,, BB11 5HZ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB115HZ,10023759350.0,2 Forfar Grove,0.4536 +6183,324894,3 Forfar Grove Burnley Lancashire BB11 5HZ,,, BB11 5HZ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Jun 2021,D - 55 to 68,65.0,B - 81 to 91,87.0,BB115HZ,10023759348.0,3 FORFAR GROVE,0.4536 +6228,362500,4 Forfar Grove Burnley Lancashire BB11 5HZ,,, BB11 5HZ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB115HZ,10023759351.0,4 Forfar Grove,0.4536 +6278,362505,5 Forfar Grove Burnley Lancashire BB11 5HZ,,, BB11 5HZ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB115HZ,10023759349.0,5 Forfar Grove,0.4536 +6323,40943,6 Forfar Grove Burnley Lancashire BB11 5HZ,,, BB11 5HZ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,07 Jul 2009,C - 69 to 80,69.0,C - 69 to 80,73.0,BB115HZ,10023759352.0,"6, Forfar Grove",0.4536 +6123,323628,35 Brunshaw Avenue Burnley Lancashire BB10 4LD,,, BB10 4LD,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Oct 2019,C - 69 to 80,70.0,B - 81 to 91,82.0,BB104LD,100010331282.0,"35, Brunshaw Avenue",0.4754 +6213,323629,37 Brunshaw Avenue Burnley Lancashire BB10 4LD,,, BB10 4LD,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Oct 2019,C - 69 to 80,74.0,B - 81 to 91,86.0,BB104LD,100010331284.0,"37, Brunshaw Avenue",0.4754 +6502,323630,43 Brunshaw Avenue Burnley Lancashire BB10 4LD,,, BB10 4LD,House: End Terrace,Domestic EPC Required,EPC Present,14 Oct 2019,C - 69 to 80,71.0,B - 81 to 91,84.0,BB104LD,100010331290.0,"43, Brunshaw Avenue",0.4754 +6899,247390,51 Brunshaw Avenue Burnley Lancashire BB10 4LD,,, BB10 4LD,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2016,C - 69 to 80,71.0,B - 81 to 91,86.0,BB104LD,100010331295.0,"51, Brunshaw Avenue",0.4754 +6999,247414,53 Brunshaw Avenue Burnley Lancashire BB10 4LD,,, BB10 4LD,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Mar 2016,C - 69 to 80,71.0,B - 81 to 91,86.0,BB104LD,100010331297.0,"53, Brunshaw Avenue",0.4754 +8363,247391,80 Brunshaw Avenue Burnley Lancashire BB10 4LD,,, BB10 4LD,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Mar 2016,C - 69 to 80,69.0,B - 81 to 91,87.0,BB104LD,100010331321.0,"80, Brunshaw Avenue",0.4754 +6141,105311,1 Wasdale Close Padiham Lancashire BB12 8NJ,,, BB12 8NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Aug 2021,E - 39 to 54,51.0,B - 81 to 91,87.0,BB128NJ,100010359807.0,"1 Wasdale Close, Padiham",0.6154 +6186,250594,2 Wasdale Close Padiham Lancashire BB12 8NJ,,, BB12 8NJ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Dec 2025,C - 69 to 80,69.0,C - 69 to 80,77.0,BB128NJ,100010359808.0,"2 Wasdale Close, Padiham",0.6154 +6273,240989,4 Wasdale Close Padiham Lancashire BB12 8NJ,,, BB12 8NJ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Sep 2015,D - 55 to 68,68.0,B - 81 to 91,90.0,BB128NJ,100010359810.0,"4, Wasdale Close, Padiham",0.6154 +6419,110733,7 Wasdale Close Padiham Lancashire BB12 8NJ,,, BB12 8NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Aug 2021,E - 39 to 54,50.0,B - 81 to 91,87.0,BB128NJ,100010359813.0,"7 Wasdale Close, Padiham",0.6154 +6521,252223,9 Wasdale Close Padiham Lancashire BB12 8NJ,,, BB12 8NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Nov 2008,D - 55 to 68,59.0,C - 69 to 80,69.0,BB128NJ,100010359815.0,"9, Wasdale Close, Padiham",0.6154 +6568,362524,10 Wasdale Close Padiham Lancashire BB12 8NJ,,, BB12 8NJ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,88.0,BB128NJ,100010359816.0,"10 Wasdale Close, Padiham",0.6185 +6916,220025,17 Wasdale Close Padiham Lancashire BB12 8NJ,,, BB12 8NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Nov 2013,D - 55 to 68,63.0,C - 69 to 80,78.0,BB128NJ,100010359821.0,"17, Wasdale Close, Padiham",0.6185 +7017,40972,19 Wasdale Close Padiham Lancashire BB12 8NJ,,, BB12 8NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Nov 2010,E - 39 to 54,53.0,C - 69 to 80,69.0,BB128NJ,100010359822.0,"19, Wasdale Close, Padiham",0.6185 +6169,268808,2 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Nov 2016,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102RL,10003758114.0,"2, Chessington Green",0.4801 +6214,205792,3 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Jun 2013,D - 55 to 68,68.0,B - 81 to 91,82.0,BB102RL,10003758108.0,"3, Chessington Green",0.4801 +6302,229289,5 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,House: End Terrace,Domestic EPC Required,EPC Present,03 Feb 2026,C - 69 to 80,73.0,C - 69 to 80,80.0,BB102RL,10003758122.0,"5, Chessington Green",0.4801 +6352,40946,6 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,60.0,D - 55 to 68,66.0,BB102RL,10003758106.0,"6, Chessington Green",0.4801 +6401,325289,7 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Bottom,Domestic EPC Required,EPC Present,16 Dec 2019,C - 69 to 80,73.0,C - 69 to 80,78.0,BB102RL,10003758105.0,"7, Chessington Green",0.4801 +6450,325271,8 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Bottom,Domestic EPC Required,EPC Present,16 Dec 2019,C - 69 to 80,70.0,C - 69 to 80,76.0,BB102RL,10003758104.0,"8, Chessington Green",0.4801 +6556,96192,10 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Top,Domestic EPC Required,EPC Present,01 Jul 2010,C - 69 to 80,78.0,C - 69 to 80,79.0,BB102RL,10003758099.0,"10, Chessington Green",0.4845 +6650,124147,12 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2011,D - 55 to 68,62.0,D - 55 to 68,62.0,BB102RL,10003758119.0,"12, Chessington Green",0.4845 +6997,362559,19 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Bottom,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,75.0,C - 69 to 80,78.0,BB102RL,10003758121.0,19 Chessington Green,0.4845 +7047,89229,20 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Bottom,Domestic EPC Required,EPC Present,10 Dec 2025,C - 69 to 80,76.0,C - 69 to 80,79.0,BB102RL,10003758103.0,20 Chessington Green,0.4845 +7095,40975,21 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Bottom,Domestic EPC Required,EPC Present,21 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,74.0,BB102RL,10003758112.0,21 Chessington Green,0.4845 +7147,89068,22 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Top,Domestic EPC Required,EPC Present,28 Nov 2025,C - 69 to 80,77.0,C - 69 to 80,78.0,BB102RL,10003758111.0,22 Chessington Green,0.4845 +7197,295074,23 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Top,Domestic EPC Required,EPC Present,10 Nov 2017,C - 69 to 80,75.0,C - 69 to 80,78.0,BB102RL,10003758110.0,"23, Chessington Green",0.4845 +7246,201347,24 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Top,Domestic EPC Required,EPC Present,02 Apr 2013,D - 55 to 68,68.0,C - 69 to 80,71.0,BB102RL,10003758109.0,"24, Chessington Green",0.4845 +12862,327537,9 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Top,Domestic EPC Required,EPC Present,28 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,78.0,BB102RL,10003758113.0,9 Chessington Green,0.4801 +13290,338361,11 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Top,Domestic EPC Required,EPC Present,02 Feb 2026,C - 69 to 80,77.0,C - 69 to 80,80.0,BB102RL,10003758118.0,"11, Chessington Green",0.4845 +6174,362494,7 Creswick Avenue Burnley Lancashire BB11 2NZ,,, BB11 2NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,84.0,BB112NZ,100010336056.0,7 Creswick Avenue,0.4705 +6359,96679,11 Creswick Avenue Burnley Lancashire BB11 2NZ,,, BB11 2NZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,B - 81 to 91,83.0,B - 81 to 91,88.0,BB112NZ,100010336060.0,11 Creswick Avenue,0.4754 +6406,362515,12 Creswick Avenue Burnley Lancashire BB11 2NZ,,, BB11 2NZ,House: End Terrace,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,84.0,BB112NZ,100010336061.0,12 Creswick Avenue,0.4754 +7005,203986,24 Creswick Avenue Burnley Lancashire BB11 2NZ,,, BB11 2NZ,House: End Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,D - 55 to 68,68.0,B - 81 to 91,85.0,BB112NZ,100010336073.0,24 Creswick Avenue,0.4754 +7052,362564,25 Creswick Avenue Burnley Lancashire BB11 2NZ,,, BB11 2NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112NZ,100010336074.0,25 Creswick Avenue,0.4754 +6242,110660,2 Tuscan Avenue Burnley Lancashire BB11 5LS,,, BB11 5LS,House: End Terrace,Domestic EPC Required,EPC Present,07 Aug 2024,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115LS,100010359057.0,2 Tuscan Avenue,0.4596 +6285,110665,3 Tuscan Avenue Burnley Lancashire BB11 5LS,,, BB11 5LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,64.0,C - 69 to 80,75.0,BB115LS,100010359058.0,"3, Tuscan Avenue",0.4596 +6335,110673,4 Tuscan Avenue Burnley Lancashire BB11 5LS,,, BB11 5LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Feb 2011,D - 55 to 68,58.0,C - 69 to 80,76.0,BB115LS,100010359059.0,"4, Tuscan Avenue",0.4596 +6380,198888,5 Tuscan Avenue Burnley Lancashire BB11 5LS,,, BB11 5LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Mar 2013,C - 69 to 80,70.0,B - 81 to 91,86.0,BB115LS,100010359060.0,"5, Tuscan Avenue",0.4596 +6433,110685,6 Tuscan Avenue Burnley Lancashire BB11 5LS,,, BB11 5LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB115LS,100010359061.0,6 Tuscan Avenue,0.4596 +6475,110732,7 Tuscan Avenue Burnley Lancashire BB11 5LS,,, BB11 5LS,House: End Terrace,Domestic EPC Required,EPC Present,28 Jun 2024,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115LS,100010359062.0,7 Tuscan Avenue,0.4596 +6535,362521,8 Tuscan Avenue Burnley Lancashire BB11 5LS,,, BB11 5LS,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,81.0,BB115LS,100010359063.0,8 Tuscan Avenue,0.4596 +6628,252476,10 Tuscan Avenue Burnley Lancashire BB11 5LS,,, BB11 5LS,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Jul 2016,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115LS,100010359064.0,"10, Tuscan Avenue",0.4652 +6731,40961,12 Tuscan Avenue Burnley Lancashire BB11 5LS,,, BB11 5LS,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,62.0,C - 69 to 80,75.0,BB115LS,100010359065.0,"12, Tuscan Avenue",0.4652 +6266,362504,126 Sycamore Avenue Burnley Lancashire BB12 6AG,,, BB12 6AG,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126AG,100010357555.0,126 Sycamore Avenue,0.4801 +6558,125278,132 Sycamore Avenue Burnley Lancashire BB12 6AG,,, BB12 6AG,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Dec 2011,C - 69 to 80,69.0,C - 69 to 80,72.0,BB126AG,100010357561.0,"132, Sycamore Avenue",0.4801 +6662,362527,134 Sycamore Avenue Burnley Lancashire BB12 6AG,,, BB12 6AG,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB126AG,100010357563.0,134 Sycamore Avenue,0.4801 +6764,40963,136 Sycamore Avenue Burnley Lancashire BB12 6AG,,, BB12 6AG,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jun 2009,D - 55 to 68,55.0,C - 69 to 80,71.0,BB126AG,100010357565.0,"136, Sycamore Avenue",0.4801 +6859,362543,138 Sycamore Avenue Burnley Lancashire BB12 6AG,,, BB12 6AG,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Oct 2020,D - 55 to 68,59.0,B - 81 to 91,84.0,BB126AG,100010357567.0,"138 SYCAMORE AVENUE, BURNLEY",0.6268 +7056,204091,142 Sycamore Avenue Burnley Lancashire BB12 6AG,,, BB12 6AG,House: Semi-Detached,Domestic EPC Required,EPC Present,14 May 2013,D - 55 to 68,59.0,B - 81 to 91,86.0,BB126AG,100010357571.0,"142, Sycamore Avenue",0.4801 +7252,104912,146 Sycamore Avenue Burnley Lancashire BB12 6AG,,, BB12 6AG,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Nov 2010,E - 39 to 54,54.0,D - 55 to 68,61.0,BB126AG,100010357575.0,"146, Sycamore Avenue",0.4801 +6353,108008,101 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Aug 2015,D - 55 to 68,64.0,B - 81 to 91,88.0,BB104BN,100010328824.0,"101, Belvedere Road",0.4754 +6451,240418,103 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Sep 2021,C - 69 to 80,70.0,A - 92 Plus,93.0,BB104BN,100010328826.0,103 Belvedere Road,0.4754 +6555,184510,105 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Aug 2015,C - 69 to 80,70.0,B - 81 to 91,91.0,BB104BN,100010328828.0,"105, Belvedere Road",0.4754 +6651,89461,107 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: End Terr,Domestic EPC Required,EPC Present,19 Sep 2021,C - 69 to 80,69.0,B - 81 to 91,90.0,BB104BN,100010328830.0,107 Belvedere Road,0.4754 +6752,240422,109 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Aug 2015,D - 55 to 68,66.0,B - 81 to 91,87.0,BB104BN,100010328831.0,"109, Belvedere Road",0.4754 +6846,240423,111 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Aug 2015,D - 55 to 68,65.0,B - 81 to 91,88.0,BB104BN,100010328832.0,"111, Belvedere Road",0.4754 +6945,250598,113 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: End Terr,Domestic EPC Required,EPC Present,17 Dec 2025,C - 69 to 80,72.0,C - 69 to 80,80.0,BB104BN,100010328833.0,113 Belvedere Road,0.4754 +7049,240424,115 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Aug 2015,D - 55 to 68,64.0,B - 81 to 91,87.0,BB104BN,100010328834.0,"115, Belvedere Road",0.4754 +7145,236580,117 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Aug 2015,E - 39 to 54,53.0,C - 69 to 80,76.0,BB104BN,100010328835.0,"117, Belvedere Road",0.4754 +7248,240425,119 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Aug 2015,D - 55 to 68,68.0,B - 81 to 91,89.0,BB104BN,100010328836.0,"119, Belvedere Road",0.4754 +7346,240426,121 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Aug 2015,D - 55 to 68,65.0,B - 81 to 91,88.0,BB104BN,100010328837.0,"121, Belvedere Road",0.4754 +7442,211482,123 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Aug 2015,D - 55 to 68,65.0,B - 81 to 91,87.0,BB104BN,100010328838.0,"123, Belvedere Road",0.4754 +7534,240427,125 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Flat: Bottom,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,73.0,BB104BN,100010328839.0,125 Belvedere Road,0.4754 +7637,241897,127 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Flat: Bottom,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,73.0,BB104BN,100010328840.0,127 Belvedere Road,0.4754 +7747,362609,129 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Flat: Top,Domestic EPC Required,EPC Present,19 Aug 2025,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104BN,100010328841.0,129 Belvedere Road,0.4754 +7854,241898,131 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Flat: Top,Domestic EPC Required,EPC Present,05 Dec 2025,C - 69 to 80,76.0,C - 69 to 80,76.0,BB104BN,100010328842.0,131 Belvedere Road,0.4754 +7959,76897,133 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Flat: Bottom,Domestic EPC Required,EPC Present,28 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104BN,100010328843.0,133 Belvedere Road,0.4754 +8057,188287,135 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Sep 2012,D - 55 to 68,68.0,C - 69 to 80,73.0,BB104BN,100010328844.0,"135, Belvedere Road",0.4754 +8155,116413,137 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Flat: Top,Domestic EPC Required,EPC Present,20 Aug 2015,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104BN,100010328846.0,"137, Belvedere Road",0.4754 +8258,116213,139 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Flat: Top,Domestic EPC Required,EPC Present,19 Aug 2025,C - 69 to 80,74.0,C - 69 to 80,75.0,BB104BN,100010328848.0,139 Belvedere Road,0.4754 +6378,362513,1 Douglas Road Briercliffe Burnley Lancashire BB10 2JQ,,, BB10 2JQ,House: End Terrace,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB102JQ,100010337438.0,"1 Douglas Road, Briercliffe",0.5525 +6426,229667,2 Douglas Road Briercliffe Burnley Lancashire BB10 2JQ,,, BB10 2JQ,House: End Terrace,Domestic EPC Required,EPC Present,18 Oct 2017,D - 55 to 68,64.0,B - 81 to 91,86.0,BB102JQ,100010337439.0,"2, Douglas Road, Briercliffe",0.5525 +6431,250426,255 Colne Road Burnley Lancashire BB10 1EF,,, BB10 1EF,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 May 2016,D - 55 to 68,68.0,B - 81 to 91,90.0,BB101EF,100010335453.0,"255, Colne Road",0.4536 +6453,99553,18 Ruskin Grove Hapton Burnley Lancashire BB11 5RE,,, BB11 5RE,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Sep 2010,C - 69 to 80,72.0,C - 69 to 80,76.0,BB115RE,100010355021.0,"18, Ruskin Grove, Hapton",0.5389 +6468,250102,36 Bristol Street Burnley Lancashire BB11 4EU,,, BB11 4EU,Flat: Top,Domestic EPC Required,EPC Present,17 May 2016,C - 69 to 80,74.0,C - 69 to 80,75.0,BB114EU,100010330449.0,"36, Bristol Street",0.4705 +6573,40955,38 Bristol Street Burnley Lancashire BB11 4EU,,, BB11 4EU,Flat: Bottom,Domestic EPC Required,EPC Present,03 Nov 2008,D - 55 to 68,67.0,C - 69 to 80,70.0,BB114EU,100010330450.0,"38, Bristol Street",0.4705 +6676,362529,40 Bristol Street Burnley Lancashire BB11 4EU,,, BB11 4EU,Flat: Bottom,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,74.0,C - 69 to 80,77.0,BB114EU,100010330451.0,40 Bristol Street,0.4705 +6778,89032,42 Bristol Street Burnley Lancashire BB11 4EU,,, BB11 4EU,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2009,D - 55 to 68,62.0,C - 69 to 80,69.0,BB114EU,100010330452.0,"42, Bristol Street",0.4705 +7168,211485,50 Bristol Street Burnley Lancashire BB11 4EU,,, BB11 4EU,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Oct 2013,D - 55 to 68,68.0,B - 81 to 91,83.0,BB114EU,100010330456.0,"50, Bristol Street",0.4705 +13775,368709,34 Bristol Street Burnley Lancashire BB11 4EU,,, BB11 4EU,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,29 Jul 2023,C - 69 to 80,69.0,B - 81 to 91,90.0,BB114EU,100010330448.0,34 Bristol Street,0.4705 +6478,295659,4 Keynsham Grove Burnley Lancashire BB12 0JU,,, BB12 0JU,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Feb 2018,C - 69 to 80,74.0,B - 81 to 91,86.0,BB120JU,100010344567.0,"4, Keynsham Grove",0.4652 +6585,202619,6 Keynsham Grove Burnley Lancashire BB12 0JU,,, BB12 0JU,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Apr 2013,C - 69 to 80,69.0,B - 81 to 91,85.0,BB120JU,100010344569.0,"6, Keynsham Grove",0.4652 +6523,106311,1 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,16 Nov 2017,D - 55 to 68,65.0,B - 81 to 91,87.0,BB115JQ,100010327893.0,"1, Ballater Street",0.4705 +6574,179916,2 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115JQ,100010327894.0,2 Ballater Street,0.4705 +6621,200178,3 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,23 Oct 2025,D - 55 to 68,64.0,B - 81 to 91,84.0,BB115JQ,100010327895.0,3 Ballater Street,0.4705 +6678,359890,4 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,70.0,B - 81 to 91,90.0,BB115JQ,100010327896.0,4 Ballater Street,0.4705 +6728,97711,5 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,06 Aug 2010,D - 55 to 68,62.0,C - 69 to 80,72.0,BB115JQ,100010327897.0,"5, Ballater Street",0.4705 +6772,362537,6 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,90.0,BB115JQ,100010327898.0,6 Ballater Street,0.4705 +6821,362540,7 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,90.0,BB115JQ,100010327899.0,7 Ballater Street,0.4705 +6867,252218,8 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,11 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115JQ,100010327900.0,8 Ballater Street,0.4705 +6920,362548,9 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,90.0,BB115JQ,100010327901.0,9 Ballater Street,0.4705 +6974,244346,10 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,19 Nov 2015,D - 55 to 68,68.0,B - 81 to 91,89.0,BB115JQ,100010327902.0,"10, Ballater Street",0.4754 +7024,90294,11 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,15 Mar 2010,D - 55 to 68,68.0,C - 69 to 80,69.0,BB115JQ,100010327903.0,"11, Ballater Street",0.4754 +7069,341704,12 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Nov 2025,D - 55 to 68,61.0,C - 69 to 80,71.0,BB115JQ,100010327904.0,12 Ballater Street,0.4754 +7122,103477,13 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,11 Nov 2010,D - 55 to 68,59.0,C - 69 to 80,69.0,BB115JQ,100010327905.0,"13, Ballater Street",0.4754 +7170,105259,14 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Jan 2011,C - 69 to 80,71.0,C - 69 to 80,72.0,BB115JQ,100010327906.0,"14, Ballater Street",0.4754 +7224,110795,15 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,30 Dec 2010,E - 39 to 54,50.0,D - 55 to 68,67.0,BB115JQ,100010327907.0,"15, Ballater Street",0.4754 +6582,204820,5 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 May 2013,D - 55 to 68,64.0,B - 81 to 91,82.0,BB120JT,100010327806.0,"5, Avon Court",0.4401 +7027,322690,14 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,House: End Terrace,Domestic EPC Required,EPC Present,23 Sep 2019,C - 69 to 80,70.0,B - 81 to 91,84.0,BB120JT,100010327809.0,"14, Avon Court",0.4471 +7124,221137,16 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,74.0,C - 69 to 80,78.0,BB120JT,100010327811.0,16 Avon Court,0.4471 +7172,229283,17 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,House: End Terrace,Domestic EPC Required,EPC Present,27 Jan 2026,C - 69 to 80,72.0,C - 69 to 80,80.0,BB120JT,100010327812.0,17 Avon Court,0.4471 +7275,89498,19 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Apr 2022,C - 69 to 80,74.0,B - 81 to 91,90.0,BB120JT,100010327814.0,19 Avon Court,0.4471 +7325,206146,20 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,79.0,BB120JT,100010327815.0,20 Avon Court,0.4471 +7370,362581,21 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Apr 2024,C - 69 to 80,76.0,B - 81 to 91,90.0,BB120JT,100010327816.0,21 Avon Court,0.4471 +7556,233916,25 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,Bungalow: End Terr,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,71.0,C - 69 to 80,79.0,BB120JT,100010327820.0,25 Avon Court,0.4471 +7610,245817,26 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Jan 2016,C - 69 to 80,69.0,B - 81 to 91,89.0,BB120JT,100010327821.0,"26, Avon Court",0.4471 +7666,245818,27 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,03 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB120JT,100010327822.0,"27, Avon Court",0.4471 +7721,98362,28 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,Bungalow: End Terr,Domestic EPC Required,EPC Present,03 Oct 2023,C - 69 to 80,74.0,A - 92 Plus,93.0,BB120JT,100010327823.0,28 Avon Court,0.4471 +6687,40958,10 Sunningdale Garden Burnley Lancashire BB10 2RW,,, BB10 2RW,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Jan 2009,D - 55 to 68,57.0,D - 55 to 68,59.0,BB102RW,100010357287.0,"10, Sunningdale Gardens",0.3794 +6787,325273,12 Sunningdale Garden Burnley Lancashire BB10 2RW,,, BB10 2RW,House: End Terrace,Domestic EPC Required,EPC Present,16 Dec 2019,C - 69 to 80,73.0,B - 81 to 91,87.0,BB102RW,100010357289.0,"12, Sunningdale Gardens",0.3794 +6835,222812,13 Sunningdale Garden Burnley Lancashire BB10 2RW,,, BB10 2RW,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Mar 2014,D - 55 to 68,68.0,B - 81 to 91,83.0,BB102RW,100010357290.0,"13, Sunningdale Gardens",0.3794 +7238,325272,21 Sunningdale Garden Burnley Lancashire BB10 2RW,,, BB10 2RW,House: End Terrace,Domestic EPC Required,EPC Present,16 Dec 2019,C - 69 to 80,70.0,B - 81 to 91,84.0,BB102RW,100010357298.0,"21, Sunningdale Gardens",0.3794 +7378,246559,24 Sunningdale Garden Burnley Lancashire BB10 2RW,,, BB10 2RW,House: End Terrace,Domestic EPC Required,EPC Present,16 Feb 2016,D - 55 to 68,62.0,C - 69 to 80,77.0,BB102RW,100010357301.0,"24, Sunningdale Gardens",0.3794 +7523,222851,27 Sunningdale Garden Burnley Lancashire BB10 2RW,,, BB10 2RW,House: End Terrace,Domestic EPC Required,EPC Present,15 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB102RW,100010357304.0,27 Sunningdale Gardens,0.3794 +7625,41000,29 Sunningdale Garden Burnley Lancashire BB10 2RW,,, BB10 2RW,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Apr 2009,D - 55 to 68,63.0,D - 55 to 68,67.0,BB102RW,100010357306.0,"29, Sunningdale Gardens",0.3794 +12686,304900,22 Sunningdale Garden Burnley Lancashire BB10 2RW,,, BB10 2RW,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Jul 2009,D - 55 to 68,68.0,C - 69 to 80,75.0,BB102RW,100010357299.0,"22, Sunningdale Gardens",0.3794 +6689,211372,41 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Mar 2025,D - 55 to 68,68.0,B - 81 to 91,86.0,BB112NT,100010354936.0,41 Rossetti Avenue,0.4754 +6741,362535,42 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: End Terrace,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB112NT,100010354939.0,42 Rossetti Avenue,0.4754 +6747,120794,42a Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Mar 2025,D - 55 to 68,68.0,B - 81 to 91,86.0,BB112NT,100010354937.0,42a Rossetti Avenue,0.5309 +6751,111164,42b Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jun 2021,D - 55 to 68,65.0,B - 81 to 91,86.0,BB112NT,100010354938.0,42B ROSSETTI AVENUE,0.5309 +6786,362538,43 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB112NT,100010354940.0,43 Rossetti Avenue,0.4754 +6837,111171,44 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Nov 2010,D - 55 to 68,55.0,C - 69 to 80,70.0,BB112NT,100010354941.0,44 Rossetti Avenue,0.4754 +6885,362545,45 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112NT,100010354942.0,45 Rossetti Avenue,0.4754 +6934,40967,46 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Mar 2022,D - 55 to 68,64.0,B - 81 to 91,85.0,BB112NT,100010354943.0,46 Rossetti Avenue,0.4754 +6984,126613,47 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Aug 2024,D - 55 to 68,68.0,B - 81 to 91,83.0,BB112NT,100010354944.0,47 Rossetti Avenue,0.4754 +7136,111185,50 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: End Terrace,Domestic EPC Required,EPC Present,15 Mar 2022,D - 55 to 68,60.0,C - 69 to 80,80.0,BB112NT,100010354947.0,50 Rossetti Avenue,0.4754 +7181,362570,51 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112NT,100010354948.0,51 Rossetti Avenue,0.4754 +7237,77011,52 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Mar 2022,C - 69 to 80,69.0,B - 81 to 91,88.0,BB112NT,100010354949.0,52 Rossetti Avenue,0.4754 +7285,40983,53 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Aug 2021,D - 55 to 68,59.0,B - 81 to 91,82.0,BB112NT,100010354950.0,53 Rossetti Avenue,0.4754 +7379,286339,55 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jun 2017,D - 55 to 68,60.0,B - 81 to 91,85.0,BB112NT,100010354952.0,"55, Rossetti Avenue",0.4754 +7433,362588,56 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: End Terrace,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB112NT,100010354953.0,56 Rossetti Avenue,0.4754 +7526,289904,58 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Jul 2017,D - 55 to 68,61.0,B - 81 to 91,87.0,BB112NT,100010354955.0,"58, Rossetti Avenue",0.4754 +6692,362531,14 Cross Street Burnley Lancashire BB10 2HT,,, BB10 2HT,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB102HT,100010336306.0,"14 Cross Street, Briercliffe",0.4437 +6715,326170,3 Derwent Avenue Burnley Lancashire BB10 1HZ,,, BB10 1HZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Feb 2020,C - 69 to 80,74.0,B - 81 to 91,89.0,BB101HZ,100010337280.0,"3, Derwent Avenue",0.4652 +6770,221641,4 Derwent Avenue Burnley Lancashire BB10 1HZ,,, BB10 1HZ,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,71.0,B - 81 to 91,84.0,BB101HZ,100010337281.0,"4, Derwent Avenue",0.4652 +6962,40970,8 Derwent Avenue Burnley Lancashire BB10 1HZ,,, BB10 1HZ,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jul 2025,D - 55 to 68,66.0,C - 69 to 80,79.0,BB101HZ,100010337285.0,8 Derwent Avenue,0.4652 +7063,326169,10 Derwent Avenue Burnley Lancashire BB10 1HZ,,, BB10 1HZ,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Feb 2020,C - 69 to 80,69.0,B - 81 to 91,87.0,BB101HZ,100010337287.0,"10, Derwent Avenue",0.4705 +7164,326172,12 Derwent Avenue Burnley Lancashire BB10 1HZ,,, BB10 1HZ,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Feb 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB101HZ,100010337289.0,"12, Derwent Avenue",0.4705 +7314,76956,15 Derwent Avenue Burnley Lancashire BB10 1HZ,,, BB10 1HZ,House: End Terrace,Domestic EPC Required,EPC Present,17 Sep 2009,D - 55 to 68,59.0,C - 69 to 80,73.0,BB101HZ,100010337292.0,"15, Derwent Avenue",0.4705 +7504,40993,19 Derwent Avenue Burnley Lancashire BB10 1HZ,,, BB10 1HZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Dec 2008,D - 55 to 68,67.0,C - 69 to 80,75.0,BB101HZ,100010337294.0,"19, Derwent Avenue",0.4705 +7600,326171,21 Derwent Avenue Burnley Lancashire BB10 1HZ,,, BB10 1HZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Feb 2020,C - 69 to 80,73.0,B - 81 to 91,87.0,BB101HZ,100010337295.0,"21, Derwent Avenue",0.4705 +6732,242791,1 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,Bungalow: End Terr,Domestic EPC Required,EPC Present,09 Oct 2015,C - 69 to 80,69.0,B - 81 to 91,90.0,BB115HE,100010361257.0,"1, Winsford Walk",0.4596 +6784,244959,2 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Oct 2015,D - 55 to 68,68.0,B - 81 to 91,90.0,BB115HE,100010361258.0,"2, Winsford Walk",0.4596 +6830,362541,3 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,88.0,BB115HE,100010361259.0,3 Winsford Walk,0.4596 +6879,221677,4 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115HE,100010361260.0,"4, Winsford Walk",0.4596 +6929,362549,5 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,89.0,BB115HE,100010361261.0,5 Winsford Walk,0.4596 +6982,244960,6 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: End Terrace,Domestic EPC Required,EPC Present,30 Oct 2015,C - 69 to 80,69.0,B - 81 to 91,86.0,BB115HE,100010361262.0,"6, Winsford Walk",0.4596 +7077,341045,8 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Sep 2021,C - 69 to 80,77.0,B - 81 to 91,89.0,BB115HE,100010361264.0,8 Winsford Walk,0.4596 +7230,40980,11 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: End Terrace,Domestic EPC Required,EPC Present,26 Nov 2008,C - 69 to 80,73.0,C - 69 to 80,77.0,BB115HE,100010361267.0,"11, Winsford Walk",0.4652 +7278,40982,12 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,87.0,BB115HE,100010361268.0,12 Winsford Walk,0.4652 +7327,40986,13 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Dec 2025,C - 69 to 80,74.0,B - 81 to 91,86.0,BB115HE,100010361269.0,13 Winsford Walk,0.4652 +7373,182442,14 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,87.0,BB115HE,100010361270.0,14 Winsford Walk,0.4652 +7421,40990,15 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Nov 2025,C - 69 to 80,76.0,B - 81 to 91,88.0,BB115HE,100010361271.0,15 Winsford Walk,0.4652 +7464,362589,16 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: End Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115HE,100010361272.0,16 Winsford Walk,0.4652 +6758,241366,1 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2015,C - 69 to 80,71.0,B - 81 to 91,85.0,BB102QG,100010355544.0,"1, Sedburgh Street",0.4705 +6854,325352,3 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,C - 69 to 80,72.0,B - 81 to 91,87.0,BB102QG,100010355546.0,"3, Sedburgh Street",0.4705 +7053,103298,7 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jun 2025,C - 69 to 80,73.0,C - 69 to 80,77.0,BB102QG,100010355550.0,7 Sedburgh Street,0.4705 +7099,325351,8 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,C - 69 to 80,75.0,B - 81 to 91,88.0,BB102QG,100010355551.0,"8, Sedburgh Street",0.4705 +7154,186748,9 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Sep 2012,C - 69 to 80,71.0,B - 81 to 91,86.0,BB102QG,100012536208.0,"9, Sedburgh Street",0.4705 +7204,325346,10 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,C - 69 to 80,74.0,B - 81 to 91,87.0,BB102QG,100010355552.0,"10, Sedburgh Street",0.4754 +7254,40981,11 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Apr 2009,C - 69 to 80,75.0,C - 69 to 80,75.0,BB102QG,100010355553.0,"11, Sedburgh Street",0.4754 +7304,325350,12 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,C - 69 to 80,74.0,B - 81 to 91,87.0,BB102QG,100010355554.0,"12, Sedburgh Street",0.4754 +7400,221667,14 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,73.0,B - 81 to 91,86.0,BB102QG,100010355556.0,"14, Sedburgh Street",0.4754 +7447,230499,15 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Dec 2014,C - 69 to 80,72.0,B - 81 to 91,87.0,BB102QG,100010355557.0,"15, Sedburgh Street",0.4754 +7493,219722,16 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Nov 2013,C - 69 to 80,72.0,B - 81 to 91,87.0,BB102QG,100010355558.0,"16, Sedburgh Street",0.4754 +7590,95416,18 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,21 May 2010,C - 69 to 80,69.0,C - 69 to 80,72.0,BB102QG,100010355559.0,"18, Sedburgh Street",0.4754 +7698,76899,20 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2026,C - 69 to 80,71.0,C - 69 to 80,77.0,BB102QG,100010355560.0,20 Sedburgh Street,0.4754 +7805,41012,22 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2026,C - 69 to 80,70.0,C - 69 to 80,77.0,BB102QG,100010355561.0,22 Sedburgh Street,0.4754 +8115,325349,28 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,C - 69 to 80,73.0,B - 81 to 91,88.0,BB102QG,100010355564.0,"28, Sedburgh Street",0.4754 +8209,90195,30 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Feb 2010,C - 69 to 80,69.0,C - 69 to 80,75.0,BB102QG,100010355565.0,"30, Sedburgh Street",0.4754 +8311,325348,32 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,C - 69 to 80,72.0,B - 81 to 91,87.0,BB102QG,100010355566.0,"32, Sedburgh Street",0.4754 +8415,136669,34 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Feb 2012,C - 69 to 80,70.0,C - 69 to 80,71.0,BB102QG,100010355567.0,"34, Sedburgh Street",0.4754 +8526,269021,36 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Nov 2025,D - 55 to 68,58.0,D - 55 to 68,64.0,BB102QG,100010355568.0,36 Sedburgh Street,0.4754 +8647,325347,38 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,C - 69 to 80,74.0,B - 81 to 91,87.0,BB102QG,100010355569.0,"38, Sedburgh Street",0.4754 +6932,362550,79 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,Flat: Bottom,Domestic EPC Required,EPC Present,03 May 2022,C - 69 to 80,76.0,C - 69 to 80,79.0,BB120JX,100010341256.0,79 Hargrove Avenue,0.4754 +7034,362561,81 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,Flat: Top,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB120JX,100010341258.0,81 Hargrove Avenue,0.4754 +7132,362569,83 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,Flat: Bottom,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,78.0,BB120JX,100010341260.0,83 Hargrove Avenue,0.4754 +7233,227041,85 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,Flat: Top,Domestic EPC Required,EPC Present,22 Jul 2014,C - 69 to 80,73.0,C - 69 to 80,75.0,BB120JX,100010341262.0,85 Hargrove Avenue,0.4754 +7330,295855,87 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,Flat: Bottom,Domestic EPC Required,EPC Present,13 Feb 2018,C - 69 to 80,77.0,C - 69 to 80,78.0,BB120JX,100010341263.0,"87, Hargrove Avenue",0.4754 +7424,77013,89 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,Flat: Top,Domestic EPC Required,EPC Present,01 Mar 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB120JX,100010341264.0,89 Hargrove Avenue,0.4754 +7515,295856,91 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,Flat: Bottom,Domestic EPC Required,EPC Present,14 Feb 2018,C - 69 to 80,74.0,C - 69 to 80,77.0,BB120JX,100010341265.0,"91, Hargrove Avenue",0.4754 +7616,300656,93 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,House: End Terrace,Domestic EPC Required,EPC Present,16 Mar 2018,C - 69 to 80,69.0,B - 81 to 91,86.0,BB120JX,100010341266.0,"93, Hargrove Avenue",0.4754 +7943,300655,99 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Mar 2018,C - 69 to 80,71.0,B - 81 to 91,86.0,BB120JX,100010341269.0,"99, Hargrove Avenue",0.4754 +8039,300657,101 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2018,C - 69 to 80,70.0,B - 81 to 91,87.0,BB120JX,100010341270.0,"101, Hargrove Avenue",0.4801 +13614,362893,77 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,Flat: Top,Domestic EPC Required,EPC Present,30 Aug 2022,C - 69 to 80,76.0,C - 69 to 80,79.0,BB120JX,100010341254.0,77 Hargrove Avenue,0.4754 +6933,244953,566 Padiham Road Burnley Lancashire BB12 6TQ,,, BB12 6TQ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2015,D - 55 to 68,63.0,C - 69 to 80,79.0,BB126TQ,100010351141.0,"566, Padiham Road",0.4652 +7039,362562,568 Padiham Road Burnley Lancashire BB12 6TQ,,, BB12 6TQ,House: End Terrace,Domestic EPC Required,EPC Present,06 Sep 2022,D - 55 to 68,64.0,C - 69 to 80,79.0,BB126TQ,100010351142.0,568 Padiham Road,0.4652 +7846,362616,584 Padiham Road Burnley Lancashire BB12 6TQ,,, BB12 6TQ,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB126TQ,100010351150.0,584 Padiham Road,0.4652 +8044,224365,588 Padiham Road Burnley Lancashire BB12 6TQ,,, BB12 6TQ,House: End Terrace,Domestic EPC Required,EPC Present,17 Oct 2017,D - 55 to 68,55.0,C - 69 to 80,74.0,BB126TQ,100010351152.0,"588, Padiham Road",0.4652 +6944,197462,3 East Street Padiham Lancashire BB12 8HX,,, BB12 8HX,House: End Terrace,Domestic EPC Required,EPC Present,12 Feb 2013,E - 39 to 54,48.0,C - 69 to 80,80.0,BB128HX,100010337891.0,"3, East Street, Padiham",0.6085 +6976,229513,1 Chipping Grove Burnley Lancashire BB10 4PA,,, BB10 4PA,House: End Terrace,Domestic EPC Required,EPC Present,29 Oct 2014,D - 55 to 68,68.0,B - 81 to 91,85.0,BB104PA,100010333728.0,"1, Chipping Grove",0.4652 +7225,324889,6 Chipping Grove Burnley Lancashire BB10 4PA,,, BB10 4PA,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Nov 2019,C - 69 to 80,71.0,B - 81 to 91,89.0,BB104PA,100010333733.0,"6, Chipping Grove",0.4652 +6978,362555,11 Rutland Avenue Burnley Lancashire BB12 6AN,,, BB12 6AN,House: End Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB126AN,100010355071.0,11 Rutland Avenue,0.4705 +7372,362582,19 Rutland Avenue Burnley Lancashire BB12 6AN,,, BB12 6AN,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB126AN,100010355079.0,19 Rutland Avenue,0.4705 +7422,89438,20 Rutland Avenue Burnley Lancashire BB12 6AN,,, BB12 6AN,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Nov 2009,C - 69 to 80,75.0,C - 69 to 80,79.0,BB126AN,100010355080.0,"20, Rutland Avenue",0.4705 +7519,362594,22 Rutland Avenue Burnley Lancashire BB12 6AN,,, BB12 6AN,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB126AN,100010355082.0,22 Rutland Avenue,0.4705 +7724,362607,26 Rutland Avenue Burnley Lancashire BB12 6AN,,, BB12 6AN,House: End Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB126AN,100010355086.0,26 Rutland Avenue,0.4705 +7991,76887,31 Rutland Avenue Burnley Lancashire BB12 6AN,,, BB12 6AN,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Aug 2009,C - 69 to 80,69.0,C - 69 to 80,75.0,BB126AN,100010355091.0,"31, Rutland Avenue",0.4705 +8037,187509,32 Rutland Avenue Burnley Lancashire BB12 6AN,,, BB12 6AN,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Aug 2025,C - 69 to 80,75.0,B - 81 to 91,81.0,BB126AN,100010355092.0,32 Rutland Avenue,0.4705 +7007,203984,5 Thames Avenue Burnley Lancashire BB10 2PZ,,, BB10 2PZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 May 2013,D - 55 to 68,64.0,B - 81 to 91,85.0,BB102PZ,100010357973.0,"5, Thames Avenue",0.4596 +7109,40976,7 Thames Avenue Burnley Lancashire BB10 2PZ,,, BB10 2PZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jan 2009,D - 55 to 68,65.0,C - 69 to 80,76.0,BB102PZ,100010357974.0,"7, Thames Avenue",0.4596 +7403,76964,13 Thames Avenue Burnley Lancashire BB10 2PZ,,, BB10 2PZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Sep 2009,C - 69 to 80,69.0,C - 69 to 80,75.0,BB102PZ,100010357977.0,"13, Thames Avenue",0.4652 +7811,202632,21 Thames Avenue Burnley Lancashire BB10 2PZ,,, BB10 2PZ,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Apr 2013,D - 55 to 68,60.0,B - 81 to 91,84.0,BB102PZ,100010357981.0,"21, Thames Avenue",0.4652 +12687,325759,1 Thames Avenue Burnley Lancashire BB10 2PZ,,, BB10 2PZ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB102PZ,100010357971.0,"1, Thames Avenue",0.4596 +7085,103980,73 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,House: End Terrace,Domestic EPC Required,EPC Present,22 Nov 2010,C - 69 to 80,69.0,C - 69 to 80,72.0,BB104LA,100010359633.0,"73, Waddington Avenue",0.4845 +7190,324389,75 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Nov 2019,D - 55 to 68,66.0,B - 81 to 91,87.0,BB104LA,100010359635.0,"75, Waddington Avenue",0.4845 +7478,230646,81 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2014,D - 55 to 68,65.0,B - 81 to 91,88.0,BB104LA,100010359641.0,"81, Waddington Avenue",0.4845 +7573,119035,83 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Oct 2011,D - 55 to 68,60.0,D - 55 to 68,65.0,BB104LA,100010359643.0,"83, Waddington Avenue",0.4845 +7684,324548,85 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Nov 2019,D - 55 to 68,67.0,B - 81 to 91,86.0,BB104LA,100010359645.0,"85, Waddington Avenue",0.4845 +7791,41011,87 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Nov 2008,D - 55 to 68,68.0,C - 69 to 80,73.0,BB104LA,100010359647.0,"87, Waddington Avenue",0.4845 +7897,210881,89 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Sep 2024,D - 55 to 68,67.0,B - 81 to 91,83.0,BB104LA,100010359649.0,89 Waddington Avenue,0.4845 +8247,76842,96 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,Flat: Top,Domestic EPC Required,EPC Present,30 Jan 2026,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104LA,100010359655.0,96 Waddington Avenue,0.4845 +8348,89437,98 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,Flat: Bottom,Domestic EPC Required,EPC Present,27 Nov 2024,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104LA,100010359656.0,98 Waddington Avenue,0.4845 +8456,198891,100 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,Flat: Bottom,Domestic EPC Required,EPC Present,07 Mar 2013,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104LA,100010359657.0,"100, Waddington Avenue",0.4886 +8569,244958,102 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,Flat: Top,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,77.0,B - 81 to 91,82.0,BB104LA,100010359658.0,102 Waddington Avenue,0.4886 +8813,229679,106 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jun 2026,D - 55 to 68,68.0,B - 81 to 91,86.0,BB104LA,100010359660.0,"106, Waddington Avenue",0.4886 +9155,324547,112 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Nov 2019,D - 55 to 68,68.0,B - 81 to 91,86.0,BB104LA,100010359663.0,"112, Waddington Avenue",0.4886 +7094,234532,21 Bread Street Burnley Lancashire BB12 0PX,,, BB12 0PX,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Feb 2018,C - 69 to 80,69.0,B - 81 to 91,90.0,BB120PX,100010329785.0,"21, Bread Street",0.4596 +7802,340594,35 Bread Street Burnley Lancashire BB12 0PX,,, BB12 0PX,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Aug 2021,C - 69 to 80,71.0,B - 81 to 91,91.0,BB120PX,100010329792.0,35 Bread Street,0.4596 +10979,109086,37 Bread Street Burnley Lancashire BB12 0PX,,, BB12 0PX,House: End Terrace,Domestic EPC Required,EPC Present,29 Jul 2025,D - 55 to 68,61.0,C - 69 to 80,75.0,BB120PX,100010329793.0,37 Bread Street,0.4596 +7157,245149,1 Britannia Walk Burnley Lancashire BB11 3JW,,, BB11 3JW,House: End Terrace,Domestic EPC Required,EPC Present,16 Oct 2015,C - 69 to 80,72.0,B - 81 to 91,86.0,BB113JW,100010330457.0,"1, Britannia Walk",0.4652 +7209,230522,2 Britannia Walk Burnley Lancashire BB11 3JW,,, BB11 3JW,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Dec 2014,C - 69 to 80,73.0,B - 81 to 91,86.0,BB113JW,100010330458.0,"2, Britannia Walk",0.4652 +7307,221631,4 Britannia Walk Burnley Lancashire BB11 3JW,,, BB11 3JW,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Oct 2015,C - 69 to 80,73.0,B - 81 to 91,86.0,BB113JW,100010330460.0,"4, Britannia Walk",0.4652 +7355,252151,5 Britannia Walk Burnley Lancashire BB11 3JW,,, BB11 3JW,House: End Terrace,Domestic EPC Required,EPC Present,20 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,86.0,BB113JW,100010330461.0,"5, Britannia Walk",0.4652 +7402,76891,6 Britannia Walk Burnley Lancashire BB11 3JW,,, BB11 3JW,House: End Terrace,Domestic EPC Required,EPC Present,02 Sep 2009,D - 55 to 68,55.0,C - 69 to 80,69.0,BB113JW,100010330462.0,"6, Britannia Walk",0.4652 +7496,245824,8 Britannia Walk Burnley Lancashire BB11 3JW,,, BB11 3JW,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Nov 2015,C - 69 to 80,72.0,B - 81 to 91,86.0,BB113JW,100010330464.0,"8, Britannia Walk",0.4652 +7591,252134,10 Britannia Walk Burnley Lancashire BB11 3JW,,, BB11 3JW,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Dec 2015,B - 81 to 91,87.0,A - 92 Plus,94.0,BB113JW,100010330466.0,"10, Britannia Walk",0.4705 +7652,245422,11 Britannia Walk Burnley Lancashire BB11 3JW,,, BB11 3JW,House: End Terrace,Domestic EPC Required,EPC Present,22 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,80.0,BB113JW,100010330467.0,11 Britannia Walk,0.4705 +7167,110652,1 Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jun 2017,D - 55 to 68,65.0,B - 81 to 91,87.0,BB112NS,10003780874.0,"1, Tadema Grove",0.4536 +7367,358895,5 Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Feb 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB112NS,10003780876.0,5 Tadema Grove,0.4536 +7414,229122,6 Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Oct 2014,C - 69 to 80,70.0,B - 81 to 91,87.0,BB112NS,10003780887.0,"6, Tadema Grove",0.4536 +7552,110752,9 Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jun 2017,D - 55 to 68,65.0,B - 81 to 91,87.0,BB112NS,10003780878.0,"9, Tadema Grove",0.4536 +7661,110766,11 Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Nov 2010,D - 55 to 68,61.0,C - 69 to 80,74.0,BB112NS,10003780879.0,11 Tadema Grove,0.4596 +7877,110797,15 Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Dec 2010,D - 55 to 68,62.0,C - 69 to 80,75.0,BB112NS,10003780880.0,"15, Tadema Grove",0.4596 +7981,110808,17 Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Jun 2016,D - 55 to 68,67.0,B - 81 to 91,84.0,BB112NS,10003780881.0,"17, Tadema Grove",0.4596 +8077,275586,19 Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jun 2017,D - 55 to 68,64.0,B - 81 to 91,87.0,BB112NS,10003780882.0,"19, Tadema Grove",0.4596 +11366,226984,2a Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Jul 2014,C - 69 to 80,71.0,B - 81 to 91,88.0,BB112NS,10003780883.0,"2a, Tadema Grove",0.5117 +11367,227754,4a Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Aug 2014,C - 69 to 80,72.0,B - 81 to 91,88.0,BB112NS,10003780885.0,"4a, Tadema Grove",0.5117 +7322,324934,5 Roughlee Grove Burnley Lancashire BB10 4LE,,, BB10 4LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Dec 2019,C - 69 to 80,72.0,B - 81 to 91,88.0,BB104LE,100010354963.0,"5, Roughlee Grove",0.4652 +7665,324971,12 Roughlee Grove Burnley Lancashire BB10 4LE,,, BB10 4LE,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Dec 2019,C - 69 to 80,70.0,B - 81 to 91,87.0,BB104LE,100010354970.0,"12, Roughlee Grove",0.4705 +7720,324953,13 Roughlee Grove Burnley Lancashire BB10 4LE,,, BB10 4LE,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Dec 2019,C - 69 to 80,69.0,B - 81 to 91,87.0,BB104LE,100010354971.0,"13, Roughlee Grove",0.4705 +7357,187824,8 St Giles Street Padiham Lancashire BB12 8HL,,, BB12 8HL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,13 Sep 2012,D - 55 to 68,67.0,B - 81 to 91,90.0,BB128HL,100010356516.0,"8, St. Giles Street, Padiham",0.6317 +7452,143908,10 St Giles Street Padiham Lancashire BB12 8HL,,, BB12 8HL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Apr 2012,D - 55 to 68,63.0,B - 81 to 91,86.0,BB128HL,100010356517.0,"10, St. Giles Street, Padiham",0.6339 +7544,40995,12 St Giles Street Padiham Lancashire BB12 8HL,,, BB12 8HL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,09 Apr 2009,D - 55 to 68,66.0,C - 69 to 80,70.0,BB128HL,100010356518.0,"12, St. Giles Street, Padiham",0.6339 +7653,362604,14 St Giles Street Padiham Lancashire BB12 8HL,,, BB12 8HL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB128HL,100010356519.0,"14 St. Giles Street, Padiham",0.6339 +7759,362610,16 St Giles Street Padiham Lancashire BB12 8HL,,, BB12 8HL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB128HL,100010356520.0,"16 St. Giles Street, Padiham",0.6339 +7868,116209,18 St Giles Street Padiham Lancashire BB12 8HL,,, BB12 8HL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Jul 2011,D - 55 to 68,63.0,D - 55 to 68,67.0,BB128HL,100010356521.0,"18, St. Giles Street, Padiham",0.6339 +468,250091,34 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,23 Oct 2025,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104PY,200001126220.0,34 Edgworth Grove,0.4705 +521,251656,35 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jun 2016,D - 55 to 68,68.0,C - 69 to 80,77.0,BB104PY,200001126221.0,"35, Edgworth Grove",0.4705 +621,250092,37 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,12 May 2016,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104PY,200001126223.0,"37, Edgworth Grove",0.4705 +669,250093,38 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,09 May 2016,C - 69 to 80,74.0,C - 69 to 80,78.0,BB104PY,200001126224.0,"38, Edgworth Grove",0.4705 +717,250591,39 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,15 Jun 2016,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104PY,200001126225.0,"39, Edgworth Grove",0.4705 +820,250340,41 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,23 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,75.0,BB104PY,200001126227.0,41 Edgworth Grove,0.4705 +867,251657,42 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jun 2016,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104PY,200001126228.0,"42, Edgworth Grove",0.4705 +920,250097,43 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,14 May 2016,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104PY,200001126229.0,"43, Edgworth Grove",0.4705 +972,252105,44 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jun 2024,C - 69 to 80,73.0,C - 69 to 80,78.0,BB104PY,200001126230.0,44 Edgworth Grove,0.4705 +1026,250341,45 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,19 May 2016,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104PY,200001126231.0,"45, Edgworth Grove",0.4705 +1082,339925,46 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,25 Jul 2021,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104PY,200001126232.0,46 EDGWORTH GROVE,0.4705 +1136,252106,47 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,30 Jun 2016,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104PY,200001126233.0,47 Edgworth Grove,0.4705 +1193,250098,48 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,09 May 2016,C - 69 to 80,74.0,C - 69 to 80,78.0,BB104PY,200001126234.0,"48, Edgworth Grove",0.4705 +1301,250592,50 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,17 Jun 2016,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104PY,200001126235.0,"50, Edgworth Grove",0.4705 +1412,252001,52 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,29 Jun 2016,D - 55 to 68,66.0,C - 69 to 80,73.0,BB104PY,200001126236.0,"52, Edgworth Grove",0.4705 +1520,250593,54 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,07 Jun 2016,D - 55 to 68,64.0,C - 69 to 80,71.0,BB104PY,200001126237.0,"54, Edgworth Grove",0.4705 +1624,250099,56 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,13 May 2016,D - 55 to 68,63.0,C - 69 to 80,70.0,BB104PY,200001126238.0,"56, Edgworth Grove",0.4705 +7843,362615,1 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,02 Nov 2022,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104PY,200001126187.0,1 Edgworth Grove,0.4652 +7892,250054,2 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,28 Apr 2016,D - 55 to 68,66.0,C - 69 to 80,75.0,BB104PY,200001126188.0,"2, Edgworth Grove",0.4652 +7947,118347,3 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,25 Aug 2011,D - 55 to 68,61.0,D - 55 to 68,66.0,BB104PY,200001126189.0,"3, Edgworth Grove",0.4652 +7995,250055,4 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,28 Apr 2016,D - 55 to 68,67.0,C - 69 to 80,75.0,BB104PY,200001126190.0,"4, Edgworth Grove",0.4652 +8042,362627,5 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104PY,200001126191.0,5 Edgworth Grove,0.4652 +8090,252103,6 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,30 Jun 2016,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104PY,,, +8144,362634,7 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB104PY,200001126193.0,7 Edgworth Grove,0.4652 +8191,250056,8 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,28 Apr 2016,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104PY,200001126194.0,"8, Edgworth Grove",0.4652 +8244,210942,9 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,23 Jul 2024,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104PY,200001126195.0,9 Edgworth Grove,0.4652 +8287,250511,10 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2025,C - 69 to 80,76.0,C - 69 to 80,76.0,BB104PY,200001126196.0,10 Edgworth Grove,0.4705 +8344,199684,11 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2022,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104PY,200001126197.0,11 Edgworth Grove,0.4705 +8394,250057,12 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,28 Apr 2016,D - 55 to 68,68.0,C - 69 to 80,76.0,BB104PY,200001126198.0,"12, Edgworth Grove",0.4705 +8451,191597,13 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,12 Nov 2012,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104PY,200001126199.0,"13, Edgworth Grove",0.4705 +8501,250058,14 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,28 Apr 2016,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104PY,200001126200.0,"14, Edgworth Grove",0.4705 +8561,41043,15 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,10 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,72.0,BB104PY,200001126201.0,15 Edgworth Grove,0.4705 +8621,250087,16 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,14 May 2016,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104PY,200001126202.0,"16, Edgworth Grove",0.4705 +8685,202744,17 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104PY,200001126203.0,17 Edgworth Grove,0.4705 +8745,250059,18 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,28 Apr 2016,D - 55 to 68,65.0,C - 69 to 80,74.0,BB104PY,200001126204.0,"18, Edgworth Grove",0.4705 +8808,230228,19 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,26 Nov 2014,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104PY,200001126205.0,"19, Edgworth Grove",0.4705 +8867,250590,20 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,13 Jun 2016,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104PY,200001126206.0,"20, Edgworth Grove",0.4705 +8927,250504,21 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,02 Jun 2016,C - 69 to 80,76.0,C - 69 to 80,76.0,BB104PY,200001126207.0,"21, Edgworth Grove",0.4705 +8976,250060,22 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,28 Apr 2016,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104PY,200001126208.0,"22, Edgworth Grove",0.4705 +9037,41059,23 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,25 Jun 2025,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104PY,200001126209.0,23 Edgworth Grove,0.4705 +9087,250061,24 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,28 Apr 2016,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104PY,200001126210.0,"24, Edgworth Grove",0.4705 +9205,250088,26 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,14 May 2016,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104PY,200001126212.0,"26, Edgworth Grove",0.4705 +9266,250512,27 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,02 Jun 2016,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104PY,200001126213.0,"27, Edgworth Grove",0.4705 +9323,250089,28 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,23 Oct 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104PY,200001126214.0,28 Edgworth Grove,0.4705 +9383,250090,29 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2025,C - 69 to 80,76.0,C - 69 to 80,76.0,BB104PY,200001126215.0,29 Edgworth Grove,0.4705 +9438,250062,30 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,03 May 2016,C - 69 to 80,70.0,C - 69 to 80,76.0,BB104PY,200001126216.0,"30, Edgworth Grove",0.4705 +9494,251655,31 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,27 Jun 2016,C - 69 to 80,71.0,C - 69 to 80,78.0,BB104PY,200001126217.0,"31, Edgworth Grove",0.4705 +9540,252104,32 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,30 Jun 2016,C - 69 to 80,71.0,C - 69 to 80,78.0,BB104PY,200001126218.0,32 Edgworth Grove,0.4705 +9596,250569,33 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,01 Jun 2016,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104PY,200001126219.0,"33, Edgworth Grove",0.4705 +479,305163,25 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Semi-Detached,Domestic EPC Required,EPC Present,08 May 2019,C - 69 to 80,69.0,B - 81 to 91,84.0,BB102RH,10003758423.0,"25, Kingsbury Place",0.4754 +530,362137,26 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB102RH,10003758415.0,26 Kingsbury Place,0.4754 +582,325285,27 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: End Terrace,Domestic EPC Required,EPC Present,16 Dec 2019,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102RH,10003758414.0,"27, Kingsbury Place",0.4754 +634,204819,28 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 May 2013,D - 55 to 68,60.0,B - 81 to 91,82.0,BB102RH,10003758439.0,"28, Kingsbury Place",0.4754 +780,119599,31 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Feb 2026,C - 69 to 80,75.0,B - 81 to 91,81.0,BB102RH,10003758410.0,"31, Kingsbury Place",0.4754 +932,274448,34 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: End Terrace,Domestic EPC Required,EPC Present,19 May 2017,C - 69 to 80,73.0,B - 81 to 91,87.0,BB102RH,10003758407.0,"34, Kingsbury Place",0.4754 +985,102781,35 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 May 2024,C - 69 to 80,76.0,B - 81 to 91,90.0,BB102RH,10003758422.0,35 Kingsbury Place,0.4754 +8295,325286,1 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: End Terrace,Domestic EPC Required,EPC Present,16 Dec 2019,C - 69 to 80,69.0,B - 81 to 91,90.0,BB102RH,10003758405.0,"1, Kingsbury Place",0.4705 +8356,250534,2 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jan 2026,C - 69 to 80,73.0,C - 69 to 80,79.0,BB102RH,10003758429.0,2 Kingsbury Place,0.4705 +8579,95865,6 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: End Terrace,Domestic EPC Required,EPC Present,24 Sep 2020,C - 69 to 80,74.0,B - 81 to 91,87.0,BB102RH,10003758419.0,6 KINGSBURY PLACE,0.4705 +8634,210880,7 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Aug 2013,D - 55 to 68,68.0,B - 81 to 91,81.0,BB102RH,10003758418.0,"7, Kingsbury Place",0.4705 +8699,221651,8 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,60.0,C - 69 to 80,79.0,BB102RH,10003758417.0,"8, Kingsbury Place",0.4705 +8939,362682,12 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: End Terrace,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102RH,10003758436.0,12 Kingsbury Place,0.4754 +9161,125374,16 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Dec 2011,D - 55 to 68,65.0,D - 55 to 68,68.0,BB102RH,10003758431.0,"16, Kingsbury Place",0.4754 +9278,41071,18 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: End Terrace,Domestic EPC Required,EPC Present,10 Dec 2008,C - 69 to 80,71.0,C - 69 to 80,73.0,BB102RH,10003758430.0,"18, Kingsbury Place",0.4754 +13914,388551,9 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jun 2025,C - 69 to 80,69.0,B - 81 to 91,84.0,BB102RH,10003758416.0,9 Kingsbury Place,0.4705 +483,222431,4 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Feb 2014,C - 69 to 80,73.0,B - 81 to 91,85.0,BB115RZ,100010350901.0,"4, Padgate Place",0.4596 +536,237560,5 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Jun 2015,C - 69 to 80,69.0,B - 81 to 91,85.0,BB115RZ,100010350902.0,"5, Padgate Place",0.4596 +632,223608,7 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,Flat: Bottom,Domestic EPC Required,EPC Present,07 Dec 2025,C - 69 to 80,72.0,C - 69 to 80,74.0,BB115RZ,100010350904.0,7 Padgate Place,0.4596 +680,40671,8 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,Flat: Top,Domestic EPC Required,EPC Present,20 Feb 2026,C - 69 to 80,72.0,B - 81 to 91,90.0,BB115RZ,100010350905.0,"8, Padgate Place",0.4596 +728,253477,9 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,Flat: Top,Domestic EPC Required,EPC Present,12 Sep 2016,C - 69 to 80,76.0,C - 69 to 80,80.0,BB115RZ,100010350906.0,"9, Padgate Place",0.4596 +829,40676,11 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Sep 2008,C - 69 to 80,69.0,C - 69 to 80,72.0,BB115RZ,,, +876,89576,12 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Dec 2010,E - 39 to 54,50.0,C - 69 to 80,74.0,BB115RZ,100010350909.0,"12, Padgate Place",0.4652 +1036,40689,15 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,Bungalow: End Terr,Domestic EPC Required,EPC Present,02 Nov 2025,B - 81 to 91,84.0,B - 81 to 91,87.0,BB115RZ,100010350912.0,15 Padgate Place,0.4652 +1092,201779,16 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: End Terrace,Domestic EPC Required,EPC Present,07 Dec 2021,C - 69 to 80,74.0,B - 81 to 91,87.0,BB115RZ,100010350913.0,16 Padgate Place,0.4652 +1148,101573,17 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Oct 2010,C - 69 to 80,70.0,C - 69 to 80,75.0,BB115RZ,100010350914.0,"17, Padgate Place",0.4652 +1204,100563,18 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Mar 2011,D - 55 to 68,63.0,C - 69 to 80,76.0,BB115RZ,100010350915.0,18 Padgate Place,0.4652 +1258,40704,19 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jan 2009,C - 69 to 80,69.0,C - 69 to 80,76.0,BB115RZ,100010350916.0,"19, Padgate Place",0.4652 +1313,253473,20 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: End Terrace,Domestic EPC Required,EPC Present,23 Aug 2016,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115RZ,100010350917.0,"20, Padgate Place",0.4652 +1365,362178,21 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB115RZ,100010350918.0,21 Padgate Place,0.4652 +1422,362184,22 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115RZ,100010350919.0,22 Padgate Place,0.4652 +1474,295916,23 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Feb 2018,C - 69 to 80,70.0,B - 81 to 91,85.0,BB115RZ,100010350920.0,"23, Padgate Place",0.4652 +1584,226274,25 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Oct 2014,C - 69 to 80,69.0,B - 81 to 91,85.0,BB115RZ,100010350922.0,"25, Padgate Place",0.4652 +1641,250431,26 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: End Terrace,Domestic EPC Required,EPC Present,25 May 2016,C - 69 to 80,69.0,B - 81 to 91,84.0,BB115RZ,100010350923.0,"26, Padgate Place",0.4652 +1687,110885,27 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: End Terrace,Domestic EPC Required,EPC Present,20 Jan 2022,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115RZ,100010350924.0,27 Padgate Place,0.4652 +1744,362198,28 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115RZ,100010350925.0,28 Padgate Place,0.4652 +1798,110894,29 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Aug 2024,C - 69 to 80,72.0,B - 81 to 91,86.0,BB115RZ,100010350926.0,29 Padgate Place,0.4652 +1855,362204,30 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115RZ,100010350927.0,30 Padgate Place,0.4652 +1905,362207,31 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115RZ,100010350928.0,31 Padgate Place,0.4652 +1957,89054,32 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Oct 2009,C - 69 to 80,73.0,C - 69 to 80,78.0,BB115RZ,100010350929.0,"32, Padgate Place",0.4652 +2007,238799,33 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jan 2026,C - 69 to 80,74.0,B - 81 to 91,86.0,BB115RZ,100010350930.0,33 Padgate Place,0.4652 +2057,104059,34 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Sep 2024,C - 69 to 80,76.0,B - 81 to 91,90.0,BB115RZ,100010350931.0,34 Padgate Place,0.4652 +2105,362217,35 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115RZ,100010350932.0,35 Padgate Place,0.4652 +9555,190792,2 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Dec 2025,C - 69 to 80,75.0,B - 81 to 91,87.0,BB115RZ,100010350899.0,2 Padgate Place,0.4596 +9609,189872,3 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Oct 2012,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115RZ,100010350900.0,"3, Padgate Place",0.4596 +9735,225346,10 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,Flat: Bottom,Domestic EPC Required,EPC Present,22 May 2014,C - 69 to 80,71.0,C - 69 to 80,77.0,BB115RZ,100010350907.0,"10, Padgate Place",0.4652 +12966,359680,14 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Apr 2023,C - 69 to 80,71.0,B - 81 to 91,89.0,BB115RZ,100010350911.0,14 Padgate Place,0.4652 +484,304938,138 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,17 Apr 2019,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104QJ,100010330933.0,"138, Brownhill Avenue",0.4845 +586,314819,140 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,30 May 2019,C - 69 to 80,70.0,C - 69 to 80,72.0,BB104QJ,100010330935.0,"140, Brownhill Avenue",0.4845 +784,247417,144 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,14 Mar 2016,C - 69 to 80,72.0,C - 69 to 80,74.0,BB104QJ,100010330937.0,"144, Brownhill Avenue",0.4845 +883,182136,146 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,10 Jul 2012,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104QJ,100010330938.0,"146, Brownhill Avenue",0.4845 +989,305158,148 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,08 May 2019,C - 69 to 80,74.0,C - 69 to 80,74.0,BB104QJ,100010330939.0,"148, Brownhill Avenue",0.4845 +1099,125501,150 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,13 Dec 2011,C - 69 to 80,71.0,C - 69 to 80,75.0,BB104QJ,100010330941.0,"150, Brownhill Avenue",0.4845 +6995,304937,88 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,23 Apr 2019,D - 55 to 68,67.0,C - 69 to 80,73.0,BB104QJ,100010330885.0,"88, Brownhill Avenue",0.4801 +7098,227012,90 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,18 Jul 2014,C - 69 to 80,71.0,C - 69 to 80,75.0,BB104QJ,100010330887.0,"90, Brownhill Avenue",0.4801 +7195,90103,92 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,23 Jan 2010,C - 69 to 80,77.0,B - 81 to 91,81.0,BB104QJ,100010330889.0,"92, Brownhill Avenue",0.4801 +7295,244455,94 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,24 Nov 2015,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104QJ,100010330891.0,"94, Brownhill Avenue",0.4801 +7392,305189,96 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,14 May 2019,D - 55 to 68,68.0,C - 69 to 80,73.0,BB104QJ,100010330893.0,"96, Brownhill Avenue",0.4801 +7488,111107,98 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2011,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QJ,100010330894.0,"98, Brownhill Avenue",0.4801 +7580,40997,100 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,09 Jun 2009,C - 69 to 80,77.0,B - 81 to 91,81.0,BB104QJ,100010330896.0,"100, Brownhill Avenue",0.4845 +7689,271903,102 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,15 Feb 2017,D - 55 to 68,68.0,C - 69 to 80,73.0,BB104QJ,100010330898.0,"102, Brownhill Avenue",0.4845 +7797,362613,104 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104QJ,100010330900.0,104 Brownhill Avenue,0.4845 +8104,234327,110 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,20 Mar 2015,C - 69 to 80,75.0,C - 69 to 80,75.0,BB104QJ,100010330906.0,"110, Brownhill Avenue",0.4845 +8202,362636,112 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104QJ,100010330908.0,112 Brownhill Avenue,0.4845 +8305,220118,114 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,20 Nov 2013,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104QJ,100010330910.0,"114, Brownhill Avenue",0.4845 +8411,203575,116 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,25 Apr 2013,C - 69 to 80,72.0,C - 69 to 80,73.0,BB104QJ,100010330911.0,116 Brownhill Avenue,0.4845 +8518,305165,118 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,10 May 2019,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104QJ,100010330913.0,"118, Brownhill Avenue",0.4845 +8641,204089,120 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,16 May 2013,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QJ,100010330915.0,"120, Brownhill Avenue",0.4845 +8765,41048,122 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,23 Oct 2025,D - 55 to 68,67.0,C - 69 to 80,69.0,BB104QJ,100010330917.0,122 Brownhill Avenue,0.4845 +8883,222618,124 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,03 Mar 2014,C - 69 to 80,75.0,C - 69 to 80,76.0,BB104QJ,100010330919.0,"124, Brownhill Avenue",0.4845 +8989,98159,126 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,24 Aug 2022,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104QJ,100010330921.0,126 Brownhill Avenue,0.4845 +9103,362695,128 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,24 Nov 2022,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104QJ,100010330923.0,128 Brownhill Avenue,0.4845 +9339,252264,132 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,07 Jul 2016,B - 81 to 91,90.0,A - 92 Plus,94.0,BB104QJ,100010330927.0,"132, Brownhill Avenue",0.4845 +9455,220609,134 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,31 Jul 2023,B - 81 to 91,90.0,B - 81 to 91,90.0,BB104QJ,100010330929.0,134 Brownhill Avenue,0.4845 +9559,76892,136 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,02 Sep 2009,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104QJ,100010330931.0,"136, Brownhill Avenue",0.4845 +487,252164,18 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Top,Domestic EPC Required,EPC Present,07 Dec 2017,C - 69 to 80,71.0,C - 69 to 80,74.0,BB115HY,100010336852.0,"18, Dalton Street",0.4652 +542,40663,19 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Feb 2026,C - 69 to 80,75.0,B - 81 to 91,82.0,BB115HY,100010336853.0,"19, Dalton Street",0.4652 +588,250532,20 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Bottom,Domestic EPC Required,EPC Present,07 Jun 2016,C - 69 to 80,70.0,C - 69 to 80,75.0,BB115HY,100010336854.0,"20, Dalton Street",0.4652 +639,362146,21 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Jun 2022,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115HY,100010336855.0,21 Dalton Street,0.4652 +789,243351,24 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Top,Domestic EPC Required,EPC Present,29 Oct 2015,C - 69 to 80,72.0,C - 69 to 80,72.0,BB115HY,100010336858.0,"24, Dalton Street",0.4652 +838,188286,25 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jun 2024,C - 69 to 80,74.0,B - 81 to 91,91.0,BB115HY,100010336859.0,25 Dalton Street,0.4652 +892,40680,26 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Top,Domestic EPC Required,EPC Present,05 Dec 2023,C - 69 to 80,74.0,C - 69 to 80,74.0,BB115HY,100010336860.0,26 Dalton Street,0.4652 +997,97719,28 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Bottom,Domestic EPC Required,EPC Present,11 Aug 2010,D - 55 to 68,66.0,C - 69 to 80,75.0,BB115HY,100010336862.0,"28, Dalton Street",0.4652 +1108,252183,30 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Bottom,Domestic EPC Required,EPC Present,15 Jul 2025,C - 69 to 80,73.0,C - 69 to 80,76.0,BB115HY,100010336864.0,30 Dalton Street,0.4652 +1157,89771,31 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,86.0,BB115HY,100010336865.0,31 Dalton Street,0.4652 +1213,362168,32 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Top,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,75.0,BB115HY,100010336866.0,32 Dalton Street,0.4652 +2162,253479,50 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,12 Sep 2016,C - 69 to 80,70.0,B - 81 to 91,90.0,BB115HY,100010336874.0,"50, Dalton Street",0.4652 +8770,96148,2 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Aug 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115HY,100010336836.0,2 Dalton Street,0.4596 +8888,304936,4 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Apr 2019,D - 55 to 68,68.0,B - 81 to 91,84.0,BB115HY,100010336838.0,"4, Dalton Street",0.4596 +8995,234697,6 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Dec 2025,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115HY,100010336840.0,6 Dalton Street,0.4596 +9173,41065,9 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Oct 2008,D - 55 to 68,67.0,C - 69 to 80,71.0,BB115HY,100010336843.0,"9, Dalton Street",0.4596 +9224,90141,10 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Top,Domestic EPC Required,EPC Present,24 Nov 2025,C - 69 to 80,76.0,C - 69 to 80,77.0,BB115HY,100010336844.0,10 Dalton Street,0.4652 +9290,41072,11 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,66.0,C - 69 to 80,74.0,BB115HY,100010336845.0,11 Dalton Street,0.4652 +9341,275585,12 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jun 2017,D - 55 to 68,68.0,C - 69 to 80,73.0,BB115HY,100010336846.0,"12, Dalton Street",0.4652 +9405,69498,13 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,77.0,BB115HY,100010336847.0,13 Dalton Street,0.4652 +9458,136630,14 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Bottom,Domestic EPC Required,EPC Present,06 Jan 2026,C - 69 to 80,72.0,C - 69 to 80,74.0,BB115HY,100010336848.0,14 Dalton Street,0.4652 +9566,103975,16 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Top,Domestic EPC Required,EPC Present,10 Jun 2024,C - 69 to 80,73.0,C - 69 to 80,76.0,BB115HY,100010336850.0,16 Dalton Street,0.4652 +10997,112588,52 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,06 Apr 2011,D - 55 to 68,61.0,C - 69 to 80,72.0,BB115HY,100010336875.0,"52, Dalton Street",0.4652 +491,40658,20 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,09 Feb 2026,C - 69 to 80,75.0,C - 69 to 80,80.0,BB127LQ,100010359842.0,"20, Water Street, Hapton",0.5389 +549,225825,21 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,02 Jun 2014,D - 55 to 68,65.0,B - 81 to 91,88.0,BB127LQ,100010359843.0,"21, Water Street, Hapton",0.5389 +643,245155,23 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,01 Nov 2025,B - 81 to 91,82.0,B - 81 to 91,85.0,BB127LQ,100010359844.0,"23 Water Street, Hapton",0.5389 +743,90320,25 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Mar 2010,C - 69 to 80,72.0,C - 69 to 80,74.0,BB127LQ,100010359845.0,"25, Water Street, Hapton",0.5389 +844,246347,27 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB127LQ,100010359846.0,"27 Water Street, Hapton",0.5389 +8648,245156,2 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,75.0,B - 81 to 91,81.0,BB127LQ,100010359824.0,"2 Water Street, Hapton",0.535 +8772,115841,4 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,77.0,B - 81 to 91,81.0,BB127LQ,100010359826.0,"4 Water Street, Hapton",0.535 +8892,95419,6 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 May 2010,C - 69 to 80,70.0,C - 69 to 80,75.0,BB127LQ,100010359828.0,"6, Water Street, Hapton",0.535 +8999,221673,8 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,15 Jul 2014,D - 55 to 68,65.0,A - 92 Plus,97.0,BB127LQ,100010359830.0,"8, Water Street, Hapton",0.535 +9110,246348,10 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 Oct 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB127LQ,100010359832.0,"10 Water Street, Hapton",0.5389 +9228,232168,12 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,26 Jan 2015,D - 55 to 68,64.0,B - 81 to 91,86.0,BB127LQ,100010359834.0,"12, Water Street, Hapton",0.5389 +9346,234699,14 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,79.0,B - 81 to 91,85.0,BB127LQ,100010359836.0,"14 Water Street, Hapton",0.5389 +9462,41078,16 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,05 Mar 2009,C - 69 to 80,69.0,C - 69 to 80,72.0,BB127LQ,100010359838.0,"16, Water Street, Hapton",0.5389 +496,250244,21 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Top,Domestic EPC Required,EPC Present,09 May 2016,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104NF,100010352283.0,"21, Pleasington Grove",0.4845 +599,250245,23 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Top,Domestic EPC Required,EPC Present,05 May 2016,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104NF,100010352284.0,"23, Pleasington Grove",0.4845 +8535,250100,1 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,22 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,73.0,BB104NF,100010352265.0,1 Pleasington Grove,0.4801 +8602,76902,2 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,25 Jun 2025,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104NF,100010352266.0,2 Pleasington Grove,0.4801 +8657,250101,3 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,22 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,73.0,BB104NF,100010352267.0,3 Pleasington Grove,0.4801 +8723,223677,4 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,22 Apr 2014,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104NF,100010352268.0,"4, Pleasington Grove",0.4801 +8780,250113,5 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Top,Domestic EPC Required,EPC Present,05 May 2016,C - 69 to 80,71.0,C - 69 to 80,75.0,BB104NF,100010352269.0,"5, Pleasington Grove",0.4801 +8843,323719,6 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Top,Domestic EPC Required,EPC Present,31 Oct 2019,C - 69 to 80,75.0,C - 69 to 80,76.0,BB104NF,100010352270.0,"6, Pleasington Grove",0.4801 +8902,250132,7 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Top,Domestic EPC Required,EPC Present,14 May 2016,C - 69 to 80,74.0,C - 69 to 80,78.0,BB104NF,100010352271.0,"7, Pleasington Grove",0.4801 +9009,250166,9 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,05 May 2016,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104NF,100010352273.0,"9, Pleasington Grove",0.4801 +9063,211782,10 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,23 Oct 2013,C - 69 to 80,71.0,C - 69 to 80,78.0,BB104NF,100010352274.0,"10, Pleasington Grove",0.4845 +9116,252156,11 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,05 May 2016,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104NF,100010352275.0,"11, Pleasington Grove",0.4845 +9186,323718,12 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,31 Oct 2019,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104NF,100010352276.0,"12, Pleasington Grove",0.4845 +9233,250167,13 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Top,Domestic EPC Required,EPC Present,05 May 2016,C - 69 to 80,70.0,C - 69 to 80,76.0,BB104NF,100010352277.0,"13, Pleasington Grove",0.4845 +9301,96323,14 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Top,Domestic EPC Required,EPC Present,09 Jul 2010,C - 69 to 80,75.0,C - 69 to 80,80.0,BB104NF,100010352278.0,"14, Pleasington Grove",0.4845 +9355,250228,15 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Top,Domestic EPC Required,EPC Present,05 May 2016,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104NF,100010352279.0,"15, Pleasington Grove",0.4845 +9417,295072,16 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Top,Domestic EPC Required,EPC Present,12 Dec 2017,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104NF,100010352280.0,"16, Pleasington Grove",0.4845 +9470,250229,17 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,05 May 2016,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104NF,100010352281.0,"17, Pleasington Grove",0.4845 +9570,250238,19 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,22 Nov 2025,D - 55 to 68,63.0,C - 69 to 80,75.0,BB104NF,100010352282.0,19 Pleasington Grove,0.4845 +498,40659,25 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Jul 2018,D - 55 to 68,63.0,B - 81 to 91,81.0,BB114EA,100010345292.0,"25, Lanark Street",0.4652 +8317,115739,1 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Flat: Top,Domestic EPC Required,EPC Present,08 Jul 2011,D - 55 to 68,65.0,C - 69 to 80,72.0,BB114EA,100010345270.0,"1, Lanark Street",0.4596 +8369,252204,2 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Jun 2011,E - 39 to 54,50.0,D - 55 to 68,68.0,BB114EA,100010345271.0,"2, Lanark Street",0.4596 +8419,76851,3 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Flat: Bottom,Domestic EPC Required,EPC Present,17 Aug 2009,C - 69 to 80,74.0,C - 69 to 80,77.0,BB114EA,100010345272.0,"3, Lanark Street",0.4596 +8479,252211,4 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Jul 2018,D - 55 to 68,66.0,B - 81 to 91,83.0,BB114EA,100010345273.0,"4, Lanark Street",0.4596 +8533,89052,5 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Flat: Bottom,Domestic EPC Required,EPC Present,30 Oct 2009,C - 69 to 80,75.0,C - 69 to 80,76.0,BB114EA,100010345274.0,"5, Lanark Street",0.4596 +8600,41045,6 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Nov 2025,D - 55 to 68,63.0,C - 69 to 80,71.0,BB114EA,100010345275.0,6 Lanark Street,0.4596 +8659,232172,7 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Flat: Top,Domestic EPC Required,EPC Present,02 Jan 2015,C - 69 to 80,74.0,C - 69 to 80,76.0,BB114EA,100010345276.0,"7, Lanark Street",0.4596 +8782,225869,9 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,01 Dec 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB114EA,100010345278.0,9 Lanark Street,0.4596 +8841,41051,10 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Aug 2018,D - 55 to 68,67.0,B - 81 to 91,85.0,BB114EA,100010345279.0,"10, Lanark Street",0.4652 +8896,243653,11 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,01 Dec 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB114EA,100010345280.0,11 Lanark Street,0.4652 +9006,252194,13 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,31 Jul 2025,C - 69 to 80,71.0,C - 69 to 80,79.0,BB114EA,100010345282.0,13 Lanark Street,0.4652 +9062,227040,14 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Dec 2025,D - 55 to 68,67.0,C - 69 to 80,75.0,BB114EA,100010345283.0,14 Lanark Street,0.4652 +9117,114741,15 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,28 Nov 2025,D - 55 to 68,56.0,D - 55 to 68,65.0,BB114EA,100010345284.0,15 Lanark Street,0.4652 +9235,250580,17 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Flat: Top,Domestic EPC Required,EPC Present,15 Jun 2016,C - 69 to 80,74.0,C - 69 to 80,75.0,BB114EA,100010345286.0,"17, Lanark Street",0.4652 +9303,41073,18 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,67.0,C - 69 to 80,74.0,BB114EA,100010345287.0,18 Lanark Street,0.4652 +9356,41075,19 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Flat: Bottom,Domestic EPC Required,EPC Present,28 Aug 2014,C - 69 to 80,70.0,C - 69 to 80,74.0,BB114EA,100010345288.0,"19, Lanark Street",0.4652 +9414,125083,20 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Nov 2011,D - 55 to 68,67.0,D - 55 to 68,68.0,BB114EA,100010345289.0,"20, Lanark Street",0.4652 +9466,105064,21 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Flat: Bottom,Domestic EPC Required,EPC Present,22 Aug 2025,C - 69 to 80,72.0,C - 69 to 80,76.0,BB114EA,100010345290.0,21 Lanark Street,0.4652 +9572,41081,23 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Flat: Top,Domestic EPC Required,EPC Present,31 Dec 2008,D - 55 to 68,61.0,C - 69 to 80,74.0,BB114EA,100010345291.0,"23, Lanark Street",0.4652 +500,362135,95 Blacker Street Burnley Lancashire BB10 2AF,,, BB10 2AF,House: End Terrace,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB102AF,100010329240.0,95 Blacker Street,0.4705 +898,236530,103 Blacker Street Burnley Lancashire BB10 2AF,,, BB10 2AF,House: Semi-Detached,Domestic EPC Required,EPC Present,29 May 2015,D - 55 to 68,55.0,B - 81 to 91,83.0,BB102AF,100010329244.0,"103, Blacker Street",0.4754 +1224,362170,109 Blacker Street Burnley Lancashire BB10 2AF,,, BB10 2AF,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB102AF,100010329247.0,109 Blacker Street,0.4754 +5397,223445,12 Blacker Street Burnley Lancashire BB10 2AF,,, BB10 2AF,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2014,D - 55 to 68,67.0,B - 81 to 91,83.0,BB102AF,100010329228.0,"12, Blacker Street",0.4705 +5600,110798,16 Blacker Street Burnley Lancashire BB10 2AF,,, BB10 2AF,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Jan 2026,D - 55 to 68,58.0,C - 69 to 80,78.0,BB102AF,100010329230.0,16 Blacker Street,0.4705 +8898,88999,81 Blacker Street Burnley Lancashire BB10 2AF,,, BB10 2AF,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jan 2026,D - 55 to 68,58.0,C - 69 to 80,73.0,BB102AF,100010329233.0,81 Blacker Street,0.4705 +508,109804,38 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,22 Oct 2025,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104NX,100010333553.0,38 Chatburn Avenue,0.4754 +657,252281,41 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,14 Jul 2016,C - 69 to 80,69.0,C - 69 to 80,78.0,BB104NX,100010333555.0,"41, Chatburn Avenue",0.4754 +756,100566,43 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,02 Feb 2026,D - 55 to 68,63.0,C - 69 to 80,71.0,BB104NX,100010333557.0,"43, Chatburn Avenue",0.4754 +807,323190,44 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2019,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104NX,100010333558.0,"44, Chatburn Avenue",0.4754 +858,100533,45 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,16 Sep 2010,D - 55 to 68,64.0,C - 69 to 80,75.0,BB104NX,100010333559.0,"45, Chatburn Avenue",0.4754 +907,323189,46 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2019,D - 55 to 68,68.0,C - 69 to 80,77.0,BB104NX,100010333560.0,"46, Chatburn Avenue",0.4754 +958,95024,47 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,25 Feb 2026,C - 69 to 80,75.0,C - 69 to 80,75.0,BB104NX,100010333561.0,"47, Chatburn Avenue",0.4754 +1009,323191,48 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,27 Sep 2019,C - 69 to 80,77.0,C - 69 to 80,78.0,BB104NX,100010333562.0,"48, Chatburn Avenue",0.4754 +1286,208555,53 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,21 Jan 2026,D - 55 to 68,66.0,C - 69 to 80,75.0,BB104NX,100010333565.0,53 Chatburn Avenue,0.4754 +1712,40730,61 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,12 Feb 2009,C - 69 to 80,77.0,C - 69 to 80,78.0,BB104NX,100010333569.0,"61, Chatburn Avenue",0.4754 +1822,243004,63 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,22 Oct 2015,C - 69 to 80,69.0,C - 69 to 80,77.0,BB104NX,100010333570.0,"63, Chatburn Avenue",0.4754 +7657,323322,1 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Oct 2019,D - 55 to 68,65.0,C - 69 to 80,80.0,BB104NX,100010333519.0,"1, Chatburn Avenue",0.4705 +7709,195779,2 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,18 Jan 2013,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104NX,100010333520.0,"2, Chatburn Avenue",0.4705 +7817,76843,4 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,07 Nov 2021,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104NX,100010333522.0,4 Chatburn Avenue,0.4705 +7872,323193,5 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2019,C - 69 to 80,73.0,B - 81 to 91,87.0,BB104NX,100010333523.0,"5, Chatburn Avenue",0.4705 +7923,222020,6 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2014,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104NX,100010333524.0,"6, Chatburn Avenue",0.4705 +8070,323194,9 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2019,C - 69 to 80,73.0,B - 81 to 91,88.0,BB104NX,100010333527.0,"9, Chatburn Avenue",0.4705 +8125,247017,10 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,03 Mar 2016,D - 55 to 68,66.0,C - 69 to 80,77.0,BB104NX,100010333528.0,"10, Chatburn Avenue",0.4754 +8224,232310,12 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,15 Jul 2025,D - 55 to 68,63.0,C - 69 to 80,73.0,BB104NX,100010333530.0,12 Chatburn Avenue,0.4754 +8274,125011,13 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,14 Nov 2011,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104NX,100010333531.0,"13, Chatburn Avenue",0.4754 +8376,208554,15 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,24 Dec 2024,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104NX,100010333533.0,15 Chatburn Avenue,0.4754 +8487,94976,17 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,17 Oct 2024,C - 69 to 80,71.0,C - 69 to 80,74.0,BB104NX,100010333535.0,17 Chatburn Avenue,0.4754 +8541,323187,18 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2019,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104NX,100010333536.0,"18, Chatburn Avenue",0.4754 +8609,229296,19 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,28 Oct 2014,D - 55 to 68,68.0,C - 69 to 80,78.0,BB104NX,100010333537.0,"19, Chatburn Avenue",0.4754 +8963,362684,25 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104NX,100010333541.0,25 Chatburn Avenue,0.4754 +9073,362694,27 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,74.0,C - 69 to 80,78.0,BB104NX,100010333543.0,27 Chatburn Avenue,0.4754 +9129,41063,28 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,03 Nov 2008,C - 69 to 80,73.0,C - 69 to 80,75.0,BB104NX,100010333544.0,"28, Chatburn Avenue",0.4754 +9247,323192,30 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2019,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104NX,100010333546.0,"30, Chatburn Avenue",0.4754 +9309,323188,31 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2019,D - 55 to 68,63.0,C - 69 to 80,74.0,BB104NX,100010333547.0,"31, Chatburn Avenue",0.4754 +9425,246547,33 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,02 Feb 2016,D - 55 to 68,66.0,C - 69 to 80,77.0,BB104NX,100010333549.0,"33, Chatburn Avenue",0.4754 +9477,89004,34 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,22 Nov 2022,C - 69 to 80,73.0,C - 69 to 80,78.0,BB104NX,100010333550.0,34 Chatburn Avenue,0.4754 +12656,303747,8 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,26 Nov 2015,D - 55 to 68,67.0,C - 69 to 80,77.0,BB104NX,100010333526.0,"8, Chatburn Avenue",0.4705 +13129,336403,55 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,10 Sep 2020,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104NX,100010333566.0,"55, Chatburn Avenue",0.4754 +13476,352601,35 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,05 Jul 2022,C - 69 to 80,74.0,C - 69 to 80,78.0,BB104NX,100010333551.0,35 Chatburn Avenue,0.4754 +13729,359407,51 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Mar 2023,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104NX,100010333564.0,51 Chatburn Avenue,0.4754 +516,323353,11 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Dec 2025,D - 55 to 68,63.0,C - 69 to 80,75.0,BB104NU,100010351748.0,11 Paythorne Avenue,0.4801 +568,323355,12 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Oct 2019,C - 69 to 80,75.0,B - 81 to 91,88.0,BB104NU,100010351749.0,"12, Paythorne Avenue",0.4801 +616,220698,13 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Dec 2013,D - 55 to 68,68.0,B - 81 to 91,85.0,BB104NU,100010351750.0,"13, Paythorne Avenue",0.4801 +815,245154,17 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Oct 2015,C - 69 to 80,71.0,B - 81 to 91,86.0,BB104NU,100010351754.0,"17, Paythorne Avenue",0.4801 +863,362153,18 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB104NU,100010351755.0,18 Paythorne Avenue,0.4801 +914,223487,19 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Apr 2014,D - 55 to 68,66.0,B - 81 to 91,83.0,BB104NU,100010351756.0,"19, Paythorne Avenue",0.4801 +1020,323742,21 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: End Terrace,Domestic EPC Required,EPC Present,04 Nov 2019,D - 55 to 68,68.0,B - 81 to 91,85.0,BB104NU,100010351758.0,"21, Paythorne Avenue",0.4801 +1132,323741,23 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Nov 2019,C - 69 to 80,71.0,B - 81 to 91,85.0,BB104NU,100010351760.0,"23, Paythorne Avenue",0.4801 +1240,323631,25 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Oct 2019,D - 55 to 68,59.0,B - 81 to 91,85.0,BB104NU,100010351762.0,"25, Paythorne Avenue",0.4801 +1509,323683,30 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Oct 2019,C - 69 to 80,69.0,B - 81 to 91,85.0,BB104NU,100010351765.0,"30, Paythorne Avenue",0.4801 +1616,102783,32 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Jul 2023,D - 55 to 68,63.0,B - 81 to 91,83.0,BB104NU,100010351766.0,32 Paythorne Avenue,0.4801 +1722,226275,34 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Feb 2026,D - 55 to 68,65.0,B - 81 to 91,85.0,BB104NU,100010351767.0,"34, Paythorne Avenue",0.4801 +1832,323354,36 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Oct 2019,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104NU,100010351768.0,"36, Paythorne Avenue",0.4801 +9142,41064,1 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,Flat: Top,Domestic EPC Required,EPC Present,01 Apr 2009,C - 69 to 80,78.0,B - 81 to 91,81.0,BB104NU,100010351739.0,"1, Paythorne Avenue",0.4754 +9200,362698,2 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: End Terrace,Domestic EPC Required,EPC Present,01 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104NU,100010351740.0,2 Paythorne Avenue,0.4754 +9258,237854,3 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,Flat: Bottom,Domestic EPC Required,EPC Present,07 Jul 2015,D - 55 to 68,63.0,C - 69 to 80,75.0,BB104NU,100010351741.0,"3, Paythorne Avenue",0.4754 +9486,340204,7 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Aug 2021,D - 55 to 68,62.0,B - 81 to 91,85.0,BB104NU,100010351745.0,7 Paythorne Avenue,0.4754 +519,325555,16 Ribble Avenue Burnley Lancashire BB10 2QB,,, BB10 2QB,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102QB,100010353835.0,"16, Ribble Avenue",0.4652 +716,234533,20 Ribble Avenue Burnley Lancashire BB10 2QB,,, BB10 2QB,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Apr 2015,D - 55 to 68,60.0,B - 81 to 91,82.0,BB102QB,100010353837.0,"20, Ribble Avenue",0.4652 +9260,325553,8 Ribble Avenue Burnley Lancashire BB10 2QB,,, BB10 2QB,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,76.0,B - 81 to 91,88.0,BB102QB,100010353831.0,"8, Ribble Avenue",0.4596 +9489,197108,12 Ribble Avenue Burnley Lancashire BB10 2QB,,, BB10 2QB,House: End Terrace,Domestic EPC Required,EPC Present,11 Jan 2013,D - 55 to 68,59.0,B - 81 to 91,84.0,BB102QB,100010353833.0,"12, Ribble Avenue",0.4652 +9591,325552,14 Ribble Avenue Burnley Lancashire BB10 2QB,,, BB10 2QB,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,76.0,B - 81 to 91,88.0,BB102QB,100010353834.0,"14, Ribble Avenue",0.4652 +10898,95346,18 Ribble Avenue Burnley Lancashire BB10 2QB,,, BB10 2QB,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Mar 2009,E - 39 to 54,51.0,D - 55 to 68,68.0,BB102QB,100010353836.0,"18, Ribble Avenue",0.4652 +527,245194,135 Eastern Avenue Burnley Lancashire BB10 2AS,,, BB10 2AS,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,11 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,90.0,BB102AS,100010337978.0,"135, Eastern Avenue",0.4754 +626,94868,137 Eastern Avenue Burnley Lancashire BB10 2AS,,, BB10 2AS,Bungalow: End Terr,Domestic EPC Required,EPC Present,01 Apr 2010,C - 69 to 80,69.0,C - 69 to 80,74.0,BB102AS,100010337979.0,"137, Eastern Avenue",0.4754 +725,274961,139 Eastern Avenue Burnley Lancashire BB10 2AS,,, BB10 2AS,Bungalow: End Terr,Domestic EPC Required,EPC Present,21 Jun 2017,D - 55 to 68,66.0,B - 81 to 91,90.0,BB102AS,100010337980.0,"139, Eastern Avenue",0.4754 +826,100138,141 Eastern Avenue Burnley Lancashire BB10 2AS,,, BB10 2AS,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,70.0,B - 81 to 91,89.0,BB102AS,100010337981.0,141 Eastern Avenue,0.4754 +924,208336,143 Eastern Avenue Burnley Lancashire BB10 2AS,,, BB10 2AS,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,01 Dec 2025,D - 55 to 68,68.0,C - 69 to 80,78.0,BB102AS,100010337982.0,143 Eastern Avenue,0.4754 +1031,40688,145 Eastern Avenue Burnley Lancashire BB10 2AS,,, BB10 2AS,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Mar 2009,C - 69 to 80,69.0,C - 69 to 80,75.0,BB102AS,100010337983.0,"145, Eastern Avenue",0.4754 +9500,325761,131 Eastern Avenue Burnley Lancashire BB10 2AS,,, BB10 2AS,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,90.0,BB102AS,100010337976.0,"131, Eastern Avenue",0.4754 +9602,325762,133 Eastern Avenue Burnley Lancashire BB10 2AS,,, BB10 2AS,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,27 Jan 2020,D - 55 to 68,57.0,B - 81 to 91,91.0,BB102AS,100010337977.0,133 Eastern Avenue,0.4754 +533,245146,23 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Oct 2015,C - 69 to 80,71.0,B - 81 to 91,89.0,BB128NH,100010326739.0,"23, Adamson Street, Padiham",0.6214 +579,362141,24 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,88.0,BB128NH,100010326740.0,"24 Adamson Street, Padiham",0.6214 +679,105066,26 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,31 Oct 2025,B - 81 to 91,88.0,B - 81 to 91,90.0,BB128NH,100010326742.0,"26 Adamson Street, Padiham",0.6214 +775,221142,28 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,05 Dec 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB128NH,100010326743.0,"28 Adamson Street, Padiham",0.6214 +874,245816,30 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,91.0,BB128NH,100010326744.0,"30, Adamson Street, Padiham",0.6214 +980,89066,32 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,26 May 2023,C - 69 to 80,76.0,C - 69 to 80,80.0,BB128NH,100010326745.0,"32 Adamson Street, Padiham",0.6214 +1205,246178,36 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Dec 2015,D - 55 to 68,62.0,B - 81 to 91,85.0,BB128NH,100010326747.0,"36, Adamson Street, Padiham",0.6214 +1315,243001,38 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Oct 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB128NH,100010326748.0,"38, Adamson Street, Padiham",0.6214 +8516,362655,2 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Sep 2023,D - 55 to 68,65.0,B - 81 to 91,87.0,BB128NH,100010326720.0,"2 Adamson Street, Padiham",0.6185 +8760,362673,6 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Sep 2023,D - 55 to 68,65.0,B - 81 to 91,87.0,BB128NH,100010326722.0,"6 Adamson Street, Padiham",0.6185 +8821,246344,7 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,31 Oct 2025,B - 81 to 91,84.0,B - 81 to 91,86.0,BB128NH,100010326723.0,"7 Adamson Street, Padiham",0.6185 +8940,245693,9 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,80.0,B - 81 to 91,83.0,BB128NH,100010326725.0,"9 Adamson Street, Padiham",0.6185 +9047,245695,11 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,90.0,BB128NH,100010326727.0,"11, Adamson Street, Padiham",0.6214 +9159,246342,13 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128NH,100010326729.0,"13, Adamson Street, Padiham",0.6214 +9276,97626,15 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jun 2024,C - 69 to 80,78.0,B - 81 to 91,87.0,BB128NH,100010326731.0,"15 Adamson Street, Padiham",0.6214 +9512,246343,19 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,11 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,88.0,BB128NH,100010326735.0,"19, Adamson Street, Padiham",0.6214 +9550,231197,20 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Jan 2015,D - 55 to 68,65.0,B - 81 to 91,91.0,BB128NH,100010326736.0,"20, Adamson Street, Padiham",0.6214 +12758,322250,21 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,72.0,C - 69 to 80,80.0,BB128NH,100010326737.0,"21 Adamson Street, Padiham",0.6214 +534,40660,26 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Dec 2008,C - 69 to 80,69.0,C - 69 to 80,76.0,BB128PD,100010361205.0,"26, Windermere Road, Padiham",0.6242 +584,40666,27 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: End Terrace,Domestic EPC Required,EPC Present,21 Nov 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB128PD,100010361206.0,"27 Windermere Road, Padiham",0.6242 +833,192265,32 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: End Terrace,Domestic EPC Required,EPC Present,19 Jan 2026,C - 69 to 80,71.0,B - 81 to 91,86.0,BB128PD,100010361211.0,"32 Windermere Road, Padiham",0.6242 +1532,362188,45 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: End Terrace,Domestic EPC Required,EPC Present,21 Aug 2022,D - 55 to 68,67.0,B - 81 to 91,82.0,BB128PD,100010361218.0,"45 Windermere Road, Padiham",0.6242 +1638,103135,47 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Nov 2010,C - 69 to 80,72.0,C - 69 to 80,77.0,BB128PD,100010361219.0,"47, Windermere Road, Padiham",0.6242 +1743,338981,49 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Jun 2021,D - 55 to 68,67.0,B - 81 to 91,86.0,BB128PD,100010361220.0,"49 WINDERMERE ROAD, PADIHAM",0.6242 +1854,40737,51 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: End Terrace,Domestic EPC Required,EPC Present,30 May 2019,C - 69 to 80,69.0,B - 81 to 91,85.0,BB128PD,100010361221.0,"51 Windermere Road, Padiham",0.6242 +1956,250529,53 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: End Terrace,Domestic EPC Required,EPC Present,07 Jun 2016,D - 55 to 68,64.0,B - 81 to 91,85.0,BB128PD,100010361222.0,"53, Windermere Road, Padiham",0.6242 +9214,362700,17 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: End Terrace,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB128PD,100010361196.0,"17 Windermere Road, Padiham",0.6242 +9333,362705,19 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB128PD,100010361198.0,"19 Windermere Road, Padiham",0.6242 +9454,220121,21 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2013,D - 55 to 68,68.0,B - 81 to 91,86.0,BB128PD,100010361200.0,"21, Windermere Road, Padiham",0.6242 +9510,181036,22 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: End Terrace,Domestic EPC Required,EPC Present,22 Jun 2012,D - 55 to 68,65.0,B - 81 to 91,83.0,BB128PD,100010361201.0,"22, Windermere Road, Padiham",0.6242 +535,40661,65 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Flat: Bottom,Domestic EPC Required,EPC Present,28 Oct 2025,D - 55 to 68,64.0,C - 69 to 80,72.0,BB114EB,100010341473.0,65 Harold Street,0.4652 +629,40668,67 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Flat: Bottom,Domestic EPC Required,EPC Present,26 Jan 2009,C - 69 to 80,70.0,C - 69 to 80,77.0,BB114EB,100010341475.0,"67, Harold Street",0.4652 +727,107912,69 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Flat: Top,Domestic EPC Required,EPC Present,15 Aug 2024,D - 55 to 68,62.0,C - 69 to 80,71.0,BB114EB,100010341477.0,69 Harold Street,0.4652 +828,221603,71 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 Dec 2013,D - 55 to 68,66.0,B - 81 to 91,88.0,BB114EB,100010341479.0,"71, Harold Street",0.4652 +930,40681,73 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 May 2009,D - 55 to 68,68.0,D - 55 to 68,68.0,BB114EB,100010341481.0,"73, Harold Street",0.4652 +1038,271934,75 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Feb 2017,D - 55 to 68,64.0,B - 81 to 91,85.0,BB114EB,100010341483.0,"75, Harold Street",0.4652 +1147,198528,77 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Mar 2013,D - 55 to 68,64.0,B - 81 to 91,86.0,BB114EB,100010341485.0,"77, Harold Street",0.4652 +1257,362173,79 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Flat: Top,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,71.0,C - 69 to 80,73.0,BB114EB,100010341487.0,79 Harold Street,0.4652 +1366,125084,81 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Flat: Bottom,Domestic EPC Required,EPC Present,10 Jan 2026,C - 69 to 80,72.0,C - 69 to 80,74.0,BB114EB,100010341488.0,81 Harold Street,0.4652 +1473,132683,83 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Flat: Bottom,Domestic EPC Required,EPC Present,23 Jan 2012,D - 55 to 68,64.0,C - 69 to 80,70.0,BB114EB,100010341489.0,"83, Harold Street",0.4652 +1583,241368,85 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Flat: Top,Domestic EPC Required,EPC Present,27 Oct 2025,D - 55 to 68,63.0,C - 69 to 80,73.0,BB114EB,100010341490.0,85 Harold Street,0.4652 +1688,134166,87 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jan 2012,D - 55 to 68,59.0,D - 55 to 68,64.0,BB114EB,100010341491.0,"87, Harold Street",0.4652 +1904,362206,91 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB114EB,100010341493.0,91 Harold Street,0.4652 +8636,362661,46 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB114EB,100010341454.0,46 Harold Street,0.4652 +8756,194959,48 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Dec 2024,D - 55 to 68,68.0,B - 81 to 91,85.0,BB114EB,100010341456.0,48 Harold Street,0.4652 +8875,90174,50 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Feb 2010,D - 55 to 68,60.0,C - 69 to 80,72.0,BB114EB,100010341458.0,"50, Harold Street",0.4652 +8984,247008,52 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Feb 2026,C - 69 to 80,74.0,C - 69 to 80,80.0,BB114EB,100010341460.0,"52, Harold Street",0.4652 +9097,230229,54 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Nov 2014,C - 69 to 80,72.0,B - 81 to 91,82.0,BB114EB,100010341462.0,"54, Harold Street",0.4652 +9277,41070,57 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Feb 2026,C - 69 to 80,76.0,B - 81 to 91,81.0,BB114EB,100010341465.0,"57, Harold Street",0.4652 +9393,41077,59 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jun 2009,D - 55 to 68,63.0,C - 69 to 80,73.0,BB114EB,100010341467.0,"59, Harold Street",0.4652 +9506,304935,61 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Oct 2025,D - 55 to 68,67.0,C - 69 to 80,74.0,BB114EB,100010341469.0,61 Harold Street,0.4652 +9608,41084,63 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Flat: Top,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,72.0,C - 69 to 80,73.0,BB114EB,100010341471.0,63 Harold Street,0.4652 +539,323720,41 Bowland Avenue Burnley Lancashire BB10 4NG,,, BB10 4NG,Flat: Top,Domestic EPC Required,EPC Present,31 Oct 2019,D - 55 to 68,66.0,C - 69 to 80,69.0,BB104NG,100010329377.0,"41, Bowland Avenue",0.4705 +636,210920,43 Bowland Avenue Burnley Lancashire BB10 4NG,,, BB10 4NG,Flat: Bottom,Domestic EPC Required,EPC Present,22 May 2024,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104NG,100010329378.0,43 Bowland Avenue,0.4705 +7533,323769,1 Bowland Avenue Burnley Lancashire BB10 4NG,,, BB10 4NG,House: End Terrace,Domestic EPC Required,EPC Present,07 Nov 2019,C - 69 to 80,72.0,B - 81 to 91,85.0,BB104NG,100010329342.0,"1, Bowland Avenue",0.4652 +7636,286349,3 Bowland Avenue Burnley Lancashire BB10 4NG,,, BB10 4NG,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jul 2017,C - 69 to 80,71.0,B - 81 to 91,85.0,BB104NG,100010329344.0,"3, Bowland Avenue",0.4652 +8257,94999,15 Bowland Avenue Burnley Lancashire BB10 4NG,,, BB10 4NG,House: End Terrace,Domestic EPC Required,EPC Present,13 Feb 2026,D - 55 to 68,67.0,B - 81 to 91,81.0,BB104NG,100010329356.0,"15, Bowland Avenue",0.4705 +9053,323721,29 Bowland Avenue Burnley Lancashire BB10 4NG,,, BB10 4NG,Flat: Bottom,Domestic EPC Required,EPC Present,31 Oct 2019,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104NG,100010329368.0,"29, Bowland Avenue",0.4705 +9284,101571,33 Bowland Avenue Burnley Lancashire BB10 4NG,,, BB10 4NG,Flat: Top,Domestic EPC Required,EPC Present,08 Oct 2010,C - 69 to 80,78.0,B - 81 to 91,82.0,BB104NG,100010329372.0,"33, Bowland Avenue",0.4705 +9403,229297,35 Bowland Avenue Burnley Lancashire BB10 4NG,,, BB10 4NG,Flat: Bottom,Domestic EPC Required,EPC Present,22 Nov 2025,D - 55 to 68,62.0,C - 69 to 80,71.0,BB104NG,100010329374.0,35 Bowland Avenue,0.4705 +543,98157,22 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jun 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB114ER,100010339135.0,22 Forfar Street,0.4652 +640,340117,24 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Bottom,Domestic EPC Required,EPC Present,09 Aug 2021,C - 69 to 80,73.0,C - 69 to 80,76.0,BB114ER,100010339136.0,24 Forfar Street,0.4652 +839,235520,28 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Top,Domestic EPC Required,EPC Present,25 Nov 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB114ER,100010339138.0,28 Forfar Street,0.4652 +938,40682,30 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Bottom,Domestic EPC Required,EPC Present,17 May 2009,C - 69 to 80,75.0,C - 69 to 80,80.0,BB114ER,100010339139.0,"30, Forfar Street",0.4652 +1048,40691,32 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Bottom,Domestic EPC Required,EPC Present,06 Jan 2026,C - 69 to 80,74.0,C - 69 to 80,76.0,BB114ER,100010339140.0,32 Forfar Street,0.4652 +1158,362165,34 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Top,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB114ER,100010339142.0,34 Forfar Street,0.4652 +1214,362169,35 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB114ER,100010339143.0,35 Forfar Street,0.4652 +1327,362177,37 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB114ER,100010339145.0,37 Forfar Street,0.4652 +1378,362179,38 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Bottom,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB114ER,100010339146.0,38 Forfar Street,0.4652 +1483,362185,40 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Bottom,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,74.0,C - 69 to 80,76.0,BB114ER,100010339147.0,40 Forfar Street,0.4652 +1592,362189,42 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Top,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB114ER,100010339148.0,42 Forfar Street,0.4652 +1698,362195,44 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Top,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB114ER,100010339149.0,44 Forfar Street,0.4652 +547,237555,10 Hambledon View Burnley Lancashire BB12 6NY,,, BB12 6NY,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Jun 2015,D - 55 to 68,55.0,C - 69 to 80,73.0,BB126NY,100010340927.0,"10, Hambledon View",0.4705 +1269,40705,24 Hambledon View Burnley Lancashire BB12 6NY,,, BB12 6NY,House: End Terrace,Domestic EPC Required,EPC Present,17 Oct 2017,E - 39 to 54,44.0,C - 69 to 80,74.0,BB126NY,100010340934.0,"24, Hambledon View",0.4705 +552,227011,22 Ebor Street Burnley Lancashire BB10 1ER,,, BB10 1ER,Flat: Bottom,Domestic EPC Required,EPC Present,18 Jul 2014,C - 69 to 80,70.0,C - 69 to 80,77.0,BB101ER,100010338037.0,"22, Ebor Street",0.4536 +648,40670,24 Ebor Street Burnley Lancashire BB10 1ER,,, BB10 1ER,Flat: Bottom,Domestic EPC Required,EPC Present,10 Jul 2009,C - 69 to 80,74.0,C - 69 to 80,76.0,BB101ER,100010338039.0,"24, Ebor Street",0.4536 +748,210887,26 Ebor Street Burnley Lancashire BB10 1ER,,, BB10 1ER,Flat: Top,Domestic EPC Required,EPC Present,22 Aug 2013,C - 69 to 80,69.0,C - 69 to 80,73.0,BB101ER,100010338041.0,"26, Ebor Street",0.4536 +12983,329225,28 Ebor Street Burnley Lancashire BB10 1ER,,, BB10 1ER,Flat: Top,Domestic EPC Required,EPC Present,11 Oct 2012,C - 69 to 80,71.0,C - 69 to 80,74.0,BB101ER,100010338043.0,"28, Ebor Street",0.4536 +556,362138,87 Casterton Avenue Burnley Lancashire BB10 2PB,,, BB10 2PB,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB102PB,100010333204.0,87 Casterton Avenue,0.4801 +852,237659,93 Casterton Avenue Burnley Lancashire BB10 2PB,,, BB10 2PB,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jun 2015,D - 55 to 68,61.0,B - 81 to 91,86.0,BB102PB,100010333210.0,"93, Casterton Avenue",0.4801 +1387,90199,103 Casterton Avenue Burnley Lancashire BB10 2PB,,, BB10 2PB,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Feb 2010,D - 55 to 68,68.0,C - 69 to 80,72.0,BB102PB,100010333220.0,"103, Casterton Avenue",0.4845 +1498,252237,105 Casterton Avenue Burnley Lancashire BB10 2PB,,, BB10 2PB,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jul 2016,C - 69 to 80,71.0,B - 81 to 91,86.0,BB102PB,100010333222.0,"105, Casterton Avenue",0.4845 +1924,96150,113 Casterton Avenue Burnley Lancashire BB10 2PB,,, BB10 2PB,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Feb 2026,D - 55 to 68,67.0,C - 69 to 80,74.0,BB102PB,100010333228.0,"113, Casterton Avenue",0.4845 +2027,325616,115 Casterton Avenue Burnley Lancashire BB10 2PB,,, BB10 2PB,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2025,C - 69 to 80,69.0,B - 81 to 91,87.0,BB102PB,100010333230.0,115 Casterton Avenue,0.4845 +561,362139,25 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB112PA,100010335749.0,25 Constable Avenue,0.4801 +656,245847,27 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,C - 69 to 80,70.0,B - 81 to 91,85.0,BB112PA,100010335751.0,27 Constable Avenue,0.4801 +703,192281,28 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Nov 2012,C - 69 to 80,71.0,B - 81 to 91,85.0,BB112PA,100010335752.0,"28, Constable Avenue",0.4801 +754,89775,29 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: End Terrace,Domestic EPC Required,EPC Present,24 Nov 2010,D - 55 to 68,57.0,C - 69 to 80,71.0,BB112PA,100010335753.0,"29, Constable Avenue",0.4801 +857,110900,31 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Nov 2010,D - 55 to 68,61.0,C - 69 to 80,74.0,BB112PA,100010335755.0,"31, Constable Avenue",0.4801 +906,110906,32 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,63.0,C - 69 to 80,78.0,BB112PA,100010335756.0,"32, Constable Avenue",0.4801 +1013,362160,34 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB112PA,100010335758.0,34 Constable Avenue,0.4801 +1121,110928,36 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Dec 2010,D - 55 to 68,60.0,C - 69 to 80,74.0,BB112PA,100010335760.0,"36, Constable Avenue",0.4801 +9072,362693,13 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112PA,100010335737.0,13 Constable Avenue,0.4801 +9308,362704,17 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,82.0,BB112PA,100010335741.0,17 Constable Avenue,0.4801 +572,362140,1 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,90.0,BB126EF,10003781473.0,1 Woodbine Gardens,0.4754 +623,359958,2 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,06 Jun 2023,C - 69 to 80,75.0,B - 81 to 91,91.0,BB126EF,10003781484.0,2 Woodbine Gardens,0.4754 +670,226306,3 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,23 Jun 2014,C - 69 to 80,69.0,B - 81 to 91,91.0,BB126EF,10003781495.0,"3, Woodbine Gardens",0.4754 +720,221678,4 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,67.0,B - 81 to 91,88.0,BB126EF,10003781506.0,"4, Woodbine Gardens",0.4754 +770,104938,5 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,05 Nov 2024,C - 69 to 80,69.0,B - 81 to 91,87.0,BB126EF,10003781515.0,5 Woodbine Gardens,0.4754 +822,362150,6 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB126EF,10003781516.0,6 Woodbine Gardens,0.4754 +866,221602,7 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,18 Jul 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB126EF,10003781517.0,7 Woodbine Gardens,0.4754 +922,180695,8 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,24 Jun 2025,C - 69 to 80,71.0,C - 69 to 80,75.0,BB126EF,10003781518.0,8 Woodbine Gardens,0.4754 +971,201435,9 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,05 Apr 2013,C - 69 to 80,76.0,C - 69 to 80,79.0,BB126EF,10003781519.0,"9, Woodbine Gardens",0.4754 +1029,289906,10 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,26 Jul 2017,C - 69 to 80,75.0,C - 69 to 80,77.0,BB126EF,10003781474.0,"10, Woodbine Gardens",0.4801 +1083,362163,11 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB126EF,10003781475.0,11 Woodbine Gardens,0.4801 +1141,132614,12 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,26 Apr 2022,C - 69 to 80,78.0,C - 69 to 80,78.0,BB126EF,10003781476.0,12 Woodbine Gardens,0.4801 +1196,341048,13 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,15 Sep 2021,C - 69 to 80,77.0,C - 69 to 80,78.0,BB126EF,10003781477.0,13 Woodbine Gardens,0.4801 +1250,103755,14 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,16 Nov 2010,B - 81 to 91,83.0,B - 81 to 91,85.0,BB126EF,10003781478.0,"14, Woodbine Gardens",0.4801 +1304,234577,15 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,20 Apr 2015,C - 69 to 80,75.0,C - 69 to 80,77.0,BB126EF,10003781479.0,"15, Woodbine Gardens",0.4801 +1356,252148,16 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,31 Jul 2012,C - 69 to 80,76.0,C - 69 to 80,79.0,BB126EF,10003781480.0,"16, Woodbine Gardens",0.4801 +1409,362182,17 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB126EF,10003781481.0,17 Woodbine Gardens,0.4801 +1463,192368,18 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,29 Nov 2012,C - 69 to 80,77.0,C - 69 to 80,80.0,BB126EF,10003781482.0,"18, Woodbine Gardens",0.4801 +1518,40721,19 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,06 May 2009,B - 81 to 91,83.0,B - 81 to 91,85.0,BB126EF,10003781483.0,"19, Woodbine Gardens",0.4801 +1573,90139,20 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,01 Feb 2010,B - 81 to 91,82.0,B - 81 to 91,85.0,BB126EF,10003781485.0,"20, Woodbine Gardens",0.4801 +1625,76889,21 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,26 Aug 2009,B - 81 to 91,82.0,B - 81 to 91,84.0,BB126EF,10003781486.0,"21, Woodbine Gardens",0.4801 +1678,362193,22 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB126EF,10003781487.0,22 Woodbine Gardens,0.4801 +1731,362196,23 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,76.0,C - 69 to 80,77.0,BB126EF,10003781488.0,23 Woodbine Gardens,0.4801 +1788,90202,24 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,19 Feb 2010,B - 81 to 91,82.0,B - 81 to 91,85.0,BB126EF,10003781489.0,"24, Woodbine Gardens",0.4801 +1895,163338,26 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,23 Apr 2012,C - 69 to 80,76.0,C - 69 to 80,78.0,BB126EF,10003781491.0,"26, Woodbine Gardens",0.4801 +1944,362210,27 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB126EF,10003781492.0,27 Woodbine Gardens,0.4801 +1998,250246,28 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,19 May 2016,C - 69 to 80,79.0,C - 69 to 80,80.0,BB126EF,10003781493.0,"28, Woodbine Gardens",0.4801 +2047,207477,29 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,78.0,C - 69 to 80,80.0,BB126EF,10003781494.0,"29, Woodbine Gardens",0.4801 +2099,289907,30 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,26 Jul 2017,C - 69 to 80,72.0,C - 69 to 80,77.0,BB126EF,10003781496.0,"30, Woodbine Gardens",0.4801 +2142,362219,31 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB126EF,10003781497.0,31 Woodbine Gardens,0.4801 +2200,223392,32 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,02 Apr 2014,C - 69 to 80,77.0,C - 69 to 80,79.0,BB126EF,10003781498.0,"32, Woodbine Gardens",0.4801 +2240,221607,33 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,07 Jan 2014,C - 69 to 80,77.0,C - 69 to 80,79.0,BB126EF,10003781499.0,"33, Woodbine Gardens",0.4801 +2294,104940,34 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,29 Nov 2010,B - 81 to 91,85.0,B - 81 to 91,87.0,BB126EF,10003781500.0,"34, Woodbine Gardens",0.4801 +2335,224898,35 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,12 May 2014,C - 69 to 80,76.0,C - 69 to 80,77.0,BB126EF,10003781501.0,"35, Woodbine Gardens",0.4801 +2388,115740,36 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,08 Jul 2011,C - 69 to 80,77.0,C - 69 to 80,78.0,BB126EF,10003781502.0,"36, Woodbine Gardens",0.4801 +2430,110227,37 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,19 Aug 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB126EF,10003781503.0,37 Woodbine Gardens,0.4801 +2487,40767,38 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,02 Feb 2009,B - 81 to 91,83.0,B - 81 to 91,85.0,BB126EF,10003781504.0,"38, Woodbine Gardens",0.4801 +2531,362236,39 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,24 Jun 2022,C - 69 to 80,76.0,C - 69 to 80,79.0,BB126EF,10003781505.0,39 Woodbine Gardens,0.4801 +2591,228692,40 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,02 Oct 2014,C - 69 to 80,77.0,C - 69 to 80,78.0,BB126EF,10003781507.0,"40, Woodbine Gardens",0.4801 +2638,221679,41 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,78.0,C - 69 to 80,80.0,BB126EF,10003781508.0,"41, Woodbine Gardens",0.4801 +2693,362251,42 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB126EF,10003781509.0,42 Woodbine Gardens,0.4801 +2737,362255,43 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,80.0,C - 69 to 80,80.0,BB126EF,10003781510.0,43 Woodbine Gardens,0.4801 +2790,134080,44 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,24 Jan 2012,C - 69 to 80,77.0,C - 69 to 80,79.0,BB126EF,10003781511.0,"44, Woodbine Gardens",0.4801 +2838,101413,45 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,16 Dec 2021,C - 69 to 80,70.0,B - 81 to 91,91.0,BB126EF,10003781512.0,45 Woodbine Gardens,0.4801 +2889,362264,46 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,91.0,BB126EF,10003781513.0,46 Woodbine Gardens,0.4801 +2938,362269,47 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Bungalow: Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,88.0,BB126EF,10003781514.0,47 Woodbine Gardens,0.4801 +11624,234717,25 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,08 Aug 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB126EF,10003781490.0,25 Woodbine Gardens,0.4801 +11625,362720,25A Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,80.0,C - 69 to 80,80.0,BB126EF,10023762728.0,25a Woodbine Gardens,0.535 +597,339019,326 Rossendale Road Burnley Lancashire BB11 5JF,,, BB11 5JF,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Jun 2021,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115JF,100010354816.0,326 ROSSENDALE ROAD,0.4801 +1117,111325,336 Rossendale Road Burnley Lancashire BB11 5JF,,, BB11 5JF,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Dec 2010,E - 39 to 54,49.0,D - 55 to 68,67.0,BB115JF,100010354821.0,"336, Rossendale Road",0.4801 +9357,362707,318 Rossendale Road Burnley Lancashire BB11 5JF,,, BB11 5JF,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115JF,100010354812.0,318 Rossendale Road,0.4801 +615,244962,4 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,79.0,BB128NU,100010341169.0,"4 Hargrove Avenue, Padiham",0.6214 +762,245152,7 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,Flat: Top,Domestic EPC Required,EPC Present,14 Oct 2015,D - 55 to 68,67.0,C - 69 to 80,73.0,BB128NU,100010341172.0,"7, Hargrove Avenue, Padiham",0.6214 +966,192263,11 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB128NU,100010341175.0,"11 Hargrove Avenue, Padiham",0.6242 +1187,193903,15 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: End Terrace,Domestic EPC Required,EPC Present,10 Dec 2012,D - 55 to 68,64.0,B - 81 to 91,83.0,BB128NU,100010341179.0,"15, Hargrove Avenue, Padiham",0.6242 +1239,244949,16 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: End Terrace,Domestic EPC Required,EPC Present,03 Dec 2015,D - 55 to 68,64.0,B - 81 to 91,84.0,BB128NU,100010341180.0,"16, Hargrove Avenue, Padiham",0.6242 +1564,108013,22 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Mar 2011,D - 55 to 68,56.0,C - 69 to 80,69.0,BB128NU,100010341184.0,"22, Hargrove Avenue, Padiham",0.6242 +1615,222429,23 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: End Terrace,Domestic EPC Required,EPC Present,04 Feb 2014,D - 55 to 68,57.0,B - 81 to 91,83.0,BB128NU,100010341185.0,"23, Hargrove Avenue, Padiham",0.6242 +1668,119422,24 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Nov 2021,D - 55 to 68,63.0,B - 81 to 91,87.0,BB128NU,100010341186.0,"24 Hargrove Avenue, Padiham",0.6242 +1719,247888,25 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,23 Mar 2016,D - 55 to 68,67.0,B - 81 to 91,89.0,BB128NU,100010341187.0,"25, Hargrove Avenue, Padiham",0.6242 +1829,124989,27 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2011,C - 69 to 80,70.0,C - 69 to 80,70.0,BB128NU,100010341189.0,"27, Hargrove Avenue, Padiham",0.6242 +1886,100576,28 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Oct 2025,D - 55 to 68,58.0,C - 69 to 80,79.0,BB128NU,100010341190.0,"28 Hargrove Avenue, Padiham",0.6242 +2136,187825,33 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Sep 2012,D - 55 to 68,56.0,B - 81 to 91,84.0,BB128NU,100010341193.0,"33, Hargrove Avenue, Padiham",0.6242 +2235,220607,35 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Oct 2025,D - 55 to 68,59.0,C - 69 to 80,80.0,BB128NU,100010341194.0,"35 Hargrove Avenue, Padiham",0.6242 +617,111324,251 Barden Lane Burnley Lancashire BB10 1JA,,, BB10 1JA,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Apr 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB101JA,100010328239.0,251 Barden Lane,0.4596 +619,362145,133 Hargrove Avenue Burnley Lancashire BB12 0JY,,, BB12 0JY,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB120JY,100010341288.0,133 Hargrove Avenue,0.4801 +1242,362172,145 Hargrove Avenue Burnley Lancashire BB12 0JY,,, BB12 0JY,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB120JY,100010341294.0,145 Hargrove Avenue,0.4801 +8338,295857,107 Hargrove Avenue Burnley Lancashire BB12 0JY,,, BB12 0JY,House: End Terrace,Domestic EPC Required,EPC Present,14 Feb 2018,C - 69 to 80,75.0,B - 81 to 91,88.0,BB120JY,100010341272.0,"107, Hargrove Avenue",0.4801 +8448,236528,109 Hargrove Avenue Burnley Lancashire BB12 0JY,,, BB12 0JY,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Jul 2024,C - 69 to 80,77.0,B - 81 to 91,91.0,BB120JY,100010341273.0,109 Hargrove Avenue,0.4801 +8804,186597,115 Hargrove Avenue Burnley Lancashire BB12 0JY,,, BB12 0JY,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jul 2024,C - 69 to 80,75.0,B - 81 to 91,90.0,BB120JY,100010341276.0,115 Hargrove Avenue,0.4801 +9259,295914,123 Hargrove Avenue Burnley Lancashire BB12 0JY,,, BB12 0JY,House: End Terrace,Domestic EPC Required,EPC Present,15 Feb 2018,C - 69 to 80,71.0,B - 81 to 91,88.0,BB120JY,100010341281.0,"123, Hargrove Avenue",0.4801 +627,243792,23 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2015,D - 55 to 68,63.0,B - 81 to 91,84.0,BB104BL,100010333609.0,"23, Chichester Close",0.4801 +722,243793,25 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Aug 2025,C - 69 to 80,75.0,B - 81 to 91,81.0,BB104BL,100010333611.0,25 Chichester Close,0.4801 +976,245176,30 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: End Terrace,Domestic EPC Required,EPC Present,17 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,88.0,BB104BL,100010333616.0,"30, Chichester Close",0.4801 +1032,245177,31 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Nov 2015,D - 55 to 68,63.0,C - 69 to 80,79.0,BB104BL,100010333617.0,"31, Chichester Close",0.4801 +1200,243794,34 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2015,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104BL,100010333620.0,"34, Chichester Close",0.4801 +1950,243795,48 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,90.0,BB104BL,100010333634.0,"48, Chichester Close",0.4801 +2053,241677,50 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Nov 2015,C - 69 to 80,73.0,A - 92 Plus,92.0,BB104BL,100010333636.0,"50, Chichester Close",0.4801 +2149,243796,52 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: End Terrace,Domestic EPC Required,EPC Present,10 Nov 2015,D - 55 to 68,68.0,B - 81 to 91,86.0,BB104BL,100010333637.0,52 Chichester Close,0.4801 +8578,76904,1 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Flat: Bottom,Domestic EPC Required,EPC Present,19 Oct 2015,D - 55 to 68,68.0,C - 69 to 80,71.0,BB104BL,100010333587.0,"1, Chichester Close",0.4754 +8629,90186,2 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,72.0,A - 92 Plus,93.0,BB104BL,100010333588.0,2 Chichester Close,0.4754 +8694,89001,3 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Flat: Bottom,Domestic EPC Required,EPC Present,26 Oct 2015,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104BL,100010333589.0,"3, Chichester Close",0.4754 +8752,242506,4 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Sep 2015,D - 55 to 68,68.0,B - 81 to 91,91.0,BB104BL,100010333590.0,4 Chichester Close,0.4754 +8817,243779,5 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Flat: Top,Domestic EPC Required,EPC Present,09 Nov 2015,C - 69 to 80,71.0,C - 69 to 80,75.0,BB104BL,100010333591.0,"5, Chichester Close",0.4754 +8874,242528,6 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Sep 2015,D - 55 to 68,68.0,B - 81 to 91,89.0,BB104BL,100010333592.0,"6, Chichester Close",0.4754 +8934,242999,7 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Flat: Top,Domestic EPC Required,EPC Present,21 Oct 2015,C - 69 to 80,72.0,C - 69 to 80,74.0,BB104BL,100010333593.0,"7, Chichester Close",0.4754 +8983,242745,8 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Oct 2025,C - 69 to 80,69.0,B - 81 to 91,88.0,BB104BL,100010333594.0,8 Chichester Close,0.4754 +9045,243784,9 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Flat: Bottom,Domestic EPC Required,EPC Present,03 Nov 2015,D - 55 to 68,68.0,C - 69 to 80,73.0,BB104BL,100010333595.0,"9, Chichester Close",0.4754 +9095,243314,10 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: End Terrace,Domestic EPC Required,EPC Present,26 Oct 2025,C - 69 to 80,75.0,B - 81 to 91,88.0,BB104BL,100010333596.0,10 Chichester Close,0.4801 +9153,243315,11 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Flat: Bottom,Domestic EPC Required,EPC Present,26 Oct 2025,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104BL,100010333597.0,11 Chichester Close,0.4801 +9392,245773,15 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Flat: Top,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104BL,100010333601.0,"15, Chichester Close",0.4801 +9447,243316,16 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: End Terrace,Domestic EPC Required,EPC Present,19 Oct 2015,C - 69 to 80,69.0,B - 81 to 91,85.0,BB104BL,100010333602.0,"16, Chichester Close",0.4801 +9544,201790,18 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Nov 2025,C - 69 to 80,78.0,B - 81 to 91,84.0,BB104BL,100010333604.0,18 Chichester Close,0.4801 +9605,243789,19 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,87.0,BB104BL,100010333605.0,"19, Chichester Close",0.4801 +633,247409,9 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,House: End Terrace,Domestic EPC Required,EPC Present,15 Mar 2016,C - 69 to 80,69.0,B - 81 to 91,88.0,BB104QB,100010359729.0,"9, Walsden Grove",0.4596 +677,247393,10 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Apr 2016,B - 81 to 91,82.0,B - 81 to 91,85.0,BB104QB,100010359730.0,10 Walsden Grove,0.4652 +726,248688,11 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Apr 2016,B - 81 to 91,91.0,A - 92 Plus,96.0,BB104QB,100010359731.0,"11, Walsden Grove",0.4652 +776,247392,12 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2016,D - 55 to 68,63.0,C - 69 to 80,77.0,BB104QB,100010359732.0,"12, Walsden Grove",0.4652 +929,248959,15 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Apr 2016,B - 81 to 91,87.0,A - 92 Plus,96.0,BB104QB,100010359735.0,"15, Walsden Grove",0.4652 +1042,248960,17 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Apr 2016,B - 81 to 91,86.0,A - 92 Plus,92.0,BB104QB,100010359736.0,"17, Walsden Grove",0.4652 +1150,248961,19 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Apr 2016,B - 81 to 91,85.0,A - 92 Plus,93.0,BB104QB,100010359737.0,"19, Walsden Grove",0.4652 +1259,248962,21 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Apr 2016,B - 81 to 91,90.0,A - 92 Plus,97.0,BB104QB,100010359738.0,"21, Walsden Grove",0.4652 +1364,250063,23 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Apr 2016,B - 81 to 91,91.0,A - 92 Plus,97.0,BB104QB,100010359739.0,"23, Walsden Grove",0.4652 +1472,247411,25 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Apr 2016,B - 81 to 91,87.0,A - 92 Plus,93.0,BB104QB,100010359740.0,25 Walsden Grove,0.4652 +9399,247396,1 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Apr 2016,C - 69 to 80,79.0,B - 81 to 91,84.0,BB104QB,100010359721.0,"1, Walsden Grove",0.4596 +13317,339032,13 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Apr 2016,B - 81 to 91,90.0,A - 92 Plus,96.0,BB104QB,100010359733.0,"13, Walsden Grove",0.4652 +654,118464,6 Chislehurst Grove Burnley Lancashire BB10 2RR,,, BB10 2RR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Feb 2026,C - 69 to 80,75.0,B - 81 to 91,81.0,BB102RR,100010333741.0,"6, Chislehurst Grove",0.4801 +804,362149,9 Chislehurst Grove Burnley Lancashire BB10 2RR,,, BB10 2RR,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102RR,100010333744.0,9 Chislehurst Grove,0.4801 +1120,40698,15 Chislehurst Grove Burnley Lancashire BB10 2RR,,, BB10 2RR,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Nov 2008,D - 55 to 68,57.0,D - 55 to 68,59.0,BB102RR,100010333750.0,"15, Chislehurst Grove",0.4845 +1178,325280,16 Chislehurst Grove Burnley Lancashire BB10 2RR,,, BB10 2RR,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,74.0,B - 81 to 91,89.0,BB102RR,100010333751.0,"16, Chislehurst Grove",0.4845 +1499,325279,22 Chislehurst Grove Burnley Lancashire BB10 2RR,,, BB10 2RR,House: End Terrace,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,70.0,B - 81 to 91,84.0,BB102RR,100010333757.0,"22, Chislehurst Grove",0.4845 +1608,325277,24 Chislehurst Grove Burnley Lancashire BB10 2RR,,, BB10 2RR,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102RR,100010333759.0,"24, Chislehurst Grove",0.4845 +1876,40738,29 Chislehurst Grove Burnley Lancashire BB10 2RR,,, BB10 2RR,House: End Terrace,Domestic EPC Required,EPC Present,15 Nov 2008,C - 69 to 80,71.0,C - 69 to 80,73.0,BB102RR,100010333764.0,"29, Chislehurst Grove",0.4845 +1977,325278,31 Chislehurst Grove Burnley Lancashire BB10 2RR,,, BB10 2RR,House: End Terrace,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102RR,100010333766.0,"31, Chislehurst Grove",0.4845 +671,111177,46 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2021,E - 39 to 54,52.0,B - 81 to 91,89.0,BB128PB,100010345432.0,"46 Langdale Road, Padiham",0.6185 +868,111184,50 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Aug 2021,E - 39 to 54,52.0,B - 81 to 91,88.0,BB128PB,100010345436.0,"50 Langdale Road, Padiham",0.6185 +1027,105930,53 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Jan 2011,E - 39 to 54,52.0,D - 55 to 68,64.0,BB128PB,100010345439.0,"53, Langdale Road, Padiham",0.6185 +1247,188945,57 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2012,D - 55 to 68,59.0,C - 69 to 80,74.0,BB128PB,100010345441.0,"57, Langdale Road, Padiham",0.6185 +1354,103758,59 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Nov 2010,D - 55 to 68,60.0,D - 55 to 68,63.0,BB128PB,100010345442.0,"59, Langdale Road, Padiham",0.6185 +1994,111217,71 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Nov 2010,D - 55 to 68,55.0,C - 69 to 80,69.0,BB128PB,100010345448.0,"71, Langdale Road, Padiham",0.6185 +2483,40766,81 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Nov 2010,E - 39 to 54,52.0,D - 55 to 68,68.0,BB128PB,100010345453.0,"81, Langdale Road, Padiham",0.6185 +2689,40773,85 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Feb 2009,D - 55 to 68,59.0,C - 69 to 80,73.0,BB128PB,100010345455.0,"85, Langdale Road, Padiham",0.6185 +2886,222808,89 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Feb 2014,D - 55 to 68,59.0,C - 69 to 80,74.0,BB128PB,100010345457.0,"89, Langdale Road, Padiham",0.6185 +8746,362672,26 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128PB,100010345412.0,"26 Langdale Road, Padiham",0.6185 +9324,110931,36 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Aug 2021,D - 55 to 68,65.0,B - 81 to 91,85.0,BB128PB,100010345422.0,"36 Langdale Road, Padiham",0.6185 +674,105431,64 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Dec 2020,D - 55 to 68,64.0,B - 81 to 91,87.0,BB112PD,100010339297.0,"64 GAINSBOROUGH AVENUE, BURNLEY",0.6339 +1309,362176,76 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB112PD,100010339309.0,76 Gainsborough Avenue,0.4925 +1530,362187,80 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB112PD,100010339313.0,80 Gainsborough Avenue,0.4925 +1580,89953,81 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Jan 2010,D - 55 to 68,65.0,C - 69 to 80,70.0,BB112PD,100010339314.0,"81, Gainsborough Avenue",0.4925 +1636,224902,82 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Semi-Detached,Domestic EPC Required,EPC Present,13 May 2014,C - 69 to 80,71.0,B - 81 to 91,85.0,BB112PD,100010339315.0,"82, Gainsborough Avenue",0.4925 +1685,111296,83 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Semi-Detached,Domestic EPC Required,EPC Present,22 May 2017,D - 55 to 68,58.0,B - 81 to 91,83.0,BB112PD,100010339316.0,"83, Gainsborough Avenue",0.4925 +1740,362197,84 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,71.0,B - 81 to 91,84.0,BB112PD,100010339317.0,84 Gainsborough Avenue,0.4925 +1793,362200,85 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,70.0,B - 81 to 91,83.0,BB112PD,100010339318.0,85 Gainsborough Avenue,0.4925 +2150,193898,92 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 May 2017,D - 55 to 68,65.0,B - 81 to 91,84.0,BB112PD,100010339324.0,"92, Gainsborough Avenue",0.4925 +2539,96244,100 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Apr 2023,D - 55 to 68,60.0,C - 69 to 80,79.0,BB112PD,100010339328.0,100 Gainsborough Avenue,0.4961 +11158,211461,18 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Sep 2025,C - 69 to 80,80.0,A - 92 Plus,85.0,BB79UY,10022974450.0,"18 Cobden Close, Sabden",0.6159 +11159,211450,19 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,85.0,A - 92 Plus,95.0,BB79UY,10022974451.0,"19, Cobden Close, Sabden",0.6159 +11160,211460,20 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,85.0,A - 92 Plus,95.0,BB79UY,10022974452.0,"20, Cobden Close, Sabden",0.6159 +11161,211449,21 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,85.0,A - 92 Plus,95.0,BB79UY,10022974453.0,"21, Cobden Close, Sabden",0.6159 +11162,211456,22 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: End Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,84.0,A - 92 Plus,93.0,BB79UY,10022974454.0,"22, Cobden Close, Sabden",0.6159 +11163,211459,6 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: End Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,83.0,A - 92 Plus,96.0,BB79UY,10022974435.0,"6, Cobden Close, Sabden",0.6124 +11164,211458,7 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,84.0,A - 92 Plus,96.0,BB79UY,10022974436.0,"7, Cobden Close, Sabden",0.6124 +11165,211457,8 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,84.0,A - 92 Plus,96.0,BB79UY,10022974437.0,"8, Cobden Close, Sabden",0.6124 +11166,210974,11 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: End Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,84.0,A - 92 Plus,94.0,BB79UY,10022974440.0,"11, Cobden Close, Sabden",0.6159 +11168,210972,14 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,85.0,A - 92 Plus,95.0,BB79UY,10022974442.0,"14, Cobden Close, Sabden",0.6159 +11172,211462,Flat 1 17 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,Flat: Bottom,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,83.0,B - 81 to 91,83.0,BB79UY,10022974446.0,"Flat 1, 17, Cobden Close, Sabden",0.697 +11173,211463,Flat 2 17 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,83.0,B - 81 to 91,83.0,BB79UY,10022974447.0,"Flat 2, 17, Cobden Close, Sabden",0.697 +11174,211464,Flat 3 17 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,Flat: Top,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,84.0,B - 81 to 91,84.0,BB79UY,10022974448.0,"Flat 3, 17, Cobden Close, Sabden",0.697 +11175,211465,Flat 4 17 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,Flat: Top,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,83.0,B - 81 to 91,83.0,BB79UY,10022974449.0,"Flat 4, 17, Cobden Close, Sabden",0.697 +12787,323641,12 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,85.0,A - 92 Plus,95.0,BB79UY,10022974441.0,"12, Cobden Close, Sabden",0.6159 +11177,211480,Flat 1 7 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Bottom,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,83.0,B - 81 to 91,83.0,BB79UX,10022974468.0,"Flat 1, 7, Mill Court, Sabden",0.6897 +11178,211479,Flat 2 7 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Bottom,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,83.0,B - 81 to 91,83.0,BB79UX,10022974469.0,"Flat 2, 7, Mill Court, Sabden",0.6897 +11179,211478,Flat 3 7 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Middle,Domestic EPC Required,EPC Present,25 Oct 2024,B - 81 to 91,82.0,B - 81 to 91,82.0,BB79UX,10022974470.0,"Flat 3, 7 Mill Court, Sabden",0.6897 +11180,211477,Flat 4 7 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Middle,Domestic EPC Required,EPC Present,15 Aug 2024,B - 81 to 91,82.0,B - 81 to 91,82.0,BB79UX,10022974471.0,"Flat 4, 7 Mill Court, Sabden",0.6897 +11181,211476,Flat 5 7 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Top,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,84.0,B - 81 to 91,84.0,BB79UX,10022974472.0,"Flat 5, 7, Mill Court, Sabden",0.6897 +11183,211475,Flat 1 6 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Bottom,Domestic EPC Required,EPC Present,19 Aug 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB79UX,10022974462.0,"Flat 1, 6 Mill Court, Sabden",0.6897 +11184,211474,Flat 2 6 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Bottom,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,83.0,B - 81 to 91,83.0,BB79UX,10022974463.0,"Flat 2, 6 Mill Court, Sabden",0.6897 +11216,211452,Flat 4 6 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Middle,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,84.0,B - 81 to 91,84.0,BB79UX,10022974465.0,"Flat 4, 6, Mill Court, Sabden",0.6897 +11217,211451,Flat 5 6 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Top,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,84.0,B - 81 to 91,84.0,BB79UX,10022974466.0,"Flat 5, 6, Mill Court, Sabden",0.6897 +13211,336437,Flat 3 6 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Bottom,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,84.0,B - 81 to 91,84.0,BB79UX,10022974464.0,"Flat 3, 6, Mill Court, Sabden",0.6897 +11185,252172,(Sycamore House) 23 Padiham Road Burnley Lancashire BB12 0LX,,, BB12 0LX,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jan 2013,D - 55 to 68,57.0,C - 69 to 80,76.0,BB120LX,100010350939.0,"23, Padiham Road",0.3605 +11199,210868,1 Moorview Close Briercliffe Burnley Lancashire BB10 2HD,,, BB10 2HD,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2013,C - 69 to 80,71.0,B - 81 to 91,90.0,BB102HD,100010349399.0,"1, Moorview Close",0.3993 +11200,209271,2 Moorview Close Briercliffe Burnley Lancashire BB10 2HD,,, BB10 2HD,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Mar 2010,C - 69 to 80,69.0,C - 69 to 80,74.0,BB102HD,100010349400.0,"2, Moorview Close",0.3993 +11201,210867,3 Moorview Close Briercliffe Burnley Lancashire BB10 2HD,,, BB10 2HD,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jan 2026,C - 69 to 80,70.0,B - 81 to 91,86.0,BB102HD,100010349401.0,3 Moorview Close,0.3993 +11202,210874,4 Moorview Close Briercliffe Burnley Lancashire BB10 2HD,,, BB10 2HD,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jan 2026,C - 69 to 80,70.0,B - 81 to 91,85.0,BB102HD,100010349402.0,4 Moorview Close,0.3993 +11203,210921,5 Moorview Close Briercliffe Burnley Lancashire BB10 2HD,,, BB10 2HD,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Sep 2013,C - 69 to 80,69.0,B - 81 to 91,90.0,BB102HD,100010349403.0,"5, Moorview Close",0.3993 +11204,210922,6 Moorview Close Briercliffe Burnley Lancashire BB10 2HD,,, BB10 2HD,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Apr 2023,C - 69 to 80,74.0,B - 81 to 91,89.0,BB102HD,100010349404.0,6 Moorview Close,0.3993 +11205,210869,8 Moorview Close Briercliffe Burnley Lancashire BB10 2HD,,, BB10 2HD,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Feb 2026,C - 69 to 80,72.0,B - 81 to 91,86.0,BB102HD,100010349406.0,"8, Moorview Close",0.3993 +11206,209269,9 Moorview Close Briercliffe Burnley Lancashire BB10 2HD,,, BB10 2HD,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Mar 2010,D - 55 to 68,67.0,C - 69 to 80,73.0,BB102HD,100010349407.0,"9, Moorview Close",0.3993 +12096,268902,7 Moorview Close Burnley Lancashire BB10 2HD,,, BB10 2HD,House: End Terrace,Domestic EPC Required,EPC Present,12 Dec 2016,D - 55 to 68,66.0,B - 81 to 91,83.0,BB102HD,100010349405.0,"7, Moorview Close",0.4652 +11231,209331,30 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,09 May 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331583.0,"30, Acre View",0.3792 +11232,209336,20 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 May 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331578.0,"20, Acre View",0.3792 +11233,209335,22 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 May 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331579.0,"22, Acre View",0.3792 +11234,209334,24 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 May 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331580.0,"24, Acre View",0.3792 +11235,209333,26 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,09 May 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331581.0,"26, Acre View",0.3792 +11236,209332,28 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 May 2013,B - 81 to 91,86.0,B - 81 to 91,87.0,OL130HR,10014331582.0,"28, Acre View",0.3792 +11237,209330,32 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Detached,Domestic EPC Required,EPC Present,14 Oct 2021,C - 69 to 80,76.0,C - 69 to 80,79.0,OL130HR,10014331584.0,32 Acre View,0.3792 +11238,209327,47 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,09 May 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331574.0,"47, Acre View",0.3792 +11239,209328,49 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 May 2013,B - 81 to 91,86.0,B - 81 to 91,88.0,OL130HR,10014331575.0,"49, Acre View",0.3792 +11240,209329,51 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,09 May 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331576.0,"51, Acre View",0.3792 +11241,209337,18 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,03 May 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331577.0,"18, Acre View",0.3792 +11242,209320,29 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jun 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331565.0,"29, Acre View",0.3792 +11243,209321,31 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jun 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331566.0,"31, Acre View",0.3792 +11244,209326,43 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Jun 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331572.0,"43, Acre View",0.3792 +11245,210944,45 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Jun 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331573.0,"45, Acre View",0.3792 +11246,209319,27 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,03 Jun 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331564.0,"27, Acre View",0.3792 +11247,209352,33 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,16 Aug 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331567.0,"33, Acre View",0.3792 +11248,209322,35 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,03 Jun 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331568.0,"35, Acre View",0.3792 +11249,209323,37 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jun 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331569.0,"37, Acre View",0.3792 +11250,209324,39 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jun 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331570.0,"39, Acre View",0.3792 +11251,209325,41 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,03 Jun 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331571.0,"41, Acre View",0.3792 +11260,209314,17 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331559.0,"17, Acre View",0.3792 +11261,209313,15 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331558.0,"15, Acre View",0.3792 +11262,209312,13 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331557.0,"13, Acre View",0.3792 +11263,209311,11 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331556.0,"11, Acre View",0.3792 +11264,209310,9 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331555.0,"9, Acre View",0.3721 +11265,209309,7 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331554.0,"7, Acre View",0.3721 +11266,209308,5 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,86.0,B - 81 to 91,87.0,OL130HR,10014331553.0,"5, Acre View",0.3721 +11267,209306,1 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331551.0,"1, Acre View",0.3721 +11268,209307,3 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,86.0,B - 81 to 91,87.0,OL130HR,10014331552.0,"3, Acre View",0.3721 +11269,209302,3c Acre Avenue Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331552.0,"3, Acre View",0.2284 +11270,209303,3d Acre Avenue Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331552.0,"3, Acre View",0.2284 +11271,209304,3e Acre Avenue Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331552.0,"3, Acre View",0.2284 +11272,209305,3f Acre Avenue Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331552.0,"3, Acre View",0.2284 +11273,209318,25 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Detached,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,83.0,B - 81 to 91,84.0,OL130HR,10014331563.0,"25, Acre View",0.3792 +11274,209317,23 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331562.0,"23, Acre View",0.3792 +11275,209316,21 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331561.0,"21, Acre View",0.3792 +11276,209315,19 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331560.0,"19, Acre View",0.3792 +11253,227306,182 Cog Lane Burnley Lancashire BB11 5BG,,, BB11 5BG,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jul 2014,C - 69 to 80,72.0,A - 92 Plus,92.0,BB115BG,100010334916.0,"182, Cog Lane",0.4401 +11332,227305,186 Cog Lane Burnley Lancashire BB11 5BG,,, BB11 5BG,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jul 2014,C - 69 to 80,69.0,B - 81 to 91,91.0,BB115BG,100010334920.0,186 Cog Lane,0.4401 +11333,227307,188 Cog Lane Burnley Lancashire BB11 5BG,,, BB11 5BG,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jul 2014,C - 69 to 80,72.0,A - 92 Plus,92.0,BB115BG,100010334922.0,"188, Cog Lane",0.4401 +11573,232170,184 Cog Lane Burnley Lancashire BB11 5BG,,, BB11 5BG,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jan 2015,C - 69 to 80,72.0,B - 81 to 91,91.0,BB115BG,100010334918.0,184 Cog Lane,0.4401 +11254,229249,302 Cog Lane Burnley Lancashire BB11 5JU,,, BB11 5JU,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Sep 2025,C - 69 to 80,72.0,B - 81 to 91,83.0,BB115JU,100010335004.0,302 Cog Lane,0.4401 +11255,227403,304 Cog Lane Burnley Lancashire BB11 5JU,,, BB11 5JU,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Aug 2014,D - 55 to 68,66.0,B - 81 to 91,87.0,BB115JU,100010335006.0,"304, Cog Lane",0.4401 +11516,226561,266 Cog Lane Burnley Lancashire BB11 5JU,,, BB11 5JU,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Jul 2014,C - 69 to 80,72.0,B - 81 to 91,90.0,BB115JU,100010334981.0,"266, Cog Lane",0.4401 +11572,232174,103 Cog Lane Burnley Lancashire BB11 5JU,,, BB11 5JU,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Feb 2015,C - 69 to 80,72.0,A - 92 Plus,92.0,BB115JU,,, +11256,252007,60 Towneley Street Burnley Lancashire BB10 1UJ,,, BB10 1UJ,House: End Terrace,Domestic EPC Required,EPC Present,08 May 2017,C - 69 to 80,70.0,B - 81 to 91,88.0,BB101UJ,100010358862.0,"60, Towneley Street",0.4754 +13020,331053,14 Towneley Street Burnley Lancashire BB10 1UJ,,, BB10 1UJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Sep 2020,C - 69 to 80,75.0,B - 81 to 91,91.0,BB101UJ,100010358817.0,14 TOWNELEY STREET,0.4754 +11257,252159,10 Burdett Street Burnley Lancashire BB11 5AG,,, BB11 5AG,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Sep 2019,D - 55 to 68,59.0,C - 69 to 80,78.0,BB115AG,100010331924.0,"10, Burdett Street",0.4705 +11278,252124,34 Grange Road Whitworth Rochdale Lancashire OL12 8LF,,, OL12 8LF,House: End Terrace,Domestic EPC Required,EPC Present,23 Oct 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LF,10014332331.0,"34, Grange Road, Whitworth",0.5432 +11279,252125,35 Grange Road Whitworth Rochdale Lancashire OL12 8LF,,, OL12 8LF,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Oct 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LF,10014332332.0,"35, Grange Road, Whitworth",0.5432 +11280,252115,656 Market Street Whitworth Rochdale Lancashire OL12 8LD,,, OL12 8LD,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LD,10014332337.0,"656, Market Street, Whitworth",0.5527 +11281,252126,648 Market Street Whitworth Rochdale Lancashire OL12 8LD,,, OL12 8LD,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LD,10014332333.0,"648, Market Street, Whitworth",0.5527 +11282,252112,650 Market Street Whitworth Rochdale Lancashire OL12 8LD,,, OL12 8LD,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LD,10014332334.0,"650, Market Street, Whitworth",0.5527 +11283,252113,652 Market Street Whitworth Rochdale Lancashire OL12 8LD,,, OL12 8LD,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LD,10014332335.0,"652, Market Street, Whitworth",0.5527 +11284,252114,654 Market Street Whitworth Rochdale Lancashire OL12 8LD,,, OL12 8LD,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LD,10014332336.0,"654, Market Street, Whitworth",0.5527 +11285,252127,658 Market Street Whitworth Rochdale Lancashire OL12 8LD,,, OL12 8LD,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LD,10014332338.0,"658, Market Street, Whitworth",0.5527 +11286,210977,660 Market Street Whitworth Rochdale Lancashire OL12 8LD,,, OL12 8LD,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LD,10014332339.0,"660, Market Street, Whitworth",0.5527 +11287,210978,662 Market Street Whitworth Rochdale Lancashire OL12 8LD,,, OL12 8LD,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LD,10014332340.0,"662, Market Street, Whitworth",0.5527 +11288,210975,664 Market Street Whitworth Rochdale Lancashire OL12 8LD,,, OL12 8LD,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LD,10014332341.0,"664, Market Street, Whitworth",0.5527 +11291,210976,1 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332302.0,"1, Facit Fold, Whitworth",0.536 +11292,211544,2 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332303.0,"2, Facit Fold, Whitworth",0.536 +11298,211543,3 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332304.0,"3, Facit Fold, Whitworth",0.536 +11299,252117,4 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332305.0,"4, Facit Fold, Whitworth",0.536 +11300,252118,5 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332306.0,"5, Facit Fold, Whitworth",0.536 +11302,252119,6 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332307.0,"6, Facit Fold, Whitworth",0.536 +11303,252120,7 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332308.0,"7, Facit Fold, Whitworth",0.536 +11304,211542,8 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Apr 2016,B - 81 to 91,87.0,B - 81 to 91,88.0,OL128LG,10014332309.0,"8, Facit Fold, Whitworth",0.536 +11306,252121,10 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332311.0,"10, Facit Fold, Whitworth",0.5397 +11307,211540,11 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LG,10014332312.0,"11, Facit Fold, Whitworth",0.5397 +11311,211539,12 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332313.0,"12, Facit Fold, Whitworth",0.5397 +11312,252122,14 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332314.0,"14, Facit Fold, Whitworth",0.5397 +11313,211538,15 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332315.0,"15, Facit Fold, Whitworth",0.5397 +11314,211537,16 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332316.0,"16, Facit Fold, Whitworth",0.5397 +11315,211536,17 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: End Terrace,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,95.0,OL128LG,10014332317.0,"17, Facit Fold, Whitworth",0.5397 +11316,211535,18 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,84.0,A - 92 Plus,96.0,OL128LG,10014332318.0,"18, Facit Fold, Whitworth",0.5397 +11317,211534,19 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: End Terrace,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,95.0,OL128LG,10014332319.0,"19, Facit Fold, Whitworth",0.5397 +11318,252123,20 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Sep 2025,C - 69 to 80,79.0,B - 81 to 91,83.0,OL128LG,10014332320.0,"20 Facit Fold, Whitworth",0.5397 +11293,252116,1 Edward Street Whitworth Rochdale Lancashire OL12 8LE,,, OL12 8LE,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LE,10014332322.0,"1, Edward Street, Whitworth",0.5465 +11294,252111,3 Edward Street Whitworth Rochdale Lancashire OL12 8LE,,, OL12 8LE,House: End Terrace,Domestic EPC Required,EPC Present,23 Oct 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LE,10014332323.0,"3, Edward Street, Whitworth",0.5465 +11295,252110,5 Edward Street Whitworth Rochdale Lancashire OL12 8LE,,, OL12 8LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Oct 2013,B - 81 to 91,83.0,A - 92 Plus,95.0,OL128LE,10014332324.0,"5, Edward Street, Whitworth",0.5465 +11296,252128,7 Edward Street Whitworth Rochdale Lancashire OL12 8LE,,, OL12 8LE,House: End Terrace,Domestic EPC Required,EPC Present,23 Oct 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LE,10014332325.0,"7, Edward Street, Whitworth",0.5465 +11297,252130,9 Edward Street Whitworth Rochdale Lancashire OL12 8LE,,, OL12 8LE,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Oct 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LE,10014332326.0,"9, Edward Street, Whitworth",0.5465 +11301,252131,11 Edward Street Whitworth Rochdale Lancashire OL12 8LE,,, OL12 8LE,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Oct 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LE,10014332327.0,"11, Edward Street, Whitworth",0.5497 +11308,232313,15 Edward Street Whitworth Rochdale Lancashire OL12 8LE,,, OL12 8LE,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Oct 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LE,10014332328.0,"15, Edward Street, Whitworth",0.5497 +11309,246204,17 Edward Street Whitworth Rochdale Lancashire OL12 8LE,,, OL12 8LE,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Jan 2016,C - 69 to 80,79.0,A - 92 Plus,94.0,OL128LE,10014332329.0,"17, Edward Street, Whitworth",0.5497 +11310,252129,19 Edward Street Whitworth Rochdale Lancashire OL12 8LE,,, OL12 8LE,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Oct 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LE,10014332330.0,"19, Edward Street, Whitworth",0.5497 +11321,211682,11 Pickup Street Bacup Lancashire OL13 9AZ,,, OL13 9AZ,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,82.0,A - 92 Plus,95.0,OL139AZ,10014332010.0,"11, Pickup Street",0.4717 +11322,211681,9 Pickup Street Bacup Lancashire OL13 9AZ,,, OL13 9AZ,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,82.0,A - 92 Plus,95.0,OL139AZ,10014332009.0,"9, Pickup Street",0.4661 +11323,211680,1 Pickup Street Bacup Lancashire OL13 9AZ,,, OL13 9AZ,House: End Terrace,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL139AZ,10014332005.0,"1, Pickup Street",0.4661 +11324,211679,3 Pickup Street Bacup Lancashire OL13 9AZ,,, OL13 9AZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,84.0,A - 92 Plus,95.0,OL139AZ,10014332006.0,"3, Pickup Street",0.4661 +11325,211684,5 Pickup Street Bacup Lancashire OL13 9AZ,,, OL13 9AZ,House: End Terrace,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL139AZ,10014332007.0,"5, Pickup Street",0.4661 +11326,211685,7 Pickup Street Bacup Lancashire OL13 9AZ,,, OL13 9AZ,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,82.0,A - 92 Plus,95.0,OL139AZ,10014332008.0,"7, Pickup Street",0.4661 +11330,211686,8 South Street Bacup Lancashire OL13 9AP,,, OL13 9AP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL139AP,10014332012.0,"8, South Street",0.4601 +11331,211687,10 South Street Bacup Lancashire OL13 9AP,,, OL13 9AP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL139AP,10014332013.0,"10, South Street",0.4661 +11628,245190,4 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Apr 2015,B - 81 to 91,82.0,A - 92 Plus,94.0,BB102FY,10023762654.0,"4 McLinden Court, Briercliffe",0.4417 +11629,245192,6 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Apr 2015,B - 81 to 91,82.0,A - 92 Plus,94.0,BB102FY,10023762655.0,"6 McLinden Court, Briercliffe",0.4417 +11630,245196,8 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Apr 2015,B - 81 to 91,82.0,A - 92 Plus,94.0,BB102FY,10023762656.0,"8 McLinden Court, Briercliffe",0.4417 +11631,245198,10 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Apr 2015,B - 81 to 91,81.0,A - 92 Plus,95.0,BB102FY,10023762657.0,"10 McLinden Court, Briercliffe",0.4446 +11632,245200,12 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Apr 2015,B - 81 to 91,82.0,A - 92 Plus,95.0,BB102FY,10023762658.0,"12 McLinden Court, Briercliffe",0.4446 +11633,245207,22 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jun 2015,B - 81 to 91,82.0,A - 92 Plus,95.0,BB102FY,10023762663.0,"22 McLinden Court, Briercliffe",0.4446 +11634,245209,24 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jun 2015,B - 81 to 91,82.0,A - 92 Plus,95.0,BB102FY,10023762664.0,"24 McLinden Court, Briercliffe",0.4446 +11638,252395,50 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Jun 2015,B - 81 to 91,82.0,A - 92 Plus,95.0,BB102FY,10023762677.0,"50 McLinden Court, Briercliffe",0.4446 +11639,245214,52 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Jun 2015,B - 81 to 91,82.0,A - 92 Plus,95.0,BB102FY,10023762678.0,"52 McLinden Court, Briercliffe",0.4446 +11640,245241,54 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jun 2015,B - 81 to 91,81.0,A - 92 Plus,95.0,BB102FY,10023762679.0,"54 McLinden Court, Briercliffe",0.4446 +11641,252072,56 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jun 2015,B - 81 to 91,81.0,A - 92 Plus,95.0,BB102FY,10023762680.0,"56 McLinden Court, Briercliffe",0.4446 +11642,245243,58 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,19 May 2015,B - 81 to 91,83.0,A - 92 Plus,94.0,BB102FY,10023762681.0,"58 McLinden Court, Briercliffe",0.4446 +11643,245251,60 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,19 May 2015,B - 81 to 91,82.0,A - 92 Plus,94.0,BB102FY,10023762682.0,"60 McLinden Court, Briercliffe",0.4446 +11644,245188,2 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Apr 2015,B - 81 to 91,82.0,A - 92 Plus,94.0,BB102FY,10023762653.0,"2 McLinden Court, Briercliffe",0.4417 +11660,245203,14 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Apr 2015,B - 81 to 91,82.0,A - 92 Plus,95.0,BB102FY,10023762659.0,"14 McLinden Court, Briercliffe",0.4446 +11662,245205,16 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Apr 2015,B - 81 to 91,82.0,A - 92 Plus,95.0,BB102FY,10023762660.0,"16 McLinden Court, Briercliffe",0.4446 +11690,245252,62 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,12 May 2015,B - 81 to 91,83.0,A - 92 Plus,94.0,BB102FY,10023762683.0,"62 McLinden Court, Briercliffe",0.4446 +11691,245255,64 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,12 May 2015,B - 81 to 91,82.0,A - 92 Plus,94.0,BB102FY,10023762684.0,"64 McLinden Court, Briercliffe",0.4446 +11701,245276,1 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,29 Apr 2015,B - 81 to 91,81.0,A - 92 Plus,95.0,BB102FY,10023762637.0,"1 McLinden Court, Briercliffe",0.4417 +11702,245284,3 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,15 Apr 2015,B - 81 to 91,81.0,A - 92 Plus,95.0,BB102FY,10023762638.0,"3 McLinden Court, Briercliffe",0.4417 +11703,245288,31 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,02 Jun 2015,B - 81 to 91,85.0,A - 92 Plus,100.0,BB102FY,10023762651.0,31 McLinden Court,0.2958 +11704,245286,33 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,02 Jun 2015,B - 81 to 91,81.0,A - 92 Plus,95.0,BB102FY,10023762652.0,33 McLinden Court,0.2958 +11716,252065,5 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Bottom,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,82.0,B - 81 to 91,82.0,BB102FY,10023762639.0,"5, McLindon Court",0.3993 +11717,252081,7 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Middle,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,82.0,B - 81 to 91,82.0,BB102FY,10023762640.0,"7, McLindon Court",0.3993 +11718,252083,19 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Bottom,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,83.0,B - 81 to 91,83.0,BB102FY,10023762645.0,19 McLindon Court,0.4046 +11719,252085,9 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Top,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,81.0,B - 81 to 91,81.0,BB102FY,10023762641.0,"9, McLindon Court",0.3993 +11720,252087,11 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Bottom,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,83.0,B - 81 to 91,83.0,BB102FY,10023762642.0,"11, McLindon Court",0.4046 +11721,252089,15 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Middle,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,83.0,B - 81 to 91,83.0,BB102FY,10023762643.0,"15, McLindon Court",0.4046 +11722,252091,17 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Top,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,83.0,B - 81 to 91,83.0,BB102FY,10023762644.0,"17, McLindon Court",0.4046 +11723,252093,21 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Middle,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,83.0,B - 81 to 91,83.0,BB102FY,10023762646.0,"21, McLindon Court",0.4046 +11724,252095,23 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Top,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,83.0,B - 81 to 91,83.0,BB102FY,10023762647.0,"23, McLindon Court",0.4046 +11725,252097,25 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Bottom,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,82.0,B - 81 to 91,82.0,BB102FY,10023762648.0,"25, McLindon Court",0.4046 +11726,252099,27 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Middle,Domestic EPC Required,EPC Present,07 Oct 2025,B - 81 to 91,82.0,B - 81 to 91,82.0,BB102FY,10023762649.0,27 McLindon Court,0.4046 +11727,252101,29 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Top,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,81.0,B - 81 to 91,81.0,BB102FY,10023762650.0,"29, McLindon Court",0.4046 +11646,236608,3 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: Semi-Detached,Domestic EPC Required,EPC Present,19 May 2015,B - 81 to 91,83.0,A - 92 Plus,95.0,BB102FX,10023762626.0,"3 Hallam Street, Briercliffe",0.5555 +11647,245256,5 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jun 2015,B - 81 to 91,83.0,A - 92 Plus,95.0,BB102FX,10023762627.0,"5, Hallam Street, Briercliffe",0.5555 +11648,245160,7 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jun 2015,B - 81 to 91,83.0,A - 92 Plus,95.0,BB102FX,10023762628.0,"7, Hallam Street, Briercliffe",0.5555 +11649,245162,9 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Apr 2015,B - 81 to 91,83.0,A - 92 Plus,94.0,BB102FX,10023762629.0,"9 Hallam Street, Briercliffe",0.5555 +11650,245164,11 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Apr 2015,B - 81 to 91,83.0,A - 92 Plus,94.0,BB102FX,10023762630.0,"11 Hallam Street, Briercliffe",0.5583 +11651,236599,1 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: Semi-Detached,Domestic EPC Required,EPC Present,19 May 2015,B - 81 to 91,83.0,A - 92 Plus,95.0,BB102FX,10023762625.0,"1 Hallam Street, Briercliffe",0.5555 +11654,245259,15 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: End Terrace,Domestic EPC Required,EPC Present,17 Jun 2015,B - 81 to 91,83.0,A - 92 Plus,94.0,BB102FX,10023762631.0,"15 Hallam Street, Briercliffe",0.5583 +11655,245261,17 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Apr 2015,B - 81 to 91,84.0,A - 92 Plus,95.0,BB102FX,10023762632.0,"17 Hallam Street, Briercliffe",0.5583 +11656,245274,19 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: End Terrace,Domestic EPC Required,EPC Present,14 Apr 2015,B - 81 to 91,83.0,A - 92 Plus,95.0,BB102FX,10023762633.0,"19 Hallam Street, Briercliffe",0.5583 +11657,245166,21 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: End Terrace,Domestic EPC Required,EPC Present,14 Apr 2015,B - 81 to 91,83.0,A - 92 Plus,96.0,BB102FX,10023762634.0,"21 Hallam Street, Briercliffe",0.5583 +11658,245171,23 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Apr 2015,B - 81 to 91,84.0,A - 92 Plus,96.0,BB102FX,10023762635.0,"23 Hallam Street, Briercliffe",0.5583 +11659,245186,25 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: End Terrace,Domestic EPC Required,EPC Present,12 Feb 2015,B - 81 to 91,82.0,A - 92 Plus,94.0,BB102FX,10023762636.0,"25 Hallam Street, Briercliffe",0.5583 +11760,247875,4 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,81.0,A - 92 Plus,98.0,BB55ZR,10070894392.0,"4 Parklands Court, Moor Street, Clayton le Moors",0.7628 +11761,247881,7 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,81.0,A - 92 Plus,98.0,BB55ZR,10070894395.0,"7 Parklands Court, Moor Street, Clayton le Moors",0.7628 +11762,247877,5 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,81.0,A - 92 Plus,98.0,BB55ZR,10070894393.0,"5 Parklands Court, Moor Street, Clayton le Moors",0.7628 +11763,247959,12 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,81.0,A - 92 Plus,98.0,BB55ZR,10070894400.0,"12 Parklands Court, Moor Street, Clayton le Moors",0.7639 +11764,247879,6 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,82.0,A - 92 Plus,95.0,BB55ZR,10070894394.0,"6 Parklands Court, Moor Street, Clayton le Moors",0.7628 +11765,247961,13 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,C - 69 to 80,80.0,A - 92 Plus,97.0,BB55ZR,10070894401.0,"13 Parklands Court, Moor Street, Clayton le Moors",0.7639 +11766,247869,1 Parklands Court Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,C - 69 to 80,80.0,A - 92 Plus,97.0,BB55ZR,10070894389.0,"1 Parklands Court, Moor Street, Clayton le Moors",0.5949 +11767,247955,10 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,81.0,A - 92 Plus,98.0,BB55ZR,10070894398.0,"10 Parklands Court, Moor Street, Clayton le Moors",0.7639 +11768,247883,8 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,81.0,A - 92 Plus,98.0,BB55ZR,10070894396.0,"8 Parklands Court, Moor Street, Clayton le Moors",0.7628 +11769,247957,11 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,82.0,A - 92 Plus,95.0,BB55ZR,10070894399.0,"11 Parklands Court, Moor Street, Clayton le Moors",0.7639 +11770,247871,2 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,81.0,A - 92 Plus,98.0,BB55ZR,10070894390.0,"2 Parklands Court, Moor Street, Clayton le Moors",0.7628 +11771,247953,9 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,81.0,A - 92 Plus,98.0,BB55ZR,10070894397.0,"9 Parklands Court, Moor Street, Clayton le Moors",0.7628 +13917,383826,3 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,26 Jan 2016,A - 92 Plus,94.0,A - 92 Plus,95.0,BB55ZR,10070894391.0,"3 Parklands Court, Moor Street, Clayton le Moors",0.7628 +12129,268469,146 Brunshaw Road Burnley Lancashire BB10 4BY,,, BB10 4BY,House: End Terrace,Domestic EPC Required,EPC Present,09 Apr 2014,C - 69 to 80,69.0,A - 92 Plus,92.0,BB104BY,100010331495.0,"146, Brunshaw Road",0.4705 +12149,367855,59 Bank Parade Burnley Lancashire BB11 1UG,,, BB11 1UG,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Apr 2024,D - 55 to 68,65.0,B - 81 to 91,86.0,BB111UG,100010327967.0,59 Bank Parade,0.4536 +12236,272065,3 Pomfret Street Burnley Lancashire BB11 4AF,,, BB11 4AF,Bungalow: End Terr,Domestic EPC Required,EPC Present,09 Feb 2017,B - 81 to 91,83.0,A - 92 Plus,97.0,BB114AF,10023763372.0,"3, Pomfret Street",0.4652 +12237,272063,3a Pomfret Street Burnley Lancashire BB11 4AF,,, BB11 4AF,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Feb 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114AF,10023763373.0,3a Pomfret Street,0.5219 +12238,272064,3b Pomfret Street Burnley Lancashire BB11 4AF,,, BB11 4AF,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Feb 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114AF,10023763374.0,3b Pomfret Street,0.5219 +12239,272067,5 Pomfret Street Burnley Lancashire BB11 4AF,,, BB11 4AF,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Feb 2017,B - 81 to 91,83.0,A - 92 Plus,93.0,BB114AF,10023763375.0,5 Pomfret Street,0.4652 +12240,272066,5a Pomfret Street Burnley Lancashire BB11 4AF,,, BB11 4AF,Bungalow: End Terr,Domestic EPC Required,EPC Present,09 Feb 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114AF,10023763376.0,5a Pomfret Street,0.5219 +12241,272440,4 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Mar 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BD,10023763361.0,4 Blannel Street,0.4652 +12242,272518,6 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Mar 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BD,10023763362.0,6 Blannel Street,0.4652 +12243,272519,8 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Mar 2017,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BD,10023763363.0,8 Blannel Street,0.4652 +12244,272520,10 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Mar 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BD,10023763364.0,10 Blannel Street,0.4705 +12245,272521,12 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Mar 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BD,10023763365.0,12 Blannel Street,0.4705 +12254,273424,5 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Mar 2017,B - 81 to 91,83.0,A - 92 Plus,97.0,BB114BD,10023763366.0,"5, Blannel Street",0.4652 +12255,273419,7 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Mar 2017,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BD,10023763367.0,"7, Blannel Street",0.4652 +12256,273417,9 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Mar 2017,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BD,10023763368.0,"9, Blannel Street",0.4652 +12257,273416,11 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Mar 2017,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BD,10023763369.0,"11, Blannel Street",0.4705 +12258,273415,13 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Mar 2017,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BD,10023763370.0,"13, Blannel Street",0.4705 +12259,273414,15 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,House: End Terrace,Domestic EPC Required,EPC Present,27 Mar 2017,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114BD,10023763371.0,"15, Blannel Street",0.4705 +12267,323671,2 Waverley Street Burnley Lancashire BB11 4DB,,, BB11 4DB,Bungalow: End Terr,Domestic EPC Required,EPC Present,09 May 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DB,10023763355.0,"2, Waverley Street",0.4705 +12268,323672,4 Waverley Street Burnley Lancashire BB11 4DB,,, BB11 4DB,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 May 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DB,10023763356.0,"4, Waverley Street",0.4705 +12269,323673,6 Waverley Street Burnley Lancashire BB11 4DB,,, BB11 4DB,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 May 2017,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114DB,10023763357.0,"6, Waverley Street",0.4705 +12270,323674,8 Waverley Street Burnley Lancashire BB11 4DB,,, BB11 4DB,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 May 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DB,10023763358.0,"8, Waverley Street",0.4705 +12271,323669,10 Waverley Street Burnley Lancashire BB11 4DB,,, BB11 4DB,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 May 2017,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114DB,10023763359.0,"10, Waverley Street",0.4754 +12272,323670,12 Waverley Street Burnley Lancashire BB11 4DB,,, BB11 4DB,House: End Terrace,Domestic EPC Required,EPC Present,09 May 2017,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114DB,10023763360.0,"12, Waverley Street",0.4754 +12311,316664,20-22 Macleod Street NELSON Lancashire BB9 7HQ,,, BB9 7HQ,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2014,C - 69 to 80,75.0,B - 81 to 91,84.0,BB97HQ,10090962079.0,"20-22, Macleod Street",0.5371 +12312,316665,24-26 Macleod Street NELSON Lancashire BB9 7HQ,,, BB9 7HQ,House: End Terrace,Domestic EPC Required,EPC Present,27 Nov 2014,C - 69 to 80,76.0,B - 81 to 91,86.0,BB97HQ,10090962078.0,24-26 Mcleod Street,0.4213 +12313,316666,28-30 Macleod Street NELSON Lancashire BB9 7HQ,,, BB9 7HQ,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2014,C - 69 to 80,77.0,B - 81 to 91,87.0,BB97HQ,10090962077.0,"28-30, Macleod Street",0.5371 +12314,316667,32-34 Macleod Street NELSON Lancashire BB9 7HQ,,, BB9 7HQ,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2014,C - 69 to 80,76.0,B - 81 to 91,86.0,BB97HQ,10090962076.0,"32-34, Macleod Street",0.5371 +12315,316668,36-38 Macleod Street NELSON Lancashire BB9 7HQ,,, BB9 7HQ,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2014,C - 69 to 80,76.0,B - 81 to 91,86.0,BB97HQ,10090962075.0,"36-38, Macleod Street",0.5371 +12326,295033,40-42 Macleod Street NELSON Lancashire BB9 7HQ,,, BB9 7HQ,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2014,C - 69 to 80,75.0,B - 81 to 91,84.0,BB97HQ,10090962074.0,"40-42, Macleod Street",0.5371 +12316,275441,23-25 Mosley Street NELSON Lancashire BB9 7HA,,, BB9 7HA,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Dec 2012,C - 69 to 80,77.0,B - 81 to 91,85.0,BB97HA,10090962066.0,"23-25, Mosley Street",0.5328 +12320,295032,1 Mosley Street NELSON Lancashire BB9 7HA,,, BB9 7HA,House: End Terrace,Domestic EPC Required,EPC Present,21 Dec 2012,C - 69 to 80,72.0,B - 81 to 91,82.0,BB97HA,61005000.0,"1, Mosley Street",0.4661 +12317,316677,26-28 Albert Street NELSON Lancashire BB9 7EY,,, BB9 7EY,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Feb 2017,C - 69 to 80,75.0,B - 81 to 91,82.0,BB97EY,10090962891.0,"26-28, Albert Street",0.5328 +12321,316674,14 Albert Street NELSON Lancashire BB9 7EY,,, BB9 7EY,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Aug 2019,C - 69 to 80,74.0,B - 81 to 91,86.0,BB97EY,61004980.0,"14, Albert Street",0.4717 +12322,316675,16 Albert Street NELSON Lancashire BB9 7EY,,, BB9 7EY,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Aug 2015,C - 69 to 80,74.0,B - 81 to 91,86.0,BB97EY,61004982.0,"16, Albert Street",0.4717 +12323,316676,18-20 Albert Street NELSON Lancashire BB9 7EY,,, BB9 7EY,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Feb 2017,C - 69 to 80,75.0,B - 81 to 91,82.0,BB97EY,10090962889.0,"18-20, Albert Street",0.5328 +12318,322634,144 - 146 Every Street NELSON Lancashire BB9 7HF,,, BB9 7HF,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2014,C - 69 to 80,78.0,B - 81 to 91,86.0,BB97HF,10090962072.0,"144-146, Every Street",0.5371 +12319,322636,148 - 150 Every Street NELSON Lancashire BB9 7HF,,, BB9 7HF,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2014,C - 69 to 80,76.0,B - 81 to 91,83.0,BB97HF,10090962070.0,"148-150, Every Street",0.5371 +12452,296843,11 Cotton Street Burnley Lancashire BB12 0NH,,, BB12 0NH,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Jul 2023,D - 55 to 68,64.0,B - 81 to 91,84.0,BB120NH,100010335960.0,11 Cotton Street,0.4652 +12510,304349,7 Tennis Street Burnley Lancashire BB10 3AG,,, BB10 3AG,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,72.0,B - 81 to 91,91.0,BB103AG,100010357927.0,"7, Tennis Street",0.4596 +12511,322676,11 Tennis Street Burnley Lancashire BB10 3AG,,, BB10 3AG,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Oct 2013,E - 39 to 54,42.0,B - 81 to 91,83.0,BB103AG,100010357931.0,"11, Tennis Street",0.4652 +12514,300659,18 Paulhan Street Burnley Lancashire BB10 1ET,,, BB10 1ET,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Jul 2018,D - 55 to 68,65.0,B - 81 to 91,88.0,BB101ET,100010351728.0,"18, Paulhan Street",0.4705 +12654,302594,20 Paulhan Street Burnley BB10 1ET,,, BB10 1ET,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2018,C - 69 to 80,73.0,B - 81 to 91,87.0,BB101ET,100010351730.0,"20, Paulhan Street",0.5583 +12518,300666,10 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jun 2018,C - 69 to 80,71.0,C - 69 to 80,79.0,BB102PN,10024181643.0,"10, May Tree Close",0.3281 +13230,338145,11 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: End Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,96.0,BB102PN,10094603894.0,11 May Tree Close,0.3281 +13231,338146,12 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,97.0,BB102PN,10094603895.0,12 May Tree Close,0.3281 +13232,338147,14 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,97.0,BB102PN,10094603896.0,14 May Tree Close,0.3281 +13233,338148,15 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: End Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,96.0,BB102PN,10094603897.0,15 May Tree Close,0.3281 +13234,338149,16 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: End Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,96.0,BB102PN,10094603898.0,16 May Tree Close,0.3281 +13235,338150,17 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,97.0,BB102PN,10094603899.0,17 May Tree Close,0.3281 +13236,338151,18 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,97.0,BB102PN,10094603900.0,18 May Tree Close,0.3281 +13237,338152,19 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: End Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,96.0,BB102PN,10094603901.0,19 May Tree Close,0.3281 +13238,338153,20 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: End Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,83.0,A - 92 Plus,95.0,BB102PN,10094603902.0,20 May Tree Close,0.3281 +13239,338154,21 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,97.0,BB102PN,10094603903.0,21 May Tree Close,0.3281 +13240,338155,22 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,97.0,BB102PN,10094603904.0,22 May Tree Close,0.3281 +13241,338156,23 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: End Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,83.0,A - 92 Plus,96.0,BB102PN,10094603905.0,23 May Tree Close,0.3281 +13242,338157,24 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: End Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,96.0,BB102PN,10094603906.0,24 May Tree Close,0.3281 +13243,338158,25 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,97.0,BB102PN,10094603907.0,25 May Tree Close,0.3281 +13244,338159,26 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,97.0,BB102PN,10094603908.0,26 May Tree Close,0.3281 +13245,338160,27 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,97.0,BB102PN,10094603909.0,27 May Tree Close,0.3281 +13246,338161,28 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: End Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,83.0,A - 92 Plus,95.0,BB102PN,10094603910.0,28 May Tree Close,0.3281 +12563,300654,20 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110295.0,"20, Jubilee Close, Padiham",0.5461 +12564,300667,21 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB127FR,10094110296.0,"21, Jubilee Close, Padiham",0.5461 +12565,300668,22 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Oct 2018,B - 81 to 91,86.0,A - 92 Plus,96.0,BB127FR,10094110297.0,"22, Jubilee Close, Padiham",0.5461 +12566,300669,23 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB127FR,10094110298.0,"23, Jubilee Close, Padiham",0.5461 +12567,300670,24 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB127FR,10094110299.0,"24, Jubilee Close, Padiham",0.5461 +12568,300671,25 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB127FR,10094110300.0,"25, Jubilee Close, Padiham",0.5461 +12569,300672,26 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: End Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB127FR,10094110301.0,"26, Jubilee Close, Padiham",0.5461 +12570,300673,27 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB127FR,10094110302.0,"27, Jubilee Close, Padiham",0.5461 +12571,300674,28 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: End Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110303.0,"28, Jubilee Close, Padiham",0.5461 +12572,300691,29 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Oct 2018,B - 81 to 91,82.0,A - 92 Plus,97.0,BB127FR,10094110304.0,"29, Jubilee Close, Padiham",0.5461 +12573,300692,30 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Oct 2018,B - 81 to 91,82.0,A - 92 Plus,97.0,BB127FR,10094110305.0,"30, Jubilee Close, Padiham",0.5461 +12574,300702,31 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110306.0,"31, Jubilee Close, Padiham",0.5461 +12575,300703,32 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110307.0,"32, Jubilee Close, Padiham",0.5461 +12576,300689,33 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: End Terrace,Domestic EPC Required,EPC Present,03 Oct 2018,B - 81 to 91,83.0,A - 92 Plus,95.0,BB127FR,10094110308.0,"33, Jubilee Close, Padiham",0.5461 +12577,300690,34 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Oct 2018,A - 92 Plus,94.0,A - 92 Plus,97.0,BB127FR,10094110309.0,"34, Jubilee Close, Padiham",0.5461 +12578,300688,35 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB127FR,10094110310.0,"35, Jubilee Close, Padiham",0.5461 +12579,300687,36 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: End Terrace,Domestic EPC Required,EPC Present,03 Oct 2018,B - 81 to 91,82.0,A - 92 Plus,95.0,BB127FR,10094110311.0,"36, Jubilee Close, Padiham",0.5461 +12610,300684,37 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: End Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,95.0,BB127FR,10094110312.0,"37, Jubilee Close, Padiham",0.5461 +12611,300683,38 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110313.0,"38, Jubilee Close, Padiham",0.5461 +12612,300685,39 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110314.0,"39, Jubilee Close, Padiham",0.5461 +12613,300682,40 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110315.0,"40, Jubilee Close, Padiham",0.5461 +12614,300681,41 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110316.0,"41, Jubilee Close, Padiham",0.5461 +12615,300680,42 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110317.0,"42, Jubilee Close, Padiham",0.5461 +12616,300678,43 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110318.0,"43, Jubilee Close, Padiham",0.5461 +12617,300679,44 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110319.0,"44, Jubilee Close, Padiham",0.5461 +12618,300677,45 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110320.0,"45, Jubilee Close, Padiham",0.5461 +12619,300676,46 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110321.0,"46, Jubilee Close, Padiham",0.5461 +12620,300675,47 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110322.0,"47, Jubilee Close, Padiham",0.5461 +12621,300631,48 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: End Terrace,Domestic EPC Required,EPC Present,26 Nov 2018,B - 81 to 91,82.0,A - 92 Plus,95.0,BB127FR,10094110323.0,"48, Jubilee Close, Padiham",0.5461 +12622,300651,1 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110276.0,"1, Jubilee Close, Padiham",0.5426 +12623,300652,2 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB127FR,10094110277.0,"2, Jubilee Close, Padiham",0.5426 +12624,300653,3 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110278.0,"3, Jubilee Close, Padiham",0.5426 +12625,300704,4 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110279.0,"4, Jubilee Close, Padiham",0.5426 +12626,300705,5 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110280.0,"5, Jubilee Close, Padiham",0.5426 +12627,300706,6 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110281.0,"6, Jubilee Close, Padiham",0.5426 +12628,300693,7 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: End Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110282.0,"7, Jubilee Close, Padiham",0.5426 +12629,300695,8 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB127FR,10094110283.0,"8, Jubilee Close, Padiham",0.5426 +12630,300696,9 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB127FR,10094110284.0,"9, Jubilee Close, Padiham",0.5426 +12631,300697,10 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB127FR,10094110285.0,"10, Jubilee Close, Padiham",0.5461 +12632,300698,11 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB127FR,10094110286.0,"11, Jubilee Close, Padiham",0.5461 +12633,300699,12 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB127FR,10094110287.0,"12, Jubilee Close, Padiham",0.5461 +12634,300700,13 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB127FR,10094110288.0,"13, Jubilee Close, Padiham",0.5461 +12635,300701,14 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB127FR,10094110289.0,"14, Jubilee Close, Padiham",0.5461 +12636,300694,15 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: End Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110290.0,"15, Jubilee Close, Padiham",0.5461 +12637,300707,16 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110291.0,"16, Jubilee Close, Padiham",0.5461 +12638,300708,17 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110292.0,"17, Jubilee Close, Padiham",0.5461 +12639,300709,18 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110293.0,"18, Jubilee Close, Padiham",0.5461 +12640,300710,19 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110294.0,"19, Jubilee Close, Padiham",0.5461 +12647,305101,9 Kyan Street Burnley Lancashire England BB10 1HL,,, BB10 1HL,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 May 2019,C - 69 to 80,70.0,B - 81 to 91,90.0,BB101HL,100010345075.0,"9, Kyan Street",0.3905 +12652,302619,31 West Street Burnley Lancashire BB10 3ER,,, BB10 3ER,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 May 2019,C - 69 to 80,69.0,B - 81 to 91,88.0,BB103ER,100010360329.0,"31, West Street",0.4536 +12695,305741,101 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965565.0,"101, Priory Chase",0.4717 +12696,305742,103 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965566.0,"103, Priory Chase",0.4717 +12697,305743,105 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,83.0,A - 92 Plus,97.0,BB90NZ,10090965567.0,"105, Priory Chase",0.4717 +12698,305744,107 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,83.0,A - 92 Plus,97.0,BB90NZ,10090965568.0,"107, Priory Chase",0.4717 +12699,305745,109 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965569.0,"109, Priory Chase",0.4717 +12700,305746,111 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965570.0,"111, Priory Chase",0.4717 +12701,305740,88 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965575.0,"88, Priory Chase",0.4661 +12702,305739,86 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,98.0,BB90NZ,10090965576.0,"86, Priory Chase",0.4661 +12703,305738,84 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB90NZ,10090965577.0,"84, Priory Chase",0.4661 +12704,305737,82 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB90NZ,10090965578.0,"82, Priory Chase",0.4661 +12705,305736,80 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965579.0,"80, Priory Chase",0.4661 +12706,305735,76 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965581.0,"76, Priory Chase",0.4661 +12707,305734,66 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2019,B - 81 to 91,83.0,A - 92 Plus,97.0,BB90NZ,10090965586.0,"66, Priory Chase",0.4661 +12708,305733,64 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2019,B - 81 to 91,83.0,A - 92 Plus,97.0,BB90NZ,10090965587.0,"64, Priory Chase",0.4661 +12709,305732,62 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965588.0,"62, Priory Chase",0.4661 +12710,305731,60 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965589.0,"60, Priory Chase",0.4661 +12711,305730,58 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,23 May 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB90NZ,10090965590.0,"58, Priory Chase",0.4661 +12712,305729,56 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,23 May 2019,B - 81 to 91,84.0,A - 92 Plus,98.0,BB90NZ,10090965591.0,"56, Priory Chase",0.4661 +12713,305728,54 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,98.0,BB90NZ,10090965592.0,"54, Priory Chase",0.4661 +12714,305727,52 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965593.0,"52, Priory Chase",0.4661 +12721,315288,99 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965564.0,"99, Priory Chase",0.4661 +12722,315311,93 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965561.0,"93, Priory Chase",0.4661 +12723,315334,90 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965574.0,"90, Priory Chase",0.4661 +12724,315357,92 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965573.0,"92, Priory Chase",0.4661 +12725,315380,78 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965580.0,"78, Priory Chase",0.4661 +12726,315696,95 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB90NZ,10090965562.0,"95, Priory Chase",0.4661 +12727,315697,97 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB90NZ,10090965563.0,"97, Priory Chase",0.4661 +12728,315698,113 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,83.0,A - 92 Plus,97.0,BB90NZ,10090965571.0,"113, Priory Chase",0.4717 +12730,315700,74 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB90NZ,10090965582.0,"74, Priory Chase",0.4661 +12731,315701,72 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB90NZ,10090965583.0,"72, Priory Chase",0.4661 +12732,315702,70 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB90NZ,10090965584.0,"70, Priory Chase",0.4661 +12733,315703,68 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB90NZ,10090965585.0,"68, Priory Chase",0.4661 +12719,315223,133 Hollingreave Road Burnley Lancashire BB11 2HU,,, BB11 2HU,House: End Terrace,Domestic EPC Required,EPC Present,25 Sep 2019,C - 69 to 80,72.0,B - 81 to 91,91.0,BB112HU,100010343240.0,"133, Hollingreave Road",0.4886 +12769,322609,125 Hollingreave Road Burnley Lancashire BB11 2HU,,, BB11 2HU,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2019,C - 69 to 80,72.0,B - 81 to 91,90.0,BB112HU,100010343232.0,"125, Hollingreave Road",0.4886 +13022,333501,160 Hollingreave Road Burnley Lancashire BB11 2HU,,, BB11 2HU,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Oct 2020,C - 69 to 80,72.0,C - 69 to 80,75.0,BB112HU,100010343255.0,"160 HOLLINGREAVE ROAD, BURNLEY",0.6317 +13088,333850,158 Hollingreave Road Burnley Lancashire BB11 2HU,,, BB11 2HU,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2020,C - 69 to 80,72.0,C - 69 to 80,76.0,BB112HU,100010343254.0,"158 HOLLINGREAVE ROAD, BURNLEY",0.6317 +13318,343253,166 Hollingreave Road Burnley Lancashire BB11 2HU,,, BB11 2HU,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Oct 2021,C - 69 to 80,74.0,B - 81 to 91,90.0,BB112HU,100010343258.0,166 Hollingreave Road,0.4886 +13555,357155,148 Hollingreave Road Burnley Lancashire BB11 2HU,,, BB11 2HU,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Oct 2022,C - 69 to 80,77.0,B - 81 to 91,91.0,BB112HU,100010343249.0,"148 HOLLINGREAVE ROAD, BURNLEY",0.6317 +12741,316279,59 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Oct 2019,C - 69 to 80,72.0,A - 92 Plus,92.0,BB113LS,100010351495.0,"59, Parkinson Street",0.4801 +12786,323342,21 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Jan 2020,C - 69 to 80,73.0,A - 92 Plus,92.0,BB113LS,100010351457.0,"21, Parkinson Street",0.4801 +12791,323711,63 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jan 2020,C - 69 to 80,74.0,B - 81 to 91,92.0,BB113LS,100010351499.0,"63, Parkinson Street",0.4801 +12794,326498,53 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2020,C - 69 to 80,74.0,B - 81 to 91,91.0,BB113LS,100010351489.0,"53, Parkinson Street",0.4801 +12796,326494,9 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2020,C - 69 to 80,74.0,A - 92 Plus,92.0,BB113LS,100010351445.0,"9, Parkinson Street",0.4754 +12804,326496,16 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LS,100010351452.0,"16, Parkinson Street",0.4801 +12808,328397,50 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Mar 2020,C - 69 to 80,73.0,B - 81 to 91,91.0,BB113LS,100010351486.0,"50, Parkinson Street",0.4801 +12955,329533,14 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Jun 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LS,100010351450.0,"14, Parkinson Street",0.4801 +12956,329852,15 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Jun 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LS,100010351451.0,"15, Parkinson Street",0.4801 +12969,330194,30 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jul 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LS,100010351466.0,"30, Parkinson Street",0.4801 +12970,330849,68 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Aug 2020,C - 69 to 80,74.0,A - 92 Plus,92.0,BB113LS,100010351504.0,"68, Parkinson Street",0.4801 +12979,332694,56 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Oct 2020,C - 69 to 80,74.0,C - 69 to 80,77.0,BB113LS,100010351492.0,"56 PARKINSON STREET, BURNLEY",0.6268 +12980,331061,58 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Oct 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LS,100010351494.0,"58 PARKINSON STREET, BURNLEY",0.6268 +12990,329401,27 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Mar 2020,C - 69 to 80,74.0,A - 92 Plus,92.0,BB113LS,100010351463.0,"27, Parkinson Street",0.4801 +13146,338265,28 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Feb 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LS,100010351464.0,"28 PARKINSON STREET, BURNLEY",0.6268 +13248,338853,32 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Apr 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LS,100010351468.0,"32 PARKINSON STREET, BURNLEY",0.6268 +13249,339233,48 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 May 2021,C - 69 to 80,74.0,A - 92 Plus,93.0,BB113LS,100010351484.0,48 PARKINSON STREET,0.4801 +13767,367908,57 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB113LS,100010351493.0,"57 PARKINSON STREET, BURNLEY",0.6268 +12744,316282,175 New Lane ACCRINGTON Lancashire BB5 3QN,,, BB5 3QN,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Mar 2022,C - 69 to 80,71.0,B - 81 to 91,85.0,BB53QN,100010435737.0,"175 New Lane, Oswaldtwistle",0.429 +12745,316285,23 Hollingreave Road Burnley Lancashire BB11 2HZ,,, BB11 2HZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Oct 2019,D - 55 to 68,65.0,C - 69 to 80,80.0,BB112HZ,100010343134.0,"23, Hollingreave Road",0.4845 +12792,328395,44 Hollingreave Road Burnley Lancashire BB11 2HZ,,, BB11 2HZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Mar 2020,C - 69 to 80,72.0,B - 81 to 91,87.0,BB112HZ,100010343154.0,"44, Hollingreave Road",0.4845 +13284,339412,62 Hollingreave Road Burnley Lancashire BB11 2HZ,,, BB11 2HZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 May 2021,C - 69 to 80,74.0,B - 81 to 91,89.0,BB112HZ,100010343172.0,"62 HOLLINGREAVE ROAD, BURNLEY",0.6293 +12746,323625,9 Dall Street Burnley Lancashire BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Oct 2019,C - 69 to 80,71.0,A - 92 Plus,92.0,BB113LB,100010336720.0,"9, Dall Street",0.4471 +12761,322307,17 Dall Street Burnley Lancashire UK BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Nov 2019,C - 69 to 80,72.0,B - 81 to 91,91.0,BB113LB,100010336728.0,"17, Dall Street",0.4099 +12764,322370,43 Dall Street Burnley Lancashire BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,72.0,B - 81 to 91,90.0,BB113LB,100010336754.0,"43, Dall Street",0.4536 +12809,328393,39 Dall Street Burnley Lancashire UK BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Mar 2020,C - 69 to 80,74.0,A - 92 Plus,92.0,BB113LB,100010336750.0,"39, Dall Street",0.4099 +12993,329428,74 Dall Street Burnley Lancashire UK BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Apr 2020,C - 69 to 80,74.0,B - 81 to 91,90.0,BB113LB,100010336785.0,"74, Dall Street",0.4099 +13023,332659,68 Dall Street Burnley Lancashire BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LB,100010336779.0,"68 DALL STREET, BURNLEY",0.6121 +13128,337673,21 Dall Street Burnley Lancashire BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Jan 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LB,100010336732.0,"21 DALL STREET, BURNLEY",0.6121 +13618,358897,56 Dall Street Burnley Lancashire BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Feb 2023,C - 69 to 80,76.0,B - 81 to 91,90.0,BB113LB,100010336767.0,56 Dall Street,0.4536 +13731,359942,72 Dall Street Burnley Lancashire BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 May 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB113LB,100010336783.0,72 Dall Street,0.4536 +13771,368219,53 Dall Street Burnley Lancashire BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2021,C - 69 to 80,76.0,A - 92 Plus,92.0,BB113LB,100010336764.0,53 Dall Street,0.4536 +13830,380312,60 Dall Street Burnley Lancashire BB11 3LB,,, BB11 3LB,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Jul 2024,C - 69 to 80,73.0,B - 81 to 91,87.0,BB113LB,100010336771.0,60 Dall Street,0.4536 +12754,322707,93 Hollingreave Road Burnley Lancashire BB11 2HT,,, BB11 2HT,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Sep 2019,C - 69 to 80,69.0,B - 81 to 91,88.0,BB112HT,100010343203.0,"93, Hollingreave Road",0.4845 +12974,330853,97 Hollingreave Road Burnley Lancashire BB11 2HT,,, BB11 2HT,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Aug 2020,C - 69 to 80,70.0,B - 81 to 91,87.0,BB112HT,100010343207.0,"97, Hollingreave Road",0.4845 +13168,338276,95 Hollingreave Road Burnley Lancashire BB11 2HT,,, BB11 2HT,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Mar 2021,C - 69 to 80,72.0,B - 81 to 91,88.0,BB112HT,100010343205.0,"95 HOLLINGREAVE ROAD, BURNLEY",0.6293 +12756,321704,7 Stoney Street Burnley Lancashire BB11 3PT,,, BB11 3PT,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2019,C - 69 to 80,70.0,B - 81 to 91,91.0,BB113PT,100010357142.0,"7, Stoney Street",0.4596 +12984,329260,10 Stoney Street Burnley Lancashire BB11 3PT,,, BB11 3PT,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Mar 2020,D - 55 to 68,65.0,B - 81 to 91,90.0,BB113PT,100010357145.0,"10, Stoney Street",0.4652 +12760,322300,79 Parkinson Street Burnley Lancashire BB11 3LU,,, BB11 3LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Jan 2020,D - 55 to 68,66.0,B - 81 to 91,89.0,BB113LU,100010351515.0,"79, Parkinson Street",0.4801 +12770,322613,91 Parkinson Street Burnley Lancashire BB11 3LU,,, BB11 3LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,70.0,B - 81 to 91,86.0,BB113LU,100010351527.0,"91, Parkinson Street",0.4801 +12771,322622,96 Parkinson Street Burnley Lancashire BB11 3LU,,, BB11 3LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB113LU,100010351532.0,"96, Parkinson Street",0.4801 +12981,330851,83 Parkinson Street Burnley Lancashire BB11 3LU,,, BB11 3LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Aug 2020,C - 69 to 80,70.0,B - 81 to 91,90.0,BB113LU,100010351519.0,"83, Parkinson Street",0.4801 +13589,357810,78 Parkinson Street Burnley Lancashire BB11 3LU,,, BB11 3LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Nov 2022,C - 69 to 80,76.0,B - 81 to 91,91.0,BB113LU,100010351514.0,78 Parkinson Street,0.4801 +12763,322310,82 Hufling Lane Burnley Lancashire BB11 3QH,,, BB11 3QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Nov 2019,C - 69 to 80,69.0,B - 81 to 91,90.0,BB113QH,100010343761.0,"82, Hufling Lane",0.4596 +13021,332979,86 Hufling Lane Burnley Lancashire BB11 3QH,,, BB11 3QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Oct 2020,C - 69 to 80,74.0,C - 69 to 80,77.0,BB113QH,100010343764.0,"86 HUFLING LANE, BURNLEY",0.6154 +13305,340559,34 Hufling Lane Burnley Lancashire BB11 3QH,,, BB11 3QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Sep 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113QH,100010343718.0,34 Hufling Lane,0.4596 +13881,382515,39 Hufling Lane Burnley Lancashire BB11 3QH,,, BB11 3QH,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Oct 2024,C - 69 to 80,78.0,B - 81 to 91,90.0,BB113QH,100010343723.0,39 Hufling Lane,0.4596 +12766,322414,24 Sutherland Street Colne Lancashire BB8 0DB,,, BB8 0DB,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jun 2025,D - 55 to 68,57.0,B - 81 to 91,82.0,BB80DB,61019562.0,24 Sutherland Street,0.494 +12768,324897,89 Reed Street Burnley Lancashire BB11 3LW,,, BB11 3LW,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Nov 2019,D - 55 to 68,64.0,B - 81 to 91,87.0,BB113LW,100010353697.0,"89, Reed Street",0.4536 +12821,329061,75 Reed Street Burnley Lancashire BB11 3LW,,, BB11 3LW,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Apr 2020,D - 55 to 68,64.0,B - 81 to 91,88.0,BB113LW,100010353683.0,"75, Reed Street",0.4536 +12864,329531,5 Reed Street Burnley Lancashire BB11 3LW,,, BB11 3LW,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,70.0,B - 81 to 91,89.0,BB113LW,,, +12784,322703,26 Hornby Street Burnley Lancashire BB11 3AS,,, BB11 3AS,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,72.0,B - 81 to 91,87.0,BB113AS,100010343468.0,"26, Hornby Street",0.4652 +12822,328476,34 Hornby Street Burnley Lancashire BB11 3AS,,, BB11 3AS,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Mar 2020,D - 55 to 68,65.0,B - 81 to 91,87.0,BB113AS,100010343472.0,"34, Hornby Street",0.4652 +12788,325673,66 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Jan 2020,C - 69 to 80,74.0,B - 81 to 91,91.0,BB113LP,100010353674.0,"66, Reed Street",0.4536 +12806,324361,25 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jan 2020,C - 69 to 80,72.0,B - 81 to 91,89.0,BB113LP,100010353633.0,"25, Reed Street",0.4536 +12807,324366,52 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2020,C - 69 to 80,74.0,B - 81 to 91,91.0,BB113LP,100010353660.0,"52, Reed Street",0.4536 +12982,337611,11 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Oct 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LP,100010353619.0,"11 REED STREET, BURNLEY",0.6121 +13306,341121,68 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Sep 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LP,100010353676.0,68 Reed Street,0.4536 +13354,357176,45 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Feb 2022,C - 69 to 80,76.0,A - 92 Plus,92.0,BB113LP,100010353653.0,45 Reed Street,0.4536 +13449,352604,50 Reed Street BURNLEY Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jun 2022,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LP,100010353658.0,50 Reed Street,0.4536 +13482,354533,51 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Jun 2023,C - 69 to 80,75.0,B - 81 to 91,89.0,BB113LP,100010353659.0,51 Reed Street,0.4536 +13587,357182,62 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2022,B - 81 to 91,86.0,B - 81 to 91,87.0,BB113LP,100010353670.0,62 Reed Street,0.4536 +13611,358845,4 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Nov 2022,C - 69 to 80,77.0,B - 81 to 91,91.0,BB113LP,100010353612.0,4 Reed Street,0.4471 +13637,358896,59 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Feb 2023,C - 69 to 80,75.0,B - 81 to 91,88.0,BB113LP,100010353667.0,59 Reed Street,0.4536 +13751,362956,40 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Aug 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB113LP,100010353648.0,40 Reed Street,0.4536 +12793,326501,65 Branch Road Burnley Lancashire BB11 3NB,,, BB11 3NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2020,C - 69 to 80,74.0,B - 81 to 91,91.0,BB113NB,100010329567.0,"65, Branch Road",0.4536 +12854,329527,39 Branch Road Burnley Lancashire BB11 3NB,,, BB11 3NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113NB,100010329541.0,"39, Branch Road",0.4536 +12985,329334,47 Branch Road Burnley Lancashire BB11 3NB,,, BB11 3NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Mar 2020,C - 69 to 80,74.0,B - 81 to 91,91.0,BB113NB,100010329549.0,"47, Branch Road",0.4536 +13083,333842,83 Branch Road Burnley Lancashire BB11 3NB,,, BB11 3NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2020,C - 69 to 80,75.0,C - 69 to 80,79.0,BB113NB,100010329585.0,"83 BRANCH ROAD, BURNLEY",0.6121 +13112,337318,33 Branch Road Burnley Lancashire BB11 3NB,,, BB11 3NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Jan 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113NB,100010329535.0,"33 BRANCH ROAD, BURNLEY",0.6121 +13169,338260,113 Branch Road Burnley Lancashire BB11 3NB,,, BB11 3NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Feb 2021,C - 69 to 80,70.0,B - 81 to 91,88.0,BB113NB,,, +13224,338682,71 Branch Road Burnley Lancashire BB11 3NB,,, BB11 3NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Apr 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113NB,100010329573.0,"71 BRANCH ROAD, BURNLEY",0.6121 +13309,340988,31 Branch Road Burnley Lancashire BB11 3NB,,, BB11 3NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Sep 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113NB,100010329533.0,31 Branch Road,0.4536 +12797,328063,20 Clarence Street Burnley Lancashire BB11 3HG,,, BB11 3HG,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Feb 2020,D - 55 to 68,67.0,B - 81 to 91,91.0,BB113HG,100010333937.0,"20, Clarence Street",0.4754 +12825,325389,5 Roshan Avenue NELSON Lancashire BB9 5QE,,, BB9 5QE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Nov 2019,B - 81 to 91,82.0,A - 92 Plus,95.0,BB95QE,10090965518.0,"5, Roshan Avenue, Brierfield",0.4318 +12826,325391,7 Roshan Avenue NELSON Lancashire BB9 5QE,,, BB9 5QE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,29 Nov 2019,B - 81 to 91,82.0,A - 92 Plus,95.0,BB95QE,10090965517.0,"7, Roshan Avenue, Brierfield",0.4318 +12827,326196,9 Roshan Avenue NELSON Lancashire BB9 5QE,,, BB9 5QE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,29 Nov 2019,B - 81 to 91,82.0,A - 92 Plus,95.0,BB95QE,10090965516.0,"9, Roshan Avenue, Brierfield",0.4318 +12828,326193,11 Roshan Avenue NELSON Lancashire BB9 5QE,,, BB9 5QE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,29 Nov 2019,B - 81 to 91,82.0,A - 92 Plus,95.0,BB95QE,10090965515.0,"11, Roshan Avenue, Brierfield",0.4365 +12829,326190,15 Roshan Avenue NELSON Lancashire BB9 5QE,,, BB9 5QE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,29 Nov 2019,B - 81 to 91,82.0,A - 92 Plus,95.0,BB95QE,10090965514.0,"15, Roshan Avenue, Brierfield",0.4365 +12830,326187,17 Roshan Avenue NELSON Lancashire BB9 5QE,,, BB9 5QE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,29 Nov 2019,B - 81 to 91,82.0,A - 92 Plus,95.0,BB95QE,10090965513.0,"17, Roshan Avenue, Brierfield",0.4365 +12832,325591,2 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,Bungalow: Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,95.0,BB128ES,10023762776.0,"2, Wilding Way, Padiham",0.6085 +12833,325924,16a Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,96.0,BB128ES,10094111378.0,"16a Wilding Way, Padiham",0.6533 +12834,325925,16 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,96.0,BB128ES,10023762783.0,"16, Wilding Way, Padiham",0.6121 +12835,325926,14a Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,96.0,BB128ES,10094111377.0,"14a Wilding Way, Padiham",0.6533 +12836,325927,14 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB128ES,10023762782.0,"14, Wilding Way, Padiham",0.6121 +12837,325928,12 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB128ES,10023762781.0,"12, Wilding Way, Padiham",0.6121 +12838,325929,10 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,96.0,BB128ES,10023762780.0,"10, Wilding Way, Padiham",0.6121 +12839,325930,8 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,96.0,BB128ES,10023762779.0,"8, Wilding Way, Padiham",0.6085 +12840,325931,6 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB128ES,10023762778.0,"6, Wilding Way, Padiham",0.6085 +12841,325932,4 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB128ES,10023762777.0,"4, Wilding Way, Padiham",0.6085 +12842,325933,2a Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,96.0,BB128ES,10094111376.0,"2A Wilding Way, Padiham",0.6502 +12843,325934,1 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,95.0,BB128ES,10023762761.0,"1, Wilding Way, Padiham",0.6085 +12844,325935,3 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB128ES,10023762762.0,"3, Wilding Way, Padiham",0.6085 +12845,325936,5 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB128ES,10023762763.0,"5, Wilding Way, Padiham",0.6085 +12846,325937,7 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,97.0,BB128ES,10023762764.0,"7, Wilding Way, Padiham",0.6085 +12847,325938,9 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,97.0,BB128ES,10023762765.0,"9, Wilding Way, Padiham",0.6085 +12848,325939,11 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,97.0,BB128ES,10023762766.0,"11, Wilding Way, Padiham",0.6121 +12849,325940,13 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,97.0,BB128ES,10023762767.0,"13, Wilding Way, Padiham",0.6121 +12850,325941,15 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB128ES,10023762768.0,"15, Wilding Way, Padiham",0.6121 +12851,325942,17 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB128ES,10023762769.0,"17, Wilding Way, Padiham",0.6121 +12852,325943,19 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB128ES,10023762770.0,"19, Wilding Way, Padiham",0.6121 +12853,325944,21 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB128ES,10023762771.0,"21, Wilding Way, Padiham",0.6121 +12874,328374,402 Colne Road Burnley Lancashire BB10 1EL,,, BB10 1EL,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,72.0,B - 81 to 91,89.0,BB101EL,100010335551.0,"402, Colne Road",0.4536 +12879,329551,1 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,A - 92 Plus,97.0,BB102SB,10094110782.0,"1, Royal Court, Briercliffe",0.4347 +12880,329550,2 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,A - 92 Plus,97.0,BB102SB,10094110783.0,"2, Royal Court, Briercliffe",0.4347 +12881,329549,3 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,B - 81 to 91,97.0,BB102SB,10094110784.0,"3, Royal Court, Briercliffe",0.4347 +12882,329548,4 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,A - 92 Plus,97.0,BB102SB,10094110785.0,"4, Royal Court, Briercliffe",0.4347 +12883,329547,5 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Detached,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,A - 92 Plus,96.0,BB102SB,10094110786.0,"5, Royal Court, Briercliffe",0.4347 +12884,329546,6 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,A - 92 Plus,97.0,BB102SB,10094110787.0,"6, Royal Court, Briercliffe",0.4347 +12885,329545,7 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,A - 92 Plus,97.0,BB102SB,10094110788.0,"7, Royal Court, Briercliffe",0.4347 +12886,329544,8 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Detached,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,A - 92 Plus,97.0,BB102SB,10094110789.0,"8, Royal Court, Briercliffe",0.4347 +12887,329543,9 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,A - 92 Plus,97.0,BB102SB,10094110790.0,"9, Royal Court, Briercliffe",0.4347 +12888,329542,10 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,A - 92 Plus,97.0,BB102SB,10094110791.0,"10, Royal Court, Briercliffe",0.4393 +12890,328681,34 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780517.0,"34, Thornber Court",0.4705 +12892,328649,2 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Sep 2019,C - 69 to 80,76.0,A - 92 Plus,93.0,BB103AW,10003780486.0,"2, Thornber Court",0.4652 +12894,328651,4 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Aug 2010,C - 69 to 80,70.0,C - 69 to 80,78.0,BB103AW,10003780488.0,"4, Thornber Court",0.4652 +12896,328653,6 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Aug 2010,C - 69 to 80,70.0,C - 69 to 80,77.0,BB103AW,10003780490.0,"6, Thornber Court",0.4652 +12897,328654,7 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Oct 2025,C - 69 to 80,76.0,B - 81 to 91,81.0,BB103AW,10003780491.0,7 Thornber Court,0.4652 +12898,328655,8 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,94.0,BB103AW,10003780492.0,"8, Thornber Court",0.4652 +12899,328656,9 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,94.0,BB103AW,10003780493.0,"9, Thornber Court",0.4652 +12900,328657,10 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Nov 2016,C - 69 to 80,75.0,A - 92 Plus,92.0,BB103AW,10003780494.0,"10, Thornber Court",0.4705 +12901,328658,11 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,94.0,BB103AW,10003780495.0,"11, Thornber Court",0.4705 +12902,328659,12 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Aug 2018,C - 69 to 80,70.0,A - 92 Plus,92.0,BB103AW,10003780496.0,"12, Thornber Court",0.4705 +12904,328661,15 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,93.0,BB103AW,10003780498.0,"15, Thornber Court",0.4705 +12905,328662,16 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,93.0,BB103AW,10003780499.0,"16, Thornber Court",0.4705 +12906,328663,17 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Oct 2025,C - 69 to 80,75.0,B - 81 to 91,82.0,BB103AW,10003780500.0,17 Thornber Court,0.4705 +12907,328664,18 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,75.0,A - 92 Plus,92.0,BB103AW,10003780501.0,18 Thornber Court,0.4705 +12908,328665,19 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,71.0,B - 81 to 91,90.0,BB103AW,10003780502.0,"19, Thornber Court",0.4705 +12909,328667,20 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,73.0,A - 92 Plus,95.0,BB103AW,10003780503.0,"20, Thornber Court",0.4705 +12910,328668,21 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780504.0,"21, Thornber Court",0.4705 +12911,328669,22 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,77.0,A - 92 Plus,95.0,BB103AW,10003780505.0,"22, Thornber Court",0.4705 +12912,328670,23 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,29 Mar 2013,C - 69 to 80,70.0,A - 92 Plus,93.0,BB103AW,10003780506.0,"23, Thornber Court",0.4705 +12913,328671,24 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,76.0,A - 92 Plus,93.0,BB103AW,10003780507.0,"24, Thornber Court",0.4705 +12914,328672,25 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,05 Apr 2016,C - 69 to 80,73.0,B - 81 to 91,90.0,BB103AW,10003780508.0,"25, Thornber Court",0.4705 +12915,328673,26 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780509.0,"26, Thornber Court",0.4705 +12916,328674,27 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,78.0,BB103AW,10003780510.0,27 Thornber Court,0.4705 +12917,328675,28 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,93.0,BB103AW,10003780511.0,"28, Thornber Court",0.4705 +12918,328676,29 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,73.0,A - 92 Plus,95.0,BB103AW,10003780512.0,"29, Thornber Court",0.4705 +12919,328677,30 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,14 Oct 2025,C - 69 to 80,75.0,B - 81 to 91,82.0,BB103AW,10003780513.0,30 Thornber Court,0.4705 +12920,328678,31 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,10 Mar 2019,C - 69 to 80,76.0,A - 92 Plus,95.0,BB103AW,10003780514.0,"31, Thornber Court",0.4705 +12922,328680,33 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,73.0,B - 81 to 91,91.0,BB103AW,10003780516.0,"33, Thornber Court",0.4705 +12923,328682,35 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780518.0,"35, Thornber Court",0.4705 +12924,328683,36 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,01 Jul 2024,C - 69 to 80,74.0,A - 92 Plus,93.0,BB103AW,10003780519.0,36 Thornber Court,0.4705 +12925,328684,37 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,72.0,A - 92 Plus,95.0,BB103AW,10003780520.0,"37, Thornber Court",0.4705 +12927,328686,39 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,10 Mar 2019,C - 69 to 80,76.0,A - 92 Plus,93.0,BB103AW,10003780522.0,"39, Thornber Court",0.4705 +12928,328687,40 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Feb 2013,C - 69 to 80,71.0,A - 92 Plus,94.0,BB103AW,10003780523.0,"40, Thornber Court",0.4705 +12929,328688,41 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,93.0,BB103AW,10003780524.0,"41, Thornber Court",0.4705 +12930,328689,42 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,93.0,BB103AW,10003780525.0,"42, Thornber Court",0.4705 +12931,328690,43 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,21 Jun 2016,D - 55 to 68,67.0,B - 81 to 91,87.0,BB103AW,10003780526.0,"43, Thornber Court",0.4705 +12932,328691,44 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780527.0,"44, Thornber Court",0.4705 +12934,328693,46 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,71.0,B - 81 to 91,89.0,BB103AW,10003780529.0,"46, Thornber Court",0.4705 +12935,328694,47 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,73.0,A - 92 Plus,95.0,BB103AW,10003780530.0,"47, Thornber Court",0.4705 +12936,328695,48 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Aug 2018,C - 69 to 80,70.0,A - 92 Plus,93.0,BB103AW,10003780531.0,"48, Thornber Court",0.4705 +12937,328696,49 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780532.0,"49, Thornber Court",0.4705 +12938,328697,50 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,27 Oct 2025,C - 69 to 80,76.0,B - 81 to 91,82.0,BB103AW,10003780533.0,50 Thornber Court,0.4705 +12939,328700,51 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780534.0,"51, Thornber Court",0.4705 +12940,328701,52 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,77.0,A - 92 Plus,94.0,BB103AW,10003780535.0,"52, Thornber Court",0.4705 +12941,328702,53 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Jan 2017,C - 69 to 80,73.0,A - 92 Plus,93.0,BB103AW,10003780536.0,"53, Thornber Court",0.4705 +12942,328703,54 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,93.0,BB103AW,10003780537.0,"54, Thornber Court",0.4705 +12943,328704,55 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,03 Feb 2026,C - 69 to 80,69.0,C - 69 to 80,75.0,BB103AW,10003780538.0,55 Thornber Court,0.4705 +12944,328705,56 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780539.0,"56, Thornber Court",0.4705 +12946,328707,58 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Aug 2014,C - 69 to 80,71.0,A - 92 Plus,94.0,BB103AW,10003780541.0,"58, Thornber Court",0.4705 +12947,328708,59 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,93.0,BB103AW,10003780542.0,"59, Thornber Court",0.4705 +12948,328709,60 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,16 Aug 2014,C - 69 to 80,69.0,B - 81 to 91,91.0,BB103AW,10003780543.0,"60, Thornber Court",0.4705 +12950,328711,62 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780545.0,"62, Thornber Court",0.4705 +12951,328712,63 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780546.0,"63, Thornber Court",0.4705 +12952,328713,64 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,11 Jan 2011,C - 69 to 80,70.0,C - 69 to 80,78.0,BB103AW,10003780547.0,"64, Thornber Court",0.4705 +12953,328648,1 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,14 Oct 2025,C - 69 to 80,70.0,C - 69 to 80,76.0,BB103AW,10003780485.0,1 Thornber Court,0.4652 +13379,343425,5 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Aug 2017,C - 69 to 80,69.0,A - 92 Plus,93.0,BB103AW,10003780489.0,"5, Thornber Court",0.4652 +13380,343450,32 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Dec 2021,C - 69 to 80,75.0,A - 92 Plus,93.0,BB103AW,10003780515.0,32 Thornber Court,0.4705 +13381,343485,57 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,05 Dec 2021,C - 69 to 80,76.0,A - 92 Plus,93.0,BB103AW,10003780540.0,57 Thornber Court,0.4705 +13593,354098,38 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Aug 2014,C - 69 to 80,71.0,A - 92 Plus,94.0,BB103AW,10003780521.0,"38, Thornber Court",0.4705 +13597,354278,45 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,01 Jun 2023,C - 69 to 80,74.0,B - 81 to 91,91.0,BB103AW,10003780528.0,45 Thornber Court,0.4705 +13683,357710,61 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Oct 2010,C - 69 to 80,72.0,B - 81 to 91,81.0,BB103AW,10003780544.0,"61, Thornber Court",0.4705 +13696,358028,14 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780497.0,"14, Thornber Court",0.4705 +13763,360176,3 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Jul 2023,C - 69 to 80,72.0,B - 81 to 91,90.0,BB103AW,10003780487.0,3 Thornber Court,0.4652 +12964,362803,68 Colbran Street Burnley Lancashire BB10 3BU,,, BB10 3BU,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Dec 2011,D - 55 to 68,55.0,D - 55 to 68,64.0,BB103BU,100010335248.0,"68, Colbran Street",0.4705 +12973,330196,131 Waterbarn Street Burnley Lancashire BB10 1RN,,, BB10 1RN,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jul 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB101RN,,, +13014,342418,Apartment 1 - R22 The Junction Picadilly Road LANCASTER Lancashire LA1 4PX,,, LA1 4PX,Flat: Middle,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,72.0,C - 69 to 80,72.0,LA14PX,100010472747.0,"Tracey's Place, Apartment 1, Piccadilly, Scotforth",0.2097 +13015,342419,Apartment 2 - R17 The Junction Picadilly Road LANCASTER Lancashire LA1 4PX,,, LA1 4PX,Flat: Middle,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,71.0,C - 69 to 80,71.0,LA14PX,100010472748.0,"Tracey's Place, Apartment 2, Piccadilly, Scotforth",0.2097 +13016,342420,Apartment 3 - R07 The Junction Picadilly Road LANCASTER Lancashire LA1 4PX,,, LA1 4PX,Flat: Middle,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,70.0,C - 69 to 80,70.0,LA14PX,200002845360.0,"Tracey's Place, Apartment 3, Piccadilly, Scotforth",0.2097 +13017,342421,Apartment 4 - R09 The Junction Picadilly Road LANCASTER Lancashire LA1 4PX,,, LA1 4PX,Flat: Middle,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,71.0,C - 69 to 80,71.0,LA14PX,100010472750.0,"Tracey's Place, Apartment 4, Piccadilly, Scotforth",0.2097 +13018,342422,Apartment 5 - R13 The Junction Picadilly Road LANCASTER Lancashire LA1 4PX,,, LA1 4PX,Flat: Middle,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,70.0,C - 69 to 80,70.0,LA14PX,10009274307.0,"Tracey's Place, Apartment 5, Piccadilly, Scotforth",0.2097 +13019,333496,221 Padiham Road Burnley Lancashire BB12 0HB,,, BB12 0HB,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Nov 2020,C - 69 to 80,69.0,C - 69 to 80,74.0,BB120HB,100010350946.0,"221 PADIHAM ROAD, BURNLEY",0.6185 +13747,359559,229 Padiham Road Burnley Lancashire England BB12 0HB,,, BB12 0HB,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 May 2014,D - 55 to 68,63.0,B - 81 to 91,86.0,BB120HB,100010350950.0,"229, Padiham Road",0.4085 +13026,329839,1 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Aug 2013,B - 81 to 91,81.0,A - 92 Plus,95.0,BB103FH,10023761952.0,"1 The Hollies, Abinger Street",0.5944 +13027,329840,2 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Jan 2024,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103FH,10023761953.0,"2 The Hollies, Abinger Street",0.5944 +13028,329841,3 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761954.0,"3 The Hollies, Abinger Street",0.5944 +13029,329842,4 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761955.0,"4 The Hollies, Abinger Street",0.5944 +13030,329843,5 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761956.0,"5 The Hollies, Abinger Street",0.5944 +13031,329844,6 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761957.0,"6 The Hollies, Abinger Street",0.5944 +13032,329845,7 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761958.0,"7 The Hollies, Abinger Street",0.5944 +13033,329846,8 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761959.0,"8 The Hollies, Abinger Street",0.5944 +13034,329847,9 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761960.0,"9 The Hollies, Abinger Street",0.5944 +13035,329848,10 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761961.0,"10 The Hollies, Abinger Street",0.5972 +13036,329967,11 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761962.0,"11 The Hollies, Abinger Street",0.5972 +13037,329968,12 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761963.0,"12 The Hollies, Abinger Street",0.5972 +13038,329969,14 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761964.0,"14 The Hollies, Abinger Street",0.5972 +13039,329970,15 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Jul 2024,C - 69 to 80,75.0,B - 81 to 91,91.0,BB103FH,10023761965.0,"15 The Hollies, Abinger Street",0.5972 +13041,329972,17 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,,, +13042,329973,18 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,79.0,A - 92 Plus,94.0,BB103FH,10023761968.0,"18 The Hollies, Abinger Street",0.5972 +13043,329974,19 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,11 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761969.0,"19 The Hollies, Abinger Street",0.5972 +13044,329975,20 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,11 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761970.0,"20 The Hollies, Abinger Street",0.5972 +13045,329976,21 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: End Terr,Domestic EPC Required,EPC Present,12 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,95.0,BB103FH,10023761971.0,"21 The Hollies, Abinger Street",0.5972 +13728,358905,16 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761966.0,"16 The Hollies, Abinger Street",0.5972 +13046,329988,1 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,10 Apr 2016,C - 69 to 80,75.0,A - 92 Plus,92.0,BB103EJ,10014136493.0,"1, Antley Court",0.3547 +13047,329990,2 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136494.0,"2, Antley Court",0.3547 +13049,329994,4 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136498.0,"4, Antley Court",0.3547 +13050,329996,5 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 May 2019,C - 69 to 80,77.0,A - 92 Plus,93.0,BB103EJ,10014136499.0,"5, Antley Court",0.3547 +13051,329998,6 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,10 Apr 2016,C - 69 to 80,75.0,B - 81 to 91,91.0,BB103EJ,10014136500.0,"6, Antley Court",0.3547 +13052,330000,7 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136501.0,"7, Antley Court",0.3547 +13054,330004,9 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Jan 2020,C - 69 to 80,75.0,B - 81 to 91,91.0,BB103EJ,10014136503.0,"9, Antley Court",0.3547 +13055,330006,10 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB103EJ,10014136504.0,"10, Antley Court",0.3605 +13056,330066,11 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,74.0,B - 81 to 91,90.0,BB103EJ,10014136505.0,"11, Antley Court",0.3605 +13057,330068,12 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,10 Apr 2016,C - 69 to 80,74.0,A - 92 Plus,92.0,BB103EJ,10014136506.0,"12, Antley Court",0.3605 +13059,330072,15 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136508.0,"15, Antley Court",0.3605 +13060,330074,16 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Jan 2019,C - 69 to 80,75.0,A - 92 Plus,93.0,BB103EJ,10014136509.0,"16, Antley Court",0.3605 +13061,330076,17 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Sep 2016,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136510.0,"17, Antley Court",0.3605 +13062,330078,18 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,75.0,B - 81 to 91,91.0,BB103EJ,10014136511.0,"18, Antley Court",0.3605 +13063,330080,19 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Jul 2010,C - 69 to 80,79.0,B - 81 to 91,84.0,BB103EJ,10014136512.0,"19, Antley Court",0.3605 +13064,330082,20 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,75.0,B - 81 to 91,91.0,BB103EJ,10014136513.0,"20, Antley Court",0.3605 +13066,330776,22 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,75.0,B - 81 to 91,91.0,BB103EJ,10014136515.0,"22, Antley Court",0.3605 +13069,338576,25 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,02 Oct 2011,C - 69 to 80,73.0,C - 69 to 80,77.0,BB103EJ,10014136518.0,"25, Antley Court",0.3605 +13072,338579,28 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,75.0,B - 81 to 91,91.0,BB103EJ,10014136521.0,"28, Antley Court",0.3605 +13073,338580,29 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,06 Mar 2012,C - 69 to 80,69.0,C - 69 to 80,73.0,BB103EJ,10014136522.0,"29, Antley Court",0.3605 +13074,338581,30 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136523.0,"30, Antley Court",0.3605 +13075,338582,31 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136524.0,"31, Antley Court",0.3605 +13076,338583,32 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Feb 2011,C - 69 to 80,79.0,B - 81 to 91,84.0,BB103EJ,10014136525.0,"32, Antley Court",0.3605 +13077,338584,33 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,11 Jan 2017,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136526.0,"33, Antley Court",0.3605 +13079,338586,35 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,74.0,A - 92 Plus,92.0,BB103EJ,10014136528.0,"35, Antley Court",0.3605 +13080,338587,36 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,09 Apr 2016,C - 69 to 80,74.0,A - 92 Plus,92.0,BB103EJ,10014136529.0,"36, Antley Court",0.3605 +13081,338588,37 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136530.0,"37, Antley Court",0.3605 +13082,338589,38 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,13 Feb 2018,C - 69 to 80,71.0,B - 81 to 91,90.0,BB103EJ,10014136531.0,"38, Antley Court",0.3605 +13583,352874,3 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136497.0,"3, Antley Court",0.3547 +13588,352953,23 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,75.0,B - 81 to 91,91.0,BB103EJ,10014136516.0,23 Antley Court,0.3605 +13599,354340,26 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,76.0,B - 81 to 91,91.0,BB103EJ,10014136519.0,"26, Antley Court",0.3605 +13603,355125,21 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB103EJ,10014136514.0,"21, Antley Court",0.3605 +13640,356894,27 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136520.0,"27, Antley Court",0.3605 +13641,356926,34 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136527.0,"34, Antley Court",0.3605 +13669,357305,8 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,75.0,B - 81 to 91,91.0,BB103EJ,10014136502.0,"8, Antley Court",0.3547 +13764,360207,14 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,93.0,BB103EJ,10014136507.0,"14, Antley Court",0.3605 +13777,368830,24 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB103EJ,10014136517.0,"24, Antley Court",0.3605 +13114,336419,195 Oxford Road Burnley Lancashire BB11 3HB,,, BB11 3HB,House: End Terrace,Domestic EPC Required,EPC Present,09 Dec 2020,D - 55 to 68,60.0,B - 81 to 91,85.0,BB113HB,100010350889.0,"195 OXFORD ROAD, BURNLEY",0.6154 +13116,336890,32 Berry Street Burnley Lancashire BB11 2LG,,, BB11 2LG,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Dec 2020,D - 55 to 68,67.0,B - 81 to 91,87.0,BB112LG,100010329035.0,"32 BERRY STREET, BURNLEY",0.6154 +13117,330816,3 Monmouth Street Burnley Lancashire BB12 0PT,,, BB12 0PT,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jun 2025,C - 69 to 80,72.0,C - 69 to 80,80.0,BB120PT,100010349189.0,3 Monmouth Street,0.4705 +13140,337739,142 Healey Wood Burnley Lancashire BB11 2LN,,, BB11 2LN,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Feb 2021,C - 69 to 80,72.0,B - 81 to 91,90.0,BB112LN,100010341912.0,"142 HEALEY WOOD ROAD, BURNLEY",0.5518 +13142,332670,7 Veevers Street Brierfield Lancashire BB9 5QQ,,, BB9 5QQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,09 Oct 2020,B - 81 to 91,84.0,B - 81 to 91,85.0,BB95QQ,10090965416.0,"7,, Veevers Street, Brierfield",0.6303 +13143,332676,9 Veevers Street Brierfield Lancashire BB9 5QQ,,, BB9 5QQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,09 Oct 2020,B - 81 to 91,84.0,B - 81 to 91,85.0,BB95QQ,10090965417.0,"9,, Veevers Street, Brierfield",0.6303 +13144,332682,11 Veevers Street Brierfield Lancashire BB9 5QQ,,, BB9 5QQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,09 Oct 2020,B - 81 to 91,84.0,B - 81 to 91,85.0,BB95QQ,10090965418.0,"11,, Veevers Street, Brierfield",0.6328 +13145,332687,15 Veevers Street Brierfield Lancashire BB9 5QQ,,, BB9 5QQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,09 Oct 2020,B - 81 to 91,84.0,A - 92 Plus,94.0,BB95QQ,10090965419.0,"15,, Veevers Street, Brierfield",0.6328 +13149,333554,2 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,85.0,BB128FB,10094111392.0,"2 Forest Green Close, Padiham",0.5007 +13150,333579,4 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,85.0,BB128FB,10094111394.0,"4 Forest Green Close, Padiham",0.5007 +13151,333597,6 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,85.0,BB128FB,10094111396.0,"6 Forest Green Close, Padiham",0.5007 +13152,333600,8 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,85.0,BB128FB,10094111398.0,"8 Forest Green Close, Padiham",0.5007 +13153,333603,10 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,85.0,BB128FB,10094111400.0,"10 Forest Green Close, Padiham",0.5043 +13154,333607,12 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,85.0,BB128FB,10094111402.0,"12 Forest Green Close, Padiham",0.5043 +13155,333610,14 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,84.0,B - 81 to 91,85.0,BB128FB,10094111404.0,"14 Forest Green Close, Padiham",0.5043 +13156,333625,16 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,84.0,B - 81 to 91,85.0,BB128FB,10094111406.0,"16 Forest Green Close, Padiham",0.5043 +13157,333628,18 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,85.0,BB128FB,10094111408.0,"18 Forest Green Close, Padiham",0.5043 +13158,333631,20 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,85.0,BB128FB,10094111409.0,"20 Forest Green Close, Padiham",0.5043 +13159,333634,17 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: End Terrace,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,84.0,BB128FB,10094111407.0,"17 Forest Green Close, Padiham",0.5043 +13160,333661,15 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,84.0,B - 81 to 91,86.0,BB128FB,10094111405.0,"15 Forest Green Close, Padiham",0.5043 +13161,333664,13 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: End Terrace,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,84.0,BB128FB,10094111403.0,"13 Forest Green Close, Padiham",0.5043 +13162,333667,11 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,84.0,BB128FB,10094111401.0,"11 Forest Green Close, Padiham",0.5043 +13163,333670,9 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,84.0,BB128FB,10094111399.0,"9 Forest Green Close, Padiham",0.5007 +13164,333673,7 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,84.0,BB128FB,10094111397.0,"7 Forest Green Close, Padiham",0.5007 +13165,333676,5 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,84.0,BB128FB,10094111395.0,"5 Forest Green Close, Padiham",0.5007 +13166,333679,3 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,84.0,BB128FB,10094111393.0,"3 Forest Green Close, Padiham",0.5007 +13167,333682,1 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,85.0,BB128FB,10094111391.0,"1 Forest Green Close, Padiham",0.5007 +13173,338494,56-58 Accrington Road Burnley Lancashire BB11 4AU,,, BB11 4AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Mar 2021,C - 69 to 80,73.0,B - 81 to 91,87.0,BB114AU,100010326521.0,"56-58 ACCRINGTON ROAD, BURNLEY",0.6665 +13319,341108,52 Accrington Road Burnley Lancashire BB11 4AU,,, BB11 4AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Sep 2021,C - 69 to 80,72.0,A - 92 Plus,92.0,BB114AU,100010326517.0,"52 ACCRINGTON ROAD, BURNLEY",0.6242 +13176,338012,31 Connaught Road Preston Lancashire PR1 8EX,,, PR1 8EX,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Jan 2020,D - 55 to 68,66.0,B - 81 to 91,82.0,PR18EX,100010540206.0,"31, Connaught Road",0.4737 +13177,343498,167 De Lacy Preston Lancashire PR2 2AP,,, PR2 2AP,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Sep 2019,D - 55 to 68,66.0,B - 81 to 91,82.0,PR22AP,100010541748.0,"167, De Lacy Street, Ashton-on-Ribble",0.3786 +13179,357120,133 De Lacy Preston Lancashire PR2 2AP,,, PR2 2AP,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Aug 2019,C - 69 to 80,72.0,B - 81 to 91,86.0,PR22AP,100010541731.0,"133, De Lacy Street, Ashton-on-Ribble",0.3786 +13178,367877,22 Colenso Road Preston Lancashire PR2 2LL,,, PR2 2LL,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Feb 2012,D - 55 to 68,63.0,D - 55 to 68,66.0,PR22LL,100010539797.0,"22, Colenso Road, Ashton-on-Ribble",0.4126 +13180,338510,97 Branch Road Burnley Lancashire BB11 3LY,,, BB11 3LY,House: End Terrace,Domestic EPC Required,EPC Present,07 Apr 2021,D - 55 to 68,63.0,B - 81 to 91,86.0,BB113LY,100010329600.0,"97 BRANCH ROAD, BURNLEY",0.6121 +13181,338267,123 Branch Road Burnley Lancashire BB11 3LY,,, BB11 3LY,House: End Terrace,Domestic EPC Required,EPC Present,10 Mar 2021,D - 55 to 68,64.0,B - 81 to 91,86.0,BB113LY,100010329625.0,"123 BRANCH ROAD, BURNLEY",0.6154 +13182,338561,89 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111455.0,"89 FLORENCE AVENUE, BURNLEY",0.6242 +13183,338560,91 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111456.0,"91 FLORENCE AVENUE, BURNLEY",0.6242 +13184,338559,93 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111457.0,"93 FLORENCE AVENUE, BURNLEY",0.6242 +13185,338558,95 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111458.0,"95 FLORENCE AVENUE, BURNLEY",0.6242 +13186,338556,99 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111460.0,"99 FLORENCE AVENUE, BURNLEY",0.6242 +13187,341888,101 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111461.0,"101 FLORENCE AVENUE, BURNLEY",0.6268 +13188,338555,103 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111462.0,"103 FLORENCE AVENUE, BURNLEY",0.6268 +13189,338554,105 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111463.0,"105 FLORENCE AVENUE, BURNLEY",0.6268 +13190,338553,107 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111464.0,"107 FLORENCE AVENUE, BURNLEY",0.6268 +13191,338552,109 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111465.0,"109 FLORENCE AVENUE, BURNLEY",0.6268 +13192,338551,111 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111466.0,"111 FLORENCE AVENUE, BURNLEY",0.6268 +13193,338562,100 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111467.0,"100 FLORENCE AVENUE, BURNLEY",0.6268 +13194,338563,102 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111468.0,"102 FLORENCE AVENUE, BURNLEY",0.6268 +13195,338564,104 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111469.0,"104 FLORENCE AVENUE, BURNLEY",0.6268 +13196,338565,106 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111470.0,"106 FLORENCE AVENUE, BURNLEY",0.6268 +13197,338566,108 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111471.0,"108 FLORENCE AVENUE, BURNLEY",0.6268 +13198,338567,110 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111472.0,"110 FLORENCE AVENUE, BURNLEY",0.6268 +13199,338568,112 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111473.0,"112 FLORENCE AVENUE, BURNLEY",0.6268 +13200,338569,114 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111474.0,"114 FLORENCE AVENUE, BURNLEY",0.6268 +13201,338570,116 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111475.0,"116 FLORENCE AVENUE, BURNLEY",0.6268 +13202,338571,118 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111476.0,"118 FLORENCE AVENUE, BURNLEY",0.6268 +13203,338572,120 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111477.0,"120 FLORENCE AVENUE, BURNLEY",0.6268 +13204,338573,122 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111478.0,"122 FLORENCE AVENUE, BURNLEY",0.6268 +13205,338557,97 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111459.0,"97 FLORENCE AVENUE, BURNLEY",0.6242 +13212,336822,28 Fraser Street Burnley Lancashire BB10 1UL,,, BB10 1UL,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Aug 2014,D - 55 to 68,64.0,B - 81 to 91,81.0,BB101UL,100010339195.0,"28, Fraser Street",0.4652 +13435,352594,55 Fraser Street Burnley Lancashire BB10 1UL,,, BB10 1UL,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jun 2022,C - 69 to 80,74.0,B - 81 to 91,91.0,BB101UL,100010339215.0,55 Fraser Street,0.4652 +13253,341887,110 Station road Padiham Lancashire BB12 8FD,,, BB12 8FD,Flat: Top,Domestic EPC Required,EPC Present,15 Mar 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FD,10094111415.0,"110 STATION ROAD, PADIHAM",0.6185 +13254,338526,108 Station road Padiham Lancashire BB12 8FD,,, BB12 8FD,Flat: Bottom,Domestic EPC Required,EPC Present,15 Mar 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FD,10094111414.0,"108 STATION ROAD, PADIHAM",0.6185 +13255,338527,106 Station road Padiham Lancashire BB12 8FD,,, BB12 8FD,Flat: Top,Domestic EPC Required,EPC Present,15 Mar 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FD,10094111413.0,"106 STATION ROAD, PADIHAM",0.6185 +13256,338528,104 Station road Padiham Lancashire BB12 8FD,,, BB12 8FD,Flat: Bottom,Domestic EPC Required,EPC Present,15 Mar 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FD,10094111412.0,"104 STATION ROAD, PADIHAM",0.6185 +13257,338529,102 Station road Padiham Lancashire BB12 8FD,,, BB12 8FD,Flat: Top,Domestic EPC Required,EPC Present,15 Mar 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FD,10094111411.0,"102 STATION ROAD, PADIHAM",0.6185 +13258,338530,100 Station road Padiham Lancashire BB12 8FD,,, BB12 8FD,Flat: Bottom,Domestic EPC Required,EPC Present,15 Mar 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FD,10094111410.0,"100 STATION ROAD, PADIHAM",0.6185 +13259,338531,1 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,83.0,A - 92 Plus,97.0,BB128FE,10094111416.0,"1, CALDER GREEN APPROACH, PADIHAM",0.6709 +13260,338532,3 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,83.0,A - 92 Plus,97.0,BB128FE,10094111417.0,"3, CALDER GREEN APPROACH, PADIHAM",0.6709 +13261,338533,5 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,84.0,A - 92 Plus,96.0,BB128FE,10094111418.0,"5, CALDER GREEN APPROACH, PADIHAM",0.6709 +13262,338534,7 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,83.0,A - 92 Plus,97.0,BB128FE,10094111419.0,"7, CALDER GREEN APPROACH, PADIHAM",0.6709 +13263,338535,9 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Top,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FE,10094111420.0,"9, CALDER GREEN APPROACH, PADIHAM",0.6709 +13264,338536,11 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Bottom,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FE,10094111421.0,"11, CALDER GREEN APPROACH, PADIHAM",0.6729 +13265,338537,13 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Bottom,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FE,10094111422.0,"13, CALDER GREEN APPROACH, PADIHAM",0.6729 +13266,338538,15 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Top,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FE,10094111423.0,"15, CALDER GREEN APPROACH, PADIHAM",0.6729 +13267,338539,17 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Top,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FE,10094111424.0,"17, CALDER GREEN APPROACH, PADIHAM",0.6729 +13268,338540,19 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Bottom,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FE,10094111425.0,"19, CALDER GREEN APPROACH, PADIHAM",0.6729 +13269,338541,21 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Bottom,Domestic EPC Required,EPC Present,28 Feb 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FE,10094111426.0,"21, CALDER GREEN APPROACH, PADIHAM",0.6729 +13270,338542,23 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Top,Domestic EPC Required,EPC Present,28 Feb 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FE,10094111427.0,"23, CALDER GREEN APPROACH, PADIHAM",0.6729 +13271,338543,25 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Top,Domestic EPC Required,EPC Present,28 Feb 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FE,10094111428.0,"25, CALDER GREEN APPROACH, PADIHAM",0.6729 +13272,338544,27 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Bottom,Domestic EPC Required,EPC Present,28 Feb 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FE,10094111429.0,"27, CALDER GREEN APPROACH, PADIHAM",0.6729 +13273,338545,29 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Bottom,Domestic EPC Required,EPC Present,28 Feb 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FE,10094111430.0,"29, CALDER GREEN APPROACH, PADIHAM",0.6729 +13274,338546,31 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Top,Domestic EPC Required,EPC Present,28 Feb 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FE,10094111431.0,"31, CALDER GREEN APPROACH, PADIHAM",0.6729 +13275,338547,33 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Top,Domestic EPC Required,EPC Present,28 Feb 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FE,10094111432.0,"33, CALDER GREEN APPROACH, PADIHAM",0.6729 +13276,338548,35 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Bottom,Domestic EPC Required,EPC Present,28 Feb 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FE,10094111433.0,"35, CALDER GREEN APPROACH, PADIHAM",0.6729 +13277,338549,37 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Bottom,Domestic EPC Required,EPC Present,28 Feb 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FE,10094111434.0,"37, CALDER GREEN APPROACH, PADIHAM",0.6729 +13278,338550,39 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Top,Domestic EPC Required,EPC Present,22 Apr 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FE,10094111435.0,"39, CALDER GREEN APPROACH, PADIHAM",0.6729 +13280,338998,30 Sussex Street Burnley Lancashire BB11 3NQ,,, BB11 3NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 May 2021,C - 69 to 80,72.0,B - 81 to 91,89.0,BB113NQ,100010357373.0,"30 SUSSEX STREET, BURNLEY",0.6185 +13308,343385,100 Springfield Road Burnley Lancashire BB11 3LR,,, BB11 3LR,House: End Terrace,Domestic EPC Required,EPC Present,01 Dec 2021,C - 69 to 80,71.0,B - 81 to 91,84.0,BB113LR,100010356384.0,100 Springfield Road,0.4845 +13311,340203,10 Junction Street Burnley Lancashire BB12 0LZ,,, BB12 0LZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Aug 2021,C - 69 to 80,73.0,A - 92 Plus,92.0,BB120LZ,100010344408.0,"10 Junction Street, Whittlefield",0.4437 +13314,341909,15 Hudson Street Burnley Lancashire BB11 4PL,,, BB11 4PL,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2021,C - 69 to 80,74.0,A - 92 Plus,92.0,BB114PL,100010343671.0,15 Hudson Street,0.4652 +13370,357204,17 Hudson Street Burnley Lancashire BB11 4PL,,, BB11 4PL,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Feb 2022,C - 69 to 80,74.0,A - 92 Plus,93.0,BB114PL,100010343673.0,17 Hudson Street,0.4652 +13316,342051,23 Bar Street Burnley Lancashire BB10 3BA,,, BB10 3BA,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Oct 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB103BA,100010328027.0,23 Bar Street,0.4471 +13610,359179,18 Bar Street Burnley Lancashire BB10 3BA,,, BB10 3BA,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Mar 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB103BA,100010328022.0,18 Bar Street,0.4471 +13322,339462,1 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,98.0,BB103FN,10094111761.0,1 Claret Close,0.4536 +13323,339463,2 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,98.0,BB103FN,10094111762.0,2 Claret Close,0.4536 +13324,339464,3 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,98.0,BB103FN,10094111763.0,3 Claret Close,0.4536 +13325,339465,4 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,98.0,BB103FN,10094111764.0,4 Claret Close,0.4536 +13326,339466,5 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,98.0,BB103FN,10094111765.0,5 Claret Close,0.4536 +13327,339467,6 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,99.0,BB103FN,10094111766.0,6 Claret Close,0.4536 +13328,339468,7 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,98.0,BB103FN,10094111767.0,7 Claret Close,0.4536 +13329,339469,8 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,98.0,BB103FN,10094111768.0,8 Claret Close,0.4536 +13330,339470,9 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,98.0,BB103FN,10094111769.0,9 Claret Close,0.4536 +13331,339471,10 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,98.0,BB103FN,10094111770.0,10 Claret Close,0.4596 +13332,339472,11 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,98.0,BB103FN,10094111771.0,11 Claret Close,0.4596 +13335,343202,6 Kime Street Burnley Lancashire BB12 6RH,,, BB12 6RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2021,C - 69 to 80,73.0,A - 92 Plus,92.0,BB126RH,100010344712.0,6 Kime Street,0.4471 +13383,357127,18 Kime Street Burnley Lancashire BB12 6RH,,, BB12 6RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Apr 2022,C - 69 to 80,73.0,A - 92 Plus,93.0,BB126RH,100010344724.0,18 Kime Street,0.4536 +13699,358132,8 Kime Street Burnley Lancashire BB12 6RH,,, BB12 6RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Jun 2025,C - 69 to 80,70.0,B - 81 to 91,81.0,BB126RH,100010344714.0,8 Kime Street,0.4471 +13706,358353,26 Kime Street Burnley Lancashire BB12 6RH,,, BB12 6RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Aug 2015,C - 69 to 80,69.0,B - 81 to 91,91.0,BB126RH,100010344732.0,26 Kime Street,0.4536 +13348,343395,18 Violet Street Burnley Lancashire BB10 1PU,,, BB10 1PU,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Nov 2021,C - 69 to 80,73.0,B - 81 to 91,91.0,BB101PU,100010359560.0,18 Violet Street,0.4652 +13350,343573,14 Forest Street Burnley Lancashire BB11 2SA,,, BB11 2SA,House: End Terrace,Domestic EPC Required,EPC Present,29 Nov 2021,D - 55 to 68,64.0,B - 81 to 91,84.0,BB112SA,100010339117.0,14 Forest Street,0.4652 +13357,357124,69 Stockbridge Road Padiham Lancashire BB12 7EX,,, BB12 7EX,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Sep 2021,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127EX,100010357097.0,"69 Stockbridge Road, Padiham",0.6268 +13359,357158,4 Hollingreave Road Burnley Lancashire BB11 2JA,,, BB11 2JA,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Jan 2022,C - 69 to 80,69.0,B - 81 to 91,86.0,BB112JA,100010343115.0,4 Hollingreave Road,0.4801 +13363,357150,88 Lyndhurst Road Burnley Lancashire BB10 4DH,,, BB10 4DH,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Jan 2022,C - 69 to 80,70.0,B - 81 to 91,85.0,BB104DH,100010347530.0,88 Lyndhurst Road,0.4705 +13375,357146,12 Coultate Street Burnley Lancashire BB12 6RD,,, BB12 6RD,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2022,C - 69 to 80,73.0,B - 81 to 91,91.0,BB126RD,100010335976.0,12 Coultate Street,0.4754 +13376,357138,16 Coultate Street Burnley Lancashire BB12 6RD,,, BB12 6RD,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2022,C - 69 to 80,72.0,B - 81 to 91,91.0,BB126RD,100010335980.0,16 Coultate Street,0.4754 +13378,357143,2 Hallows Street Burnley Lancashire BB10 2AG,,, BB10 2AG,House: End Terrace,Domestic EPC Required,EPC Present,25 Mar 2022,C - 69 to 80,73.0,B - 81 to 91,88.0,BB102AG,10003758218.0,2 Hallows Street,0.4652 +13391,357132,78 Plumbe Street Burnley Lancashire BB11 3AW,,, BB11 3AW,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Mar 2022,C - 69 to 80,71.0,B - 81 to 91,88.0,BB113AW,100010352339.0,78 Plumbe Street,0.4652 +13393,362824,114 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: End Terrace,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114EL,10094112239.0,114 Accrington Road,0.4801 +13394,362825,120 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: End Terrace,Domestic EPC Required,EPC Present,28 Jan 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114EL,10094112242.0,120 Accrington Road,0.4801 +13395,362826,116 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: End Terrace,Domestic EPC Required,EPC Present,28 Jan 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114EL,10094112240.0,116 Accrington Road,0.4801 +13396,362827,122 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114EL,10094112243.0,122 Accrington Road,0.4801 +13397,362828,124 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2022,B - 81 to 91,83.0,A - 92 Plus,97.0,BB114EL,10094112244.0,124 Accrington Road,0.4801 +13398,362829,118 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Jan 2022,B - 81 to 91,84.0,A - 92 Plus,98.0,BB114EL,10094112241.0,118 Accrington Road,0.4801 +13399,362830,112 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114EL,10094112238.0,112 Accrington Road,0.4801 +13400,362831,110 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: End Terrace,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114EL,10094112237.0,110 Accrington Road,0.4801 +13401,362832,108 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114EL,10094112236.0,108 Accrington Road,0.4801 +13402,362833,106 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114EL,10094112235.0,106 Accrington Road,0.4801 +13403,362834,104 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: End Terrace,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114EL,10094112234.0,104 Accrington Road,0.4801 +13404,362835,102 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,98.0,BB114EL,10094112233.0,102 Accrington Road,0.4801 +13405,362836,100 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: End Terrace,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114EL,10094112232.0,100 Accrington Road,0.4801 +13406,362837,98 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114EL,10094112231.0,98 Accrington Road,0.4754 +13407,362838,96 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114EL,10094112230.0,96 Accrington Road,0.4754 +13408,362839,1 Hazelwood Walk BURNLEY Lancashire BB11 4EN,,, BB11 4EN,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114EN,10094112248.0,"1 Hazelwood Walk, Elmwood Street",0.4313 +13409,362840,3 Hazelwood Walk BURNLEY Lancashire BB11 4EN,,, BB11 4EN,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114EN,10094112250.0,"3 Hazelwood Walk, Elmwood Street",0.4313 +13410,362841,4 Hazelwood Walk BURNLEY Lancashire BB11 4EN,,, BB11 4EN,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114EN,10094112251.0,"4 Hazelwood Walk, Elmwood Street",0.4313 +13411,362842,2 Hazelwood Walk BURNLEY Lancashire BB11 4EN,,, BB11 4EN,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114EN,10094112249.0,"2 Hazelwood Walk, Elmwood Street",0.4313 +13420,362851,11 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: End Terrace,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114BU,10094112265.0,11 Tay Street,0.4471 +13421,362852,13a Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BU,10094112271.0,13a Tay Street,0.506 +13422,362853,1 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114BU,10094112260.0,1 Tay Street,0.4401 +13423,362854,3 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114BU,10094112261.0,3 Tay Street,0.4401 +13424,362855,13 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: End Terrace,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BU,10094112266.0,13 Tay Street,0.4471 +13425,362856,5 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114BU,10094112262.0,5 Tay Street,0.4401 +13426,362857,7 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114BU,10094112263.0,7 Tay Street,0.4401 +13427,362858,9 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: End Terrace,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114BU,10094112264.0,9 Tay Street,0.4401 +13428,362859,9A Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BU,10094112270.0,9a Tay Street,0.5 +13429,362860,19 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: End Terrace,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BU,10094112269.0,19 Tay Street,0.4471 +13430,362861,17A Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BU,10094112272.0,17a Tay Street,0.506 +13431,362862,17 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: End Terrace,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BU,10094112268.0,17 Tay Street,0.4471 +13432,362863,15 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: End Terrace,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BU,10094112267.0,15 Tay Street,0.4471 +13433,357193,16 Athol Street North BURNLEY Lancashire BB11 4BS,,, BB11 4BS,Flat: Top,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,82.0,B - 81 to 91,82.0,BB114BS,10094112245.0,16 Athol Street North,0.535 +13434,362864,18 Athol Street North BURNLEY Lancashire BB11 4BS,,, BB11 4BS,Flat: Bottom,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,82.0,B - 81 to 91,82.0,BB114BS,10094112246.0,18 Athol Street North,0.535 +13446,357207,15 Brush Street Burnley Lancashire BB11 5EL,,, BB11 5EL,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Jul 2022,C - 69 to 80,75.0,A - 92 Plus,92.0,BB115EL,100010331869.0,15 Brush Street,0.4596 +13458,367882,35 Monica Grove Levenshulme Greater Manchester M19 2BQ,,, M19 2BQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Apr 2024,D - 55 to 68,63.0,B - 81 to 91,85.0,M192BQ,77146770.0,35 Monica Grove,0.3959 +13462,367883,48 Monica Grove Levenshulme Greater Manchester M19 2BN,,, M19 2BN,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Sep 2021,C - 69 to 80,70.0,B - 81 to 91,87.0,M192BN,77146721.0,"48 Monica Grove, MANCHESTER",0.5525 +13484,355462,13 Mitchell Street Burnley Lancashire BB12 0HH,,, BB12 0HH,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Aug 2022,C - 69 to 80,72.0,B - 81 to 91,88.0,BB120HH,100010349046.0,13 Mitchell Street,0.4754 +13543,357822,11 Edith Street NELSON Lancashire BB9 9HU,,, BB9 9HU,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Dec 2022,C - 69 to 80,76.0,B - 81 to 91,90.0,BB99HU,61010561.0,11 Edith Street,0.4661 +13545,356972,27 Eliza Street Burnley Lancashire BB10 4AQ,,, BB10 4AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Oct 2022,C - 69 to 80,78.0,B - 81 to 91,91.0,BB104AQ,100010338166.0,27 Eliza Street,0.4596 +13911,384696,49 Eliza Street Burnley Lancashire BB10 4AQ,,, BB10 4AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Mar 2025,C - 69 to 80,73.0,B - 81 to 91,85.0,BB104AQ,100010338174.0,49 Eliza Street,0.4596 +13547,355019,40 Queensberry Road Burnley Lancashire BB11 4LH,,, BB11 4LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Aug 2022,C - 69 to 80,76.0,B - 81 to 91,90.0,BB114LH,100010353018.0,40 Queensberry Road,0.4801 +13550,351886,70 Todmorden Road Burnley Lancashire BB10 4AA,,, BB10 4AA,House: End Terrace,Domestic EPC Required,EPC Present,26 Jan 2011,E - 39 to 54,46.0,D - 55 to 68,65.0,BB104AA,100010358662.0,"70, Todmorden Road",0.4705 +13552,357195,46 Pritchard Street Burnley Lancashire BB11 4JY,,, BB11 4JY,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Oct 2022,B - 81 to 91,85.0,B - 81 to 91,88.0,BB114JY,100010352787.0,46 Pritchard Street,0.4801 +13554,356987,27 Grange Street Burnley Lancashire BB11 4JZ,,, BB11 4JZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2022,B - 81 to 91,84.0,B - 81 to 91,85.0,BB114JZ,100010340104.0,"27 GRANGE STREET, BURNLEY",0.6185 +13567,354575,27 Sycamore Avenue Burnley Lancashire BB12 6FA,,, BB12 6FA,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB126FA,10094112307.0,27 Sycamore Avenue,0.4754 +13568,354588,25 Sycamore Avenue Burnley Lancashire BB12 6FA,,, BB12 6FA,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB126FA,10094112306.0,25 Sycamore Avenue,0.4754 +13569,354598,23 Sycamore Avenue Burnley Lancashire BB12 6FA,,, BB12 6FA,House: End Terrace,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB126FA,10094112305.0,23 Sycamore Avenue,0.4754 +13570,354608,21 Sycamore Avenue Burnley Lancashire BB12 6FA,,, BB12 6FA,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB126FA,10094112304.0,21 Sycamore Avenue,0.4754 +13571,354618,19 Sycamore Avenue Burnley Lancashire BB12 6FA,,, BB12 6FA,House: End Terrace,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB126FA,10094112303.0,19 Sycamore Avenue,0.4754 +13619,357171,1 Sycamore Avenue Burnley Lancashire BB12 6FA,,, BB12 6FA,House: End Terrace,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB126FA,10094112300.0,1 Sycamore Avenue,0.4705 +13620,357166,3 Sycamore Avenue Burnley Lancashire BB12 6FA,,, BB12 6FA,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB126FA,10094112301.0,"3, Sycamore Avenue",0.4705 +13621,357153,5 Sycamore Avenue Burnley Lancashire BB12 6FA,,, BB12 6FA,House: End Terrace,Domestic EPC Required,EPC Present,05 Oct 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB126FA,10094112302.0,5 Sycamore Avenue,0.4705 +13572,354628,1 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB126EW,10023758847.0,1 Acorn Mews,0.4401 +13574,354638,2 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB126EW,10023758848.0,2 Acorn Mews,0.4401 +13575,354646,3 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB126EW,10023758849.0,3 Acorn Mews,0.4401 +13576,354656,4 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB126EW,10023758850.0,4 Acorn Mews,0.4401 +13577,354664,5 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Bottom,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,B - 81 to 91,83.0,BB126EW,10023758851.0,5 Acorn Mews,0.4401 +13578,354674,6 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Top,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,84.0,B - 81 to 91,84.0,BB126EW,10023758852.0,6 Acorn Mews,0.4401 +13579,354684,8 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Bottom,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,B - 81 to 91,83.0,BB126EW,10023758854.0,8 Acorn Mews,0.4401 +13580,354694,7 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Top,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,84.0,B - 81 to 91,84.0,BB126EW,10023758853.0,7 Acorn Mews,0.4401 +13581,354704,9 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Top,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,84.0,B - 81 to 91,84.0,BB126EW,10023758855.0,9 Acorn Mews,0.4401 +13582,354714,10 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Bottom,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,B - 81 to 91,83.0,BB126EW,10023758856.0,10 Acorn Mews,0.4471 +13622,362895,11 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: End Terrace,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB126EW,10023758857.0,11 Acorn Mews,0.4471 +13623,362896,12 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB126EW,10023758858.0,12 Acorn Mews,0.4471 +13624,362897,13 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB126EW,10094112292.0,13 Acorn Mews,0.4471 +13625,362898,14 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB126EW,10023758859.0,14 Acorn Mews,0.4471 +13626,362899,15 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB126EW,10023758860.0,15 Acorn Mews,0.4471 +13627,362900,16 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: End Terrace,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB126EW,10023758861.0,16 Acorn Mews,0.4471 +13628,362901,17 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB126EW,10023758862.0,17 Acorn Mews,0.4471 +13629,362902,18 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB126EW,10023758863.0,18 Acorn Mews,0.4471 +13630,362903,19 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB126EW,10023758864.0,19 Acorn Mews,0.4471 +13631,362904,20 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB126EW,10023758865.0,20 Acorn Mews,0.4471 +13686,362937,Flat 1 Oakfield House Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Bottom,Domestic EPC Required,EPC Present,11 Nov 2022,B - 81 to 91,83.0,B - 81 to 91,83.0,BB126EW,10094112294.0,"Flat 1, Oakfield House, Acorn Mews",0.6335 +13687,362938,Flat 2 Oakfield House Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Bottom,Domestic EPC Required,EPC Present,11 Nov 2022,B - 81 to 91,83.0,B - 81 to 91,83.0,BB126EW,10094112295.0,"Flat 2, Oakfield House, Acorn Mews",0.6335 +13688,362939,Flat 3 Oakfield House Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Bottom,Domestic EPC Required,EPC Present,11 Nov 2022,B - 81 to 91,83.0,B - 81 to 91,83.0,BB126EW,10094112296.0,"Flat 3, Oakfield House, Acorn Mews",0.6335 +13689,362940,Flat 4 Oakfield House Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Top,Domestic EPC Required,EPC Present,11 Nov 2022,B - 81 to 91,83.0,B - 81 to 91,83.0,BB126EW,10094112297.0,"Flat 4, Oakfield House, Acorn Mews",0.6335 +13690,362941,Flat 5 Oakfield House Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Top,Domestic EPC Required,EPC Present,11 Nov 2022,B - 81 to 91,83.0,B - 81 to 91,83.0,BB126EW,10094112298.0,"Flat 5, Oakfield House, Acorn Mews",0.6335 +13691,362942,Flat 6 Oakfield House Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Top,Domestic EPC Required,EPC Present,11 Nov 2022,B - 81 to 91,83.0,B - 81 to 91,83.0,BB126EW,10094112299.0,"Flat 6, Oakfield House, Acorn Mews",0.6335 +13584,357048,14 Tabor Street Burnley Lancashire BB12 0HF,,, BB12 0HF,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Oct 2022,C - 69 to 80,74.0,B - 81 to 91,87.0,BB120HF,100010357705.0,14 Tabor Street,0.4596 +13601,358857,81 Dall Street Burnley Lancashire BB11 3LF,,, BB11 3LF,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2022,C - 69 to 80,72.0,B - 81 to 91,86.0,BB113LF,100010336792.0,81 Dall Street,0.4536 +13684,359150,90 Dall Street Burnley Lancashire BB11 3LF,,, BB11 3LF,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Feb 2023,C - 69 to 80,71.0,B - 81 to 91,84.0,BB113LF,100010336801.0,90 Dall Street,0.4536 +13604,357597,65 Reed Street Burnley Lancashire BB11 3LE,,, BB11 3LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Nov 2022,C - 69 to 80,78.0,B - 81 to 91,91.0,BB113LE,,, +13609,359014,20 Colville Street Burnley Lancashire BB10 1LY,,, BB10 1LY,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Dec 2022,C - 69 to 80,77.0,B - 81 to 91,90.0,BB101LY,100010335605.0,20 Colville Street,0.4754 +13636,358892,17 Arran Street Burnley Lancashire BB11 4BW,,, BB11 4BW,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Feb 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB114BW,100010327625.0,17 Arran Street,0.4596 +13754,362957,7 Arran Street Burnley Lancashire BB11 4BW,,, BB11 4BW,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Aug 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB114BW,100010327615.0,7 Arran Street,0.4536 +13694,357938,11 Wytham Street Padiham Lancashire England BB12 7DX,,, BB12 7DX,House: End Terrace,Domestic EPC Required,EPC Present,20 Mar 2020,D - 55 to 68,63.0,B - 81 to 91,88.0,BB127DX,100010361676.0,"11, Wytham Street, Padiham",0.5461 +13882,382492,25 Wytham Street Burnley Lancashire BB12 7DX,,, BB12 7DX,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Oct 2024,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127DX,100010361683.0,"25 Wytham Street, Padiham",0.4393 +13695,359402,7 Colbran Street Burnley Lancashire BB10 3DP,,, BB10 3DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Mar 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB103DP,100010335187.0,"7 COLBRAN STREET, BURNLEY",0.6185 +13700,358173,10 Dickson Street Burnley Lancashire BB12 6QQ,,, BB12 6QQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2017,C - 69 to 80,76.0,A - 92 Plus,92.0,BB126QQ,100010337376.0,"10, Dickson Street",0.4705 +13766,360290,1 Dickson Street Burnley Lancashire BB12 6QQ,,, BB12 6QQ,House: End Terrace,Domestic EPC Required,EPC Present,06 Jun 2023,D - 55 to 68,64.0,B - 81 to 91,85.0,BB126QQ,100010337370.0,1 Dickson Street,0.4652 +13702,362943,11 Randall Street Burnley Lancashire BB10 1SR,,, BB10 1SR,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,70.0,B - 81 to 91,88.0,BB101SR,100010353168.0,11 Randall Street,0.4705 +13705,358322,18 Rawson Street Burnley Lancashire BB10 1SJ,,, BB10 1SJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 May 2016,C - 69 to 80,70.0,B - 81 to 91,89.0,BB101SJ,100010353231.0,"18, Rawson Street",0.4652 +13708,362945,34 Brennand Street Burnley Lancashire BB10 1SQ,,, BB10 1SQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 May 2014,C - 69 to 80,75.0,B - 81 to 91,91.0,BB101SQ,100010329822.0,"34, Brennand Street",0.4754 +13712,362947,65 Brennand Street Burnley Lancashire BB10 1SQ,,, BB10 1SQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Jul 2013,C - 69 to 80,74.0,B - 81 to 91,88.0,BB101SQ,100010329851.0,"65, Brennand Street",0.4754 +13713,358578,67 Gannow Lane Burnley Lancashire BB12 6QD,,, BB12 6QD,House: End Terrace,Domestic EPC Required,EPC Present,24 Jan 2017,C - 69 to 80,71.0,B - 81 to 91,84.0,BB126QD,100010339329.0,"67, Gannow Lane",0.4536 +13715,358643,91 Gannow Lane Burnley Lancashire BB12 6QH,,, BB12 6QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Feb 2016,C - 69 to 80,74.0,B - 81 to 91,88.0,BB126QH,100010339349.0,"91, Gannow Lane",0.4536 +13716,358651,103 Gannow Lane Burnley Lancashire BB12 6QH,,, BB12 6QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Apr 2015,C - 69 to 80,74.0,B - 81 to 91,90.0,BB126QH,100010339361.0,"103, Gannow Lane",0.4596 +13717,362949,114 Gannow Lane Burnley Lancashire BB12 6QH,,, BB12 6QH,House: End Terrace,Domestic EPC Required,EPC Present,20 Jul 2015,D - 55 to 68,63.0,B - 81 to 91,87.0,BB126QH,100012538299.0,"114, Gannow Lane",0.4596 +13718,362950,118 Gannow Lane Burnley Lancashire BB12 6QH,,, BB12 6QH,House: End Terrace,Domestic EPC Required,EPC Present,25 Feb 2026,C - 69 to 80,73.0,B - 81 to 91,90.0,BB126QH,100010339374.0,"118, Gannow Lane",0.4596 +13719,362951,124 Gannow Lane Burnley Lancashire BB12 6QH,,, BB12 6QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB126QH,100010339377.0,124 Gannow Lane,0.4596 +13720,358778,126 Gannow Lane Burnley Lancashire BB12 6QH,,, BB12 6QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Dec 2015,C - 69 to 80,71.0,B - 81 to 91,89.0,BB126QH,100010339378.0,"126, Gannow Lane",0.4596 +13721,362952,134 Gannow Lane Burnley Lancashire BB12 6QH,,, BB12 6QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Feb 2015,C - 69 to 80,74.0,B - 81 to 91,90.0,BB126QH,100010339382.0,"134, Gannow Lane",0.4596 +13722,359946,1 Linden Street Burnley Lancashire BB10 4EQ,,, BB10 4EQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 May 2023,C - 69 to 80,72.0,B - 81 to 91,84.0,BB104EQ,100010346115.0,1 Linden Street,0.4596 +13723,359951,1 Mitella Street Burnley Lancashire BB10 4DS,,, BB10 4DS,House: End Terrace,Domestic EPC Required,EPC Present,23 May 2023,C - 69 to 80,69.0,B - 81 to 91,83.0,BB104DS,100010349052.0,1 Mitella Street,0.4652 +13730,359975,5 Woodbine Road Burnley Lancashire BB12 6RE,,, BB12 6RE,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jun 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB126RE,100010361338.0,"5 WOODBINE ROAD, BURNLEY",0.6154 +13732,359937,40 Burdett Street Burnley Lancashire BB11 5AP,,, BB11 5AP,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 May 2023,C - 69 to 80,71.0,B - 81 to 91,84.0,BB115AP,100010331943.0,40 Burdett Street,0.4705 +13733,359980,14 Clare Street Burnley Lancashire BB11 4AT,,, BB11 4AT,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jun 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB114AT,100010333901.0,14 Clare Street,0.4596 +13750,362955,12 Clare Street Burnley Lancashire BB11 4AT,,, BB11 4AT,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Jul 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB114AT,100010333900.0,"12 CLARE STREET, BURNLEY",0.6154 +13737,362953,35 Rosegrove Lane Burnley Lancashire BB12 6HX,,, BB12 6HX,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jul 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB126HX,100010354387.0,35 Rosegrove Lane,0.4705 +13745,362954,137 Ormerod Road Burnley Lancashire BB10 3AA,,, BB10 3AA,House: Detached,Domestic EPC Required,EPC Present,24 Apr 2024,D - 55 to 68,58.0,C - 69 to 80,75.0,BB103AA,100010350647.0,137 Ormerod Road,0.4652 +13756,359994,36 Tunnel Street Burnley Lancashire BB12 0NN,,, BB12 0NN,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Mar 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB120NN,100010359011.0,36 Tunnel Street,0.4652 +13834,379109,(Tree House) 31 Tunnel Street Burnley Lancashire BB12 0NN,,, BB12 0NN,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Jul 2015,D - 55 to 68,64.0,B - 81 to 91,85.0,BB120NN,100010359007.0,"31, Tunnel Street",0.3744 +13768,368815,4 Cardinal Street Burnley Lancashire BB10 1RU,,, BB10 1RU,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB101RU,100010332884.0,"4 CARDINAL STREET, BURNLEY",0.6214 +13769,368813,8 Emily Street Burnley Lancashire BB11 2HR,,, BB11 2HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB112HR,100010338319.0,8 Emily Street,0.4536 +13773,368817,79 Springfield Road Burnley Lancashire BB11 2JB,,, BB11 2JB,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,90.0,BB112JB,100010356375.0,79 Springfield Road,0.4801 +13798,372094,Flat 1 125 Walmersley Road BURY GREATER MANCHESTER BL9 5AY,,, BL9 5AY,Flat: Bottom,Domestic EPC Required,EPC Present,05 Aug 2025,C - 69 to 80,74.0,C - 69 to 80,76.0,BL95AY,100012564480.0,"FLAT 1, 125 WALMERSLEY ROAD",0.5417 +13799,372099,Flat 2 125 Walmersley Road BURY GREATER MANCHESTER BL9 5AY,,, BL9 5AY,Flat: Bottom,Domestic EPC Required,EPC Present,05 Aug 2025,C - 69 to 80,73.0,C - 69 to 80,75.0,BL95AY,100012564481.0,"FLAT 2, 125 WALMERSLEY ROAD",0.5417 +13886,383207,10 Swindon Street Burnley Lancashire BB11 4PF,,, BB11 4PF,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Dec 2024,C - 69 to 80,72.0,B - 81 to 91,86.0,BB114PF,100010357482.0,10 Swindon Street,0.4705 +13909,384695,14 Graham Street Padiham Lancashire BB12 8RW,,, BB12 8RW,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Mar 2025,C - 69 to 80,73.0,B - 81 to 91,88.0,BB128RW,100010340046.0,"14 Graham Street, Padiham",0.6185 +13913,386949,16 Lark Street Burnley Lancashire BB12 0HJ,,, BB12 0HJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Nov 2022,D - 55 to 68,63.0,B - 81 to 91,85.0,BB120HJ,100010345559.0,16 Lark Street,0.4536 +13915,388182,174 Russell Terrace Padiham Lancashire BB12 7EP,,, BB12 7EP,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Apr 2025,C - 69 to 80,69.0,B - 81 to 91,84.0,BB127EP,10003759568.0,"174 Russell Terrace, Padiham",0.6268 +13920,394757,Apartment 9 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112775.0,"Apartment 9, Dovestone Gardens, Briercliffe Road",0.6085 +13921,394680,Apartment 2 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112768.0,"Apartment 2, Dovestone Gardens, Briercliffe Road",0.6085 +13922,394724,Apartment 6 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112772.0,"Apartment 6, Dovestone Gardens, Briercliffe Road",0.6085 +13923,394691,Apartment 3 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,83.0,B - 81 to 91,83.0,BB101BB,10094112769.0,"Apartment 3, Dovestone Gardens, Briercliffe Road",0.6085 +13924,394670,Apartment 10 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,84.0,B - 81 to 91,84.0,BB101BB,10094112776.0,"Apartment 10, Dovestone Gardens, Briercliffe Road",0.6102 +13925,394702,Apartment 4 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,81.0,B - 81 to 91,81.0,BB101BB,10094112770.0,"Apartment 4, Dovestone Gardens, Briercliffe Road",0.6085 +13926,394735,Apartment 7 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112773.0,"Apartment 7, Dovestone Gardens, Briercliffe Road",0.6085 +13927,394713,Apartment 5 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,84.0,B - 81 to 91,84.0,BB101BB,10094112771.0,"Apartment 5, Dovestone Gardens, Briercliffe Road",0.6085 +13928,394669,Apartment 1 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112767.0,"Apartment 1, Dovestone Gardens, Briercliffe Road",0.6085 +13929,394746,Apartment 8 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,84.0,B - 81 to 91,84.0,BB101BB,10094112774.0,"Apartment 8, Dovestone Gardens, Briercliffe Road",0.6085 +13930,394671,Apartment 11 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,84.0,B - 81 to 91,84.0,BB101BB,10094112777.0,"Apartment 11, Dovestone Gardens, Briercliffe Road",0.6102 +13931,394672,Apartment 12 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,C - 69 to 80,80.0,C - 69 to 80,80.0,BB101BB,10094112778.0,"Apartment 12, Dovestone Gardens, Briercliffe Road",0.6102 +13932,394673,Apartment 13 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,82.0,B - 81 to 91,82.0,BB101BB,10094112779.0,"Apartment 13, Dovestone Gardens, Briercliffe Road",0.6102 +13933,394674,Apartment 14 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112780.0,"Apartment 14, Dovestone Gardens, Briercliffe Road",0.6102 +13934,394675,Apartment 15 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112781.0,"Apartment 15, Dovestone Gardens, Briercliffe Road",0.6102 +13935,394676,Apartment 16 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112782.0,"Apartment 16, Dovestone Gardens, Briercliffe Road",0.6102 +13936,394677,Apartment 17 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112783.0,"Apartment 17, Dovestone Gardens, Briercliffe Road",0.6102 +13937,394678,Apartment 18 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112784.0,"Apartment 18, Dovestone Gardens, Briercliffe Road",0.6102 +13938,394679,Apartment 19 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112785.0,"Apartment 19, Dovestone Gardens, Briercliffe Road",0.6102 +13939,394681,Apartment 20 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112786.0,"Apartment 20, Dovestone Gardens, Briercliffe Road",0.6102 +13940,394682,Apartment 21 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,87.0,B - 81 to 91,87.0,BB101BB,10094112787.0,"Apartment 21, Dovestone Gardens, Briercliffe Road",0.6102 +13941,394683,Apartment 22 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112788.0,"Apartment 22, Dovestone Gardens, Briercliffe Road",0.6102 +13942,394684,Apartment 23 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112789.0,"Apartment 23, Dovestone Gardens, Briercliffe Road",0.6102 +13943,394685,Apartment 24 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112790.0,"Apartment 24, Dovestone Gardens, Briercliffe Road",0.6102 +13944,394688,Apartment 27 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112793.0,"Apartment 27, Dovestone Gardens, Briercliffe Road",0.6102 +13945,394689,Apartment 28 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112794.0,"Apartment 28, Dovestone Gardens, Briercliffe Road",0.6102 +13946,394690,Apartment 29 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112795.0,"Apartment 29, Dovestone Gardens, Briercliffe Road",0.6102 +13947,394692,Apartment 30 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112796.0,"Apartment 30, Dovestone Gardens, Briercliffe Road",0.6102 +13948,394693,Apartment 31 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112797.0,"Apartment 31, Dovestone Gardens, Briercliffe Road",0.6102 +13949,394694,Apartment 32 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112798.0,"Apartment 32, Dovestone Gardens, Briercliffe Road",0.6102 +13950,394695,Apartment 33 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112799.0,"Apartment 33, Dovestone Gardens, Briercliffe Road",0.6102 +13951,394696,Apartment 34 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112800.0,"Apartment 34, Dovestone Gardens, Briercliffe Road",0.6102 +13952,394697,Apartment 35 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112801.0,"Apartment 35, Dovestone Gardens, Briercliffe Road",0.6102 +13953,394698,Apartment 36 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112802.0,"Apartment 36, Dovestone Gardens, Briercliffe Road",0.6102 +13954,394699,Apartment 37 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112803.0,"Apartment 37, Dovestone Gardens, Briercliffe Road",0.6102 +13955,394700,Apartment 38 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112804.0,"Apartment 38, Dovestone Gardens, Briercliffe Road",0.6102 +13956,394701,Apartment 39 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112805.0,"Apartment 39, Dovestone Gardens, Briercliffe Road",0.6102 +13957,394703,Apartment 40 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112806.0,"Apartment 40, Dovestone Gardens, Briercliffe Road",0.6102 +13958,394706,Apartment 43 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112809.0,"Apartment 43, Dovestone Gardens, Briercliffe Road",0.6102 +13959,394686,Apartment 25 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112791.0,"Apartment 25, Dovestone Gardens, Briercliffe Road",0.6102 +13960,394687,Apartment 26 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112792.0,"Apartment 26, Dovestone Gardens, Briercliffe Road",0.6102 +13961,394704,Apartment 41 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112807.0,"Apartment 41, Dovestone Gardens, Briercliffe Road",0.6102 +13962,394707,Apartment 44 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112810.0,"Apartment 44, Dovestone Gardens, Briercliffe Road",0.6102 +13963,394705,Apartment 42 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,87.0,B - 81 to 91,87.0,BB101BB,10094112808.0,"Apartment 42, Dovestone Gardens, Briercliffe Road",0.6102 +13964,394708,Apartment 45 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112811.0,"Apartment 45, Dovestone Gardens, Briercliffe Road",0.6102 +13965,394709,Apartment 46 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112812.0,"Apartment 46, Dovestone Gardens, Briercliffe Road",0.6102 +13966,394710,Apartment 47 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112813.0,"Apartment 47, Dovestone Gardens, Briercliffe Road",0.6102 +13967,394711,Apartment 48 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,83.0,B - 81 to 91,83.0,BB101BB,10094112814.0,"Apartment 48, Dovestone Gardens, Briercliffe Road",0.6102 +13968,394712,Apartment 49 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,81.0,B - 81 to 91,81.0,BB101BB,10094112815.0,"Apartment 49, Dovestone Gardens, Briercliffe Road",0.6102 +13969,394714,Apartment 50 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,84.0,B - 81 to 91,84.0,BB101BB,10094112816.0,"Apartment 50, Dovestone Gardens, Briercliffe Road",0.6102 +13970,394715,Apartment 51 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112817.0,"Apartment 51, Dovestone Gardens, Briercliffe Road",0.6102 +13971,394718,Apartment 54 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112820.0,"Apartment 54, Dovestone Gardens, Briercliffe Road",0.6102 +13972,394719,Apartment 55 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112821.0,"Apartment 55, Dovestone Gardens, Briercliffe Road",0.6102 +13973,394720,Apartment 56 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112822.0,"Apartment 56, Dovestone Gardens, Briercliffe Road",0.6102 +13974,394721,Apartment 57 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112823.0,"Apartment 57, Dovestone Gardens, Briercliffe Road",0.6102 +13975,394722,Apartment 58 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112824.0,"Apartment 58, Dovestone Gardens, Briercliffe Road",0.6102 +13976,394723,Apartment 59 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112825.0,"Apartment 59, Dovestone Gardens, Briercliffe Road",0.6102 +13977,394725,Apartment 60 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112826.0,"Apartment 60, Dovestone Gardens, Briercliffe Road",0.6102 +13978,394726,Apartment 61 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112827.0,"Apartment 61, Dovestone Gardens, Briercliffe Road",0.6102 +13979,394727,Apartment 62 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112828.0,"Apartment 62, Dovestone Gardens, Briercliffe Road",0.6102 +13980,394728,Apartment 63 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112829.0,"Apartment 63, Dovestone Gardens, Briercliffe Road",0.6102 +13981,394729,Apartment 64 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112830.0,"Apartment 64, Dovestone Gardens, Briercliffe Road",0.6102 +13982,394730,Apartment 65 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112831.0,"Apartment 65, Dovestone Gardens, Briercliffe Road",0.6102 +13983,394731,Apartment 66 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112832.0,"Apartment 66, Dovestone Gardens, Briercliffe Road",0.6102 +13984,394732,Apartment 67 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112833.0,"Apartment 67, Dovestone Gardens, Briercliffe Road",0.6102 +13985,394736,Apartment 70 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112836.0,"Apartment 70, Dovestone Gardens, Briercliffe Road",0.6102 +13986,394716,Apartment 52 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112818.0,"Apartment 52, Dovestone Gardens, Briercliffe Road",0.6102 +13987,394717,Apartment 53 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112819.0,"Apartment 53, Dovestone Gardens, Briercliffe Road",0.6102 +13988,394733,Apartment 68 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,82.0,B - 81 to 91,82.0,BB101BB,10094112834.0,"Apartment 68, Dovestone Gardens, Briercliffe Road",0.6102 +13989,394737,Apartment 71 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112837.0,"Apartment 71, Dovestone Gardens, Briercliffe Road",0.6102 +13990,394734,Apartment 69 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,83.0,B - 81 to 91,83.0,BB101BB,10094112835.0,"Apartment 69, Dovestone Gardens, Briercliffe Road",0.6102 +13991,394738,Apartment 72 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112838.0,"Apartment 72, Dovestone Gardens, Briercliffe Road",0.6102 +13992,394739,Apartment 73 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112839.0,"Apartment 73, Dovestone Gardens, Briercliffe Road",0.6102 +13993,394740,Apartment 74 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,83.0,B - 81 to 91,83.0,BB101BB,10094112840.0,"Apartment 74, Dovestone Gardens, Briercliffe Road",0.6102 +13994,394743,Apartment 77 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112843.0,"Apartment 77, Dovestone Gardens, Briercliffe Road",0.6102 +13995,394744,Apartment 78 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,84.0,B - 81 to 91,84.0,BB101BB,10094112844.0,"Apartment 78, Dovestone Gardens, Briercliffe Road",0.6102 +13996,394745,Apartment 79 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112845.0,"Apartment 79, Dovestone Gardens, Briercliffe Road",0.6102 +13997,394748,Apartment 81 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112847.0,"Apartment 81, Dovestone Gardens, Briercliffe Road",0.6102 +13998,394747,Apartment 80 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112846.0,"Apartment 80, Dovestone Gardens, Briercliffe Road",0.6102 +13999,394749,Apartment 82 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,81.0,B - 81 to 91,81.0,BB101BB,10094112848.0,"Apartment 82, Dovestone Gardens, Briercliffe Road",0.6102 +14000,394750,Apartment 83 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,83.0,B - 81 to 91,83.0,BB101BB,10094112849.0,"Apartment 83, Dovestone Gardens, Briercliffe Road",0.6102 +14001,394751,Apartment 84 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112850.0,"Apartment 84, Dovestone Gardens, Briercliffe Road",0.6102 +14002,394752,Apartment 85 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112851.0,"Apartment 85, Dovestone Gardens, Briercliffe Road",0.6102 +14003,394753,Apartment 86 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112852.0,"Apartment 86, Dovestone Gardens, Briercliffe Road",0.6102 +14004,394755,Apartment 88 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112854.0,"Apartment 88, Dovestone Gardens, Briercliffe Road",0.6102 +14005,394754,Apartment 87 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112853.0,"Apartment 87, Dovestone Gardens, Briercliffe Road",0.6102 +14006,394756,Apartment 89 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112855.0,"Apartment 89, Dovestone Gardens, Briercliffe Road",0.6102 +14007,394759,Apartment 91 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112857.0,"Apartment 91, Dovestone Gardens, Briercliffe Road",0.6102 +14008,394758,Apartment 90 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,84.0,B - 81 to 91,84.0,BB101BB,10094112856.0,"Apartment 90, Dovestone Gardens, Briercliffe Road",0.6102 +14009,394741,Apartment 75 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112841.0,"Apartment 75, Dovestone Gardens, Briercliffe Road",0.6102 +14010,394742,Apartment 76 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112842.0,"Apartment 76, Dovestone Gardens, Briercliffe Road",0.6102 +14011,394760,Apartment 92 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112858.0,"Apartment 92, Dovestone Gardens, Briercliffe Road",0.6102 +14012,394761,Apartment 93 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112859.0,"Apartment 93, Dovestone Gardens, Briercliffe Road",0.6102 +14016,388324,132A Walmersley Road BURY Lancashire BL9 6DX,,, BL9 6DX,Flat: Bottom,Domestic EPC Required,EPC Present,30 Mar 2024,C - 69 to 80,75.0,C - 69 to 80,75.0,BL96DX,4210016920.0,"FLAT 132A, 132 WALMERSLEY ROAD, BURY",0.5886 +14017,388340,132B Walmersley Road BURY Lancashire BL9 6DX,,, BL9 6DX,Flat: Bottom,Domestic EPC Required,EPC Present,01 Apr 2024,C - 69 to 80,72.0,C - 69 to 80,78.0,BL96DX,4210016921.0,132b Walmersley Road,0.5477 +14018,388360,132C Walmersley Road BURY Lancashire BL9 6DX,,, BL9 6DX,Flat: Top,Domestic EPC Required,EPC Present,01 Apr 2024,C - 69 to 80,74.0,C - 69 to 80,79.0,BL96DX,4210016922.0,132c Walmersley Road,0.5477 +14019,388380,132D Walmersley Road BURY Lancashire BL9 6DX,,, BL9 6DX,Flat: Top,Domestic EPC Required,EPC Present,01 Apr 2024,C - 69 to 80,71.0,C - 69 to 80,77.0,BL96DX,4210016923.0,132d Walmersley Road,0.5477 +2813,111202,61 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Apr 2018,C - 69 to 80,69.0,B - 81 to 91,83.0,BB114DW,100010326830.0,"61, Airdrie Crescent",0.4801 +3350,224358,72 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Apr 2014,C - 69 to 80,69.0,B - 81 to 91,84.0,BB114DW,100010326837.0,"72, Airdrie Crescent",0.4801 +9618,89266,2 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Jul 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB114DW,100010326828.0,2 Airdrie Crescent,0.4754 +13781,369302,47 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112698.0,47 Airdrie Crescent,0.4801 +13782,369305,45 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112697.0,45 Airdrie Crescent,0.4801 +13783,369309,43 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112696.0,43 Airdrie Crescent,0.4801 +13784,369313,41 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112695.0,41 Airdrie Crescent,0.4801 +13785,369317,39 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jun 2023,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112694.0,39 Airdrie Crescent,0.4801 +13786,369321,37 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112693.0,37 Airdrie Crescent,0.4801 +13787,369325,35 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112692.0,35 Airdrie Crescent,0.4801 +13788,369329,33 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112691.0,33 Airdrie Crescent,0.4801 +13789,369333,31 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jun 2023,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112690.0,31 Airdrie Crescent,0.4801 +13790,369337,29 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112689.0,29 Airdrie Crescent,0.4801 +13791,369341,27 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112688.0,27 Airdrie Crescent,0.4801 +13792,369345,25 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2023,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112687.0,25 Airdrie Crescent,0.4801 +13793,369349,23 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112686.0,23 Airdrie Crescent,0.4801 +13794,369353,49 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112699.0,49 Airdrie Crescent,0.4801 +13795,369357,51 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112700.0,51 Airdrie Crescent,0.4801 +13883,381203,53 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112701.0,53 Airdrie Crescent,0.4801 +13891,382526,55 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Oct 2024,A - 92 Plus,94.0,A - 92 Plus,95.0,BB114DW,10094112702.0,55 Airdrie Crescent,0.4801 +13892,382543,57 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Oct 2024,A - 92 Plus,94.0,A - 92 Plus,95.0,BB114DW,10094112703.0,57 Airdrie Crescent,0.4801 +13893,382554,59 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,02 Oct 2024,A - 92 Plus,93.0,A - 92 Plus,95.0,BB114DW,10094112704.0,59 Airdrie Crescent,0.4801 +2819,230177,2 Mount Crescent Cliviger Burnley Lancashire BB10 4TN,,, BB10 4TN,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2025,C - 69 to 80,79.0,A - 92 Plus,116.0,BB104TN,100010349628.0,"2 Mount Crescent, Cliviger",0.5494 +2922,187828,4 Mount Crescent Cliviger Burnley Lancashire BB10 4TN,,, BB10 4TN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Sep 2012,C - 69 to 80,70.0,A - 92 Plus,96.0,BB104TN,100010349629.0,"4, Mount Crescent, Cliviger",0.5494 +3019,324906,6 Mount Crescent Cliviger Burnley Lancashire BB10 4TN,,, BB10 4TN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,02 Dec 2019,C - 69 to 80,73.0,A - 92 Plus,92.0,BB104TN,100010349630.0,"6, Mount Crescent, Cliviger",0.5494 +3116,324904,8 Mount Crescent Cliviger Burnley Lancashire BB10 4TN,,, BB10 4TN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,02 Dec 2019,C - 69 to 80,70.0,A - 92 Plus,92.0,BB104TN,100010349631.0,"8, Mount Crescent, Cliviger",0.5494 +3210,250067,10 Mount Crescent Cliviger Burnley Lancashire BB10 4TN,,, BB10 4TN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Mar 2025,B - 81 to 91,81.0,A - 92 Plus,117.0,BB104TN,100010349632.0,"10 Mount Crescent, Cliviger",0.5525 +3307,324905,12 Mount Crescent Cliviger Burnley Lancashire BB10 4TN,,, BB10 4TN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,02 Dec 2019,C - 69 to 80,73.0,A - 92 Plus,92.0,BB104TN,100010349633.0,"12, Mount Crescent, Cliviger",0.5525 +3406,40807,14 Mount Crescent Cliviger Burnley Lancashire BB10 4TN,,, BB10 4TN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Oct 2008,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104TN,100010349634.0,"14, Mount Crescent, Cliviger",0.5525 +3510,221659,16 Mount Crescent Cliviger Burnley Lancashire BB10 4TN,,, BB10 4TN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,69.0,A - 92 Plus,94.0,BB104TN,100010349635.0,"16, Mount Crescent, Cliviger",0.5525 +3618,240377,18 Mount Crescent Cliviger Burnley Lancashire BB10 4TN,,, BB10 4TN,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2025,C - 69 to 80,79.0,A - 92 Plus,116.0,BB104TN,100010349636.0,"18 Mount Crescent, Cliviger",0.5525 +2839,106967,22 Orpington Square Burnley Lancashire BB10 2RF,,, BB10 2RF,House: End Terrace,Domestic EPC Required,EPC Present,16 Feb 2011,D - 55 to 68,55.0,D - 55 to 68,60.0,BB102RF,10003780833.0,"22, Orpington Square",0.4801 +2866,179646,17 St Annes Street Padiham Lancashire BB12 7AX,,, BB12 7AX,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 May 2012,D - 55 to 68,63.0,B - 81 to 91,87.0,BB127AX,100010356429.0,"17, St. Annes Street, Padiham",0.6339 +2884,236211,5 Sefton Terrace Burnley Lancashire BB11 4PZ,,, BB11 4PZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 May 2015,D - 55 to 68,60.0,B - 81 to 91,83.0,BB114PZ,10003758840.0,"5, Sefton Terrace",0.4652 +2893,95641,1 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Top,Domestic EPC Required,EPC Present,18 Aug 2021,C - 69 to 80,77.0,C - 69 to 80,78.0,BB113TA,100010350814.0,1 Oxford Place,0.4536 +2941,234412,2 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Bottom,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,75.0,BB113TA,100010350815.0,2 Oxford Place,0.4536 +2994,359935,3 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Top,Domestic EPC Required,EPC Present,18 May 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113TA,100010350816.0,3 Oxford Place,0.4536 +3036,226548,4 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Bottom,Domestic EPC Required,EPC Present,17 Sep 2024,C - 69 to 80,76.0,C - 69 to 80,78.0,BB113TA,100010350817.0,4 Oxford Place,0.4536 +3087,40794,5 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Top,Domestic EPC Required,EPC Present,22 Mar 2017,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113TA,100010350818.0,"5, Oxford Place",0.4536 +3131,40797,6 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Bottom,Domestic EPC Required,EPC Present,22 Sep 2008,D - 55 to 68,67.0,C - 69 to 80,79.0,BB113TA,,, +3179,210940,7 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Top,Domestic EPC Required,EPC Present,26 Nov 2025,C - 69 to 80,77.0,C - 69 to 80,78.0,BB113TA,100010350820.0,7 Oxford Place,0.4536 +3227,163891,8 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Bottom,Domestic EPC Required,EPC Present,10 Dec 2025,C - 69 to 80,74.0,C - 69 to 80,76.0,BB113TA,100010350821.0,8 Oxford Place,0.4536 +3276,252241,9 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Top,Domestic EPC Required,EPC Present,02 Jul 2016,C - 69 to 80,76.0,C - 69 to 80,78.0,BB113TA,100010350822.0,"9, Oxford Place",0.4536 +3322,40805,10 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Bottom,Domestic EPC Required,EPC Present,26 Jul 2021,C - 69 to 80,76.0,C - 69 to 80,79.0,BB113TA,100010350823.0,10 OXFORD PLACE,0.4596 +3375,362308,11 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Top,Domestic EPC Required,EPC Present,13 Oct 2022,C - 69 to 80,79.0,C - 69 to 80,80.0,BB113TA,100010350824.0,11 Oxford Place,0.4596 +3423,69664,12 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jul 2009,B - 81 to 91,81.0,B - 81 to 91,83.0,BB113TA,100010350825.0,"12, Oxford Place",0.4596 +2912,362266,520 Padiham Road Burnley Lancashire BB12 6TF,,, BB12 6TF,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,83.0,BB126TF,100010351121.0,520 Padiham Road,0.4652 +3867,362335,506 Padiham Road Burnley Lancashire BB12 6TF,,, BB12 6TF,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB126TF,100010351114.0,506 Padiham Road,0.4652 +3974,190620,508 Padiham Road Burnley Lancashire BB12 6TF,,, BB12 6TF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Oct 2012,D - 55 to 68,65.0,B - 81 to 91,89.0,BB126TF,100010351115.0,"508, Padiham Road",0.4652 +4079,181038,510 Padiham Road Burnley Lancashire BB12 6TF,,, BB12 6TF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Jun 2012,D - 55 to 68,59.0,B - 81 to 91,86.0,BB126TF,100010351116.0,"510, Padiham Road",0.4652 +4184,362356,512 Padiham Road Burnley Lancashire BB12 6TF,,, BB12 6TF,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB126TF,100010351117.0,512 Padiham Road,0.4652 +11066,193908,518 Padiham Road Burnley Lancashire BB12 6TF,,, BB12 6TF,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Dec 2012,C - 69 to 80,71.0,B - 81 to 91,85.0,BB126TF,100010351120.0,"518, Padiham Road",0.4652 +2928,228326,4 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,78.0,BB126AQ,100010336545.0,4 Cumberland Avenue,0.4801 +3168,362289,9 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB126AQ,100010336550.0,9 Cumberland Avenue,0.4801 +3216,359957,10 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 May 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB126AQ,100010336551.0,10 Cumberland Avenue,0.4845 +3312,40804,12 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: End Terrace,Domestic EPC Required,EPC Present,09 Apr 2009,D - 55 to 68,66.0,C - 69 to 80,74.0,BB126AQ,100010336553.0,"12, Cumberland Avenue",0.4845 +3516,201776,16 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Apr 2013,C - 69 to 80,73.0,B - 81 to 91,87.0,BB126AQ,100010336557.0,"16, Cumberland Avenue",0.4845 +3675,362324,19 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB126AQ,100010336560.0,19 Cumberland Avenue,0.4845 +3722,210895,20 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Aug 2013,C - 69 to 80,73.0,B - 81 to 91,87.0,BB126AQ,100010336561.0,"20, Cumberland Avenue",0.4845 +3821,227863,22 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Aug 2014,C - 69 to 80,69.0,B - 81 to 91,84.0,BB126AQ,100010336563.0,"22, Cumberland Avenue",0.4845 +3871,362336,23 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: End Terrace,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB126AQ,100010336564.0,23 Cumberland Avenue,0.4845 +4032,362344,26 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: End Terrace,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB126AQ,100010336567.0,26 Cumberland Avenue,0.4845 +4083,222619,27 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Mar 2014,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126AQ,100010336568.0,"27, Cumberland Avenue",0.4845 +4189,124990,29 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Nov 2011,C - 69 to 80,71.0,C - 69 to 80,74.0,BB126AQ,100010336570.0,"29, Cumberland Avenue",0.4845 +4425,362372,33 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB126AQ,100010336574.0,33 Cumberland Avenue,0.4845 +5583,362444,55 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,88.0,BB126AQ,100010336590.0,55 Cumberland Avenue,0.4845 +5694,105429,57 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Jan 2011,D - 55 to 68,67.0,C - 69 to 80,72.0,BB126AQ,100010336591.0,"57, Cumberland Avenue",0.4845 +2944,183761,1 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Bottom,Domestic EPC Required,EPC Present,02 Aug 2012,C - 69 to 80,70.0,C - 69 to 80,76.0,BB128QP,100010356522.0,"1, St. James Place, Padiham",0.6641 +2996,253476,2 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Bottom,Domestic EPC Required,EPC Present,07 Dec 2025,C - 69 to 80,69.0,C - 69 to 80,74.0,BB128QP,100010356523.0,"2 St. James Place, Padiham",0.6641 +3040,204373,3 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Top,Domestic EPC Required,EPC Present,20 May 2013,C - 69 to 80,74.0,C - 69 to 80,77.0,BB128QP,100010356524.0,"3, St. James Place, Padiham",0.6641 +3089,76900,4 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Top,Domestic EPC Required,EPC Present,02 Sep 2009,C - 69 to 80,78.0,B - 81 to 91,81.0,BB128QP,100010356525.0,"4, St. James Place, Padiham",0.6641 +3134,362284,5 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Bottom,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB128QP,100010356526.0,"5 St. James Place, Padiham",0.6641 +3181,40799,6 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Bottom,Domestic EPC Required,EPC Present,07 Jan 2009,C - 69 to 80,69.0,C - 69 to 80,78.0,BB128QP,100010356527.0,"6, St. James Place, Padiham",0.6641 +3230,362294,7 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Top,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB128QP,100010356528.0,"7 St. James Place, Padiham",0.6641 +3278,230223,8 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Top,Domestic EPC Required,EPC Present,21 Nov 2014,C - 69 to 80,74.0,C - 69 to 80,76.0,BB128QP,100010356529.0,"8, St. James Place, Padiham",0.6641 +3324,106954,9 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Bottom,Domestic EPC Required,EPC Present,15 Feb 2011,C - 69 to 80,75.0,C - 69 to 80,78.0,BB128QP,100010356530.0,"9, St. James Place, Padiham",0.6641 +3372,362307,10 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Bottom,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB128QP,100010356531.0,"10 St. James Place, Padiham",0.6665 +3421,243352,11 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Top,Domestic EPC Required,EPC Present,29 Oct 2015,C - 69 to 80,73.0,C - 69 to 80,76.0,BB128QP,100010356532.0,"11, St. James Place, Padiham",0.6665 +3530,203574,13 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Bottom,Domestic EPC Required,EPC Present,25 Apr 2013,C - 69 to 80,71.0,C - 69 to 80,77.0,BB128QP,100010356534.0,"13, St. James Place, Padiham",0.6665 +3582,234413,14 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Bottom,Domestic EPC Required,EPC Present,02 Dec 2025,C - 69 to 80,73.0,C - 69 to 80,76.0,BB128QP,100010356535.0,"14 St. James Place, Padiham",0.6665 +3631,231068,15 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Top,Domestic EPC Required,EPC Present,15 Jan 2015,C - 69 to 80,73.0,C - 69 to 80,76.0,BB128QP,100010356536.0,"15, St. James Place, Padiham",0.6665 +3683,220610,16 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Top,Domestic EPC Required,EPC Present,04 Dec 2013,C - 69 to 80,74.0,C - 69 to 80,76.0,BB128QP,100010356537.0,"16, St. James Place, Padiham",0.6665 +13310,338935,12 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Top,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,77.0,C - 69 to 80,77.0,BB128QP,100010356533.0,"12 St. James Place, Padiham",0.6665 +2955,253566,310 Padiham Road Burnley Lancashire BB12 6ST,,, BB12 6ST,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2025,D - 55 to 68,64.0,C - 69 to 80,77.0,BB126ST,100010350983.0,310 Padiham Road,0.4652 +2973,362272,2 Wavell Street Burnley Lancashire BB12 6DX,,, BB12 6DX,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,84.0,BB126DX,100010360081.0,2 Wavell Street,0.4596 +3067,362278,4 Wavell Street Burnley Lancashire BB12 6DX,,, BB12 6DX,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB126DX,100010360083.0,4 Wavell Street,0.4596 +3119,362282,5 Wavell Street Burnley Lancashire BB12 6DX,,, BB12 6DX,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB126DX,100010360084.0,5 Wavell Street,0.4596 +3359,362306,10 Wavell Street Burnley Lancashire BB12 6DX,,, BB12 6DX,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126DX,100010360089.0,10 Wavell Street,0.4652 +3560,295097,14 Wavell Street Burnley Lancashire BB12 6DX,,, BB12 6DX,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Sep 2017,D - 55 to 68,66.0,B - 81 to 91,87.0,BB126DX,100010360093.0,"14, Wavell Street",0.4652 +3617,362320,15 Wavell Street Burnley Lancashire BB12 6DX,,, BB12 6DX,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB126DX,100010360094.0,15 Wavell Street,0.4652 +3666,40819,16 Wavell Street Burnley Lancashire BB12 6DX,,, BB12 6DX,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2008,D - 55 to 68,67.0,C - 69 to 80,74.0,BB126DX,100010360095.0,"16, Wavell Street",0.4652 +3768,229257,18 Wavell Street Burnley Lancashire BB12 6DX,,, BB12 6DX,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Oct 2014,D - 55 to 68,68.0,B - 81 to 91,87.0,BB126DX,100010360096.0,"18, Wavell Street",0.4652 +3969,190585,22 Wavell Street Burnley Lancashire BB12 6DX,,, BB12 6DX,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Oct 2012,C - 69 to 80,70.0,B - 81 to 91,85.0,BB126DX,100010360098.0,"22, Wavell Street",0.4652 +2989,69493,1 Sheddon Grove Burnley Lancashire BB10 4NH,,, BB10 4NH,House: End Terrace,Domestic EPC Required,EPC Present,04 Feb 2026,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104NH,100010355755.0,"1, Sheddon Grove",0.4596 +3223,324972,6 Sheddon Grove Burnley Lancashire BB10 4NH,,, BB10 4NH,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Dec 2019,D - 55 to 68,67.0,B - 81 to 91,86.0,BB104NH,100010355760.0,"6, Sheddon Grove",0.4596 +3016,189414,65 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Oct 2012,D - 55 to 68,67.0,B - 81 to 91,83.0,BB114DR,100010326833.0,"65, Airdrie Crescent",0.4801 +3111,40796,67 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB114DR,100010326834.0,67 Airdrie Crescent,0.4801 +3552,362315,76 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB114DR,100010326841.0,76 Airdrie Crescent,0.4801 +3659,252268,78 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Jul 2016,C - 69 to 80,70.0,B - 81 to 91,87.0,BB114DR,100010326843.0,"78, Airdrie Crescent",0.4801 +3759,362331,80 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB114DR,100010326845.0,80 Airdrie Crescent,0.4801 +3857,236581,82 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jun 2015,D - 55 to 68,64.0,B - 81 to 91,85.0,BB114DR,100010326847.0,"82, Airdrie Crescent",0.4801 +3960,252193,84 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Nov 2017,C - 69 to 80,72.0,B - 81 to 91,88.0,BB114DR,100010326848.0,"84, Airdrie Crescent",0.4801 +4119,250501,87 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,Flat: Top,Domestic EPC Required,EPC Present,02 Jun 2016,C - 69 to 80,74.0,C - 69 to 80,77.0,BB114DR,100010326850.0,"87, Airdrie Crescent",0.4801 +4174,186593,88 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Aug 2024,C - 69 to 80,70.0,B - 81 to 91,84.0,BB114DR,100010326851.0,88 Airdrie Crescent,0.4801 +4230,195127,89 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,Flat: Bottom,Domestic EPC Required,EPC Present,03 Jan 2022,C - 69 to 80,71.0,C - 69 to 80,77.0,BB114DR,100010326852.0,89 Airdrie Crescent,0.4801 +4289,100574,90 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Jul 2025,C - 69 to 80,69.0,C - 69 to 80,77.0,BB114DR,100010326853.0,90 Airdrie Crescent,0.4801 +4343,94898,91 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,Flat: Bottom,Domestic EPC Required,EPC Present,09 Apr 2010,D - 55 to 68,58.0,C - 69 to 80,75.0,BB114DR,100010326854.0,"91, Airdrie Crescent",0.4801 +4409,125268,92 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Nov 2011,D - 55 to 68,57.0,D - 55 to 68,66.0,BB114DR,100010326855.0,92 Airdrie Crescent,0.4801 +4463,40854,93 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,Flat: Top,Domestic EPC Required,EPC Present,09 Nov 2025,D - 55 to 68,68.0,D - 55 to 68,68.0,BB114DR,100010326856.0,93 Airdrie Crescent,0.4801 +4524,40856,94 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB114DR,100010326857.0,94 Airdrie Crescent,0.4801 +4584,247885,95 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,Flat: Top,Domestic EPC Required,EPC Present,23 Mar 2016,C - 69 to 80,74.0,C - 69 to 80,76.0,BB114DR,100010326858.0,"95, Airdrie Crescent",0.4801 +4647,362384,96 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,89.0,BB114DR,100010326859.0,96 Airdrie Crescent,0.4801 +4700,247886,97 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,Flat: Bottom,Domestic EPC Required,EPC Present,23 Mar 2016,C - 69 to 80,71.0,C - 69 to 80,73.0,BB114DR,100010326860.0,"97, Airdrie Crescent",0.4801 +4799,40876,99 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,Flat: Bottom,Domestic EPC Required,EPC Present,17 May 2009,C - 69 to 80,73.0,C - 69 to 80,73.0,BB114DR,100010326862.0,"99, Airdrie Crescent",0.4801 +4895,247887,101 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,Flat: Top,Domestic EPC Required,EPC Present,23 Mar 2016,C - 69 to 80,73.0,C - 69 to 80,75.0,BB114DR,100010326864.0,"101, Airdrie Crescent",0.4845 +4939,110641,102 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Apr 2011,D - 55 to 68,64.0,C - 69 to 80,72.0,BB114DR,100010326865.0,"102, Airdrie Crescent",0.4845 +4985,271498,103 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jan 2026,D - 55 to 68,67.0,B - 81 to 91,82.0,BB114DR,100010326866.0,103 Airdrie Crescent,0.4845 +5188,90225,107 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,79.0,BB114DR,100010326870.0,107 Airdrie Crescent,0.4845 +5248,362420,108 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,89.0,BB114DR,100010326871.0,108 Airdrie Crescent,0.4845 +5355,252200,110 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Aug 2018,D - 55 to 68,67.0,B - 81 to 91,84.0,BB114DR,100010326873.0,"110, Airdrie Crescent",0.4845 +5468,252205,112 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB114DR,100010326874.0,112 Airdrie Crescent,0.4845 +5565,96677,114 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Feb 2019,D - 55 to 68,65.0,B - 81 to 91,83.0,BB114DR,100010326875.0,"114, Airdrie Crescent",0.4845 +5678,252206,116 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB114DR,100010326876.0,116 Airdrie Crescent,0.4845 +5875,203608,120 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Sep 2025,C - 69 to 80,70.0,B - 81 to 91,77.0,BB114DR,100010326878.0,120 Airdrie Crescent,0.4845 +6061,194171,124 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Jan 2013,D - 55 to 68,67.0,B - 81 to 91,83.0,BB114DR,100010326880.0,"124, Airdrie Crescent",0.4845 +6151,190588,126 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Apr 2017,D - 55 to 68,63.0,C - 69 to 80,79.0,BB114DR,100010326881.0,"126, Airdrie Crescent",0.4845 +3085,362279,22 Cotton Street Padiham Lancashire BB12 7AY,,, BB12 7AY,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127AY,100010335954.0,"22 Cotton Street, Padiham",0.6185 +3110,194170,1 Greenock Close Burnley Lancashire BB11 4DU,,, BB11 4DU,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Jan 2013,C - 69 to 80,69.0,B - 81 to 91,85.0,BB114DU,10003758201.0,"1, Greenock Close",0.4652 +3152,362287,2 Greenock Close Burnley Lancashire BB11 4DU,,, BB11 4DU,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,87.0,BB114DU,10003758202.0,2 Greenock Close,0.4652 +3201,242907,3 Greenock Close Burnley Lancashire BB11 4DU,,, BB11 4DU,House: End Terrace,Domestic EPC Required,EPC Present,16 Oct 2015,C - 69 to 80,72.0,B - 81 to 91,90.0,BB114DU,10003758203.0,"3, Greenock Close",0.4652 +3249,362297,4 Greenock Close Burnley Lancashire BB11 4DU,,, BB11 4DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Aug 2012,D - 55 to 68,66.0,B - 81 to 91,83.0,BB114DU,,, +3300,206142,5 Greenock Close Burnley Lancashire BB11 4DU,,, BB11 4DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Jun 2013,C - 69 to 80,74.0,B - 81 to 91,88.0,BB114DU,10003758205.0,"5, Greenock Close",0.4652 +3348,362305,6 Greenock Close Burnley Lancashire BB11 4DU,,, BB11 4DU,House: End Terrace,Domestic EPC Required,EPC Present,06 Nov 2008,D - 55 to 68,62.0,C - 69 to 80,72.0,BB114DU,,, +3448,193902,8 Greenock Close Burnley Lancashire BB11 4DU,,, BB11 4DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,77.0,B - 81 to 91,81.0,BB114DU,10003758208.0,8 Greenock Close,0.4652 +3500,362313,9 Greenock Close Burnley Lancashire BB11 4DU,,, BB11 4DU,House: End Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB114DU,10003758209.0,9 Greenock Close,0.4652 +3194,112879,4 Swanage Road Burnley Lancashire BB10 3EB,,, BB10 3EB,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,77.0,BB103EB,100010357466.0,4 Swanage Road,0.4536 +3343,252170,7 Swanage Road Burnley Lancashire BB10 3EB,,, BB10 3EB,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Feb 2026,C - 69 to 80,76.0,B - 81 to 91,81.0,BB103EB,100010357469.0,"7, Swanage Road",0.4536 +3544,252169,11 Swanage Road Burnley Lancashire BB10 3EB,,, BB10 3EB,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,75.0,B - 81 to 91,88.0,BB103EB,100010357473.0,11 Swanage Road,0.4596 +3699,252176,14 Swanage Road Burnley Lancashire BB10 3EB,,, BB10 3EB,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB103EB,100010357475.0,14 Swanage Road,0.4596 +3224,248680,1 Deerstone Avenue Burnley Lancashire BB10 4QF,,, BB10 4QF,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Apr 2016,C - 69 to 80,74.0,B - 81 to 91,88.0,BB104QF,100010337134.0,"1, Deerstone Avenue",0.4754 +4259,248691,21 Deerstone Avenue Burnley Lancashire BB10 4QF,,, BB10 4QF,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Apr 2016,C - 69 to 80,72.0,B - 81 to 91,89.0,BB104QF,100010337154.0,"21, Deerstone Avenue",0.4801 +4612,248693,27 Deerstone Avenue Burnley Lancashire BB10 4QF,,, BB10 4QF,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Apr 2016,C - 69 to 80,75.0,B - 81 to 91,90.0,BB104QF,100010337160.0,"27, Deerstone Avenue",0.4801 +5108,208557,37 Deerstone Avenue Burnley Lancashire BB10 4QF,,, BB10 4QF,House: End Terrace,Domestic EPC Required,EPC Present,18 Mar 2022,C - 69 to 80,74.0,B - 81 to 91,89.0,BB104QF,100010337170.0,37 Deerstone Avenue,0.4801 +5328,248697,41 Deerstone Avenue Burnley Lancashire BB10 4QF,,, BB10 4QF,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Apr 2016,C - 69 to 80,74.0,B - 81 to 91,91.0,BB104QF,100010337174.0,"41, Deerstone Avenue",0.4801 +5537,248699,45 Deerstone Avenue Burnley Lancashire BB10 4QF,,, BB10 4QF,House: End Terrace,Domestic EPC Required,EPC Present,07 Apr 2016,C - 69 to 80,70.0,B - 81 to 91,89.0,BB104QF,100010337178.0,"45, Deerstone Avenue",0.4801 +6124,248840,57 Deerstone Avenue Burnley Lancashire BB10 4QF,,, BB10 4QF,House: End Terrace,Domestic EPC Required,EPC Present,06 Apr 2016,C - 69 to 80,69.0,B - 81 to 91,87.0,BB104QF,100010337190.0,"57, Deerstone Avenue",0.4801 +6894,248841,73 Deerstone Avenue Burnley Lancashire BB10 4QF,,, BB10 4QF,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Apr 2016,C - 69 to 80,72.0,B - 81 to 91,89.0,BB104QF,100010337206.0,"73, Deerstone Avenue",0.4801 +3242,204376,1 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,24 May 2013,D - 55 to 68,67.0,B - 81 to 91,84.0,BB102QD,100010342805.0,"1, Hodder Street",0.4596 +3344,322296,3 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Aug 2019,D - 55 to 68,65.0,B - 81 to 91,85.0,BB102QD,100010342807.0,"3, Hodder Street",0.4596 +3601,179608,8 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Apr 2012,D - 55 to 68,57.0,B - 81 to 91,81.0,BB102QD,100010342812.0,"8, Hodder Street",0.4596 +3650,90184,9 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Feb 2010,D - 55 to 68,59.0,C - 69 to 80,70.0,BB102QD,100010342813.0,"9, Hodder Street",0.4596 +3702,325382,10 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: End Terrace,Domestic EPC Required,EPC Present,02 Jan 2020,C - 69 to 80,72.0,B - 81 to 91,88.0,BB102QD,100010342814.0,"10, Hodder Street",0.4652 +3751,223396,11 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: End Terrace,Domestic EPC Required,EPC Present,03 Apr 2014,D - 55 to 68,59.0,B - 81 to 91,85.0,BB102QD,100010342815.0,"11, Hodder Street",0.4652 +3802,197611,12 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Feb 2013,C - 69 to 80,70.0,B - 81 to 91,87.0,BB102QD,100010342816.0,"12, Hodder Street",0.4652 +3900,197612,14 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Feb 2013,C - 69 to 80,69.0,B - 81 to 91,85.0,BB102QD,100010342818.0,"14, Hodder Street",0.4652 +3949,222024,15 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jan 2014,D - 55 to 68,61.0,B - 81 to 91,83.0,BB102QD,100010342819.0,"15, Hodder Street",0.4652 +4060,325768,17 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: End Terrace,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB102QD,100010342821.0,"17, Hodder Street",0.4652 +4114,40841,18 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Jan 2026,D - 55 to 68,66.0,C - 69 to 80,77.0,BB102QD,100010342822.0,18 Hodder Street,0.4652 +4166,244342,19 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Nov 2015,C - 69 to 80,71.0,C - 69 to 80,78.0,BB102QD,100010342823.0,"19, Hodder Street",0.4652 +4281,221649,21 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,71.0,B - 81 to 91,86.0,BB102QD,100010342825.0,"21, Hodder Street",0.4652 +4339,325379,22 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Dec 2019,C - 69 to 80,69.0,B - 81 to 91,81.0,BB102QD,100010342826.0,"22, Hodder Street",0.4652 +4457,325384,24 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: End Terrace,Domestic EPC Required,EPC Present,02 Jan 2020,C - 69 to 80,73.0,B - 81 to 91,88.0,BB102QD,100010342828.0,"24, Hodder Street",0.4652 +4517,325383,25 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB102QD,100010342829.0,"25, Hodder Street",0.4652 +4580,289898,26 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Jul 2017,D - 55 to 68,60.0,B - 81 to 91,82.0,BB102QD,100010342830.0,"26, Hodder Street",0.4652 +4936,110951,33 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Apr 2011,D - 55 to 68,64.0,C - 69 to 80,72.0,BB102QD,100010342837.0,"33, Hodder Street",0.4652 +5126,325387,37 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: End Terrace,Domestic EPC Required,EPC Present,02 Jan 2020,C - 69 to 80,72.0,B - 81 to 91,89.0,BB102QD,100010342839.0,"37, Hodder Street",0.4652 +5236,325385,39 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jan 2020,D - 55 to 68,68.0,B - 81 to 91,83.0,BB102QD,100010342840.0,"39, Hodder Street",0.4652 +5666,325386,47 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB102QD,100010342844.0,"47, Hodder Street",0.4652 +3272,248659,2 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104QG,100010337135.0,"2, Deerstone Avenue",0.4754 +3474,248681,6 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 Mar 2016,E - 39 to 54,53.0,C - 69 to 80,78.0,BB104QG,100010337139.0,"6, Deerstone Avenue",0.4754 +3580,248682,8 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,70.0,A - 92 Plus,92.0,BB104QG,100010337141.0,"8, Deerstone Avenue",0.4754 +3681,250038,10 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,03 May 2016,C - 69 to 80,71.0,A - 92 Plus,93.0,BB104QG,100010337143.0,"10, Deerstone Avenue",0.4801 +3780,248683,12 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Apr 2016,C - 69 to 80,70.0,A - 92 Plus,92.0,BB104QG,100010337145.0,"12, Deerstone Avenue",0.4801 +3984,248685,16 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,69.0,B - 81 to 91,90.0,BB104QG,100010337149.0,"16, Deerstone Avenue",0.4801 +4093,248686,18 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,69.0,A - 92 Plus,92.0,BB104QG,100010337151.0,"18, Deerstone Avenue",0.4801 +4671,248694,28 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Apr 2016,D - 55 to 68,68.0,B - 81 to 91,90.0,BB104QG,100010337161.0,"28, Deerstone Avenue",0.4801 +5058,250037,36 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Apr 2016,C - 69 to 80,70.0,B - 81 to 91,90.0,BB104QG,100010337169.0,"36, Deerstone Avenue",0.4801 +5160,248695,38 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,House: End Terrace,Domestic EPC Required,EPC Present,06 Apr 2016,C - 69 to 80,73.0,B - 81 to 91,82.0,BB104QG,100010337171.0,"38, Deerstone Avenue",0.4801 +5387,248698,42 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Apr 2016,C - 69 to 80,69.0,B - 81 to 91,90.0,BB104QG,100010337175.0,"42, Deerstone Avenue",0.4801 +5592,248700,46 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,House: End Terrace,Domestic EPC Required,EPC Present,12 Dec 2025,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104QG,100010337179.0,46 Deerstone Avenue,0.4801 +5701,250336,48 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,19 May 2016,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104QG,100010337181.0,"48, Deerstone Avenue",0.4801 +5802,250588,50 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,15 Jun 2016,D - 55 to 68,68.0,C - 69 to 80,77.0,BB104QG,100010337183.0,"50, Deerstone Avenue",0.4801 +5899,250337,52 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Top,Domestic EPC Required,EPC Present,19 May 2016,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104QG,100010337185.0,"52, Deerstone Avenue",0.4801 +6080,250510,56 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,02 Jun 2016,D - 55 to 68,68.0,C - 69 to 80,77.0,BB104QG,100010337189.0,"56, Deerstone Avenue",0.4801 +6168,250077,58 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,13 May 2016,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104QG,100010337191.0,"58, Deerstone Avenue",0.4801 +6260,250078,60 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Top,Domestic EPC Required,EPC Present,13 May 2016,C - 69 to 80,74.0,C - 69 to 80,78.0,BB104QG,100010337193.0,"60, Deerstone Avenue",0.4801 +6354,250079,62 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Top,Domestic EPC Required,EPC Present,14 May 2016,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104QG,100010337195.0,"62, Deerstone Avenue",0.4801 +6452,250080,64 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,13 May 2016,C - 69 to 80,71.0,C - 69 to 80,76.0,BB104QG,100010337197.0,"64, Deerstone Avenue",0.4801 +6554,250081,66 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,13 May 2016,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104QG,100010337199.0,"66, Deerstone Avenue",0.4801 +6655,245885,68 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Top,Domestic EPC Required,EPC Present,14 Jan 2016,C - 69 to 80,70.0,C - 69 to 80,70.0,BB104QG,100010337201.0,"68, Deerstone Avenue",0.4801 +6756,250338,70 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Top,Domestic EPC Required,EPC Present,19 May 2016,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104QG,100010337203.0,"70, Deerstone Avenue",0.4801 +6950,252102,74 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,30 Jun 2016,D - 55 to 68,67.0,C - 69 to 80,75.0,BB104QG,100010337207.0,"74, Deerstone Avenue",0.4801 +7045,250339,76 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Top,Domestic EPC Required,EPC Present,19 May 2016,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104QG,100010337209.0,"76, Deerstone Avenue",0.4801 +7143,250083,78 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Top,Domestic EPC Required,EPC Present,13 May 2016,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104QG,100010337211.0,"78, Deerstone Avenue",0.4801 +7640,250589,88 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,14 Jun 2016,D - 55 to 68,66.0,C - 69 to 80,75.0,BB104QG,100010337218.0,"88, Deerstone Avenue",0.4801 +7748,250084,90 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Top,Domestic EPC Required,EPC Present,14 May 2016,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104QG,100010337219.0,"90, Deerstone Avenue",0.4801 +12861,326448,14 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Apr 2016,D - 55 to 68,67.0,B - 81 to 91,90.0,BB104QG,100010337147.0,"14, Deerstone Avenue",0.4801 +13371,343122,22 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,69.0,A - 92 Plus,92.0,BB104QG,100010337155.0,"22, Deerstone Avenue",0.4801 +13746,359507,20 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Apr 2016,B - 81 to 91,81.0,B - 81 to 91,86.0,BB104QG,100010337153.0,"20, Deerstone Avenue",0.4801 +3297,326167,25 Fraser Street Burnley Lancashire BB10 1UP,,, BB10 1UP,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Feb 2020,C - 69 to 80,73.0,B - 81 to 91,89.0,BB101UP,100010339192.0,"25, Fraser Street",0.4652 +3302,211371,358 Cog Lane Burnley Lancashire BB11 5JS,,, BB11 5JS,House: End Terrace,Domestic EPC Required,EPC Present,10 Oct 2013,C - 69 to 80,70.0,B - 81 to 91,84.0,BB115JS,100010335053.0,"358, Cog Lane",0.4401 +3402,184329,360 Cog Lane Burnley Lancashire BB11 5JS,,, BB11 5JS,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Aug 2012,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115JS,100010335055.0,"360, Cog Lane",0.4401 +3613,362318,364 Cog Lane Burnley Lancashire BB11 5JS,,, BB11 5JS,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115JS,100010335059.0,364 Cog Lane,0.4401 +3713,250578,366 Cog Lane Burnley Lancashire BB11 5JS,,, BB11 5JS,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jun 2016,C - 69 to 80,75.0,B - 81 to 91,88.0,BB115JS,100010335061.0,"366, Cog Lane",0.4401 +3909,362337,370 Cog Lane Burnley Lancashire BB11 5JS,,, BB11 5JS,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115JS,100010335065.0,370 Cog Lane,0.4401 +4234,111326,376 Cog Lane Burnley Lancashire BB11 5JS,,, BB11 5JS,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Jan 2011,D - 55 to 68,62.0,C - 69 to 80,72.0,BB115JS,100010335071.0,"376, Cog Lane",0.4401 +4350,222006,378 Cog Lane Burnley Lancashire BB11 5JS,,, BB11 5JS,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Jan 2014,D - 55 to 68,65.0,B - 81 to 91,86.0,BB115JS,100010335073.0,"378, Cog Lane",0.4401 +4589,229250,382 Cog Lane Burnley Lancashire BB11 5JS,,, BB11 5JS,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Oct 2014,D - 55 to 68,63.0,C - 69 to 80,80.0,BB115JS,100010335077.0,"382, Cog Lane",0.4401 +6231,236582,237 Cog Lane Burnley Lancashire BB11 5JS,,, BB11 5JS,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Jun 2015,D - 55 to 68,56.0,C - 69 to 80,73.0,BB115JS,100010334957.0,"237, Cog Lane",0.4401 +3410,97230,36 Coleshill Avenue Burnley Lancashire BB10 4PF,,, BB10 4PF,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Dec 2025,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104PF,100010335289.0,36 Coleshill Avenue,0.4801 +3715,76896,42 Coleshill Avenue Burnley Lancashire BB10 4PF,,, BB10 4PF,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Sep 2009,D - 55 to 68,68.0,C - 69 to 80,72.0,BB104PF,100010335294.0,"42, Coleshill Avenue",0.4801 +4024,90207,48 Coleshill Avenue Burnley Lancashire BB10 4PF,,, BB10 4PF,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jun 2025,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104PF,100010335300.0,48 Coleshill Avenue,0.4801 +4081,100531,49 Coleshill Avenue Burnley Lancashire BB10 4PF,,, BB10 4PF,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Sep 2010,D - 55 to 68,57.0,C - 69 to 80,72.0,BB104PF,100010335301.0,"49, Coleshill Avenue",0.4801 +4301,89060,53 Coleshill Avenue Burnley Lancashire BB10 4PF,,, BB10 4PF,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Dec 2020,D - 55 to 68,64.0,B - 81 to 91,83.0,BB104PF,100010335305.0,"53 COLESHILL AVENUE, BURNLEY",0.6268 +4473,324888,56 Coleshill Avenue Burnley Lancashire BB10 4PF,,, BB10 4PF,House: End Terrace,Domestic EPC Required,EPC Present,27 Nov 2019,C - 69 to 80,73.0,B - 81 to 91,87.0,BB104PF,100010335308.0,"56, Coleshill Avenue",0.4801 +4658,40873,59 Coleshill Avenue Burnley Lancashire BB10 4PF,,, BB10 4PF,Flat: Top,Domestic EPC Required,EPC Present,03 Feb 2026,D - 55 to 68,63.0,C - 69 to 80,71.0,BB104PF,100010335311.0,"59, Coleshill Avenue",0.4801 +4764,323717,61 Coleshill Avenue Burnley Lancashire BB10 4PF,,, BB10 4PF,Flat: Bottom,Domestic EPC Required,EPC Present,31 Oct 2019,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104PF,100010335313.0,"61, Coleshill Avenue",0.4801 +3425,362309,71 Sycamore Avenue Burnley Lancashire BB12 6DQ,,, BB12 6DQ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB126DQ,100010357527.0,71 Sycamore Avenue,0.4754 +3736,362326,77 Sycamore Avenue Burnley Lancashire BB12 6DQ,,, BB12 6DQ,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB126DQ,100010357530.0,77 Sycamore Avenue,0.4754 +4266,220024,87 Sycamore Avenue Burnley Lancashire BB12 6DQ,,, BB12 6DQ,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Nov 2013,D - 55 to 68,63.0,B - 81 to 91,82.0,BB126DQ,100010357535.0,"87, Sycamore Avenue",0.4754 +3465,90099,12 Thorn Street Burnley Lancashire BB10 1NB,,, BB10 1NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Jan 2010,C - 69 to 80,75.0,C - 69 to 80,76.0,BB101NB,100010358279.0,"12, Thorn Street",0.4596 +3571,96717,14 Thorn Street Burnley Lancashire BB10 1NB,,, BB10 1NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Jul 2010,C - 69 to 80,76.0,C - 69 to 80,76.0,BB101NB,100010358280.0,"14, Thorn Street",0.4596 +12507,298311,40-42 Thorn Street Burnley Lancashire BB10 1NB,,, BB10 1NB,House: End Terrace,Domestic EPC Required,EPC Present,01 May 2018,C - 69 to 80,73.0,B - 81 to 91,83.0,BB101NB,100010358303.0,40-42 Thorn Street,0.5219 +13312,341688,38 Thorn Street Burnley Lancashire BB10 1NB,,, BB10 1NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Sep 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB101NB,100010358301.0,38 Thorn Street,0.4596 +3477,90324,1 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,16 Mar 2010,C - 69 to 80,76.0,C - 69 to 80,78.0,BB103DT,10003780461.0,"1, Marles Court",0.4536 +3527,226303,2 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,18 Jun 2014,C - 69 to 80,73.0,C - 69 to 80,76.0,BB103DT,10003780462.0,"2, Marles Court",0.4536 +3584,40814,3 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,11 Jul 2024,C - 69 to 80,78.0,C - 69 to 80,79.0,BB103DT,10003780463.0,3 Marles Court,0.4536 +3634,40816,4 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,01 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,76.0,BB103DT,10003780464.0,4 Marles Court,0.4536 +3686,40821,5 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,18 Apr 2023,C - 69 to 80,74.0,C - 69 to 80,76.0,BB103DT,10003780465.0,5 Marles Court,0.4536 +3832,40830,8 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,18 Sep 2008,C - 69 to 80,70.0,C - 69 to 80,75.0,BB103DT,,, +3883,107906,9 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Mar 2011,C - 69 to 80,71.0,C - 69 to 80,76.0,BB103DT,10003780469.0,"9, Marles Court",0.4536 +3992,186165,11 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,01 Nov 2025,C - 69 to 80,75.0,C - 69 to 80,75.0,BB103DT,10003780471.0,11 Marles Court,0.4596 +4044,268942,12 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,15 Dec 2016,C - 69 to 80,73.0,C - 69 to 80,76.0,BB103DT,10003780472.0,"12, Marles Court",0.4596 +4099,221656,13 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,70.0,C - 69 to 80,73.0,BB103DT,10003780473.0,"13, Marles Court",0.4596 +4148,269022,14 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,21 Dec 2016,C - 69 to 80,73.0,C - 69 to 80,77.0,BB103DT,10003780474.0,"14, Marles Court",0.4596 +4317,326208,17 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,10 Feb 2020,C - 69 to 80,72.0,C - 69 to 80,76.0,BB103DT,10003780477.0,"17, Marles Court",0.4596 +4381,224920,18 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,09 May 2014,C - 69 to 80,70.0,C - 69 to 80,77.0,BB103DT,10003780478.0,"18, Marles Court",0.4596 +4439,40853,19 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,26 Feb 2009,C - 69 to 80,75.0,C - 69 to 80,79.0,BB103DT,10003780479.0,"19, Marles Court",0.4596 +4497,224921,20 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,09 May 2014,C - 69 to 80,69.0,C - 69 to 80,73.0,BB103DT,10003780480.0,"20, Marles Court",0.4596 +4560,250069,21 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,12 May 2016,C - 69 to 80,70.0,C - 69 to 80,75.0,BB103DT,10003780481.0,"21, Marles Court",0.4596 +4615,116205,22 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,17 Oct 2025,C - 69 to 80,74.0,C - 69 to 80,77.0,BB103DT,10003780482.0,22 Marles Court,0.4596 +4672,362386,23 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,69.0,C - 69 to 80,77.0,BB103DT,10003780483.0,23 Marles Court,0.4596 +4732,102919,24 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,02 Nov 2010,C - 69 to 80,76.0,C - 69 to 80,79.0,BB103DT,10003780484.0,"24, Marles Court",0.4596 +13364,342106,7 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,10 Feb 2020,C - 69 to 80,73.0,C - 69 to 80,77.0,BB103DT,10003780467.0,"7, Marles Court",0.4536 +13744,359425,6 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,16 Sep 2010,B - 81 to 91,81.0,B - 81 to 91,84.0,BB103DT,10003780466.0,"6 MARLES COURT, EARL STREET, BURNLEY",0.4915 +3503,325763,1 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2020,D - 55 to 68,68.0,C - 69 to 80,70.0,BB102AY,100012382200.0,"1, Barden View",0.4471 +3555,40813,2 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,07 May 2009,B - 81 to 91,82.0,B - 81 to 91,85.0,BB102AY,100012382201.0,"2, Barden View",0.4471 +3611,221834,3 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,21 Jan 2014,C - 69 to 80,77.0,C - 69 to 80,80.0,BB102AY,100012382202.0,"3, Barden View",0.4471 +3662,40818,4 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,11 Nov 2008,B - 81 to 91,84.0,B - 81 to 91,85.0,BB102AY,100012382203.0,"4, Barden View",0.4471 +3710,97158,5 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,26 Jul 2010,B - 81 to 91,81.0,B - 81 to 91,84.0,BB102AY,100012382204.0,"5, Barden View",0.4471 +3810,290414,7 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,04 Aug 2017,C - 69 to 80,76.0,C - 69 to 80,77.0,BB102AY,100012382206.0,"7, Barden View",0.4471 +3859,89221,8 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,05 Nov 2009,B - 81 to 91,83.0,B - 81 to 91,85.0,BB102AY,100012382207.0,"8, Barden View",0.4471 +3908,125124,9 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,31 May 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB102AY,100012382208.0,9 Barden View,0.4471 +3963,134196,10 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,02 Feb 2012,C - 69 to 80,78.0,C - 69 to 80,79.0,BB102AY,100012382209.0,"10, Barden View",0.4536 +4016,100557,11 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,05 Oct 2020,C - 69 to 80,74.0,C - 69 to 80,76.0,BB102AY,100012382210.0,"11 BARDEN VIEW, BLACKER STREET, BURNLEY",0.4838 +4071,40838,12 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,18 Dec 2008,B - 81 to 91,82.0,B - 81 to 91,84.0,BB102AY,100012382211.0,"12, Barden View",0.4536 +4178,181489,14 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,25 Jan 2026,C - 69 to 80,76.0,C - 69 to 80,76.0,BB102AY,100012382212.0,14 Barden View,0.4536 +4231,188284,15 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,19 Jan 2026,C - 69 to 80,77.0,C - 69 to 80,77.0,BB102AY,100012382213.0,15 Barden View,0.4536 +4293,40848,16 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,28 Apr 2022,C - 69 to 80,80.0,B - 81 to 91,81.0,BB102AY,100012382214.0,16 Barden View,0.4536 +4348,115745,17 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,24 Jun 2022,C - 69 to 80,78.0,C - 69 to 80,80.0,BB102AY,100012382215.0,17 Barden View,0.4536 +4414,362370,18 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB102AY,100012382216.0,18 Barden View,0.4536 +4467,90137,19 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,20 Jun 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB102AY,100012382217.0,19 Barden View,0.4536 +4530,362378,20 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB102AY,100012382218.0,20 Barden View,0.4536 +4588,40864,21 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,26 Jan 2009,B - 81 to 91,84.0,B - 81 to 91,86.0,BB102AY,100012382219.0,"21, Barden View",0.4536 +4650,40872,22 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,25 Feb 2009,B - 81 to 91,82.0,B - 81 to 91,84.0,BB102AY,100012382220.0,"22, Barden View",0.4536 +11599,238796,23 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,22 Jul 2015,C - 69 to 80,75.0,C - 69 to 80,78.0,BB102AY,10023762858.0,23 Barden View,0.4536 +11604,252044,6 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jan 2026,C - 69 to 80,77.0,C - 69 to 80,77.0,BB102AY,100012382205.0,6 Barden View,0.4471 +3533,362314,6 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115JE,100010327864.0,6 Ayr Grove,0.4326 +3639,245090,8 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Dec 2015,D - 55 to 68,65.0,B - 81 to 91,85.0,BB115JE,100010327865.0,"8, Ayr Grove",0.4326 +3839,248001,12 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,69.0,B - 81 to 91,90.0,BB115JE,100010327867.0,"12, Ayr Grove",0.4401 +3939,234698,14 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2015,D - 55 to 68,63.0,B - 81 to 91,84.0,BB115JE,100010327868.0,"14, Ayr Grove",0.4401 +4049,250801,16 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Jun 2016,C - 69 to 80,69.0,B - 81 to 91,90.0,BB115JE,100010327869.0,"16, Ayr Grove",0.4401 +4268,89364,20 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115JE,100010327871.0,20 Ayr Grove,0.4401 +4504,96152,24 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,06 Feb 2026,C - 69 to 80,69.0,C - 69 to 80,77.0,BB115JE,100010327873.0,"24, Ayr Grove",0.4401 +4623,252217,26 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,15 Jul 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB115JE,100010327874.0,26 Ayr Grove,0.4401 +9626,184328,28 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Feb 2026,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115JE,100010327875.0,"28, Ayr Grove",0.4401 +9627,234336,22 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Feb 2026,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115JE,100010327872.0,"22, Ayr Grove",0.4401 +3535,40811,19 Lockyer Avenue Burnley Lancashire BB12 6AH,,, BB12 6AH,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jun 2009,D - 55 to 68,68.0,C - 69 to 80,74.0,BB126AH,100010346475.0,"19, Lockyer Avenue",0.4705 +3553,40812,1 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Dec 2025,D - 55 to 68,68.0,B - 81 to 91,83.0,BB115LQ,100010354272.0,1 Rome Avenue,0.4471 +3658,40817,3 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Nov 2025,C - 69 to 80,76.0,B - 81 to 91,82.0,BB115LQ,100010354274.0,3 Rome Avenue,0.4471 +3709,96681,4 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Nov 2025,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115LQ,100010354275.0,4 Rome Avenue,0.4471 +3757,362330,5 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115LQ,100010354276.0,5 Rome Avenue,0.4471 +3806,90296,6 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Mar 2010,D - 55 to 68,66.0,C - 69 to 80,70.0,BB115LQ,100010354277.0,"6, Rome Avenue",0.4471 +3855,191102,7 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Nov 2025,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115LQ,100010354278.0,7 Rome Avenue,0.4471 +3905,110738,8 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,65.0,C - 69 to 80,74.0,BB115LQ,100010354279.0,"8, Rome Avenue",0.4471 +3959,221138,9 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Dec 2013,C - 69 to 80,69.0,B - 81 to 91,86.0,BB115LQ,100010354280.0,"9, Rome Avenue",0.4471 +4068,228558,11 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2014,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115LQ,100010354282.0,"11, Rome Avenue",0.4536 +4116,362349,12 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115LQ,100010354283.0,12 Rome Avenue,0.4536 +4175,106940,13 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Jun 2024,C - 69 to 80,70.0,B - 81 to 91,87.0,BB115LQ,100010354284.0,13 Rome Avenue,0.4536 +4225,40845,14 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115LQ,100010354285.0,14 Rome Avenue,0.4536 +4290,362362,15 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,A - 92 Plus,96.0,BB115LQ,10003758830.0,15-17 Rome Avenue,0.4099 +4345,362365,16 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115LQ,100010354287.0,16 Rome Avenue,0.4536 +4464,362374,18 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115LQ,100010354289.0,18 Rome Avenue,0.4536 +4525,40857,19 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Dec 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115LQ,100010354290.0,19 Rome Avenue,0.4536 +4585,110829,20 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Oct 2024,C - 69 to 80,69.0,B - 81 to 91,85.0,BB115LQ,100010354291.0,20 Rome Avenue,0.4536 +4702,110836,22 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,65.0,C - 69 to 80,74.0,BB115LQ,100010354293.0,"22, Rome Avenue",0.4536 +4755,95842,23 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Jun 2010,D - 55 to 68,62.0,D - 55 to 68,65.0,BB115LQ,100010354294.0,"23, Rome Avenue",0.4536 +3562,339023,2 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jun 2021,C - 69 to 80,69.0,B - 81 to 91,83.0,BB114DX,100010348445.0,2 MELROSE AVENUE,0.4652 +3615,362319,3 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,90.0,BB114DX,100010348446.0,3 Melrose Avenue,0.4652 +3668,359891,4 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DX,100010348447.0,4 Melrose Avenue,0.4652 +3717,118466,5 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Sep 2014,D - 55 to 68,66.0,B - 81 to 91,82.0,BB114DX,100010348448.0,"5, Melrose Avenue",0.4652 +3771,182034,6 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Jul 2012,C - 69 to 80,70.0,B - 81 to 91,86.0,BB114DX,100010348449.0,"6, Melrose Avenue",0.4652 +3913,95500,9 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,26 May 2010,C - 69 to 80,69.0,C - 69 to 80,70.0,BB114DX,100010348452.0,"9, Melrose Avenue",0.4652 +4022,101565,11 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,15 May 2025,D - 55 to 68,62.0,B - 81 to 91,88.0,BB114DX,100010348454.0,11 Melrose Avenue,0.4705 +4125,362352,13 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DX,100010348456.0,13 Melrose Avenue,0.4705 +4239,224900,15 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,12 May 2014,C - 69 to 80,70.0,B - 81 to 91,87.0,BB114DX,100010348458.0,"15, Melrose Avenue",0.4705 +4354,224359,17 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Apr 2014,C - 69 to 80,69.0,B - 81 to 91,86.0,BB114DX,100010348460.0,"17, Melrose Avenue",0.4705 +4476,362375,19 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DX,100010348462.0,19 Melrose Avenue,0.4705 +4595,105060,21 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Apr 2022,C - 69 to 80,71.0,B - 81 to 91,89.0,BB114DX,100010348464.0,21 Melrose Avenue,0.4705 +4708,271497,23 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Jan 2017,C - 69 to 80,70.0,B - 81 to 91,86.0,BB114DX,100010348466.0,"23, Melrose Avenue",0.4705 +4810,95859,25 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jun 2010,D - 55 to 68,58.0,C - 69 to 80,71.0,BB114DX,100010348468.0,"25, Melrose Avenue",0.4705 +4904,362399,27 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DX,100010348470.0,27 Melrose Avenue,0.4705 +4993,120793,29 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Nov 2011,D - 55 to 68,64.0,D - 55 to 68,67.0,BB114DX,100010348472.0,"29, Melrose Avenue",0.4705 +5149,116275,32 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,58.0,C - 69 to 80,71.0,BB114DX,100010348475.0,"32, Melrose Avenue",0.4705 +5197,198889,33 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Mar 2013,D - 55 to 68,66.0,B - 81 to 91,84.0,BB114DX,100010348476.0,"33, Melrose Avenue",0.4705 +5257,208553,34 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Jul 2013,D - 55 to 68,65.0,B - 81 to 91,86.0,BB114DX,100010348477.0,"34, Melrose Avenue",0.4705 +5311,362427,35 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2022,E - 39 to 54,47.0,B - 81 to 91,84.0,BB114DX,100010348478.0,35 Melrose Avenue,0.4705 +5422,111532,37 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Aug 2024,D - 55 to 68,64.0,B - 81 to 91,90.0,BB114DX,100010348479.0,37 Melrose Avenue,0.4705 +5523,362443,39 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB114DX,100010348480.0,39 Melrose Avenue,0.4705 +5976,202620,48 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Apr 2013,D - 55 to 68,67.0,B - 81 to 91,85.0,BB114DX,100010348489.0,"48, Melrose Avenue",0.4705 +6068,240987,50 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Dec 2025,D - 55 to 68,64.0,C - 69 to 80,72.0,BB114DX,100010348491.0,50 Melrose Avenue,0.4705 +6157,362492,52 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB114DX,100010348493.0,52 Melrose Avenue,0.4705 +6250,250500,54 Melrose Ave Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Feb 2026,C - 69 to 80,71.0,C - 69 to 80,78.0,BB114DX,100010348495.0,"54, Melrose Avenue",0.4705 +6342,222436,56 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Feb 2014,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DX,100010348497.0,"56, Melrose Avenue",0.4705 +6439,362517,58 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB114DX,100010348499.0,58 Melrose Avenue,0.4705 +6543,362522,60 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB114DX,100010348501.0,60 Melrose Avenue,0.4705 +6638,124145,62 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Nov 2011,D - 55 to 68,66.0,C - 69 to 80,69.0,BB114DX,100010348503.0,"62, Melrose Avenue",0.4705 +6739,40962,64 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Jun 2009,D - 55 to 68,59.0,C - 69 to 80,70.0,BB114DX,100010348505.0,"64, Melrose Avenue",0.4705 +12446,297022,36 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Apr 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110199.0,"36, Melrose Avenue",0.4705 +12447,297023,38 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Apr 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114DX,10094110200.0,"38, Melrose Avenue",0.4705 +12448,297024,40 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Apr 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110201.0,"40, Melrose Avenue",0.4705 +12449,297025,42 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Apr 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110202.0,"42, Melrose Avenue",0.4705 +12450,297026,44 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Apr 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114DX,10094110203.0,"44, Melrose Avenue",0.4705 +12451,297027,46 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Apr 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110204.0,"46, Melrose Avenue",0.4705 +12453,297028,20 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,02 May 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114DX,10094110193.0,"20, Melrose Avenue",0.4705 +12454,297029,22 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,02 May 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110194.0,"22, Melrose Avenue",0.4705 +12456,297031,26 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,02 May 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114DX,10094110196.0,"26, Melrose Avenue",0.4705 +12457,297032,28 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,02 May 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114DX,10094110197.0,"28, Melrose Avenue",0.4705 +12458,297033,30 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,02 May 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110198.0,"30, Melrose Avenue",0.4705 +12459,316678,8 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: End Terrace,Domestic EPC Required,EPC Present,16 May 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110187.0,"8, Melrose Avenue",0.4652 +12460,304353,10 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,16 May 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110188.0,"10, Melrose Avenue",0.4705 +12461,304354,12 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,16 May 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110189.0,"12, Melrose Avenue",0.4705 +12462,304355,14 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,16 May 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110190.0,"14, Melrose Avenue",0.4705 +12463,304356,16 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,16 May 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110191.0,"16, Melrose Avenue",0.4705 +12464,304357,18 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,16 May 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114DX,10094110192.0,"18, Melrose Avenue",0.4705 +3572,252171,4 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Jan 2012,D - 55 to 68,62.0,C - 69 to 80,74.0,BB104LB,100010359566.0,"4, Waddington Avenue",0.4801 +3824,77000,9 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Top,Domestic EPC Required,EPC Present,05 Sep 2024,B - 81 to 91,91.0,B - 81 to 91,91.0,BB104LB,100010359571.0,9 Waddington Avenue,0.4801 +3920,103481,11 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Bottom,Domestic EPC Required,EPC Present,20 Feb 2026,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104LB,100010359573.0,11 Waddington Avenue,0.4845 +4033,40836,13 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Bottom,Domestic EPC Required,EPC Present,02 Jul 2009,D - 55 to 68,64.0,C - 69 to 80,71.0,BB104LB,100010359575.0,"13, Waddington Avenue",0.4845 +4133,89050,15 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Top,Domestic EPC Required,EPC Present,17 Oct 2024,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104LB,100010359577.0,15 Waddington Avenue,0.4845 +4190,76857,16 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Aug 2009,D - 55 to 68,58.0,D - 55 to 68,65.0,BB104LB,100010359578.0,"16, Waddington Avenue",0.4845 +4361,323687,19 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Bottom,Domestic EPC Required,EPC Present,17 Oct 2019,D - 55 to 68,68.0,C - 69 to 80,76.0,BB104LB,100010359580.0,"19, Waddington Avenue",0.4845 +4478,94998,21 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Bottom,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,71.0,C - 69 to 80,76.0,BB104LB,100010359581.0,21 Waddington Avenue,0.4845 +4542,324384,22 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,71.0,B - 81 to 91,85.0,BB104LB,100010359582.0,"22, Waddington Avenue",0.4845 +4599,104918,23 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Top,Domestic EPC Required,EPC Present,02 Feb 2026,C - 69 to 80,70.0,C - 69 to 80,75.0,BB104LB,100010359583.0,"23, Waddington Avenue",0.4845 +4715,76853,25 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,27 Jun 2022,D - 55 to 68,63.0,C - 69 to 80,78.0,BB104LB,100010359585.0,25 Waddington Avenue,0.4845 +4766,324385,26 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Nov 2019,D - 55 to 68,65.0,B - 81 to 91,87.0,BB104LB,100010359586.0,"26, Waddington Avenue",0.4845 +4909,250600,29 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Jun 2016,D - 55 to 68,65.0,B - 81 to 91,85.0,BB104LB,100010359589.0,"29, Waddington Avenue",0.4845 +5001,105449,31 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,15 Aug 2024,D - 55 to 68,59.0,B - 81 to 91,83.0,BB104LB,100010359591.0,31 Waddington Avenue,0.4845 +5048,223395,32 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,03 Apr 2014,D - 55 to 68,61.0,B - 81 to 91,87.0,BB104LB,100010359592.0,"32, Waddington Avenue",0.4845 +5099,324387,33 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,70.0,B - 81 to 91,85.0,BB104LB,100010359593.0,"33, Waddington Avenue",0.4845 +5426,229150,39 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Oct 2014,D - 55 to 68,62.0,B - 81 to 91,84.0,BB104LB,100010359599.0,"39, Waddington Avenue",0.4845 +5529,90073,41 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,19 Jan 2010,D - 55 to 68,56.0,C - 69 to 80,73.0,BB104LB,100010359601.0,"41, Waddington Avenue",0.4845 +5584,227326,42 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jul 2014,D - 55 to 68,58.0,B - 81 to 91,85.0,BB104LB,100010359602.0,"42, Waddington Avenue",0.4845 +5699,324386,44 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,70.0,B - 81 to 91,85.0,BB104LB,100010359604.0,"44, Waddington Avenue",0.4845 +5738,244957,45 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2015,D - 55 to 68,60.0,B - 81 to 91,85.0,BB104LB,100010359605.0,"45, Waddington Avenue",0.4845 +5837,324545,47 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,18 Nov 2019,D - 55 to 68,63.0,C - 69 to 80,78.0,BB104LB,100010359607.0,"47, Waddington Avenue",0.4845 +5933,324543,49 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Nov 2019,C - 69 to 80,71.0,B - 81 to 91,85.0,BB104LB,100010359609.0,49 Waddington Avenue,0.4845 +5981,183305,50 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Feb 2026,D - 55 to 68,68.0,B - 81 to 91,86.0,BB104LB,100010359610.0,"50, Waddington Avenue",0.4845 +6022,76854,51 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Aug 2009,D - 55 to 68,63.0,C - 69 to 80,69.0,BB104LB,100010359611.0,"51, Waddington Avenue",0.4845 +6114,324544,53 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,18 Nov 2019,C - 69 to 80,70.0,B - 81 to 91,85.0,BB104LB,100010359613.0,"53, Waddington Avenue",0.4845 +6393,125267,59 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,27 Sep 2021,D - 55 to 68,62.0,B - 81 to 91,82.0,BB104LB,100010359619.0,59 Waddington Avenue,0.4845 +6548,118273,62 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2011,D - 55 to 68,65.0,C - 69 to 80,70.0,BB104LB,100010359622.0,"62, Waddington Avenue",0.4845 +6641,324388,64 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2019,D - 55 to 68,64.0,B - 81 to 91,85.0,BB104LB,100010359624.0,"64, Waddington Avenue",0.4845 +6744,230645,66 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,14 Jun 2017,D - 55 to 68,64.0,B - 81 to 91,86.0,BB104LB,100010359626.0,"66, Waddington Avenue",0.4845 +7040,222683,72 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,04 Mar 2014,D - 55 to 68,59.0,B - 81 to 91,87.0,BB104LB,100010359632.0,"72, Waddington Avenue",0.4845 +7242,324546,76 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Nov 2019,D - 55 to 68,67.0,B - 81 to 91,86.0,BB104LB,100010359636.0,"76, Waddington Avenue",0.4845 +7339,125012,78 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,14 Nov 2011,D - 55 to 68,60.0,D - 55 to 68,66.0,BB104LB,100010359638.0,78 Waddington Avenue,0.4845 +7631,231158,84 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,20 Jan 2015,D - 55 to 68,57.0,B - 81 to 91,84.0,BB104LB,100010359644.0,"84, Waddington Avenue",0.4845 +7738,323688,86 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Top,Domestic EPC Required,EPC Present,17 Oct 2019,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104LB,100010359646.0,"86, Waddington Avenue",0.4845 +7850,116216,88 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Bottom,Domestic EPC Required,EPC Present,29 Jul 2011,D - 55 to 68,64.0,C - 69 to 80,73.0,BB104LB,100010359648.0,"88, Waddington Avenue",0.4845 +7950,323689,90 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Bottom,Domestic EPC Required,EPC Present,17 Oct 2019,D - 55 to 68,68.0,C - 69 to 80,76.0,BB104LB,100010359650.0,"90, Waddington Avenue",0.4845 +8045,89224,92 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Top,Domestic EPC Required,EPC Present,30 Mar 2023,C - 69 to 80,75.0,C - 69 to 80,75.0,BB104LB,100010359652.0,92 Waddington Avenue,0.4845 +3597,221608,15 Bridge Street Padiham Lancashire BB12 8LA,,, BB12 8LA,House: End Terrace,Domestic EPC Required,EPC Present,07 Jan 2014,D - 55 to 68,55.0,B - 81 to 91,85.0,BB128LA,100010329940.0,"15, Bridge Street, Padiham",0.6185 +3696,199318,17 Bridge Street Padiham Lancashire BB12 8LA,,, BB12 8LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Mar 2013,D - 55 to 68,56.0,B - 81 to 91,85.0,BB128LA,100010329942.0,"17, Bridge Street, Padiham",0.6185 +3801,193900,19 Bridge Street Padiham Lancashire BB12 8LA,,, BB12 8LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Dec 2012,D - 55 to 68,61.0,B - 81 to 91,88.0,BB128LA,100010329944.0,"19, Bridge Street, Padiham",0.6185 +4004,94918,23 Bridge Street Padiham Lancashire BB12 8LA,,, BB12 8LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Apr 2010,D - 55 to 68,58.0,D - 55 to 68,67.0,BB128LA,100010329948.0,"23, Bridge Street, Padiham",0.6185 +4111,138696,25 Bridge Street Padiham Lancashire BB12 8LA,,, BB12 8LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Aug 2024,D - 55 to 68,62.0,B - 81 to 91,86.0,BB128LA,100010329950.0,"25 Bridge Street, Padiham",0.6185 +4220,253475,27 Bridge Street Padiham Lancashire BB12 8LA,,, BB12 8LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Aug 2016,D - 55 to 68,57.0,B - 81 to 91,85.0,BB128LA,100010329952.0,"27, Bridge Street, Padiham",0.6185 +4337,221630,29 Bridge Street Padiham Lancashire BB12 8LA,,, BB12 8LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,63.0,B - 81 to 91,88.0,BB128LA,100010329954.0,"29, Bridge Street, Padiham",0.6185 +4577,362380,33 Bridge Street Padiham Lancashire BB12 8LA,,, BB12 8LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB128LA,100010329958.0,"33 Bridge Street, Padiham",0.6185 +4692,362388,35 Bridge Street Padiham Lancashire BB12 8LA,,, BB12 8LA,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,D - 55 to 68,59.0,B - 81 to 91,86.0,BB128LA,100010329960.0,"35 Bridge Street, Padiham",0.6185 +3600,295077,1 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,28 Sep 2017,C - 69 to 80,69.0,B - 81 to 91,88.0,BB127BT,100010335882.0,"1, Coronation Avenue, Padiham",0.6268 +3697,236527,3 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,29 May 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127BT,100010335884.0,"3, Coronation Avenue, Padiham",0.6268 +3798,245829,5 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,13 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127BT,100010335886.0,"5, Coronation Avenue, Padiham",0.6268 +3852,245849,6 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Oct 2024,B - 81 to 91,88.0,B - 81 to 91,91.0,BB127BT,100010335887.0,"6 Coronation Avenue, Padiham",0.6268 +3899,252141,7 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2015,C - 69 to 80,69.0,B - 81 to 91,88.0,BB127BT,100010335888.0,"7, Coronation Avenue, Padiham",0.6268 +3951,89432,8 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2017,C - 69 to 80,75.0,B - 81 to 91,85.0,BB127BT,100010335889.0,"8, Coronation Avenue, Padiham",0.6268 +4003,245827,9 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: End Terr,Domestic EPC Required,EPC Present,10 Nov 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB127BT,100010335890.0,"9, Coronation Avenue, Padiham",0.6268 +4110,221638,11 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Oct 2024,B - 81 to 91,88.0,B - 81 to 91,91.0,BB127BT,100010335892.0,"11 Coronation Avenue, Padiham",0.6293 +4219,252135,13 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,89.0,BB127BT,100010335894.0,"13, Coronation Avenue, Padiham",0.6293 +4282,247412,14 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Oct 2024,B - 81 to 91,88.0,B - 81 to 91,91.0,BB127BT,100010335895.0,"14 Coronation Avenue, Padiham",0.6293 +4336,190586,15 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Jun 2024,C - 69 to 80,77.0,B - 81 to 91,86.0,BB127BT,100010335896.0,"15 Coronation Avenue, Padiham",0.6293 +4402,118998,16 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Oct 2024,B - 81 to 91,87.0,B - 81 to 91,90.0,BB127BT,100010335897.0,"16 Coronation Avenue, Padiham",0.6293 +4456,245830,17 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Oct 2024,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BT,100010335898.0,"17 Coronation Avenue, Padiham",0.6293 +4576,245828,19 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,91.0,BB127BT,100010335900.0,"19, Coronation Avenue, Padiham",0.6293 +4691,250531,21 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Jun 2016,A - 92 Plus,92.0,A - 92 Plus,95.0,BB127BT,100010335902.0,"21, Coronation Avenue, Padiham",0.6293 +4793,245848,23 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: End Terr,Domestic EPC Required,EPC Present,14 Oct 2024,C - 69 to 80,69.0,B - 81 to 91,88.0,BB127BT,100010335904.0,"23 Coronation Avenue, Padiham",0.6293 +4933,245742,26 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,06 Jan 2016,C - 69 to 80,69.0,B - 81 to 91,86.0,BB127BT,100010335907.0,"26, Coronation Avenue, Padiham",0.6293 +4982,245826,27 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,87.0,BB127BT,100010335908.0,"27, Coronation Avenue, Padiham",0.6293 +5032,136628,28 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,20 Oct 2024,B - 81 to 91,84.0,B - 81 to 91,88.0,BB127BT,100010335909.0,"28 Coronation Avenue, Padiham",0.6293 +5454,252140,36 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,24 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,89.0,BB127BT,100010335917.0,"36, Coronation Avenue, Padiham",0.6293 +5867,222848,44 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,13 Mar 2014,D - 55 to 68,65.0,B - 81 to 91,87.0,BB127BT,100010335921.0,"44, Coronation Avenue, Padiham",0.6293 +6051,252144,48 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,09 Sep 2014,E - 39 to 54,39.0,B - 81 to 91,87.0,BB127BT,100010335923.0,"48, Coronation Avenue, Padiham",0.6293 +6147,105383,50 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,05 Sep 2024,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BT,100010335924.0,"50 Coronation Avenue, Padiham",0.6293 +6240,188281,52 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,20 Oct 2024,B - 81 to 91,84.0,B - 81 to 91,88.0,BB127BT,100010335925.0,"52 Coronation Avenue, Padiham",0.6293 +6423,90061,56 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,20 Oct 2024,B - 81 to 91,81.0,B - 81 to 91,86.0,BB127BT,100010335927.0,"56 Coronation Avenue, Padiham",0.6293 +6526,100121,58 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,20 Oct 2024,C - 69 to 80,70.0,B - 81 to 91,87.0,BB127BT,100010335928.0,"58 Coronation Avenue, Padiham",0.6293 +6623,108805,60 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,20 Oct 2024,C - 69 to 80,70.0,B - 81 to 91,87.0,BB127BT,100010335929.0,"60 Coronation Avenue, Padiham",0.6293 +6725,245831,62 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,24 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,88.0,BB127BT,100010335930.0,"62, Coronation Avenue, Padiham",0.6293 +6825,94984,64 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,24 Jun 2024,B - 81 to 91,81.0,B - 81 to 91,89.0,BB127BT,100010335931.0,"64 Coronation Avenue, Padiham",0.6293 +12689,305126,40 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,05 Sep 2024,B - 81 to 91,85.0,B - 81 to 91,89.0,BB127BT,100010335919.0,"40 Coronation Avenue, Padiham",0.6293 +3612,362317,7 Tedder Avenue Burnley Lancashire BB12 6DL,,, BB12 6DL,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Apr 2024,D - 55 to 68,61.0,B - 81 to 91,83.0,BB126DL,100010357884.0,7 Tedder Avenue,0.4596 +3763,290411,10 Tedder Avenue Burnley Lancashire BB12 6DL,,, BB12 6DL,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Aug 2017,D - 55 to 68,56.0,B - 81 to 91,86.0,BB126DL,100010357887.0,"10, Tedder Avenue",0.4652 +4123,250596,17 Tedder Avenue Burnley Lancashire BB12 6DL,,, BB12 6DL,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Jun 2016,D - 55 to 68,56.0,C - 69 to 80,77.0,BB126DL,100010357894.0,"17, Tedder Avenue",0.4652 +4235,362359,19 Tedder Avenue Burnley Lancashire BB12 6DL,,, BB12 6DL,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126DL,100010357896.0,19 Tedder Avenue,0.4652 +4294,89234,20 Tedder Avenue Burnley Lancashire BB12 6DL,,, BB12 6DL,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Aug 2021,D - 55 to 68,66.0,B - 81 to 91,86.0,BB126DL,100010357897.0,20 TEDDER AVENUE,0.4652 +3646,248193,5 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,71.0,B - 81 to 91,88.0,BB104QA,100010332964.0,"5, Carholme Avenue",0.4705 +4686,248194,24 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,73.0,B - 81 to 91,90.0,BB104QA,100010332983.0,"24, Carholme Avenue",0.4754 +4974,40882,30 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jun 2009,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QA,100010332989.0,"30, Carholme Avenue",0.4754 +5286,362425,36 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB104QA,100010332995.0,36 Carholme Avenue,0.4754 +5400,362432,38 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: End Terrace,Domestic EPC Required,EPC Present,01 Sep 2022,C - 69 to 80,74.0,B - 81 to 91,89.0,BB104QA,100010332997.0,38 Carholme Avenue,0.4754 +5662,248627,43 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,71.0,B - 81 to 91,88.0,BB104QA,100010333001.0,"43, Carholme Avenue",0.4754 +5718,362453,44 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB104QA,100010333002.0,44 Carholme Avenue,0.4754 +5813,248676,46 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Apr 2016,C - 69 to 80,69.0,B - 81 to 91,88.0,BB104QA,100010333004.0,"46, Carholme Avenue",0.4754 +5864,250036,47 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Apr 2016,C - 69 to 80,70.0,B - 81 to 91,88.0,BB104QA,100010333005.0,"47, Carholme Avenue",0.4754 +6050,248677,51 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Apr 2016,C - 69 to 80,70.0,B - 81 to 91,88.0,BB104QA,100010333009.0,"51, Carholme Avenue",0.4754 +6324,248644,57 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,74.0,B - 81 to 91,91.0,BB104QA,100010333012.0,"57, Carholme Avenue",0.4754 +6420,248645,59 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: End Terrace,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104QA,100010333013.0,"59, Carholme Avenue",0.4754 +6569,248678,62 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: End Terrace,Domestic EPC Required,EPC Present,12 Dec 2025,C - 69 to 80,69.0,C - 69 to 80,77.0,BB104QA,,, +6720,248646,65 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,73.0,B - 81 to 91,90.0,BB104QA,100010333017.0,"65, Carholme Avenue",0.4754 +6769,248647,66 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,74.0,B - 81 to 91,89.0,BB104QA,,, +3664,362322,365 Cog Lane Burnley Lancashire BB11 5HR,,, BB11 5HR,House: End Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB115HR,100010335060.0,365 Cog Lane,0.4401 +3762,224901,367 Cog Lane Burnley Lancashire BB11 5HR,,, BB11 5HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Nov 2025,C - 69 to 80,70.0,B - 81 to 91,82.0,BB115HR,100010335062.0,367 Cog Lane,0.4401 +3860,359226,369 Cog Lane Burnley Lancashire BB11 5HR,,, BB11 5HR,House: End Terrace,Domestic EPC Required,EPC Present,04 Mar 2023,D - 55 to 68,67.0,B - 81 to 91,85.0,BB115HR,100010335064.0,369 Cog Lane,0.4401 +4179,362354,375 Cog Lane Burnley Lancashire BB11 5HR,,, BB11 5HR,House: End Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB115HR,100010335070.0,375 Cog Lane,0.4401 +4415,362371,379 Cog Lane Burnley Lancashire BB11 5HR,,, BB11 5HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115HR,100010335074.0,379 Cog Lane,0.4401 +4531,40858,381 Cog Lane Burnley Lancashire BB11 5HR,,, BB11 5HR,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2008,D - 55 to 68,57.0,C - 69 to 80,73.0,BB115HR,100010335076.0,"381, Cog Lane",0.4401 +4651,362385,383 Cog Lane Burnley Lancashire BB11 5HR,,, BB11 5HR,House: End Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB115HR,100010335078.0,383 Cog Lane,0.4401 +4857,233912,387 Cog Lane Burnley Lancashire BB11 5HR,,, BB11 5HR,House: End Terrace,Domestic EPC Required,EPC Present,06 Dec 2025,D - 55 to 68,67.0,C - 69 to 80,78.0,BB115HR,100010335082.0,387 Cog Lane,0.4401 +3687,202633,121 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2025,D - 55 to 68,66.0,C - 69 to 80,74.0,BB115LE,,, +3784,362332,123 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115LE,100010338970.0,123 Florence Avenue,0.4801 +4097,362347,129 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115LE,100010338976.0,129 Florence Avenue,0.4801 +4208,96029,131 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Feb 2011,D - 55 to 68,66.0,C - 69 to 80,74.0,BB115LE,100010338978.0,"131, Florence Avenue",0.4801 +4561,234528,137 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,07 Dec 2025,C - 69 to 80,69.0,B - 81 to 91,82.0,BB115LE,100010338984.0,137 Florence Avenue,0.4801 +4677,111308,139 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Nov 2025,D - 55 to 68,65.0,C - 69 to 80,74.0,BB115LE,100010338986.0,139 Florence Avenue,0.4801 +4836,105433,142 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Jan 2011,C - 69 to 80,71.0,C - 69 to 80,75.0,BB115LE,100010338989.0,142 Florence Avenue,0.4801 +4880,111309,143 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB115LE,100010338990.0,143 Florence Avenue,0.4801 +4920,89803,144 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Jul 2025,C - 69 to 80,74.0,B - 81 to 91,81.0,BB115LE,100010338991.0,144 Florence Avenue,0.4801 +4967,40880,145 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,03 Oct 2023,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LE,100010338992.0,145 Florence Avenue,0.4801 +5012,111311,146 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,26 Aug 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115LE,100010338993.0,146 Florence Avenue,0.4801 +5065,289902,147 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Jul 2017,C - 69 to 80,69.0,B - 81 to 91,85.0,BB115LE,100010338994.0,"147, Florence Avenue",0.4801 +5111,362410,148 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115LE,100010338995.0,148 Florence Avenue,0.4801 +5169,99132,149 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Feb 2011,D - 55 to 68,68.0,C - 69 to 80,75.0,BB115LE,100010338996.0,"149, Florence Avenue",0.4801 +5225,111312,150 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Feb 2011,D - 55 to 68,68.0,C - 69 to 80,75.0,BB115LE,100010338997.0,"150, Florence Avenue",0.4801 +5336,111314,152 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,31 Jul 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB115LE,100010338999.0,152 Florence Avenue,0.4801 +5440,340129,154 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Aug 2021,C - 69 to 80,70.0,B - 81 to 91,89.0,BB115LE,100010339000.0,154 Florence Avenue,0.4801 +5946,95863,164 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Jun 2010,D - 55 to 68,66.0,C - 69 to 80,74.0,BB115LE,100010339005.0,"164, Florence Avenue",0.4801 +6037,96027,166 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Dec 2010,E - 39 to 54,54.0,C - 69 to 80,70.0,BB115LE,100010339006.0,"166, Florence Avenue",0.4801 +6215,111316,170 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,09 Feb 2011,D - 55 to 68,63.0,C - 69 to 80,72.0,BB115LE,100010339008.0,"170, Florence Avenue",0.4801 +6312,111317,172 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jul 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115LE,100010339009.0,172 Florence Avenue,0.4801 +6408,95847,174 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LE,100010339010.0,174 Florence Avenue,0.4801 +6506,103479,176 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,10 Mar 2011,D - 55 to 68,66.0,C - 69 to 80,76.0,BB115LE,100010339011.0,"176, Florence Avenue",0.4801 +6607,111318,178 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,20 Oct 2017,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115LE,100010339012.0,"178, Florence Avenue",0.4801 +6708,111319,180 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,65.0,C - 69 to 80,72.0,BB115LE,100010339013.0,"180, Florence Avenue",0.4801 +6808,111320,182 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Sep 2025,C - 69 to 80,72.0,C - 69 to 80,80.0,BB115LE,100010339014.0,182 Florence Avenue,0.4801 +6905,111321,184 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB115LE,100010339015.0,184 Florence Avenue,0.4801 +7104,362566,188 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115LE,100010339017.0,188 Florence Avenue,0.4801 +7305,220111,192 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,20 Nov 2013,D - 55 to 68,67.0,B - 81 to 91,84.0,BB115LE,100010339019.0,"192, Florence Avenue",0.4801 +9702,69669,127 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB115LE,100010338974.0,127 Florence Avenue,0.4801 +3721,40823,7 Alma Street Padiham Lancashire BB12 8LF,,, BB12 8LF,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Oct 2008,D - 55 to 68,64.0,C - 69 to 80,70.0,BB128LF,100010327233.0,"7, Alma Street, Padiham",0.6085 +3823,250442,9 Alma Street Padiham Lancashire BB12 8LF,,, BB12 8LF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,01 Jun 2016,D - 55 to 68,65.0,B - 81 to 91,86.0,BB128LF,100010327235.0,"9, Alma Street, Padiham",0.6085 +3918,110763,11 Alma Street Padiham Lancashire BB12 8LF,,, BB12 8LF,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Dec 2010,D - 55 to 68,56.0,C - 69 to 80,73.0,BB128LF,100010327237.0,"11, Alma Street, Padiham",0.6121 +4031,110780,13 Alma Street Padiham Lancashire BB12 8LF,,, BB12 8LF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,15 Feb 2011,D - 55 to 68,65.0,C - 69 to 80,73.0,BB128LF,100010327239.0,"13, Alma Street, Padiham",0.6121 +4138,359931,15 Alma Street Padiham Lancashire BB12 8LF,,, BB12 8LF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,12 May 2023,D - 55 to 68,66.0,B - 81 to 91,87.0,BB128LF,100010327241.0,"15 Alma Street, Padiham",0.6121 +4246,110799,17 Alma Street Padiham Lancashire BB12 8LF,,, BB12 8LF,Bungalow: End Terr,Domestic EPC Required,EPC Present,25 Nov 2010,D - 55 to 68,62.0,C - 69 to 80,73.0,BB128LF,100010327243.0,"17, Alma Street, Padiham",0.6121 +4363,110814,19 Alma Street Padiham Lancashire BB12 8LF,,, BB12 8LF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,25 Nov 2010,D - 55 to 68,56.0,C - 69 to 80,72.0,BB128LF,100010327245.0,"19, Alma Street, Padiham",0.6121 +4483,362376,21 Alma Street Padiham Lancashire BB12 8LF,,, BB12 8LF,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128LF,100010327247.0,"21 Alma Street, Padiham",0.6121 +3730,124144,113 Lowerhouse Lane Burnley Lancashire BB12 6JA,,, BB12 6JA,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2011,D - 55 to 68,65.0,C - 69 to 80,70.0,BB126JA,100010347130.0,"113, Lowerhouse Lane",0.4801 +3738,40824,34 Hargher Street Burnley Lancashire BB11 4EG,,, BB11 4EG,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Dec 2023,D - 55 to 68,64.0,B - 81 to 91,84.0,BB114EG,100010341154.0,34 Hargher Street,0.4705 +3769,222014,8 Coniston Avenue Padiham Lancashire BB12 8PE,,, BB12 8PE,House: End Terrace,Domestic EPC Required,EPC Present,20 Jan 2014,D - 55 to 68,66.0,B - 81 to 91,88.0,BB128PE,100010335698.0,"8, Coniston Avenue, Padiham",0.6214 +4075,247943,14 Coniston Avenue Padiham Lancashire BB12 8PE,,, BB12 8PE,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Mar 2016,D - 55 to 68,66.0,B - 81 to 91,85.0,BB128PE,100010335704.0,"14, Coniston Avenue, Padiham",0.6242 +511,362136,9 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: End Terrace,Domestic EPC Required,EPC Present,21 Nov 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB127BX,100010326450.0,"9 Abingdon Road, Padiham",0.6154 +611,362143,11 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Nov 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB127BX,100010326452.0,"11 Abingdon Road, Padiham",0.6185 +860,362152,16 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: End Terrace,Domestic EPC Required,EPC Present,29 Oct 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB127BX,100010326457.0,"16 Abingdon Road, Padiham",0.6185 +959,362159,18 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: End Terrace,Domestic EPC Required,EPC Present,29 Oct 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB127BX,100010326458.0,"18 Abingdon Road, Padiham",0.6185 +1069,362162,20 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127BX,100010326459.0,"20 Abingdon Road, Padiham",0.6185 +1180,362167,22 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127BX,100010326460.0,"22 Abingdon Road, Padiham",0.6185 +9534,362713,6 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Oct 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB127BX,100010326448.0,"6 Abingdon Road, Padiham",0.6154 +664,295082,12 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Oct 2017,C - 69 to 80,69.0,B - 81 to 91,86.0,BB127BX,100010326453.0,"12, Abingdon Road, Padiham",0.6185 +709,250073,13 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 May 2016,C - 69 to 80,70.0,B - 81 to 91,88.0,BB127BX,100010326454.0,"13, Abingdon Road, Padiham",0.6185 +810,98123,15 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,77.0,BB127BX,100010326456.0,"15 Abingdon Road, Padiham",0.6185 +1289,40707,24 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: End Terrace,Domestic EPC Required,EPC Present,16 Jan 2024,C - 69 to 80,70.0,B - 81 to 91,84.0,BB127BX,100010326461.0,"24 Abingdon Road, Padiham",0.6185 +9252,101651,1 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: End Terrace,Domestic EPC Required,EPC Present,13 Oct 2010,D - 55 to 68,67.0,C - 69 to 80,71.0,BB127BX,100010326443.0,"1, Abingdon Road, Padiham",0.6154 +9311,230221,2 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: End Terrace,Domestic EPC Required,EPC Present,07 Dec 2025,D - 55 to 68,59.0,C - 69 to 80,71.0,BB127BX,100010326444.0,"2 Abingdon Road, Padiham",0.6154 +9369,110661,3 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Mar 2011,D - 55 to 68,60.0,C - 69 to 80,74.0,BB127BX,100010326445.0,"3, Abingdon Road, Padiham",0.6154 +9481,105312,5 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: End Terrace,Domestic EPC Required,EPC Present,30 Oct 2025,E - 39 to 54,50.0,D - 55 to 68,66.0,BB127BX,100010326447.0,"5 Abingdon Road, Padiham",0.6154 +905,362156,8 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,01 Nov 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115RT,100010357446.0,8 Swallow Park,0.4536 +608,108797,2 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,07 Jun 2021,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115RT,100010357440.0,2 SWALLOW PARK,0.4536 +753,241668,5 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,77.0,BB115RT,100010357443.0,5 Swallow Park,0.4536 +957,108704,9 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,15 Mar 2011,D - 55 to 68,64.0,C - 69 to 80,70.0,BB115RT,100010357447.0,"9, Swallow Park",0.4536 +1065,250065,11 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,10 May 2016,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115RT,100010357449.0,"11, Swallow Park",0.4596 +1124,295915,12 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,21 Feb 2018,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115RT,100010357450.0,"12, Swallow Park",0.4596 +1175,266992,13 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,05 Oct 2016,D - 55 to 68,68.0,B - 81 to 91,83.0,BB115RT,100010357451.0,"13, Swallow Park",0.4596 +1284,40706,15 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,19 May 2009,D - 55 to 68,67.0,C - 69 to 80,70.0,BB115RT,100010357453.0,"15, Swallow Park",0.4596 +1342,180072,16 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,23 May 2012,C - 69 to 80,69.0,B - 81 to 91,88.0,BB115RT,100010357454.0,"16, Swallow Park",0.4596 +1391,296643,17 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,14 Mar 2018,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115RT,100010357455.0,"17, Swallow Park",0.4596 +1557,118276,20 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,83.0,BB115RT,100010357458.0,20 Swallow Park,0.4596 +1662,362192,22 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,06 Sep 2022,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115RT,100010357460.0,22 Swallow Park,0.4596 +11533,229677,24 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: End Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,D - 55 to 68,67.0,C - 69 to 80,80.0,BB115RT,100010357462.0,24 Swallow Park,0.4596 +962,375592,1 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,74.0,C - 69 to 80,76.0,BB102BS,10003758756.0,1 Newground Court,0.3333 +1014,375593,2 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,76.0,C - 69 to 80,77.0,BB102BS,10003758755.0,2 Newground Court,0.3333 +1071,325078,3 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,09 Dec 2019,C - 69 to 80,69.0,C - 69 to 80,69.0,BB102BS,10003758741.0,"3, Newground Court",0.3333 +1126,325077,4 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,09 Dec 2019,C - 69 to 80,69.0,C - 69 to 80,72.0,BB102BS,10003758740.0,"4, Newground Court",0.3333 +1183,325076,5 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,09 Dec 2019,D - 55 to 68,68.0,C - 69 to 80,71.0,BB102BS,10003758739.0,"5, Newground Court",0.3333 +1236,325075,6 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,09 Dec 2019,D - 55 to 68,62.0,C - 69 to 80,70.0,BB102BS,10003758738.0,"6, Newground Court",0.3333 +1292,40708,7 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,28 Oct 2008,C - 69 to 80,69.0,C - 69 to 80,75.0,BB102BS,10003758737.0,"7, Newground Court",0.3333 +1345,76958,8 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,17 Sep 2009,C - 69 to 80,76.0,B - 81 to 91,83.0,BB102BS,10003758736.0,"8, Newground Court",0.3333 +1399,188288,9 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,19 Sep 2012,C - 69 to 80,69.0,C - 69 to 80,75.0,BB102BS,10003758735.0,"9, Newground Court",0.3333 +1452,221660,10 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,79.0,C - 69 to 80,80.0,BB102BS,10003758730.0,"10, Newground Court",0.3383 +1507,40720,11 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,07 Sep 2021,C - 69 to 80,76.0,C - 69 to 80,78.0,BB102BS,10003758731.0,11 Newground Court,0.3383 +1562,90250,12 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,15 Oct 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB102BS,10003758732.0,12 Newground Court,0.3383 +1612,252239,13 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,02 Jul 2016,C - 69 to 80,69.0,C - 69 to 80,76.0,BB102BS,10003758733.0,"13, Newground Court",0.3383 +1666,250518,14 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2026,C - 69 to 80,71.0,C - 69 to 80,74.0,BB102BS,10003758734.0,14 Newground Court,0.3383 +1716,69663,15 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,27 Jul 2009,C - 69 to 80,76.0,B - 81 to 91,81.0,BB102BS,10003758749.0,"15, Newground Court",0.3383 +1773,325074,16 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,30 Jan 2026,C - 69 to 80,76.0,C - 69 to 80,76.0,BB102BS,10003758747.0,16 Newground Court,0.3383 +1826,234695,17 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,21 Apr 2015,C - 69 to 80,72.0,C - 69 to 80,75.0,BB102BS,10003758745.0,"17, Newground Court",0.3383 +1883,325283,18 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,69.0,C - 69 to 80,71.0,BB102BS,10003758743.0,"18, Newground Court",0.3383 +1933,192370,19 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,03 Oct 2021,C - 69 to 80,74.0,C - 69 to 80,75.0,BB102BS,10003758729.0,19 Newground Court,0.3383 +1985,325073,20 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,09 Dec 2019,C - 69 to 80,70.0,C - 69 to 80,71.0,BB102BS,10003758754.0,"20, Newground Court",0.3383 +2036,209266,21 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,07 Aug 2013,C - 69 to 80,69.0,C - 69 to 80,76.0,BB102BS,10003758753.0,"21, Newground Court",0.3383 +2084,362215,22 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,78.0,C - 69 to 80,79.0,BB102BS,10003758752.0,22 Newground Court,0.3383 +2132,295086,23 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,09 Aug 2017,C - 69 to 80,78.0,C - 69 to 80,78.0,BB102BS,10003758751.0,"23, Newground Court",0.3383 +2186,325072,24 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,09 Dec 2019,C - 69 to 80,71.0,C - 69 to 80,71.0,BB102BS,10003758750.0,"24, Newground Court",0.3383 +2232,325071,25 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,30 Jan 2026,C - 69 to 80,71.0,C - 69 to 80,74.0,BB102BS,10003758748.0,25 Newground Court,0.3383 +2280,204083,26 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,14 May 2013,C - 69 to 80,73.0,C - 69 to 80,77.0,BB102BS,10003758746.0,"26, Newground Court",0.3383 +2374,40759,28 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,01 Nov 2025,D - 55 to 68,67.0,C - 69 to 80,75.0,BB102BS,10003758742.0,28 Newground Court,0.3383 +12684,325070,27 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,09 Dec 2019,C - 69 to 80,71.0,C - 69 to 80,71.0,BB102BS,10003758744.0,"27, Newground Court",0.3383 +1268,362174,9 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Cluster Block,Domestic EPC Required,EPC Present,25 Oct 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB115RR,10003780674.0,9 Sandpiper Square,0.4754 +841,225316,1 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: End Terrace,Domestic EPC Required,EPC Present,20 May 2014,D - 55 to 68,68.0,B - 81 to 91,86.0,BB115RR,10003780668.0,"1, Sandpiper Square",0.4754 +891,40679,2 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Nov 2025,C - 69 to 80,73.0,B - 81 to 91,85.0,BB115RR,10003780669.0,2 Sandpiper Square,0.4754 +940,40683,3 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2025,C - 69 to 80,76.0,B - 81 to 91,88.0,BB115RR,10003780670.0,3 Sandpiper Square,0.4754 +994,222011,4 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: End Terrace,Domestic EPC Required,EPC Present,16 Jan 2014,D - 55 to 68,66.0,B - 81 to 91,83.0,BB115RR,10003780671.0,"4, Sandpiper Square",0.4754 +1053,105261,5 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Cluster Block,Domestic EPC Required,EPC Present,06 Jan 2011,C - 69 to 80,70.0,C - 69 to 80,73.0,BB115RR,10003780672.0,"5, Sandpiper Square",0.4754 +1105,362164,6 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Cluster Block,Domestic EPC Required,EPC Present,01 Sep 2022,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115RR,10003780673.0,6 Sandpiper Square,0.4754 +1377,210872,11 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: End Terrace,Domestic EPC Required,EPC Present,14 Dec 2025,C - 69 to 80,71.0,B - 81 to 91,84.0,BB115RR,10003780676.0,11 Sandpiper Square,0.4801 +1431,89600,12 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,86.0,BB115RR,10003780677.0,12 Sandpiper Square,0.4801 +1482,40718,13 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: End Terrace,Domestic EPC Required,EPC Present,14 Dec 2025,D - 55 to 68,64.0,C - 69 to 80,77.0,BB115RR,10003780678.0,13 Sandpiper Square,0.4801 +1542,40723,14 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Cluster Block,Domestic EPC Required,EPC Present,12 Jan 2026,C - 69 to 80,74.0,C - 69 to 80,86.0,BB115RR,10003780679.0,14 Sandpiper Square,0.4801 +1589,104053,15 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Cluster Block,Domestic EPC Required,EPC Present,18 Nov 2010,D - 55 to 68,57.0,C - 69 to 80,71.0,BB115RR,10003780680.0,"15, Sandpiper Square",0.4801 +1696,108798,17 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Cluster Block,Domestic EPC Required,EPC Present,16 Mar 2011,C - 69 to 80,69.0,C - 69 to 80,71.0,BB115RR,10003780681.0,"17, Sandpiper Square",0.4801 +1812,362202,19 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Cluster Block,Domestic EPC Required,EPC Present,11 Oct 2022,C - 69 to 80,69.0,B - 81 to 91,83.0,BB115RR,10003780682.0,19 Sandpiper Square,0.4801 +1395,362181,131 Thursby Road Burnley Lancashire BB10 3EX,,, BB10 3EX,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2023,C - 69 to 80,71.0,A - 92 Plus,84.0,BB103EX,100010358478.0,131 Thursby Road,0.4652 +7922,326437,82 Thursby Road Burnley Lancashire BB10 3EX,,, BB10 3EX,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Feb 2020,C - 69 to 80,72.0,B - 81 to 91,87.0,BB103EX,100010358457.0,"82, Thursby Road",0.4596 +1909,362208,85 Ighten Road Burnley Lancashire BB12 0HP,,, BB12 0HP,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Nov 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB120HP,10003758372.0,85 Ighten Road,0.4536 +2039,375595,8 Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Dec 2023,D - 55 to 68,65.0,B - 81 to 91,86.0,BB127DZ,100010327009.0,"8 Albion Street, Padiham",0.6154 +12467,298559,1 Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Bottom,Domestic EPC Required,EPC Present,17 May 2018,B - 81 to 91,84.0,B - 81 to 91,84.0,BB127DZ,10094110324.0,"1, Albion Street, Padiham",0.6154 +12468,298560,3 Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Top,Domestic EPC Required,EPC Present,17 May 2018,B - 81 to 91,84.0,B - 81 to 91,84.0,BB127DZ,10094110325.0,"3, Albion Street, Padiham",0.6154 +12469,298561,5 Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Bottom,Domestic EPC Required,EPC Present,17 May 2018,B - 81 to 91,84.0,B - 81 to 91,84.0,BB127DZ,10094110326.0,"5, Albion Street, Padiham",0.6154 +12470,298562,7 Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Top,Domestic EPC Required,EPC Present,17 May 2018,B - 81 to 91,83.0,B - 81 to 91,83.0,BB127DZ,10094110327.0,"7, Albion Street, Padiham",0.6154 +12471,298563,9 Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Bottom,Domestic EPC Required,EPC Present,17 May 2018,B - 81 to 91,83.0,B - 81 to 91,83.0,BB127DZ,10094110328.0,"9, Albion Street, Padiham",0.6154 +12472,375596,11 Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Top,Domestic EPC Required,EPC Present,17 May 2018,B - 81 to 91,84.0,B - 81 to 91,84.0,BB127DZ,10094110329.0,"11, Albion Street, Padiham",0.6185 +12473,298565,13 Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Bottom,Domestic EPC Required,EPC Present,17 May 2018,B - 81 to 91,84.0,B - 81 to 91,84.0,BB127DZ,10094110330.0,"13, Albion Street, Padiham",0.6185 +12474,298566,15 Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Top,Domestic EPC Required,EPC Present,17 May 2018,B - 81 to 91,84.0,B - 81 to 91,84.0,BB127DZ,10094110331.0,"15, Albion Street, Padiham",0.6185 +13336,340716,Flat 1 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Bottom,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,78.0,C - 69 to 80,78.0,BB127DZ,10094111949.0,"Flat 1, Perseverance Court, Albion Street",0.6475 +13337,340717,Flat 2 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Bottom,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,78.0,C - 69 to 80,78.0,BB127DZ,10094111950.0,"Flat 2, Perseverance Court, Albion Street",0.6475 +13338,340718,Flat 3 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Bottom,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,78.0,C - 69 to 80,78.0,BB127DZ,10094111951.0,"Flat 3, Perseverance Court, Albion Street",0.6475 +13339,340719,Flat 4 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Bottom,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,75.0,C - 69 to 80,75.0,BB127DZ,10094111952.0,"Flat 4, Perseverance Court, Albion Street",0.6475 +13340,340720,Flat 5 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Bottom,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,78.0,C - 69 to 80,78.0,BB127DZ,10094111953.0,"Flat 5, Perseverance Court, Albion Street",0.6475 +13341,340721,Flat 6 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Top,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,79.0,C - 69 to 80,79.0,BB127DZ,10094111954.0,"Flat 6, Perseverance Court, Albion Street",0.6475 +13342,340722,Flat 7 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Top,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,79.0,C - 69 to 80,79.0,BB127DZ,10094111955.0,"Flat 7, Perseverance Court, Albion Street",0.6475 +13343,340723,Flat 8 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Top,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,80.0,C - 69 to 80,80.0,BB127DZ,10094111956.0,"Flat 8, Perseverance Court, Albion Street",0.6475 +13344,340724,Flat 9 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Top,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,78.0,C - 69 to 80,78.0,BB127DZ,10094111957.0,"Flat 9, Perseverance Court, Albion Street",0.6475 +13345,340725,Flat 10 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Top,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,79.0,C - 69 to 80,79.0,BB127DZ,10094111958.0,"Flat 10, Perseverance Court, Albion Street",0.6493 +13351,340726,2 Albion street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,77.0,B - 81 to 91,89.0,BB127DZ,10094111974.0,2 Albion Street,0.4596 +2125,375590,4 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Dec 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115LF,100010358567.0,4 Tiber Avenue,0.4536 +1979,362213,1 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115LF,100010358564.0,1 Tiber Avenue,0.4536 +2028,110659,2 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,65.0,C - 69 to 80,74.0,BB115LF,100010358565.0,"2, Tiber Avenue",0.4536 +2179,114556,5 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115LF,100010358568.0,5 Tiber Avenue,0.4536 +2223,40753,6 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Dec 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115LF,100010358569.0,6 Tiber Avenue,0.4536 +2272,110731,7 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Aug 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115LF,100010358570.0,7 Tiber Avenue,0.4536 +2316,76946,8 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Jul 2021,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115LF,100010358571.0,8 TIBER AVENUE,0.4536 +2366,229256,9 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2025,D - 55 to 68,68.0,C - 69 to 80,75.0,BB115LF,100010358572.0,9 Tiber Avenue,0.4536 +2412,40761,10 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB115LF,100010358573.0,10 Tiber Avenue,0.4596 +2465,110767,11 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: End Terrace,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,69.0,C - 69 to 80,76.0,BB115LF,100010358574.0,11 Tiber Avenue,0.4596 +2514,110778,12 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,61.0,C - 69 to 80,71.0,BB115LF,100010358575.0,"12, Tiber Avenue",0.4596 +2567,107642,13 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115LF,100010358576.0,13 Tiber Avenue,0.4596 +2621,76921,14 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Sep 2009,D - 55 to 68,67.0,C - 69 to 80,73.0,BB115LF,100010358577.0,"14, Tiber Avenue",0.4596 +2668,191103,15 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Nov 2025,D - 55 to 68,66.0,C - 69 to 80,73.0,BB115LF,100010358578.0,15 Tiber Avenue,0.4596 +2717,238604,16 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: End Terrace,Domestic EPC Required,EPC Present,09 Jul 2015,C - 69 to 80,69.0,B - 81 to 91,83.0,BB115LF,100010358579.0,"16, Tiber Avenue",0.4596 +2864,207691,19 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Jul 2013,D - 55 to 68,67.0,B - 81 to 91,84.0,BB115LF,100010358582.0,"19, Tiber Avenue",0.4596 +2965,110833,21 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Mar 2024,D - 55 to 68,65.0,B - 81 to 91,83.0,BB115LF,100010358584.0,21 Tiber Avenue,0.4596 +3017,362277,22 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: End Terrace,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,A - 92 Plus,96.0,BB115LF,100010358585.0,22 Tiber Avenue,0.4596 +3114,362281,24 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,A - 92 Plus,96.0,BB115LF,100010358586.0,24 Tiber Avenue,0.4596 +2447,362229,18 Kiddrow Lane Burnley Lancashire BB12 6LH,,, BB12 6LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Feb 2024,D - 55 to 68,63.0,B - 81 to 91,84.0,BB126LH,100010344587.0,18 Kiddrow Lane,0.4596 +2547,362237,20 Kiddrow Lane Burnley Lancashire BB12 6LH,,, BB12 6LH,House: End Terrace,Domestic EPC Required,EPC Present,01 Sep 2022,E - 39 to 54,47.0,C - 69 to 80,79.0,BB126LH,100010344588.0,20 Kiddrow Lane,0.4596 +2474,362232,341 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jun 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB115HT,100010335036.0,341 Cog Lane,0.4401 +2580,203981,343 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Aug 2022,D - 55 to 68,56.0,C - 69 to 80,76.0,BB115HT,100010335038.0,343 Cog Lane,0.4401 +2875,111108,349 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Apr 2011,D - 55 to 68,66.0,C - 69 to 80,69.0,BB115HT,100010335044.0,"349, Cog Lane",0.4401 +2977,267333,351 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Oct 2016,D - 55 to 68,64.0,B - 81 to 91,87.0,BB115HT,100010335046.0,"351, Cog Lane",0.4401 +3072,90270,353 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Mar 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB115HT,100010335048.0,353 Cog Lane,0.4401 +3166,362288,355 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115HT,100010335050.0,355 Cog Lane,0.4401 +3261,362298,357 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB115HT,100010335052.0,357 Cog Lane,0.4401 +6589,362525,422 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB115HT,100010335100.0,422 Cog Lane,0.4401 +6883,359925,428 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB115HT,100010335106.0,428 Cog Lane,0.4401 +6985,362556,430 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB115HT,100010335108.0,430 Cog Lane,0.4401 +7560,362597,442 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB115HT,100010335120.0,442 Cog Lane,0.4401 +2946,362270,17 Dane Street Burnley Lancashire BB10 1AB,,, BB10 1AB,House: Mid-Terrace,Domestic EPC Required,No EPC Present,29 Jun 2023,,,,,BB101AB,,, +3187,362291,22 Dane Street Burnley Lancashire BB10 1AB,,, BB10 1AB,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Feb 2024,C - 69 to 80,73.0,B - 81 to 91,89.0,BB101AB,100010336899.0,22 Dane Street,0.4536 +3283,362301,8 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,27 Oct 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104AY,10003780173.0,8 Wellington Court,0.4754 +3005,322657,2 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,78.0,C - 69 to 80,79.0,BB104AY,10003780170.0,"2, Wellington Court",0.4754 +3098,234410,4 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,79.0,C - 69 to 80,80.0,BB104AY,10003780171.0,4 Wellington Court,0.4754 +3144,237127,5 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Top,Domestic EPC Required,EPC Present,09 Jun 2015,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104AY,10003780162.0,"5, Wellington Court",0.4754 +3191,181845,6 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,06 Jul 2012,B - 81 to 91,85.0,B - 81 to 91,88.0,BB104AY,10003780172.0,"6, Wellington Court",0.4754 +3334,272188,9 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Top,Domestic EPC Required,EPC Present,23 Feb 2017,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104AY,10003780164.0,"9, Wellington Court",0.4754 +3381,220114,10 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104AY,10003780174.0,10 Wellington Court,0.4801 +3434,136002,11 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Top,Domestic EPC Required,EPC Present,05 Oct 2025,C - 69 to 80,72.0,C - 69 to 80,74.0,BB104AY,10003780165.0,11 Wellington Court,0.4801 +3486,322659,12 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,75.0,C - 69 to 80,79.0,BB104AY,10003780175.0,"12, Wellington Court",0.4801 +3591,247946,14 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104AY,10003780176.0,"14, Wellington Court",0.4801 +3694,322658,16 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104AY,10003780177.0,"16, Wellington Court",0.4801 +3746,136668,17 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,77.0,C - 69 to 80,79.0,BB104AY,10003780167.0,"17, Wellington Court",0.4801 +3790,40826,18 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,26 Aug 2025,C - 69 to 80,77.0,B - 81 to 91,79.0,BB104AY,10003780178.0,18 Wellington Court,0.4801 +3845,242790,19 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Top,Domestic EPC Required,EPC Present,08 Oct 2015,C - 69 to 80,77.0,C - 69 to 80,79.0,BB104AY,10003780168.0,"19, Wellington Court",0.4801 +3892,322647,20 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,76.0,C - 69 to 80,79.0,BB104AY,10003780179.0,"20, Wellington Court",0.4801 +3946,190587,21 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Top,Domestic EPC Required,EPC Present,05 Nov 2025,C - 69 to 80,69.0,C - 69 to 80,71.0,BB104AY,10003780169.0,21 Wellington Court,0.4801 +3997,230657,22 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104AY,10003780180.0,22 Wellington Court,0.4801 +13130,331072,13 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Top,Domestic EPC Required,EPC Present,14 Dec 2009,C - 69 to 80,78.0,B - 81 to 91,84.0,BB104AY,10003780166.0,"13, Wellington Court",0.4801 +3435,362310,14 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Nov 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB115RX,10003758757.0,14 Nightingale Crescent,0.4961 +2954,40786,4 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,76.0,B - 81 to 91,82.0,BB115RX,10003758764.0,4 Nightingale Crescent,0.4925 +3007,362276,5 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,85.0,BB115RX,10003758763.0,5 Nightingale Crescent,0.4925 +3193,76846,9 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Jun 2023,C - 69 to 80,74.0,B - 81 to 91,86.0,BB115RX,10003758759.0,9 Nightingale Crescent,0.4925 +3239,362296,10 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115RX,10003758768.0,10 Nightingale Crescent,0.4961 +3286,362302,11 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115RX,10003758769.0,11 Nightingale Crescent,0.4961 +3335,104048,12 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Nov 2010,E - 39 to 54,49.0,C - 69 to 80,74.0,BB115RX,10003758770.0,"12, Nightingale Crescent",0.4961 +3383,104050,13 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Aug 2024,C - 69 to 80,75.0,B - 81 to 91,90.0,BB115RX,10003758767.0,13 Nightingale Crescent,0.4961 +3487,142713,15 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: End Terrace,Domestic EPC Required,EPC Present,27 Jun 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115RX,10003758766.0,15 Nightingale Crescent,0.4961 +3541,90063,16 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Nov 2025,C - 69 to 80,78.0,B - 81 to 91,83.0,BB115RX,10003758758.0,16 Nightingale Crescent,0.4961 +3554,362316,27 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Oct 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB127BL,100010360367.0,"27 West View Terrace, Padiham",0.6641 +2408,252139,4 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: End Terr,Domestic EPC Required,EPC Present,13 Nov 2022,B - 81 to 91,84.0,B - 81 to 91,89.0,BB127BL,100010360344.0,"4 West View Terrace, Padiham",0.6617 +2509,252136,6 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127BL,100010360346.0,"6, West View Terrace, Padiham",0.6617 +2616,95018,8 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Oct 2024,B - 81 to 91,88.0,B - 81 to 91,91.0,BB127BL,100010360348.0,"8 West View Terrace, Padiham",0.6617 +2712,40774,10 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Oct 2024,B - 81 to 91,88.0,B - 81 to 91,91.0,BB127BL,100010360350.0,"10 West View Terrace, Padiham",0.6641 +2814,252137,12 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127BL,100010360352.0,"12, West View Terrace, Padiham",0.6641 +2911,202631,14 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,06 Oct 2021,C - 69 to 80,69.0,C - 69 to 80,76.0,BB127BL,100010360354.0,"14 West View Terrace, Padiham",0.6641 +3014,112187,16 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Oct 2024,B - 81 to 91,88.0,B - 81 to 91,91.0,BB127BL,100010360356.0,"16 West View Terrace, Padiham",0.6641 +3112,194079,18 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: End Terr,Domestic EPC Required,EPC Present,14 Oct 2024,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BL,100010360358.0,"18 West View Terrace, Padiham",0.6641 +3205,222847,20 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Oct 2024,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BL,100010360360.0,"20 West View Terrace, Padiham",0.6641 +3301,252138,22 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,20 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127BL,100010360362.0,"22, West View Terrace, Padiham",0.6641 +3352,89273,23 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Oct 2024,B - 81 to 91,84.0,B - 81 to 91,88.0,BB127BL,100010360363.0,"23 West View Terrace, Padiham",0.6641 +3398,234330,24 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Oct 2024,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BL,100010360364.0,"24 West View Terrace, Padiham",0.6641 +3502,245841,26 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,89.0,BB127BL,100010360366.0,"26, West View Terrace, Padiham",0.6641 +3610,89275,28 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Oct 2024,B - 81 to 91,87.0,B - 81 to 91,91.0,BB127BL,100010360368.0,"28 West View Terrace, Padiham",0.6641 +3711,197945,30 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Oct 2024,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BL,100010360370.0,"30 West View Terrace, Padiham",0.6641 +3756,245839,31 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: End Terr,Domestic EPC Required,EPC Present,14 Oct 2024,B - 81 to 91,84.0,B - 81 to 91,88.0,BB127BL,100010360371.0,"31 West View Terrace, Padiham",0.6641 +3809,245694,32 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Oct 2024,B - 81 to 91,84.0,B - 81 to 91,88.0,BB127BL,100010360372.0,"32 West View Terrace, Padiham",0.6641 +3854,137012,33 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,14 Oct 2024,B - 81 to 91,86.0,B - 81 to 91,89.0,BB127BL,100010360373.0,"33 West View Terrace, Padiham",0.6641 +3907,221675,34 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Sep 2023,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BL,100010360374.0,"34 West View Terrace, Padiham",0.6641 +4013,252143,36 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Oct 2024,B - 81 to 91,85.0,B - 81 to 91,89.0,BB127BL,100010360376.0,"36 West View Terrace, Padiham",0.6641 +4120,245842,38 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Oct 2024,C - 69 to 80,69.0,B - 81 to 91,88.0,BB127BL,100010360378.0,"38 West View Terrace, Padiham",0.6641 +4227,183469,40 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Oct 2024,B - 81 to 91,85.0,B - 81 to 91,89.0,BB127BL,100010360379.0,"40 West View Terrace, Padiham",0.6641 +4346,90256,42 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Oct 2024,B - 81 to 91,85.0,B - 81 to 91,89.0,BB127BL,100010360380.0,"42 West View Terrace, Padiham",0.6641 +4465,245840,44 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Oct 2024,B - 81 to 91,85.0,B - 81 to 91,89.0,BB127BL,100010360381.0,"44 West View Terrace, Padiham",0.6641 +4586,97715,46 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Oct 2024,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BL,100010360382.0,"46 West View Terrace, Padiham",0.6641 +13281,337958,25 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Oct 2024,B - 81 to 91,84.0,B - 81 to 91,88.0,BB127BL,100010360365.0,"25 West View Terrace, Padiham",0.6641 +3661,362321,2 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,21 Nov 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127BY,100010359768.0,"2 Warwick Drive, Padiham",0.6154 +4121,362350,11 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Nov 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB127BY,100010359777.0,"11 Warwick Drive, Padiham",0.6185 +4347,362366,15 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,23 Nov 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127BY,100010359781.0,"15 Warwick Drive, Padiham",0.6185 +5247,362419,32 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,23 Nov 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127BY,100010359798.0,"32 Warwick Drive, Padiham",0.6185 +5299,362426,33 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,23 Nov 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127BY,100010359799.0,"33 Warwick Drive, Padiham",0.6185 +5359,362430,34 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,24 Jan 2024,D - 55 to 68,63.0,B - 81 to 91,82.0,BB127BY,100010359800.0,"34 Warwick Drive, Padiham",0.6185 +5517,362441,37 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Nov 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB127BY,100010359803.0,"37 Warwick Drive, Padiham",0.6185 +5616,362447,39 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,23 Nov 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127BY,100010359805.0,"39 Warwick Drive, Padiham",0.6185 +3705,116210,3 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Jul 2011,D - 55 to 68,68.0,C - 69 to 80,70.0,BB127BY,100010359769.0,"3, Warwick Drive, Padiham",0.6154 +3760,359892,4 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB127BY,100010359770.0,"4 Warwick Drive, Padiham",0.6154 +3962,210893,8 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,22 Aug 2013,D - 55 to 68,64.0,B - 81 to 91,85.0,BB127BY,100010359774.0,"8, Warwick Drive, Padiham",0.6154 +4070,221672,10 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,70.0,B - 81 to 91,83.0,BB127BY,100010359776.0,"10, Warwick Drive, Padiham",0.6185 +4292,110794,14 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Nov 2010,D - 55 to 68,64.0,C - 69 to 80,78.0,BB127BY,100010359780.0,"14, Warwick Drive, Padiham",0.6185 +4527,76997,18 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,24 Sep 2009,D - 55 to 68,68.0,C - 69 to 80,71.0,BB127BY,100010359784.0,"18, Warwick Drive, Padiham",0.6185 +4587,222811,19 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Jan 2026,D - 55 to 68,65.0,C - 69 to 80,77.0,BB127BY,100010359785.0,"19 Warwick Drive, Padiham",0.6185 +4754,116227,22 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Aug 2011,C - 69 to 80,73.0,C - 69 to 80,75.0,BB127BY,100010359788.0,"22, Warwick Drive, Padiham",0.6185 +4855,267811,24 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,08 Nov 2016,D - 55 to 68,59.0,C - 69 to 80,80.0,BB127BY,100010359790.0,"24, Warwick Drive, Padiham",0.6185 +5039,95214,28 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Jan 2026,D - 55 to 68,64.0,C - 69 to 80,79.0,BB127BY,100010359794.0,"28 Warwick Drive, Padiham",0.6185 +5081,76962,29 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2026,D - 55 to 68,67.0,C - 69 to 80,80.0,BB127BY,100010359795.0,"29, Warwick Drive, Padiham",0.6185 +5138,76947,30 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Sep 2009,D - 55 to 68,58.0,D - 55 to 68,66.0,BB127BY,100010359796.0,"30, Warwick Drive, Padiham",0.6185 +5185,220112,31 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,20 Nov 2013,D - 55 to 68,65.0,B - 81 to 91,82.0,BB127BY,100010359797.0,"31, Warwick Drive, Padiham",0.6185 +5466,105059,36 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Dec 2010,C - 69 to 80,69.0,C - 69 to 80,73.0,BB127BY,100010359802.0,"36, Warwick Drive, Padiham",0.6185 +5568,95861,38 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Jun 2010,C - 69 to 80,69.0,C - 69 to 80,72.0,BB127BY,100010359804.0,"38, Warwick Drive, Padiham",0.6185 +5675,226276,40 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,10 Jun 2014,D - 55 to 68,66.0,B - 81 to 91,83.0,BB127BY,100010359806.0,"40, Warwick Drive, Padiham",0.6185 +9623,96577,26 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,16 Jul 2010,D - 55 to 68,64.0,C - 69 to 80,69.0,BB127BY,100010359792.0,"26, Warwick Drive, Padiham",0.6185 +3745,362328,40 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Oct 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB127DU,100010345326.0,"40 Lancaster Drive, Padiham",0.4027 +4737,362391,58 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Bottom,Domestic EPC Required,EPC Present,24 Oct 2023,C - 69 to 80,71.0,C - 69 to 80,76.0,BB127DU,100010345335.0,"58 Lancaster Drive, Padiham",0.4027 +3846,343112,42 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2021,C - 69 to 80,74.0,B - 81 to 91,88.0,BB127DU,100010345327.0,"42 Lancaster Drive, Padiham",0.4027 +3942,362338,44 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: End Terrace,Domestic EPC Required,EPC Present,13 Oct 2022,C - 69 to 80,74.0,B - 81 to 91,87.0,BB127DU,100010345328.0,"44 Lancaster Drive, Padiham",0.4027 +4052,103051,46 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Bottom,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,74.0,C - 69 to 80,77.0,BB127DU,100010345329.0,"46 Lancaster Drive, Padiham",0.4027 +4275,179914,50 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Bottom,Domestic EPC Required,EPC Present,14 May 2012,C - 69 to 80,72.0,C - 69 to 80,78.0,BB127DU,100010345331.0,"50, Lancaster Drive, Padiham",0.4027 +4397,114848,52 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Top,Domestic EPC Required,EPC Present,18 Oct 2011,C - 69 to 80,72.0,C - 69 to 80,74.0,BB127DU,100010345332.0,"52, Lancaster Drive, Padiham",0.4027 +4509,113831,54 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Top,Domestic EPC Required,EPC Present,07 Jun 2011,C - 69 to 80,73.0,C - 69 to 80,75.0,BB127DU,100010345333.0,"54, Lancaster Drive, Padiham",0.4027 +4626,119037,56 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Top,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,77.0,C - 69 to 80,77.0,BB127DU,100010345334.0,"56 Lancaster Drive, Padiham",0.4027 +4841,100127,60 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Bottom,Domestic EPC Required,EPC Present,01 Apr 2010,C - 69 to 80,71.0,C - 69 to 80,75.0,BB127DU,100010345336.0,"60, Lancaster Drive, Padiham",0.4027 +4928,94901,62 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Bottom,Domestic EPC Required,EPC Present,09 Apr 2010,C - 69 to 80,73.0,C - 69 to 80,75.0,BB127DU,100010345337.0,"62, Lancaster Drive, Padiham",0.4027 +5020,228328,64 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Top,Domestic EPC Required,EPC Present,10 Sep 2014,C - 69 to 80,75.0,C - 69 to 80,78.0,BB127DU,100010345338.0,"64, Lancaster Drive, Padiham",0.4027 +5230,40897,68 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Top,Domestic EPC Required,EPC Present,18 Feb 2009,B - 81 to 91,81.0,B - 81 to 91,83.0,BB127DU,100010345340.0,"68, Lancaster Drive, Padiham",0.4027 +5449,362438,72 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,86.0,BB127DU,100010345342.0,"72 Lancaster Drive, Padiham",0.4027 +5862,227404,80 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: End Terrace,Domestic EPC Required,EPC Present,05 Aug 2014,D - 55 to 68,67.0,B - 81 to 91,83.0,BB127DU,100010345346.0,"80, Lancaster Drive, Padiham",0.4027 +5957,362473,82 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,86.0,BB127DU,100010345347.0,"82 Lancaster Drive, Padiham",0.4027 +6138,76757,86 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: End Terrace,Domestic EPC Required,EPC Present,04 Aug 2009,C - 69 to 80,72.0,C - 69 to 80,75.0,BB127DU,100010345349.0,"86, Lancaster Drive, Padiham",0.4027 +6227,362499,88 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: End Terrace,Domestic EPC Required,EPC Present,13 Sep 2022,C - 69 to 80,71.0,B - 81 to 91,87.0,BB127DU,100010345350.0,"88 Lancaster Drive, Padiham",0.4027 +6716,211374,98 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Oct 2013,D - 55 to 68,68.0,B - 81 to 91,86.0,BB127DU,100010345355.0,"98, Lancaster Drive, Padiham",0.4027 +6912,76886,102 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Aug 2009,C - 69 to 80,69.0,C - 69 to 80,77.0,BB127DU,100010345357.0,"102, Lancaster Drive, Padiham",0.4068 +7015,110952,104 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Apr 2011,D - 55 to 68,68.0,C - 69 to 80,76.0,BB127DU,100010345358.0,"104, Lancaster Drive, Padiham",0.4068 +7113,362568,106 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: End Terrace,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127DU,100010345359.0,"106 Lancaster Drive, Padiham",0.4068 +7217,362571,108 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Oct 2022,C - 69 to 80,75.0,B - 81 to 91,89.0,BB127DU,100010345360.0,"108 Lancaster Drive, Padiham",0.4068 +7310,362577,110 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127DU,100010345361.0,"110 Lancaster Drive, Padiham",0.4068 +7500,107916,114 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Dec 2025,C - 69 to 80,74.0,B - 81 to 91,87.0,BB127DU,100010345363.0,"114 Lancaster Drive, Padiham",0.4068 +7598,362600,116 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: End Terrace,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127DU,100010345364.0,"116 Lancaster Drive, Padiham",0.4068 +8127,362630,126 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: End Terrace,Domestic EPC Required,EPC Present,04 Oct 2022,C - 69 to 80,75.0,B - 81 to 91,89.0,BB127DU,100010345369.0,"126 Lancaster Drive, Padiham",0.4068 +8219,41031,128 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Mar 2009,C - 69 to 80,72.0,C - 69 to 80,78.0,BB127DU,100010345370.0,"128, Lancaster Drive, Padiham",0.4068 +8431,362648,132 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: End Terrace,Domestic EPC Required,EPC Present,04 Oct 2022,C - 69 to 80,74.0,B - 81 to 91,88.0,BB127DU,100010345372.0,"132 Lancaster Drive, Padiham",0.4068 +8661,362664,136 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB127DU,100010345374.0,"136 Lancaster Drive, Padiham",0.4068 +8784,341047,138 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Sep 2021,D - 55 to 68,67.0,B - 81 to 91,84.0,BB127DU,100010345375.0,"138 Lancaster Drive, Padiham",0.4068 +8904,272217,140 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jul 2017,C - 69 to 80,69.0,B - 81 to 91,87.0,BB127DU,100010345376.0,"140, Lancaster Drive, Padiham",0.4068 +10895,362717,66 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Top,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB127DU,100010345339.0,"66 Lancaster Drive, Padiham",0.4027 +11052,118962,92 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Aug 2011,C - 69 to 80,70.0,C - 69 to 80,73.0,BB127DU,100010345352.0,"92, Lancaster Drive, Padiham",0.4027 +13617,356037,48 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Bottom,Domestic EPC Required,EPC Present,23 Jun 2012,C - 69 to 80,70.0,C - 69 to 80,76.0,BB127DU,100010345330.0,"48, Lancaster Drive, Padiham",0.4027 +4226,362357,33 Abinger Street Burnley Lancashire BB10 3EE,,, BB10 3EE,Flat: Top,Domestic EPC Required,EPC Present,16 Jan 2024,C - 69 to 80,76.0,C - 69 to 80,76.0,BB103EE,100010326481.0,33 Abinger Street,0.4705 +3605,227327,21 Abinger Street Burnley Lancashire BB10 3EE,,, BB10 3EE,Flat: Top,Domestic EPC Required,EPC Present,29 Jul 2014,C - 69 to 80,70.0,C - 69 to 80,71.0,BB103EE,100010326475.0,"21, Abinger Street",0.4705 +3707,250599,23 Abinger Street Burnley Lancashire BB10 3EE,,, BB10 3EE,Flat: Bottom,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,76.0,C - 69 to 80,78.0,BB103EE,100010326476.0,23 Abinger Street,0.4705 +3804,232167,25 Abinger Street Burnley Lancashire BB10 3EE,,, BB10 3EE,Flat: Top,Domestic EPC Required,EPC Present,26 Jan 2015,D - 55 to 68,68.0,C - 69 to 80,72.0,BB103EE,100010326477.0,"25, Abinger Street",0.4705 +4010,116206,29 Abinger Street Burnley Lancashire BB10 3EE,,, BB10 3EE,Flat: Top,Domestic EPC Required,EPC Present,08 Nov 2025,B - 81 to 91,90.0,B - 81 to 91,90.0,BB103EE,100010326479.0,29 Abinger Street,0.4705 +4117,289903,31 Abinger Street Burnley Lancashire BB10 3EE,,, BB10 3EE,Flat: Bottom,Domestic EPC Required,EPC Present,06 Jul 2017,C - 69 to 80,74.0,C - 69 to 80,77.0,BB103EE,100010326480.0,"31, Abinger Street",0.4705 +4342,103499,35 Abinger Street Burnley Lancashire BB10 3EE,,, BB10 3EE,Flat: Bottom,Domestic EPC Required,EPC Present,05 Aug 2024,C - 69 to 80,73.0,C - 69 to 80,78.0,BB103EE,100010326482.0,35 Abinger Street,0.4705 +12690,305231,27 Abinger Street Burnley Lancashire BB10 3EE,,, BB10 3EE,Flat: Bottom,Domestic EPC Required,EPC Present,09 Jul 2014,D - 55 to 68,63.0,C - 69 to 80,72.0,BB103EE,100010326478.0,"27, Abinger Street",0.4705 +4398,362369,26 Ruskin Avenue Padiham Lancashire BB12 8TF,,, BB12 8TF,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,74.0,B - 81 to 91,85.0,BB128TF,100010355004.0,"26 Ruskin Avenue, Padiham",0.6185 +3337,362304,6 Ruskin Avenue Padiham Lancashire BB12 8TF,,, BB12 8TF,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB128TF,100010354984.0,"6 Ruskin Avenue, Padiham",0.6154 +3437,362311,8 Ruskin Avenue Padiham Lancashire BB12 8TF,,, BB12 8TF,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB128TF,100010354986.0,"8 Ruskin Avenue, Padiham",0.6154 +3748,203579,14 Ruskin Avenue Padiham Lancashire BB12 8TF,,, BB12 8TF,House: End Terrace,Domestic EPC Required,EPC Present,01 May 2013,D - 55 to 68,66.0,B - 81 to 91,81.0,BB128TF,100010354992.0,"14, Ruskin Avenue, Padiham",0.6185 +3847,182444,16 Ruskin Avenue Padiham Lancashire BB12 8TF,,, BB12 8TF,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jul 2012,D - 55 to 68,67.0,B - 81 to 91,86.0,BB128TF,100010354994.0,"16, Ruskin Avenue, Padiham",0.6185 +3999,362342,19 Ruskin Avenue Padiham Lancashire BB12 8TF,,, BB12 8TF,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB128TF,100010354997.0,"19 Ruskin Avenue, Padiham",0.6185 +4108,362348,21 Ruskin Avenue Padiham Lancashire BB12 8TF,,, BB12 8TF,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,86.0,BB128TF,100010354999.0,"21 Ruskin Avenue, Padiham",0.6185 +4573,196108,29 Ruskin Avenue Padiham Lancashire BB12 8TF,,, BB12 8TF,House: End Terrace,Domestic EPC Required,EPC Present,29 Jan 2013,D - 55 to 68,62.0,B - 81 to 91,84.0,BB128TF,100010355007.0,"29, Ruskin Avenue, Padiham",0.6185 +4733,76920,140 Florence Avenue Burnley Lancashire BB11 5LD,,, BB11 5LD,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Oct 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115LD,100010338987.0,140 Florence Avenue,0.4801 +3479,362312,117 Florence Avenue Burnley Lancashire BB11 5LD,,, BB11 5LD,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115LD,100010338964.0,117 Florence Avenue,0.4801 +3585,98155,119 Florence Avenue Burnley Lancashire BB11 5LD,,, BB11 5LD,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Sep 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115LD,100010338966.0,119 Florence Avenue,0.4801 +4046,111303,128 Florence Avenue Burnley Lancashire BB11 5LD,,, BB11 5LD,House: End Terrace,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,61.0,C - 69 to 80,75.0,BB115LD,100010338975.0,"128, Florence Avenue",0.4801 +4153,111304,130 Florence Avenue Burnley Lancashire BB11 5LD,,, BB11 5LD,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Feb 2011,D - 55 to 68,67.0,C - 69 to 80,75.0,BB115LD,100010338977.0,"130, Florence Avenue",0.4801 +4265,111305,132 Florence Avenue Burnley Lancashire BB11 5LD,,, BB11 5LD,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Mar 2011,D - 55 to 68,60.0,C - 69 to 80,72.0,BB115LD,100010338979.0,"132, Florence Avenue",0.4801 +4384,360284,134 Florence Avenue Burnley Lancashire BB11 5LD,,, BB11 5LD,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Jun 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB115LD,100010338981.0,134 Florence Avenue,0.4801 +4500,111306,136 Florence Avenue Burnley Lancashire BB11 5LD,,, BB11 5LD,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,91.0,BB115LD,100010338983.0,136 Florence Avenue,0.4801 +4620,111307,138 Florence Avenue Burnley Lancashire BB11 5LD,,, BB11 5LD,House: End Terrace,Domestic EPC Required,EPC Present,12 Feb 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB115LD,100010338985.0,138 Florence Avenue,0.4801 +4945,362402,22 St Johns Road Padiham Lancashire BB12 7BN,,, BB12 7BN,House: End Terrace,Domestic EPC Required,EPC Present,29 Jun 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB127BN,100010356559.0,"22 St. Johns Road, Padiham",0.6641 +5006,362405,48 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Top,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104QD,100010330850.0,48 Brownhill Avenue,0.4801 +2990,247982,9 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: End Terrace,Domestic EPC Required,EPC Present,29 Mar 2016,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104QD,100012536466.0,"Brunshaw, 9 Brownhill Avenue",0.4164 +3084,247986,11 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Mar 2016,C - 69 to 80,70.0,B - 81 to 91,85.0,BB104QD,100012536464.0,"11, Brownhill Avenue",0.4801 +3369,247866,17 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,69.0,B - 81 to 91,91.0,BB104QD,100010330823.0,"17, Brownhill Avenue",0.4801 +3471,247867,19 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Mar 2016,D - 55 to 68,67.0,A - 92 Plus,92.0,BB104QD,100010330825.0,19 Brownhill Avenue,0.4801 +3577,247962,21 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,70.0,B - 81 to 91,91.0,BB104QD,100010330827.0,"21, Brownhill Avenue",0.4801 +3930,305162,28 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Bottom,Domestic EPC Required,EPC Present,08 May 2019,C - 69 to 80,72.0,C - 69 to 80,74.0,BB104QD,100010330834.0,"28, Brownhill Avenue",0.4801 +3986,247991,29 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,73.0,B - 81 to 91,90.0,BB104QD,100010330835.0,"29, Brownhill Avenue",0.4801 +4041,342535,30 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Bottom,Domestic EPC Required,EPC Present,11 Nov 2021,C - 69 to 80,72.0,C - 69 to 80,74.0,BB104QD,100010330836.0,30 Brownhill Avenue,0.4801 +4143,305161,32 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Top,Domestic EPC Required,EPC Present,08 May 2009,C - 69 to 80,74.0,C - 69 to 80,75.0,BB104QD,100010330837.0,"32, Brownhill Avenue",0.4801 +4256,125125,34 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Top,Domestic EPC Required,EPC Present,01 Jul 2024,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104QD,100010330838.0,34 Brownhill Avenue,0.4801 +4377,194017,36 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Bottom,Domestic EPC Required,EPC Present,14 Dec 2012,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104QD,100010330840.0,"36, Brownhill Avenue",0.4801 +4436,247987,37 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Mar 2016,C - 69 to 80,72.0,B - 81 to 91,88.0,BB104QD,100010330841.0,"37, Brownhill Avenue",0.4801 +4493,197610,38 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Bottom,Domestic EPC Required,EPC Present,07 Oct 2021,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104QD,100010330842.0,38 Brownhill Avenue,0.4801 +4552,247988,39 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Oct 2025,C - 69 to 80,75.0,B - 81 to 91,81.0,BB104QD,100010330843.0,39 Brownhill Avenue,0.4801 +4609,252265,40 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Top,Domestic EPC Required,EPC Present,07 Jul 2016,C - 69 to 80,73.0,C - 69 to 80,74.0,BB104QD,100010330844.0,"40, Brownhill Avenue",0.4801 +4726,362390,42 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104QD,100010330846.0,42 Brownhill Avenue,0.4801 +4825,40877,44 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Bottom,Domestic EPC Required,EPC Present,12 May 2009,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104QD,100010330847.0,"44, Brownhill Avenue",0.4801 +4918,97705,46 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Bottom,Domestic EPC Required,EPC Present,05 Aug 2010,C - 69 to 80,69.0,C - 69 to 80,73.0,BB104QD,100010330848.0,"46, Brownhill Avenue",0.4801 +5941,182137,66 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jul 2012,C - 69 to 80,71.0,C - 69 to 80,79.0,BB104QD,100010330868.0,"66, Brownhill Avenue",0.4801 +6301,305160,74 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: End Terrace,Domestic EPC Required,EPC Present,08 May 2019,C - 69 to 80,73.0,B - 81 to 91,89.0,BB104QD,100010330873.0,"74, Brownhill Avenue",0.4801 +6397,286342,76 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Jul 2017,C - 69 to 80,75.0,B - 81 to 91,90.0,BB104QD,100010330874.0,"76, Brownhill Avenue",0.4801 +6503,107908,78 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Mar 2011,C - 69 to 80,75.0,C - 69 to 80,79.0,BB104QD,100010330875.0,"78, Brownhill Avenue",0.4801 +6702,362532,82 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: End Terrace,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,89.0,BB104QD,100010330879.0,82 Brownhill Avenue,0.4801 +6802,267508,84 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Oct 2016,C - 69 to 80,75.0,B - 81 to 91,89.0,BB104QD,100010330881.0,"84, Brownhill Avenue",0.4801 +13229,337633,23 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Mar 2016,D - 55 to 68,68.0,B - 81 to 91,90.0,BB104QD,100010330829.0,"23, Brownhill Avenue",0.4801 +5083,362408,4 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Oct 2023,C - 69 to 80,71.0,C - 69 to 80,74.0,BB127BZ,100010350106.0,"4 Norfolk Avenue, Padiham",0.6185 +5186,362414,6 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Oct 2023,C - 69 to 80,71.0,C - 69 to 80,74.0,BB127BZ,100010350108.0,"6 Norfolk Avenue, Padiham",0.6185 +4942,340128,1 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: End Terrace,Domestic EPC Required,EPC Present,16 Aug 2021,D - 55 to 68,59.0,B - 81 to 91,86.0,BB127BZ,100010350103.0,"1 Norfolk Avenue, Padiham",0.6185 +4989,231069,2 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: End Terrace,Domestic EPC Required,EPC Present,15 Jan 2015,D - 55 to 68,64.0,B - 81 to 91,81.0,BB127BZ,100010350104.0,"2, Norfolk Avenue, Padiham",0.6185 +5037,40887,3 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jan 2026,D - 55 to 68,66.0,B - 81 to 91,82.0,BB127BZ,100010350105.0,"3 Norfolk Avenue, Padiham",0.6185 +5137,76914,5 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jan 2026,D - 55 to 68,64.0,C - 69 to 80,79.0,BB127BZ,100010350107.0,"5 Norfolk Avenue, Padiham",0.6185 +5304,76934,8 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: End Terrace,Domestic EPC Required,EPC Present,17 Feb 2026,C - 69 to 80,70.0,B - 81 to 91,84.0,BB127BZ,100010350110.0,"8, Norfolk Avenue, Padiham",0.6185 +5358,104043,9 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: End Terrace,Domestic EPC Required,EPC Present,14 Jan 2026,D - 55 to 68,64.0,C - 69 to 80,80.0,BB127BZ,100010350111.0,"9 Norfolk Avenue, Padiham",0.6185 +5415,362435,10 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: End Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127BZ,100010350112.0,"10 Norfolk Avenue, Padiham",0.6214 +5464,88996,11 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,70.0,B - 81 to 91,86.0,BB127BZ,100010350113.0,"11 Norfolk Avenue, Padiham",0.6214 +5516,104049,12 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Nov 2010,D - 55 to 68,64.0,C - 69 to 80,76.0,BB127BZ,100010350114.0,"12, Norfolk Avenue, Padiham",0.6214 +5567,124991,13 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Nov 2011,C - 69 to 80,72.0,C - 69 to 80,73.0,BB127BZ,100010350115.0,"13, Norfolk Avenue, Padiham",0.6214 +5618,97233,14 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jul 2010,D - 55 to 68,68.0,C - 69 to 80,72.0,BB127BZ,100010350116.0,"14, Norfolk Avenue, Padiham",0.6214 +5676,120795,15 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: End Terrace,Domestic EPC Required,EPC Present,15 Aug 2024,D - 55 to 68,65.0,B - 81 to 91,89.0,BB127BZ,100010350117.0,"15 Norfolk Avenue, Padiham",0.6214 +5727,191098,16 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: End Terrace,Domestic EPC Required,EPC Present,14 Jun 2024,D - 55 to 68,64.0,B - 81 to 91,84.0,BB127BZ,100010350118.0,"16 Norfolk Avenue, Padiham",0.6214 +5777,40919,17 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: End Terrace,Domestic EPC Required,EPC Present,11 Jun 2009,D - 55 to 68,68.0,C - 69 to 80,73.0,BB127BZ,100010350119.0,"17, Norfolk Avenue, Padiham",0.6214 +5876,97625,19 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Jan 2026,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127BZ,100010350120.0,"19 Norfolk Avenue, Padiham",0.6214 +5968,220125,21 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2013,D - 55 to 68,68.0,B - 81 to 91,89.0,BB127BZ,100010350121.0,"21, Norfolk Avenue, Padiham",0.6214 +6060,40935,23 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: End Terrace,Domestic EPC Required,EPC Present,24 Sep 2008,D - 55 to 68,68.0,C - 69 to 80,72.0,BB127BZ,,, +5175,362413,10 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,Flat: Top,Domestic EPC Required,EPC Present,17 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104NW,100010339627.0,10 Gisburn Grove,0.4652 +4739,94892,1 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,House: End Terrace,Domestic EPC Required,EPC Present,08 Apr 2010,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104NW,100010339618.0,"1, Gisburn Grove",0.4596 +4786,362393,2 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,Flat: Top,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104NW,100010339619.0,2 Gisburn Grove,0.4596 +4885,233997,4 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,Flat: Bottom,Domestic EPC Required,EPC Present,05 Mar 2015,D - 55 to 68,68.0,C - 69 to 80,77.0,BB104NW,100010339621.0,"4, Gisburn Grove",0.4596 +4932,111038,5 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jun 2010,D - 55 to 68,62.0,C - 69 to 80,78.0,BB104NW,100010339622.0,"5, Gisburn Grove",0.4596 +4977,323691,6 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,Flat: Bottom,Domestic EPC Required,EPC Present,18 Oct 2019,C - 69 to 80,70.0,B - 81 to 91,91.0,BB104NW,100010339623.0,"6, Gisburn Grove",0.4596 +5024,138705,7 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,House: End Terrace,Domestic EPC Required,EPC Present,24 Feb 2026,C - 69 to 80,69.0,B - 81 to 91,83.0,BB104NW,100010339624.0,"7, Gisburn Grove",0.4596 +5071,362407,8 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,Flat: Top,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104NW,100010339625.0,8 Gisburn Grove,0.4596 +5288,274960,12 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,Flat: Bottom,Domestic EPC Required,EPC Present,21 Jun 2017,D - 55 to 68,68.0,C - 69 to 80,72.0,BB104NW,100010339629.0,"12, Gisburn Grove",0.4652 +5401,362433,14 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,Flat: Bottom,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104NW,100010339630.0,14 Gisburn Grove,0.4652 +5504,235417,16 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,Flat: Top,Domestic EPC Required,EPC Present,24 Feb 2026,C - 69 to 80,72.0,C - 69 to 80,74.0,BB104NW,100010339631.0,"16, Gisburn Grove",0.4652 +5605,233918,18 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Mar 2015,C - 69 to 80,69.0,B - 81 to 91,87.0,BB104NW,100010339632.0,"18, Gisburn Grove",0.4652 +5714,202618,20 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Apr 2013,D - 55 to 68,67.0,B - 81 to 91,85.0,BB104NW,100010339633.0,"20, Gisburn Grove",0.4652 +5202,362417,6 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Oct 2023,C - 69 to 80,75.0,B - 81 to 91,88.0,BB127DT,100010347607.0,"6 Malvern Avenue, Padiham",0.394 +5371,362431,9 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Oct 2023,C - 69 to 80,75.0,B - 81 to 91,88.0,BB127DT,100010347610.0,"9 Malvern Avenue, Padiham",0.394 +5625,362448,14 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,29 Oct 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB127DT,100010347614.0,"14 Malvern Avenue, Padiham",0.3985 +5788,362462,17 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Oct 2023,C - 69 to 80,74.0,B - 81 to 91,87.0,BB127DT,100010347617.0,"17 Malvern Avenue, Padiham",0.3985 +5929,362471,20 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Nov 2023,C - 69 to 80,74.0,B - 81 to 91,87.0,BB127DT,100010347620.0,"20 Malvern Avenue, Padiham",0.3985 +6108,362485,24 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB127DT,100010347624.0,"24 Malvern Avenue, Padiham",0.3985 +6201,362497,26 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB127DT,100012538603.0,"26 Malvern Avenue, Padiham",0.3985 +6247,362503,27 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Nov 2023,C - 69 to 80,74.0,B - 81 to 91,87.0,BB127DT,100010347626.0,"27 Malvern Avenue, Padiham",0.3985 +8285,362643,68 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,29 Oct 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB127DT,100010347649.0,"68 Malvern Avenue, Padiham",0.3985 +8507,362652,72 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127DT,100010347651.0,"72 Malvern Avenue, Padiham",0.3985 +13642,362905,34 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Bottom,Domestic EPC Required,EPC Present,24 Jan 2024,C - 69 to 80,74.0,C - 69 to 80,77.0,BB127DT,10003781204.0,34 Malvern Avenue,0.4162 +4953,196094,1 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,81.0,BB127DT,100010347602.0,"1 Malvern Avenue, Padiham",0.394 +5047,40888,3 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 May 2009,D - 55 to 68,66.0,C - 69 to 80,77.0,BB127DT,100010347604.0,"Clayton Consultancy Ltd, 3 Malvern Avenue, Padiham",0.2968 +5097,106382,4 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Feb 2011,C - 69 to 80,72.0,C - 69 to 80,76.0,BB127DT,100010347605.0,"4, Malvern Avenue, Padiham",0.394 +5151,362412,5 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,04 Oct 2022,C - 69 to 80,74.0,B - 81 to 91,86.0,BB127DT,100010347606.0,"5 Malvern Avenue, Padiham",0.394 +5263,234328,7 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,26 Mar 2015,D - 55 to 68,65.0,B - 81 to 91,87.0,BB127DT,100010347608.0,"7, Malvern Avenue, Padiham",0.394 +5313,237660,8 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Jun 2015,D - 55 to 68,66.0,B - 81 to 91,86.0,BB127DT,100010347609.0,"8, Malvern Avenue, Padiham",0.394 +5424,362436,10 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Oct 2023,C - 69 to 80,74.0,B - 81 to 91,87.0,BB127DT,100010347611.0,"10 Malvern Avenue, Padiham",0.3985 +5479,40907,11 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,69.0,C - 69 to 80,80.0,BB127DT,100010347612.0,"11 Malvern Avenue, Padiham",0.3985 +5522,362442,12 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Oct 2023,C - 69 to 80,74.0,B - 81 to 91,87.0,BB127DT,100010347613.0,"12 Malvern Avenue, Padiham",0.3985 +5732,240296,16 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,11 Aug 2015,C - 69 to 80,69.0,B - 81 to 91,84.0,BB127DT,100010347616.0,"16, Malvern Avenue, Padiham",0.3985 +5834,189871,18 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Oct 2012,C - 69 to 80,72.0,B - 81 to 91,89.0,BB127DT,100010347618.0,"18, Malvern Avenue, Padiham",0.3985 +6156,250443,25 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Jun 2016,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127DT,100010347625.0,"25, Malvern Avenue, Padiham",0.3985 +6292,90079,28 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Jan 2010,C - 69 to 80,74.0,C - 69 to 80,76.0,BB127DT,100012538604.0,"28, Malvern Avenue, Padiham",0.3985 +6339,97155,29 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Jul 2010,C - 69 to 80,75.0,C - 69 to 80,78.0,BB127DT,100010347627.0,"29, Malvern Avenue, Padiham",0.3985 +6389,40949,30 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2022,C - 69 to 80,74.0,B - 81 to 91,88.0,BB127DT,100012538605.0,"30 Malvern Avenue, Padiham",0.3985 +6442,238014,31 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,12 May 2015,C - 69 to 80,74.0,B - 81 to 91,88.0,BB127DT,100010347628.0,"31, Malvern Avenue, Padiham",0.3985 +6486,316631,32 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Top,Domestic EPC Required,EPC Present,23 Jun 2019,C - 69 to 80,69.0,C - 69 to 80,73.0,BB127DT,100010347629.0,"32, Malvern Avenue, Padiham",0.3985 +6546,98121,33 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2021,C - 69 to 80,71.0,B - 81 to 91,87.0,BB127DT,100010347630.0,"33 Malvern Avenue, Padiham",0.3985 +6839,343114,39 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,15 Nov 2021,C - 69 to 80,71.0,B - 81 to 91,87.0,BB127DT,100010347633.0,"39 Malvern Avenue, Padiham",0.3985 +6935,226304,41 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,69.0,C - 69 to 80,76.0,BB127DT,100010347634.0,"41 Malvern Avenue, Padiham",0.3985 +7084,201345,44 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Bottom,Domestic EPC Required,EPC Present,02 Apr 2013,C - 69 to 80,72.0,C - 69 to 80,78.0,BB127DT,100010347636.0,"44, Malvern Avenue, Padiham",0.3985 +7137,119218,45 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,17 Oct 2011,C - 69 to 80,72.0,C - 69 to 80,73.0,BB127DT,100010347637.0,"45, Malvern Avenue, Padiham",0.3985 +7182,98147,46 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Bottom,Domestic EPC Required,EPC Present,19 Aug 2010,C - 69 to 80,76.0,C - 69 to 80,78.0,BB127DT,100010347638.0,"46, Malvern Avenue, Padiham",0.3985 +7380,89041,50 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Top,Domestic EPC Required,EPC Present,31 Jul 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB127DT,100010347640.0,"50 Malvern Avenue, Padiham",0.3985 +7476,362591,52 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Top,Domestic EPC Required,EPC Present,08 Oct 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB127DT,100010347641.0,"52 Malvern Avenue, Padiham",0.3985 +7566,95003,54 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Top,Domestic EPC Required,EPC Present,05 May 2010,C - 69 to 80,79.0,B - 81 to 91,81.0,BB127DT,100010347642.0,"54, Malvern Avenue, Padiham",0.3985 +7678,289908,56 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Bottom,Domestic EPC Required,EPC Present,26 Jul 2017,C - 69 to 80,70.0,C - 69 to 80,73.0,BB127DT,100010347643.0,"56, Malvern Avenue, Padiham",0.3985 +7789,362612,58 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Bottom,Domestic EPC Required,EPC Present,08 Oct 2023,C - 69 to 80,76.0,C - 69 to 80,78.0,BB127DT,100010347644.0,"58 Malvern Avenue, Padiham",0.3985 +7896,362619,60 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Bottom,Domestic EPC Required,EPC Present,08 Oct 2023,C - 69 to 80,76.0,C - 69 to 80,78.0,BB127DT,100010347645.0,"60 Malvern Avenue, Padiham",0.3985 +7994,119250,62 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Top,Domestic EPC Required,EPC Present,18 Oct 2011,C - 69 to 80,75.0,C - 69 to 80,77.0,BB127DT,100010347646.0,"62, Malvern Avenue, Padiham",0.3985 +8089,230491,64 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Top,Domestic EPC Required,EPC Present,03 Jul 2025,C - 69 to 80,77.0,C - 69 to 80,77.0,BB127DT,100010347647.0,"64 Malvern Avenue, Padiham",0.3985 +8189,41030,66 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Top,Domestic EPC Required,EPC Present,25 Nov 2008,D - 55 to 68,65.0,C - 69 to 80,73.0,BB127DT,100010347648.0,"66, Malvern Avenue, Padiham",0.3985 +8392,41036,70 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jan 2009,D - 55 to 68,68.0,C - 69 to 80,80.0,BB127DT,100010347650.0,"70, Malvern Avenue, Padiham",0.3985 +8627,362660,74 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,13 Sep 2022,C - 69 to 80,75.0,B - 81 to 91,89.0,BB127DT,100010347652.0,"74 Malvern Avenue, Padiham",0.3985 +8750,115840,76 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,13 Jul 2011,D - 55 to 68,67.0,C - 69 to 80,72.0,BB127DT,100010347653.0,"76, Malvern Avenue, Padiham",0.3985 +8865,362679,78 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Apr 2021,C - 69 to 80,71.0,B - 81 to 91,88.0,BB127DT,100010347654.0,"78 MALVERN AVENUE, HAPTON",0.5461 +8980,227727,80 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Aug 2014,C - 69 to 80,69.0,B - 81 to 91,88.0,BB127DT,100010347655.0,"80, Malvern Avenue, Padiham",0.3985 +9091,100545,82 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,16 Sep 2010,C - 69 to 80,73.0,C - 69 to 80,76.0,BB127DT,100010347656.0,"82, Malvern Avenue, Padiham",0.3985 +13592,362892,48 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Bottom,Domestic EPC Required,EPC Present,13 Sep 2022,C - 69 to 80,74.0,C - 69 to 80,77.0,BB127DT,100010347639.0,"48 Malvern Avenue, Padiham",0.3985 +5495,362439,19 Grasmere Avenue Padiham Lancashire BB12 8PG,,, BB12 8PG,House: End Terrace,Domestic EPC Required,EPC Present,28 Oct 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB128PG,100010340225.0,"19 Grasmere Avenue, Padiham",0.6242 +4616,362383,2 Grasmere Avenue Padiham Lancashire BB12 8PG,,, BB12 8PG,House: End Terrace,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,83.0,BB128PG,100010340208.0,"2 Grasmere Avenue, Padiham",0.6214 +4675,186373,3 Grasmere Avenue Padiham Lancashire BB12 8PG,,, BB12 8PG,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Jul 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB128PG,100010340209.0,"3 Grasmere Avenue, Padiham",0.6214 +4779,194019,5 Grasmere Avenue Padiham Lancashire BB12 8PG,,, BB12 8PG,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,68.0,B - 81 to 91,86.0,BB128PG,100010340211.0,"5, Grasmere Avenue, Padiham",0.6214 +5112,362411,12 Grasmere Avenue Padiham Lancashire BB12 8PG,,, BB12 8PG,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB128PG,100010340218.0,"12 Grasmere Avenue, Padiham",0.6242 +5278,90322,15 Grasmere Avenue Padiham Lancashire BB12 8PG,,, BB12 8PG,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2010,C - 69 to 80,71.0,C - 69 to 80,78.0,BB128PG,100010340221.0,"15, Grasmere Avenue, Padiham",0.6242 +5444,250556,18 Grasmere Avenue Padiham Lancashire BB12 8PG,,, BB12 8PG,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Jun 2016,D - 55 to 68,67.0,B - 81 to 91,85.0,BB128PG,100010340224.0,"18, Grasmere Avenue, Padiham",0.6242 +5609,362446,82 Burnley Road Clowbridge Burnley Lancashire BB11 5PB,,, BB11 5PB,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Sep 2023,D - 55 to 68,63.0,B - 81 to 91,86.0,BB115PB,100010332119.0,"82 Burnley Road, Clowbridge",0.5989 +5725,362455,84 Burnley Road Clowbridge Burnley Lancashire BB11 5PB,,, BB11 5PB,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115PB,100010332120.0,"84 Burnley Road, Clowbridge",0.5989 +5909,362470,12 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Feb 2024,C - 69 to 80,72.0,B - 81 to 91,85.0,BB115SB,100010342140.0,12 Helston Close,0.4652 +6001,362475,14 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB115SB,100010342142.0,14 Helston Close,0.4652 +5344,362429,1 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115SB,100010342129.0,1 Helston Close,0.4596 +5402,362434,2 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115SB,100010342130.0,2 Helston Close,0.4596 +5452,250064,3 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: End Terrace,Domestic EPC Required,EPC Present,10 May 2016,C - 69 to 80,71.0,B - 81 to 91,88.0,BB115SB,100010342131.0,"3, Helston Close",0.4596 +5505,89264,4 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: End Terrace,Domestic EPC Required,EPC Present,10 Nov 2009,C - 69 to 80,70.0,C - 69 to 80,76.0,BB115SB,100010342132.0,"4, Helston Close",0.4596 +5554,105054,5 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Dec 2010,C - 69 to 80,74.0,C - 69 to 80,76.0,BB115SB,100010342133.0,5 Helston Close,0.4596 +5602,90057,6 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Dec 2025,C - 69 to 80,76.0,C - 69 to 80,82.0,BB115SB,100010342134.0,6 Helston Close,0.4596 +5659,69672,7 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Mar 2026,C - 69 to 80,74.0,B - 81 to 91,86.0,BB115SB,100010342135.0,"7, Helston Close",0.4596 +5716,362452,8 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB115SB,100010342136.0,8 Helston Close,0.4596 +5763,76852,9 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Nov 2025,C - 69 to 80,76.0,B - 81 to 91,87.0,BB115SB,100010342137.0,9 Helston Close,0.4596 +5815,40922,10 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: End Terrace,Domestic EPC Required,EPC Present,25 Sep 2008,D - 55 to 68,68.0,C - 69 to 80,75.0,BB115SB,,, +5865,362468,11 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB115SB,100010342139.0,11 Helston Close,0.4652 +5955,245077,13 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Dec 2015,C - 69 to 80,72.0,B - 81 to 91,86.0,BB115SB,100010342141.0,"13, Helston Close",0.4652 +6143,362490,25 Dryden Street Padiham Lancashire BB12 8TQ,,, BB12 8TQ,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Oct 2023,D - 55 to 68,58.0,B - 81 to 91,85.0,BB128TQ,100010337557.0,"25 Dryden Street, Padiham",0.6185 +5462,246350,11 Dryden Street Padiham Lancashire BB12 8TQ,,, BB12 8TQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Dec 2015,D - 55 to 68,58.0,B - 81 to 91,84.0,BB128TQ,100010337543.0,"11, Dryden Street, Padiham",0.6185 +5559,88995,13 Dryden Street Padiham Lancashire BB12 8TQ,,, BB12 8TQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Nov 2017,B - 81 to 91,82.0,B - 81 to 91,91.0,BB128TQ,100010337545.0,"13, Dryden Street, Padiham",0.6185 +6480,362519,29 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Flat: Top,Domestic EPC Required,EPC Present,16 Oct 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB126AU,100010332830.0,29 Cardigan Avenue,0.4754 +6289,222427,25 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Flat: Bottom,Domestic EPC Required,EPC Present,11 Sep 2023,C - 69 to 80,74.0,C - 69 to 80,76.0,BB126AU,100010332827.0,25 Cardigan Avenue,0.4754 +6385,194086,27 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Flat: Middle,Domestic EPC Required,EPC Present,19 Dec 2012,C - 69 to 80,76.0,C - 69 to 80,78.0,BB126AU,100010332828.0,"27, Cardigan Avenue",0.4754 +6436,134168,28 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Flat: Bottom,Domestic EPC Required,EPC Present,31 Jan 2012,D - 55 to 68,68.0,C - 69 to 80,71.0,BB126AU,100010332829.0,"28, Cardigan Avenue",0.4754 +6540,138690,30 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Flat: Top,Domestic EPC Required,EPC Present,15 Mar 2012,C - 69 to 80,73.0,C - 69 to 80,76.0,BB126AU,100010332831.0,"30, Cardigan Avenue",0.4754 +6633,180889,32 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Flat: Top,Domestic EPC Required,EPC Present,13 Jun 2012,C - 69 to 80,74.0,C - 69 to 80,78.0,BB126AU,100010332832.0,"32, Cardigan Avenue",0.4754 +6686,235522,33 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: End Terrace,Domestic EPC Required,EPC Present,20 Jul 2017,D - 55 to 68,58.0,C - 69 to 80,74.0,BB126AU,100010332833.0,"33, Cardigan Avenue",0.4754 +6735,362534,34 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,76.0,C - 69 to 80,77.0,BB126AU,100010332834.0,34 Cardigan Avenue,0.4754 +6931,211486,38 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Flat: Top,Domestic EPC Required,EPC Present,16 Oct 2013,C - 69 to 80,71.0,C - 69 to 80,77.0,BB126AU,100010332838.0,"38, Cardigan Avenue",0.4754 +7033,211780,40 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2017,D - 55 to 68,63.0,C - 69 to 80,79.0,BB126AU,100010332840.0,"40, Cardigan Avenue",0.4754 +7080,250437,41 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: End Terrace,Domestic EPC Required,EPC Present,01 Jun 2016,C - 69 to 80,71.0,B - 81 to 91,86.0,BB126AU,100010332841.0,"41, Cardigan Avenue",0.4754 +7232,333834,44 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Sep 2020,D - 55 to 68,62.0,D - 55 to 68,67.0,BB126AU,100010332844.0,"44 CARDIGAN AVENUE, BURNLEY",0.6242 +7329,268887,46 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,28 Nov 2016,D - 55 to 68,64.0,B - 81 to 91,84.0,BB126AU,100010332846.0,46 Cardigan Avenue,0.4754 +7375,94920,47 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: End Terrace,Domestic EPC Required,EPC Present,26 Jul 2017,C - 69 to 80,75.0,B - 81 to 91,88.0,BB126AU,100010332847.0,"47, Cardigan Avenue",0.4754 +7423,362584,48 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB126AU,100010332848.0,48 Cardigan Avenue,0.4754 +7514,341258,50 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Bungalow: End Terr,Domestic EPC Required,EPC Present,29 Sep 2021,D - 55 to 68,63.0,B - 81 to 91,85.0,BB126AU,100010332850.0,50 Cardigan Avenue,0.4754 +7561,197946,51 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Feb 2013,C - 69 to 80,69.0,B - 81 to 91,88.0,BB126AU,100010332851.0,"51, Cardigan Avenue",0.4754 +7672,41003,53 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Jun 2009,C - 69 to 80,70.0,C - 69 to 80,76.0,BB126AU,100010332853.0,"53, Cardigan Avenue",0.4754 +7835,295083,56 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: End Terrace,Domestic EPC Required,EPC Present,07 Aug 2017,C - 69 to 80,73.0,B - 81 to 91,89.0,BB126AU,100010332856.0,"56, Cardigan Avenue",0.4754 +7942,305190,58 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 May 2019,C - 69 to 80,75.0,B - 81 to 91,89.0,BB126AU,100010332858.0,"58, Cardigan Avenue",0.4754 +8036,295088,60 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Aug 2017,C - 69 to 80,73.0,B - 81 to 91,88.0,BB126AU,100010332860.0,"60, Cardigan Avenue",0.4754 +8184,41029,63 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Jun 2009,D - 55 to 68,66.0,C - 69 to 80,71.0,BB126AU,100010332863.0,"63, Cardigan Avenue",0.4754 +8240,362638,64 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB126AU,100010332864.0,64 Cardigan Avenue,0.4754 +8386,105375,67 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Semi-Detached,Domestic EPC Required,EPC Present,18 May 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB126AU,100010332867.0,67 Cardigan Avenue,0.4754 +8446,295093,68 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Aug 2017,D - 55 to 68,59.0,C - 69 to 80,80.0,BB126AU,100010332868.0,68 Cardigan Avenue,0.4754 +8557,209268,70 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,31 Jul 2017,D - 55 to 68,67.0,B - 81 to 91,87.0,BB126AU,100010332869.0,70 Cardigan Avenue,0.4754 +8681,362667,72 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB126AU,100010332870.0,72 Cardigan Avenue,0.4754 +8803,232686,74 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Feb 2015,D - 55 to 68,56.0,B - 81 to 91,82.0,BB126AU,100010332871.0,"74, Cardigan Avenue",0.4754 +8923,290410,76 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: End Terrace,Domestic EPC Required,EPC Present,01 Aug 2017,C - 69 to 80,73.0,B - 81 to 91,90.0,BB126AU,100010332872.0,"76, Cardigan Avenue",0.4754 +9033,362687,78 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,88.0,BB126AU,100010332873.0,78 Cardigan Avenue,0.4754 +9146,76859,80 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Aug 2009,C - 69 to 80,72.0,C - 69 to 80,76.0,BB126AU,100010332874.0,"80, Cardigan Avenue",0.4754 +9380,90254,84 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Jun 2024,C - 69 to 80,73.0,B - 81 to 91,89.0,BB126AU,100010332876.0,84 Cardigan Avenue,0.4754 +9491,286351,86 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Jul 2017,C - 69 to 80,73.0,B - 81 to 91,88.0,BB126AU,100010332877.0,"86, Cardigan Avenue",0.4754 +9592,208475,88 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Aug 2017,C - 69 to 80,69.0,B - 81 to 91,87.0,BB126AU,100010332878.0,"88, Cardigan Avenue",0.4754 +12659,303911,36 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Flat: Bottom,Domestic EPC Required,EPC Present,18 Dec 2015,D - 55 to 68,66.0,C - 69 to 80,76.0,BB126AU,100010332836.0,"36, Cardigan Avenue",0.4754 +6724,362533,37 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128RL,100010337569.0,"37 Dryden Street, Padiham",0.6185 +7321,77003,49 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB128RL,100010337581.0,"49 Dryden Street, Padiham",0.6185 +6236,245460,27 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,19 Jan 2026,B - 81 to 91,86.0,B - 81 to 91,89.0,BB128RL,100010337559.0,"27 Dryden Street, Padiham",0.6185 +6332,208474,29 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Jul 2013,D - 55 to 68,63.0,B - 81 to 91,86.0,BB128RL,100010337561.0,"29, Dryden Street, Padiham",0.6185 +6429,230222,31 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,21 Nov 2014,D - 55 to 68,65.0,B - 81 to 91,89.0,BB128RL,100010337563.0,"31, Dryden Street, Padiham",0.6185 +6531,226273,33 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,30 Jun 2014,D - 55 to 68,67.0,B - 81 to 91,91.0,BB128RL,100010337565.0,"33, Dryden Street, Padiham",0.6185 +6627,274447,35 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 May 2017,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128RL,100010337567.0,"35, Dryden Street, Padiham",0.6185 +6672,187508,36 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,21 Jan 2026,C - 69 to 80,74.0,C - 69 to 80,77.0,BB128RL,100010337568.0,"36 Dryden Street, Padiham",0.6185 +6779,96146,38 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,06 Nov 2025,D - 55 to 68,65.0,C - 69 to 80,74.0,BB128RL,100010337570.0,"38 Dryden Street, Padiham",0.6185 +6824,221642,39 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Jun 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128RL,100010337571.0,"39 Dryden Street, Padiham",0.6185 +6871,225819,40 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 May 2014,D - 55 to 68,62.0,B - 81 to 91,86.0,BB128RL,100010337572.0,"40, Dryden Street, Padiham",0.6185 +6923,228559,41 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,75.0,B - 81 to 91,81.0,BB128RL,100010337573.0,"41 Dryden Street, Padiham",0.6185 +6971,246352,42 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,19 Jan 2026,C - 69 to 80,78.0,B - 81 to 91,82.0,BB128RL,100010337574.0,"42 Dryden Street, Padiham",0.6185 +7025,362560,43 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128RL,100010337575.0,"43 Dryden Street, Padiham",0.6185 +7070,228332,44 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Aug 2025,C - 69 to 80,69.0,C - 69 to 80,80.0,BB128RL,100010337576.0,"44 Dryden Street, Padiham",0.6185 +7120,40977,45 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,09 Dec 2008,D - 55 to 68,57.0,D - 55 to 68,64.0,BB128RL,100010337577.0,"45, Dryden Street, Padiham",0.6185 +7166,246349,46 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,09 Dec 2015,D - 55 to 68,63.0,B - 81 to 91,88.0,BB128RL,100010337578.0,"46, Dryden Street, Padiham",0.6185 +7219,76954,47 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,16 Sep 2009,C - 69 to 80,70.0,C - 69 to 80,74.0,BB128RL,100010337579.0,"47, Dryden Street, Padiham",0.6185 +7269,362574,48 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128RL,100010337580.0,"48 Dryden Street, Padiham",0.6185 +7366,246351,50 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB128RL,100010337582.0,"50 Dryden Street, Padiham",0.6185 +7417,40989,51 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Jun 2009,C - 69 to 80,71.0,C - 69 to 80,75.0,BB128RL,100010337583.0,"51, Dryden Street, Padiham",0.6185 +7460,250595,52 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Jun 2016,D - 55 to 68,65.0,B - 81 to 91,88.0,BB128RL,100010337584.0,"52, Dryden Street, Padiham",0.6185 +7509,362593,53 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128RL,100010337585.0,"53 Dryden Street, Padiham",0.6185 +7554,221643,54 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,28 Oct 2024,C - 69 to 80,71.0,A - 92 Plus,92.0,BB128RL,100010337586.0,"54 Dryden Street, Padiham",0.6185 +7664,112963,56 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,19 Jan 2026,D - 55 to 68,65.0,B - 81 to 91,88.0,BB128RL,100010337587.0,"56 Dryden Street, Padiham",0.6185 +7771,41009,58 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Jun 2022,D - 55 to 68,66.0,B - 81 to 91,91.0,BB128RL,100010337588.0,"58 Dryden Street, Padiham",0.6185 +7880,118387,60 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Sep 2022,C - 69 to 80,70.0,B - 81 to 91,91.0,BB128RL,100010337589.0,"60 Dryden Street, Padiham",0.6185 +7984,245741,62 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,06 Jan 2016,D - 55 to 68,65.0,B - 81 to 91,88.0,BB128RL,100010337590.0,"62, Dryden Street, Padiham",0.6185 +8080,105058,64 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,06 Dec 2010,D - 55 to 68,68.0,C - 69 to 80,73.0,BB128RL,100010337591.0,"64, Dryden Street, Padiham",0.6185 +7365,362580,3 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,83.0,BB126BA,100010339636.0,3 Glamorgan Grove,0.4705 +7553,289900,7 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Jul 2017,D - 55 to 68,62.0,B - 81 to 91,81.0,BB126BA,100010339640.0,"7, Glamorgan Grove",0.4705 +7606,115839,8 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: End Terr,Domestic EPC Required,EPC Present,13 Jul 2011,D - 55 to 68,64.0,D - 55 to 68,68.0,BB126BA,100010339641.0,8 Glamorgan Grove,0.4705 +7663,41001,9 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,14 May 2009,C - 69 to 80,69.0,C - 69 to 80,74.0,BB126BA,100010339642.0,9 Glamorgan Grove,0.4705 +7718,289901,10 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,10 Jul 2017,C - 69 to 80,69.0,B - 81 to 91,87.0,BB126BA,100010339643.0,10 Glamorgan Grove,0.4754 +7772,190521,11 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Oct 2012,C - 69 to 80,71.0,B - 81 to 91,90.0,BB126BA,100010339644.0,11 Glamorgan Grove,0.4754 +7826,76755,12 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Apr 2023,C - 69 to 80,71.0,B - 81 to 91,88.0,BB126BA,100010339645.0,12 Glamorgan Grove,0.4754 +7881,295085,13 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Aug 2017,C - 69 to 80,69.0,B - 81 to 91,87.0,BB126BA,100010339646.0,13 Glamorgan Grove,0.4754 +7932,222439,14 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Feb 2014,C - 69 to 80,69.0,B - 81 to 91,89.0,BB126BA,100010339647.0,14 Glamorgan Grove,0.4754 +7985,95947,15 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: End Terr,Domestic EPC Required,EPC Present,17 Jun 2010,C - 69 to 80,70.0,C - 69 to 80,71.0,BB126BA,100010339648.0,15 Glamorgan Grove,0.4754 +8029,41022,16 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Jul 2017,D - 55 to 68,61.0,B - 81 to 91,81.0,BB126BA,100010339649.0,16 Glamorgan Grove,0.4754 +8081,125372,17 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: End Terr,Domestic EPC Required,EPC Present,06 Dec 2011,D - 55 to 68,62.0,D - 55 to 68,67.0,BB126BA,100010339650.0,17 Glamorgan Grove,0.4754 +8133,293921,18 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: End Terr,Domestic EPC Required,EPC Present,17 Oct 2017,D - 55 to 68,65.0,B - 81 to 91,89.0,BB126BA,100010339651.0,18 Glamorgan Grove,0.4754 +8179,41028,19 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Jul 2017,D - 55 to 68,65.0,B - 81 to 91,84.0,BB126BA,100010339652.0,19 Glamorgan Grove,0.4754 +8230,289905,20 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Jul 2017,D - 55 to 68,68.0,B - 81 to 91,86.0,BB126BA,100010339653.0,20 Glamorgan Grove,0.4754 +8330,286343,22 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Jul 2017,D - 55 to 68,68.0,B - 81 to 91,86.0,BB126BA,100010339654.0,22 Glamorgan Grove,0.4754 +7397,110909,32 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Dec 2010,D - 55 to 68,60.0,C - 69 to 80,75.0,BB112NR,100010336081.0,"32, Creswick Avenue",0.4754 +7449,110914,33 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Apr 2017,D - 55 to 68,65.0,B - 81 to 91,87.0,BB112NR,100010336082.0,"33, Creswick Avenue",0.4754 +7492,110919,34 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Dec 2010,D - 55 to 68,61.0,C - 69 to 80,75.0,BB112NR,100010336083.0,"34, Creswick Avenue",0.4754 +7589,90101,36 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Dec 2020,D - 55 to 68,59.0,B - 81 to 91,84.0,BB112NR,100010336084.0,"36 CRESWICK AVENUE, BURNLEY",0.6242 +7696,111151,38 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Sep 2021,D - 55 to 68,65.0,B - 81 to 91,87.0,BB112NR,100010336085.0,38 Creswick Avenue,0.4754 +8015,94850,44 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,08 May 2017,D - 55 to 68,61.0,B - 81 to 91,87.0,BB112NR,100010336087.0,"44, Creswick Avenue",0.4754 +8265,362640,49 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB112NR,100010336092.0,49 Creswick Avenue,0.4754 +8476,41038,53 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Dec 2008,C - 69 to 80,72.0,C - 69 to 80,77.0,BB112NR,100010336096.0,"53, Creswick Avenue",0.4754 +8596,103759,55 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Nov 2010,C - 69 to 80,71.0,C - 69 to 80,76.0,BB112NR,100010336098.0,"55, Creswick Avenue",0.4754 +8645,362663,56 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB112NR,100010336099.0,56 Creswick Avenue,0.4754 +8996,111203,62 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,15 May 2017,D - 55 to 68,60.0,B - 81 to 91,83.0,BB112NR,100010336105.0,"62, Creswick Avenue",0.4754 +9230,111209,66 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,17 May 2017,D - 55 to 68,63.0,B - 81 to 91,84.0,BB112NR,100010336108.0,"66, Creswick Avenue",0.4754 +7411,248648,79 Carholme Avenue Burnley Lancashire BB10 4PT,,, BB10 4PT,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,73.0,B - 81 to 91,90.0,BB104PT,100010333029.0,"79, Carholme Avenue",0.4754 +7503,248656,81 Carholme Avenue Burnley Lancashire BB10 4PT,,, BB10 4PT,House: End Terrace,Domestic EPC Required,EPC Present,31 Mar 2016,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104PT,100010333030.0,"81, Carholme Avenue",0.4754 +7706,248657,85 Carholme Avenue Burnley Lancashire BB10 4PT,,, BB10 4PT,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Mar 2016,C - 69 to 80,73.0,B - 81 to 91,87.0,BB104PT,100010333032.0,"85, Carholme Avenue",0.4754 +7926,248679,89 Carholme Avenue Burnley Lancashire BB10 4PT,,, BB10 4PT,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Apr 2016,C - 69 to 80,74.0,B - 81 to 91,90.0,BB104PT,100010333034.0,"89, Carholme Avenue",0.4754 +8126,248658,93 Carholme Avenue Burnley Lancashire BB10 4PT,,, BB10 4PT,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,73.0,B - 81 to 91,90.0,BB104PT,100010333036.0,"93, Carholme Avenue",0.4754 +7444,228075,62 Brunshaw Avenue Burnley Lancashire BB10 4LQ,,, BB10 4LQ,Flat: Bottom,Domestic EPC Required,EPC Present,28 Aug 2014,D - 55 to 68,68.0,C - 69 to 80,75.0,BB104LQ,100010331306.0,"62, Brunshaw Avenue",0.4754 +7961,205790,72 Brunshaw Avenue Burnley Lancashire BB10 4LQ,,, BB10 4LQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Jun 2013,D - 55 to 68,68.0,B - 81 to 91,87.0,BB104LQ,100010331315.0,"72, Brunshaw Avenue",0.4754 +7479,226547,1 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Nov 2025,D - 55 to 68,63.0,C - 69 to 80,72.0,BB115LU,100010335621.0,1 Como Avenue,0.4471 +7528,110655,2 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Feb 2026,C - 69 to 80,75.0,B - 81 to 91,81.0,BB115LU,100010335622.0,"2, Como Avenue",0.4471 +7572,110662,3 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Aug 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB115LU,100010335623.0,3 Como Avenue,0.4471 +7630,269456,4 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Jan 2017,D - 55 to 68,66.0,B - 81 to 91,84.0,BB115LU,100010335624.0,"4, Como Avenue",0.4471 +7683,362605,5 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115LU,100010335625.0,5 Como Avenue,0.4471 +7740,304348,6 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Apr 2019,D - 55 to 68,65.0,B - 81 to 91,87.0,BB115LU,100010335626.0,"6, Como Avenue",0.4471 +7847,41015,8 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Mar 2009,C - 69 to 80,69.0,C - 69 to 80,75.0,BB115LU,100010335628.0,"8, Como Avenue",0.4471 +7953,110754,10 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: End Terrace,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115LU,100010335630.0,10 Como Avenue,0.4536 +8000,180751,11 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jul 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115LU,100010335631.0,11 Como Avenue,0.4536 +8049,110772,12 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Aug 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115LU,100010335632.0,12 Como Avenue,0.4536 +8149,110784,14 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,64.0,C - 69 to 80,71.0,BB115LU,100010335634.0,14 Como Avenue,0.4536 +8292,110800,17 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: End Terrace,Domestic EPC Required,EPC Present,10 Mar 2011,D - 55 to 68,60.0,C - 69 to 80,75.0,BB115LU,100010335637.0,"17, Como Avenue",0.4536 +8398,110815,19 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB115LU,100010335639.0,19 Como Avenue,0.4536 +8461,89232,20 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Nov 2009,D - 55 to 68,64.0,D - 55 to 68,68.0,BB115LU,100010335640.0,"20, Como Avenue",0.4536 +8510,362653,21 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115LU,100010335641.0,21 Como Avenue,0.4536 +8571,305305,22 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 May 2019,C - 69 to 80,71.0,B - 81 to 91,90.0,BB115LU,100010335642.0,"22, Como Avenue",0.4536 +8628,110872,23 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: End Terrace,Domestic EPC Required,EPC Present,21 Aug 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115LU,100010335643.0,23 Como Avenue,0.4536 +8693,110875,24 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: End Terrace,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,62.0,C - 69 to 80,75.0,BB115LU,100010335644.0,"24, Como Avenue",0.4536 +8754,250553,25 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Jun 2016,C - 69 to 80,70.0,B - 81 to 91,89.0,BB115LU,100010335645.0,"25, Como Avenue",0.4536 +8819,229284,26 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Jul 2025,C - 69 to 80,74.0,B - 81 to 91,81.0,BB115LU,100010335646.0,26 Como Avenue,0.4536 +8873,295078,27 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Oct 2017,D - 55 to 68,65.0,B - 81 to 91,83.0,BB115LU,100010335647.0,"27, Como Avenue",0.4536 +8932,41055,28 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Jun 2009,C - 69 to 80,71.0,C - 69 to 80,75.0,BB115LU,100010335648.0,"28, Como Avenue",0.4536 +8982,304351,29 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: End Terrace,Domestic EPC Required,EPC Present,05 Apr 2019,D - 55 to 68,65.0,B - 81 to 91,87.0,BB115LU,100010335649.0,"29, Como Avenue",0.4536 +9043,362689,30 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,89.0,BB115LU,100010335650.0,30 Como Avenue,0.4536 +9093,103761,31 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Nov 2025,C - 69 to 80,69.0,B - 81 to 91,82.0,BB115LU,100010335651.0,31 Como Avenue,0.4536 +9157,189415,32 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Oct 2012,D - 55 to 68,68.0,B - 81 to 91,83.0,BB115LU,100010335652.0,"32, Como Avenue",0.4536 +9210,114746,33 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Jun 2011,D - 55 to 68,66.0,C - 69 to 80,69.0,BB115LU,100010335653.0,"33, Como Avenue",0.4536 +9273,110918,34 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Jun 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB115LU,100010335654.0,34 Como Avenue,0.4536 +9331,98163,35 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: End Terrace,Domestic EPC Required,EPC Present,07 Apr 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115LU,100010335655.0,35 Como Avenue,0.4536 +9445,304934,37 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Apr 2019,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115LU,100010335657.0,"37, Como Avenue",0.4536 +9756,41088,36 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: End Terrace,Domestic EPC Required,EPC Present,26 Jun 2024,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LU,100010335656.0,36 Como Avenue,0.4536 +11598,241800,39 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Aug 2015,C - 69 to 80,74.0,B - 81 to 91,90.0,BB115LU,100010335658.0,"39, Como Avenue",0.4536 +7505,324890,7 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Nov 2019,D - 55 to 68,64.0,B - 81 to 91,83.0,BB104PD,100010353896.0,"7, Ribchester Avenue",0.4801 +7655,105070,10 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Jan 2026,D - 55 to 68,62.0,C - 69 to 80,80.0,BB104PD,100010353899.0,10 Ribchester Avenue,0.4845 +8373,324891,24 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: End Terrace,Domestic EPC Required,EPC Present,27 Nov 2019,D - 55 to 68,59.0,B - 81 to 91,86.0,BB104PD,100010353912.0,"24, Ribchester Avenue",0.4845 +8484,41039,26 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Jun 2026,D - 55 to 68,68.0,B - 81 to 91,86.0,BB104PD,100010353914.0,"26, Ribchester Avenue",0.4845 +8667,324893,29 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Dec 2025,D - 55 to 68,67.0,B - 81 to 91,82.0,BB104PD,100010353917.0,29 Ribchester Avenue,0.4845 +9126,190988,37 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Oct 2012,C - 69 to 80,71.0,B - 81 to 91,88.0,BB104PD,100010353925.0,"37, Ribchester Avenue",0.4845 +9188,89005,38 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Oct 2009,C - 69 to 80,70.0,C - 69 to 80,75.0,BB104PD,100010353926.0,"38, Ribchester Avenue",0.4845 +9245,324892,39 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Nov 2019,D - 55 to 68,63.0,B - 81 to 91,86.0,BB104PD,100010353927.0,"39, Ribchester Avenue",0.4845 +9363,242930,41 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Oct 2015,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104PD,100010353929.0,"41, Ribchester Avenue",0.4845 +9423,252999,42 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Aug 2016,D - 55 to 68,67.0,B - 81 to 91,85.0,BB104PD,100010353930.0,"42, Ribchester Avenue",0.4845 +7559,110643,1 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2024,D - 55 to 68,67.0,B - 81 to 91,85.0,BB115LX,100010328075.0,1 Barclay Avenue,0.4652 +7671,115738,3 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Mar 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115LX,100010328077.0,3 Barclay Avenue,0.4652 +7729,110667,4 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Jul 2021,C - 69 to 80,72.0,B - 81 to 91,89.0,BB115LX,100010328078.0,4 BARCLAY AVENUE,0.4652 +7777,272216,5 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Feb 2017,D - 55 to 68,68.0,B - 81 to 91,88.0,BB115LX,100010328079.0,"5, Barclay Avenue",0.4652 +7832,250157,6 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,18 May 2016,C - 69 to 80,69.0,B - 81 to 91,85.0,BB115LX,100010328080.0,"6, Barclay Avenue",0.4652 +7884,97717,7 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Feb 2011,D - 55 to 68,67.0,C - 69 to 80,74.0,BB115LX,100010328081.0,"7, Barclay Avenue",0.4652 +7941,250554,8 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Jun 2016,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115LX,100010328082.0,"8, Barclay Avenue",0.4652 +7988,110745,9 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: End Terrace,Domestic EPC Required,EPC Present,09 Feb 2011,D - 55 to 68,67.0,C - 69 to 80,75.0,BB115LX,100010328083.0,"9, Barclay Avenue",0.4652 +8038,41025,10 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: End Terrace,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,91.0,BB115LX,100010328084.0,10 Barclay Avenue,0.4705 +8138,110768,12 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Sep 2025,C - 69 to 80,72.0,C - 69 to 80,82.0,BB115LX,100010328086.0,12 Barclay Avenue,0.4705 +8188,210923,13 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2025,C - 69 to 80,71.0,B - 81 to 91,84.0,BB115LX,100010328087.0,13 Barclay Avenue,0.4705 +8242,69488,14 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Dec 2010,D - 55 to 68,63.0,C - 69 to 80,75.0,BB115LX,100010328088.0,"14, Barclay Avenue",0.4705 +8389,89002,17 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: End Terrace,Domestic EPC Required,EPC Present,16 Oct 2009,C - 69 to 80,73.0,C - 69 to 80,73.0,BB115LX,100010328091.0,"17, Barclay Avenue",0.4705 +8444,110809,18 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: End Terrace,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,61.0,C - 69 to 80,75.0,BB115LX,100010328092.0,"18, Barclay Avenue",0.4705 +8555,41042,20 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 May 2009,D - 55 to 68,60.0,C - 69 to 80,74.0,BB115LX,100010328094.0,"20, Barclay Avenue",0.4705 +8680,101657,22 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Oct 2010,C - 69 to 80,70.0,C - 69 to 80,74.0,BB115LX,100010328096.0,"22, Barclay Avenue",0.4705 +8743,110871,23 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: End Terrace,Domestic EPC Required,EPC Present,08 Feb 2010,D - 55 to 68,60.0,C - 69 to 80,75.0,BB115LX,100010328097.0,"23, Barclay Avenue",0.4705 +8802,253481,24 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: End Terrace,Domestic EPC Required,EPC Present,19 Sep 2016,C - 69 to 80,71.0,B - 81 to 91,88.0,BB115LX,100010328098.0,"24, Barclay Avenue",0.4705 +8862,230178,25 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Jul 2025,C - 69 to 80,74.0,C - 69 to 80,80.0,BB115LX,100010328099.0,25 Barclay Avenue,0.4705 +8922,112878,26 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,24 May 2011,D - 55 to 68,67.0,C - 69 to 80,69.0,BB115LX,100010328100.0,"26, Barclay Avenue",0.4705 +8972,89507,27 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Nov 2025,C - 69 to 80,72.0,B - 81 to 91,86.0,BB115LX,100010328101.0,27 Barclay Avenue,0.4705 +9145,110896,30 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: End Terrace,Domestic EPC Required,EPC Present,05 Jan 2022,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LX,100010328104.0,30 Barclay Avenue,0.4705 +9202,110899,31 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jul 2024,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115LX,100010328105.0,31 Barclay Avenue,0.4705 +9261,41068,32 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jan 2026,D - 55 to 68,68.0,C - 69 to 80,82.0,BB115LX,100010328106.0,32 Barclay Avenue,0.4705 +9320,110911,33 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Aug 2025,C - 69 to 80,73.0,B - 81 to 91,81.0,BB115LX,100010328107.0,33 Barclay Avenue,0.4705 +9434,110636,35 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: End Terrace,Domestic EPC Required,EPC Present,13 Jan 2026,C - 69 to 80,72.0,B - 81 to 91,86.0,BB115LX,100010328109.0,35 Barclay Avenue,0.4705 +9490,180749,36 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2025,C - 69 to 80,69.0,B - 81 to 91,82.0,BB115LX,100010328110.0,36 Barclay Avenue,0.4705 +10868,119598,28 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Oct 2011,D - 55 to 68,64.0,D - 55 to 68,67.0,BB115LX,100010328102.0,"28, Barclay Avenue",0.4705 +7576,40996,5 Bank Street Padiham Lancashire BB12 8HQ,,, BB12 8HQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,19 Jul 2022,D - 55 to 68,65.0,C - 69 to 80,74.0,BB128HQ,100010327974.0,"5 Bank Street, Padiham",0.6085 +7688,244944,7 Bank Street Padiham Lancashire BB12 8HQ,,, BB12 8HQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,03 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB128HQ,100010327975.0,"7, Bank Street, Padiham",0.6085 +7794,190622,9 Bank Street Padiham Lancashire BB12 8HQ,,, BB12 8HQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,70.0,B - 81 to 91,78.0,BB128HQ,100010327976.0,"9 Bank Street, Padiham",0.6085 +7901,359934,11 Bank Street Padiham Lancashire BB12 8HQ,,, BB12 8HQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 May 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128HQ,100010327977.0,"11 Bank Street, Padiham",0.6121 +7593,40998,1 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,16 Oct 2008,D - 55 to 68,68.0,C - 69 to 80,73.0,BB127EB,100010328604.0,"1, Bedford Place, Padiham",0.6154 +7757,117345,4 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Sep 2011,D - 55 to 68,67.0,C - 69 to 80,70.0,BB127EB,100010328607.0,"4, Bedford Place, Padiham",0.6154 +7812,41013,5 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 May 2009,D - 55 to 68,67.0,C - 69 to 80,71.0,BB127EB,100010328608.0,"5, Bedford Place, Padiham",0.6154 +8019,362626,9 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127EB,100010328612.0,"9 Bedford Place, Padiham",0.6154 +8069,362629,10 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127EB,100010328613.0,"10 Bedford Place, Padiham",0.6185 +8170,362635,12 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB127EB,100010328615.0,"12 Bedford Place, Padiham",0.6185 +8267,252198,14 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127EB,100010328617.0,"14 Bedford Place, Padiham",0.6185 +8319,191099,15 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,08 Nov 2012,D - 55 to 68,68.0,B - 81 to 91,85.0,BB127EB,100010328618.0,"15, Bedford Place, Padiham",0.6185 +8371,41034,16 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,10 Feb 2009,D - 55 to 68,66.0,C - 69 to 80,72.0,BB127EB,100010328619.0,"16, Bedford Place, Padiham",0.6185 +8422,362647,17 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB127EB,100010328620.0,"17 Bedford Place, Padiham",0.6185 +8481,250423,18 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,24 May 2016,D - 55 to 68,68.0,B - 81 to 91,88.0,BB127EB,100010328621.0,"18, Bedford Place, Padiham",0.6185 +8532,89443,19 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Jan 2026,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127EB,100010328622.0,"19 Bedford Place, Padiham",0.6185 +8599,191100,20 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Nov 2012,C - 69 to 80,70.0,B - 81 to 91,90.0,BB127EB,100010328623.0,"20, Bedford Place, Padiham",0.6185 +8658,89040,21 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Mar 2026,D - 55 to 68,67.0,B - 81 to 91,82.0,BB127EB,100010328624.0,"21, Bedford Place, Padiham",0.6185 +8720,252234,22 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Jun 2016,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127EB,100010328625.0,"22, Bedford Place, Padiham",0.6185 +8778,221628,23 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,67.0,B - 81 to 91,86.0,BB127EB,100010328626.0,"23, Bedford Place, Padiham",0.6185 +8842,97234,24 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,15 Sep 2025,C - 69 to 80,69.0,C - 69 to 80,77.0,BB127EB,100010328627.0,"24 Bedford Place, Padiham",0.6185 +8901,41054,25 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,23 Dec 2010,D - 55 to 68,59.0,C - 69 to 80,74.0,BB127EB,100010328628.0,"25, Bedford Place, Padiham",0.6185 +9008,88991,27 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Jul 2024,C - 69 to 80,73.0,B - 81 to 91,91.0,BB127EB,100010328629.0,"27 Bedford Place, Padiham",0.6185 +9118,41062,29 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Mar 2023,C - 69 to 80,70.0,C - 69 to 80,86.0,BB127EB,100010328630.0,"29, Bedford Place, Padiham",0.6185 +9236,362701,31 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB127EB,100010328631.0,"31 Bedford Place, Padiham",0.6185 +7605,138695,3 Pitt Street Padiham Lancashire BB12 8RR,,, BB12 8RR,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Mar 2012,D - 55 to 68,57.0,D - 55 to 68,62.0,BB128RR,100010352236.0,"3, Pitt Street, Padiham",0.6085 +7634,362602,27 Harold Street Burnley Lancashire BB11 4PB,,, BB11 4PB,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB114PB,100010341442.0,27 Harold Street,0.4652 +7643,274959,27a Harold Street Burnley Lancashire BB11 4PB,,, BB11 4PB,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Jun 2017,D - 55 to 68,58.0,D - 55 to 68,61.0,BB114PB,100010341441.0,"27a, Harold Street",0.5219 +7644,116221,6 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB104JY,100010354143.0,6 Rimington Avenue,0.4754 +7751,324899,8 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2019,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104JY,100010354145.0,"8, Rimington Avenue",0.4754 +7860,108015,10 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Jun 2026,C - 69 to 80,71.0,B - 81 to 91,86.0,BB104JY,100010354146.0,"10, Rimington Avenue",0.4801 +7964,229510,12 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Oct 2014,C - 69 to 80,70.0,B - 81 to 91,84.0,BB104JY,100010354148.0,"12, Rimington Avenue",0.4801 +8060,186172,14 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,House: End Terrace,Domestic EPC Required,EPC Present,23 Aug 2012,D - 55 to 68,64.0,B - 81 to 91,84.0,BB104JY,100010354150.0,"14, Rimington Avenue",0.4801 +8362,324898,20 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2019,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104JY,100010354154.0,"20, Rimington Avenue",0.4801 +8472,238929,22 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Jul 2015,D - 55 to 68,61.0,B - 81 to 91,83.0,BB104JY,100010354156.0,"22, Rimington Avenue",0.4801 +8829,199715,28 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,House: End Terrace,Domestic EPC Required,EPC Present,13 Mar 2013,D - 55 to 68,66.0,B - 81 to 91,84.0,BB104JY,100010354159.0,"28, Rimington Avenue",0.4801 +9055,323685,32 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,Flat: Top,Domestic EPC Required,EPC Present,17 Oct 2019,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104JY,100010354160.0,"32, Rimington Avenue",0.4801 +9170,323684,34 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,Flat: Bottom,Domestic EPC Required,EPC Present,17 Oct 2019,D - 55 to 68,66.0,C - 69 to 80,76.0,BB104JY,100010354161.0,"34, Rimington Avenue",0.4801 +9286,222016,36 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,Flat: Bottom,Domestic EPC Required,EPC Present,21 Jan 2014,C - 69 to 80,71.0,C - 69 to 80,74.0,BB104JY,100010354162.0,"36, Rimington Avenue",0.4801 +7645,324696,66 Morse Street Burnley Lancashire BB10 4LJ,,, BB10 4LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2019,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104LJ,100010349484.0,"66, Morse Street",0.4596 +7749,324695,68 Morse Street Burnley Lancashire BB10 4LJ,,, BB10 4LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2019,D - 55 to 68,59.0,B - 81 to 91,82.0,BB104LJ,100010349486.0,"68, Morse Street",0.4596 +7958,362622,72 Morse Street Burnley Lancashire BB10 4LJ,,, BB10 4LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB104LJ,100010349490.0,72 Morse Street,0.4596 +8160,107907,76 Morse Street Burnley Lancashire BB10 4LJ,,, BB10 4LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Jan 2026,D - 55 to 68,67.0,B - 81 to 91,81.0,BB104LJ,100010349494.0,76 Morse Street,0.4596 +8256,201777,78 Morse Street Burnley Lancashire BB10 4LJ,,, BB10 4LJ,Flat: Top,Domestic EPC Required,EPC Present,09 Nov 2025,D - 55 to 68,68.0,C - 69 to 80,73.0,BB104LJ,100010349496.0,78 Morse Street,0.4596 +8360,104942,80 Morse Street Burnley Lancashire BB10 4LJ,,, BB10 4LJ,Flat: Bottom,Domestic EPC Required,EPC Present,02 Feb 2026,D - 55 to 68,67.0,C - 69 to 80,73.0,BB104LJ,100010349498.0,"80, Morse Street",0.4596 +7656,247975,1 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: End Terr,Domestic EPC Required,EPC Present,25 Feb 2026,C - 69 to 80,71.0,C - 69 to 80,78.0,BB104QW,100010329698.0,"1, Brandwood Grove",0.4705 +7708,246795,2 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Jan 2026,C - 69 to 80,72.0,B - 81 to 91,90.0,BB104QW,100010329699.0,2 Brandwood Grove,0.4705 +7766,247976,3 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Jan 2026,C - 69 to 80,71.0,C - 69 to 80,80.0,BB104QW,100010329700.0,3 Brandwood Grove,0.4705 +7821,246796,4 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Feb 2016,C - 69 to 80,69.0,B - 81 to 91,88.0,BB104QW,100010329701.0,4 Brandwood Grove,0.4705 +7875,246797,5 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Feb 2016,D - 55 to 68,67.0,B - 81 to 91,87.0,BB104QW,100010329702.0,"5, Brandwood Grove",0.4705 +7928,246791,6 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,70.0,A - 92 Plus,92.0,BB104QW,100010329703.0,6 Brandwood Grove,0.4705 +7974,246803,7 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Feb 2016,D - 55 to 68,65.0,B - 81 to 91,88.0,BB104QW,100010329704.0,"7, Brandwood Grove",0.4705 +8023,246792,8 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: End Terr,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,69.0,A - 92 Plus,93.0,BB104QW,100010329705.0,8 Brandwood Grove,0.4705 +8072,247977,9 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,31 Mar 2016,D - 55 to 68,68.0,B - 81 to 91,88.0,BB104QW,100010329706.0,"9, Brandwood Grove",0.4705 +8129,246806,10 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Feb 2016,D - 55 to 68,67.0,B - 81 to 91,87.0,BB104QW,100010329707.0,"10, Brandwood Grove",0.4754 +8177,246807,11 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Feb 2016,D - 55 to 68,67.0,B - 81 to 91,89.0,BB104QW,100010329708.0,"11, Brandwood Grove",0.4754 +8223,247865,12 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,69.0,A - 92 Plus,92.0,BB104QW,100010329709.0,"12, Brandwood Grove",0.4754 +8271,247978,13 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,11 Mar 2016,D - 55 to 68,66.0,B - 81 to 91,87.0,BB104QW,100010329710.0,"13, Brandwood Grove",0.4754 +8325,247979,14 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: End Terr,Domestic EPC Required,EPC Present,15 Mar 2016,C - 69 to 80,70.0,B - 81 to 91,90.0,BB104QW,100010329711.0,14 Brandwood Grove,0.4754 +8377,246788,15 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,18 Feb 2016,D - 55 to 68,65.0,B - 81 to 91,87.0,BB104QW,100010329712.0,15 Brandwood Grove,0.4754 +8434,246793,16 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,69.0,B - 81 to 91,90.0,BB104QW,100010329713.0,"16, Brandwood Grove",0.4754 +8488,247864,17 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Mar 2016,D - 55 to 68,67.0,B - 81 to 91,89.0,BB104QW,100010329714.0,"17, Brandwood Grove",0.4754 +8545,247980,18 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,12 Dec 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB104QW,100010329715.0,18 Brandwood Grove,0.4754 +8910,246794,24 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,71.0,A - 92 Plus,93.0,BB104QW,100010329716.0,24 Brandwood Grove,0.4754 +9016,246790,26 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,18 Feb 2016,D - 55 to 68,64.0,B - 81 to 91,87.0,BB104QW,100010329717.0,26 Brandwood Grove,0.4754 +9130,247981,28 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,12 Dec 2025,D - 55 to 68,66.0,C - 69 to 80,75.0,BB104QW,100010329718.0,28 Brandwood Grove,0.4754 +7669,230523,2 Ford Street Burnley Lancashire BB10 1RJ,,, BB10 1RJ,House: End Terrace,Domestic EPC Required,EPC Present,22 Sep 2021,D - 55 to 68,61.0,B - 81 to 91,87.0,BB101RJ,100010339065.0,2 Ford Street,0.4471 +7763,359734,53 Cromwell Street Burnley Lancashire BB12 0DB,,, BB12 0DB,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Mar 2024,C - 69 to 80,70.0,B - 81 to 91,84.0,BB120DB,100010336235.0,53 Cromwell Street,0.4754 +7774,41010,1 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104BW,10003781373.0,1 Lower Ridge Close,0.5265 +7828,322656,2 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104BW,10003781384.0,"2, Lower Ridge Close",0.5265 +7882,94993,3 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,03 Nov 2025,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104BW,10003781394.0,3 Lower Ridge Close,0.5265 +7933,322655,4 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,77.0,C - 69 to 80,79.0,BB104BW,10003781395.0,"4, Lower Ridge Close",0.5265 +7986,322654,5 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104BW,10003781396.0,"5, Lower Ridge Close",0.5265 +8032,224911,6 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,03 Nov 2025,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104BW,10003781397.0,6 Lower Ridge Close,0.5265 +8082,197128,7 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,20 Apr 2023,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104BW,10003781398.0,7 Lower Ridge Close,0.5265 +8134,362631,8 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,25 Apr 2022,C - 69 to 80,76.0,C - 69 to 80,79.0,BB104BW,10003781399.0,8 Lower Ridge Close,0.5265 +8182,322693,9 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,23 Sep 2019,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104BW,10003781400.0,"9, Lower Ridge Close",0.5265 +8235,115737,10 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,06 Jul 2011,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104BW,10003781374.0,"10, Lower Ridge Close",0.5309 +8278,118383,11 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,07 Dec 2021,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104BW,10003781375.0,11 Lower Ridge Close,0.5309 +8335,271516,12 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,28 Jan 2017,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104BW,10003781376.0,"12, Lower Ridge Close",0.5309 +8384,105242,13 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,03 Nov 2025,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104BW,10003781377.0,13 Lower Ridge Close,0.5309 +8439,205801,14 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,03 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,72.0,BB104BW,10003781378.0,14 Lower Ridge Close,0.5309 +8495,234331,15 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,03 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB104BW,10003781379.0,15 Lower Ridge Close,0.5309 +8552,136007,16 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,25 Jun 2025,C - 69 to 80,77.0,C - 69 to 80,78.0,BB104BW,10003781380.0,16 Lower Ridge Close,0.5309 +8616,323197,17 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,01 Oct 2019,C - 69 to 80,76.0,C - 69 to 80,78.0,BB104BW,10003781381.0,"17, Lower Ridge Close",0.5309 +8677,189411,18 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,13 Jun 2023,C - 69 to 80,74.0,C - 69 to 80,74.0,BB104BW,10003781382.0,18 Lower Ridge Close,0.5309 +8738,77001,19 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,24 Sep 2009,B - 81 to 91,81.0,B - 81 to 91,82.0,BB104BW,10003781383.0,"19, Lower Ridge Close",0.5309 +8797,181844,20 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104BW,10003781385.0,20 Lower Ridge Close,0.5309 +8858,244951,21 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,22 Oct 2015,C - 69 to 80,76.0,C - 69 to 80,78.0,BB104BW,10003781386.0,"21, Lower Ridge Close",0.5309 +8917,136006,22 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,04 Oct 2025,C - 69 to 80,75.0,C - 69 to 80,75.0,BB104BW,10003781387.0,22 Lower Ridge Close,0.5309 +8970,295075,23 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,07 Nov 2017,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104BW,10003781388.0,"23, Lower Ridge Close",0.5309 +9026,119000,24 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,03 Nov 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104BW,10003781389.0,24 Lower Ridge Close,0.5309 +9080,322660,25 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,77.0,C - 69 to 80,79.0,BB104BW,10003781390.0,"25, Lower Ridge Close",0.5309 +9140,252155,26 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,75.0,BB104BW,10003781391.0,26 Lower Ridge Close,0.5309 +9199,322661,27 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,79.0,C - 69 to 80,79.0,BB104BW,10003781392.0,"27, Lower Ridge Close",0.5309 +9256,290412,28 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,02 Aug 2017,C - 69 to 80,70.0,C - 69 to 80,75.0,BB104BW,10003781393.0,"28, Lower Ridge Close",0.5309 +7796,289940,1 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: End Terrace,Domestic EPC Required,EPC Present,27 Jul 2017,D - 55 to 68,60.0,B - 81 to 91,87.0,BB104NR,100010328752.0,"1, Belmont Grove",0.4596 +7852,116222,2 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Aug 2011,D - 55 to 68,67.0,C - 69 to 80,70.0,BB104NR,100010328753.0,"2, Belmont Grove",0.4596 +7903,204087,3 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 May 2013,D - 55 to 68,68.0,B - 81 to 91,86.0,BB104NR,100010328754.0,"3, Belmont Grove",0.4596 +7955,115742,4 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,69.0,B - 81 to 91,83.0,BB104NR,100010328755.0,4 Belmont Grove,0.4596 +8003,323775,5 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Nov 2019,C - 69 to 80,75.0,B - 81 to 91,88.0,BB104NR,100010328756.0,"5, Belmont Grove",0.4596 +8254,188930,10 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Sep 2012,D - 55 to 68,58.0,B - 81 to 91,83.0,BB104NR,100010328761.0,"10, Belmont Grove",0.4652 +8354,204374,12 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: End Terrace,Domestic EPC Required,EPC Present,22 Nov 2025,D - 55 to 68,64.0,C - 69 to 80,76.0,BB104NR,100010328763.0,12 Belmont Grove,0.4652 +8463,362651,14 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Nov 2019,C - 69 to 80,71.0,B - 81 to 91,85.0,BB104NR,100010328765.0,"14, Belmont Grove",0.4652 +8635,323774,17 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: End Terrace,Domestic EPC Required,EPC Present,07 Nov 2019,C - 69 to 80,74.0,B - 81 to 91,88.0,BB104NR,100010328768.0,"17, Belmont Grove",0.4652 +8759,323773,19 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Nov 2019,C - 69 to 80,73.0,B - 81 to 91,87.0,BB104NR,100010328770.0,"19, Belmont Grove",0.4652 +13827,376681,16 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: Semi-Detached,Domestic EPC Required,EPC Present,06 May 2024,C - 69 to 80,69.0,B - 81 to 91,84.0,BB104NR,100010328767.0,16 Belmont Grove,0.4652 +7937,69666,4 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jul 2009,E - 39 to 54,46.0,D - 55 to 68,59.0,BB114ED,100010351205.0,"4, Paisley Street",0.4652 +8137,362633,8 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB114ED,100010351209.0,8 Paisley Street,0.4652 +8185,134171,9 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Jan 2012,D - 55 to 68,68.0,D - 55 to 68,68.0,BB114ED,100010351210.0,"9, Paisley Street",0.4652 +8283,362642,11 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,82.0,BB114ED,100010351212.0,11 Paisley Street,0.4705 +8339,362645,12 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB114ED,100010351213.0,12 Paisley Street,0.4705 +8443,295073,14 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Nov 2017,D - 55 to 68,63.0,B - 81 to 91,85.0,BB114ED,100010351215.0,"14, Paisley Street",0.4705 +8805,194462,20 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Nov 2012,D - 55 to 68,61.0,B - 81 to 91,81.0,BB114ED,100010351221.0,"20, Paisley Street",0.4705 +8864,245291,21 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Dec 2015,C - 69 to 80,71.0,B - 81 to 91,84.0,BB114ED,,, +8974,41057,23 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Dec 2018,D - 55 to 68,60.0,C - 69 to 80,82.0,BB114ED,100010351223.0,"23, Paisley Street",0.4705 +9678,220106,15 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Nov 2013,D - 55 to 68,59.0,B - 81 to 91,86.0,BB114ED,10023762559.0,"15, Paisley Street",0.4705 +9681,220107,17 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Nov 2013,D - 55 to 68,57.0,B - 81 to 91,84.0,BB114ED,10023762560.0,"17, Paisley Street",0.4705 +7946,76885,1 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: End Terrace,Domestic EPC Required,EPC Present,25 Aug 2009,D - 55 to 68,67.0,C - 69 to 80,72.0,BB127ED,100010337381.0,"1, Dorset Avenue, Padiham",0.6154 +7997,362624,2 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: End Terrace,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB127ED,100010337382.0,"2 Dorset Avenue, Padiham",0.6154 +8041,295523,3 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Jan 2018,D - 55 to 68,65.0,B - 81 to 91,85.0,BB127ED,100010337383.0,"3, Dorset Avenue, Padiham",0.6154 +8146,41027,5 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2009,D - 55 to 68,66.0,C - 69 to 80,72.0,BB127ED,100010337385.0,"5, Dorset Avenue, Padiham",0.6154 +8193,110638,6 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Jan 2026,D - 55 to 68,68.0,B - 81 to 91,83.0,BB127ED,100010337386.0,"6 Dorset Avenue, Padiham",0.6154 +8243,190794,7 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: End Terrace,Domestic EPC Required,EPC Present,25 Oct 2012,C - 69 to 80,69.0,B - 81 to 91,82.0,BB127ED,100010337387.0,"7, Dorset Avenue, Padiham",0.6154 +8290,76952,8 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: End Terrace,Domestic EPC Required,EPC Present,15 Jan 2026,D - 55 to 68,67.0,C - 69 to 80,74.0,BB127ED,100010337388.0,"8 Dorset Avenue, Padiham",0.6154 +8393,101654,10 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: End Terrace,Domestic EPC Required,EPC Present,14 Oct 2010,D - 55 to 68,66.0,C - 69 to 80,72.0,BB127ED,100010337390.0,"10, Dorset Avenue, Padiham",0.6185 +8454,362650,11 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127ED,100010337391.0,"11 Dorset Avenue, Padiham",0.6185 +8567,362658,13 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127ED,100010337393.0,"13 Dorset Avenue, Padiham",0.6185 +8626,89064,14 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2022,C - 69 to 80,72.0,B - 81 to 91,90.0,BB127ED,100010337394.0,"14 Dorset Avenue, Padiham",0.6185 +8690,362668,15 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: End Terrace,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB127ED,100010337395.0,"15 Dorset Avenue, Padiham",0.6185 +8006,220117,13 Rimington Avenue Burnley Lancashire BB10 4NN,,, BB10 4NN,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Sep 2024,B - 81 to 91,82.0,B - 81 to 91,85.0,BB104NN,100010354149.0,13 Rimington Avenue,0.4801 +8103,244945,136 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Nov 2025,B - 81 to 91,84.0,B - 81 to 91,87.0,BB104BG,100010328845.0,136 Belvedere Road,0.4754 +8203,107645,138 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Nov 2025,B - 81 to 91,87.0,B - 81 to 91,88.0,BB104BG,100010328847.0,138 Belvedere Road,0.4754 +8304,245147,140 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Aug 2025,C - 69 to 80,78.0,C - 69 to 80,80.0,BB104BG,100010328849.0,140 Belvedere Road,0.4754 +8408,245820,142 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Nov 2025,B - 81 to 91,90.0,A - 92 Plus,92.0,BB104BG,100010328850.0,142 Belvedere Road,0.4754 +8519,245148,144 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Oct 2015,D - 55 to 68,68.0,B - 81 to 91,89.0,BB104BG,100010328852.0,"144, Belvedere Road",0.4754 +8643,209251,146 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Nov 2025,B - 81 to 91,88.0,B - 81 to 91,90.0,BB104BG,100010328854.0,146 Belvedere Road,0.4754 +8764,323185,148 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,27 Sep 2019,C - 69 to 80,70.0,B - 81 to 91,90.0,BB104BG,100010328856.0,"148, Belvedere Road",0.4754 +8882,241365,150 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Nov 2025,B - 81 to 91,87.0,B - 81 to 91,89.0,BB104BG,100010328857.0,150 Belvedere Road,0.4754 +8991,323186,152 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,27 Sep 2019,C - 69 to 80,69.0,B - 81 to 91,91.0,BB104BG,100010328858.0,"152, Belvedere Road",0.4754 +9100,180690,154 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Nov 2025,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104BG,100010328859.0,154 Belvedere Road,0.4754 +8151,233917,3 Ruskin Street Burnley Lancashire BB10 1HT,,, BB10 1HT,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Mar 2015,D - 55 to 68,56.0,B - 81 to 91,85.0,BB101HT,100010355024.0,"3, Ruskin Street",0.4596 +8201,118346,4 Ruskin Street Burnley Lancashire BB10 1HT,,, BB10 1HT,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Aug 2011,D - 55 to 68,55.0,C - 69 to 80,69.0,BB101HT,100010355025.0,"4, Ruskin Street",0.4596 +8253,221665,5 Ruskin Street Burnley Lancashire BB10 1HT,,, BB10 1HT,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,73.0,B - 81 to 91,87.0,BB101HT,100010355026.0,"5, Ruskin Street",0.4596 +8513,41041,10 Ruskin Street Burnley Lancashire BB10 1HT,,, BB10 1HT,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Oct 2021,D - 55 to 68,63.0,B - 81 to 91,84.0,BB101HT,100010355029.0,10 Ruskin Street,0.4652 +8757,183404,14 Ruskin Street Burnley Lancashire BB10 1HT,,, BB10 1HT,House: Semi-Detached,Domestic EPC Required,EPC Present,31 May 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB101HT,100010355031.0,14 Ruskin Street,0.4652 +8876,241792,16 Ruskin Street Burnley Lancashire BB10 1HT,,, BB10 1HT,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Sep 2015,D - 55 to 68,65.0,B - 81 to 91,82.0,BB101HT,100010355032.0,"16, Ruskin Street",0.4652 +8291,110929,36 Gainsborough Avenue Burnley Lancashire BB11 2NN,,, BB11 2NN,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 May 2017,D - 55 to 68,58.0,B - 81 to 91,84.0,BB112NN,100010339269.0,"36, Gainsborough Avenue",0.4925 +8399,362646,38 Gainsborough Avenue Burnley Lancashire BB11 2NN,,, BB11 2NN,House: End Terrace,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB112NN,100010339271.0,38 Gainsborough Avenue,0.4925 +9211,179919,52 Gainsborough Avenue Burnley Lancashire BB11 2NN,,, BB11 2NN,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 May 2012,D - 55 to 68,68.0,B - 81 to 91,86.0,BB112NN,100010339285.0,"52, Gainsborough Avenue",0.4925 +9275,111190,53 Gainsborough Avenue Burnley Lancashire BB11 2NN,,, BB11 2NN,House: End Terrace,Domestic EPC Required,EPC Present,07 Jun 2017,D - 55 to 68,58.0,B - 81 to 91,83.0,BB112NN,100010339286.0,"53, Gainsborough Avenue",0.4925 +9329,111192,54 Gainsborough Avenue Burnley Lancashire BB11 2NN,,, BB11 2NN,House: End Terrace,Domestic EPC Required,EPC Present,02 Aug 2017,D - 55 to 68,66.0,B - 81 to 91,82.0,BB112NN,100010339287.0,"54, Gainsborough Avenue",0.4925 +8298,238926,1 Windermere Road Padiham Lancashire BB12 8NT,,, BB12 8NT,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Jul 2015,D - 55 to 68,61.0,B - 81 to 91,86.0,BB128NT,100010361180.0,"1, Windermere Road, Padiham",0.6214 +8405,94906,3 Windermere Road Padiham Lancashire BB12 8NT,,, BB12 8NT,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Apr 2010,C - 69 to 80,73.0,C - 69 to 80,74.0,BB128NT,100010361182.0,"3, Windermere Road, Padiham",0.6214 +8512,362654,5 Windermere Road Padiham Lancashire BB12 8NT,,, BB12 8NT,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,29 Jul 2023,C - 69 to 80,70.0,B - 81 to 91,89.0,BB128NT,100010361184.0,"5 Windermere Road, Padiham",0.6214 +8639,362662,7 Windermere Road Padiham Lancashire BB12 8NT,,, BB12 8NT,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Jun 2022,D - 55 to 68,64.0,B - 81 to 91,89.0,BB128NT,100010361186.0,"7 Windermere Road, Padiham",0.6214 +8700,267332,8 Windermere Road Padiham Lancashire BB12 8NT,,, BB12 8NT,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Oct 2016,D - 55 to 68,65.0,B - 81 to 91,85.0,BB128NT,100010361187.0,"8, Windermere Road, Padiham",0.6214 +8761,163336,9 Windermere Road Padiham Lancashire BB12 8NT,,, BB12 8NT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,20 Apr 2012,D - 55 to 68,64.0,B - 81 to 91,88.0,BB128NT,100010361188.0,"9, Windermere Road, Padiham",0.6214 +8880,221676,11 Windermere Road Padiham Lancashire BB12 8NT,,, BB12 8NT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,65.0,B - 81 to 91,87.0,BB128NT,100010361190.0,"11, Windermere Road, Padiham",0.6242 +8988,180133,13 Windermere Road Padiham Lancashire BB12 8NT,,, BB12 8NT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,26 Jun 2024,C - 69 to 80,75.0,B - 81 to 91,84.0,BB128NT,100010361192.0,"13 Windermere Road, Padiham",0.6242 +9099,77018,15 Windermere Road Padiham Lancashire BB12 8NT,,, BB12 8NT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,09 Oct 2009,D - 55 to 68,65.0,C - 69 to 80,70.0,BB128NT,100010361194.0,"15, Windermere Road, Padiham",0.6242 +8391,241567,1 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,18 Sep 2015,C - 69 to 80,75.0,C - 69 to 80,78.0,BB113BE,100012537241.0,"1 Holmes Square, Holmes Street",0.4674 +8449,95857,2 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113BE,100012537242.0,"2 Holmes Square, Holmes Street",0.4674 +8504,241784,3 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,18 Sep 2015,C - 69 to 80,76.0,C - 69 to 80,78.0,BB113BE,100012537243.0,"3 Holmes Square, Holmes Street",0.4674 +8566,242994,4 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113BE,100012537244.0,"4 Holmes Square, Holmes Street",0.4674 +8625,209473,5 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,76.0,C - 69 to 80,79.0,BB113BE,100012537245.0,"5 Holmes Square, Holmes Street",0.4674 +8689,209472,6 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113BE,100012537246.0,"6 Holmes Square, Holmes Street",0.4674 +8748,241787,7 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,18 Sep 2015,C - 69 to 80,74.0,C - 69 to 80,78.0,BB113BE,100012537247.0,"7 Holmes Square, Holmes Street",0.4674 +8812,242996,8 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,75.0,C - 69 to 80,78.0,BB113BE,100012537248.0,"8 Holmes Square, Holmes Street",0.4674 +8871,241788,9 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,18 Sep 2015,C - 69 to 80,74.0,C - 69 to 80,78.0,BB113BE,100012537249.0,"9 Holmes Square, Holmes Street",0.4674 +8926,242997,10 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113BE,100012537250.0,"10 Holmes Square, Holmes Street",0.4708 +8975,241790,11 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,18 Sep 2015,C - 69 to 80,74.0,C - 69 to 80,78.0,BB113BE,100012537251.0,"11 Holmes Square, Holmes Street",0.4708 +9036,242998,12 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,75.0,C - 69 to 80,78.0,BB113BE,100012537252.0,"12 Holmes Square, Holmes Street",0.4708 +9150,180996,14 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113BE,100012537255.0,"14 Holmes Square, Holmes Street",0.4708 +9207,245785,15 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,73.0,C - 69 to 80,78.0,BB113BE,100012537103.0,"15 Holmes Square, Holmes Street",0.4708 +9265,244961,16 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,22 Oct 2015,C - 69 to 80,79.0,C - 69 to 80,79.0,BB113BE,100012537104.0,"16 Holmes Square, Holmes Street",0.4708 +9322,241796,17 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,18 Sep 2015,C - 69 to 80,73.0,C - 69 to 80,77.0,BB113BE,100012537105.0,"17 Holmes Square, Holmes Street",0.4708 +9384,204823,18 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,74.0,C - 69 to 80,76.0,BB113BE,100012537106.0,"18 Holmes Square, Holmes Street",0.4708 +9439,252160,19 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,75.0,C - 69 to 80,76.0,BB113BE,100012537107.0,"19 Holmes Square, Holmes Street",0.4708 +9496,192367,20 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,18 Sep 2015,C - 69 to 80,77.0,C - 69 to 80,80.0,BB113BE,100012537108.0,"20 Holmes Square, Holmes Street",0.4708 +9542,196093,21 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,75.0,C - 69 to 80,77.0,BB113BE,100012537109.0,"21 Holmes Square, Holmes Street",0.4708 +9598,241798,22 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,18 Sep 2015,C - 69 to 80,74.0,C - 69 to 80,78.0,BB113BE,100012537110.0,"22 Holmes Square, Holmes Street",0.4708 +8440,362649,15 Hapton Street Padiham Lancashire BB12 8QS,,, BB12 8QS,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB128QS,100010341060.0,"15 Hapton Street, Padiham",0.6185 +8445,89762,227 Barden Lane Burnley Lancashire BB10 1HY,,, BB10 1HY,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jan 2026,D - 55 to 68,64.0,C - 69 to 80,85.0,BB101HY,100010328226.0,227 Barden Lane,0.4596 +8459,110932,37 Florence Avenue Burnley Lancashire BB11 5LR,,, BB11 5LR,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Aug 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115LR,100010338925.0,37 Florence Avenue,0.4754 +8572,220701,39 Florence Avenue Burnley Lancashire BB11 5LR,,, BB11 5LR,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Dec 2013,D - 55 to 68,68.0,B - 81 to 91,87.0,BB115LR,100010338926.0,"39, Florence Avenue",0.4754 +8471,240428,143 Belvedere Road Burnley Lancashire BB10 4BQ,,, BB10 4BQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Aug 2015,D - 55 to 68,67.0,B - 81 to 91,88.0,BB104BQ,100010328851.0,"143, Belvedere Road",0.4754 +8585,136631,145 Belvedere Road Burnley Lancashire BB10 4BQ,,, BB10 4BQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Aug 2015,C - 69 to 80,71.0,B - 81 to 91,90.0,BB104BQ,100010328853.0,"145, Belvedere Road",0.4754 +8708,240429,147 Belvedere Road Burnley Lancashire BB10 4BQ,,, BB10 4BQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Aug 2015,D - 55 to 68,65.0,B - 81 to 91,87.0,BB104BQ,100010328855.0,"147, Belvedere Road",0.4754 +8475,250074,1 Barley Grove Burnley Lancashire BB10 4QP,,, BB10 4QP,House: End Terrace,Domestic EPC Required,EPC Present,12 May 2016,C - 69 to 80,71.0,B - 81 to 91,89.0,BB104QP,100010328313.0,"1, Barley Grove",0.4536 +8651,250075,4 Barley Grove Burnley Lancashire BB10 4QP,,, BB10 4QP,House: Semi-Detached,Domestic EPC Required,EPC Present,12 May 2016,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104QP,100010328316.0,"4, Barley Grove",0.4536 +9349,250587,16 Barley Grove Burnley Lancashire BB10 4QP,,, BB10 4QP,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Jun 2016,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104QP,100010328328.0,"16, Barley Grove",0.4596 +8563,41044,50 Woodbine Road Burnley Lancashire BB12 6QS,,, BB12 6QS,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Mar 2009,D - 55 to 68,58.0,C - 69 to 80,70.0,BB126QS,100010361377.0,"50, Woodbine Road",0.4652 +8590,324694,84 Morse Street Burnley Lancashire BB10 4PB,,, BB10 4PB,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2019,D - 55 to 68,58.0,B - 81 to 91,82.0,BB104PB,100010349500.0,"84, Morse Street",0.4596 +8706,324693,86 Morse Street Burnley Lancashire BB10 4PB,,, BB10 4PB,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jul 2024,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104PB,100010349502.0,86 Morse Street,0.4596 +9169,267112,94 Morse Street Burnley Lancashire BB10 4PB,,, BB10 4PB,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Oct 2016,D - 55 to 68,66.0,B - 81 to 91,85.0,BB104PB,100010349509.0,"94, Morse Street",0.4596 +9288,324692,96 Morse Street Burnley Lancashire BB10 4PB,,, BB10 4PB,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2019,D - 55 to 68,66.0,B - 81 to 91,85.0,BB104PB,100010349511.0,"96, Morse Street",0.4596 +8603,252185,1 Thirlmere Avenue Burnley Lancashire BB10 1HS,,, BB10 1HS,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Oct 2011,D - 55 to 68,66.0,C - 69 to 80,70.0,BB101HS,100010355125.0,"1, Rydal Street",0.1422 +9010,326165,14 Rydal Street Burnley Lancashire BB10 1HS,,, BB10 1HS,House: End Terrace,Domestic EPC Required,EPC Present,03 Feb 2020,C - 69 to 80,71.0,B - 81 to 91,86.0,BB101HS,100010355138.0,"14, Rydal Street",0.4596 +9123,326166,16 Rydal Street Burnley Lancashire BB10 1HS,,, BB10 1HS,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Feb 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB101HS,100010355140.0,"16, Rydal Street",0.4596 +9360,110830,20 Rydal Street Burnley Lancashire BB10 1HS,,, BB10 1HS,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Sep 2021,D - 55 to 68,58.0,B - 81 to 91,81.0,BB101HS,100010355144.0,20 Rydal Street,0.4596 +8665,325558,1 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,73.0,B - 81 to 91,88.0,BB102QQ,10003758306.0,"1, Humber Square",0.4596 +8727,226277,2 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jan 2026,C - 69 to 80,69.0,C - 69 to 80,76.0,BB102QQ,10003758317.0,2 Humber Square,0.4596 +8791,220023,3 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Nov 2013,C - 69 to 80,74.0,B - 81 to 91,89.0,BB102QQ,10003758316.0,"3, Humber Square",0.4596 +8907,110675,5 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Oct 2017,C - 69 to 80,72.0,B - 81 to 91,87.0,BB102QQ,10003758311.0,"5, Humber Square",0.4596 +8965,210866,6 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Sep 2013,C - 69 to 80,73.0,B - 81 to 91,86.0,BB102QQ,10003758310.0,"6, Humber Square",0.4596 +9013,325556,7 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,70.0,B - 81 to 91,86.0,BB102QQ,10003758309.0,"7, Humber Square",0.4596 +9071,325557,8 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102QQ,10003758308.0,"8, Humber Square",0.4596 +9128,76957,9 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,17 Sep 2009,C - 69 to 80,70.0,C - 69 to 80,71.0,BB102QQ,10003758307.0,"9, Humber Square",0.4596 +9189,41066,10 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2009,D - 55 to 68,66.0,C - 69 to 80,70.0,BB102QQ,10003758318.0,"10, Humber Square",0.4652 +9248,89773,11 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,02 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,89.0,BB102QQ,10003758313.0,11 Humber Square,0.4652 +9305,234529,12 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,14 Apr 2015,D - 55 to 68,66.0,B - 81 to 91,89.0,BB102QQ,10003758314.0,"12, Humber Square",0.4652 +9424,110785,14 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Jul 2023,C - 69 to 80,71.0,B - 81 to 91,89.0,BB102QQ,10003758315.0,14 Humber Square,0.4652 +8724,252158,3 Thirlmere Avenue Burnley Lancashire BB10 1HU,,, BB10 1HU,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2014,D - 55 to 68,58.0,C - 69 to 80,80.0,BB101HU,100010358196.0,3 Thirlmere Avenue,0.4754 +9241,98165,12 Thirlmere Avenue Burnley Lancashire BB10 1HU,,, BB10 1HU,House: End Terrace,Domestic EPC Required,EPC Present,20 Aug 2010,E - 39 to 54,53.0,D - 55 to 68,61.0,BB101HU,100010358205.0,"12, Thirlmere Avenue",0.4801 +9354,326179,14 Thirlmere Avenue Burnley Lancashire BB10 1HU,,, BB10 1HU,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Feb 2020,C - 69 to 80,72.0,B - 81 to 91,87.0,BB101HU,100010358207.0,"14, Thirlmere Avenue",0.4801 +9525,224910,17 Thirlmere Avenue Burnley Lancashire BB10 1HU,,, BB10 1HU,House: Semi-Detached,Domestic EPC Required,EPC Present,12 May 2014,D - 55 to 68,65.0,B - 81 to 91,87.0,BB101HU,100010358210.0,"17, Thirlmere Avenue",0.4801 +9576,112888,18 Thirlmere Avenue Burnley Lancashire BB10 1HU,,, BB10 1HU,House: Semi-Detached,Domestic EPC Required,EPC Present,30 May 2011,E - 39 to 54,51.0,D - 55 to 68,68.0,BB101HU,100010358211.0,"18, Thirlmere Avenue",0.4801 +8742,362671,1 Milbrook Close Burnley Lancashire BB11 5RY,,, BB11 5RY,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB115RY,10003781774.0,1 Milbrook Close,0.4652 +8801,295076,2 Milbrook Close Burnley Lancashire BB11 5RY,,, BB11 5RY,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Nov 2017,C - 69 to 80,70.0,B - 81 to 91,86.0,BB115RY,10003781775.0,"2, Milbrook Close",0.4652 +8861,221658,3 Milbrook Close Burnley Lancashire BB11 5RY,,, BB11 5RY,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Dec 2025,C - 69 to 80,71.0,B - 81 to 91,84.0,BB115RY,10003781776.0,3 Milbrook Close,0.4652 +9029,41058,6 Milbrook Close Burnley Lancashire BB11 5RY,,, BB11 5RY,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Feb 2026,C - 69 to 80,77.0,B - 81 to 91,83.0,BB115RY,10003781779.0,"6, Milbrook Close",0.4652 +9083,252230,7 Milbrook Close Burnley Lancashire BB11 5RY,,, BB11 5RY,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Jul 2018,C - 69 to 80,69.0,B - 81 to 91,84.0,BB115RY,10003781780.0,"7, Milbrook Close",0.4652 +9143,210894,8 Milbrook Close Burnley Lancashire BB11 5RY,,, BB11 5RY,House: End Terrace,Domestic EPC Required,EPC Present,09 Aug 2013,D - 55 to 68,67.0,B - 81 to 91,86.0,BB115RY,10003781781.0,"8, Milbrook Close",0.4652 +8807,272781,22 Granby Street Burnley Lancashire BB12 0PP,,, BB12 0PP,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Mar 2017,D - 55 to 68,63.0,B - 81 to 91,85.0,BB120PP,100010340072.0,"22, Granby Street",0.4652 +13698,358090,4 Granby Street Burnley Lancashire BB12 0PP,,, BB12 0PP,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Mar 2015,C - 69 to 80,75.0,B - 81 to 91,91.0,BB120PP,100010340056.0,"4, Granby Street",0.4596 +8852,41052,10 Travis Street Burnley Lancashire BB10 1DQ,,, BB10 1DQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 May 2009,C - 69 to 80,71.0,C - 69 to 80,71.0,BB101DQ,100010358945.0,"10, Travis Street",0.4652 +8884,362680,14 Bute Street Burnley Lancashire BB11 4EX,,, BB11 4EX,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,91.0,BB114EX,100010332409.0,14 Bute Street,0.4536 +9181,362697,6 Douglas Way Briercliffe Burnley Lancashire BB10 2JH,,, BB10 2JH,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB102JH,100010337455.0,"6 Douglas Way, Briercliffe",0.5494 +9298,362703,8 Douglas Way Briercliffe Burnley Lancashire BB10 2JH,,, BB10 2JH,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,70.0,B - 81 to 91,83.0,BB102JH,100010337457.0,"8 Douglas Way, Briercliffe",0.5494 +9263,324549,5 Grindleton Grove Burnley Lancashire BB10 4NT,,, BB10 4NT,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Nov 2019,D - 55 to 68,66.0,B - 81 to 91,90.0,BB104NT,100010340694.0,"5, Grindleton Grove",0.4754 +9548,118995,76 Westgate Burnley Lancashire BB11 1RY,,, BB11 1RY,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Jun 2009,E - 39 to 54,53.0,D - 55 to 68,59.0,BB111RY,100010360530.0,"76, Westgate",0.3707 +11667,367842,40 Westgate (Acorn) Burnley Lancashire BB11 1RY,,, BB11 1RY,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Aug 2009,D - 55 to 68,56.0,D - 55 to 68,58.0,BB111RY,100010360521.0,"40, Westgate",0.3232 +9600,341703,10 Willis Street Burnley Lancashire BB11 4LU,,, BB11 4LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Oct 2021,C - 69 to 80,72.0,B - 81 to 91,91.0,BB114LU,100010361030.0,10 Willis Street,0.4652 +9685,134167,12 Primet Heights Colne Lancashire BB8 8EF,,, BB8 8EF,Bungalow: Detached,Domestic EPC Required,EPC Present,04 Dec 2024,D - 55 to 68,62.0,C - 69 to 80,69.0,BB88EF,10024179517.0,12 Primet Heights,0.4803 +9698,41087,16 Adlington Street Burnley Lancashire BB11 2SQ,,, BB11 2SQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Oct 2008,E - 39 to 54,52.0,D - 55 to 68,57.0,BB112SQ,100010326777.0,"16, Adlington Street",0.4801 +9763,252226,2 Brock Bank Rossendale Lancashire BB4 9LH,,, BB4 9LH,Bungalow: Detached,Domestic EPC Required,EPC Present,29 Jul 2025,C - 69 to 80,70.0,C - 69 to 80,75.0,BB49LH,100012410647.0,2 Brock Bank,0.4341 +10810,182641,53 Waterloo Road Burnley Lancashire BB11 3AL,,, BB11 3AL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,23 Jul 2012,C - 69 to 80,79.0,A - 92 Plus,94.0,BB113AL,10014136336.0,"53, Waterloo Road",0.4652 +10811,89441,51 Waterloo Road Burnley Lancashire BB11 3AL,,, BB11 3AL,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Nov 2009,B - 81 to 91,83.0,B - 81 to 91,83.0,BB113AL,200002316793.0,"51, Waterloo Road",0.4652 +10812,41090,55 Waterloo Road Burnley Lancashire BB11 3AL,,, BB11 3AL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Aug 2024,C - 69 to 80,79.0,A - 92 Plus,93.0,BB113AL,200002431574.0,55 Waterloo Road,0.4652 +10813,88998,57 Waterloo Road Burnley Lancashire BB11 3AL,,, BB11 3AL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Oct 2009,B - 81 to 91,84.0,B - 81 to 91,84.0,BB113AL,10014136338.0,"57, Waterloo Road",0.4652 +10814,197948,59 Waterloo Road Burnley Lancashire BB11 3AL,,, BB11 3AL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,26 Feb 2013,C - 69 to 80,79.0,A - 92 Plus,94.0,BB113AL,200002456087.0,"59, Waterloo Road",0.4652 +10815,94857,61 Waterloo Road Burnley Lancashire BB11 3AL,,, BB11 3AL,Bungalow: End Terr,Domestic EPC Required,EPC Present,29 Mar 2010,B - 81 to 91,81.0,B - 81 to 91,81.0,BB113AL,200002307829.0,"61, Waterloo Road",0.4652 +10816,230656,35 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,76.0,B - 81 to 91,88.0,BB113AH,10014136768.0,35 Hirst Gardens,0.4652 +10817,107644,34 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,23 Feb 2011,B - 81 to 91,84.0,B - 81 to 91,84.0,BB113AH,10014136767.0,"34, Hirst Gardens",0.4652 +10818,328072,33 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136766.0,"33, Hirst Gardens",0.4652 +10819,41091,32 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Oct 2022,C - 69 to 80,74.0,B - 81 to 91,88.0,BB113AH,10014136765.0,32 Hirst Gardens,0.4652 +10820,328073,31 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136764.0,"31, Hirst Gardens",0.4652 +10821,117330,30 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,05 Aug 2024,C - 69 to 80,77.0,B - 81 to 91,90.0,BB113AH,10014136701.0,30 Hirst Gardens,0.4652 +10822,221648,29 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Sep 2014,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136700.0,"29, Hirst Gardens",0.4652 +10823,227308,28 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Jul 2014,C - 69 to 80,80.0,B - 81 to 91,91.0,BB113AH,10014136698.0,"28, Hirst Gardens",0.4652 +10824,245457,27 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Dec 2015,C - 69 to 80,79.0,B - 81 to 91,91.0,BB113AH,10014136696.0,"27, Hirst Gardens",0.4652 +10825,328074,26 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136695.0,"26, Hirst Gardens",0.4652 +10826,221139,25 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,13 Dec 2013,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136694.0,"25, Hirst Gardens",0.4652 +10827,205798,24 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,11 Jun 2013,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136763.0,"24, Hirst Gardens",0.4652 +10828,274695,23 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Jun 2017,C - 69 to 80,76.0,C - 69 to 80,76.0,BB113AH,10014136693.0,"23, Hirst Gardens",0.4652 +10829,328075,22 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136691.0,"22, Hirst Gardens",0.4652 +10830,105243,21 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Jan 2011,B - 81 to 91,83.0,B - 81 to 91,83.0,BB113AH,10014136762.0,"21, Hirst Gardens",0.4652 +10831,134545,20 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Feb 2012,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113AH,10014136690.0,"20, Hirst Gardens",0.4652 +10832,362716,19 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,77.0,B - 81 to 91,91.0,BB113AH,10014136689.0,19 Hirst Gardens,0.4652 +10833,272189,18 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Feb 2017,C - 69 to 80,79.0,A - 92 Plus,92.0,BB113AH,10014136688.0,"18, Hirst Gardens",0.4652 +10834,125271,17 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,01 Dec 2011,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113AH,10014136686.0,"17, Hirst Gardens",0.4652 +10835,328076,16 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136761.0,"16, Hirst Gardens",0.4652 +10836,230224,15 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Nov 2014,C - 69 to 80,80.0,A - 92 Plus,94.0,BB113AH,10014136685.0,"15, Hirst Gardens",0.4652 +10837,183758,14 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,02 Aug 2012,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136684.0,"14, Hirst Gardens",0.4652 +10838,229248,12 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,15 Oct 2014,C - 69 to 80,77.0,A - 92 Plus,92.0,BB113AH,10014136683.0,"12, Hirst Gardens",0.4652 +10839,194529,11 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Nov 2021,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136682.0,11 Hirst Gardens,0.4652 +10840,197463,10 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Sep 2023,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136681.0,10 Hirst Gardens,0.4652 +10841,328077,9 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136680.0,"9, Hirst Gardens",0.4596 +10842,163897,8 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Apr 2012,C - 69 to 80,77.0,B - 81 to 91,91.0,BB113AH,10014136679.0,"8, Hirst Gardens",0.4596 +10843,116414,7 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,17 Aug 2011,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113AH,10014136678.0,"7, Hirst Gardens",0.4596 +10844,328078,6 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,77.0,B - 81 to 91,91.0,BB113AH,10014136760.0,"6, Hirst Gardens",0.4596 +10845,328079,5 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136677.0,"5, Hirst Gardens",0.4596 +10846,219729,4 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Nov 2013,C - 69 to 80,79.0,B - 81 to 91,91.0,BB113AH,10014136676.0,"4, Hirst Gardens",0.4596 +10847,328066,3 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014137709.0,"3, Hirst Gardens",0.4596 +10848,89058,2 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,10 Jun 2021,C - 69 to 80,77.0,B - 81 to 91,91.0,BB113AH,10014137708.0,2 HIRST GARDENS,0.4596 +10849,328065,1 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,77.0,B - 81 to 91,91.0,BB113AH,10014136675.0,"1, Hirst Gardens",0.4596 +10850,89070,77 Laithe Street Burnley Lancashire BB11 2LJ,,, BB11 2LJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Nov 2009,C - 69 to 80,69.0,C - 69 to 80,76.0,BB112LJ,100010345254.0,"77, Laithe Street",0.4652 +13147,337940,72 Laithe Street Burnley Lancashire BB11 2LJ,,, BB11 2LJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Mar 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB112LJ,100010345249.0,"72 LAITHE STREET, BURNLEY",0.6185 +13475,357168,78 Laithe Street Burnley Lancashire BB11 2LJ,,, BB11 2LJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Jul 2022,C - 69 to 80,75.0,A - 92 Plus,92.0,BB112LJ,100010345255.0,78 Laithe Street,0.4652 +10852,116211,41 Wren Street Burnley Lancashire BB12 6QT,,, BB12 6QT,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Jul 2011,C - 69 to 80,70.0,C - 69 to 80,70.0,BB126QT,100010361599.0,"41, Wren Street",0.4536 +10856,41092,71 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Sep 2008,B - 81 to 91,83.0,B - 81 to 91,85.0,BB113DU,,, +10858,41093,73 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Sep 2008,B - 81 to 91,83.0,B - 81 to 91,85.0,BB113DU,,, +10859,41094,75 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: End Terrace,Domestic EPC Required,EPC Present,02 Sep 2008,B - 81 to 91,81.0,B - 81 to 91,83.0,BB113DU,,, +10860,41095,77 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: End Terrace,Domestic EPC Required,EPC Present,03 Sep 2008,B - 81 to 91,81.0,B - 81 to 91,83.0,BB113DU,,, +10861,250133,79 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 May 2016,C - 69 to 80,77.0,B - 81 to 91,88.0,BB113DU,10014137650.0,"79, Straight Mile Court",0.5389 +10862,41097,81 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Sep 2008,B - 81 to 91,83.0,B - 81 to 91,85.0,BB113DU,,, +10863,41098,83 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: End Terrace,Domestic EPC Required,EPC Present,03 Sep 2008,B - 81 to 91,81.0,B - 81 to 91,83.0,BB113DU,,, +10864,41099,87 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Sep 2008,B - 81 to 91,83.0,B - 81 to 91,85.0,BB113DU,,, +10865,41100,89 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Sep 2008,B - 81 to 91,83.0,B - 81 to 91,85.0,BB113DU,,, +10867,41101,91 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: End Terrace,Domestic EPC Required,EPC Present,02 Sep 2008,B - 81 to 91,81.0,B - 81 to 91,83.0,BB113DU,,, +10899,95347,5 Walpole Street Burnley Lancashire BB10 1SW,,, BB10 1SW,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Aug 2009,E - 39 to 54,48.0,D - 55 to 68,60.0,BB101SW,100010359702.0,"5, Walpole Street",0.4652 +10907,99051,26 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jun 2008,B - 81 to 91,81.0,B - 81 to 91,83.0,OL139DW,,, +10908,99014,28 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jun 2008,B - 81 to 91,81.0,B - 81 to 91,83.0,OL139DW,,, +10909,202630,24 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: End Terrace,Domestic EPC Required,EPC Present,18 Apr 2013,C - 69 to 80,78.0,B - 81 to 91,88.0,OL139DW,10014224188.0,"24, Pendle Avenue",0.4717 +10967,107619,34 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jan 2011,B - 81 to 91,88.0,B - 81 to 91,88.0,OL139DW,10014224193.0,"34, Pendle Avenue",0.4717 +10968,221625,36 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,80.0,A - 92 Plus,92.0,OL139DW,10014224194.0,"36, Pendle Avenue",0.4717 +10969,107623,42 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Feb 2011,B - 81 to 91,88.0,B - 81 to 91,88.0,OL139DW,10014224197.0,"42, Pendle Avenue",0.4717 +10970,107624,44 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jan 2011,B - 81 to 91,88.0,B - 81 to 91,88.0,OL139DW,10014224198.0,"44, Pendle Avenue",0.4717 +10971,107627,50 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jan 2011,B - 81 to 91,88.0,B - 81 to 91,88.0,OL139DW,10014224201.0,"50, Pendle Avenue",0.4717 +10972,107618,32 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: End Terrace,Domestic EPC Required,EPC Present,14 Jan 2011,B - 81 to 91,87.0,B - 81 to 91,87.0,OL139DW,10014224192.0,"32, Pendle Avenue",0.4717 +10973,107621,38 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,78.0,B - 81 to 91,90.0,OL139DW,10014224195.0,"38, Pendle Avenue",0.4717 +10974,107622,40 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: End Terrace,Domestic EPC Required,EPC Present,14 Jan 2011,B - 81 to 91,87.0,B - 81 to 91,87.0,OL139DW,10014224196.0,"40, Pendle Avenue",0.4717 +10975,107625,46 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: End Terrace,Domestic EPC Required,EPC Present,14 Dec 2021,C - 69 to 80,79.0,B - 81 to 91,91.0,OL139DW,10014224199.0,46 Pendle Avenue,0.4717 +10976,107626,48 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: End Terrace,Domestic EPC Required,EPC Present,14 Jan 2011,B - 81 to 91,87.0,B - 81 to 91,87.0,OL139DW,10014224200.0,"48, Pendle Avenue",0.4717 +10977,107617,52 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: End Terrace,Domestic EPC Required,EPC Present,14 Jan 2011,B - 81 to 91,87.0,B - 81 to 91,87.0,OL139DW,10014224202.0,"52, Pendle Avenue",0.4717 +10912,99106,30 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Bottom,Domestic EPC Required,EPC Present,10 Mar 2010,C - 69 to 80,76.0,C - 69 to 80,78.0,BB112QG,100010341822.0,"30, Healey Mount",0.4596 +10913,99109,31 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Bottom,Domestic EPC Required,EPC Present,10 Mar 2010,C - 69 to 80,77.0,C - 69 to 80,80.0,BB112QG,100010341823.0,"31, Healey Mount",0.4596 +10914,99112,32 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Bottom,Domestic EPC Required,EPC Present,23 Nov 2021,D - 55 to 68,62.0,C - 69 to 80,71.0,BB112QG,100010341824.0,32 Healey Mount,0.4596 +10915,99115,33 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Top,Domestic EPC Required,EPC Present,10 Mar 2010,C - 69 to 80,79.0,B - 81 to 91,83.0,BB112QG,100010341825.0,"33, Healey Mount",0.4596 +10916,99119,34 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Top,Domestic EPC Required,EPC Present,10 Mar 2010,C - 69 to 80,79.0,B - 81 to 91,84.0,BB112QG,100010341826.0,"34, Healey Mount",0.4596 +10917,99077,35 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Top,Domestic EPC Required,EPC Present,10 Mar 2010,C - 69 to 80,78.0,B - 81 to 91,83.0,BB112QG,100010341827.0,"35, Healey Mount",0.4596 +10918,99083,36 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Bottom,Domestic EPC Required,EPC Present,11 Jul 2022,C - 69 to 80,74.0,C - 69 to 80,77.0,BB112QG,100010341828.0,36 Healey Mount,0.4596 +10919,99086,37 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Bottom,Domestic EPC Required,EPC Present,10 Mar 2010,C - 69 to 80,77.0,C - 69 to 80,80.0,BB112QG,100010341829.0,"37, Healey Mount",0.4596 +10920,99089,38 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Middle,Domestic EPC Required,EPC Present,10 Mar 2010,B - 81 to 91,83.0,B - 81 to 91,86.0,BB112QG,100010341830.0,"38, Healey Mount",0.4596 +10921,99092,39 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Top,Domestic EPC Required,EPC Present,10 Mar 2010,C - 69 to 80,80.0,B - 81 to 91,84.0,BB112QG,100010341831.0,"39, Healey Mount",0.4596 +10922,99096,40 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Middle,Domestic EPC Required,EPC Present,10 Mar 2010,B - 81 to 91,81.0,B - 81 to 91,84.0,BB112QG,100010341832.0,"40, Healey Mount",0.4596 +10923,99099,41 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Top,Domestic EPC Required,EPC Present,10 Mar 2010,C - 69 to 80,78.0,B - 81 to 91,83.0,BB112QG,100010341833.0,"41, Healey Mount",0.4596 +10931,252231,Flat 1 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Bottom,Domestic EPC Required,EPC Present,27 Oct 2009,D - 55 to 68,55.0,D - 55 to 68,63.0,BB47SS,100012410769.0,"1 Litchford House, Edge Lane",0.535 +10935,116208,Flat 2 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2024,D - 55 to 68,64.0,C - 69 to 80,75.0,BB47SS,100012410770.0,"2 Litchford House, Edge Lane",0.535 +10936,180997,Flat 3 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jun 2012,C - 69 to 80,70.0,C - 69 to 80,77.0,BB47SS,100012410771.0,"3 Litchford House, Edge Lane",0.535 +10937,252233,Flat 4 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Bottom,Domestic EPC Required,EPC Present,27 Oct 2009,D - 55 to 68,57.0,D - 55 to 68,63.0,BB47SS,100012410772.0,"4 Litchford House, Edge Lane",0.535 +10938,136671,Flat 5 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Top,Domestic EPC Required,EPC Present,28 Feb 2012,D - 55 to 68,63.0,C - 69 to 80,71.0,BB47SS,100012410773.0,"5 Litchford House, Edge Lane",0.535 +10939,252175,Flat 6 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Top,Domestic EPC Required,EPC Present,27 Oct 2009,C - 69 to 80,73.0,C - 69 to 80,80.0,BB47SS,100012410774.0,"6 Litchford House, Edge Lane",0.535 +10940,221140,Flat 7 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Middle,Domestic EPC Required,EPC Present,13 Dec 2013,C - 69 to 80,75.0,C - 69 to 80,78.0,BB47SS,100012410775.0,"7 Litchford House, Edge Lane",0.535 +10941,204372,Flat 8 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Bottom,Domestic EPC Required,EPC Present,20 May 2013,D - 55 to 68,64.0,C - 69 to 80,71.0,BB47SS,100012410776.0,"8 Litchford House, Edge Lane",0.535 +10942,252227,Flat 9 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Top,Domestic EPC Required,EPC Present,25 Sep 2025,E - 39 to 54,41.0,C - 69 to 80,74.0,BB47SS,100012410777.0,"9 Litchford House, Edge Lane",0.535 +10943,115720,Flat 10 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Top,Domestic EPC Required,EPC Present,11 Oct 2022,E - 39 to 54,53.0,C - 69 to 80,78.0,BB47SS,100012410778.0,"10 Litchford House, Edge Lane",0.538 +10934,252229,Flat 1 Carter Place Woodlands Road Nelson Lancashire BB9 9JX,,, BB9 9JX,Flat: Bottom,Domestic EPC Required,EPC Present,27 Oct 2009,D - 55 to 68,60.0,D - 55 to 68,66.0,BB99JX,100012550862.0,"1, Carter Place, Woodlands Road",0.5531 +10944,252221,Flat 3 Carter Place Woodlands Road Nelson Lancashire BB9 9JX,,, BB9 9JX,Flat: Top,Domestic EPC Required,EPC Present,27 Oct 2009,D - 55 to 68,68.0,C - 69 to 80,76.0,BB99JX,100012550863.0,"3, Carter Place, Woodlands Road",0.5531 +10945,252187,Flat 5 Carter Place Woodlands Road Nelson Lancashire BB9 9JX,,, BB9 9JX,Flat: Top,Domestic EPC Required,EPC Present,27 Oct 2009,D - 55 to 68,68.0,C - 69 to 80,79.0,BB99JX,100012550864.0,"5, Carter Place, Woodlands Road",0.5531 +10946,252228,Flat 7 Carter Place Woodlands Road Nelson Lancashire BB9 9JX,,, BB9 9JX,Flat: Bottom,Domestic EPC Required,EPC Present,27 Oct 2009,D - 55 to 68,63.0,D - 55 to 68,68.0,BB99JX,100012550865.0,"7, Carter Place, Woodlands Road",0.5531 +10947,192266,Flat 9 Carter Place Woodlands Road Nelson Lancashire BB9 9JX,,, BB9 9JX,Flat: Top,Domestic EPC Required,EPC Present,27 Oct 2021,D - 55 to 68,66.0,C - 69 to 80,75.0,BB99JX,100012550866.0,"9 Carter Place, Woodlands Road",0.5531 +10950,234535,Flat 1 Preston Beck Water Street Earby Lancashire BB18 6QS,,, BB18 6QS,Flat: Bottom,Domestic EPC Required,EPC Present,14 Jun 2025,C - 69 to 80,57.0,C - 69 to 80,79.0,BB186QS,100012400104.0,"Flat 1 Preston Beck, Water Street, Earby",0.7321 +10951,119033,Flat 2 Preston Beck Water Street Earby Lancashire BB18 6QS,,, BB18 6QS,Flat: Bottom,Domestic EPC Required,EPC Present,12 Oct 2011,D - 55 to 68,67.0,C - 69 to 80,74.0,BB186QS,100012400105.0,"Flat 2, Preston Beck, Water Street, Earby",0.7321 +10952,252225,Flat 3 Preston Beck Water Street Earby Lancashire BB18 6QS,,, BB18 6QS,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2009,D - 55 to 68,65.0,C - 69 to 80,73.0,BB186QS,100012400106.0,"Flat 3 Preston Beck, Water Street, Earby",0.7321 +10953,204345,Flat 4 Preston Beck Water Street Earby Lancashire BB18 6QS,,, BB18 6QS,Flat: Top,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,69.0,C - 69 to 80,79.0,BB186QS,100012400107.0,"Flat 4 Preston Beck, Water Street, Earby",0.7321 +10954,129478,Flat 5 Preston Beck Water Street Earby Lancashire BB18 6QS,,, BB18 6QS,Flat: Top,Domestic EPC Required,EPC Present,05 Jan 2012,D - 55 to 68,61.0,D - 55 to 68,64.0,BB186QS,100012400108.0,"Flat 5 Preston Beck, Water Street, Earby",0.7321 +10955,115672,Flat 6 Preston Beck Water Street Earby Lancashire BB18 6QS,,, BB18 6QS,Flat: Top,Domestic EPC Required,EPC Present,21 Aug 2022,D - 55 to 68,63.0,C - 69 to 80,77.0,BB186QS,100012400109.0,"Flat 6 Preston Beck, Water Street, Earby",0.7321 +10956,246548,Flat 1 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Bottom,Domestic EPC Required,EPC Present,14 Jun 2025,D - 55 to 68,59.0,C - 69 to 80,79.0,BB186PJ,100012400090.0,"1 Wilkinson Mount, Water Street, Earby",0.6498 +10958,221680,Flat 2 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,56.0,D - 55 to 68,57.0,BB186PJ,100012400091.0,"2 Wilkinson Mount, Water Street, Earby",0.6498 +10959,221681,Flat 3 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,63.0,C - 69 to 80,79.0,BB186PJ,100012400093.0,"3 Wilkinson Mount, Water Street, Earby",0.6498 +10960,252178,Flat 4 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Middle,Domestic EPC Required,EPC Present,10 Oct 2022,C - 69 to 80,70.0,C - 69 to 80,83.0,BB186PJ,100012400095.0,"4 Wilkinson Mount, Water Street, Earby",0.6498 +10961,241674,Flat 5 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Middle,Domestic EPC Required,EPC Present,23 Sep 2015,C - 69 to 80,79.0,B - 81 to 91,84.0,BB186PJ,100012400096.0,"5 Wilkinson Mount, Water Street, Earby",0.6498 +10962,118462,Flat 6 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2022,D - 55 to 68,61.0,C - 69 to 80,79.0,BB186PJ,100012400097.0,"6 Wilkinson Mount, Water Street, Earby",0.6498 +10963,118461,Flat 7 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Top,Domestic EPC Required,EPC Present,28 Sep 2011,C - 69 to 80,71.0,C - 69 to 80,79.0,BB186PJ,100012400098.0,"7, Wilkinson Mount, Water Street",0.5558 +10964,125498,Flat 8 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Top,Domestic EPC Required,EPC Present,12 Dec 2011,C - 69 to 80,76.0,C - 69 to 80,80.0,BB186PJ,100012400099.0,"8 Wilkinson Mount, Water Street, Earby",0.6498 +10965,223039,Flat 9 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Top,Domestic EPC Required,EPC Present,27 Sep 2022,D - 55 to 68,57.0,C - 69 to 80,79.0,BB186PJ,100012400100.0,"9 Wilkinson Mount, Water Street, Earby",0.6498 +10966,252213,Flat 10 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Top,Domestic EPC Required,EPC Present,27 Oct 2009,C - 69 to 80,69.0,C - 69 to 80,77.0,BB186PJ,100012400101.0,"10 Wilkinson Mount, Water Street, Earby",0.6516 +10981,111056,36 Eastgate Whitworth Rochdale Lancashire OL12 8UB,,, OL12 8UB,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Nov 2009,C - 69 to 80,72.0,C - 69 to 80,76.0,OL128UB,100010601472.0,"36, Eastgate, Whitworth",0.4856 +10985,111041,5 Hawks Grove Rossendale Lancashire BB4 6BG,,, BB4 6BG,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Nov 2009,D - 55 to 68,65.0,D - 55 to 68,68.0,BB46BG,100010609900.0,"5, Hawks Grove",0.4411 +10987,111044,6 Heathfield Avenue Bacup Lancashire OL13 0SQ,,, OL13 0SQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Jul 2025,D - 55 to 68,65.0,B - 81 to 91,81.0,OL130SQ,100010596694.0,6 Heathfield Avenue,0.4864 +10989,252224,17 Taylor Avenue Rossendale Lancashire BB4 9SY,,, BB4 9SY,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Jul 2025,D - 55 to 68,64.0,C - 69 to 80,80.0,BB49SY,100010615638.0,17 Taylor Avenue,0.4592 +10991,111059,52 Rossendale Crescent Bacup Lancashire OL13 9LN,,, OL13 9LN,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Mar 2010,D - 55 to 68,57.0,D - 55 to 68,64.0,OL139LN,200001622366.0,"52, Rosendale Crescent",0.3755 +10993,111054,26 Windermere Road Bacup Lancashire OL13 9DN,,, OL13 9DN,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,30 Jun 2010,C - 69 to 80,77.0,C - 69 to 80,79.0,OL139DN,10013832913.0,"26, Windermere Road",0.4818 +10994,111036,2 Leamington Avenue Burnley Lancashire BB10 3HH,,, BB10 3HH,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Dec 2020,D - 55 to 68,65.0,B - 81 to 91,82.0,BB103HH,100010345676.0,"2 LEAMINGTON AVENUE, BURNLEY",0.6268 +10996,111050,12 Hall Carr Road Rossendale Lancashire BB4 6AW,,, BB4 6AW,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Jan 2024,C - 69 to 80,72.0,B - 81 to 91,90.0,BB46AW,100010609187.0,12 Hall Carr Road,0.5109 +11006,118448,19 Claremont Street Burnley Lancashire BB12 0HG,,, BB12 0HG,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Feb 2010,C - 69 to 80,71.0,C - 69 to 80,79.0,BB120HG,100010333917.0,"19, Claremont Street",0.4801 +11011,118455,291 Manchester Road Burnley Lancashire BB11 4HL,,, BB11 4HL,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Feb 2010,D - 55 to 68,67.0,C - 69 to 80,76.0,BB114HL,10014137903.0,291 Manchester Road,0.4801 +11013,118248,10 Mill Street Whitworth Rochdale Lancashire OL12 8QP,,, OL12 8QP,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Jun 2022,C - 69 to 80,76.0,A - 92 Plus,120.0,OL128QP,10013833937.0,"10 Mill Street, Whitworth",0.5432 +11015,118251,9 Ronaldsway Close Bacup Lancashire OL13 9PY,,, OL13 9PY,House: Detached,Domestic EPC Required,EPC Present,24 Feb 2011,C - 69 to 80,72.0,C - 69 to 80,75.0,OL139PY,100010598826.0,"The Windrush, 9 Ronaldsway Close",0.3847 +11017,118242,47 Woodside Crescent Rossendale Lancashire BB4 7UG,,, BB4 7UG,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Nov 2010,D - 55 to 68,56.0,C - 69 to 80,76.0,BB47UG,100010616935.0,"47, Woodside Crescent",0.4786 +11021,118453,9 Ormerod Street Worsthorne Burnley Lancashire BB10 3NU,,, BB10 3NU,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Feb 2010,D - 55 to 68,66.0,C - 69 to 80,77.0,BB103NU,100010350655.0,"9, Ormerod Street, Worsthorne",0.5555 +11023,118245,19 Chester Crescent Rossendale Lancashire BB4 4HE,,, BB4 4HE,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Jun 2010,D - 55 to 68,58.0,C - 69 to 80,72.0,BB44HE,100010606537.0,"19, Chester Crescent, Haslingden",0.4475 +11024,118238,52 Lowerhouse Lane Burnley Lancashire BB12 6HZ,,, BB12 6HZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Jun 2010,D - 55 to 68,60.0,C - 69 to 80,69.0,BB126HZ,100010347075.0,"52, Lowerhouse Lane",0.4754 +11058,194695,9 Kay Street Clitheroe Lancashire BB7 1BX,,, BB7 1BX,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Jun 2023,D - 55 to 68,61.0,C - 69 to 80,79.0,BB71BX,100010586178.0,9 Kay Street,0.4371 +11059,194018,12 Monk Street Clitheroe Lancashire BB7 1DJ,,, BB7 1DJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Dec 2012,D - 55 to 68,62.0,C - 69 to 80,77.0,BB71DJ,100010587358.0,"12, Monk Street",0.4505 +11060,252174,67 Colthirst Drive Clitheroe Lancashire BB7 2EJ,,, BB7 2EJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Mar 2011,C - 69 to 80,74.0,C - 69 to 80,76.0,BB72EJ,10070401986.0,"67, Colthirst Drive",0.4724 +11062,252222,56 Woone Lane Clitheroe Lancashire BB7 1BG,,, BB7 1BG,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Jan 2012,D - 55 to 68,64.0,D - 55 to 68,66.0,BB71BG,100010591083.0,"56, Woone Lane",0.444 +11070,181818,14 Beech Street PADIHAM Lancashire BB12 7EE,,, BB12 7EE,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 May 2011,D - 55 to 68,64.0,C - 69 to 80,70.0,BB127EE,100010328651.0,"14, Beech Street, Padiham",0.6154 +11081,252220,79 Horning Crescent Burnley Lancashire BB10 2NT,,, BB10 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jan 2026,D - 55 to 68,67.0,C - 69 to 80,75.0,BB102NT,100010343546.0,79 Horning Crescent,0.4801 +11128,190682,1 Leopold Street Colne Lancashire BB8 9NZ,,, BB8 9NZ,House: End Terrace,Domestic EPC Required,EPC Present,13 Aug 2014,E - 39 to 54,54.0,C - 69 to 80,74.0,BB89NZ,10024179282.0,"1, Leopold Street",0.4751 +11129,190692,11 Leopold Street Colne Lancashire BB8 9NZ,,, BB8 9NZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Aug 2012,D - 55 to 68,60.0,B - 81 to 91,90.0,BB89NZ,10024179287.0,"11, Leopold Street",0.4803 +11130,190665,3 Duke Street Winewall Colne Lancashire BB8 8DA,,, BB8 8DA,House: End Terrace,Domestic EPC Required,EPC Present,13 Aug 2014,D - 55 to 68,57.0,B - 81 to 91,88.0,BB88DA,61027406.0,"3, Duke Street, Winewall",0.5482 +11131,190655,5 Duke Street Winewall Colne Lancashire BB8 8DA,,, BB8 8DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Aug 2012,D - 55 to 68,57.0,B - 81 to 91,85.0,BB88DA,61027407.0,"5, Duke Street, Winewall",0.5482 +11132,190662,9 Duke Street Winewall Colne Lancashire BB8 8DA,,, BB8 8DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,60.0,B - 81 to 91,88.0,BB88DA,61027409.0,"9, Duke Street, Winewall",0.5482 +11133,190659,11 Duke Street Winewall Colne Lancashire BB8 8DA,,, BB8 8DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Aug 2012,D - 55 to 68,68.0,B - 81 to 91,86.0,BB88DA,61027401.0,"11, Duke Street, Winewall",0.5518 +11138,190696,1 Winewall Lane Winewall Colne Lancashire BB8 8BX,,, BB8 8BX,House: End Terrace,Domestic EPC Required,EPC Present,27 Aug 2014,D - 55 to 68,58.0,B - 81 to 91,89.0,BB88BX,61027397.0,"1, Winewall Lane, Winewall",0.5087 +11139,190700,17 Winewall Lane Winewall Colne Lancashire BB8 8BX,,, BB8 8BX,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Aug 2014,D - 55 to 68,68.0,A - 92 Plus,93.0,BB88BX,61029134.0,"17, Winewall Lane, Winewall",0.5119 +11140,190639,3 Hawley Street Winewall Colne Lancashire BB8 8BY,,, BB8 8BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jun 2025,E - 39 to 54,47.0,B - 81 to 91,89.0,BB88BY,61029151.0,"3 Hawley Street, Winewall",0.5551 +11141,190635,11 Hawley Street Winewall Colne Lancashire BB8 8BY,,, BB8 8BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jun 2025,C - 69 to 80,69.0,B - 81 to 91,88.0,BB88BY,61029142.0,"11 Hawley Street, Winewall",0.5583 +11142,190651,13 Hawley Street Winewall Colne Lancashire BB8 8BY,,, BB8 8BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jul 2012,E - 39 to 54,44.0,C - 69 to 80,77.0,BB88BY,61029143.0,"13, Hawley Street, Winewall",0.5583 +11154,211471,5 Mill Court Sabden Lancashire BB7 9UB,,, BB7 9UB,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,84.0,A - 92 Plus,96.0,BB79UB,10022974460.0,"5, Mill Court, Sabden",0.6048 +11218,211470,8 Mill Court Sabden Lancashire BB7 9UB,,, BB7 9UB,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,85.0,A - 92 Plus,94.0,BB79UB,10022974473.0,"8, Mill Court, Sabden",0.6048 +11219,211466,9 Mill Court Sabden Lancashire BB7 9UB,,, BB7 9UB,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,85.0,A - 92 Plus,94.0,BB79UB,10022974474.0,"9, Mill Court, Sabden",0.6048 +11220,211467,10 Mill Court Sabden Lancashire BB7 9UB,,, BB7 9UB,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,85.0,A - 92 Plus,94.0,BB79UB,10022974475.0,"10, Mill Court, Sabden",0.6087 +11221,211468,11 Mill Court Sabden Lancashire BB7 9UB,,, BB7 9UB,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,85.0,A - 92 Plus,94.0,BB79UB,10022974476.0,"11, Mill Court, Sabden",0.6087 +13137,331218,1 Mill Court Sabden Lancashire BB7 9UB,,, BB7 9UB,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,83.0,A - 92 Plus,95.0,BB79UB,10022974456.0,"1, Mill Court, Sabden",0.6048 +13138,331240,4 Mill Court Sabden Lancashire BB7 9UB,,, BB7 9UB,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,84.0,A - 92 Plus,96.0,BB79UB,10022974459.0,"4, Mill Court, Sabden",0.6048 diff --git a/backend/utils/__init__.py b/backend/utils/__init__.py new file mode 100644 index 00000000..e69de29b From 785769fc23302c922e109d784096989833f33540 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Tue, 10 Mar 2026 12:40:44 +0000 Subject: [PATCH 051/124] remove csv --- backend/scripts/combined.csv | 5292 ---------------------------------- 1 file changed, 5292 deletions(-) delete mode 100644 backend/scripts/combined.csv diff --git a/backend/scripts/combined.csv b/backend/scripts/combined.csv deleted file mode 100644 index faf72d0c..00000000 --- a/backend/scripts/combined.csv +++ /dev/null @@ -1,5292 +0,0 @@ -Asset Reference,Occurrence Reference,Address 1,Address 2,Address 3,postcode,Property Type,Type,Pattern,Fitted / Renewed Date,Domestic Rating,SAP Score,Potential Domestic Rating,Potential SAP Score,postcode_clean,address2uprn_uprn,address2uprn_address,address2uprn_lexiscore -1804,362201,1 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB127DP,100010345293.0,"1 Lancaster Drive, Padiham",0.3985 -1907,225833,3 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Jun 2014,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127DP,100010345295.0,"3, Lancaster Drive, Padiham",0.3985 -2106,358932,7 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Feb 2023,C - 69 to 80,72.0,B - 81 to 91,84.0,BB127DP,100010345299.0,"7 Lancaster Drive, Padiham",0.3985 -2156,362220,8 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: End Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127DP,100010345300.0,"8 Lancaster Drive, Padiham",0.3985 -2205,229260,9 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2014,D - 55 to 68,67.0,B - 81 to 91,85.0,BB127DP,100010345301.0,"9, Lancaster Drive, Padiham",0.3985 -2253,221652,10 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,69.0,B - 81 to 91,86.0,BB127DP,100010345302.0,"10 Lancaster Drive, Padiham",0.4027 -2300,234536,11 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: End Terrace,Domestic EPC Required,EPC Present,16 Apr 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB127DP,100010345303.0,"11, Lancaster Drive, Padiham",0.4027 -2349,117344,12 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Sep 2011,C - 69 to 80,69.0,C - 69 to 80,74.0,BB127DP,100010345304.0,"12, Lancaster Drive, Padiham",0.4027 -2443,210876,14 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Sep 2013,C - 69 to 80,70.0,B - 81 to 91,87.0,BB127DP,100010345305.0,"14, Lancaster Drive, Padiham",0.4027 -2495,362234,15 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB127DP,100010345306.0,"15 Lancaster Drive, Padiham",0.4027 -2548,362238,16 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB127DP,100010345307.0,"16 Lancaster Drive, Padiham",0.4027 -2601,295248,17 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: End Terrace,Domestic EPC Required,EPC Present,12 Jan 2018,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127DP,100010345308.0,"17, Lancaster Drive, Padiham",0.4027 -2650,362250,18 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB127DP,100010345309.0,"18 Lancaster Drive, Padiham",0.4027 -2699,105257,19 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: End Terrace,Domestic EPC Required,EPC Present,07 Sep 2021,D - 55 to 68,68.0,B - 81 to 91,86.0,BB127DP,100010345310.0,"19 Lancaster Drive, Padiham",0.4027 -2749,362258,20 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: End Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB127DP,100010345311.0,"20 Lancaster Drive, Padiham",0.4027 -2898,359923,23 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: End Terrace,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB127DP,100010345314.0,"23 Lancaster Drive, Padiham",0.4027 -2948,362271,24 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB127DP,100010345315.0,"24 Lancaster Drive, Padiham",0.4027 -3046,40792,26 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Apr 2009,C - 69 to 80,70.0,C - 69 to 80,76.0,BB127DP,100010345317.0,"26, Lancaster Drive, Padiham",0.4027 -3096,206117,27 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jun 2013,C - 69 to 80,72.0,B - 81 to 91,87.0,BB127DP,100010345318.0,"27, Lancaster Drive, Padiham",0.4027 -3189,244966,29 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: End Terrace,Domestic EPC Required,EPC Present,02 Dec 2015,D - 55 to 68,63.0,B - 81 to 91,86.0,BB127DP,100010345320.0,"29, Lancaster Drive, Padiham",0.4027 -3234,362295,30 Lancaster Drive Hapton Burnley Lancashire BB12 7DP,,, BB12 7DP,House: End Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127DP,100010345321.0,"30 Lancaster Drive, Padiham",0.4027 -1811,197122,19 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Jul 2024,C - 69 to 80,73.0,B - 81 to 91,91.0,BB101XX,100010352965.0,19 Queens Road,0.4536 -1919,325621,21 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Jan 2020,C - 69 to 80,72.0,B - 81 to 91,91.0,BB101XX,100010352967.0,"21, Queens Road",0.4536 -2018,69670,23 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,28 Jul 2009,C - 69 to 80,72.0,C - 69 to 80,74.0,BB101XX,100010352969.0,"23, Queens Road",0.4536 -2116,180688,25 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Apr 2025,D - 55 to 68,67.0,B - 81 to 91,89.0,BB101XX,100010352971.0,25 Queens Road,0.4536 -2212,211783,27 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Apr 2025,D - 55 to 68,65.0,B - 81 to 91,89.0,BB101XX,100010352972.0,27 Queens Road,0.4536 -2302,118999,29 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Apr 2025,C - 69 to 80,71.0,A - 92 Plus,92.0,BB101XX,100010352973.0,29 Queens Road,0.4536 -2400,233926,31 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Apr 2025,D - 55 to 68,57.0,C - 69 to 80,79.0,BB101XX,100010352974.0,31 Queens Road,0.4536 -2501,181694,33 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: End Terr,Domestic EPC Required,EPC Present,31 May 2012,D - 55 to 68,68.0,B - 81 to 91,90.0,BB101XX,100010352975.0,"33, Queens Road",0.4536 -2610,244358,35 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,90.0,BB101XX,100010352976.0,"35, Queens Road",0.4536 -2807,325623,39 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Jan 2020,D - 55 to 68,68.0,B - 81 to 91,89.0,BB101XX,100010352978.0,"39, Queens Road",0.4536 -13127,331004,37 Queens Road Burnley Lancashire BB10 1XX,,, BB10 1XX,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,91.0,BB101XX,100010352977.0,"37, Queens Road",0.4536 -1841,40736,53 Albion Street Burnley Lancashire BB11 4QD,,, BB11 4QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Nov 2019,C - 69 to 80,72.0,B - 81 to 91,90.0,BB114QD,100010327030.0,"53, Albion Street",0.4652 -13692,359248,45 Albion Street Burnley Lancashire BB11 4QD,,, BB11 4QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Mar 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB114QD,100010327022.0,45 Albion Street,0.4652 -1844,248843,135 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,69.0,A - 92 Plus,92.0,BB103JD,100010354088.0,"135, Ridge Avenue",0.4652 -2141,248844,141 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Bungalow: End Terr,Domestic EPC Required,EPC Present,31 Mar 2016,D - 55 to 68,68.0,B - 81 to 91,88.0,BB103JD,100010354091.0,"141, Ridge Avenue",0.4652 -2637,248930,151 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Flat: Bottom,Domestic EPC Required,EPC Present,31 Mar 2016,D - 55 to 68,65.0,C - 69 to 80,73.0,BB103JD,100010354096.0,"151, Ridge Avenue",0.4652 -2837,248932,155 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Flat: Top,Domestic EPC Required,EPC Present,04 Apr 2016,D - 55 to 68,68.0,C - 69 to 80,75.0,BB103JD,100010354098.0,"155, Ridge Avenue",0.4652 -2937,248950,157 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Flat: Top,Domestic EPC Required,EPC Present,31 Mar 2016,D - 55 to 68,66.0,C - 69 to 80,73.0,BB103JD,100010354099.0,"157, Ridge Avenue",0.4652 -3034,248953,159 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,House: End Terrace,Domestic EPC Required,EPC Present,30 Mar 2016,D - 55 to 68,68.0,B - 81 to 91,88.0,BB103JD,100010354100.0,"159, Ridge Avenue",0.4652 -3222,248954,163 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Apr 2016,C - 69 to 80,72.0,B - 81 to 91,91.0,BB103JD,100010354102.0,"163, Ridge Avenue",0.4652 -3419,248955,167 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Bungalow: End Terr,Domestic EPC Required,EPC Present,31 Mar 2016,C - 69 to 80,71.0,B - 81 to 91,91.0,BB103JD,100010354104.0,"167, Ridge Avenue",0.4652 -3522,248956,169 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Apr 2016,D - 55 to 68,68.0,A - 92 Plus,92.0,BB103JD,100010354105.0,"169, Ridge Avenue",0.4652 -3828,248958,175 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,80.0,BB103JD,100010354108.0,175 Ridge Avenue,0.4652 -12977,329118,133 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Apr 2016,D - 55 to 68,65.0,B - 81 to 91,90.0,BB103JD,100010354087.0,"133, Ridge Avenue",0.4652 -13528,351516,153 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Flat: Bottom,Domestic EPC Required,EPC Present,31 Mar 2016,D - 55 to 68,65.0,C - 69 to 80,73.0,BB103JD,100010354097.0,"153, Ridge Avenue",0.4652 -13776,368767,173 Ridge Avenue Burnley Lancashire BB10 3JD,,, BB10 3JD,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,06 Apr 2016,C - 69 to 80,71.0,A - 92 Plus,92.0,BB103JD,100010354107.0,"173, Ridge Avenue",0.4652 -1920,325563,2 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,73.0,B - 81 to 91,88.0,BB102QA,100010335782.0,"2, Conway Grove",0.4536 -2019,94855,4 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: End Terrace,Domestic EPC Required,EPC Present,01 Apr 2009,D - 55 to 68,67.0,C - 69 to 80,71.0,BB102QA,100010335784.0,"4, Conway Grove",0.4536 -2111,209265,6 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,78.0,BB102QA,100010335786.0,6 Conway Grove,0.4536 -2260,221637,9 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,69.0,B - 81 to 91,88.0,BB102QA,100010335789.0,"9, Conway Grove",0.4536 -2356,325566,11 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,70.0,B - 81 to 91,88.0,BB102QA,100010335791.0,"11, Conway Grove",0.4596 -2402,325564,12 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,70.0,B - 81 to 91,88.0,BB102QA,100010335792.0,"12, Conway Grove",0.4596 -2504,222009,14 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Jan 2014,D - 55 to 68,66.0,B - 81 to 91,85.0,BB102QA,100010335794.0,"14, Conway Grove",0.4596 -2557,118345,15 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,70.0,B - 81 to 91,87.0,BB102QA,100010335795.0,"15, Conway Grove",0.4596 -2611,208337,16 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: End Terrace,Domestic EPC Required,EPC Present,16 Jul 2013,D - 55 to 68,61.0,C - 69 to 80,80.0,BB102QA,100010335796.0,"16, Conway Grove",0.4596 -2707,325561,18 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,74.0,B - 81 to 91,89.0,BB102QA,100010335798.0,"18, Conway Grove",0.4596 -2956,238596,23 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jul 2015,D - 55 to 68,59.0,B - 81 to 91,87.0,BB102QA,100010335803.0,"23, Conway Grove",0.4596 -3008,179651,24 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Nov 2025,C - 69 to 80,70.0,B - 81 to 91,84.0,BB102QA,100010335804.0,24 Conway Grove,0.4596 -3054,325559,25 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,70.0,B - 81 to 91,88.0,BB102QA,100010335805.0,"25, Conway Grove",0.4596 -3149,40798,27 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,11 May 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB102QA,100010335807.0,27 Conway Grove,0.4596 -3195,325565,28 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2020,C - 69 to 80,73.0,B - 81 to 91,87.0,BB102QA,100010335808.0,"28, Conway Grove",0.4596 -3245,89455,29 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Dec 2009,C - 69 to 80,70.0,C - 69 to 80,73.0,BB102QA,100010335809.0,"29, Conway Grove",0.4596 -3338,325560,31 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: End Terrace,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB102QA,100010335811.0,"31, Conway Grove",0.4596 -3389,325562,32 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: End Terrace,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,70.0,B - 81 to 91,87.0,BB102QA,100010335812.0,"32, Conway Grove",0.4596 -3492,40809,34 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Dec 2008,D - 55 to 68,59.0,C - 69 to 80,75.0,BB102QA,100010335814.0,"34, Conway Grove",0.4596 -13735,360345,5 Conway Grove Burnley Lancashire BB10 2QA,,, BB10 2QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jun 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB102QA,100010335785.0,5 Conway Grove,0.4536 -1926,252182,16 Cornel Grove Burnley Lancashire BB11 5LB,,, BB11 5LB,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jun 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115LB,100010335840.0,16 Cornel Grove,0.4596 -2026,110810,18 Cornel Grove Burnley Lancashire BB11 5LB,,, BB11 5LB,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,61.0,C - 69 to 80,75.0,BB115LB,100010335841.0,"18, Cornel Grove",0.4596 -2221,110834,22 Cornel Grove Burnley Lancashire BB11 5LB,,, BB11 5LB,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Feb 2011,D - 55 to 68,65.0,C - 69 to 80,75.0,BB115LB,100010335843.0,"22, Cornel Grove",0.4596 -9758,110887,29 Cornel Grove Burnley Lancashire BB11 5LB,,, BB11 5LB,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,60.0,C - 69 to 80,74.0,BB115LB,100010335847.0,"29, Cornel Grove",0.4596 -1968,328485,1 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: End Terrace,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115SA,10023759872.0,"1, Mere Court",0.4401 -2065,76856,3 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Aug 2009,C - 69 to 80,72.0,C - 69 to 80,77.0,BB115SA,100010348655.0,"3, Mere Court",0.4401 -2109,219728,4 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: End Terrace,Domestic EPC Required,EPC Present,07 Nov 2013,D - 55 to 68,68.0,B - 81 to 91,85.0,BB115SA,100010348656.0,"4, Mere Court",0.4401 -2165,328487,5 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: End Terrace,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,70.0,B - 81 to 91,85.0,BB115SA,100010348657.0,"5, Mere Court",0.4401 -2210,328486,6 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115SA,100010348658.0,"6, Mere Court",0.4401 -2262,90258,7 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Feb 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB115SA,100010348659.0,7 Mere Court,0.4401 -2307,328484,8 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115SA,100010348660.0,"8, Mere Court",0.4401 -2354,211358,9 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: End Terrace,Domestic EPC Required,EPC Present,09 Oct 2013,D - 55 to 68,67.0,B - 81 to 91,84.0,BB115SA,100010348661.0,"9, Mere Court",0.4401 -2451,221657,11 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,70.0,B - 81 to 91,87.0,BB115SA,100010348663.0,"11, Mere Court",0.4471 -2499,223669,12 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,75.0,B - 81 to 91,85.0,BB115SA,100010348664.0,12 Mere Court,0.4471 -2654,328482,15 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: End Terrace,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115SA,100010348667.0,"15, Mere Court",0.4471 -9753,328483,13 Mere Court Burnley Lancashire BB11 5SA,,, BB11 5SA,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115SA,100010348665.0,"13, Mere Court",0.4471 -1987,40739,1 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,73.0,C - 69 to 80,76.0,BB128HY,10003780189.0,"1, Cross Hills, Padiham",0.392 -2034,125277,2 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,02 Dec 2011,D - 55 to 68,64.0,C - 69 to 80,70.0,BB128HY,10003780190.0,"2, Cross Hills, Padiham",0.392 -2086,98504,3 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,26 Aug 2010,C - 69 to 80,79.0,C - 69 to 80,79.0,BB128HY,10003780191.0,"3, Cross Hills, Padiham",0.392 -2129,232675,4 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,16 Feb 2015,C - 69 to 80,75.0,C - 69 to 80,79.0,BB128HY,10003780192.0,"4, Cross Hills, Padiham",0.392 -2183,196140,5 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,29 Jan 2013,D - 55 to 68,66.0,C - 69 to 80,75.0,BB128HY,10003780193.0,"5, Cross Hills, Padiham",0.392 -2230,235521,6 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,08 May 2015,C - 69 to 80,71.0,C - 69 to 80,77.0,BB128HY,10003780194.0,"6, Cross Hills, Padiham",0.392 -2281,163337,7 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Apr 2012,D - 55 to 68,66.0,C - 69 to 80,75.0,BB128HY,10003780195.0,"7, Cross Hills, Padiham",0.392 -2323,101567,8 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,07 Oct 2010,C - 69 to 80,77.0,C - 69 to 80,80.0,BB128HY,10003780196.0,"8, Cross Hills, Padiham",0.392 -2375,101569,9 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,07 Oct 2010,C - 69 to 80,73.0,C - 69 to 80,78.0,BB128HY,10003780197.0,"9, Cross Hills, Padiham",0.392 -2418,76915,10 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Bottom,Domestic EPC Required,EPC Present,07 Sep 2009,C - 69 to 80,70.0,C - 69 to 80,76.0,BB128HY,10003780198.0,"10, Cross Hills, Padiham",0.3958 -2472,362231,11 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,78.0,BB128HY,10003780199.0,"11 Cross Hills, Padiham",0.3958 -2520,89262,12 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,10 Nov 2009,C - 69 to 80,75.0,B - 81 to 91,81.0,BB128HY,10003780200.0,"12, Cross Hills, Padiham",0.3958 -2578,100561,13 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,61.0,D - 55 to 68,62.0,BB128HY,10003780201.0,"13, Cross Hills, Padiham",0.3958 -2626,136778,14 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,06 Mar 2012,C - 69 to 80,70.0,C - 69 to 80,74.0,BB128HY,10003780202.0,"14, Cross Hills, Padiham",0.3958 -2679,77012,15 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,20 Jun 2023,D - 55 to 68,66.0,C - 69 to 80,71.0,BB128HY,10003780203.0,"15 Cross Hills, Padiham",0.3958 -2721,116043,16 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,21 Jul 2011,C - 69 to 80,72.0,C - 69 to 80,75.0,BB128HY,10003780204.0,"16, Cross Hills, Padiham",0.3958 -2771,111530,17 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,05 May 2011,C - 69 to 80,70.0,C - 69 to 80,74.0,BB128HY,10003780205.0,"17, Cross Hills, Padiham",0.3958 -2823,252161,18 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,20 Jan 2016,C - 69 to 80,72.0,C - 69 to 80,75.0,BB128HY,10003780206.0,"18, Cross Hills, Padiham",0.3958 -2870,226564,19 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,09 Jul 2014,C - 69 to 80,73.0,C - 69 to 80,76.0,BB128HY,10003780207.0,"19, Cross Hills, Padiham",0.3958 -2926,112958,20 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,01 Jun 2011,C - 69 to 80,70.0,C - 69 to 80,74.0,BB128HY,10003780208.0,"20, Cross Hills, Padiham",0.3958 -2975,362273,21 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,78.0,BB128HY,10003780209.0,"21 Cross Hills, Padiham",0.3958 -3021,112960,22 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,Flat: Top,Domestic EPC Required,EPC Present,01 Jun 2011,D - 55 to 68,64.0,C - 69 to 80,72.0,BB128HY,10003780210.0,"22, Cross Hills, Padiham",0.3958 -3069,69665,23 Crosshills Padiham Lancashire BB12 8HY,,, BB12 8HY,House: Detached,Domestic EPC Required,EPC Present,27 Jul 2009,C - 69 to 80,69.0,C - 69 to 80,74.0,BB128HY,10003780211.0,"23 Cross Hills, Padiham",0.3958 -2008,40740,53 Accrington Road Burnley Lancashire BB11 4AN,,, BB11 4AN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Jan 2024,D - 55 to 68,62.0,B - 81 to 91,86.0,BB114AN,100010326518.0,53 Accrington Road,0.4754 -2056,184724,1 Water Street Worsthorne Burnley Lancashire BB10 3NF,,, BB10 3NF,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,79.0,B - 81 to 91,82.0,BB103NF,100010359856.0,"1 Water Street, Worsthorne",0.5494 -2151,105073,3 Water Street Worsthorne Burnley Lancashire BB10 3NF,,, BB10 3NF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Dec 2010,C - 69 to 80,71.0,C - 69 to 80,73.0,BB103NF,100010359858.0,"3, Water Street, Worsthorne",0.5494 -2250,137014,5 Water Street Worsthorne Burnley Lancashire BB10 3NF,,, BB10 3NF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,09 Feb 2026,C - 69 to 80,72.0,B - 81 to 91,81.0,BB103NF,100010359860.0,"5, Water Street, Worsthorne",0.5494 -2345,243662,7 Water Street Worsthorne Burnley Lancashire BB10 3NF,,, BB10 3NF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,30 Oct 2015,C - 69 to 80,69.0,A - 92 Plus,122.0,BB103NF,100010359862.0,"7, Water Street, Worsthorne",0.5494 -2438,324933,9 Water Street Worsthorne Burnley Lancashire BB10 3NF,,, BB10 3NF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,05 Dec 2019,D - 55 to 68,66.0,B - 81 to 91,89.0,BB103NF,100010359864.0,"9, Water Street, Worsthorne",0.5494 -2545,324932,11 Water Street Worsthorne Burnley Lancashire BB10 3NF,,, BB10 3NF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,05 Dec 2019,C - 69 to 80,70.0,B - 81 to 91,91.0,BB103NF,100010359866.0,"11, Water Street, Worsthorne",0.5525 -2648,89514,13 Water Street Worsthorne Burnley Lancashire BB10 3NF,,, BB10 3NF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,14 Dec 2009,C - 69 to 80,72.0,C - 69 to 80,75.0,BB103NF,100010359868.0,"13, Water Street, Worsthorne",0.5525 -2744,362256,15 Water Street Worsthorne Burnley Lancashire BB10 3NF,,, BB10 3NF,Bungalow: End Terr,Domestic EPC Required,EPC Present,01 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,90.0,BB103NF,100010359870.0,"15 Water Street, Worsthorne",0.5525 -2081,324903,62 Burnley Road Cliviger Burnley Lancashire BB10 4SN,,, BB10 4SN,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2019,D - 55 to 68,59.0,B - 81 to 91,86.0,BB104SN,100010331980.0,"62, Burnley Road, Cliviger",0.5925 -2178,206122,64 Burnley Road Cliviger Burnley Lancashire BB10 4SN,,, BB10 4SN,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jun 2023,D - 55 to 68,57.0,B - 81 to 91,86.0,BB104SN,100010331981.0,"64 Burnley Road, Cliviger",0.5925 -2365,324902,68 Burnley Road Cliviger Burnley Lancashire BB10 4SN,,, BB10 4SN,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2019,D - 55 to 68,66.0,B - 81 to 91,87.0,BB104SN,100010331983.0,"68, Burnley Road, Cliviger",0.5925 -2968,221633,80 Burnley Road Cliviger Burnley Lancashire BB10 4SN,,, BB10 4SN,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,60.0,C - 69 to 80,78.0,BB104SN,100010331989.0,"80, Burnley Road, Cliviger",0.5925 -3158,220696,84 Burnley Road Cliviger Burnley Lancashire BB10 4SN,,, BB10 4SN,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Dec 2013,D - 55 to 68,58.0,C - 69 to 80,77.0,BB104SN,100010331991.0,"84, Burnley Road, Cliviger",0.5925 -3254,324901,86 Burnley Road Cliviger Burnley Lancashire BB10 4SN,,, BB10 4SN,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 May 2024,C - 69 to 80,76.0,B - 81 to 91,91.0,BB104SN,100010331992.0,"86 Burnley Road, Cliviger",0.5925 -3456,324900,90 Burnley Road Cliviger Burnley Lancashire BB10 4SN,,, BB10 4SN,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2019,D - 55 to 68,62.0,B - 81 to 91,87.0,BB104SN,100010331994.0,"90, Burnley Road, Cliviger",0.5925 -2090,201346,2 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Apr 2013,D - 55 to 68,55.0,C - 69 to 80,79.0,BB102QE,100010329865.0,"2, Brent Street",0.4536 -2190,362221,4 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: End Terrace,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB102QE,100010329867.0,4 Brent Street,0.4536 -2236,199683,5 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Dec 2026,D - 55 to 68,67.0,B - 81 to 91,82.0,BB102QE,100010329868.0,"5, Brent Street",0.4536 -2382,103979,8 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2010,D - 55 to 68,63.0,C - 69 to 80,73.0,BB102QE,100010329871.0,"8, Brent Street",0.4536 -2478,362233,10 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: End Terrace,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB102QE,100010329873.0,10 Brent Street,0.4596 -2584,252186,12 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: End Terrace,Domestic EPC Required,EPC Present,29 Apr 2025,C - 69 to 80,70.0,B - 81 to 91,86.0,BB102QE,100010329875.0,12 Brent Street,0.4596 -2731,225834,15 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Jun 2014,D - 55 to 68,59.0,B - 81 to 91,84.0,BB102QE,100010329878.0,"15, Brent Street",0.4596 -2831,240375,17 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Aug 2015,D - 55 to 68,64.0,B - 81 to 91,86.0,BB102QE,100010329880.0,"17, Brent Street",0.4596 -2983,362275,20 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB102QE,100010329883.0,20 Brent Street,0.4596 -3032,40789,21 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Nov 2008,D - 55 to 68,66.0,C - 69 to 80,74.0,BB102QE,,, -3170,246205,24 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Jan 2016,D - 55 to 68,61.0,B - 81 to 91,86.0,BB102QE,100010329887.0,"24, Brent Street",0.4596 -3220,107648,25 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: End Terrace,Domestic EPC Required,EPC Present,30 Mar 2011,D - 55 to 68,59.0,C - 69 to 80,74.0,BB102QE,100010329888.0,"25, Brent Street",0.4596 -3267,325392,26 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,86.0,BB102QE,100010329889.0,"26, Brent Street",0.4596 -3777,95850,36 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: End Terrace,Domestic EPC Required,EPC Present,08 Jun 2010,D - 55 to 68,55.0,C - 69 to 80,72.0,BB102QE,100010329898.0,"36, Brent Street",0.4596 -3982,362341,40 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB102QE,100010329900.0,40 Brent Street,0.4596 -4091,111161,42 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2021,D - 55 to 68,64.0,B - 81 to 91,86.0,BB102QE,100010329901.0,42 Brent Street,0.4596 -4196,136673,44 Brent Street Burnley Lancashire BB10 2QE,,, BB10 2QE,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Feb 2012,D - 55 to 68,63.0,C - 69 to 80,71.0,BB102QE,100010329902.0,"44, Brent Street",0.4596 -2107,40747,2 Thirlmere Avenue Padiham Lancashire BB12 8PF,,, BB12 8PF,House: End Terrace,Domestic EPC Required,EPC Present,16 Jan 2024,C - 69 to 80,69.0,B - 81 to 91,84.0,BB128PF,100010358181.0,"2 Thirlmere Avenue, Padiham",0.6242 -2494,221606,10 Thirlmere Avenue Padiham Lancashire BB12 8PF,,, BB12 8PF,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Jan 2014,C - 69 to 80,69.0,B - 81 to 91,86.0,BB128PF,100010358189.0,"10, Thirlmere Avenue, Padiham",0.6268 -2549,362239,11 Thirlmere Avenue Padiham Lancashire BB12 8PF,,, BB12 8PF,House: End Terrace,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB128PF,100010358190.0,"11 Thirlmere Avenue, Padiham",0.6268 -2652,94831,13 Thirlmere Avenue Padiham Lancashire BB12 8PF,,, BB12 8PF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Mar 2010,D - 55 to 68,66.0,C - 69 to 80,70.0,BB128PF,100010358192.0,"13 Thirlmere Avenue, Padiham",0.6268 -2748,362257,15 Thirlmere Avenue Padiham Lancashire BB12 8PF,,, BB12 8PF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,90.0,BB128PF,100010358193.0,"15 Thirlmere Avenue, Padiham",0.6268 -2119,362218,1 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB102QH,10003758856.0,1 Shannon Square,0.4652 -2268,110671,4 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Dec 2020,C - 69 to 80,75.0,B - 81 to 91,89.0,BB102QH,10003758863.0,"4 SHANNON SQUARE, BURNLEY",0.6185 -2312,187729,5 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Sep 2012,C - 69 to 80,72.0,B - 81 to 91,86.0,BB102QH,10003758864.0,"5, Shannon Square",0.4652 -2363,88994,6 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2025,C - 69 to 80,72.0,B - 81 to 91,86.0,BB102QH,10003758865.0,6 Shannon Square,0.4652 -2458,210912,8 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2013,C - 69 to 80,74.0,B - 81 to 91,87.0,BB102QH,10003758867.0,"8, Shannon Square",0.4652 -2508,179607,9 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,Bungalow: End Terr,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,70.0,B - 81 to 91,88.0,BB102QH,10003758868.0,9 Shannon Square,0.4652 -2560,180692,10 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,Bungalow: End Terr,Domestic EPC Required,EPC Present,03 Oct 2024,D - 55 to 68,67.0,B - 81 to 91,85.0,BB102QH,10003758857.0,10 Shannon Square,0.4705 -2615,103296,11 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,10 Nov 2010,C - 69 to 80,74.0,C - 69 to 80,76.0,BB102QH,10003758858.0,"11, Shannon Square",0.4705 -2662,40771,12 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,26 May 2023,C - 69 to 80,71.0,B - 81 to 91,88.0,BB102QH,10003758859.0,12 Shannon Square,0.4705 -2755,95854,14 Shannon Square Burnley Lancashire BB10 2QH,,, BB10 2QH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,14 Dec 2025,C - 69 to 80,71.0,C - 69 to 80,77.0,BB102QH,10003758860.0,14 Shannon Square,0.4705 -2128,104035,1 Heron Court Burnley Lancashire BB11 5RW,,, BB11 5RW,House: Cluster Block,Domestic EPC Required,EPC Present,23 Dec 2024,C - 69 to 80,70.0,B - 81 to 91,84.0,BB115RW,100010342279.0,1 Heron Court,0.4471 -2371,110680,6 Heron Court Burnley Lancashire BB11 5RW,,, BB11 5RW,House: Cluster Block,Domestic EPC Required,EPC Present,02 Feb 2026,C - 69 to 80,74.0,C - 69 to 80,80.0,BB115RW,100010342284.0,"6, Heron Court",0.4471 -2627,104047,11 Heron Court Burnley Lancashire BB11 5RW,,, BB11 5RW,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,69.0,C - 69 to 80,75.0,BB115RW,100010342289.0,11 Heron Court,0.4536 -2677,110773,12 Heron Court Burnley Lancashire BB11 5RW,,, BB11 5RW,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Dec 2010,E - 39 to 54,54.0,D - 55 to 68,67.0,BB115RW,100010342290.0,"12, Heron Court",0.4536 -2723,110781,13 Heron Court Burnley Lancashire BB11 5RW,,, BB11 5RW,House: End Terrace,Domestic EPC Required,EPC Present,14 Mar 2022,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115RW,100010342291.0,13 Heron Court,0.4536 -2769,94974,14 Heron Court Burnley Lancashire BB11 5RW,,, BB11 5RW,House: End Terrace,Domestic EPC Required,EPC Present,22 Dec 2010,D - 55 to 68,57.0,C - 69 to 80,71.0,BB115RW,100010342292.0,"14, Heron Court",0.4536 -3068,104056,20 Heron Court Burnley Lancashire BB11 5RW,,, BB11 5RW,House: End Terrace,Domestic EPC Required,EPC Present,19 Nov 2010,D - 55 to 68,60.0,C - 69 to 80,75.0,BB115RW,100010342298.0,"20, Heron Court",0.4536 -2152,69499,39 Robinson Street Burnley Lancashire BB10 1NG,,, BB10 1NG,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2010,C - 69 to 80,77.0,C - 69 to 80,77.0,BB101NG,100010354212.0,"39, Robinson Street",0.4754 -3534,69494,67 Robinson Street Burnley Lancashire BB10 1NG,,, BB10 1NG,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Jul 2009,C - 69 to 80,72.0,C - 69 to 80,74.0,BB101NG,100010354233.0,"67, Robinson Street",0.4754 -13372,352603,28 Robinson Street Burnley Lancashire BB10 1NG,,, BB10 1NG,House: End Terrace,Domestic EPC Required,EPC Present,24 Jun 2022,C - 69 to 80,73.0,B - 81 to 91,89.0,BB101NG,100010354204.0,28 Robinson Street,0.4754 -2161,247406,135 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Mar 2016,C - 69 to 80,69.0,B - 81 to 91,85.0,BB104NJ,100010331362.0,"135, Brunshaw Avenue",0.4801 -2256,247403,137 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2025,C - 69 to 80,74.0,B - 81 to 91,82.0,BB104NJ,100010331363.0,137 Brunshaw Avenue,0.4801 -2350,211370,139 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: End Terrace,Domestic EPC Required,EPC Present,02 Jun 2026,D - 55 to 68,65.0,C - 69 to 80,76.0,BB104NJ,100010331364.0,"139, Brunshaw Avenue",0.4801 -2750,40775,147 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2009,C - 69 to 80,71.0,C - 69 to 80,75.0,BB104NJ,100010331372.0,"147, Brunshaw Avenue",0.4801 -3049,248951,153 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 May 2016,C - 69 to 80,71.0,B - 81 to 91,89.0,BB104NJ,100010331378.0,"153, Brunshaw Avenue",0.4801 -3146,362286,155 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB104NJ,100010331380.0,155 Brunshaw Avenue,0.4801 -3240,323632,157 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: End Terrace,Domestic EPC Required,EPC Present,14 Oct 2019,C - 69 to 80,71.0,B - 81 to 91,86.0,BB104NJ,100010331382.0,"157, Brunshaw Avenue",0.4801 -3332,110642,159 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: End Terrace,Domestic EPC Required,EPC Present,07 Apr 2011,C - 69 to 80,73.0,C - 69 to 80,78.0,BB104NJ,100010331384.0,"159, Brunshaw Avenue",0.4801 -3380,89519,160 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: End Terrace,Domestic EPC Required,EPC Present,13 Feb 2026,C - 69 to 80,78.0,B - 81 to 91,81.0,BB104NJ,100010331385.0,160 Brunshaw Avenue,0.4801 -3431,244967,161 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2015,D - 55 to 68,65.0,B - 81 to 91,88.0,BB104NJ,100010331386.0,"161, Brunshaw Avenue",0.4801 -3693,247413,166 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: End Terrace,Domestic EPC Required,EPC Present,14 Mar 2016,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104NJ,100010331391.0,"166, Brunshaw Avenue",0.4801 -3789,247415,168 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Mar 2016,D - 55 to 68,55.0,B - 81 to 91,84.0,BB104NJ,100010331393.0,"168, Brunshaw Avenue",0.4801 -3891,247408,170 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Mar 2016,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104NJ,100010331395.0,"170, Brunshaw Avenue",0.4801 -3996,247407,172 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Mar 2016,D - 55 to 68,56.0,B - 81 to 91,85.0,BB104NJ,100010331397.0,"172, Brunshaw Avenue",0.4801 -4213,89044,176 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Dec 2026,C - 69 to 80,71.0,C - 69 to 80,80.0,BB104NJ,100010331401.0,"176, Brunshaw Avenue",0.4801 -4330,247405,178 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2025,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104NJ,100010331403.0,178 Brunshaw Avenue,0.4801 -12688,362802,174 Brunshaw Avenue Burnley Lancashire BB10 4NJ,,, BB10 4NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB104NJ,100010331399.0,174 Brunshaw Avenue,0.4801 -2163,40750,3 Fennyfold Terrace Padiham Lancashire BB12 7BP,,, BB12 7BP,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Dec 2021,C - 69 to 80,73.0,B - 81 to 91,87.0,BB127BP,10003780392.0,"3 Fennyfold Terrace, Padiham",0.6268 -2361,245832,7 Fennyfold Terrace Padiham Lancashire BB12 7BP,,, BB12 7BP,House: End Terrace,Domestic EPC Required,EPC Present,12 Jan 2016,C - 69 to 80,71.0,B - 81 to 91,86.0,BB127BP,10003780394.0,"7, Fennyfold Terrace, Padiham",0.6268 -2657,245833,13 Fennyfold Terrace Padiham Lancashire BB12 7BP,,, BB12 7BP,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Dec 2025,C - 69 to 80,79.0,B - 81 to 91,82.0,BB127BP,10003780397.0,"13 Fennyfold Terrace, Padiham",0.6293 -2217,100570,1 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2021,D - 55 to 68,64.0,B - 81 to 91,84.0,BB114EE,100010339596.0,1 Girvan Grove,0.4536 -2269,362224,2 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,82.0,BB114EE,100010339597.0,2 Girvan Grove,0.4536 -2311,362225,3 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB114EE,100010339598.0,3 Girvan Grove,0.4536 -2362,362226,4 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB114EE,100010339599.0,4 Girvan Grove,0.4536 -2406,362227,5 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB114EE,100010339600.0,5 Girvan Grove,0.4536 -2456,95218,6 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,12 May 2010,D - 55 to 68,64.0,C - 69 to 80,73.0,BB114EE,100010339601.0,"6, Girvan Grove",0.4536 -2562,362241,8 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB114EE,100010339603.0,8 Girvan Grove,0.4536 -2661,40770,10 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Jul 2022,D - 55 to 68,65.0,B - 81 to 91,87.0,BB114EE,100010339605.0,10 Girvan Grove,0.4596 -2713,112358,11 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,19 May 2011,E - 39 to 54,46.0,D - 55 to 68,68.0,BB114EE,100010339606.0,"11, Girvan Grove",0.4596 -2757,362259,12 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB114EE,100010339607.0,12 Girvan Grove,0.4596 -2812,362261,13 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB114EE,100010339608.0,13 Girvan Grove,0.4596 -2861,40780,14 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Mar 2023,D - 55 to 68,63.0,B - 81 to 91,83.0,BB114EE,100010339609.0,14 Girvan Grove,0.4596 -2913,362267,15 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB114EE,100010339610.0,15 Girvan Grove,0.4596 -2961,116044,16 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,Bungalow: End Terr,Domestic EPC Required,EPC Present,21 Jul 2011,D - 55 to 68,56.0,D - 55 to 68,65.0,BB114EE,100010339611.0,"16, Girvan Grove",0.4596 -3013,102924,17 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Nov 2010,C - 69 to 80,73.0,C - 69 to 80,74.0,BB114EE,100010339612.0,"17, Girvan Grove",0.4596 -3060,40793,18 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Jun 2009,D - 55 to 68,68.0,C - 69 to 80,72.0,BB114EE,100010339613.0,"18, Girvan Grove",0.4596 -3203,362292,21 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB114EE,100010339615.0,21 Girvan Grove,0.4596 -3296,362303,23 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB114EE,100010339616.0,23 Girvan Grove,0.4596 -3399,237559,25 Girvan Grove Burnley Lancashire BB11 4EE,,, BB11 4EE,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Jun 2015,D - 55 to 68,59.0,B - 81 to 91,86.0,BB114EE,100010339617.0,"25, Girvan Grove",0.4596 -2226,118997,37 Lawrence Street Padiham Lancashire BB12 8DL,,, BB12 8DL,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Sep 2011,D - 55 to 68,67.0,C - 69 to 80,70.0,BB128DL,100010345653.0,"37, Lawrence Street, Padiham",0.6242 -2284,325615,115 Burnley Road Briercliffe Burnley Lancashire BB10 2HJ,,, BB10 2HJ,House: End Terrace,Domestic EPC Required,EPC Present,15 Jan 2020,D - 55 to 68,63.0,B - 81 to 91,89.0,BB102HJ,10003759080.0,"115, Burnley Road, Briercliffe",0.6048 -2297,247994,173 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,70.0,B - 81 to 91,87.0,BB104QH,100010330962.0,"173, Brownhill Avenue",0.4845 -2392,247995,175 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,74.0,B - 81 to 91,89.0,BB104QH,100010330964.0,"175, Brownhill Avenue",0.4845 -2951,251658,186 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,House: End Terrace,Domestic EPC Required,EPC Present,27 Jun 2016,C - 69 to 80,70.0,B - 81 to 91,88.0,BB104QH,100010330971.0,"186, Brownhill Avenue",0.4845 -3045,247996,188 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Mar 2016,C - 69 to 80,74.0,B - 81 to 91,89.0,BB104QH,100010330973.0,"188, Brownhill Avenue",0.4845 -3141,247997,190 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,73.0,B - 81 to 91,89.0,BB104QH,100010330975.0,"190, Brownhill Avenue",0.4845 -3192,250155,191 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,18 May 2016,D - 55 to 68,68.0,C - 69 to 80,75.0,BB104QH,100010330976.0,"191, Brownhill Avenue",0.4845 -3284,40802,193 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,30 Jul 2013,C - 69 to 80,69.0,C - 69 to 80,72.0,BB104QH,100010330978.0,"193, Brownhill Avenue",0.4845 -3379,112964,195 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Top,Domestic EPC Required,EPC Present,01 Jun 2011,C - 69 to 80,70.0,C - 69 to 80,73.0,BB104QH,100010330980.0,"195, Brownhill Avenue",0.4845 -3483,115743,197 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Top,Domestic EPC Required,EPC Present,08 Jul 2011,C - 69 to 80,71.0,C - 69 to 80,75.0,BB104QH,100010330982.0,"197, Brownhill Avenue",0.4845 -3590,40815,199 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,22 Aug 2025,C - 69 to 80,71.0,C - 69 to 80,73.0,BB104QH,100010330983.0,199 Brownhill Avenue,0.4845 -3689,362325,201 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,78.0,BB104QH,100010330985.0,201 Brownhill Avenue,0.4845 -3791,95890,203 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Top,Domestic EPC Required,EPC Present,01 Jun 2010,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QH,100010330987.0,"203, Brownhill Avenue",0.4845 -3888,304940,205 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Top,Domestic EPC Required,EPC Present,17 Apr 2019,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104QH,100010330989.0,"205, Brownhill Avenue",0.4845 -3998,208559,207 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,16 Jul 2024,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104QH,100010330991.0,207 Brownhill Avenue,0.4845 -4050,250156,208 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,18 May 2016,D - 55 to 68,68.0,C - 69 to 80,72.0,BB104QH,100010330992.0,"208, Brownhill Avenue",0.4845 -4103,40840,209 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,24 Apr 2009,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104QH,100010330993.0,"209, Brownhill Avenue",0.4845 -4158,76999,210 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,01 Jul 2024,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104QH,100010330994.0,210 Brownhill Avenue,0.4845 -4211,208558,211 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Top,Domestic EPC Required,EPC Present,29 Jul 2013,D - 55 to 68,68.0,C - 69 to 80,69.0,BB104QH,100010330995.0,"211, Brownhill Avenue",0.4845 -4273,362361,212 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104QH,100010330996.0,212 Brownhill Avenue,0.4845 -4327,305167,213 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Top,Domestic EPC Required,EPC Present,10 May 2019,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104QH,100010330997.0,"213, Brownhill Avenue",0.4845 -4393,97184,214 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Top,Domestic EPC Required,EPC Present,30 Jun 2010,C - 69 to 80,74.0,C - 69 to 80,79.0,BB104QH,100010330998.0,"214, Brownhill Avenue",0.4845 -4450,248661,215 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,06 Apr 2016,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104QH,100010330999.0,"215, Brownhill Avenue",0.4845 -4567,247973,217 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104QH,100010331001.0,217 Brownhill Avenue,0.4845 -4785,247974,221 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,Flat: Top,Domestic EPC Required,EPC Present,04 Mar 2016,B - 81 to 91,86.0,A - 92 Plus,,BB104QH,100010331005.0,"221, Brownhill Avenue",0.4845 -5232,248662,230 Brownhill Avenue Burnley Lancashire BB10 4QH,,, BB10 4QH,House: End Terrace,Domestic EPC Required,EPC Present,12 Apr 2016,D - 55 to 68,67.0,B - 81 to 91,88.0,BB104QH,100010331009.0,"230, Brownhill Avenue",0.4845 -2310,231071,327 Briercliffe Road Burnley Lancashire BB10 1TX,,, BB10 1TX,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Jan 2015,C - 69 to 80,69.0,B - 81 to 91,84.0,BB101TX,100010330244.0,"327, Briercliffe Road",0.4845 -2322,112178,3 Ingham Street Padiham Lancashire BB12 8DR,,, BB12 8DR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Apr 2011,D - 55 to 68,66.0,C - 69 to 80,69.0,BB128DR,100010344167.0,"3, Ingham Street, Padiham",0.6154 -2380,90281,1 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,04 Sep 2023,C - 69 to 80,74.0,C - 69 to 80,77.0,BB126EG,10003781453.0,1 Sycamore Close,0.4652 -2423,180883,2 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,12 Jun 2012,D - 55 to 68,66.0,C - 69 to 80,71.0,BB126EG,10003781464.0,"2, Sycamore Close",0.4652 -2479,250557,3 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,19 Jan 2026,C - 69 to 80,75.0,C - 69 to 80,77.0,BB126EG,10003781466.0,3 Sycamore Close,0.4652 -2527,190495,4 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,16 Oct 2012,D - 55 to 68,68.0,C - 69 to 80,72.0,BB126EG,10003781467.0,"4, Sycamore Close",0.4652 -2583,362244,5 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,79.0,BB126EG,10003781468.0,5 Sycamore Close,0.4652 -2633,190496,6 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,16 Oct 2012,C - 69 to 80,70.0,C - 69 to 80,74.0,BB126EG,10003781469.0,"6, Sycamore Close",0.4652 -2684,89606,7 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,06 Dec 2023,C - 69 to 80,74.0,C - 69 to 80,77.0,BB126EG,10003781470.0,7 Sycamore Close,0.4652 -2730,362254,8 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB126EG,10003781471.0,8 Sycamore Close,0.4652 -2780,241363,9 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,10 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,75.0,BB126EG,10003781472.0,9 Sycamore Close,0.4652 -2833,362262,10 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB126EG,10003781454.0,10 Sycamore Close,0.4705 -2881,103977,11 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,19 May 2021,C - 69 to 80,77.0,C - 69 to 80,79.0,BB126EG,10003781455.0,11 SYCAMORE CLOSE,0.4705 -2934,190520,12 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,17 Jul 2024,C - 69 to 80,78.0,C - 69 to 80,79.0,BB126EG,10003781456.0,12 Sycamore Close,0.4705 -2982,362274,13 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,79.0,BB126EG,10003781457.0,13 Sycamore Close,0.4705 -3030,222015,14 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,20 Jan 2014,C - 69 to 80,69.0,C - 69 to 80,73.0,BB126EG,10003781458.0,"14, Sycamore Close",0.4705 -3077,126693,15 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,20 Dec 2011,C - 69 to 80,70.0,C - 69 to 80,73.0,BB126EG,10003781459.0,"15, Sycamore Close",0.4705 -3172,105379,17 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,10 Jan 2011,C - 69 to 80,69.0,C - 69 to 80,73.0,BB126EG,10003781461.0,"17, Sycamore Close",0.4705 -3218,102784,18 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,29 Apr 2025,C - 69 to 80,77.0,C - 69 to 80,77.0,BB126EG,10003781462.0,18 Sycamore Close,0.4705 -3269,94852,19 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Bottom,Domestic EPC Required,EPC Present,01 Apr 2009,C - 69 to 80,69.0,C - 69 to 80,73.0,BB126EG,10003781463.0,"19, Sycamore Close",0.4705 -3314,225832,20 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,03 Jun 2014,D - 55 to 68,66.0,C - 69 to 80,71.0,BB126EG,10003781465.0,"20, Sycamore Close",0.4705 -13170,362821,16 Sycamore Close Burnley Lancashire BB12 6EG,,, BB12 6EG,Flat: Top,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB126EG,10003781460.0,16 Sycamore Close,0.4705 -2381,341705,8 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Oct 2021,D - 55 to 68,67.0,B - 81 to 91,87.0,BB104NE,100010333649.0,8 Chiltern Avenue,0.4705 -2477,40765,10 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Jun 2009,D - 55 to 68,65.0,C - 69 to 80,72.0,BB104NE,100010333651.0,"10, Chiltern Avenue",0.4754 -3078,98753,22 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,02 Jun 2026,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104NE,100010333663.0,"22, Chiltern Avenue",0.4754 -3173,136776,24 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,24 May 2024,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104NE,100010333665.0,24 Chiltern Avenue,0.4754 -3270,118382,26 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,24 Feb 2026,D - 55 to 68,65.0,C - 69 to 80,73.0,BB104NE,100010333667.0,"26, Chiltern Avenue",0.4754 -3365,108843,28 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,21 Mar 2011,D - 55 to 68,68.0,B - 81 to 91,81.0,BB104NE,100010333669.0,"28, Chiltern Avenue",0.4754 -3574,181103,32 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,25 Jun 2012,D - 55 to 68,68.0,C - 69 to 80,75.0,BB104NE,100010333673.0,"32, Chiltern Avenue",0.4754 -3626,250559,33 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,09 Jun 2016,E - 39 to 54,54.0,D - 55 to 68,64.0,BB104NE,100010333674.0,"33, Chiltern Avenue",0.4754 -3676,40820,34 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,02 Jun 2026,D - 55 to 68,64.0,C - 69 to 80,73.0,BB104NE,100010333675.0,"34, Chiltern Avenue",0.4754 -3725,90265,35 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,08 Mar 2010,D - 55 to 68,67.0,C - 69 to 80,72.0,BB104NE,100010333676.0,"35, Chiltern Avenue",0.4754 -3776,222620,36 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,04 Mar 2014,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104NE,100010333677.0,"36, Chiltern Avenue",0.4754 -3826,323339,37 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,08 Oct 2019,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104NE,100010333678.0,"37, Chiltern Avenue",0.4754 -3875,323347,38 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,09 Oct 2019,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104NE,100010333679.0,"38, Chiltern Avenue",0.4754 -3925,268901,39 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,12 Dec 2016,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104NE,100010333680.0,"39, Chiltern Avenue",0.4754 -3981,40834,40 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,18 Apr 2023,C - 69 to 80,73.0,C - 69 to 80,75.0,BB104NE,100010333681.0,40 Chiltern Avenue,0.4754 -4035,323351,41 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,09 Oct 2019,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104NE,100010333682.0,"41, Chiltern Avenue",0.4754 -4088,237811,42 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,02 Jul 2015,C - 69 to 80,69.0,C - 69 to 80,77.0,BB104NE,100010333683.0,"42, Chiltern Avenue",0.4754 -4140,323338,43 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,07 Oct 2019,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104NE,100010333684.0,"43, Chiltern Avenue",0.4754 -4195,323348,44 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,09 Oct 2019,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104NE,100010333685.0,"44, Chiltern Avenue",0.4754 -4250,237812,45 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,02 Jul 2015,D - 55 to 68,68.0,C - 69 to 80,72.0,BB104NE,100010333686.0,"45, Chiltern Avenue",0.4754 -4308,323352,46 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,09 Oct 2019,C - 69 to 80,75.0,C - 69 to 80,76.0,BB104NE,100010333687.0,"46, Chiltern Avenue",0.4754 -4429,323350,48 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,09 Oct 2019,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104NE,100010333689.0,"48, Chiltern Avenue",0.4754 -4487,268810,49 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,28 Nov 2016,C - 69 to 80,73.0,C - 69 to 80,75.0,BB104NE,100010333690.0,"49, Chiltern Avenue",0.4754 -4604,205789,51 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,06 Jun 2013,D - 55 to 68,56.0,D - 55 to 68,67.0,BB104NE,100010333691.0,"51, Chiltern Avenue",0.4754 -4718,116416,53 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104NE,100010333693.0,53 Chiltern Avenue,0.4754 -4819,362395,55 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104NE,100010333695.0,55 Chiltern Avenue,0.4754 -5321,272421,65 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,13 Mar 2017,C - 69 to 80,73.0,C - 69 to 80,78.0,BB104NE,100010333697.0,"65, Chiltern Avenue",0.4754 -5429,224923,67 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,09 May 2014,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104NE,100010333698.0,"67, Chiltern Avenue",0.4754 -5536,253478,69 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,12 Sep 2016,C - 69 to 80,75.0,C - 69 to 80,76.0,BB104NE,100010333699.0,"69, Chiltern Avenue",0.4754 -5641,132615,71 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,13 Jan 2012,C - 69 to 80,70.0,C - 69 to 80,73.0,BB104NE,100010333700.0,"71, Chiltern Avenue",0.4754 -5843,362467,75 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,01 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104NE,100010333701.0,75 Chiltern Avenue,0.4754 -5939,94924,77 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Bottom,Domestic EPC Required,EPC Present,02 Dec 2026,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104NE,100010333702.0,"77, Chiltern Avenue",0.4754 -6117,100565,81 Chiltern Avenue Burnley Lancashire BB10 4NE,,, BB10 4NE,Flat: Top,Domestic EPC Required,EPC Present,23 Sep 2010,D - 55 to 68,66.0,C - 69 to 80,73.0,BB104NE,100010333704.0,"81, Chiltern Avenue",0.4754 -2389,230490,1 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,05 Dec 2014,D - 55 to 68,61.0,C - 69 to 80,78.0,BB127DA,100010332614.0,"1, Cambridge Drive, Padiham",0.6214 -2433,190621,2 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,18 Oct 2012,D - 55 to 68,65.0,B - 81 to 91,83.0,BB127DA,100010332615.0,"2, Cambridge Drive, Padiham",0.6214 -2489,222852,3 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Jan 2026,C - 69 to 80,74.0,B - 81 to 91,87.0,BB127DA,100010332616.0,"3 Cambridge Drive, Padiham",0.6214 -2536,246398,4 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Feb 2016,D - 55 to 68,59.0,B - 81 to 91,83.0,BB127DA,100010332617.0,"4, Cambridge Drive, Padiham",0.6214 -2595,362246,5 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,D - 55 to 68,68.0,B - 81 to 91,85.0,BB127DA,100010332618.0,"5 Cambridge Drive, Padiham",0.6214 -2642,362249,6 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB127DA,100010332619.0,"6 Cambridge Drive, Padiham",0.6214 -2694,362252,7 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,24 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,83.0,BB127DA,100010332620.0,"7 Cambridge Drive, Padiham",0.6214 -2792,286346,9 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,19 Jul 2017,D - 55 to 68,62.0,B - 81 to 91,81.0,BB127DA,100010332622.0,"9, Cambridge Drive, Padiham",0.6214 -2892,295522,11 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Jan 2018,D - 55 to 68,64.0,B - 81 to 91,85.0,BB127DA,100010332624.0,"11, Cambridge Drive, Padiham",0.6242 -2993,119038,13 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,72.0,B - 81 to 91,88.0,BB127DA,100010332626.0,"13, Cambridge Drive, Padiham",0.6242 -3090,40795,15 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2010,D - 55 to 68,61.0,C - 69 to 80,74.0,BB127DA,100010332628.0,"15, Cambridge Drive, Padiham",0.6242 -3183,211488,17 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,16 Oct 2013,D - 55 to 68,64.0,B - 81 to 91,81.0,BB127DA,100010332630.0,"17, Cambridge Drive, Padiham",0.6242 -3274,94837,19 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Mar 2010,D - 55 to 68,67.0,C - 69 to 80,69.0,BB127DA,100010332632.0,"19, Cambridge Drive, Padiham",0.6242 -3321,189413,20 Cambridge Drive PADIHAM Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Oct 2012,D - 55 to 68,67.0,B - 81 to 91,85.0,BB127DA,100010332633.0,"20, Cambridge Drive, Padiham",0.6242 -3374,204822,21 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 May 2013,D - 55 to 68,62.0,B - 81 to 91,86.0,BB127DA,100010332634.0,"21, Cambridge Drive, Padiham",0.6242 -3581,180696,25 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,07 Jun 2012,D - 55 to 68,68.0,B - 81 to 91,85.0,BB127DA,100010332638.0,"25, Cambridge Drive, Padiham",0.6242 -3685,225366,27 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 May 2014,D - 55 to 68,67.0,B - 81 to 91,84.0,BB127DA,100010332640.0,"27, Cambridge Drive, Padiham",0.6242 -3737,362327,28 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB127DA,100010332641.0,"28 Cambridge Drive, Padiham",0.6242 -3782,90246,29 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Feb 2010,C - 69 to 80,69.0,C - 69 to 80,73.0,BB127DA,100010332642.0,"29, Cambridge Drive, Padiham",0.6242 -3831,40829,30 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Jan 2026,C - 69 to 80,72.0,B - 81 to 91,85.0,BB127DA,100010332643.0,"30 Cambridge Drive, Padiham",0.6242 -3882,97232,31 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,27 Jul 2010,D - 55 to 68,56.0,D - 55 to 68,61.0,BB127DA,100010332644.0,"31, Cambridge Drive, Padiham",0.6242 -3934,240302,32 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,18 Aug 2015,D - 55 to 68,55.0,B - 81 to 91,81.0,BB127DA,100010332645.0,"32, Cambridge Drive, Padiham",0.6242 -4204,252235,37 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Jun 2016,C - 69 to 80,70.0,B - 81 to 91,86.0,BB127DA,100010332650.0,"37, Cambridge Drive, Padiham",0.6242 -4380,362368,40 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: End Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB127DA,100010332653.0,"40 Cambridge Drive, Padiham",0.6242 -4557,362379,43 Cambridge Drive Padiham Lancashire BB12 7DA,,, BB12 7DA,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB127DA,100010332656.0,"43 Cambridge Drive, Padiham",0.6242 -2393,324676,3 Downham Grove Burnley Lancashire BB10 4LG,,, BB10 4LG,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2019,D - 55 to 68,68.0,B - 81 to 91,87.0,BB104LG,100010337490.0,"3, Downham Grove",0.4596 -2445,40764,4 Downham Grove Burnley Lancashire BB10 4LG,,, BB10 4LG,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Jul 2024,C - 69 to 80,70.0,B - 81 to 91,84.0,BB104LG,100010337491.0,4 Downham Grove,0.4596 -2493,227728,5 Downham Grove Burnley Lancashire BB10 4LG,,, BB10 4LG,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,65.0,C - 69 to 80,76.0,BB104LG,100010337492.0,5 Downham Grove,0.4596 -2746,324698,10 Downham Grove Burnley Lancashire BB10 4LG,,, BB10 4LG,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2019,C - 69 to 80,73.0,B - 81 to 91,89.0,BB104LG,100010337497.0,"10, Downham Grove",0.4652 -2846,230500,12 Downham Grove Burnley Lancashire BB10 4LG,,, BB10 4LG,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Dec 2014,D - 55 to 68,66.0,B - 81 to 91,86.0,BB104LG,100010337499.0,"12, Downham Grove",0.4652 -2949,324697,14 Downham Grove Burnley Lancashire BB10 4LG,,, BB10 4LG,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2019,C - 69 to 80,71.0,B - 81 to 91,89.0,BB104LG,100010337501.0,"14, Downham Grove",0.4652 -3003,112184,15 Downham Grove Burnley Lancashire BB10 4LG,,, BB10 4LG,House: End Terrace,Domestic EPC Required,EPC Present,13 Apr 2011,D - 55 to 68,65.0,C - 69 to 80,70.0,BB104LG,100010337502.0,"15, Downham Grove",0.4652 -3047,77007,16 Downham Grove Burnley Lancashire BB10 4LG,,, BB10 4LG,House: End Terrace,Domestic EPC Required,EPC Present,01 Oct 2009,D - 55 to 68,67.0,C - 69 to 80,71.0,BB104LG,100010337503.0,"16, Downham Grove",0.4652 -3140,362285,18 Downham Grove Burnley Lancashire BB10 4LG,,, BB10 4LG,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB104LG,100010337505.0,18 Downham Grove,0.4652 -2413,247843,29 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QN,100010331156.0,"29, Browsholme Avenue",0.4845 -2517,247844,31 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,01 Mar 2016,D - 55 to 68,67.0,C - 69 to 80,74.0,BB104QN,100010331158.0,"31, Browsholme Avenue",0.4845 -2622,246816,33 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104QN,100010331160.0,"33, Browsholme Avenue",0.4845 -2725,246822,35 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,71.0,C - 69 to 80,74.0,BB104QN,100010331162.0,"35, Browsholme Avenue",0.4845 -2820,247845,37 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,01 Mar 2016,D - 55 to 68,68.0,C - 69 to 80,74.0,BB104QN,100010331164.0,"37, Browsholme Avenue",0.4845 -2923,247846,39 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QN,100010331166.0,"39, Browsholme Avenue",0.4845 -3020,247847,41 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,73.0,C - 69 to 80,75.0,BB104QN,100010331168.0,"41, Browsholme Avenue",0.4845 -3117,247848,43 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,74.0,C - 69 to 80,75.0,BB104QN,100010331170.0,"43, Browsholme Avenue",0.4845 -3211,247849,45 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QN,100010331172.0,"45, Browsholme Avenue",0.4845 -3306,247998,47 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,31 Mar 2016,D - 55 to 68,68.0,C - 69 to 80,72.0,BB104QN,100010331174.0,"47, Browsholme Avenue",0.4845 -3408,247964,49 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,73.0,C - 69 to 80,74.0,BB104QN,100010331176.0,"49, Browsholme Avenue",0.4845 -3513,248663,51 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,74.0,C - 69 to 80,75.0,BB104QN,100010331177.0,"51, Browsholme Avenue",0.4845 -3616,247850,53 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,70.0,C - 69 to 80,75.0,BB104QN,100010331178.0,"53, Browsholme Avenue",0.4845 -3716,247965,55 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,71.0,C - 69 to 80,76.0,BB104QN,100010331179.0,"55, Browsholme Avenue",0.4845 -3815,247851,57 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,75.0,C - 69 to 80,76.0,BB104QN,100010331180.0,"57, Browsholme Avenue",0.4845 -3865,246823,58 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QN,100010331181.0,"58, Browsholme Avenue",0.4845 -3914,248664,59 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,18 Apr 2016,C - 69 to 80,71.0,C - 69 to 80,76.0,BB104QN,100010331182.0,"59, Browsholme Avenue",0.4845 -3968,246824,60 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104QN,100010331183.0,"60, Browsholme Avenue",0.4845 -4021,247999,61 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,71.0,C - 69 to 80,76.0,BB104QN,100010331184.0,"61, Browsholme Avenue",0.4845 -4076,248000,62 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,31 Mar 2016,C - 69 to 80,70.0,C - 69 to 80,73.0,BB104QN,100010331185.0,"62, Browsholme Avenue",0.4845 -4128,247966,63 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Mar 2016,D - 55 to 68,68.0,C - 69 to 80,74.0,BB104QN,100010331186.0,"63, Browsholme Avenue",0.4845 -4182,247967,64 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QN,100010331187.0,64 Browsholme Avenue,0.4845 -4238,248189,65 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,29 Mar 2016,C - 69 to 80,71.0,C - 69 to 80,73.0,BB104QN,100010331188.0,"65, Browsholme Avenue",0.4845 -4302,246825,66 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,70.0,C - 69 to 80,75.0,BB104QN,100010331189.0,"66, Browsholme Avenue",0.4845 -4419,246826,68 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104QN,100010331191.0,"68, Browsholme Avenue",0.4845 -4475,247968,69 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104QN,100010331192.0,"69, Browsholme Avenue",0.4845 -4535,246827,70 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,15 Feb 2016,D - 55 to 68,67.0,C - 69 to 80,69.0,BB104QN,100010331193.0,"70, Browsholme Avenue",0.4845 -4594,246809,71 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,18 Feb 2016,D - 55 to 68,68.0,C - 69 to 80,72.0,BB104QN,100010331194.0,"71, Browsholme Avenue",0.4845 -4655,246828,72 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104QN,100010331195.0,"72, Browsholme Avenue",0.4845 -4706,246810,73 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,18 Feb 2016,C - 69 to 80,71.0,C - 69 to 80,72.0,BB104QN,100010331196.0,"73, Browsholme Avenue",0.4845 -4760,246829,74 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104QN,100010331197.0,"74, Browsholme Avenue",0.4845 -4809,246836,75 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,18 Feb 2016,C - 69 to 80,71.0,C - 69 to 80,72.0,BB104QN,100010331198.0,"75, Browsholme Avenue",0.4845 -4862,246832,76 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QN,100010331199.0,"76, Browsholme Avenue",0.4845 -4903,248667,77 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,12 Apr 2016,D - 55 to 68,68.0,C - 69 to 80,75.0,BB104QN,100010331200.0,"77, Browsholme Avenue",0.4845 -4948,247969,78 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104QN,100010331201.0,"78, Browsholme Avenue",0.4845 -4994,245696,79 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2016,D - 55 to 68,68.0,C - 69 to 80,73.0,BB104QN,100010331202.0,"79, Browsholme Avenue",0.4845 -5045,246833,80 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,75.0,C - 69 to 80,76.0,BB104QN,100010331203.0,"80, Browsholme Avenue",0.4845 -5094,246812,81 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,18 Feb 2016,C - 69 to 80,71.0,C - 69 to 80,72.0,BB104QN,100010331204.0,"81, Browsholme Avenue",0.4845 -5147,248190,82 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,30 Mar 2016,D - 55 to 68,59.0,D - 55 to 68,66.0,BB104QN,100010331205.0,"82, Browsholme Avenue",0.4845 -5198,250509,83 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,20 Jun 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB104QN,100010331206.0,83 Browsholme Avenue,0.4845 -5259,230638,84 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,17 Dec 2014,D - 55 to 68,61.0,C - 69 to 80,70.0,BB104QN,100010331207.0,"84, Browsholme Avenue",0.4845 -5367,247852,86 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104QN,100010331208.0,"86, Browsholme Avenue",0.4845 -5477,248668,88 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,12 Apr 2016,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104QN,100010331209.0,"88, Browsholme Avenue",0.4845 -5579,248191,90 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,11 Mar 2016,D - 55 to 68,68.0,C - 69 to 80,72.0,BB104QN,100010331210.0,"90, Browsholme Avenue",0.4845 -5685,248192,92 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QN,100010331211.0,"92, Browsholme Avenue",0.4845 -5784,246813,94 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,18 Feb 2016,C - 69 to 80,73.0,C - 69 to 80,74.0,BB104QN,100010331212.0,"94, Browsholme Avenue",0.4845 -5973,245697,98 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104QN,100010331214.0,"98, Browsholme Avenue",0.4845 -6066,245700,100 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2016,D - 55 to 68,68.0,C - 69 to 80,72.0,BB104QN,100010331215.0,"100, Browsholme Avenue",0.4886 -6158,245704,102 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104QN,100010331216.0,"102, Browsholme Avenue",0.4886 -6340,246389,106 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,68.0,C - 69 to 80,72.0,BB104QN,100010331218.0,"106, Browsholme Avenue",0.4886 -6438,245708,108 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104QN,100010331219.0,"108, Browsholme Avenue",0.4886 -6637,247970,112 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104QN,100010331221.0,"112, Browsholme Avenue",0.4886 -6736,245711,114 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,71.0,C - 69 to 80,75.0,BB104QN,100010331222.0,"114, Browsholme Avenue",0.4886 -6836,245715,116 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104QN,100010331223.0,"116, Browsholme Avenue",0.4886 -6936,247853,118 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104QN,100010331224.0,"118, Browsholme Avenue",0.4886 -7037,245717,120 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,73.0,C - 69 to 80,74.0,BB104QN,100010331225.0,"120, Browsholme Avenue",0.4886 -7135,247971,122 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104QN,100010331226.0,"122, Browsholme Avenue",0.4886 -7236,245718,124 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104QN,100010331227.0,"124, Browsholme Avenue",0.4886 -7336,244946,126 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Jan 2016,D - 55 to 68,68.0,C - 69 to 80,69.0,BB104QN,100010331228.0,"126, Browsholme Avenue",0.4886 -7430,247972,128 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104QN,100010331229.0,"128, Browsholme Avenue",0.4886 -7521,245812,130 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,71.0,C - 69 to 80,74.0,BB104QN,100010331230.0,"130, Browsholme Avenue",0.4886 -7623,245813,132 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,69.0,C - 69 to 80,72.0,BB104QN,100010331231.0,"132, Browsholme Avenue",0.4886 -7735,245814,134 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Jan 2016,D - 55 to 68,68.0,C - 69 to 80,69.0,BB104QN,100010331232.0,"134, Browsholme Avenue",0.4886 -7845,245815,136 Browsholme Avenue Burnley Lancashire BB10 4QN,,, BB10 4QN,Flat: Top,Domestic EPC Required,EPC Present,04 Jan 2016,C - 69 to 80,74.0,C - 69 to 80,74.0,BB104QN,100010331233.0,"136, Browsholme Avenue",0.4886 -2422,222621,3 Slaidburn Avenue Burnley Lancashire BB10 4NS,,, BB10 4NS,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104NS,100010355953.0,3 Slaidburn Avenue,0.4754 -2631,243002,7 Slaidburn Avenue Burnley Lancashire BB10 4NS,,, BB10 4NS,House: End Terrace,Domestic EPC Required,EPC Present,22 Oct 2015,D - 55 to 68,61.0,B - 81 to 91,87.0,BB104NS,100010355957.0,"7, Slaidburn Avenue",0.4754 -2682,323777,8 Slaidburn Avenue Burnley Lancashire BB10 4NS,,, BB10 4NS,House: End Terrace,Domestic EPC Required,EPC Present,07 Nov 2019,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104NS,100010355958.0,"8, Slaidburn Avenue",0.4754 -2727,225871,9 Slaidburn Avenue Burnley Lancashire BB10 4NS,,, BB10 4NS,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Jan 2026,C - 69 to 80,74.0,B - 81 to 91,90.0,BB104NS,100010355959.0,9 Slaidburn Avenue,0.4754 -2878,40782,12 Slaidburn Avenue Burnley Lancashire BB10 4NS,,, BB10 4NS,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Apr 2009,D - 55 to 68,67.0,C - 69 to 80,76.0,BB104NS,100010355962.0,"12, Slaidburn Avenue",0.4801 -3517,90071,25 Slaidburn Avenue Burnley Lancashire BB10 4NS,,, BB10 4NS,House: End Terrace,Domestic EPC Required,EPC Present,19 Jan 2010,D - 55 to 68,60.0,C - 69 to 80,76.0,BB104NS,100010355973.0,"25, Slaidburn Avenue",0.4801 -3724,192307,29 Slaidburn Avenue Burnley Lancashire BB10 4NS,,, BB10 4NS,House: End Terrace,Domestic EPC Required,EPC Present,19 Aug 2024,C - 69 to 80,69.0,B - 81 to 91,85.0,BB104NS,100010355977.0,29 Slaidburn Avenue,0.4801 -3775,323776,30 Slaidburn Avenue Burnley Lancashire BB10 4NS,,, BB10 4NS,House: End Terrace,Domestic EPC Required,EPC Present,07 Nov 2019,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104NS,100010355978.0,"30, Slaidburn Avenue",0.4801 -2459,229251,2 Hall Hill Street Padiham Lancashire BB12 8HJ,,, BB12 8HJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,16 Oct 2014,D - 55 to 68,63.0,B - 81 to 91,86.0,BB128HJ,100010340829.0,"2, Hall Hill Street, Padiham",0.659 -2561,362240,4 Hall Hill Street Padiham Lancashire BB12 8HJ,,, BB12 8HJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB128HJ,100010340830.0,"4 Hall Hill Street, Padiham",0.659 -2663,40772,6 Hall Hill Street Padiham Lancashire BB12 8HJ,,, BB12 8HJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,68.0,B - 81 to 91,89.0,BB128HJ,100010340831.0,"6, Hall Hill Street, Padiham",0.659 -2756,196141,8 Hall Hill Street Padiham Lancashire BB12 8HJ,,, BB12 8HJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,29 Oct 2025,B - 81 to 91,86.0,B - 81 to 91,91.0,BB128HJ,100010340832.0,"8 Hall Hill Street, Padiham",0.659 -2860,362263,10 Hall Hill Street Padiham Lancashire BB12 8HJ,,, BB12 8HJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB128HJ,100010340833.0,"10 Hall Hill Street, Padiham",0.6617 -2963,189873,12 Hall Hill Street Padiham Lancashire BB12 8HJ,,, BB12 8HJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB128HJ,100010340834.0,"12 Hall Hill Street, Padiham",0.6617 -2475,221661,1 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2025,C - 69 to 80,76.0,C - 69 to 80,78.0,BB103DR,100010352006.0,1 Pheasantford Green,0.4845 -2522,129473,2 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,30 Jun 2025,C - 69 to 80,77.0,C - 69 to 80,77.0,BB103DR,100010352007.0,2 Pheasantford Green,0.4845 -2581,250517,3 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,06 Jun 2016,C - 69 to 80,69.0,C - 69 to 80,74.0,BB103DR,100010352008.0,"3, Pheasantford Green",0.4845 -2629,325779,4 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,79.0,C - 69 to 80,79.0,BB103DR,100010352009.0,"4, Pheasantford Green",0.4845 -2681,233713,5 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,75.0,BB103DR,100010352010.0,5 Pheasantford Green,0.4845 -2728,182482,6 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,18 Jul 2012,D - 55 to 68,63.0,C - 69 to 80,70.0,BB103DR,100010352011.0,"6, Pheasantford Green",0.4845 -2776,142712,7 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,16 Oct 2024,C - 69 to 80,76.0,C - 69 to 80,78.0,BB103DR,100010352012.0,7 Pheasantford Green,0.4845 -2828,325767,8 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,71.0,C - 69 to 80,71.0,BB103DR,100010352013.0,"8, Pheasantford Green",0.4845 -2877,325778,9 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,77.0,C - 69 to 80,78.0,BB103DR,100010352014.0,"9, Pheasantford Green",0.4845 -2930,253474,10 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,24 Aug 2016,C - 69 to 80,77.0,C - 69 to 80,78.0,BB103DR,100010352015.0,"10, Pheasantford Green",0.4886 -2978,325777,11 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,77.0,C - 69 to 80,79.0,BB103DR,100010352016.0,"11, Pheasantford Green",0.4886 -3027,221662,12 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,25 Jul 2025,C - 69 to 80,75.0,C - 69 to 80,75.0,BB103DR,100010352017.0,12 Pheasantford Green,0.4886 -3074,188285,13 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,78.0,BB103DR,100010352018.0,13 Pheasantford Green,0.4886 -3121,362283,14 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,76.0,C - 69 to 80,78.0,BB103DR,100010352019.0,14 Pheasantford Green,0.4886 -3167,325766,15 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,79.0,C - 69 to 80,79.0,BB103DR,100010352020.0,"15, Pheasantford Green",0.4886 -3215,119916,16 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,26 Oct 2011,D - 55 to 68,63.0,D - 55 to 68,67.0,BB103DR,100010352021.0,"16, Pheasantford Green",0.4886 -3264,225347,17 Pheasantford Green Burnley BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,01 Jul 2025,C - 69 to 80,75.0,C - 69 to 80,75.0,BB103DR,100010352022.0,17 Pheasantford Green,0.5742 -3311,325776,18 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,77.0,C - 69 to 80,78.0,BB103DR,100010352023.0,"18, Pheasantford Green",0.4886 -3363,325765,19 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,79.0,C - 69 to 80,79.0,BB103DR,100010352024.0,"19, Pheasantford Green",0.4886 -3412,325775,20 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,76.0,C - 69 to 80,79.0,BB103DR,100010352025.0,"20, Pheasantford Green",0.4886 -3463,325764,21 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,70.0,C - 69 to 80,71.0,BB103DR,100010352026.0,"21, Pheasantford Green",0.4886 -3515,325774,22 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,76.0,C - 69 to 80,78.0,BB103DR,100010352027.0,"22, Pheasantford Green",0.4886 -3570,325624,23 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,20 Jan 2020,C - 69 to 80,78.0,C - 69 to 80,79.0,BB103DR,100010352028.0,"23, Pheasantford Green",0.4886 -3622,325773,24 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,77.0,C - 69 to 80,79.0,BB103DR,100010352029.0,"24, Pheasantford Green",0.4886 -3673,325625,25 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,20 Jan 2020,C - 69 to 80,79.0,C - 69 to 80,80.0,BB103DR,100010352030.0,"25, Pheasantford Green",0.4886 -3723,116223,26 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,03 Aug 2011,C - 69 to 80,70.0,C - 69 to 80,72.0,BB103DR,100010352031.0,"26, Pheasantford Green",0.4886 -3773,40825,27 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB103DR,100010352032.0,27 Pheasantford Green,0.4886 -3822,362334,28 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jan 2020,C - 69 to 80,77.0,C - 69 to 80,79.0,BB103DR,100010352033.0,"28, Pheasantford Green",0.4886 -3870,179917,29 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,75.0,BB103DR,100010352034.0,29 Pheasantford Green,0.4886 -3921,109212,30 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,23 Mar 2011,C - 69 to 80,70.0,C - 69 to 80,73.0,BB103DR,100010352035.0,"30, Pheasantford Green",0.4886 -4029,325626,32 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,20 Jan 2020,C - 69 to 80,78.0,C - 69 to 80,78.0,BB103DR,100010352037.0,"32, Pheasantford Green",0.4886 -4082,325771,33 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,78.0,C - 69 to 80,78.0,BB103DR,100010352038.0,"33, Pheasantford Green",0.4886 -4134,325772,34 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,76.0,C - 69 to 80,79.0,BB103DR,100010352039.0,"34, Pheasantford Green",0.4886 -4244,194526,36 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,23 Jun 2025,C - 69 to 80,79.0,C - 69 to 80,80.0,BB103DR,100010352041.0,36 Pheasantford Green,0.4886 -4304,103474,37 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,11 Nov 2010,C - 69 to 80,70.0,C - 69 to 80,75.0,BB103DR,100010352042.0,"37, Pheasantford Green",0.4886 -4362,187507,38 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,28 Aug 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB103DR,100010352043.0,38 Pheasantford Green,0.4886 -4424,40851,39 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,13 Feb 2009,C - 69 to 80,73.0,C - 69 to 80,77.0,BB103DR,100010352044.0,"39, Pheasantford Green",0.4886 -4479,199714,40 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,01 Jul 2024,C - 69 to 80,75.0,C - 69 to 80,77.0,BB103DR,100010352045.0,40 Pheasantford Green,0.4886 -4543,325769,41 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Top,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,77.0,C - 69 to 80,79.0,BB103DR,100010352046.0,"41, Pheasantford Green",0.4886 -4600,40866,42 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,23 Sep 2008,C - 69 to 80,74.0,C - 69 to 80,80.0,BB103DR,,, -12655,302656,31 Pheasantford Green Burnley Lancashire BB10 3DR,,, BB10 3DR,Flat: Bottom,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,75.0,BB103DR,100010352036.0,31 Pheasantford Green,0.4886 -2488,245174,17 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: End Terrace,Domestic EPC Required,EPC Present,17 Nov 2015,C - 69 to 80,73.0,B - 81 to 91,90.0,BB104BJ,100010342956.0,"17, Holcombe Drive",0.4705 -2791,245175,23 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: End Terrace,Domestic EPC Required,EPC Present,16 Nov 2015,C - 69 to 80,69.0,B - 81 to 91,88.0,BB104BJ,100010342962.0,"23, Holcombe Drive",0.4705 -2992,245791,27 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,71.0,B - 81 to 91,89.0,BB104BJ,100010342966.0,"27, Holcombe Drive",0.4705 -3684,76903,41 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: End Terrace,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,71.0,B - 81 to 91,88.0,BB104BJ,100010342980.0,"41, Holcombe Drive",0.4705 -3783,245797,43 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: End Terrace,Domestic EPC Required,EPC Present,09 Dec 2015,C - 69 to 80,74.0,B - 81 to 91,90.0,BB104BJ,100010342982.0,"43, Holcombe Drive",0.4705 -3881,245178,45 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2015,C - 69 to 80,72.0,B - 81 to 91,90.0,BB104BJ,100010342984.0,"45, Holcombe Drive",0.4705 -3989,243797,47 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2015,D - 55 to 68,61.0,C - 69 to 80,79.0,BB104BJ,100010342986.0,"47, Holcombe Drive",0.4705 -4319,245800,53 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,64.0,C - 69 to 80,78.0,BB104BJ,100010342992.0,"53, Holcombe Drive",0.4705 -5494,246835,75 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Feb 2016,C - 69 to 80,74.0,B - 81 to 91,90.0,BB104BJ,100010343014.0,"75, Holcombe Drive",0.4705 -5595,245181,77 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2015,C - 69 to 80,75.0,A - 92 Plus,92.0,BB104BJ,100010343016.0,"77, Holcombe Drive",0.4705 -5993,243802,85 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Nov 2015,D - 55 to 68,62.0,C - 69 to 80,79.0,BB104BJ,100010343024.0,"85, Holcombe Drive",0.4705 -6455,243818,95 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2015,C - 69 to 80,69.0,B - 81 to 91,87.0,BB104BJ,100010343034.0,"95, Holcombe Drive",0.4705 -6559,245182,97 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Dec 2015,C - 69 to 80,72.0,B - 81 to 91,90.0,BB104BJ,100010343036.0,"97, Holcombe Drive",0.4705 -6659,245183,99 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,90.0,BB104BJ,100010343038.0,"99, Holcombe Drive",0.4705 -6762,243819,101 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,88.0,BB104BJ,100010343040.0,101 Holcombe Drive,0.4754 -6855,245184,103 Holcombe Drive Burnley Lancashire BB10 4BJ,,, BB10 4BJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2015,C - 69 to 80,74.0,B - 81 to 91,90.0,BB104BJ,100010343042.0,"103, Holcombe Drive",0.4754 -2543,126616,186 Rossendale Road Burnley Lancashire BB11 5DF,,, BB11 5DF,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Dec 2011,D - 55 to 68,66.0,C - 69 to 80,69.0,BB115DF,100010354750.0,"186, Rossendale Road",0.4801 -2544,238928,1 Devon Grove Burnley Lancashire BB12 6AR,,, BB12 6AR,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jul 2015,C - 69 to 80,70.0,B - 81 to 91,86.0,BB126AR,100010337297.0,"1, Devon Grove",0.4471 -2646,222438,3 Devon Grove Burnley Lancashire BB12 6AR,,, BB12 6AR,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Dec 2023,D - 55 to 68,66.0,B - 81 to 91,85.0,BB126AR,100010337299.0,3 Devon Grove,0.4471 -2794,362260,6 Devon Grove Burnley Lancashire BB12 6AR,,, BB12 6AR,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB126AR,100010337302.0,6 Devon Grove,0.4471 -3044,200180,11 Devon Grove Burnley Lancashire BB12 6AR,,, BB12 6AR,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Mar 2013,C - 69 to 80,69.0,B - 81 to 91,86.0,BB126AR,100010337306.0,"11, Devon Grove",0.4536 -3281,362300,16 Devon Grove Burnley Lancashire BB12 6AR,,, BB12 6AR,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126AR,100010337311.0,16 Devon Grove,0.4536 -3329,182443,17 Devon Grove Burnley Lancashire BB12 6AR,,, BB12 6AR,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Jul 2012,D - 55 to 68,59.0,B - 81 to 91,87.0,BB126AR,100010337312.0,"17, Devon Grove",0.4536 -2593,362245,14 Ellis Street Burnley Lancashire BB11 4PS,,, BB11 4PS,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB114PS,100010338199.0,14 Ellis Street,0.4596 -2664,252212,1 Cromer Grove Burnley Lancashire BB10 3HB,,, BB10 3HB,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2025,D - 55 to 68,68.0,C - 69 to 80,75.0,BB103HB,100010336169.0,1 Cromer Grove,0.4536 -2714,116225,2 Cromer Grove Burnley Lancashire BB10 3HB,,, BB10 3HB,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Nov 2025,C - 69 to 80,77.0,B - 81 to 91,83.0,BB103HB,100010336170.0,2 Cromer Grove,0.4536 -2811,326174,4 Cromer Grove Burnley Lancashire BB10 3HB,,, BB10 3HB,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Feb 2020,C - 69 to 80,74.0,B - 81 to 91,87.0,BB103HB,100010336172.0,"4, Cromer Grove",0.4536 -2914,252189,6 Cromer Grove Burnley Lancashire BB10 3HB,,, BB10 3HB,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jul 2009,D - 55 to 68,67.0,C - 69 to 80,74.0,BB103HB,100010336174.0,"6, Cromer Grove",0.4536 -3154,252149,11 Cromer Grove Burnley Lancashire BB10 3HB,,, BB10 3HB,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2014,C - 69 to 80,71.0,B - 81 to 91,85.0,BB103HB,100010336179.0,"11, Cromer Grove",0.4596 -3353,326175,15 Cromer Grove Burnley Lancashire BB10 3HB,,, BB10 3HB,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Feb 2020,C - 69 to 80,75.0,B - 81 to 91,87.0,BB103HB,100010336183.0,"15, Cromer Grove",0.4596 -3660,220130,21 Cromer Grove Burnley Lancashire BB10 3HB,,, BB10 3HB,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jul 2013,D - 55 to 68,58.0,C - 69 to 80,72.0,BB103HB,100010336189.0,"21, Cromer Grove",0.4596 -2686,119039,4 Radnor Avenue Burnley Lancashire BB12 6AT,,, BB12 6AT,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Oct 2011,D - 55 to 68,65.0,C - 69 to 80,70.0,BB126AT,100010353051.0,"4, Radnor Avenue",0.4596 -2883,40783,8 Radnor Avenue Burnley Lancashire BB12 6AT,,, BB12 6AT,House: End Terrace,Domestic EPC Required,EPC Present,02 Nov 2025,D - 55 to 68,60.0,C - 69 to 80,78.0,BB126AT,100010353055.0,8 Radnor Avenue,0.4596 -3171,362290,14 Radnor Avenue Burnley Lancashire BB12 6AT,,, BB12 6AT,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB126AT,100010353061.0,14 Radnor Avenue,0.4652 -3219,362293,15 Radnor Avenue Burnley Lancashire BB12 6AT,,, BB12 6AT,House: End Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,83.0,BB126AT,100010353062.0,15 Radnor Avenue,0.4652 -3268,362299,16 Radnor Avenue Burnley Lancashire BB12 6AT,,, BB12 6AT,House: End Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,83.0,BB126AT,100010353063.0,16 Radnor Avenue,0.4652 -2729,126694,10 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: End Terr,Domestic EPC Required,EPC Present,15 Aug 2024,D - 55 to 68,66.0,B - 81 to 91,87.0,BB102HY,100010341521.0,"10 Harrison Street, Briercliffe",0.5636 -2830,325618,12 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Jan 2020,C - 69 to 80,72.0,B - 81 to 91,91.0,BB102HY,100010341523.0,"12, Harrison Street, Briercliffe",0.5636 -2931,239284,14 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Jan 2026,C - 69 to 80,72.0,B - 81 to 91,89.0,BB102HY,100010341525.0,"14 Harrison Street, Briercliffe",0.5636 -3026,253472,16 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: End Terr,Domestic EPC Required,EPC Present,02 Apr 2025,D - 55 to 68,68.0,B - 81 to 91,88.0,BB102HY,100010341527.0,"16 Harrison Street, Briercliffe",0.5636 -3873,325620,33 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: End Terr,Domestic EPC Required,EPC Present,15 Jan 2020,D - 55 to 68,68.0,B - 81 to 91,90.0,BB102HY,100010341538.0,"33, Harrison Street, Briercliffe",0.5636 -3980,246850,35 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Feb 2016,C - 69 to 80,71.0,B - 81 to 91,89.0,BB102HY,100010341539.0,"35, Harrison Street, Briercliffe",0.5636 -4085,205799,37 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,02 Feb 2026,C - 69 to 80,71.0,B - 81 to 91,81.0,BB102HY,100010341540.0,"37, Harrison Street, Briercliffe",0.5636 -4192,325619,39 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Jan 2020,C - 69 to 80,72.0,B - 81 to 91,91.0,BB102HY,100010341541.0,"39, Harrison Street, Briercliffe",0.5636 -4307,325617,41 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Jan 2020,C - 69 to 80,73.0,A - 92 Plus,92.0,BB102HY,100010341542.0,"41, Harrison Street, Briercliffe",0.5636 -4428,40852,43 Harrison Street Briercliffe Burnley Lancashire BB10 2HY,,, BB10 2HY,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jun 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB102HY,100010341543.0,"43 Harrison Street, Briercliffe",0.5636 -2785,112759,50 Culshaw Street Burnley Lancashire BB10 4PE,,, BB10 4PE,House: Semi-Detached,Domestic EPC Required,EPC Present,24 May 2011,D - 55 to 68,62.0,C - 69 to 80,70.0,BB104PE,100010336515.0,"50, Culshaw Street",0.4705 -2796,40777,1 Valley Street Burnley Lancashire BB11 5LY,,, BB11 5LY,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Dec 2025,C - 69 to 80,74.0,C - 69 to 80,80.0,BB115LY,100010359187.0,1 Valley Street,0.4596 -2897,110666,3 Valley Street Burnley Lancashire BB11 5LY,,, BB11 5LY,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,62.0,C - 69 to 80,71.0,BB115LY,100010359188.0,"3, Valley Street",0.4596 -3000,69678,5 Valley Street Burnley Lancashire BB11 5LY,,, BB11 5LY,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jun 2024,C - 69 to 80,72.0,B - 81 to 91,89.0,BB115LY,100010359189.0,5 Valley Street,0.4596 -692,110630,2 Eskdale Gardens Padiham Lancashire BB12 8NX,,, BB12 8NX,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Oct 2015,D - 55 to 68,65.0,B - 81 to 91,88.0,BB128NX,10003780689.0,"2, Eskdale Gardens, Padiham",0.6214 -840,230660,5 Eskdale Gardens Padiham Lancashire BB12 8NX,,, BB12 8NX,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,30 Dec 2014,D - 55 to 68,63.0,B - 81 to 91,87.0,BB128NX,10003780692.0,"5, Eskdale Gardens, Padiham",0.6214 -888,232171,6 Eskdale Gardens Padiham Lancashire BB12 8NX,,, BB12 8NX,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Jan 2015,D - 55 to 68,68.0,B - 81 to 91,88.0,BB128NX,10003780693.0,"6, Eskdale Gardens, Padiham",0.6214 -939,221645,7 Eskdale Gardens Padiham Lancashire BB12 8NX,,, BB12 8NX,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,79.0,B - 81 to 91,81.0,BB128NX,10003780694.0,"7 Eskdale Gardens, Padiham",0.6214 -992,229123,8 Eskdale Gardens Padiham Lancashire BB12 8NX,,, BB12 8NX,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Jan 2026,C - 69 to 80,78.0,C - 69 to 80,80.0,BB128NX,10003780695.0,"8 Eskdale Gardens, Padiham",0.6214 -1049,222426,9 Eskdale Gardens Padiham Lancashire BB12 8NX,,, BB12 8NX,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Jan 2014,D - 55 to 68,63.0,B - 81 to 91,86.0,BB128NX,10003780696.0,"9, Eskdale Gardens, Padiham",0.6214 -1215,98979,12 Eskdale Gardens Padiham Lancashire BB12 8NX,,, BB12 8NX,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,06 Sep 2010,D - 55 to 68,65.0,C - 69 to 80,70.0,BB128NX,10003780699.0,"12, Eskdale Gardens, Padiham",0.6242 -13247,337695,10 Eskdale Gardens Padiham Lancashire BB12 8NX,,, BB12 8NX,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,02 Jan 2026,B - 81 to 91,87.0,B - 81 to 91,90.0,BB128NX,10003780697.0,"10 Eskdale Gardens, Padiham",0.6242 -734,105764,108 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 Jan 2026,C - 69 to 80,70.0,B - 81 to 91,87.0,BB104NP,100010331340.0,108 Brunshaw Avenue,0.4801 -835,221632,110 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Jan 2026,C - 69 to 80,71.0,B - 81 to 91,89.0,BB104NP,100010331341.0,110 Brunshaw Avenue,0.4801 -934,221135,112 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Jul 2024,C - 69 to 80,69.0,B - 81 to 91,89.0,BB104NP,100010331343.0,112 Brunshaw Avenue,0.4801 -1045,112886,114 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,25 May 2011,D - 55 to 68,63.0,D - 55 to 68,67.0,BB104NP,100010331344.0,"114, Brunshaw Avenue",0.4801 -1155,228074,116 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Aug 2014,D - 55 to 68,66.0,B - 81 to 91,89.0,BB104NP,100010331346.0,"116, Brunshaw Avenue",0.4801 -1210,226302,117 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Top,Domestic EPC Required,EPC Present,22 Jan 2026,C - 69 to 80,73.0,C - 69 to 80,78.0,BB104NP,100010331347.0,117 Brunshaw Avenue,0.4801 -1264,222615,118 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,26 Jan 2026,B - 81 to 91,84.0,B - 81 to 91,86.0,BB104NP,100010331348.0,118 Brunshaw Avenue,0.4801 -1322,323679,119 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Bottom,Domestic EPC Required,EPC Present,16 Oct 2019,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104NP,100010331349.0,"119, Brunshaw Avenue",0.4801 -1372,96023,120 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Jan 2026,B - 81 to 91,84.0,B - 81 to 91,86.0,BB104NP,100010331350.0,120 Brunshaw Avenue,0.4801 -1479,181037,122 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Aug 2025,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104NP,100010331352.0,122 Brunshaw Avenue,0.4801 -1536,323363,123 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Top,Domestic EPC Required,EPC Present,11 Oct 2019,C - 69 to 80,78.0,C - 69 to 80,79.0,BB104NP,100010331353.0,"123, Brunshaw Avenue",0.4801 -1586,107659,124 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2011,D - 55 to 68,66.0,C - 69 to 80,70.0,BB104NP,100010331354.0,"124, Brunshaw Avenue",0.4801 -1643,40726,125 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Top,Domestic EPC Required,EPC Present,10 Jul 2009,C - 69 to 80,78.0,B - 81 to 91,83.0,BB104NP,100010331355.0,"125, Brunshaw Avenue",0.4801 -1692,197123,126 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,05 Feb 2012,D - 55 to 68,67.0,B - 81 to 91,88.0,BB104NP,100010331356.0,"126, Brunshaw Avenue",0.4801 -1748,295081,127 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Bottom,Domestic EPC Required,EPC Present,26 Oct 2017,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104NP,100010331357.0,"127, Brunshaw Avenue",0.4801 -1803,112883,128 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,25 May 2011,D - 55 to 68,67.0,C - 69 to 80,70.0,BB104NP,100010331358.0,"128, Brunshaw Avenue",0.4801 -1864,90092,129 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Bottom,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,72.0,C - 69 to 80,74.0,BB104NP,100010331359.0,129 Brunshaw Avenue,0.4801 -1912,247416,130 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Nov 2025,C - 69 to 80,73.0,B - 81 to 91,81.0,BB104NP,100010331360.0,130 Brunshaw Avenue,0.4801 -1963,76855,131 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Top,Domestic EPC Required,EPC Present,22 Jan 2026,C - 69 to 80,73.0,C - 69 to 80,78.0,BB104NP,100010331361.0,131 Brunshaw Avenue,0.4801 -2395,210916,140 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2026,D - 55 to 68,63.0,B - 81 to 91,82.0,BB104NP,100010331365.0,"140, Brunshaw Avenue",0.4801 -2496,323360,142 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,11 Oct 2019,C - 69 to 80,72.0,B - 81 to 91,91.0,BB104NP,100010331367.0,"142, Brunshaw Avenue",0.4801 -2604,323362,144 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,11 Oct 2019,C - 69 to 80,71.0,B - 81 to 91,91.0,BB104NP,100010331369.0,"144, Brunshaw Avenue",0.4801 -2703,223486,146 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,25 Feb 2026,C - 69 to 80,73.0,B - 81 to 91,90.0,BB104NP,100010331371.0,"146, Brunshaw Avenue",0.4801 -2801,252266,148 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Jul 2016,D - 55 to 68,66.0,B - 81 to 91,90.0,BB104NP,100010331373.0,"148, Brunshaw Avenue",0.4801 -2900,323361,150 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,11 Oct 2019,C - 69 to 80,70.0,B - 81 to 91,89.0,BB104NP,100010331375.0,"150, Brunshaw Avenue",0.4801 -3004,323633,152 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,14 Oct 2019,C - 69 to 80,69.0,B - 81 to 91,90.0,BB104NP,100010331377.0,"152, Brunshaw Avenue",0.4801 -3097,76810,154 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,25 Feb 2026,C - 69 to 80,72.0,B - 81 to 91,89.0,BB104NP,100010331379.0,"154, Brunshaw Avenue",0.4801 -3190,163339,156 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,25 Jan 2026,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104NP,100010331381.0,156 Brunshaw Avenue,0.4801 -3285,40803,158 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 Mar 2009,D - 55 to 68,66.0,C - 69 to 80,71.0,BB104NP,100010331383.0,"158, Brunshaw Avenue",0.4801 -7299,101655,59 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jan 2026,C - 69 to 80,72.0,B - 81 to 91,81.0,BB104NP,100010331303.0,59 Brunshaw Avenue,0.4754 -7393,222616,61 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Top,Domestic EPC Required,EPC Present,27 Jan 2026,C - 69 to 80,71.0,C - 69 to 80,76.0,BB104NP,100010331305.0,61 Brunshaw Avenue,0.4754 -7484,163643,63 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Bottom,Domestic EPC Required,EPC Present,23 Apr 2012,C - 69 to 80,71.0,C - 69 to 80,75.0,BB104NP,100010331307.0,"63, Brunshaw Avenue",0.4754 -7583,362598,65 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Bottom,Domestic EPC Required,EPC Present,11 Oct 2019,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104NP,100010331308.0,"65, Brunshaw Avenue",0.4754 -7693,323364,67 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Top,Domestic EPC Required,EPC Present,11 Oct 2019,C - 69 to 80,79.0,C - 69 to 80,79.0,BB104NP,100010331310.0,"67, Brunshaw Avenue",0.4754 -7799,250071,69 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Top,Domestic EPC Required,EPC Present,12 May 2016,C - 69 to 80,75.0,C - 69 to 80,79.0,BB104NP,100010331312.0,"69, Brunshaw Avenue",0.4754 -7907,315216,71 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Bottom,Domestic EPC Required,EPC Present,31 May 2019,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104NP,100010331314.0,"71, Brunshaw Avenue",0.4754 -8007,90091,73 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Bottom,Domestic EPC Required,EPC Present,24 Oct 2021,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104NP,100010331316.0,73 Brunshaw Avenue,0.4754 -8107,194696,75 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Top,Domestic EPC Required,EPC Present,15 Jan 2013,C - 69 to 80,70.0,C - 69 to 80,75.0,BB104NP,100010331318.0,"75, Brunshaw Avenue",0.4754 -12661,305170,79 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104NP,100010331320.0,"79, Brunshaw Avenue",0.4754 -12662,305169,83 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104NP,100010331323.0,"83, Brunshaw Avenue",0.4754 -12663,304083,87 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104NP,100010331326.0,"87, Brunshaw Avenue",0.4754 -12664,304089,91 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104NP,100010331329.0,"91, Brunshaw Avenue",0.4754 -12665,304139,95 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104NP,100012536463.0,"95, Brunshaw Avenue",0.4754 -12666,304177,99 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104NP,100010331334.0,"99, Brunshaw Avenue",0.4754 -12667,305168,103 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104NP,100010331337.0,"103, Brunshaw Avenue",0.4801 -12668,304272,107 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104NP,100010331339.0,"107, Brunshaw Avenue",0.4801 -12669,304291,111 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104NP,100010331342.0,"111, Brunshaw Avenue",0.4801 -12670,304319,115 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,First Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104NP,100010331345.0,"115, Brunshaw Avenue",0.4801 -12671,305180,77 Brunshaw Avenue BURNLEY Lancashire BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,29 Mar 2019,C - 69 to 80,80.0,C - 69 to 80,80.0,BB104NP,100012536542.0,77 Brunshaw Avenue,0.4754 -12672,305179,81 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,B - 81 to 91,81.0,B - 81 to 91,81.0,BB104NP,10094111277.0,81 Brunshaw Avenue,0.4754 -12673,305178,85 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,79.0,C - 69 to 80,79.0,BB104NP,10094111278.0,85 Brunshaw Avenue,0.4754 -12674,305177,89 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,80.0,C - 69 to 80,80.0,BB104NP,100012536462.0,"Clear Cut, 89 Brunshaw Avenue",0.3869 -12675,305176,93 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,B - 81 to 91,81.0,B - 81 to 91,81.0,BB104NP,100010331330.0,93 Brunshaw Avenue,0.4754 -12676,305175,97 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,B - 81 to 91,81.0,B - 81 to 91,81.0,BB104NP,100012536558.0,"97, Brunshaw Avenue",0.4754 -12677,305173,105 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,80.0,C - 69 to 80,80.0,BB104NP,100012536461.0,105 Brunshaw Avenue,0.4801 -12678,305172,109 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,B - 81 to 91,81.0,B - 81 to 91,81.0,BB104NP,100012536545.0,"109, Brunshaw Avenue",0.4801 -12679,305174,101 Brunshaw Avenue Burnley Lancashire UK BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,79.0,C - 69 to 80,79.0,BB104NP,100012536544.0,101 Brunshaw Avenue,0.4365 -12680,305171,113 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Ground Floor Apartments,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,79.0,C - 69 to 80,79.0,BB104NP,100012536552.0,"Brunshaw Action Group, 113 Brunshaw Avenue",0.3678 -13367,342501,121 Brunshaw Avenue Burnley Lancashire BB10 4NP,,, BB10 4NP,Flat: Bottom,Domestic EPC Required,EPC Present,18 Oct 2024,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104NP,100010331351.0,121 Brunshaw Avenue,0.4801 -765,94843,40 Bivel Street Burnley Lancashire BB12 0PN,,, BB12 0PN,House: End Terrace,Domestic EPC Required,EPC Present,18 Mar 2010,E - 39 to 54,42.0,E - 39 to 54,48.0,BB120PN,100010329170.0,40 Bivel Street,0.4596 -12957,328732,(Blossom House) 35 Bivel Street Burnley Lancashire BB12 0PN,,, BB12 0PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Oct 2015,D - 55 to 68,66.0,A - 92 Plus,92.0,BB120PN,100010329168.0,"35, Bivel Street",0.3625 -788,116417,1 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: End Terrace,Domestic EPC Required,EPC Present,17 Aug 2011,D - 55 to 68,60.0,D - 55 to 68,63.0,BB102RQ,100010327827.0,"1, Aylesbury Walk",0.4652 -999,201778,5 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Oct 2025,C - 69 to 80,76.0,B - 81 to 91,82.0,BB102RQ,100010327831.0,5 Aylesbury Walk,0.4652 -1109,325288,7 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Dec 2019,C - 69 to 80,75.0,B - 81 to 91,90.0,BB102RQ,100010327833.0,"7, Aylesbury Walk",0.4652 -1375,325284,12 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,75.0,B - 81 to 91,89.0,BB102RQ,100010327838.0,"12, Aylesbury Walk",0.4705 -1429,234329,13 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: End Terrace,Domestic EPC Required,EPC Present,02 Feb 2026,C - 69 to 80,73.0,C - 69 to 80,79.0,BB102RQ,100010327839.0,"13, Aylesbury Walk",0.4705 -1752,89268,19 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: End Terrace,Domestic EPC Required,EPC Present,11 Nov 2009,D - 55 to 68,64.0,D - 55 to 68,67.0,BB102RQ,100010327845.0,"19, Aylesbury Walk",0.4705 -1865,221627,21 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,61.0,C - 69 to 80,79.0,BB102RQ,100010327847.0,"21, Aylesbury Walk",0.4705 -1966,136775,23 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: End Terrace,Domestic EPC Required,EPC Present,30 Jan 2026,C - 69 to 80,74.0,C - 69 to 80,80.0,BB102RQ,100010327849.0,23 Aylesbury Walk,0.4705 -2015,226569,24 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,87.0,BB102RQ,100010327850.0,24 Aylesbury Walk,0.4705 -2066,295101,25 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Sep 2017,C - 69 to 80,74.0,B - 81 to 91,89.0,BB102RQ,100010327851.0,"25, Aylesbury Walk",0.4705 -2264,180886,29 Aylesbury Walk Burnley Lancashire BB10 2RQ,,, BB10 2RQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Jun 2012,D - 55 to 68,67.0,B - 81 to 91,82.0,BB102RQ,100010327855.0,"29, Aylesbury Walk",0.4705 -801,362148,16 Alexander Grove Burnley Lancashire BB12 6DJ,,, BB12 6DJ,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB126DJ,100010327119.0,16 Alexander Grove,0.4754 -1058,362161,21 Alexander Grove Burnley Lancashire BB12 6DJ,,, BB12 6DJ,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB126DJ,100010327124.0,21 Alexander Grove,0.4754 -1383,95949,27 Alexander Grove Burnley Lancashire BB12 6DJ,,, BB12 6DJ,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,68.0,C - 69 to 80,75.0,BB126DJ,100010327130.0,27 Alexander Grove,0.4754 -9353,362706,4 Alexander Grove Burnley Lancashire BB12 6DJ,,, BB12 6DJ,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB126DJ,100010327107.0,4 Alexander Grove,0.4705 -9527,111047,7 Alexander Grove Burnley Lancashire BB12 6DJ,,, BB12 6DJ,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Nov 2010,D - 55 to 68,61.0,C - 69 to 80,75.0,BB126DJ,100010327110.0,"7, Alexander Grove",0.4705 -9573,362714,8 Alexander Grove Burnley Lancashire BB12 6DJ,,, BB12 6DJ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB126DJ,100010327111.0,8 Alexander Grove,0.4705 -875,362154,72 Harold Street Burnley Lancashire BB11 4DZ,,, BB11 4DZ,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Jul 2022,C - 69 to 80,71.0,B - 81 to 91,88.0,BB114DZ,100010341480.0,72 Harold Street,0.4652 -979,233925,74 Harold Street Burnley Lancashire BB11 4DZ,,, BB11 4DZ,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Mar 2015,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DZ,100010341482.0,"74, Harold Street",0.4652 -1091,40695,76 Harold Street Burnley Lancashire BB11 4DZ,,, BB11 4DZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2025,D - 55 to 68,66.0,C - 69 to 80,77.0,BB114DZ,100010341484.0,76 Harold Street,0.4652 -9449,250577,60 Harold Street Burnley Lancashire BB11 4DZ,,, BB11 4DZ,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Jun 2016,C - 69 to 80,69.0,B - 81 to 91,88.0,BB114DZ,100010341468.0,"60, Harold Street",0.4652 -13693,359002,68 Harold Street Burnley Lancashire BB11 4DZ,,, BB11 4DZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Feb 2023,D - 55 to 68,66.0,B - 81 to 91,83.0,BB114DZ,100010341476.0,68 Harold Street,0.4652 -890,248984,240 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,Bungalow: End Terr,Domestic EPC Required,EPC Present,25 Jul 2024,C - 69 to 80,70.0,A - 92 Plus,93.0,BB104QR,100010331577.0,240 Brunshaw Road,0.4705 -996,248985,242 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Apr 2016,C - 69 to 80,70.0,A - 92 Plus,92.0,BB104QR,100010331579.0,"242, Brunshaw Road",0.4705 -1220,250082,246 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,Bungalow: End Terr,Domestic EPC Required,EPC Present,05 May 2016,D - 55 to 68,67.0,B - 81 to 91,90.0,BB104QR,100010331583.0,"246, Brunshaw Road",0.4705 -2168,249095,264 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: End Terrace,Domestic EPC Required,EPC Present,18 Apr 2016,D - 55 to 68,65.0,B - 81 to 91,86.0,BB104QR,100010331601.0,"264, Brunshaw Road",0.4705 -2259,250030,266 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Apr 2016,C - 69 to 80,70.0,B - 81 to 91,90.0,BB104QR,100010331603.0,"266, Brunshaw Road",0.4705 -2360,250028,268 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Apr 2016,C - 69 to 80,71.0,B - 81 to 91,90.0,BB104QR,100010331605.0,"268, Brunshaw Road",0.4705 -2453,248673,270 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Apr 2016,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104QR,100010331607.0,270 Brunshaw Road,0.4705 -2558,252000,272 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Jun 2016,C - 69 to 80,70.0,B - 81 to 91,86.0,BB104QR,100010331609.0,"272, Brunshaw Road",0.4705 -2852,250031,278 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: End Terrace,Domestic EPC Required,EPC Present,28 Apr 2016,C - 69 to 80,70.0,B - 81 to 91,88.0,BB104QR,100010331615.0,"278, Brunshaw Road",0.4705 -2957,250029,280 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Apr 2016,D - 55 to 68,63.0,B - 81 to 91,83.0,BB104QR,100010331616.0,"280, Brunshaw Road",0.4705 -3244,250335,286 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: End Terrace,Domestic EPC Required,EPC Present,19 May 2016,D - 55 to 68,66.0,B - 81 to 91,86.0,BB104QR,100010331619.0,"286, Brunshaw Road",0.4705 -3345,250032,288 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: End Terrace,Domestic EPC Required,EPC Present,26 Apr 2016,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104QR,100010331620.0,"288, Brunshaw Road",0.4705 -3442,250076,290 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 May 2016,D - 55 to 68,68.0,B - 81 to 91,89.0,BB104QR,100010331621.0,"290, Brunshaw Road",0.4705 -3651,250033,294 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 May 2016,C - 69 to 80,72.0,B - 81 to 91,88.0,BB104QR,100010331623.0,"294, Brunshaw Road",0.4705 -3752,250034,296 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Apr 2016,C - 69 to 80,73.0,B - 81 to 91,89.0,BB104QR,100010331624.0,"296, Brunshaw Road",0.4705 -4638,250035,312 Brunshaw Road Burnley Lancashire BB10 4QR,,, BB10 4QR,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 May 2016,C - 69 to 80,73.0,B - 81 to 91,87.0,BB104QR,100010331632.0,"312, Brunshaw Road",0.4705 -909,362157,48 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB114DY,100010338151.0,48 Elgin Crescent,0.4705 -1017,250579,50 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Jun 2016,D - 55 to 68,68.0,B - 81 to 91,84.0,BB114DY,100010338152.0,"50, Elgin Crescent",0.4705 -7557,358894,1 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Feb 2023,C - 69 to 80,73.0,B - 81 to 91,85.0,BB114DY,100010338112.0,1 Elgin Crescent,0.4652 -7609,220026,2 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Nov 2013,C - 69 to 80,71.0,B - 81 to 91,84.0,BB114DY,100010338113.0,"2, Elgin Crescent",0.4652 -7667,41002,3 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB114DY,100010338114.0,3 Elgin Crescent,0.4652 -7722,41004,4 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Sep 2008,E - 39 to 54,50.0,C - 69 to 80,71.0,BB114DY,,, -7883,362618,7 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,30 Aug 2022,C - 69 to 80,69.0,B - 81 to 91,90.0,BB114DY,100010338118.0,7 Elgin Crescent,0.4652 -7934,252207,8 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Nov 2025,D - 55 to 68,64.0,C - 69 to 80,72.0,BB114DY,100010338119.0,8 Elgin Crescent,0.4652 -7987,222434,9 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,13 Feb 2014,D - 55 to 68,68.0,B - 81 to 91,90.0,BB114DY,100010338120.0,"9, Elgin Crescent",0.4652 -8033,200179,10 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Mar 2013,D - 55 to 68,68.0,B - 81 to 91,85.0,BB114DY,100010338121.0,"10, Elgin Crescent",0.4705 -8083,41026,11 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,05 Nov 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB114DY,100010338122.0,11 Elgin Crescent,0.4705 -8135,362632,12 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DY,100010338123.0,12 Elgin Crescent,0.4705 -8183,227864,13 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,01 Dec 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB114DY,100010338124.0,13 Elgin Crescent,0.4705 -8236,180073,14 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,23 May 2012,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DY,100010338125.0,"14, Elgin Crescent",0.4705 -8279,362641,15 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,89.0,BB114DY,100010338126.0,15 Elgin Crescent,0.4705 -8336,41033,16 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DY,100010338127.0,16 Elgin Crescent,0.4705 -8385,104914,17 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Nov 2010,D - 55 to 68,60.0,D - 55 to 68,60.0,BB114DY,100010338128.0,"17, Elgin Crescent",0.4705 -8551,362657,20 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB114DY,100010338131.0,20 Elgin Crescent,0.4705 -8676,362666,22 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB114DY,100010338133.0,22 Elgin Crescent,0.4705 -8740,362670,23 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,Flat: Bottom,Domestic EPC Required,EPC Present,05 Sep 2023,C - 69 to 80,73.0,C - 69 to 80,76.0,BB114DY,100010338134.0,23 Elgin Crescent,0.4705 -8857,41053,25 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,Flat: Top,Domestic EPC Required,EPC Present,17 Sep 2024,D - 55 to 68,65.0,C - 69 to 80,69.0,BB114DY,100010338136.0,25 Elgin Crescent,0.4705 -8919,99136,26 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Sep 2010,D - 55 to 68,56.0,C - 69 to 80,74.0,BB114DY,100010338137.0,"26, Elgin Crescent",0.4705 -8971,362685,27 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,89.0,BB114DY,100010338138.0,27 Elgin Crescent,0.4705 -9027,101562,28 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Oct 2010,E - 39 to 54,48.0,D - 55 to 68,67.0,BB114DY,100010338139.0,"28, Elgin Crescent",0.4705 -9081,97190,29 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB114DY,100010338140.0,29 Elgin Crescent,0.4705 -9139,226562,30 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jul 2014,D - 55 to 68,65.0,B - 81 to 91,81.0,BB114DY,100010338141.0,"30, Elgin Crescent",0.4705 -9201,362699,31 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,89.0,BB114DY,100010338142.0,31 Elgin Crescent,0.4705 -9254,89512,32 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Aug 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB114DY,100010338143.0,32 Elgin Crescent,0.4705 -9487,252202,36 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Jul 2018,D - 55 to 68,67.0,B - 81 to 91,87.0,BB114DY,100010338145.0,"36, Elgin Crescent",0.4705 -9588,252210,38 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Jun 2011,E - 39 to 54,44.0,D - 55 to 68,68.0,BB114DY,100010338146.0,"38, Elgin Crescent",0.4705 -12739,316235,19 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,Flat: Top,Domestic EPC Required,EPC Present,28 May 2009,D - 55 to 68,60.0,C - 69 to 80,75.0,BB114DY,100010338130.0,"19, Elgin Crescent",0.4705 -13608,355327,21 Elgin Crescent Burnley Lancashire BB11 4DY,,, BB11 4DY,Flat: Bottom,Domestic EPC Required,EPC Present,22 Nov 2022,C - 69 to 80,71.0,C - 69 to 80,75.0,BB114DY,100010338132.0,21 Elgin Crescent,0.4705 -949,250104,1 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,17 May 2016,C - 69 to 80,70.0,C - 69 to 80,76.0,BB114QG,10003781635.0,"1, Piccadilly Square",0.4801 -1002,252269,2 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Top,Domestic EPC Required,EPC Present,08 Jul 2016,C - 69 to 80,73.0,C - 69 to 80,76.0,BB114QG,10003781646.0,"2, Piccadilly Square",0.4801 -1059,98153,3 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Top,Domestic EPC Required,EPC Present,19 Aug 2010,C - 69 to 80,80.0,B - 81 to 91,81.0,BB114QG,10003781648.0,"3, Piccadilly Square",0.4801 -1114,106909,4 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,08 Feb 2011,C - 69 to 80,75.0,C - 69 to 80,79.0,BB114QG,10003781649.0,"4, Piccadilly Square",0.4801 -1170,252477,5 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,23 Jul 2016,D - 55 to 68,67.0,B - 81 to 91,89.0,BB114QG,10003781650.0,"5, Piccadilly Square",0.4801 -1226,362171,6 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB114QG,10003781651.0,6 Piccadilly Square,0.4801 -1278,362175,7 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Bungalow: End Terr,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,88.0,BB114QG,10003781652.0,7 Piccadilly Square,0.4801 -1335,134170,8 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,31 Jan 2012,C - 69 to 80,70.0,C - 69 to 80,71.0,BB114QG,10003781653.0,"8, Piccadilly Square",0.4801 -1385,98151,9 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Aug 2024,C - 69 to 80,69.0,B - 81 to 91,88.0,BB114QG,10003781654.0,9 Piccadilly Square,0.4801 -1439,40714,10 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,22 Sep 2008,C - 69 to 80,72.0,C - 69 to 80,77.0,BB114QG,,, -1490,100555,11 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Top,Domestic EPC Required,EPC Present,17 Sep 2010,C - 69 to 80,78.0,B - 81 to 91,82.0,BB114QG,10003781637.0,"11, Piccadilly Square",0.4845 -1551,106917,12 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Top,Domestic EPC Required,EPC Present,05 Aug 2021,C - 69 to 80,69.0,C - 69 to 80,76.0,BB114QG,10003781638.0,12 PICCADILLY SQUARE,0.4845 -1600,40725,13 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,74.0,C - 69 to 80,77.0,BB114QG,10003781639.0,13 Piccadilly Square,0.4845 -1655,221663,14 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,73.0,C - 69 to 80,73.0,BB114QG,10003781640.0,"14, Piccadilly Square",0.4845 -1703,40729,15 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Top,Domestic EPC Required,EPC Present,24 Mar 2009,C - 69 to 80,79.0,B - 81 to 91,82.0,BB114QG,10003781641.0,"15, Piccadilly Square",0.4845 -1762,107640,16 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Top,Domestic EPC Required,EPC Present,22 Feb 2011,C - 69 to 80,79.0,B - 81 to 91,83.0,BB114QG,10003781642.0,"16, Piccadilly Square",0.4845 -1815,134169,17 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,31 Jan 2012,C - 69 to 80,74.0,C - 69 to 80,74.0,BB114QG,10003781643.0,"17, Piccadilly Square",0.4845 -1874,211784,18 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Top,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,76.0,C - 69 to 80,77.0,BB114QG,10003781644.0,18 Piccadilly Square,0.4845 -1922,69668,19 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,22 Nov 2022,C - 69 to 80,76.0,C - 69 to 80,78.0,BB114QG,10003781645.0,19 Piccadilly Square,0.4845 -1974,362212,20 Piccadilly Square Burnley Lancashire BB11 4QG,,, BB11 4QG,House: End Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB114QG,10003781647.0,20 Piccadilly Square,0.4845 -950,362158,1 Disraeli Street Burnley Lancashire BB10 1HR,,, BB10 1HR,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,83.0,BB101HR,10003758158.0,1 Disraeli Street,0.4705 -960,40685,2 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,17 Nov 2008,C - 69 to 80,74.0,B - 81 to 91,81.0,BB101DH,10003780756.0,"2, Viking Place",0.4536 -1015,125082,3 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,21 Nov 2011,C - 69 to 80,75.0,C - 69 to 80,79.0,BB101DH,10003781855.0,"3, Viking Place",0.4536 -1074,40692,4 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,04 Sep 2024,C - 69 to 80,74.0,C - 69 to 80,76.0,BB101DH,10003780757.0,4 Viking Place,0.4536 -1127,221670,5 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,03 Dec 2024,C - 69 to 80,76.0,C - 69 to 80,76.0,BB101DH,10003781856.0,5 Viking Place,0.4536 -1185,110639,6 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,07 Apr 2011,B - 81 to 91,81.0,B - 81 to 91,85.0,BB101DH,10003780758.0,"6, Viking Place",0.4536 -1237,94925,7 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,14 Apr 2010,B - 81 to 91,82.0,B - 81 to 91,86.0,BB101DH,10003780759.0,"7, Viking Place",0.4536 -1294,226297,8 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,25 Jun 2014,C - 69 to 80,76.0,C - 69 to 80,80.0,BB101DH,10003780760.0,"8, Viking Place",0.4536 -1346,111666,9 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,12 May 2011,C - 69 to 80,74.0,C - 69 to 80,77.0,BB101DH,10003781857.0,"9, Viking Place",0.4536 -1397,208335,10 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,26 May 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB101DH,10003780761.0,10 Viking Place,0.4596 -1450,40715,11 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,11 Dec 2008,C - 69 to 80,78.0,B - 81 to 91,84.0,BB101DH,10003781850.0,"11, Viking Place",0.4596 -1506,252998,12 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,11 Aug 2016,C - 69 to 80,73.0,C - 69 to 80,79.0,BB101DH,10003780762.0,"12, Viking Place",0.4596 -1560,228333,13 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,16 Sep 2014,C - 69 to 80,75.0,C - 69 to 80,79.0,BB101DH,10003781851.0,"13, Viking Place",0.4596 -1614,326489,14 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,17 Feb 2020,C - 69 to 80,76.0,C - 69 to 80,78.0,BB101DH,10003780763.0,"14, Viking Place",0.4596 -1664,221671,15 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,78.0,C - 69 to 80,80.0,BB101DH,10003781852.0,"15, Viking Place",0.4596 -1714,315940,16 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,04 Jul 2019,C - 69 to 80,72.0,C - 69 to 80,77.0,BB101DH,10003780764.0,"16, Viking Place",0.4596 -1771,40732,17 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,22 Feb 2009,C - 69 to 80,79.0,B - 81 to 91,85.0,BB101DH,10003781853.0,"17, Viking Place",0.4596 -1824,204084,18 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,15 May 2013,C - 69 to 80,76.0,C - 69 to 80,79.0,BB101DH,10003780765.0,"18, Viking Place",0.4596 -1881,96235,19 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,05 Jul 2010,C - 69 to 80,78.0,B - 81 to 91,84.0,BB101DH,10003780766.0,"19, Viking Place",0.4596 -1931,125015,20 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,15 Nov 2011,C - 69 to 80,75.0,C - 69 to 80,79.0,BB101DH,10003780767.0,"20, Viking Place",0.4596 -1983,89222,21 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,05 Nov 2009,C - 69 to 80,76.0,B - 81 to 91,84.0,BB101DH,10003780768.0,"21, Viking Place",0.4596 -2032,40741,22 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,07 Jun 2021,C - 69 to 80,78.0,C - 69 to 80,79.0,BB101DH,10003780769.0,"22, Viking Place",0.4596 -2083,40745,23 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,18 Sep 2008,C - 69 to 80,78.0,B - 81 to 91,83.0,BB101DH,,, -2133,103656,24 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,22 Feb 2022,C - 69 to 80,76.0,C - 69 to 80,78.0,BB101DH,10003780770.0,24 Viking Place,0.4596 -2180,326488,25 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,17 Feb 2020,C - 69 to 80,75.0,C - 69 to 80,78.0,BB101DH,10003780771.0,"25, Viking Place",0.4596 -2227,40754,26 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,18 Sep 2008,C - 69 to 80,76.0,B - 81 to 91,83.0,BB101DH,,, -11602,362719,27 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Top,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB101DH,10023762734.0,27 Viking Place,0.4596 -11603,250430,1 Viking Place Burnley Lancashire BB10 1DH,,, BB10 1DH,Flat: Bottom,Domestic EPC Required,EPC Present,25 May 2016,C - 69 to 80,75.0,C - 69 to 80,79.0,BB101DH,10003780755.0,"1, Viking Place",0.4536 -961,247059,17 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Mar 2016,D - 55 to 68,64.0,B - 81 to 91,86.0,BB103HA,100010336149.0,"17, Cromer Avenue",0.4652 -1290,326176,23 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Feb 2020,D - 55 to 68,67.0,B - 81 to 91,85.0,BB103HA,100010336152.0,"23, Cromer Avenue",0.4652 -1930,326178,35 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Feb 2020,C - 69 to 80,73.0,B - 81 to 91,86.0,BB103HA,100010336158.0,"35, Cromer Avenue",0.4652 -2319,40757,43 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,Flat: Bottom,Domestic EPC Required,EPC Present,01 Jul 2024,C - 69 to 80,74.0,C - 69 to 80,76.0,BB103HA,100010336162.0,43 Cromer Avenue,0.4652 -2415,100559,45 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,Flat: Bottom,Domestic EPC Required,EPC Present,22 Sep 2010,D - 55 to 68,65.0,C - 69 to 80,76.0,BB103HA,100010336163.0,"45, Cromer Avenue",0.4652 -2515,40768,47 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,Flat: Top,Domestic EPC Required,EPC Present,04 Apr 2009,B - 81 to 91,82.0,B - 81 to 91,83.0,BB103HA,100010336164.0,47 Cromer Avenue,0.4652 -2623,221600,49 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,Flat: Top,Domestic EPC Required,EPC Present,30 Dec 2013,C - 69 to 80,75.0,C - 69 to 80,77.0,BB103HA,100010336165.0,"49, Cromer Avenue",0.4652 -2719,326177,51 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,Flat: Bottom,Domestic EPC Required,EPC Present,04 Feb 2020,C - 69 to 80,71.0,C - 69 to 80,75.0,BB103HA,100010336166.0,"51, Cromer Avenue",0.4652 -2822,223679,53 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,Flat: Bottom,Domestic EPC Required,EPC Present,23 Apr 2014,C - 69 to 80,73.0,C - 69 to 80,76.0,BB103HA,100010336167.0,"53, Cromer Avenue",0.4652 -2921,95570,55 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,Flat: Top,Domestic EPC Required,EPC Present,27 May 2010,C - 69 to 80,79.0,B - 81 to 91,81.0,BB103HA,100010336168.0,"55, Cromer Avenue",0.4652 -12863,328308,41 Cromer Avenue Burnley Lancashire BB10 3HA,,, BB10 3HA,Flat: Top,Domestic EPC Required,EPC Present,19 Aug 2023,C - 69 to 80,75.0,C - 69 to 80,75.0,BB103HA,100010336161.0,41 Cromer Avenue,0.4652 -963,246359,1 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB104QL,100010331137.0,"1, Browsholme Avenue",0.4801 -1073,246360,3 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,08 Dec 2015,D - 55 to 68,68.0,B - 81 to 91,88.0,BB104QL,100010331138.0,"3, Browsholme Avenue",0.4801 -1184,246361,5 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,66.0,B - 81 to 91,87.0,BB104QL,100010331140.0,"5, Browsholme Avenue",0.4801 -1293,246362,7 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB104QL,100010331142.0,"7, Browsholme Avenue",0.4801 -1400,246363,9 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB104QL,,, -1505,246358,11 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,90.0,BB104QL,100010331144.0,"11, Browsholme Avenue",0.4845 -1610,246364,13 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB104QL,100010331145.0,"13, Browsholme Avenue",0.4845 -1713,246365,15 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Dec 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB104QL,100010331146.0,"15, Browsholme Avenue",0.4845 -1825,246366,17 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,67.0,B - 81 to 91,87.0,BB104QL,100010331147.0,"17, Browsholme Avenue",0.4845 -1932,246367,19 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,08 Dec 2015,D - 55 to 68,67.0,B - 81 to 91,88.0,BB104QL,100010331148.0,"19, Browsholme Avenue",0.4845 -2030,246368,21 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,66.0,B - 81 to 91,89.0,BB104QL,100010331149.0,"21, Browsholme Avenue",0.4845 -2127,246369,23 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,67.0,B - 81 to 91,87.0,BB104QL,100010331150.0,"23, Browsholme Avenue",0.4845 -2181,246808,24 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,18 Feb 2016,D - 55 to 68,66.0,B - 81 to 91,88.0,BB104QL,100010331151.0,"24, Browsholme Avenue",0.4845 -2229,246371,25 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,02 Oct 2025,C - 69 to 80,73.0,B - 81 to 91,81.0,BB104QL,100010331152.0,25 Browsholme Avenue,0.4845 -2278,246372,26 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB104QL,100010331153.0,"26, Browsholme Avenue",0.4845 -2327,246373,27 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,67.0,B - 81 to 91,87.0,BB104QL,100010331154.0,"27, Browsholme Avenue",0.4845 -2378,246374,28 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,67.0,B - 81 to 91,90.0,BB104QL,100010331155.0,"28, Browsholme Avenue",0.4845 -2467,246375,30 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,68.0,B - 81 to 91,89.0,BB104QL,100010331157.0,"30, Browsholme Avenue",0.4845 -2575,246376,32 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,67.0,B - 81 to 91,87.0,BB104QL,100010331159.0,"32, Browsholme Avenue",0.4845 -2678,246377,34 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,01 Jun 2023,C - 69 to 80,70.0,B - 81 to 91,90.0,BB104QL,100010331161.0,34 Browsholme Avenue,0.4845 -2767,246378,36 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,57.0,C - 69 to 80,78.0,BB104QL,100010331163.0,"36, Browsholme Avenue",0.4845 -2868,246357,38 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,90.0,BB104QL,100010331165.0,"38, Browsholme Avenue",0.4845 -2974,246379,40 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB104QL,100010331167.0,"40, Browsholme Avenue",0.4845 -3066,246380,42 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,66.0,B - 81 to 91,87.0,BB104QL,100010331169.0,"42, Browsholme Avenue",0.4845 -3162,246381,44 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,68.0,B - 81 to 91,89.0,BB104QL,100010331171.0,"44, Browsholme Avenue",0.4845 -3258,246382,46 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,67.0,B - 81 to 91,87.0,BB104QL,100010331173.0,"46, Browsholme Avenue",0.4845 -3358,246388,48 Browsholme Avenue Burnley Lancashire BB10 4QL,,, BB10 4QL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Dec 2015,D - 55 to 68,55.0,C - 69 to 80,75.0,BB104QL,100010331175.0,"48, Browsholme Avenue",0.4845 -991,326491,63 Ennismore Street Burnley Lancashire BB10 3EU,,, BB10 3EU,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Feb 2020,D - 55 to 68,66.0,B - 81 to 91,85.0,BB103EU,100010338413.0,"63, Ennismore Street",0.4801 -7956,326490,22 Ennismore Street Burnley Lancashire BB10 3EU,,, BB10 3EU,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Dec 2025,D - 55 to 68,65.0,C - 69 to 80,77.0,BB103EU,100010338387.0,22 Ennismore Street,0.4801 -1021,115722,26 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Jul 2011,D - 55 to 68,60.0,C - 69 to 80,69.0,BB102QF,100010353842.0,"26, Ribble Avenue",0.4652 -1081,40694,27 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB102QF,100010353843.0,27 Ribble Avenue,0.4652 -1190,131106,29 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Jan 2012,D - 55 to 68,67.0,C - 69 to 80,69.0,BB102QF,100010353844.0,"29, Ribble Avenue",0.4652 -1245,40702,30 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,Flat: Bottom,Domestic EPC Required,EPC Present,13 Aug 2023,C - 69 to 80,74.0,C - 69 to 80,76.0,BB102QF,100010353845.0,30 Ribble Avenue,0.4652 -1298,69677,31 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2022,C - 69 to 80,74.0,B - 81 to 91,87.0,BB102QF,100010353846.0,31 Ribble Avenue,0.4652 -1352,325554,32 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,Flat: Bottom,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,72.0,C - 69 to 80,75.0,BB102QF,100010353847.0,"32, Ribble Avenue",0.4652 -1459,40717,34 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,Flat: Top,Domestic EPC Required,EPC Present,18 Sep 2008,C - 69 to 80,73.0,C - 69 to 80,79.0,BB102QF,,, -1569,90172,36 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,Flat: Top,Domestic EPC Required,EPC Present,10 Feb 2010,C - 69 to 80,76.0,B - 81 to 91,82.0,BB102QF,100010353851.0,"36, Ribble Avenue",0.4652 -1726,90248,39 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Mar 2010,D - 55 to 68,64.0,C - 69 to 80,70.0,BB102QF,100010353853.0,"39, Ribble Avenue",0.4652 -1834,95009,41 Ribble Avenue Burnley Lancashire BB10 2QF,,, BB10 2QF,House: Semi-Detached,Domestic EPC Required,EPC Present,05 May 2010,C - 69 to 80,75.0,C - 69 to 80,77.0,BB102QF,100010353854.0,"41, Ribble Avenue",0.4652 -1033,94870,2 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,House: End Terrace,Domestic EPC Required,EPC Present,19 Jan 2026,D - 55 to 68,60.0,B - 81 to 91,82.0,BB128PA,100010329380.0,"2 Bowness Road, Padiham",0.6121 -1087,112176,3 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 May 2011,D - 55 to 68,66.0,C - 69 to 80,69.0,BB128PA,100010329381.0,"3, Bowness Road, Padiham",0.6121 -1253,40703,6 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Oct 2021,C - 69 to 80,69.0,B - 81 to 91,88.0,BB128PA,100010329384.0,"6 Bowness Road, Padiham",0.6121 -1312,106942,7 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,Bungalow: End Terr,Domestic EPC Required,EPC Present,19 Jan 2026,B - 81 to 91,82.0,B - 81 to 91,90.0,BB128PA,100010329385.0,"7 Bowness Road, Padiham",0.6121 -1359,103133,8 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,House: End Terrace,Domestic EPC Required,EPC Present,23 Jan 2026,D - 55 to 68,63.0,C - 69 to 80,77.0,BB128PA,100010329386.0,"8 Bowness Road, Padiham",0.6121 -1416,94908,9 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,House: End Terrace,Domestic EPC Required,EPC Present,12 Apr 2010,D - 55 to 68,63.0,C - 69 to 80,71.0,BB128PA,100010329387.0,"9, Bowness Road, Padiham",0.6121 -1681,362194,14 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB128PA,100010329392.0,"14 Bowness Road, Padiham",0.6154 -1736,220606,15 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,House: End Terrace,Domestic EPC Required,EPC Present,15 Aug 2024,D - 55 to 68,67.0,B - 81 to 91,83.0,BB128PA,100010329393.0,"15 Bowness Road, Padiham",0.6154 -2101,207476,22 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jul 2013,C - 69 to 80,70.0,B - 81 to 91,87.0,BB128PA,100010329397.0,"22, Bowness Road, Padiham",0.6154 -2202,40752,24 Bowness Road Padiham Lancashire BB12 8PA,,, BB12 8PA,House: End Terrace,Domestic EPC Required,EPC Present,16 Jan 2024,C - 69 to 80,69.0,B - 81 to 91,84.0,BB128PA,100010329398.0,"24 Bowness Road, Padiham",0.6154 -1050,111167,43 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jun 2024,C - 69 to 80,74.0,B - 81 to 91,90.0,BB115LH,100010359258.0,43 Venice Avenue,0.4652 -1160,111174,45 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,72.0,B - 81 to 91,85.0,BB115LH,100010359260.0,45 Venice Avenue,0.4652 -1267,111180,47 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,20 May 2021,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115LH,100010359262.0,47 VENICE AVENUE,0.4652 -1374,40710,49 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jun 2025,C - 69 to 80,72.0,C - 69 to 80,78.0,BB115LH,100010359264.0,49 Venice Avenue,0.4652 -1486,111188,51 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: End Terrace,Domestic EPC Required,EPC Present,10 Jun 2024,C - 69 to 80,74.0,B - 81 to 91,89.0,BB115LH,100010359266.0,51 Venice Avenue,0.4652 -1594,111191,53 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Mar 2011,D - 55 to 68,67.0,C - 69 to 80,75.0,BB115LH,100010359268.0,"53, Venice Avenue",0.4652 -1755,111197,56 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Jul 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115LH,100010359270.0,56 Venice Avenue,0.4652 -1810,194085,57 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Dec 2012,D - 55 to 68,66.0,B - 81 to 91,84.0,BB115LH,100010359271.0,"57, Venice Avenue",0.4652 -1870,223442,58 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Apr 2013,D - 55 to 68,66.0,B - 81 to 91,82.0,BB115LH,100010359272.0,"58, Venice Avenue",0.4652 -1916,94922,59 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Apr 2010,C - 69 to 80,69.0,C - 69 to 80,72.0,BB115LH,100010359273.0,"59, Venice Avenue",0.4652 -1969,111201,60 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jun 2024,C - 69 to 80,72.0,B - 81 to 91,89.0,BB115LH,100010359274.0,60 Venice Avenue,0.4652 -2014,110634,61 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: End Terrace,Domestic EPC Required,EPC Present,29 Oct 2025,C - 69 to 80,73.0,B - 81 to 91,81.0,BB115LH,100010359275.0,61 Venice Avenue,0.4652 -2070,111205,62 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Sep 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115LH,100010359276.0,62 Venice Avenue,0.4652 -2110,111206,63 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: End Terrace,Domestic EPC Required,EPC Present,03 Oct 2023,C - 69 to 80,74.0,B - 81 to 91,91.0,BB115LH,100010359277.0,63 Venice Avenue,0.4652 -2164,111207,64 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Jan 2026,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115LH,100010359278.0,64 Venice Avenue,0.4652 -2211,111208,65 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Oct 2023,C - 69 to 80,74.0,B - 81 to 91,91.0,BB115LH,100010359279.0,65 Venice Avenue,0.4652 -2263,230659,66 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jan 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB115LH,100010359280.0,66 Venice Avenue,0.4652 -2301,40756,67 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Aug 2025,C - 69 to 80,72.0,C - 69 to 80,80.0,BB115LH,100010359281.0,67 Venice Avenue,0.4652 -2355,197119,68 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB115LH,100010359282.0,68 Venice Avenue,0.4652 -2398,40760,69 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Oct 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115LH,100010359283.0,69 Venice Avenue,0.4652 -2452,111215,70 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115LH,100010359284.0,70 Venice Avenue,0.4652 -2607,89361,73 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: End Terrace,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115LH,100010359287.0,73 Venice Avenue,0.4652 -2655,111288,74 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Aug 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115LH,100010359288.0,74 Venice Avenue,0.4652 -2705,111289,75 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: End Terrace,Domestic EPC Required,EPC Present,04 Jul 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB115LH,100010359289.0,75 Venice Avenue,0.4652 -2908,111292,79 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Oct 2022,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LH,100010359292.0,79 Venice Avenue,0.4652 -2960,40787,80 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,63.0,C - 69 to 80,71.0,BB115LH,100010359293.0,"80, Venice Avenue",0.4652 -3012,111295,81 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Jul 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115LH,100010359294.0,81 Venice Avenue,0.4652 -3103,210870,83 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,88.0,BB115LH,100010359296.0,83 Venice Avenue,0.4652 -3197,111297,85 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: End Terrace,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LH,100010359298.0,85 Venice Avenue,0.4652 -3494,40810,91 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2021,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LH,100010359304.0,91 Venice Avenue,0.4652 -3547,111300,92 Venice Avenue Burnley Lancashire BB11 5LH,,, BB11 5LH,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Feb 2011,D - 55 to 68,66.0,C - 69 to 80,74.0,BB115LH,100010359305.0,"92, Venice Avenue",0.4652 -1104,273886,33 Romney Avenue Burnley Lancashire BB11 2PF,,, BB11 2PF,House: End Terrace,Domestic EPC Required,EPC Present,09 May 2017,D - 55 to 68,56.0,B - 81 to 91,83.0,BB112PF,100010354335.0,"33, Romney Avenue",0.4652 -1325,272191,37 Romney Avenue Burnley Lancashire BB11 2PF,,, BB11 2PF,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Feb 2017,C - 69 to 80,69.0,B - 81 to 91,86.0,BB112PF,100010354337.0,"37, Romney Avenue",0.4652 -1107,295094,203 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2017,C - 69 to 80,69.0,C - 69 to 80,78.0,BB126BB,100010357624.0,"203, Sycamore Avenue",0.4801 -1218,40700,205 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Dec 2023,D - 55 to 68,62.0,C - 69 to 80,76.0,BB126BB,100010357626.0,205 Sycamore Avenue,0.4801 -1326,220108,207 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Aug 2017,D - 55 to 68,64.0,C - 69 to 80,78.0,BB126BB,100010357628.0,"207, Sycamore Avenue",0.4801 -1433,226982,209 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Jul 2014,D - 55 to 68,58.0,C - 69 to 80,77.0,BB126BB,100010357630.0,"209, Sycamore Avenue",0.4801 -1806,247947,216 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Apr 2016,D - 55 to 68,68.0,B - 81 to 91,87.0,BB126BB,100010357637.0,"216, Sycamore Avenue",0.4801 -2214,362222,224 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: End Terrace,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB126BB,100010357644.0,224 Sycamore Avenue,0.4801 -2609,362247,232 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: End Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,89.0,BB126BB,100010357652.0,232 Sycamore Avenue,0.4801 -2710,362253,234 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,90.0,BB126BB,100010357654.0,234 Sycamore Avenue,0.4801 -3009,220133,240 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: End Terrace,Domestic EPC Required,EPC Present,02 Dec 2013,C - 69 to 80,69.0,B - 81 to 91,88.0,BB126BB,100010357659.0,"240, Sycamore Avenue",0.4801 -3106,362280,242 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,90.0,BB126BB,100010357661.0,242 Sycamore Avenue,0.4801 -3199,183760,244 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Aug 2012,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126BB,100010357663.0,"244, Sycamore Avenue",0.4801 -3291,199319,246 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: End Terrace,Domestic EPC Required,EPC Present,06 Dec 2025,C - 69 to 80,74.0,C - 69 to 80,80.0,BB126BB,100010357665.0,246 Sycamore Avenue,0.4801 -3750,362329,255 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Oct 2022,D - 55 to 68,64.0,C - 69 to 80,74.0,BB126BB,100010357674.0,255 Sycamore Avenue,0.4801 -4579,362381,270 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB126BB,100010357688.0,270 Sycamore Avenue,0.4801 -4794,362394,274 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,90.0,BB126BB,100010357692.0,274 Sycamore Avenue,0.4801 -4894,362398,276 Sycamore Avenue Burnley Lancashire BB12 6BB,,, BB12 6BB,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,89.0,BB126BB,100010357693.0,276 Sycamore Avenue,0.4801 -1138,69489,15 Thompson Street Padiham Lancashire BB12 7AP,,, BB12 7AP,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 May 2024,C - 69 to 80,73.0,B - 81 to 91,85.0,BB127AP,100012538595.0,"15 Thompson Street, Padiham",0.6242 -1159,250039,2 Chelburn Grove Burnley Lancashire BB10 4QE,,, BB10 4QE,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Apr 2016,C - 69 to 80,71.0,A - 92 Plus,92.0,BB104QE,100010333572.0,"2, Chelburn Grove",0.4652 -1266,250427,4 Chelburn Grove Burnley Lancashire BB10 4QE,,, BB10 4QE,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Apr 2016,C - 69 to 80,69.0,A - 92 Plus,92.0,BB104QE,100010333574.0,"4, Chelburn Grove",0.4652 -1373,250040,6 Chelburn Grove Burnley Lancashire BB10 4QE,,, BB10 4QE,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,65.0,C - 69 to 80,78.0,BB104QE,100010333576.0,6 Chelburn Grove,0.4652 -1484,250049,8 Chelburn Grove Burnley Lancashire BB10 4QE,,, BB10 4QE,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Jun 2024,C - 69 to 80,71.0,A - 92 Plus,92.0,BB104QE,100010333578.0,8 Chelburn Grove,0.4652 -1593,250050,10 Chelburn Grove Burnley Lancashire BB10 4QE,,, BB10 4QE,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Apr 2016,C - 69 to 80,70.0,A - 92 Plus,92.0,BB104QE,100010333580.0,"10, Chelburn Grove",0.4705 -1693,250051,12 Chelburn Grove Burnley Lancashire BB10 4QE,,, BB10 4QE,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Apr 2016,C - 69 to 80,71.0,A - 92 Plus,92.0,BB104QE,100010333582.0,"12, Chelburn Grove",0.4705 -1809,250052,14 Chelburn Grove Burnley Lancashire BB10 4QE,,, BB10 4QE,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,26 Apr 2016,C - 69 to 80,71.0,A - 92 Plus,92.0,BB104QE,100010333584.0,"14, Chelburn Grove",0.4705 -1914,250053,16 Chelburn Grove Burnley Lancashire BB10 4QE,,, BB10 4QE,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Dec 2025,D - 55 to 68,63.0,C - 69 to 80,72.0,BB104QE,100010333586.0,16 Chelburn Grove,0.4705 -1176,362166,37 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB112NU,100010335761.0,37 Constable Avenue,0.4801 -1234,110933,38 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Dec 2010,D - 55 to 68,62.0,C - 69 to 80,74.0,BB112NU,100010335762.0,"38, Constable Avenue",0.4801 -1285,221636,39 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,59.0,C - 69 to 80,80.0,BB112NU,100010335763.0,"39, Constable Avenue",0.4801 -1340,96321,40 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: End Terrace,Domestic EPC Required,EPC Present,09 Jul 2010,C - 69 to 80,70.0,C - 69 to 80,71.0,BB112NU,100010335764.0,"40, Constable Avenue",0.4801 -1392,111159,41 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Nov 2010,D - 55 to 68,62.0,C - 69 to 80,74.0,BB112NU,100010335765.0,"41, Constable Avenue",0.4801 -1448,108722,42 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Mar 2011,C - 69 to 80,73.0,C - 69 to 80,75.0,BB112NU,100010335766.0,"42, Constable Avenue",0.4801 -1500,111165,43 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Dec 2010,D - 55 to 68,63.0,C - 69 to 80,75.0,BB112NU,100010335767.0,"43, Constable Avenue",0.4801 -1558,111168,44 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Nov 2010,D - 55 to 68,61.0,C - 69 to 80,76.0,BB112NU,100010335768.0,"44, Constable Avenue",0.4801 -1603,111172,45 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Nov 2010,D - 55 to 68,60.0,C - 69 to 80,75.0,BB112NU,100010335769.0,"45, Constable Avenue",0.4801 -1663,109801,46 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: End Terrace,Domestic EPC Required,EPC Present,23 May 2017,D - 55 to 68,65.0,B - 81 to 91,85.0,BB112NU,100010335770.0,"46, Constable Avenue",0.4801 -1711,221609,47 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Jul 2024,C - 69 to 80,69.0,B - 81 to 91,85.0,BB112NU,100010335771.0,47 Constable Avenue,0.4801 -1821,111183,49 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Nov 2010,D - 55 to 68,67.0,C - 69 to 80,74.0,BB112NU,100010335773.0,"49, Constable Avenue",0.4801 -2080,40744,54 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Nov 2010,E - 39 to 54,53.0,C - 69 to 80,69.0,BB112NU,100010335777.0,"54, Constable Avenue",0.4801 -2177,111196,56 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Jul 2024,C - 69 to 80,69.0,B - 81 to 91,89.0,BB112NU,100010335778.0,56 Constable Avenue,0.4801 -2275,105280,58 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: End Terrace,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,62.0,C - 69 to 80,75.0,BB112NU,100010335779.0,"58, Constable Avenue",0.4801 -9619,184509,52 Constable Avenue Burnley Lancashire BB11 2NU,,, BB11 2NU,House: End Terrace,Domestic EPC Required,EPC Present,10 Aug 2012,D - 55 to 68,65.0,B - 81 to 91,84.0,BB112NU,100010335776.0,"52, Constable Avenue",0.4801 -1382,100999,90 Dugdale Road Burnley Lancashire BB12 6DW,,, BB12 6DW,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Feb 2026,C - 69 to 80,72.0,C - 69 to 80,78.0,BB126DW,100010337682.0,"90, Dugdale Road",0.4596 -6608,359252,15 Dugdale Road Burnley Lancashire BB12 6DW,,, BB12 6DW,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Mar 2024,C - 69 to 80,71.0,B - 81 to 91,85.0,BB126DW,100010337625.0,15 Dugdale Road,0.4596 -6910,362546,21 Dugdale Road Burnley Lancashire BB12 6DW,,, BB12 6DW,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126DW,100010337631.0,21 Dugdale Road,0.4596 -7108,362567,25 Dugdale Road Burnley Lancashire BB12 6DW,,, BB12 6DW,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126DW,100010337635.0,25 Dugdale Road,0.4596 -8017,362625,43 Dugdale Road Burnley Lancashire BB12 6DW,,, BB12 6DW,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126DW,100010337652.0,43 Dugdale Road,0.4596 -8118,90065,45 Dugdale Road Burnley Lancashire BB12 6DW,,, BB12 6DW,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Aug 2024,C - 69 to 80,71.0,B - 81 to 91,88.0,BB126DW,100010337653.0,45 Dugdale Road,0.4596 -8216,362637,47 Dugdale Road Burnley Lancashire BB12 6DW,,, BB12 6DW,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126DW,100010337655.0,47 Dugdale Road,0.4596 -1389,225870,1 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,Flat: Top,Domestic EPC Required,EPC Present,04 Jun 2014,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104JZ,100010343865.0,"1, Hurstwood Avenue",0.4754 -1502,226298,3 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,Flat: Bottom,Domestic EPC Required,EPC Present,21 Jan 2026,C - 69 to 80,70.0,C - 69 to 80,72.0,BB104JZ,100010343867.0,3 Hurstwood Avenue,0.4754 -1767,181093,8 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: End Terrace,Domestic EPC Required,EPC Present,25 Jun 2012,D - 55 to 68,60.0,B - 81 to 91,86.0,BB104JZ,100010343872.0,"8, Hurstwood Avenue",0.4754 -1820,324664,9 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Nov 2019,D - 55 to 68,68.0,B - 81 to 91,88.0,BB104JZ,100010343873.0,"9, Hurstwood Avenue",0.4754 -1880,324660,10 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: End Terrace,Domestic EPC Required,EPC Present,20 Nov 2019,C - 69 to 80,71.0,B - 81 to 91,85.0,BB104JZ,100010343874.0,"10, Hurstwood Avenue",0.4801 -1980,244950,12 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB104JZ,100010343876.0,12 Hurstwood Avenue,0.4801 -2175,324663,16 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: End Terrace,Domestic EPC Required,EPC Present,20 Nov 2019,C - 69 to 80,70.0,B - 81 to 91,85.0,BB104JZ,100010343880.0,"16, Hurstwood Avenue",0.4801 -2314,241667,19 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: End Terrace,Domestic EPC Required,EPC Present,16 Sep 2015,D - 55 to 68,62.0,B - 81 to 91,87.0,BB104JZ,100010343883.0,"19, Hurstwood Avenue",0.4801 -2512,324662,23 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Nov 2019,C - 69 to 80,76.0,B - 81 to 91,89.0,BB104JZ,100010343886.0,"23, Hurstwood Avenue",0.4801 -2919,362268,31 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB104JZ,100010343890.0,31 Hurstwood Avenue,0.4801 -3018,267111,33 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Oct 2016,D - 55 to 68,68.0,B - 81 to 91,89.0,BB104JZ,100010343891.0,"33, Hurstwood Avenue",0.4801 -3115,324674,35 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: End Terrace,Domestic EPC Required,EPC Present,22 Nov 2019,C - 69 to 80,74.0,B - 81 to 91,87.0,BB104JZ,100010343892.0,"35, Hurstwood Avenue",0.4801 -3207,324675,37 Hurstwood Avenue Burnley Lancashire BB10 4JZ,,, BB10 4JZ,House: End Terrace,Domestic EPC Required,EPC Present,22 Nov 2019,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104JZ,100010343893.0,"37, Hurstwood Avenue",0.4801 -1410,362183,2 Kensington Place Burnley Lancashire BB11 4NL,,, BB11 4NL,Flat: Top,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,C - 69 to 80,73.0,BB114NL,100010344485.0,2 Kensington Place,0.4754 -1519,362186,4 Kensington Place Burnley Lancashire BB11 4NL,,, BB11 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,70.0,C - 69 to 80,75.0,BB114NL,100010344487.0,4 Kensington Place,0.4754 -1626,90269,6 Kensington Place Burnley Lancashire BB11 4NL,,, BB11 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,08 Jun 2021,D - 55 to 68,63.0,C - 69 to 80,73.0,BB114NL,100010344489.0,6 KENSINGTON PLACE,0.4754 -13829,376682,8 Kensington Place Burnley Lancashire BB11 4NL,,, BB11 4NL,Flat: Top,Domestic EPC Required,EPC Present,07 Mar 2024,C - 69 to 80,71.0,C - 69 to 80,72.0,BB114NL,100010344491.0,8 Kensington Place,0.4754 -1456,40716,11 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jan 2026,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115HX,100010335671.0,11 Comrie Crescent,0.4754 -1672,89607,15 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Dec 2009,D - 55 to 68,60.0,C - 69 to 80,71.0,BB115HX,100010335675.0,"15, Comrie Crescent",0.4754 -1837,362203,18 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115HX,100010335678.0,18 Comrie Crescent,0.4754 -1889,108705,19 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Nov 2017,C - 69 to 80,70.0,B - 81 to 91,86.0,BB115HX,100010335679.0,"19, Comrie Crescent",0.4754 -1940,362209,20 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115HX,100010335680.0,20 Comrie Crescent,0.4754 -1991,362214,21 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115HX,100010335681.0,21 Comrie Crescent,0.4754 -2041,189416,22 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Oct 2012,C - 69 to 80,69.0,B - 81 to 91,86.0,BB115HX,100010335682.0,"22, Comrie Crescent",0.4754 -2092,362216,23 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115HX,100010335683.0,23 Comrie Crescent,0.4754 -2138,95021,24 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Jan 2026,C - 69 to 80,75.0,B - 81 to 91,88.0,BB115HX,100010335684.0,24 Comrie Crescent,0.4754 -2237,362223,26 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115HX,100010335685.0,26 Comrie Crescent,0.4754 -2330,40758,28 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2008,E - 39 to 54,53.0,C - 69 to 80,73.0,BB115HX,100010335686.0,"28, Comrie Crescent",0.4754 -2425,362228,30 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115HX,100010335687.0,30 Comrie Crescent,0.4754 -2528,250424,32 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,24 May 2016,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115HX,100010335688.0,"32, Comrie Crescent",0.4754 -2634,242908,34 Comrie Crescent Burnley Lancashire BB11 5HX,,, BB11 5HX,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Oct 2015,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115HX,100010335689.0,"34, Comrie Crescent",0.4754 -1457,111218,71 Lawrence Avenue Burnley Lancashire BB11 5LW,,, BB11 5LW,House: End Terrace,Domestic EPC Required,EPC Present,05 Dec 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115LW,100010345612.0,71 Lawrence Avenue,0.4754 -1723,111290,76 Lawrence Avenue Burnley Lancashire BB11 5LW,,, BB11 5LW,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Jul 2024,C - 69 to 80,72.0,B - 81 to 91,89.0,BB115LW,100010345614.0,76 Lawrence Avenue,0.4754 -1941,179609,80 Lawrence Avenue Burnley Lancashire BB11 5LW,,, BB11 5LW,House: End Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,74.0,B - 81 to 91,88.0,BB115LW,100010345616.0,80 Lawrence Avenue,0.4754 -9629,111291,78 Lawrence Avenue Burnley Lancashire BB11 5LW,,, BB11 5LW,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Dec 2010,D - 55 to 68,62.0,C - 69 to 80,76.0,BB115LW,100010345615.0,"78, Lawrence Avenue",0.4754 -9733,101973,67 Lawrence Avenue Burnley Lancashire BB11 5LW,,, BB11 5LW,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2021,C - 69 to 80,74.0,B - 81 to 91,90.0,BB115LW,100010345610.0,67 Lawrence Avenue,0.4754 -1460,96025,88 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jun 2010,D - 55 to 68,65.0,C - 69 to 80,72.0,BB103EY,100010345758.0,"88, Leamington Avenue",0.4845 -7570,326217,31 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,Flat: Top,Domestic EPC Required,EPC Present,07 Feb 2020,C - 69 to 80,72.0,C - 69 to 80,76.0,BB103EY,100010345707.0,"31, Leamington Avenue",0.4845 -7680,223672,33 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,Flat: Bottom,Domestic EPC Required,EPC Present,17 Apr 2014,C - 69 to 80,70.0,C - 69 to 80,79.0,BB103EY,100010345709.0,"33, Leamington Avenue",0.4845 -7787,198529,35 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,Flat: Bottom,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,74.0,C - 69 to 80,76.0,BB103EY,100010345711.0,35 Leamington Avenue,0.4845 -7894,236579,37 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,Flat: Top,Domestic EPC Required,EPC Present,02 Jun 2015,D - 55 to 68,68.0,C - 69 to 80,77.0,BB103EY,100010345713.0,"37, Leamington Avenue",0.4845 -7996,326212,39 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,Flat: Top,Domestic EPC Required,EPC Present,07 Feb 2020,C - 69 to 80,74.0,C - 69 to 80,75.0,BB103EY,100010345715.0,"39, Leamington Avenue",0.4845 -8091,326218,41 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,Flat: Bottom,Domestic EPC Required,EPC Present,07 Feb 2020,C - 69 to 80,69.0,C - 69 to 80,75.0,BB103EY,100010345717.0,"41, Leamington Avenue",0.4845 -8192,89226,43 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,Flat: Bottom,Domestic EPC Required,EPC Present,25 Oct 2021,C - 69 to 80,69.0,C - 69 to 80,77.0,BB103EY,100010345719.0,43 Leamington Avenue,0.4845 -8289,116418,45 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,Flat: Top,Domestic EPC Required,EPC Present,17 Aug 2011,C - 69 to 80,75.0,C - 69 to 80,76.0,BB103EY,100010345720.0,"45, Leamington Avenue",0.4845 -8977,125499,57 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Dec 2011,D - 55 to 68,66.0,C - 69 to 80,71.0,BB103EY,100010345727.0,"57, Leamington Avenue",0.4845 -9206,89547,61 Leamington Avenue Burnley Lancashire BB10 3EY,,, BB10 3EY,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Dec 2009,D - 55 to 68,65.0,C - 69 to 80,71.0,BB103EY,100010345731.0,"61, Leamington Avenue",0.4845 -1468,359959,5 Suffolk Avenue Burnley Lancashire BB12 6AP,,, BB12 6AP,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Jun 2023,D - 55 to 68,65.0,B - 81 to 91,85.0,BB126AP,100010357218.0,5 Suffolk Avenue,0.4652 -1633,236526,8 Suffolk Avenue Burnley Lancashire BB12 6AP,,, BB12 6AP,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jun 2024,C - 69 to 80,69.0,B - 81 to 91,88.0,BB126AP,100010357221.0,8 Suffolk Avenue,0.4652 -1679,322295,9 Suffolk Avenue Burnley Lancashire BB12 6AP,,, BB12 6AP,House: End Terrace,Domestic EPC Required,EPC Present,23 Aug 2019,D - 55 to 68,60.0,B - 81 to 91,86.0,BB126AP,100010357222.0,"9, Suffolk Avenue",0.4652 -1737,110949,10 Suffolk Avenue Burnley Lancashire BB12 6AP,,, BB12 6AP,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Apr 2011,D - 55 to 68,60.0,C - 69 to 80,74.0,BB126AP,100010357223.0,"10, Suffolk Avenue",0.4705 -1790,223071,11 Suffolk Avenue Burnley Lancashire BB12 6AP,,, BB12 6AP,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Apr 2014,D - 55 to 68,60.0,B - 81 to 91,86.0,BB126AP,100010357224.0,"11, Suffolk Avenue",0.4705 -1852,180071,12 Suffolk Avenue Burnley Lancashire BB12 6AP,,, BB12 6AP,House: End Terrace,Domestic EPC Required,EPC Present,14 Jun 2024,D - 55 to 68,67.0,B - 81 to 91,87.0,BB126AP,100010357225.0,12 Suffolk Avenue,0.4705 -1899,362205,13 Suffolk Avenue Burnley Lancashire BB12 6AP,,, BB12 6AP,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB126AP,100010357226.0,13 Suffolk Avenue,0.4705 -1953,295098,14 Suffolk Avenue Burnley Lancashire BB12 6AP,,, BB12 6AP,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Sep 2017,D - 55 to 68,57.0,B - 81 to 91,82.0,BB126AP,100010357227.0,"14, Suffolk Avenue",0.4705 -2005,359733,15 Suffolk Avenue Burnley Lancashire BB12 6AP,,, BB12 6AP,House: End Terrace,Domestic EPC Required,EPC Present,18 Apr 2023,D - 55 to 68,63.0,B - 81 to 91,85.0,BB126AP,100010357228.0,15 Suffolk Avenue,0.4705 -1581,115719,30 Montgomery Grove Burnley Lancashire BB12 6DR,,, BB12 6DR,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Jun 2011,D - 55 to 68,65.0,C - 69 to 80,70.0,BB126DR,100010349241.0,"30, Montgomery Grove",0.4801 -1637,362191,31 Montgomery Grove Burnley Lancashire BB12 6DR,,, BB12 6DR,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB126DR,100010349242.0,31 Montgomery Grove,0.4801 -9279,362702,2 Montgomery Grove Burnley Lancashire BB12 6DR,,, BB12 6DR,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB126DR,100010349213.0,2 Montgomery Grove,0.4754 -1590,111301,98 Glen View Road Burnley Lancashire BB11 2QP,,, BB11 2QP,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Nov 2010,D - 55 to 68,59.0,C - 69 to 80,75.0,BB112QP,100010339750.0,"98, Glen View Road",0.5169 -2804,277198,122 Glen View Road Burnley Lancashire BB11 2QP,,, BB11 2QP,House: End Terrace,Domestic EPC Required,EPC Present,29 Jun 2017,D - 55 to 68,61.0,B - 81 to 91,87.0,BB112QP,100010339770.0,"122, Glen View Road",0.5219 -1628,362190,3 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB113JN,100010355034.0,3 Russell Court,0.4596 -1674,40728,4 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Feb 2009,C - 69 to 80,75.0,C - 69 to 80,76.0,BB113JN,100010355035.0,"4, Russell Court",0.4596 -1732,247665,5 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Mar 2016,C - 69 to 80,72.0,B - 81 to 91,87.0,BB113JN,100010355036.0,"5, Russell Court",0.4596 -1783,219312,6 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2013,C - 69 to 80,69.0,B - 81 to 91,85.0,BB113JN,100010355037.0,"6, Russell Court",0.4596 -1839,201781,7 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2013,C - 69 to 80,69.0,B - 81 to 91,85.0,BB113JN,100010355038.0,"7, Russell Court",0.4596 -1891,245836,8 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: End Terrace,Domestic EPC Required,EPC Present,13 Nov 2015,C - 69 to 80,72.0,B - 81 to 91,86.0,BB113JN,100010355039.0,"8, Russell Court",0.4596 -2045,179918,11 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 May 2012,C - 69 to 80,72.0,B - 81 to 91,88.0,BB113JN,100010355042.0,"11, Russell Court",0.4652 -2095,105389,12 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Jan 2011,C - 69 to 80,76.0,C - 69 to 80,79.0,BB113JN,100010355043.0,"12, Russell Court",0.4652 -2140,245835,13 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,86.0,BB113JN,100010355044.0,"13, Russell Court",0.4652 -2194,245834,14 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2015,C - 69 to 80,73.0,B - 81 to 91,86.0,BB113JN,100010355045.0,"14, Russell Court",0.4652 -2291,89435,16 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2009,C - 69 to 80,71.0,C - 69 to 80,75.0,BB113JN,100010355047.0,"16, Russell Court",0.4652 -2333,243347,17 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Oct 2015,C - 69 to 80,70.0,B - 81 to 91,87.0,BB113JN,100010355048.0,"17, Russell Court",0.4652 -2385,221666,18 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,73.0,B - 81 to 91,83.0,BB113JN,100010355049.0,"18, Russell Court",0.4652 -2428,192282,19 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Nov 2012,C - 69 to 80,73.0,B - 81 to 91,87.0,BB113JN,100010355050.0,"19, Russell Court",0.4652 -2530,105387,21 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Jan 2011,C - 69 to 80,73.0,C - 69 to 80,76.0,BB113JN,100010355052.0,"21, Russell Court",0.4652 -2589,88990,22 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Oct 2009,B - 81 to 91,82.0,B - 81 to 91,88.0,BB113JN,100010355053.0,"22, Russell Court",0.4652 -2636,244954,23 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: End Terrace,Domestic EPC Required,EPC Present,16 Oct 2015,C - 69 to 80,70.0,B - 81 to 91,86.0,BB113JN,100010355054.0,"23, Russell Court",0.4652 -2687,252150,24 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,86.0,BB113JN,100010355055.0,"24, Russell Court",0.4652 -2735,245838,25 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: End Terrace,Domestic EPC Required,EPC Present,20 Nov 2015,C - 69 to 80,72.0,B - 81 to 91,86.0,BB113JN,100010355056.0,"25, Russell Court",0.4652 -2787,245837,26 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: End Terrace,Domestic EPC Required,EPC Present,13 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,86.0,BB113JN,100010355057.0,"26, Russell Court",0.4652 -2836,40778,27 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Mar 2009,C - 69 to 80,74.0,C - 69 to 80,79.0,BB113JN,100010355058.0,"27, Russell Court",0.4652 -2936,252154,29 Russell Court Burnley Lancashire BB11 3JN,,, BB11 3JN,House: End Terrace,Domestic EPC Required,EPC Present,20 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,86.0,BB113JN,100010355060.0,"29, Russell Court",0.4652 -1718,244344,2 Denbigh Grove Burnley Lancashire BB12 6AX,,, BB12 6AX,House: End Terrace,Domestic EPC Required,EPC Present,07 Dec 2025,D - 55 to 68,68.0,C - 69 to 80,75.0,BB126AX,100010337243.0,2 Denbigh Grove,0.4596 -2087,40746,9 Denbigh Grove Burnley Lancashire BB12 6AX,,, BB12 6AX,House: End Terrace,Domestic EPC Required,EPC Present,18 Oct 2019,C - 69 to 80,72.0,B - 81 to 91,87.0,BB126AX,100010337250.0,"9, Denbigh Grove",0.4596 -2416,40763,16 Denbigh Grove Burnley Lancashire BB12 6AX,,, BB12 6AX,House: End Terrace,Domestic EPC Required,EPC Present,24 Mar 2009,D - 55 to 68,64.0,C - 69 to 80,72.0,BB126AX,100010337257.0,"16, Denbigh Grove",0.4652 -2516,362235,18 Denbigh Grove Burnley Lancashire BB12 6AX,,, BB12 6AX,House: End Terrace,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB126AX,100010337259.0,18 Denbigh Grove,0.4652 -2624,362248,20 Denbigh Grove Burnley Lancashire BB12 6AX,,, BB12 6AX,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,76.0,B - 81 to 91,89.0,BB126AX,100010337261.0,20 Denbigh Grove,0.4652 -1725,245884,4 Finsley View Briercliffe Burnley Lancashire BB10 2JG,,, BB10 2JG,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Jan 2016,D - 55 to 68,60.0,B - 81 to 91,87.0,BB102JG,10003781960.0,"4, Finsley View, Briercliffe",0.5525 -1779,325614,5 Finsley View Briercliffe Burnley Lancashire BB10 2JG,,, BB10 2JG,Bungalow: End Terr,Domestic EPC Required,EPC Present,15 Jan 2020,C - 69 to 80,69.0,B - 81 to 91,91.0,BB102JG,10014136844.0,"5, Finsley View, Briercliffe",0.5525 -1835,40657,6 Finsley View Briercliffe Burnley Lancashire BB10 2JG,,, BB10 2JG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Jan 2026,C - 69 to 80,73.0,B - 81 to 91,90.0,BB102JG,10003781961.0,"6 Finsley View, Briercliffe",0.5525 -1888,272341,7 Finsley View Briercliffe Burnley Lancashire BB10 2JG,,, BB10 2JG,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Mar 2017,D - 55 to 68,58.0,C - 69 to 80,78.0,BB102JG,10014136845.0,"7, Finsley View, Briercliffe",0.5525 -1738,208550,2 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Dec 2025,D - 55 to 68,68.0,C - 69 to 80,76.0,BB104BH,100010342941.0,2 Holcombe Drive,0.4652 -1848,242509,4 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,79.0,BB104BH,100010342943.0,4 Holcombe Drive,0.4652 -1952,242532,6 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Bungalow: End Terr,Domestic EPC Required,EPC Present,16 Sep 2015,D - 55 to 68,63.0,B - 81 to 91,87.0,BB104BH,100010342945.0,"6, Holcombe Drive",0.4652 -2052,243782,8 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Bungalow: End Terr,Domestic EPC Required,EPC Present,16 Sep 2015,D - 55 to 68,65.0,B - 81 to 91,88.0,BB104BH,100010342947.0,"8, Holcombe Drive",0.4652 -2148,242755,10 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Sep 2015,D - 55 to 68,67.0,B - 81 to 91,89.0,BB104BH,100010342949.0,"10, Holcombe Drive",0.4705 -2246,242756,12 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Bungalow: End Terr,Domestic EPC Required,EPC Present,16 Sep 2015,D - 55 to 68,65.0,B - 81 to 91,87.0,BB104BH,100010342951.0,"12, Holcombe Drive",0.4705 -2341,242789,14 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bottom,Domestic EPC Required,EPC Present,07 Dec 2025,C - 69 to 80,70.0,C - 69 to 80,73.0,BB104BH,100010342953.0,14 Holcombe Drive,0.4705 -2434,209258,16 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bottom,Domestic EPC Required,EPC Present,19 Oct 2015,C - 69 to 80,69.0,C - 69 to 80,73.0,BB104BH,100010342955.0,"16, Holcombe Drive",0.4705 -2535,209257,18 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Top,Domestic EPC Required,EPC Present,19 Oct 2015,C - 69 to 80,71.0,C - 69 to 80,72.0,BB104BH,100010342957.0,"18, Holcombe Drive",0.4705 -2644,243319,20 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Top,Domestic EPC Required,EPC Present,26 Oct 2015,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104BH,100010342959.0,"20, Holcombe Drive",0.4705 -2742,105063,22 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bottom,Domestic EPC Required,EPC Present,26 Oct 2015,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104BH,100010342961.0,"22, Holcombe Drive",0.4705 -2842,220113,24 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bottom,Domestic EPC Required,EPC Present,19 Oct 2015,D - 55 to 68,68.0,C - 69 to 80,71.0,BB104BH,100010342963.0,"24, Holcombe Drive",0.4705 -2939,243337,26 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Top,Domestic EPC Required,EPC Present,26 Oct 2015,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104BH,100010342965.0,"26, Holcombe Drive",0.4705 -3135,112880,30 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bedsit bottom,Domestic EPC Required,EPC Present,01 Dec 2025,C - 69 to 80,69.0,C - 69 to 80,72.0,BB104BH,100010342969.0,30 Holcombe Drive,0.4705 -3225,98752,32 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bottom,Domestic EPC Required,EPC Present,26 Oct 2015,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104BH,100010342971.0,"32, Holcombe Drive",0.4705 -3320,243346,34 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bedsit top,Domestic EPC Required,EPC Present,26 Oct 2015,C - 69 to 80,71.0,C - 69 to 80,74.0,BB104BH,100010342973.0,"34, Holcombe Drive",0.4705 -3422,243384,36 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Top,Domestic EPC Required,EPC Present,17 Nov 2015,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104BH,100010342975.0,"36, Holcombe Drive",0.4705 -3525,224918,38 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bottom,Domestic EPC Required,EPC Present,19 Oct 2015,C - 69 to 80,69.0,C - 69 to 80,73.0,BB104BH,100010342977.0,"38, Holcombe Drive",0.4705 -3637,252244,40 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bedsit bottom,Domestic EPC Required,EPC Present,04 Jul 2016,C - 69 to 80,70.0,C - 69 to 80,73.0,BB104BH,100010342979.0,"40, Holcombe Drive",0.4705 -3732,243385,42 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Top,Domestic EPC Required,EPC Present,19 Oct 2015,C - 69 to 80,72.0,C - 69 to 80,73.0,BB104BH,100010342981.0,"42, Holcombe Drive",0.4705 -3830,243386,44 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bedsit top,Domestic EPC Required,EPC Present,19 Oct 2015,D - 55 to 68,68.0,C - 69 to 80,70.0,BB104BH,100010342983.0,"44, Holcombe Drive",0.4705 -4042,243388,48 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bottom,Domestic EPC Required,EPC Present,19 Oct 2015,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104BH,100010342987.0,48 Holcombe Drive,0.4705 -4149,243798,50 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bedsit top,Domestic EPC Required,EPC Present,10 Nov 2015,C - 69 to 80,70.0,C - 69 to 80,71.0,BB104BH,100010342989.0,50 Holcombe Drive,0.4705 -4261,243389,52 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Top,Domestic EPC Required,EPC Present,26 Oct 2015,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104BH,100010342991.0,"52, Holcombe Drive",0.4705 -4379,243390,54 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bottom,Domestic EPC Required,EPC Present,19 Oct 2015,C - 69 to 80,69.0,C - 69 to 80,73.0,BB104BH,100010342993.0,"54, Holcombe Drive",0.4705 -4496,243391,56 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bedsit bottom,Domestic EPC Required,EPC Present,26 Oct 2015,D - 55 to 68,67.0,C - 69 to 80,74.0,BB104BH,100010342995.0,"56, Holcombe Drive",0.4705 -4621,243799,58 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Top,Domestic EPC Required,EPC Present,09 Nov 2015,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104BH,100010342997.0,"58, Holcombe Drive",0.4705 -4731,243392,60 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bedsit top,Domestic EPC Required,EPC Present,19 Oct 2015,C - 69 to 80,70.0,C - 69 to 80,71.0,BB104BH,100010342999.0,"60, Holcombe Drive",0.4705 -5443,245179,74 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: End Terrace,Domestic EPC Required,EPC Present,16 Nov 2015,D - 55 to 68,59.0,C - 69 to 80,78.0,BB104BH,100010343013.0,"74, Holcombe Drive",0.4705 -5855,234696,82 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,76.0,B - 81 to 91,90.0,BB104BH,100010343021.0,"82, Holcombe Drive",0.4705 -6127,235413,88 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 May 2015,D - 55 to 68,67.0,B - 81 to 91,81.0,BB104BH,100010343027.0,"88, Holcombe Drive",0.4705 -6218,243816,90 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Nov 2015,C - 69 to 80,72.0,B - 81 to 91,89.0,BB104BH,100010343029.0,"90, Holcombe Drive",0.4705 -6309,246837,92 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Feb 2016,C - 69 to 80,70.0,B - 81 to 91,89.0,BB104BH,100010343031.0,"92, Holcombe Drive",0.4705 -6403,243817,94 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2015,C - 69 to 80,72.0,B - 81 to 91,90.0,BB104BH,100010343033.0,"94, Holcombe Drive",0.4705 -7303,243393,112 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: End Terrace,Domestic EPC Required,EPC Present,26 Oct 2015,C - 69 to 80,70.0,B - 81 to 91,88.0,BB104BH,100010343048.0,112 Holcombe Drive,0.4754 -7394,245810,114 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104BH,100010343049.0,114 Holcombe Drive,0.4754 -7588,245185,118 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2015,C - 69 to 80,73.0,B - 81 to 91,90.0,BB104BH,100010343051.0,"118, Holcombe Drive",0.4754 -7915,243394,124 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Oct 2015,C - 69 to 80,73.0,B - 81 to 91,88.0,BB104BH,100010343054.0,"124, Holcombe Drive",0.4754 -8014,243820,126 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: End Terrace,Domestic EPC Required,EPC Present,02 Feb 2026,C - 69 to 80,76.0,B - 81 to 91,82.0,BB104BH,100010343055.0,"126, Holcombe Drive",0.4754 -8773,245811,140 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,74.0,B - 81 to 91,89.0,BB104BH,100010343062.0,"140, Holcombe Drive",0.4754 -9223,243821,148 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Dec 2015,B - 81 to 91,82.0,B - 81 to 91,87.0,BB104BH,100010343066.0,"148, Holcombe Drive",0.4754 -12657,303770,46 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Bedsit bottom,Domestic EPC Required,EPC Present,26 Oct 2015,D - 55 to 68,66.0,C - 69 to 80,74.0,BB104BH,100010342985.0,"46, Holcombe Drive",0.4705 -12683,304730,28 Holcombe Drive Burnley Lancashire BB10 4BH,,, BB10 4BH,Flat: Top,Domestic EPC Required,EPC Present,19 Oct 2015,C - 69 to 80,70.0,C - 69 to 80,72.0,BB104BH,100010342967.0,"28, Holcombe Drive",0.4705 -1746,362199,1 Heather Bank Burnley Lancashire BB11 5LA,,, BB11 5LA,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115LA,100010341993.0,1 Heather Bank,0.4536 -1857,207692,3 Heather Bank Burnley Lancashire BB11 5LA,,, BB11 5LA,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Feb 2026,C - 69 to 80,71.0,C - 69 to 80,79.0,BB115LA,100010341995.0,"3, Heather Bank",0.4536 -10978,108795,5 Heather Bank Burnley Lancashire BB11 5LA,,, BB11 5LA,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Mar 2011,C - 69 to 80,69.0,C - 69 to 80,71.0,BB115LA,100010341997.0,"5, Heather Bank",0.4536 -1749,252147,1 Rye Grove Padiham Lancashire BB12 7BJ,,, BB12 7BJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,10 Oct 2024,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BJ,10003780704.0,"1 Rye Grove, Padiham",0.6007 -1800,94835,2 Rye Grove Padiham Lancashire BB12 7BJ,,, BB12 7BJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,10 Oct 2024,B - 81 to 91,87.0,B - 81 to 91,91.0,BB127BJ,10003780705.0,"2 Rye Grove, Padiham",0.6007 -1859,100111,3 Rye Grove Padiham Lancashire BB12 7BJ,,, BB12 7BJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,10 Oct 2024,B - 81 to 91,87.0,B - 81 to 91,91.0,BB127BJ,10003780706.0,"3 Rye Grove, Padiham",0.6007 -1908,180887,4 Rye Grove Padiham Lancashire BB12 7BJ,,, BB12 7BJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,10 Oct 2024,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127BJ,10003780707.0,"4 Rye Grove, Padiham",0.6007 -1761,206143,2 Nelson Square Burnley Lancashire BB11 1LA,,, BB11 1LA,House: End Terrace,Domestic EPC Required,EPC Present,26 Jun 2025,E - 39 to 54,54.0,C - 69 to 80,76.0,BB111LA,100010349868.0,2 Nelson Square,0.4596 -2267,181102,12 Nelson Square Burnley Lancashire BB11 1LA,,, BB11 1LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Sep 2022,E - 39 to 54,45.0,C - 69 to 80,77.0,BB111LA,100010349873.0,12 Nelson Square,0.4652 -2457,362230,16 Nelson Square Burnley Lancashire BB11 1LA,,, BB11 1LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB111LA,100010349875.0,16 Nelson Square,0.4652 -2563,362242,18 Nelson Square Burnley Lancashire BB11 1LA,,, BB11 1LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB111LA,100010349876.0,18 Nelson Square,0.4652 -1794,245851,2 Mansergh Street Burnley Lancashire BB10 1TR,,, BB10 1TR,House: End Terrace,Domestic EPC Required,EPC Present,26 Jan 2026,D - 55 to 68,60.0,C - 69 to 80,74.0,BB101TR,100010347966.0,2 Mansergh Street,0.4705 -2490,268809,16 Mansergh Street Burnley Lancashire BB10 1TR,,, BB10 1TR,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Nov 2016,D - 55 to 68,67.0,B - 81 to 91,87.0,BB101TR,100010347980.0,"16, Mansergh Street",0.4754 -1796,40733,37 Magpie Close Burnley Lancashire BB11 5RP,,, BB11 5RP,House: Cluster Block,Domestic EPC Required,EPC Present,16 May 2013,C - 69 to 80,69.0,B - 81 to 91,83.0,BB115RP,10003780823.0,"37, Magpie Close",0.4596 -1901,339075,39 Magpie Close Burnley Lancashire BB11 5RP,,, BB11 5RP,House: Cluster Block,Domestic EPC Required,EPC Present,24 Jun 2021,C - 69 to 80,70.0,B - 81 to 91,87.0,BB115RP,10003780825.0,39 MAGPIE CLOSE,0.4596 -1955,96241,40 Magpie Close Burnley Lancashire BB11 5RP,,, BB11 5RP,House: Cluster Block,Domestic EPC Required,EPC Present,05 Jul 2010,C - 69 to 80,70.0,C - 69 to 80,75.0,BB115RP,10003780826.0,"40, Magpie Close",0.4596 -9042,41060,1 Magpie Close Burnley Lancashire BB11 5RP,,, BB11 5RP,House: End Terrace,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB115RP,10003780788.0,1 Magpie Close,0.4536 -9094,189709,2 Magpie Close Burnley Lancashire BB11 5RP,,, BB11 5RP,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 May 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115RP,10003780789.0,2 Magpie Close,0.4536 -6914,362547,1 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,07 Nov 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB120LA,100012382427.0,"1 Crow Wood Court, Crow Wood Avenue",0.4661 -7361,362579,10 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,08 Nov 2023,C - 69 to 80,79.0,C - 69 to 80,80.0,BB120LA,100012382436.0,"10 Crow Wood Court, Crow Wood Avenue",0.4704 -8847,362678,38 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,01 Nov 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB120LA,100012382464.0,"38 Crow Wood Court, Crow Wood Avenue",0.4704 -8906,362681,39 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,01 Nov 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB120LA,100012382465.0,"39 Crow Wood Court, Crow Wood Avenue",0.4704 -6965,362554,2 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,28 Apr 2022,C - 69 to 80,74.0,C - 69 to 80,78.0,BB120LA,100012382428.0,"2 Crow Wood Court, Crow Wood Avenue",0.4661 -7020,221640,3 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,05 Jan 2022,C - 69 to 80,76.0,C - 69 to 80,78.0,BB120LA,100012382429.0,"3 Crow Wood Court, Crow Wood Avenue",0.4661 -7062,221626,4 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB120LA,100012382430.0,"4 Crow Wood Court, Crow Wood Avenue",0.4661 -7114,136676,5 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,01 Mar 2012,C - 69 to 80,76.0,C - 69 to 80,77.0,BB120LA,100012382431.0,"5, Crow Wood Court, Crow Wood Avenue",0.4661 -7163,180893,6 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,14 Jun 2012,C - 69 to 80,77.0,C - 69 to 80,79.0,BB120LA,100012382432.0,"6, Crow Wood Court, Crow Wood Avenue",0.4661 -7216,210914,7 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,10 Sep 2013,C - 69 to 80,79.0,C - 69 to 80,79.0,BB120LA,100012382433.0,"7, Crow Wood Court, Crow Wood Avenue",0.4661 -7261,137013,8 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,01 Nov 2025,B - 81 to 91,81.0,B - 81 to 91,81.0,BB120LA,100012382434.0,"8 Crow Wood Court, Crow Wood Avenue",0.4661 -7313,95418,9 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,19 Apr 2023,B - 81 to 91,82.0,B - 81 to 91,82.0,BB120LA,100012382435.0,"9 Crow Wood Court, Crow Wood Avenue",0.4661 -7407,340593,11 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,02 Sep 2021,C - 69 to 80,78.0,C - 69 to 80,78.0,BB120LA,100012382437.0,"11 Crow Wood Court, Crow Wood Avenue",0.4704 -7455,102917,12 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,80.0,C - 69 to 80,80.0,BB120LA,100012382438.0,"12 Crow Wood Court, Crow Wood Avenue",0.4704 -7502,106384,13 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,08 Sep 2021,C - 69 to 80,76.0,C - 69 to 80,76.0,BB120LA,100012382439.0,"13 Crow Wood Court, Crow Wood Avenue",0.4704 -7549,95221,14 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,12 May 2010,B - 81 to 91,84.0,B - 81 to 91,86.0,BB120LA,100012382440.0,"14, Crow Wood Court, Crow Wood Avenue",0.4704 -7599,40999,15 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,19 Feb 2009,B - 81 to 91,84.0,B - 81 to 91,86.0,BB120LA,100012382441.0,"15, Crow Wood Court, Crow Wood Avenue",0.4704 -7713,180894,17 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,14 Jun 2012,C - 69 to 80,77.0,C - 69 to 80,79.0,BB120LA,100012382443.0,"17, Crow Wood Court, Crow Wood Avenue",0.4704 -7764,94990,18 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,31 Mar 2010,B - 81 to 91,84.0,B - 81 to 91,86.0,BB120LA,100012382444.0,"18, Crow Wood Court, Crow Wood Avenue",0.4704 -7818,362614,19 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,24 Jun 2022,C - 69 to 80,74.0,C - 69 to 80,78.0,BB120LA,100012382445.0,"19 Crow Wood Court, Crow Wood Avenue",0.4704 -7874,272780,20 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,22 Mar 2017,C - 69 to 80,74.0,C - 69 to 80,76.0,BB120LA,100012382446.0,"20, Crow Wood Court, Crow Wood Avenue",0.4704 -7924,339408,21 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,08 Jul 2021,C - 69 to 80,76.0,C - 69 to 80,77.0,BB120LA,100012382447.0,"21 CROW WOOD COURT, CROW WOOD AVENUE",0.4704 -7979,89578,22 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,24 Nov 2021,C - 69 to 80,76.0,C - 69 to 80,78.0,BB120LA,100012382448.0,"22 Crow Wood Court, Crow Wood Avenue",0.4704 -8027,41021,23 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,22 Nov 2021,C - 69 to 80,77.0,C - 69 to 80,77.0,BB120LA,100012382449.0,"23 Crow Wood Court, Crow Wood Avenue",0.4704 -8075,94926,24 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,14 Apr 2010,B - 81 to 91,84.0,B - 81 to 91,86.0,BB120LA,100012382450.0,"24, Crow Wood Court, Crow Wood Avenue",0.4704 -8124,359094,25 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,22 Feb 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB120LA,100012382451.0,"25 Crow Wood Court, Crow Wood Avenue",0.4704 -8174,246399,26 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,03 Feb 2016,C - 69 to 80,78.0,C - 69 to 80,78.0,BB120LA,100012382452.0,"26, Crow Wood Court, Crow Wood Avenue",0.4704 -8229,119219,27 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,04 Jan 2023,C - 69 to 80,77.0,C - 69 to 80,79.0,BB120LA,100012382453.0,"27 Crow Wood Court, Crow Wood Avenue",0.4704 -8273,246353,28 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,26 Jan 2016,C - 69 to 80,77.0,C - 69 to 80,78.0,BB120LA,100012382454.0,"28, Crow Wood Court, Crow Wood Avenue",0.4704 -8327,105398,29 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,19 May 2021,C - 69 to 80,76.0,C - 69 to 80,79.0,BB120LA,100012382455.0,"29 CROW WOOD COURT, CROW WOOD AVENUE",0.4704 -8380,41035,30 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,11 Jan 2009,B - 81 to 91,85.0,B - 81 to 91,87.0,BB120LA,100012382456.0,"30, Crow Wood Court, Crow Wood Avenue",0.4704 -8430,225824,31 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,02 Jun 2014,C - 69 to 80,77.0,C - 69 to 80,78.0,BB120LA,100012382457.0,"31, Crow Wood Court, Crow Wood Avenue",0.4704 -8486,110640,32 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,07 Apr 2011,B - 81 to 91,83.0,B - 81 to 91,85.0,BB120LA,100012382458.0,"32, Crow Wood Court, Crow Wood Avenue",0.4704 -8540,111667,33 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,26 Jan 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB120LA,100012382459.0,"33 Crow Wood Court, Crow Wood Avenue",0.4704 -8606,94839,34 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Top,Domestic EPC Required,EPC Present,17 Mar 2010,B - 81 to 91,82.0,B - 81 to 91,84.0,BB120LA,100012382460.0,"34, Crow Wood Court, Crow Wood Avenue",0.4704 -8671,220131,35 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,02 Dec 2013,C - 69 to 80,77.0,C - 69 to 80,79.0,BB120LA,100012382461.0,"35, Crow Wood Court, Crow Wood Avenue",0.4704 -8730,94991,36 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,30 Sep 2025,C - 69 to 80,76.0,C - 69 to 80,79.0,BB120LA,100012382462.0,"36 Crow Wood Court, Crow Wood Avenue",0.4704 -8789,339409,37 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,08 Jul 2021,C - 69 to 80,76.0,C - 69 to 80,78.0,BB120LA,100012382463.0,"37 CROW WOOD COURT, CROW WOOD AVENUE",0.4704 -8960,244345,40 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,18 Nov 2015,C - 69 to 80,76.0,C - 69 to 80,78.0,BB120LA,100012382466.0,"40, Crow Wood Court, Crow Wood Avenue",0.4704 -9019,274476,41 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,06 Jun 2017,C - 69 to 80,72.0,C - 69 to 80,73.0,BB120LA,100012382467.0,"41, Crow Wood Court, Crow Wood Avenue",0.4704 -9070,221136,42 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,12 Dec 2013,C - 69 to 80,78.0,C - 69 to 80,79.0,BB120LA,100012382468.0,"42, Crow Wood Court, Crow Wood Avenue",0.4704 -9125,339407,43 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,07 Jul 2021,C - 69 to 80,77.0,C - 69 to 80,79.0,BB120LA,100012382469.0,"43 CROW WOOD COURT, CROW WOOD AVENUE",0.4704 -9191,105062,44 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,08 Dec 2010,B - 81 to 91,83.0,B - 81 to 91,85.0,BB120LA,100012382470.0,"44, Crow Wood Court, Crow Wood Avenue",0.4704 -9244,250558,45 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,09 Jun 2016,C - 69 to 80,76.0,C - 69 to 80,78.0,BB120LA,100012382471.0,"45, Crow Wood Court, Crow Wood Avenue",0.4704 -9307,191101,46 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Dir acc 1 bed,Domestic EPC Required,EPC Present,09 Nov 2012,C - 69 to 80,76.0,C - 69 to 80,77.0,BB120LA,100012382472.0,"46, Crow Wood Court, Crow Wood Avenue",0.4704 -11600,253506,47 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Top,Domestic EPC Required,EPC Present,22 Sep 2016,C - 69 to 80,75.0,C - 69 to 80,76.0,BB120LA,10023762735.0,"47 Crow Wood Court, Crow Wood Avenue",0.4704 -11601,243660,16 Crow Wood Court Burnley Lancashire BB12 0LA,,, BB12 0LA,Flat: Bottom,Domestic EPC Required,EPC Present,30 Oct 2015,C - 69 to 80,75.0,C - 69 to 80,77.0,BB120LA,100012382442.0,"16, Crow Wood Court, Crow Wood Avenue",0.4704 -6940,362551,83 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: End Terrace,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB102AU,100010337955.0,83 Eastern Avenue,0.4705 -5378,40900,51 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: End Terrace,Domestic EPC Required,EPC Present,20 Jun 2009,D - 55 to 68,63.0,C - 69 to 80,70.0,BB102AU,100010337939.0,"51, Eastern Avenue",0.4705 -5484,222007,53 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: End Terrace,Domestic EPC Required,EPC Present,15 Jan 2014,C - 69 to 80,69.0,B - 81 to 91,85.0,BB102AU,100010337940.0,"53, Eastern Avenue",0.4705 -5589,326168,55 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Feb 2020,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102AU,100010337941.0,"55, Eastern Avenue",0.4705 -5979,359932,63 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 May 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB102AU,100010337945.0,63 Eastern Avenue,0.4705 -6073,132616,65 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jan 2012,C - 69 to 80,71.0,C - 69 to 80,75.0,BB102AU,100010337946.0,"65, Eastern Avenue",0.4705 -6446,360355,73 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: End Terrace,Domestic EPC Required,EPC Present,27 Jun 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB102AU,100010337950.0,73 Eastern Avenue,0.4705 -6642,252236,77 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Jul 2016,C - 69 to 80,73.0,B - 81 to 91,87.0,BB102AU,100010337952.0,"77, Eastern Avenue",0.4705 -6745,247944,79 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,69.0,B - 81 to 91,91.0,BB102AU,100010337953.0,"79, Eastern Avenue",0.4705 -6842,305159,81 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 May 2019,C - 69 to 80,72.0,B - 81 to 91,89.0,BB102AU,100010337954.0,"81, Eastern Avenue",0.4705 -8250,253471,109 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Dec 2025,D - 55 to 68,66.0,C - 69 to 80,75.0,BB102AU,100010337968.0,109 Eastern Avenue,0.4754 -8351,89463,111 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,03 Dec 2009,C - 69 to 80,71.0,C - 69 to 80,77.0,BB102AU,100010337969.0,"111, Eastern Avenue",0.4754 -8458,94977,113 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Jul 2021,C - 69 to 80,69.0,B - 81 to 91,90.0,BB102AU,100010337970.0,113 EASTERN AVENUE,0.4754 -8577,325760,115 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,89.0,BB102AU,100010337971.0,"115, Eastern Avenue",0.4754 -8696,226550,117 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,Bungalow: End Terr,Domestic EPC Required,EPC Present,01 Jul 2014,C - 69 to 80,69.0,B - 81 to 91,90.0,BB102AU,100010337972.0,"117, Eastern Avenue",0.4754 -8816,211357,119 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,09 Oct 2013,C - 69 to 80,69.0,B - 81 to 91,91.0,BB102AU,100010337973.0,"119, Eastern Avenue",0.4754 -8933,339331,121 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,01 Jul 2021,C - 69 to 80,71.0,B - 81 to 91,91.0,BB102AU,100010337974.0,121 EASTERN AVENUE,0.4754 -9044,106960,123 Eastern Avenue Burnley Lancashire BB10 2AU,,, BB10 2AU,Bungalow: End Terr,Domestic EPC Required,EPC Present,15 Jul 2022,D - 55 to 68,68.0,B - 81 to 91,90.0,BB102AU,100010337975.0,123 Eastern Avenue,0.4754 -7302,362576,7 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Dec 2023,D - 55 to 68,67.0,B - 81 to 91,82.0,BB103NS,100010350461.0,"7 Old Hall Square, Worsthorne",0.5944 -7002,324908,1 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,02 Dec 2019,C - 69 to 80,69.0,B - 81 to 91,89.0,BB103NS,100010350455.0,"1, Old Hall Square, Worsthorne",0.5944 -7054,324907,2 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,02 Dec 2019,C - 69 to 80,70.0,B - 81 to 91,89.0,BB103NS,100010350456.0,"2, Old Hall Square, Worsthorne",0.5944 -7105,245153,3 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Dec 2025,B - 81 to 91,86.0,B - 81 to 91,88.0,BB103NS,100010350457.0,"3 Old Hall Square, Worsthorne",0.5944 -7151,186756,4 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,12 Dec 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB103NS,100010350458.0,"4 Old Hall Square, Worsthorne",0.5944 -7207,118381,5 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Sep 2011,D - 55 to 68,65.0,D - 55 to 68,66.0,BB103NS,100010350459.0,"5, Old Hall Square, Worsthorne",0.5944 -7256,114855,6 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,63.0,B - 81 to 91,87.0,BB103NS,100010350460.0,"6, Old Hall Square, Worsthorne",0.5944 -7647,112884,14 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,House: Semi-Detached,Domestic EPC Required,EPC Present,25 May 2011,D - 55 to 68,66.0,C - 69 to 80,69.0,BB103NS,100010350468.0,"14, Old Hall Square, Worsthorne",0.5972 -7967,324936,20 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Dec 2019,C - 69 to 80,71.0,B - 81 to 91,88.0,BB103NS,100010350474.0,"20, Old Hall Square, Worsthorne",0.5972 -8064,324935,22 Old Hall Square Worsthorne Burnley Lancashire BB10 3NS,,, BB10 3NS,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jan 2026,C - 69 to 80,70.0,C - 69 to 80,79.0,BB103NS,100010350476.0,"22 Old Hall Square, Worsthorne",0.5972 -7425,362585,13 Carter Avenue Hapton Burnley Lancashire BB11 5RG,,, BB11 5RG,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Oct 2023,C - 69 to 80,71.0,B - 81 to 91,84.0,BB115RG,100010333105.0,"13 Carter Avenue, Hapton",0.5426 -7467,362590,14 Carter Avenue Hapton Burnley Lancashire BB11 5RG,,, BB11 5RG,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Oct 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115RG,100010333106.0,"14 Carter Avenue, Hapton",0.5426 -7281,244964,10 Carter Avenue Hapton Burnley Lancashire BB11 5RG,,, BB11 5RG,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2015,C - 69 to 80,69.0,B - 81 to 91,84.0,BB115RG,100010333102.0,"10, Carter Avenue, Hapton",0.5426 -7673,210913,18 Carter Avenue Hapton Burnley Lancashire BB11 5RG,,, BB11 5RG,House: End Terrace,Domestic EPC Required,EPC Present,10 Sep 2013,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115RG,100010333110.0,"18, Carter Avenue, Hapton",0.5426 -7837,222437,21 Carter Avenue Hapton Burnley Lancashire BB11 5RG,,, BB11 5RG,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2014,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115RG,100010333113.0,"21, Carter Avenue, Hapton",0.5426 -7989,244947,24 Carter Avenue Hapton Burnley Lancashire BB11 5RG,,, BB11 5RG,House: End Terrace,Domestic EPC Required,EPC Present,22 Oct 2015,C - 69 to 80,69.0,B - 81 to 91,86.0,BB115RG,100010333116.0,"24, Carter Avenue, Hapton",0.5426 -8288,362644,18 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,House: End Terrace,Domestic EPC Required,EPC Present,14 Nov 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB128NY,100010345404.0,"18 Langdale Road, Padiham",0.6185 -719,119249,47 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,69.0,B - 81 to 91,86.0,BB128NY,100010345433.0,"47, Langdale Road, Padiham",0.6185 -921,111187,51 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Aug 2021,D - 55 to 68,58.0,B - 81 to 91,89.0,BB128NY,100010345437.0,"51 Langdale Road, Padiham",0.6185 -7428,362587,1 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,90.0,BB128NY,100010345387.0,"1 Langdale Road, Padiham",0.6154 -7520,89502,3 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Dec 2009,D - 55 to 68,66.0,C - 69 to 80,73.0,BB128NY,100010345389.0,"3, Langdale Road, Padiham",0.6154 -7622,90190,5 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Feb 2010,C - 69 to 80,72.0,C - 69 to 80,76.0,BB128NY,100010345391.0,"5, Langdale Road, Padiham",0.6154 -7733,231196,7 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,21 Jan 2015,D - 55 to 68,61.0,B - 81 to 91,85.0,BB128NY,100010345393.0,"7, Langdale Road, Padiham",0.6154 -7786,362611,8 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB128NY,100010345394.0,"8 Langdale Road, Padiham",0.6154 -7844,201775,9 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,09 Apr 2013,D - 55 to 68,65.0,B - 81 to 91,89.0,BB128NY,100010345395.0,"9, Langdale Road, Padiham",0.6154 -7948,332661,11 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,23 Oct 2020,D - 55 to 68,64.0,D - 55 to 68,66.0,BB128NY,100010345397.0,"11 LANGDALE ROAD, PADIHAM",0.6185 -8043,221654,13 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,68.0,B - 81 to 91,90.0,BB128NY,100010345399.0,"13, Langdale Road, Padiham",0.6185 -8143,89317,15 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Nov 2009,C - 69 to 80,69.0,C - 69 to 80,70.0,BB128NY,100010345401.0,"15, Langdale Road, Padiham",0.6185 -8245,219720,17 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jun 2025,C - 69 to 80,69.0,C - 69 to 80,77.0,BB128NY,100010345403.0,"17 Langdale Road, Padiham",0.6185 -8345,69650,19 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,27 Jan 2023,C - 69 to 80,69.0,B - 81 to 91,91.0,BB128NY,100010345405.0,"19 Langdale Road, Padiham",0.6185 -8450,94902,21 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Oct 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB128NY,100010345407.0,"21 Langdale Road, Padiham",0.6185 -8562,94904,23 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Oct 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB128NY,100010345409.0,"23 Langdale Road, Padiham",0.6185 -8686,112185,25 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 May 2011,D - 55 to 68,65.0,D - 55 to 68,68.0,BB128NY,100010345411.0,"25, Langdale Road, Padiham",0.6185 -8809,94972,27 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Apr 2010,C - 69 to 80,73.0,C - 69 to 80,77.0,BB128NY,100010345413.0,"27, Langdale Road, Padiham",0.6185 -8928,247015,29 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,02 Mar 2016,D - 55 to 68,65.0,B - 81 to 91,90.0,BB128NY,100010345415.0,"29, Langdale Road, Padiham",0.6185 -9035,362688,31 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,90.0,BB128NY,100010345417.0,"31 Langdale Road, Padiham",0.6185 -9149,359955,33 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 May 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128NY,100010345419.0,"33 Langdale Road, Padiham",0.6185 -9269,138693,35 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,02 Sep 2022,C - 69 to 80,69.0,A - 92 Plus,92.0,BB128NY,100010345421.0,"35 Langdale Road, Padiham",0.6185 -9382,187823,37 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Sep 2012,C - 69 to 80,69.0,A - 92 Plus,92.0,BB128NY,100010345423.0,"37, Langdale Road, Padiham",0.6185 -9495,362711,39 Langdale Road Padiham Lancashire BB12 8NY,,, BB12 8NY,Bungalow: End Terr,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128NY,100010345425.0,"39 Langdale Road, Padiham",0.6185 -8662,362665,140 Kiddrow Lane Burnley Lancashire BB12 6LL,,, BB12 6LL,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Dec 2023,D - 55 to 68,66.0,B - 81 to 91,84.0,BB126LL,100010344642.0,140 Kiddrow Lane,0.4652 -9249,118349,64 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: End Terrace,Domestic EPC Required,EPC Present,16 Oct 2023,D - 55 to 68,65.0,B - 81 to 91,85.0,BB112NX,100010349382.0,64 Moorland Road,0.4652 -605,179913,74 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 May 2012,D - 55 to 68,66.0,B - 81 to 91,85.0,BB112NX,100010349387.0,"74, Moorland Road",0.4652 -809,94859,78 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: End Terrace,Domestic EPC Required,EPC Present,10 Jul 2017,D - 55 to 68,65.0,B - 81 to 91,87.0,BB112NX,100010349389.0,"78, Moorland Road",0.4652 -904,111293,80 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: End Terrace,Domestic EPC Required,EPC Present,28 Jun 2017,D - 55 to 68,64.0,B - 81 to 91,85.0,BB112NX,100010349390.0,"80, Moorland Road",0.4652 -1011,233913,82 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Jun 2017,D - 55 to 68,67.0,B - 81 to 91,85.0,BB112NX,100010349391.0,"82, Moorland Road",0.4652 -1231,230220,86 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: End Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,C - 69 to 80,69.0,B - 81 to 91,87.0,BB112NX,100010349393.0,86 Moorland Road,0.4652 -1343,274463,88 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: End Terrace,Domestic EPC Required,EPC Present,05 Jun 2017,D - 55 to 68,56.0,B - 81 to 91,83.0,BB112NX,100010349394.0,"88, Moorland Road",0.4652 -1445,286340,90 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jun 2017,D - 55 to 68,63.0,B - 81 to 91,85.0,BB112NX,100010349395.0,"90, Moorland Road",0.4652 -1659,275592,94 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: End Terrace,Domestic EPC Required,EPC Present,28 Jun 2017,D - 55 to 68,64.0,B - 81 to 91,87.0,BB112NX,100010349397.0,"94, Moorland Road",0.4652 -6964,40971,21 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Mar 2025,D - 55 to 68,68.0,B - 81 to 91,86.0,BB112NX,100010349345.0,21 Moorland Road,0.4652 -6973,275598,21a Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jun 2017,D - 55 to 68,59.0,B - 81 to 91,87.0,BB112NX,100010349343.0,"21a, Moorland Road",0.5219 -6977,194691,21b Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jan 2013,C - 69 to 80,70.0,B - 81 to 91,87.0,BB112NX,100010349344.0,"21b, Moorland Road",0.5219 -7061,40974,23 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Mar 2022,D - 55 to 68,59.0,B - 81 to 91,82.0,BB112NX,100010349347.0,23 Moorland Road,0.4652 -7162,110878,25 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jun 2017,D - 55 to 68,64.0,B - 81 to 91,85.0,BB112NX,100010349349.0,"25, Moorland Road",0.4652 -7362,89742,29 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Jan 2010,D - 55 to 68,59.0,C - 69 to 80,73.0,BB112NX,100010349353.0,"29, Moorland Road",0.4652 -7456,40992,31 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Jun 2017,D - 55 to 68,58.0,D - 55 to 68,62.0,BB112NX,100010349355.0,"31, Moorland Road",0.4652 -7548,206144,33 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jul 2024,C - 69 to 80,72.0,B - 81 to 91,87.0,BB112NX,100010349357.0,33 Moorland Road,0.4652 -7660,110926,35 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Jun 2017,D - 55 to 68,63.0,B - 81 to 91,84.0,BB112NX,100012536949.0,"35, Moorland Road",0.4652 -7760,41007,37 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Mar 2025,C - 69 to 80,69.0,B - 81 to 91,87.0,BB112NX,100010349360.0,37 Moorland Road,0.4652 -7869,275576,39 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Jun 2017,D - 55 to 68,64.0,B - 81 to 91,89.0,BB112NX,100010349362.0,"39, Moorland Road",0.4652 -7977,111160,41 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Jun 2017,D - 55 to 68,63.0,B - 81 to 91,85.0,BB112NX,100010349364.0,"41, Moorland Road",0.4652 -8173,286337,45 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jun 2017,D - 55 to 68,55.0,B - 81 to 91,83.0,BB112NX,100010349368.0,"45, Moorland Road",0.4652 -8272,111179,47 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jun 2017,D - 55 to 68,63.0,B - 81 to 91,86.0,BB112NX,100010349370.0,"47, Moorland Road",0.4652 -8669,111194,54 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: End Terrace,Domestic EPC Required,EPC Present,28 Jun 2017,D - 55 to 68,65.0,B - 81 to 91,84.0,BB112NX,100010349377.0,"54, Moorland Road",0.4652 -9018,111200,60 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Jul 2017,D - 55 to 68,65.0,B - 81 to 91,85.0,BB112NX,100010349380.0,"60, Moorland Road",0.4652 -9133,111204,62 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Feb 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB112NX,100010349381.0,62 Moorland Road,0.4652 -9364,111211,66 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Jun 2017,D - 55 to 68,67.0,B - 81 to 91,85.0,BB112NX,100010349383.0,"66, Moorland Road",0.4652 -9476,98118,68 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Mar 2022,C - 69 to 80,70.0,B - 81 to 91,89.0,BB112NX,100010349384.0,68 Moorland Road,0.4652 -13250,337854,84 Moorland Road Burnley Lancashire BB11 2NX,,, BB11 2NX,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Feb 2014,C - 69 to 80,69.0,B - 81 to 91,86.0,BB112NX,100010349392.0,"84, Moorland Road",0.4652 -9519,362712,7 Derwent Avenue Padiham Lancashire BB12 8NZ,,, BB12 8NZ,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB128NZ,100010337272.0,"7 Derwent Avenue, Padiham",0.6185 -9289,268941,3 Derwent Avenue Padiham Lancashire BB12 8NZ,,, BB12 8NZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Dec 2016,C - 69 to 80,69.0,B - 81 to 91,88.0,BB128NZ,100010337268.0,"3, Derwent Avenue, Padiham",0.6185 -9344,137009,4 Derwent Avenue Padiham Lancashire BB12 8NZ,,, BB12 8NZ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Mar 2012,D - 55 to 68,67.0,C - 69 to 80,72.0,BB128NZ,100010337269.0,"4, Derwent Avenue, Padiham",0.6185 -9460,362710,6 Derwent Avenue Padiham Lancashire BB12 8NZ,,, BB12 8NZ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB128NZ,100010337271.0,"6 Derwent Avenue, Padiham",0.6185 -10801,76919,45 Laithe Street Burnley Lancashire BB11 2LH,,, BB11 2LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB112LH,100010345223.0,45 Laithe Street,0.4652 -13085,333853,2 Laithe Street Burnley Lancashire BB11 2LH,,, BB11 2LH,House: End Terrace,Domestic EPC Required,EPC Present,01 Dec 2025,C - 69 to 80,70.0,C - 69 to 80,77.0,BB112LH,100010345180.0,"2 LAITHE STREET, BURNLEY",0.6154 -13086,336089,4 Laithe Street Burnley Lancashire BB11 2LH,,, BB11 2LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Nov 2020,C - 69 to 80,74.0,C - 69 to 80,79.0,BB112LH,100010345182.0,"4 LAITHE STREET, BURNLEY",0.6154 -13087,336085,32 Laithe Street Burnley Lancashire BB11 2LH,,, BB11 2LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Nov 2020,C - 69 to 80,73.0,C - 69 to 80,79.0,BB112LH,100010345210.0,"32 LAITHE STREET, BURNLEY",0.6185 -13111,336234,17 Laithe Street Burnley Lancashire BB11 2LH,,, BB11 2LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Nov 2020,C - 69 to 80,74.0,A - 92 Plus,92.0,BB112LH,100010345195.0,"17 LAITHE STREET, BURNLEY",0.6185 -13366,357161,12 Laithe Street Burnley Lancashire BB11 2LH,,, BB11 2LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Feb 2022,C - 69 to 80,73.0,A - 92 Plus,92.0,BB112LH,100010345190.0,12 Laithe Street,0.4652 -13373,357164,7 Laithe Street Burnley Lancashire BB11 2LH,,, BB11 2LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Feb 2022,C - 69 to 80,74.0,A - 92 Plus,93.0,BB112LH,100010345185.0,7 Laithe Street,0.4596 -13382,357135,30 Laithe Street Burnley Lancashire BB11 2LH,,, BB11 2LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Mar 2022,C - 69 to 80,73.0,A - 92 Plus,92.0,BB112LH,100010345208.0,30 Laithe Street,0.4652 -13736,360349,47 Laithe Street Burnley Lancashire BB11 2LH,,, BB11 2LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jun 2023,C - 69 to 80,76.0,B - 81 to 91,89.0,BB112LH,100010345225.0,47 Laithe Street,0.4652 -11076,181806,6 Plover Street Burnley Lancashire BB12 0HE,,, BB12 0HE,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Oct 2023,D - 55 to 68,65.0,B - 81 to 91,83.0,BB120HE,100010352290.0,6 Plover Street,0.4596 -11134,362718,6 Wood Street Colne Lancashire BB8 8HA,,, BB8 8HA,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Oct 2023,D - 55 to 68,65.0,B - 81 to 91,84.0,BB88HA,61024084.0,6 Wood Street,0.457 -11135,190675,10 Wood Street Colne Lancashire BB8 8HA,,, BB8 8HA,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Sep 2012,E - 39 to 54,49.0,B - 81 to 91,85.0,BB88HA,61024075.0,"10, Wood Street",0.4635 -11136,190679,14 Wood Street Colne Lancashire BB8 8HA,,, BB8 8HA,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Aug 2008,D - 55 to 68,64.0,C - 69 to 80,77.0,BB88HA,,, -12286,362768,Flat 13 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Top,Domestic EPC Required,EPC Present,01 Mar 2024,C - 69 to 80,80.0,C - 69 to 80,80.0,BB120LY,10003782512.0,"12, Whittle Court",0.0462 -12287,362769,Flat 14 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Top,Domestic EPC Required,EPC Present,01 Mar 2024,C - 69 to 80,80.0,C - 69 to 80,80.0,BB120LY,10003782512.0,"12, Whittle Court",0.0462 -12288,362770,Flat 15 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Top,Domestic EPC Required,EPC Present,01 Mar 2024,B - 81 to 91,81.0,B - 81 to 91,81.0,BB120LY,10003782512.0,"12, Whittle Court",0.0462 -12274,362756,Flat 1 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Bottom,Domestic EPC Required,EPC Present,28 Mar 2016,D - 55 to 68,65.0,C - 69 to 80,75.0,BB120LY,10003782507.0,"1, Whittle Court",0.1093 -12275,362757,Flat 2 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Bottom,Domestic EPC Required,EPC Present,16 Sep 2016,D - 55 to 68,68.0,C - 69 to 80,76.0,BB120LY,10003782509.0,"2, Whittle Court",0.1093 -12276,362758,Flat 3 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Bottom,Domestic EPC Required,EPC Present,22 Apr 2016,C - 69 to 80,73.0,C - 69 to 80,79.0,BB120LY,10003782510.0,"3, Whittle Court",0.1093 -12277,362759,Flat 4 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Bottom,Domestic EPC Required,EPC Present,25 Oct 2015,C - 69 to 80,79.0,B - 81 to 91,81.0,BB120LY,10003782511.0,"4, Whittle Court",0.1093 -12278,362760,Flat 5 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Middle,Domestic EPC Required,EPC Present,16 Sep 2016,C - 69 to 80,71.0,C - 69 to 80,75.0,BB120LY,10003782517.0,"5, Whittle Court",0.1093 -12279,362761,Flat 6 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Middle,Domestic EPC Required,EPC Present,16 Sep 2016,C - 69 to 80,72.0,C - 69 to 80,75.0,BB120LY,10003782513.0,"6, Whittle Court",0.1093 -12280,362762,Flat 7 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Middle,Domestic EPC Required,EPC Present,16 Jun 2016,C - 69 to 80,74.0,C - 69 to 80,76.0,BB120LY,10003782514.0,"7, Whittle Court",0.1093 -12281,362763,Flat 8 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Middle,Domestic EPC Required,EPC Present,16 Sep 2016,C - 69 to 80,70.0,C - 69 to 80,76.0,BB120LY,10003782515.0,"8, Whittle Court",0.1093 -12282,362764,Flat 9 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Middle,Domestic EPC Required,EPC Present,28 Mar 2016,C - 69 to 80,70.0,C - 69 to 80,76.0,BB120LY,10003782516.0,"9, Whittle Court",0.1093 -12283,362765,Flat 10 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Middle,Domestic EPC Required,EPC Present,16 Sep 2016,D - 55 to 68,68.0,C - 69 to 80,75.0,BB120LY,10003782518.0,"10, Whittle Court",0.1157 -12284,362766,Flat 11 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Top,Domestic EPC Required,EPC Present,15 Mar 2016,C - 69 to 80,77.0,C - 69 to 80,78.0,BB120LY,10003782520.0,"11, Whittle Court",0.1157 -12285,362767,Flat 12 Jane's Place Complex Needs Unit Recovery Refuge Lancashire BB12 0LY,,, BB12 0LY,Flat: Top,Domestic EPC Required,EPC Present,28 Mar 2016,C - 69 to 80,69.0,C - 69 to 80,75.0,BB120LY,10003782512.0,"12, Whittle Court",0.1157 -12516,362801,32 Ferndale Street Burnley Lancashire BB10 3EP,,, BB10 3EP,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2023,D - 55 to 68,61.0,C - 69 to 80,80.0,BB103EP,100010338792.0,32 Ferndale Street,0.4754 -13714,362948,72 Briercliffe Road Burnley Lancashire BB10 1UX,,, BB10 1UX,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,25 Oct 2023,D - 55 to 68,68.0,B - 81 to 91,87.0,BB101UX,100010330052.0,72 Briercliffe Road,0.4801 -13772,368818,42 Nairne Street Burnley Lancashire BB11 4BT,,, BB11 4BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Oct 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB114BT,100010349759.0,42 Nairne Street,0.4652 -13412,362843,15 Nairne Street BURNLEY Lancashire BB11 4BT,,, BB11 4BT,House: End Terrace,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BT,10094112259.0,15 Nairne Street,0.4652 -13413,362844,17 Nairne Street BURNLEY Lancashire BB11 4BT,,, BB11 4BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BT,10094112253.0,17 Nairne Street,0.4652 -13414,362845,19 Nairne Street BURNLEY Lancashire BB11 4BT,,, BB11 4BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BT,10094112255.0,19 Nairne Street,0.4652 -13415,362846,22 Nairne Street BURNLEY Lancashire BB11 4BT,,, BB11 4BT,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BT,10094112258.0,22 Nairne Street,0.4652 -13416,362847,20 Nairne Street BURNLEY Lancashire BB11 4BT,,, BB11 4BT,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BT,10094112256.0,20 Nairne Street,0.4652 -13417,362848,18 Nairne Street BURNLEY Lancashire BB11 4BT,,, BB11 4BT,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BT,10094112254.0,18 Nairne Street,0.4652 -13418,362849,16 Nairne Street BURNLEY Lancashire BB11 4BT,,, BB11 4BT,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BT,10094112252.0,16 Nairne Street,0.4652 -13419,362850,21 Nairne Street BURNLEY Lancashire BB11 4BT,,, BB11 4BT,House: End Terrace,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BT,10094112257.0,21 Nairne Street,0.4652 -13707,358380,33 Nairne Street Burnley Lancashire BB11 4BT,,, BB11 4BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 May 2015,C - 69 to 80,75.0,B - 81 to 91,89.0,BB114BT,100010349748.0,"33, Nairne Street",0.4652 -13709,358439,38 Nairne Street Burnley Lancashire BB11 4BT,,, BB11 4BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Feb 2015,C - 69 to 80,74.0,B - 81 to 91,90.0,BB114BT,100010349755.0,"38, Nairne Street",0.4652 -13710,358473,39 Nairne Street Burnley Lancashire BB11 4BT,,, BB11 4BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 May 2015,C - 69 to 80,73.0,B - 81 to 91,89.0,BB114BT,100010349756.0,"39, Nairne Street",0.4652 -13711,362946,53 Nairne Street Burnley Lancashire BB11 4BT,,, BB11 4BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 May 2015,C - 69 to 80,74.0,A - 92 Plus,93.0,BB114BT,100010349770.0,"53, Nairne Street",0.4652 -13779,368970,20 Brockenhurst Street Burnley Lancashire BB10 4ET,,, BB10 4ET,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Nov 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB104ET,100010330521.0,"20 BROCKENHURST STREET, BURNLEY",0.6339 -13780,369211,8 Kyan Street Burnley Lancashire BB10 1HJ,,, BB10 1HJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Nov 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB101HJ,100010345074.0,8 Kyan Street,0.4471 -13796,374982,67 Nairne Street Burnley Lancashire BB11 4PE,,, BB11 4PE,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB114PE,100010349784.0,67 Nairne Street,0.4652 -13477,357200,101 Nairne Street Burnley Lancashire BB11 4PE,,, BB11 4PE,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Aug 2022,C - 69 to 80,72.0,B - 81 to 91,89.0,BB114PE,100010349818.0,101 Nairne Street,0.4705 -13638,359006,61 Nairne Street Burnley Lancashire BB11 4PE,,, BB11 4PE,House: End Terrace,Domestic EPC Required,EPC Present,15 Feb 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB114PE,100010349778.0,61 Nairne Street,0.4652 -13639,359010,75 Nairne Street Burnley Lancashire BB11 4PE,,, BB11 4PE,House: End Terrace,Domestic EPC Required,EPC Present,15 Feb 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB114PE,100010349792.0,75 Nairne Street,0.4652 -13809,374968,315 Cog Lane Hargher Clough BURNLEY Lancashire BB11 5JP,,, BB11 5JP,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Jan 2024,C - 69 to 80,70.0,B - 81 to 91,84.0,BB115JP,100010335017.0,315 Cog Lane,0.342 -13810,374969,59 Westmorland Street Burnley Lancashire BB11 4PN,,, BB11 4PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Nov 2020,D - 55 to 68,65.0,B - 81 to 91,89.0,BB114PN,100010360576.0,"59 WESTMORLAND STREET, BURNLEY",0.6317 -13334,342046,65 Westmorland Street Burnley Lancashire BB11 4PN,,, BB11 4PN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Oct 2021,C - 69 to 80,74.0,A - 92 Plus,92.0,BB114PN,100010360579.0,65 Westmorland Street,0.4886 -13701,358188,10 Westmorland Street Burnley Lancashire BB11 4PN,,, BB11 4PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Feb 2017,C - 69 to 80,70.0,B - 81 to 91,89.0,BB114PN,100010360545.0,10 Westmorland Street,0.4886 -13703,358256,14 Westmorland Street Burnley Lancashire BB11 4PN,,, BB11 4PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Apr 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB114PN,100010360547.0,"14, Westmorland Street",0.4886 -13704,362944,16 Westmorland Street Burnley Lancashire BB11 4PN,,, BB11 4PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Jun 2014,C - 69 to 80,74.0,B - 81 to 91,91.0,BB114PN,100010360548.0,"16, Westmorland Street",0.4886 -13811,374967,14 Prestwich Street BURNLEY Lancashire BB11 4NZ,,, BB11 4NZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Dec 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB114NZ,100010352546.0,14 Prestwich Street,0.4801 -13755,362958,18 Prestwich Street Burnley Lancashire BB11 4NZ,,, BB11 4NZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB114NZ,100010352549.0,18 Prestwich Street,0.4801 -13825,375715,53 Elmwood Street Burnley Lancashire BB11 4BP,,, BB11 4BP,House: End Terrace,Domestic EPC Required,EPC Present,08 Mar 2024,C - 69 to 80,69.0,B - 81 to 91,85.0,BB114BP,100010338306.0,53 Elmwood Street,0.4705 -13303,339784,29 Elmwood Street Burnley Lancashire BB11 4BP,,, BB11 4BP,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Jun 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB114BP,100010338282.0,29 ELMWOOD STREET,0.4705 -13369,357184,45 Elmwood Street Burnley Lancashire BB11 4BP,,, BB11 4BP,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Feb 2022,C - 69 to 80,77.0,A - 92 Plus,92.0,BB114BP,100010338298.0,45 Elmwood Street,0.4705 -13467,357187,26 Elmwood Street Burnley Lancashire BB11 4BP,,, BB11 4BP,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Jul 2022,C - 69 to 80,74.0,A - 92 Plus,92.0,BB114BP,100010338279.0,26 Elmwood Street,0.4705 -13548,357190,52 Elmwood Street Burnley Lancashire BB11 4BP,,, BB11 4BP,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Sep 2022,C - 69 to 80,75.0,B - 81 to 91,89.0,BB114BP,100010338305.0,52 Elmwood Street,0.4705 -13770,368811,46 Elmwood Street Burnley Lancashire BB11 4BP,,, BB11 4BP,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Jul 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB114BP,100010338299.0,46 Elmwood Street,0.4705 -13826,375584,14 Richmond Street Burnley Lancashire BB11 4NT,,, BB11 4NT,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Feb 2024,C - 69 to 80,71.0,B - 81 to 91,85.0,BB114NT,100010354039.0,14 Richmond Street,0.4754 -13859,380325,49 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112648.0,49 Kinross Street,0.4705 -13860,380327,40 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112663.0,40 Kinross Street,0.4705 -13861,380332,50 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112668.0,50 Kinross Street,0.4705 -13862,380324,51 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112649.0,51 Kinross Street,0.4705 -13863,380333,52 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112669.0,52 Kinross Street,0.4705 -13864,380321,55 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112651.0,55 Kinross Street,0.4705 -13865,380336,58 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112672.0,58 Kinross Street,0.4705 -13866,380337,60 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112673.0,60 Kinross Street,0.4705 -13867,380339,64 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112675.0,64 Kinross Street,0.4705 -13868,380340,66 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112676.0,66 Kinross Street,0.4705 -13869,380341,68 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112677.0,68 Kinross Street,0.4705 -13870,380326,47A Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112660.0,47a Kinross Street,0.5265 -13871,380322,53A Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112661.0,53a Kinross Street,0.5265 -13872,380328,42 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112664.0,42 Kinross Street,0.4705 -13873,380329,44 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112665.0,44 Kinross Street,0.4705 -13874,380330,46 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112666.0,46 Kinross Street,0.4705 -13875,380331,48 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112667.0,48 Kinross Street,0.4705 -13876,380323,53 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112650.0,53 Kinross Street,0.4705 -13877,380334,54 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112670.0,54 Kinross Street,0.4705 -13878,380335,56 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112671.0,56 Kinross Street,0.4705 -13879,380338,62 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112674.0,62 Kinross Street,0.4705 -13880,380320,57 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,28 May 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112652.0,57 Kinross Street,0.4705 -2170,180998,71 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jun 2012,C - 69 to 80,72.0,B - 81 to 91,83.0,BB114DP,100010344974.0,"71, Kinross Street",0.4705 -7587,362599,1 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,85.0,BB114DP,100010344947.0,1 Kinross Street,0.4652 -7699,362606,3 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB114DP,100010344949.0,3 Kinross Street,0.4652 -7911,132671,7 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Aug 2024,D - 55 to 68,62.0,B - 81 to 91,87.0,BB114DP,100010344953.0,7 Kinross Street,0.4652 -7965,89816,8 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Jan 2010,D - 55 to 68,57.0,C - 69 to 80,73.0,BB114DP,100010344954.0,"8, Kinross Street",0.4652 -8012,41020,9 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Nov 2008,D - 55 to 68,59.0,C - 69 to 80,69.0,BB114DP,100010344955.0,"9, Kinross Street",0.4652 -8062,362628,10 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DP,100010344956.0,10 Kinross Street,0.4705 -8113,341260,11 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Oct 2021,D - 55 to 68,67.0,B - 81 to 91,82.0,BB114DP,100010344957.0,11 Kinross Street,0.4705 -8210,118350,13 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jan 2026,D - 55 to 68,68.0,B - 81 to 91,83.0,BB114DP,100010344959.0,13 Kinross Street,0.4705 -8474,89003,18 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2025,D - 55 to 68,64.0,C - 69 to 80,73.0,BB114DP,100010344962.0,18 Kinross Street,0.4705 -8713,89811,22 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,80.0,BB114DP,100010344964.0,22 Kinross Street,0.4705 -8834,362677,24 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,84.0,BB114DP,100010344966.0,24 Kinross Street,0.4705 -10900,99041,2 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2010,C - 69 to 80,75.0,C - 69 to 80,75.0,BB114DP,100010344948.0,"2, Kinross Street",0.4652 -10901,100549,6 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Sep 2010,C - 69 to 80,77.0,C - 69 to 80,77.0,BB114DP,100010344952.0,6 Kinross Street,0.4652 -12400,296596,27 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110211.0,"27, Kinross Street",0.4705 -12401,296598,29 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110212.0,"29, Kinross Street",0.4705 -12402,296600,31 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110213.0,"31, Kinross Street",0.4705 -12403,296602,33 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110214.0,"33, Kinross Street",0.4705 -12404,296604,35 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110215.0,"35, Kinross Street",0.4705 -12405,296606,37 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110216.0,"37, Kinross Street",0.4705 -12411,296631,19 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110207.0,"19, Kinross Street",0.4705 -12412,296629,21 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110208.0,"21, Kinross Street",0.4705 -12413,296627,23 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110209.0,"23, Kinross Street",0.4705 -12414,296625,25 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Feb 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110210.0,"25, Kinross Street",0.4705 -12415,316672,15 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Mar 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110205.0,"15, Kinross Street",0.4705 -12416,316673,17 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Mar 2018,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114DP,10094110206.0,"17, Kinross Street",0.4705 -12417,297571,39 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,Bungalow: Detached,Domestic EPC Required,EPC Present,14 Mar 2018,B - 81 to 91,83.0,A - 92 Plus,94.0,BB114DP,10094110217.0,"39, Kinross Street",0.4705 -13884,381269,47 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Sep 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112647.0,47 Kinross Street,0.4705 -13887,383258,45 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Oct 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DP,10094112646.0,45 Kinross Street,0.4705 -13888,382377,43 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Sep 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112645.0,43 Kinross Street,0.4705 -13889,382367,41A Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Sep 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112659.0,41a Kinross Street,0.5265 -13890,382347,41 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Sep 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DP,10094112644.0,41 Kinross Street,0.4705 -13894,382739,67 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,94.0,A - 92 Plus,96.0,BB114DP,10094112657.0,67 Kinross Street,0.4705 -13895,382625,82 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,93.0,A - 92 Plus,95.0,BB114DP,10094112684.0,82 Kinross Street,0.4705 -13896,382638,80 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: End Terrace,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,94.0,A - 92 Plus,95.0,BB114DP,10094112683.0,80 Kinross Street,0.4705 -13897,383189,65 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: End Terrace,Domestic EPC Required,EPC Present,12 Nov 2024,A - 92 Plus,94.0,A - 92 Plus,95.0,BB114DP,10094112656.0,65 Kinross Street,0.4705 -13898,383243,63 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Nov 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DP,10094112655.0,63 Kinross Street,0.4705 -13899,383233,61 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Nov 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112654.0,61 Kinross Street,0.4705 -13900,383164,59A Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112662.0,59a Kinross Street,0.5265 -13901,383176,59 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Dec 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112653.0,59 Kinross Street,0.4705 -13902,382618,70 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112678.0,70 Kinross Street,0.4705 -13903,382651,72 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112679.0,72 Kinross Street,0.4705 -13904,382664,74 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112680.0,74 Kinross Street,0.4705 -13905,382677,76 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112681.0,76 Kinross Street,0.4705 -13906,382690,78 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,96.0,A - 92 Plus,97.0,BB114DP,10094112682.0,78 Kinross Street,0.4705 -13907,382727,69 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,Bungalow: End Terr,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112658.0,69 Kinross Street,0.4705 -13908,382703,84 Kinross Street Burnley Lancashire BB11 4DP,,, BB11 4DP,Bungalow: End Terr,Domestic EPC Required,EPC Present,13 Nov 2024,A - 92 Plus,95.0,A - 92 Plus,96.0,BB114DP,10094112685.0,84 Kinross Street,0.4705 -438,103503,137 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,31 Jan 2022,C - 69 to 80,73.0,C - 69 to 80,78.0,BB104QQ,100010330932.0,137 Brownhill Avenue,0.4845 -538,40662,139 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,05 Aug 2021,C - 69 to 80,75.0,C - 69 to 80,75.0,BB104QQ,100010330934.0,139 Brownhill Avenue,0.4845 -1154,192280,151 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Mar 2016,C - 69 to 80,74.0,B - 81 to 91,87.0,BB104QQ,100010330942.0,"151, Brownhill Avenue",0.4845 -1370,247989,155 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,House: End Terrace,Domestic EPC Required,EPC Present,29 Mar 2016,D - 55 to 68,66.0,B - 81 to 91,83.0,BB104QQ,100010330945.0,"155, Brownhill Avenue",0.4845 -1478,247990,157 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,House: End Terrace,Domestic EPC Required,EPC Present,20 Oct 2025,C - 69 to 80,76.0,B - 81 to 91,81.0,BB104QQ,100010330947.0,157 Brownhill Avenue,0.4845 -1691,247992,161 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Apr 2016,C - 69 to 80,73.0,B - 81 to 91,90.0,BB104QQ,100010330951.0,"161, Brownhill Avenue",0.4845 -1801,247993,163 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Mar 2016,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104QQ,100010330953.0,"163, Brownhill Avenue",0.4845 -4960,362403,47 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104QQ,100010330849.0,47 Brownhill Avenue,0.4801 -5054,222430,49 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jun 2023,C - 69 to 80,73.0,C - 69 to 80,78.0,BB104QQ,100010330851.0,49 Brownhill Avenue,0.4801 -5163,222809,51 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB104QQ,100010330853.0,51 Brownhill Avenue,0.4801 -5271,362422,53 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB104QQ,100010330855.0,53 Brownhill Avenue,0.4801 -5388,223671,55 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,17 Apr 2014,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104QQ,100010330857.0,"55, Brownhill Avenue",0.4801 -5489,106950,57 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,08 Aug 2013,D - 55 to 68,62.0,C - 69 to 80,71.0,BB104QQ,100010330859.0,"57, Brownhill Avenue",0.4801 -5593,209238,59 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,30 Jul 2013,D - 55 to 68,63.0,D - 55 to 68,68.0,BB104QQ,100010330861.0,"59, Brownhill Avenue",0.4801 -5800,190991,63 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,30 Jul 2013,D - 55 to 68,65.0,D - 55 to 68,68.0,BB104QQ,100010330865.0,"63, Brownhill Avenue",0.4801 -5897,72918,65 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,31 Jul 2009,C - 69 to 80,71.0,C - 69 to 80,71.0,BB104QQ,100010330867.0,"65, Brownhill Avenue",0.4801 -5988,76905,67 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2025,C - 69 to 80,76.0,C - 69 to 80,78.0,BB104QQ,100010330869.0,67 Brownhill Avenue,0.4801 -6077,101310,69 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,20 Apr 2022,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104QQ,100010330871.0,69 Brownhill Avenue,0.4801 -7046,210918,89 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,13 Sep 2013,C - 69 to 80,69.0,C - 69 to 80,77.0,BB104QQ,100010330886.0,"89, Brownhill Avenue",0.4801 -7144,209260,91 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,02 Feb 2026,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104QQ,100010330888.0,"91, Brownhill Avenue",0.4801 -7251,100132,93 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,15 Sep 2010,C - 69 to 80,74.0,C - 69 to 80,78.0,BB104QQ,100010330890.0,"93, Brownhill Avenue",0.4801 -7350,190992,95 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,15 Oct 2012,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104QQ,100010330892.0,"95, Brownhill Avenue",0.4801 -8158,247016,111 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Mar 2016,C - 69 to 80,71.0,B - 81 to 91,89.0,BB104QQ,100010330907.0,"111, Brownhill Avenue",0.4845 -8470,252272,117 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,House: End Terrace,Domestic EPC Required,EPC Present,11 Jul 2016,C - 69 to 80,70.0,B - 81 to 91,88.0,BB104QQ,100010330912.0,"117, Brownhill Avenue",0.4845 -8942,362683,125 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,23 Oct 2025,C - 69 to 80,75.0,C - 69 to 80,79.0,BB104QQ,100010330920.0,125 Brownhill Avenue,0.4845 -9054,362690,127 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,78.0,BB104QQ,100010330922.0,127 Brownhill Avenue,0.4845 -9164,362696,129 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104QQ,100010330924.0,129 Brownhill Avenue,0.4845 -9283,89056,131 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Top,Domestic EPC Required,EPC Present,30 Oct 2009,C - 69 to 80,78.0,B - 81 to 91,83.0,BB104QQ,100010330926.0,"131, Brownhill Avenue",0.4845 -9401,69497,133 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,17 Jul 2009,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104QQ,100010330928.0,"133, Brownhill Avenue",0.4845 -9516,304939,135 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,Flat: Bottom,Domestic EPC Required,EPC Present,17 Apr 2019,C - 69 to 80,71.0,C - 69 to 80,75.0,BB104QQ,100010330930.0,"135, Brownhill Avenue",0.4845 -12649,302163,119 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Dec 2015,C - 69 to 80,70.0,B - 81 to 91,84.0,BB104QQ,100010330914.0,"119, Brownhill Avenue",0.4845 -12715,305391,167 Brownhill Avenue Burnley Lancashire BB10 4QQ,,, BB10 4QQ,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2025,D - 55 to 68,66.0,C - 69 to 80,70.0,BB104QQ,100010330957.0,167 Brownhill Avenue,0.4845 -442,228329,190 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Middle,Domestic EPC Required,EPC Present,10 Sep 2014,C - 69 to 80,74.0,C - 69 to 80,77.0,BB126AS,100010357612.0,"190, Sycamore Avenue",0.4801 -546,244899,192 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Bottom,Domestic EPC Required,EPC Present,28 Nov 2015,C - 69 to 80,71.0,C - 69 to 80,76.0,BB126AS,100010357613.0,"192, Sycamore Avenue",0.4801 -642,359922,194 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Bottom,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,75.0,C - 69 to 80,76.0,BB126AS,100010357615.0,194 Sycamore Avenue,0.4801 -737,362147,196 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Middle,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,80.0,C - 69 to 80,80.0,BB126AS,100010357617.0,196 Sycamore Avenue,0.4801 -842,362151,198 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Top,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB126AS,100010357619.0,198 Sycamore Avenue,0.4801 -937,252282,200 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Top,Domestic EPC Required,EPC Present,14 Jul 2016,D - 55 to 68,58.0,D - 55 to 68,67.0,BB126AS,100010357621.0,"200, Sycamore Avenue",0.4801 -1047,226983,202 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Middle,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,79.0,C - 69 to 80,79.0,BB126AS,100010357623.0,202 Sycamore Avenue,0.4801 -1161,40699,204 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Bottom,Domestic EPC Required,EPC Present,15 Nov 2008,C - 69 to 80,75.0,C - 69 to 80,80.0,BB126AS,100010357625.0,"204, Sycamore Avenue",0.4801 -1271,89043,206 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Bottom,Domestic EPC Required,EPC Present,27 Oct 2009,C - 69 to 80,69.0,C - 69 to 80,80.0,BB126AS,100010357627.0,"206, Sycamore Avenue",0.4801 -8264,111315,166 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Feb 2011,D - 55 to 68,64.0,C - 69 to 80,73.0,BB126AS,100010357590.0,"166, Sycamore Avenue",0.4801 -8950,244955,178 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Nov 2015,D - 55 to 68,57.0,C - 69 to 80,77.0,BB126AS,100010357602.0,"178, Sycamore Avenue",0.4801 -9174,112180,182 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,House: End Terrace,Domestic EPC Required,EPC Present,13 May 2011,D - 55 to 68,56.0,D - 55 to 68,61.0,BB126AS,100010357606.0,"182, Sycamore Avenue",0.4801 -9465,359735,187 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Apr 2023,D - 55 to 68,63.0,C - 69 to 80,76.0,BB126AS,100010357610.0,187 Sycamore Avenue,0.4801 -11685,237961,210 Sycamore Avenue Burnley Lancashire BB12 6AS,,, BB12 6AS,Flat: Top,Domestic EPC Required,EPC Present,16 Nov 2021,C - 69 to 80,71.0,C - 69 to 80,76.0,BB126AS,100010357631.0,210 Sycamore Avenue,0.4801 -443,362134,31 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: End Terrace,Domestic EPC Required,EPC Present,24 Jun 2022,C - 69 to 80,74.0,B - 81 to 91,89.0,BB115JX,100010359246.0,31 Venice Avenue,0.4652 -544,40664,33 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115JX,100010359248.0,33 Venice Avenue,0.4652 -591,40667,34 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,61.0,C - 69 to 80,71.0,BB115JX,100010359249.0,"34, Venice Avenue",0.4652 -744,40673,37 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Jan 2024,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115JX,100010359252.0,37 Venice Avenue,0.4652 -843,111156,39 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Jul 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB115JX,100010359254.0,39 Venice Avenue,0.4652 -889,362155,40 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115JX,100010359255.0,40 Venice Avenue,0.4652 -993,208551,42 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2025,D - 55 to 68,57.0,C - 69 to 80,77.0,BB115JX,100010359257.0,42 Venice Avenue,0.4652 -1110,40697,44 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115JX,100010359259.0,44 Venice Avenue,0.4652 -1434,229678,50 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Oct 2014,D - 55 to 68,64.0,B - 81 to 91,82.0,BB115JX,100010359265.0,"50, Venice Avenue",0.4652 -1545,76865,52 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Jul 2024,C - 69 to 80,74.0,B - 81 to 91,89.0,BB115JX,100010359267.0,52 Venice Avenue,0.4652 -7966,362623,1 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115JX,100010359218.0,1 Venice Avenue,0.4596 -8164,76864,5 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Jul 2021,C - 69 to 80,71.0,B - 81 to 91,89.0,BB115JX,100010359220.0,5 VENICE AVENUE,0.4596 -8262,362639,7 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115JX,100010359222.0,7 Venice Avenue,0.4596 -8367,110753,9 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Oct 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115JX,100010359224.0,9 Venice Avenue,0.4596 -8413,110760,10 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Sep 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB115JX,100010359225.0,10 Venice Avenue,0.4652 -8473,90143,11 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,81.0,BB115JX,100010359226.0,11 Venice Avenue,0.4652 -8523,241367,12 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Dec 2025,D - 55 to 68,64.0,C - 69 to 80,77.0,BB115JX,100010359227.0,12 Venice Avenue,0.4652 -8593,362659,13 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115JX,100010359228.0,13 Venice Avenue,0.4652 -8715,362669,15 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115JX,100010359230.0,15 Venice Avenue,0.4652 -8767,362674,16 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115JX,100010359231.0,16 Venice Avenue,0.4652 -8833,362676,17 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115JX,100010359232.0,17 Venice Avenue,0.4652 -8890,103763,18 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115JX,100010359233.0,18 Venice Avenue,0.4652 -8947,110823,19 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115JX,100010359234.0,19 Venice Avenue,0.4652 -9056,362691,21 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: End Terrace,Domestic EPC Required,EPC Present,04 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115JX,100010359236.0,21 Venice Avenue,0.4652 -9109,226300,22 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Nov 2025,C - 69 to 80,72.0,B - 81 to 91,84.0,BB115JX,100010359237.0,22 Venice Avenue,0.4652 -9407,197129,27 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2026,C - 69 to 80,75.0,B - 81 to 91,89.0,BB115JX,100010359242.0,"27, Venice Avenue",0.4652 -9459,76901,28 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Mar 2022,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115JX,100010359243.0,28 Venice Avenue,0.4652 -12805,324260,48 Venice Avenue Burnley Lancashire BB11 5JX,,, BB11 5JX,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,65.0,C - 69 to 80,75.0,BB115JX,100010359263.0,"48, Venice Avenue",0.4652 -447,248672,231 Brunshaw Road Burnley Lancashire BB10 4DW,,, BB10 4DW,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Apr 2016,D - 55 to 68,64.0,B - 81 to 91,91.0,BB104DW,100010331575.0,"231, Brunshaw Road",0.4705 -9295,248669,225 Brunshaw Road Burnley Lancashire BB10 4DW,,, BB10 4DW,Bungalow: End Terr,Domestic EPC Required,EPC Present,17 Dec 2025,C - 69 to 80,69.0,C - 69 to 80,77.0,BB104DW,100010331572.0,225 Brunshaw Road,0.4705 -9409,248670,227 Brunshaw Road Burnley Lancashire BB10 4DW,,, BB10 4DW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Sep 2021,C - 69 to 80,69.0,A - 92 Plus,92.0,BB104DW,100010331573.0,227 Brunshaw Road,0.4705 -9520,248671,229 Brunshaw Road Burnley Lancashire BB10 4DW,,, BB10 4DW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Apr 2016,D - 55 to 68,66.0,A - 92 Plus,92.0,BB104DW,100010331574.0,"229, Brunshaw Road",0.4705 -449,236213,40 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,28 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104AX,10003780147.0,40 Anne Close,0.4471 -497,194020,41 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,07 Jul 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104AX,10003780119.0,41 Anne Close,0.4471 -551,322688,42 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,23 Sep 2019,C - 69 to 80,78.0,C - 69 to 80,80.0,BB104AX,10003780148.0,"42, Anne Close",0.4471 -598,205802,43 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,28 Oct 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB104AX,10003780120.0,43 Anne Close,0.4471 -649,76759,44 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,05 Aug 2009,B - 81 to 91,81.0,B - 81 to 91,84.0,BB104AX,10003780149.0,"44, Anne Close",0.4471 -696,40672,45 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB104AX,10003780121.0,45 Anne Close,0.4471 -799,187730,47 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,27 Oct 2025,C - 69 to 80,76.0,C - 69 to 80,78.0,BB104AX,10003780122.0,47 Anne Close,0.4471 -848,322692,48 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,23 Sep 2019,C - 69 to 80,77.0,C - 69 to 80,78.0,BB104AX,10003780151.0,"48, Anne Close",0.4471 -897,235519,49 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,27 Oct 2025,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104AX,10003780123.0,49 Anne Close,0.4471 -946,322691,50 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,23 Sep 2019,C - 69 to 80,76.0,C - 69 to 80,79.0,BB104AX,10003780152.0,"50, Anne Close",0.4471 -1056,323196,52 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,01 Oct 2019,C - 69 to 80,75.0,C - 69 to 80,79.0,BB104AX,10003780153.0,"52, Anne Close",0.4471 -1167,190795,54 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,25 Oct 2012,C - 69 to 80,75.0,C - 69 to 80,79.0,BB104AX,10003780154.0,"54, Anne Close",0.4471 -1225,236529,55 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,27 Oct 2025,C - 69 to 80,75.0,C - 69 to 80,75.0,BB104AX,10003780126.0,55 Anne Close,0.4471 -1275,136667,56 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,21 Feb 2012,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104AX,10003780155.0,"56, Anne Close",0.4471 -1336,181488,57 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,28 Oct 2025,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104AX,10003780127.0,57 Anne Close,0.4471 -1381,362180,58 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,25 Sep 2019,C - 69 to 80,76.0,C - 69 to 80,79.0,BB104AX,10003780156.0,"58, Anne Close",0.4471 -1492,197120,60 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,05 Oct 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB104AX,10003780157.0,60 Anne Close,0.4471 -1549,245314,61 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,15 Dec 2015,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104AX,10003780129.0,"61, Anne Close",0.4471 -1599,89048,62 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,08 Jun 2021,C - 69 to 80,77.0,C - 69 to 80,79.0,BB104AX,10003780158.0,62 ANNE CLOSE,0.4471 -1702,223041,64 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,29 Oct 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104AX,10003780159.0,64 Anne Close,0.4471 -7545,197130,2 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,73.0,BB104AX,10003780130.0,2 Anne Close,0.4401 -7650,107911,4 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,03 Mar 2011,B - 81 to 91,81.0,B - 81 to 91,84.0,BB104AX,10003780131.0,"4, Anne Close",0.4401 -7758,41006,6 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,04 Sep 2024,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104AX,10003780132.0,6 Anne Close,0.4401 -7809,322653,7 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,77.0,C - 69 to 80,80.0,BB104AX,10003780104.0,"7, Anne Close",0.4401 -7867,114098,8 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104AX,10003780133.0,8 Anne Close,0.4401 -7971,250425,10 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,24 May 2016,C - 69 to 80,73.0,C - 69 to 80,78.0,BB104AX,10003780134.0,"10, Anne Close",0.4471 -8068,322645,12 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,78.0,C - 69 to 80,80.0,BB104AX,10003780135.0,"12, Anne Close",0.4471 -8169,137011,14 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,05 Nov 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104AX,10003780136.0,14 Anne Close,0.4471 -8268,322709,16 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,25 Sep 2019,C - 69 to 80,75.0,C - 69 to 80,79.0,BB104AX,10003781962.0,"16, Anne Close",0.4471 -8370,102915,18 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,18 May 2023,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104AX,10003780181.0,18 Anne Close,0.4471 -8480,322648,20 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,78.0,C - 69 to 80,80.0,BB104AX,10003780137.0,"20, Anne Close",0.4471 -8534,362656,21 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB104AX,10003780110.0,21 Anne Close,0.4471 -8601,191034,22 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,23 Jun 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB104AX,10003780138.0,22 Anne Close,0.4471 -8656,88997,23 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,75.0,BB104AX,10003780111.0,23 Anne Close,0.4471 -8721,112962,24 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,75.0,BB104AX,10003780139.0,24 Anne Close,0.4471 -8840,41050,26 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,73.0,B - 81 to 91,75.0,BB104AX,10003780140.0,26 Anne Close,0.4471 -8895,220608,27 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,74.0,BB104AX,10003781963.0,27 Anne Close,0.4471 -8953,41056,28 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,75.0,BB104AX,10003780141.0,28 Anne Close,0.4471 -9005,322689,29 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,23 Sep 2019,C - 69 to 80,79.0,C - 69 to 80,79.0,BB104AX,10003780113.0,"29, Anne Close",0.4471 -9064,41061,30 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,80.0,BB104AX,10003780142.0,30 Anne Close,0.4471 -9120,90201,31 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,08 Jul 2023,C - 69 to 80,73.0,C - 69 to 80,75.0,BB104AX,10003780114.0,31 Anne Close,0.4471 -9184,225151,32 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,10 Dec 2025,C - 69 to 80,71.0,C - 69 to 80,71.0,BB104AX,10003780143.0,32 Anne Close,0.4471 -9240,223040,33 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,02 Nov 2025,C - 69 to 80,75.0,C - 69 to 80,76.0,BB104AX,10003780115.0,33 Anne Close,0.4471 -9302,322650,34 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,78.0,C - 69 to 80,80.0,BB104AX,10003780144.0,"34, Anne Close",0.4471 -9359,322649,35 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,77.0,C - 69 to 80,80.0,BB104AX,10003780116.0,"35, Anne Close",0.4471 -9472,322651,37 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,76.0,C - 69 to 80,79.0,BB104AX,10003780117.0,"37, Anne Close",0.4471 -9526,94888,38 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,03 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,75.0,BB104AX,10003780146.0,38 Anne Close,0.4471 -9571,41080,39 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Bottom,Domestic EPC Required,EPC Present,05 Nov 2025,C - 69 to 80,77.0,B - 81 to 91,78.0,BB104AX,10003780118.0,39 Anne Close,0.4471 -13760,360113,17 Anne Close Burnley Lancashire BB10 4AX,,, BB10 4AX,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,76.0,C - 69 to 80,79.0,BB104AX,10003780108.0,"17, Anne Close",0.4471 -456,101656,39 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: End Terr,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB104NL,10003780948.0,39 Stoneyhurst Avenue,0.4886 -558,105761,41 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB104NL,10003780949.0,41 Stoneyhurst Avenue,0.4886 -660,126395,43 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: End Terr,Domestic EPC Required,EPC Present,14 Dec 2011,D - 55 to 68,56.0,D - 55 to 68,61.0,BB104NL,10003780950.0,"43, Stoneyhurst Avenue",0.4886 -758,241675,45 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Sep 2015,D - 55 to 68,65.0,B - 81 to 91,85.0,BB104NL,10003780951.0,"45, Stoneyhurst Avenue",0.4886 -855,40677,47 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Jan 2024,C - 69 to 80,71.0,B - 81 to 91,91.0,BB104NL,10003780952.0,47 Stoneyhurst Avenue,0.4886 -954,248952,49 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,80.0,BB104NL,10003780953.0,49 Stoneyhurst Avenue,0.4886 -1064,232674,51 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Nov 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB104NL,10003780954.0,51 Stoneyhurst Avenue,0.4886 -1172,111261,53 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Nov 2025,D - 55 to 68,68.0,C - 69 to 80,77.0,BB104NL,10003780955.0,53 Stoneyhurst Avenue,0.4886 -1394,323334,57 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,71.0,B - 81 to 91,90.0,BB104NL,10003780957.0,"57, Stoneyhurst Avenue",0.4886 -1555,323327,60 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104NL,10003780962.0,"60, Stoneyhurst Avenue",0.4886 -1765,323328,64 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Top,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104NL,10003780964.0,"64, Stoneyhurst Avenue",0.4886 -1879,253480,66 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Top,Domestic EPC Required,EPC Present,19 Sep 2016,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104NL,10003780965.0,"66, Stoneyhurst Avenue",0.4886 -1978,198890,68 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,02 Feb 2026,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104NL,10003780966.0,"68, Stoneyhurst Avenue",0.4886 -2078,191033,70 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,06 Feb 2023,C - 69 to 80,73.0,C - 69 to 80,75.0,BB104NL,10003780967.0,70 Stoneyhurst Avenue,0.4886 -2174,323326,72 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Top,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104NL,10003780968.0,"72, Stoneyhurst Avenue",0.4886 -2273,90135,74 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Top,Domestic EPC Required,EPC Present,29 Jan 2010,B - 81 to 91,81.0,B - 81 to 91,82.0,BB104NL,10003780969.0,"74, Stoneyhurst Avenue",0.4886 -2368,244458,76 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,26 Nov 2015,C - 69 to 80,71.0,C - 69 to 80,78.0,BB104NL,10003780970.0,"76, Stoneyhurst Avenue",0.4886 -2570,190797,80 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Top,Domestic EPC Required,EPC Present,26 Oct 2012,C - 69 to 80,74.0,C - 69 to 80,75.0,BB104NL,10003780972.0,"80, Stoneyhurst Avenue",0.4886 -2670,323333,82 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Top,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,74.0,C - 69 to 80,75.0,BB104NL,10003780973.0,"82, Stoneyhurst Avenue",0.4886 -2766,116226,84 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,03 Aug 2011,C - 69 to 80,70.0,C - 69 to 80,73.0,BB104NL,10003780974.0,"84, Stoneyhurst Avenue",0.4886 -2867,40781,86 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,02 Mar 2026,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104NL,10003780975.0,"86, Stoneyhurst Avenue",0.4886 -2967,323329,88 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Top,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104NL,10003780976.0,"88, Stoneyhurst Avenue",0.4886 -3064,323332,90 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Top,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104NL,10003780977.0,"90, Stoneyhurst Avenue",0.4886 -3159,95849,92 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,02 Jun 2026,D - 55 to 68,64.0,C - 69 to 80,73.0,BB104NL,10003780978.0,"92, Stoneyhurst Avenue",0.4886 -3256,323331,94 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104NL,10003780979.0,"94, Stoneyhurst Avenue",0.4886 -3356,323330,96 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Top,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104NL,10003780980.0,"96, Stoneyhurst Avenue",0.4886 -7550,274694,1 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,House: End Terrace,Domestic EPC Required,EPC Present,12 Jun 2017,D - 55 to 68,67.0,B - 81 to 91,87.0,BB104NL,10003780943.0,"1, Stoneyhurst Avenue",0.4845 -7714,116271,4 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2025,D - 55 to 68,65.0,C - 69 to 80,76.0,BB104NL,10003780958.0,4 Stoneyhurst Avenue,0.4845 -7929,362620,8 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB104NL,10003780959.0,8 Stoneyhurst Avenue,0.4845 -8790,323335,24 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Oct 2019,C - 69 to 80,72.0,B - 81 to 91,85.0,BB104NL,10003780961.0,"24, Stoneyhurst Avenue",0.4886 -13607,355272,55 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Sep 2022,C - 69 to 80,73.0,A - 92 Plus,93.0,BB104NL,10003780956.0,55 Stoneyhurst Avenue,0.4886 -13759,360056,78 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,18 May 2023,C - 69 to 80,72.0,C - 69 to 80,74.0,BB104NL,10003780971.0,78 Stoneyhurst Avenue,0.4886 -13778,368877,62 Stoneyhurst Avenue Burnley Lancashire BB10 4NL,,, BB10 4NL,Flat: Bottom,Domestic EPC Required,EPC Present,19 Aug 2023,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104NL,10003780963.0,62 Stoneyhurst Avenue,0.4886 -458,271904,12 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Feb 2017,C - 69 to 80,71.0,B - 81 to 91,88.0,BB127EA,100010355109.0,"12, Rutland Place, Padiham",0.6185 -509,104051,13 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Nov 2010,D - 55 to 68,64.0,C - 69 to 80,77.0,BB127EA,100010355110.0,"13, Rutland Place, Padiham",0.6185 -562,104052,14 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Oct 2025,D - 55 to 68,62.0,C - 69 to 80,73.0,BB127EA,100010355111.0,"14 Rutland Place, Padiham",0.6185 -609,362142,15 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: End Terrace,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB127EA,100010355112.0,"15 Rutland Place, Padiham",0.6185 -9024,362686,1 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: End Terrace,Domestic EPC Required,EPC Present,11 Feb 2022,D - 55 to 68,66.0,B - 81 to 91,86.0,BB127EA,100010355098.0,"1 Rutland Place, Padiham",0.6154 -9075,95506,2 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: End Terrace,Domestic EPC Required,EPC Present,06 Feb 2019,D - 55 to 68,60.0,B - 81 to 91,81.0,BB127EA,100010355099.0,"2, Rutland Place, Padiham",0.6154 -9134,90188,3 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Feb 2010,C - 69 to 80,70.0,C - 69 to 80,74.0,BB127EA,100010355100.0,"3, Rutland Place, Padiham",0.6154 -9195,95504,4 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Dec 2010,D - 55 to 68,65.0,C - 69 to 80,77.0,BB127EA,100010355101.0,"4, Rutland Place, Padiham",0.6154 -9251,76884,5 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Aug 2009,C - 69 to 80,70.0,C - 69 to 80,74.0,BB127EA,100010355102.0,"5, Rutland Place, Padiham",0.6154 -9427,362709,8 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: End Terrace,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127EA,100010355105.0,"8 Rutland Place, Padiham",0.6154 -9479,253507,9 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: End Terrace,Domestic EPC Required,EPC Present,22 Sep 2016,C - 69 to 80,71.0,B - 81 to 91,86.0,BB127EA,100010355106.0,"9, Rutland Place, Padiham",0.6154 -9532,204821,10 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: End Terrace,Domestic EPC Required,EPC Present,06 May 2013,D - 55 to 68,65.0,B - 81 to 91,82.0,BB127EA,100010355107.0,"10, Rutland Place, Padiham",0.6185 -9584,250516,11 Rutland Place Padiham Lancashire BB12 7EA,,, BB12 7EA,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Jun 2016,C - 69 to 80,71.0,B - 81 to 91,88.0,BB127EA,100010355108.0,"11, Rutland Place, Padiham",0.6185 -462,110736,8 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Jul 2021,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115LG,100010348046.0,8 MARINE AVENUE,0.4596 -513,110751,9 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Jul 2021,C - 69 to 80,72.0,B - 81 to 91,89.0,BB115LG,100010348047.0,9 MARINE AVENUE,0.4596 -566,110757,10 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,66.0,C - 69 to 80,75.0,BB115LG,100010348048.0,"10, Marine Avenue",0.4652 -614,362144,11 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115LG,100010348049.0,11 Marine Avenue,0.4652 -665,110775,12 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115LG,100010348050.0,12 Marine Avenue,0.4652 -712,125269,13 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Dec 2011,D - 55 to 68,64.0,D - 55 to 68,67.0,BB115LG,100010348051.0,"13, Marine Avenue",0.4652 -764,40674,14 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Sep 2024,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115LG,100010348052.0,14 Marine Avenue,0.4652 -861,76960,16 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jun 2025,C - 69 to 80,72.0,C - 69 to 80,78.0,BB115LG,100010348054.0,16 Marine Avenue,0.4652 -913,102920,17 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Feb 2011,D - 55 to 68,65.0,C - 69 to 80,74.0,BB115LG,100010348055.0,"17, Marine Avenue",0.4652 -965,125270,18 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Jul 2025,C - 69 to 80,70.0,C - 69 to 80,80.0,BB115LG,100010348056.0,18 Marine Avenue,0.4652 -1018,110820,19 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Aug 2011,D - 55 to 68,68.0,D - 55 to 68,68.0,BB115LG,100010348057.0,"19, Marine Avenue",0.4652 -1076,110828,20 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Feb 2011,D - 55 to 68,56.0,C - 69 to 80,74.0,BB115LG,100010348058.0,"20, Marine Avenue",0.4652 -1130,110832,21 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Feb 2022,C - 69 to 80,72.0,B - 81 to 91,89.0,BB115LG,100010348059.0,21 Marine Avenue,0.4652 -1186,228726,22 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Nov 2025,C - 69 to 80,71.0,B - 81 to 91,85.0,BB115LG,100010348060.0,22 Marine Avenue,0.4652 -1238,40701,23 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,64.0,C - 69 to 80,74.0,BB115LG,100010348061.0,"23, Marine Avenue",0.4652 -1295,105926,24 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Jul 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115LG,100010348062.0,24 Marine Avenue,0.4652 -1347,110877,25 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,65.0,C - 69 to 80,75.0,BB115LG,100010348063.0,"25, Marine Avenue",0.4652 -1402,105081,26 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: End Terrace,Domestic EPC Required,EPC Present,24 Dec 2010,D - 55 to 68,63.0,C - 69 to 80,76.0,BB115LG,100010348064.0,"26, Marine Avenue",0.4652 -1454,250072,27 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,12 May 2016,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115LG,100010348065.0,"27, Marine Avenue",0.4652 -1510,110886,28 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LG,100010348066.0,28 Marine Avenue,0.4652 -1563,40724,29 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Nov 2025,D - 55 to 68,66.0,B - 81 to 91,81.0,BB115LG,100010348067.0,29 Marine Avenue,0.4652 -1669,110903,31 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,67.0,C - 69 to 80,74.0,BB115LG,100010348069.0,"31, Marine Avenue",0.4652 -1775,302202,33 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jan 2019,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115LG,100010348071.0,"33, Marine Avenue",0.4652 -1830,110921,34 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Dec 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115LG,100010348072.0,34 Marine Avenue,0.4652 -1885,208552,35 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Jul 2013,D - 55 to 68,68.0,B - 81 to 91,87.0,BB115LG,100010348073.0,"35, Marine Avenue",0.4652 -2189,76809,41 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115LG,100010348076.0,41 Marine Avenue,0.4652 -2285,107638,43 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: End Terrace,Domestic EPC Required,EPC Present,22 Feb 2011,D - 55 to 68,66.0,C - 69 to 80,70.0,BB115LG,100010348077.0,"43, Marine Avenue",0.4652 -9255,41067,1 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Jun 2021,C - 69 to 80,72.0,B - 81 to 91,89.0,BB115LG,100010348039.0,1 MARINE AVENUE,0.4596 -9316,41074,2 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115LG,100010348040.0,2 Marine Avenue,0.4596 -9372,41076,3 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,70.0,B - 81 to 91,87.0,BB115LG,100010348041.0,3 Marine Avenue,0.4596 -9432,110670,4 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jun 2024,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115LG,100010348042.0,4 Marine Avenue,0.4596 -9483,110677,5 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Dec 2010,D - 55 to 68,62.0,C - 69 to 80,75.0,BB115LG,100010348043.0,"5, Marine Avenue",0.4596 -9537,107646,6 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,64.0,C - 69 to 80,72.0,BB115LG,100010348044.0,"6, Marine Avenue",0.4596 -9587,362715,7 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115LG,100010348045.0,7 Marine Avenue,0.4596 -9703,250555,37 Marine Avenue Burnley Lancashire BB11 5LG,,, BB11 5LG,House: End Terrace,Domestic EPC Required,EPC Present,08 Jun 2016,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115LG,100010348074.0,"37, Marine Avenue",0.4652 -3812,362333,2 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: End Terrace,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB128TD,100010361482.0,"2 Wordsworth Avenue, Padiham",0.6268 -3910,95007,4 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,71.0,B - 81 to 91,86.0,BB128TD,100010361484.0,"4, Wordsworth Avenue, Padiham",0.6268 -4018,220697,6 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Dec 2013,C - 69 to 80,71.0,B - 81 to 91,87.0,BB128TD,100010361486.0,"6, Wordsworth Avenue, Padiham",0.6268 -4073,362345,7 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB128TD,100010361487.0,"7 Wordsworth Avenue, Padiham",0.6268 -4124,362351,8 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB128TD,100010361488.0,"8 Wordsworth Avenue, Padiham",0.6268 -4181,362355,9 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB128TD,100010361489.0,"9 Wordsworth Avenue, Padiham",0.6268 -4295,223070,11 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: End Terrace,Domestic EPC Required,EPC Present,02 Apr 2014,C - 69 to 80,69.0,B - 81 to 91,85.0,BB128TD,100010361491.0,"11, Wordsworth Avenue, Padiham",0.6293 -4900,99552,22 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Sep 2010,C - 69 to 80,72.0,C - 69 to 80,74.0,BB128TD,100010361502.0,"22, Wordsworth Avenue, Padiham",0.6293 -5192,362415,28 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB128TD,100010361506.0,"28 Wordsworth Avenue, Padiham",0.6293 -13565,352243,12 Wordsworth Avenue Padiham Lancashire BB12 8TD,,, BB12 8TD,House: End Terrace,Domestic EPC Required,EPC Present,03 Aug 2021,D - 55 to 68,62.0,B - 81 to 91,82.0,BB128TD,100010361492.0,"12 WORDSWORTH AVENUE, PADIHAM",0.6293 -3848,69675,169 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Jul 2009,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104NQ,100010331394.0,"169, Brunshaw Avenue",0.4801 -3944,252271,171 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Jul 2016,C - 69 to 80,72.0,B - 81 to 91,89.0,BB104NQ,100010331396.0,"171, Brunshaw Avenue",0.4801 -4054,267810,173 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: End Terrace,Domestic EPC Required,EPC Present,08 Nov 2016,D - 55 to 68,64.0,B - 81 to 91,83.0,BB104NQ,100010331398.0,"173, Brunshaw Avenue",0.4801 -4842,362396,187 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: End Terrace,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB104NQ,100010331411.0,187 Brunshaw Avenue,0.4801 -4887,362397,188 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,74.0,B - 81 to 91,87.0,BB104NQ,100010331412.0,188 Brunshaw Avenue,0.4801 -4927,101314,189 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Oct 2010,C - 69 to 80,75.0,C - 69 to 80,79.0,BB104NQ,100010331413.0,"189, Brunshaw Avenue",0.4801 -5399,247945,198 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Mar 2016,D - 55 to 68,68.0,B - 81 to 91,91.0,BB104NQ,100010331421.0,"198, Brunshaw Avenue",0.4801 -5717,112887,204 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Jul 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB104NQ,100010331427.0,204 Brunshaw Avenue,0.4801 -5860,323676,207 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Oct 2019,C - 69 to 80,74.0,B - 81 to 91,88.0,BB104NQ,100010331430.0,"207, Brunshaw Avenue",0.4801 -6139,362489,213 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB104NQ,100010331435.0,213 Brunshaw Avenue,0.4801 -6274,250502,216 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Jun 2016,D - 55 to 68,67.0,B - 81 to 91,89.0,BB104NQ,100010331438.0,"216, Brunshaw Avenue",0.4801 -6366,323677,218 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: End Terrace,Domestic EPC Required,EPC Present,16 Oct 2019,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104NQ,100010331440.0,"218, Brunshaw Avenue",0.4801 -6418,323686,219 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Oct 2019,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104NQ,100010331441.0,"219, Brunshaw Avenue",0.4801 -6667,323678,224 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: End Terrace,Domestic EPC Required,EPC Present,16 Oct 2019,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104NQ,100010331446.0,"224, Brunshaw Avenue",0.4801 -6963,362553,230 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB104NQ,100010331451.0,230 Brunshaw Avenue,0.4801 -7161,187321,234 Brunshaw Avenue Burnley Lancashire BB10 4NQ,,, BB10 4NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Feb 2026,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104NQ,100010331455.0,"234, Brunshaw Avenue",0.4801 -3927,193904,2 Verona Avenue Burnley Lancashire BB11 5LP,,, BB11 5LP,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2025,D - 55 to 68,68.0,B - 81 to 91,82.0,BB115LP,100010359307.0,2 Verona Avenue,0.4596 -3953,362339,55 Barry Street Burnley Lancashire BB12 6DU,,, BB12 6DU,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB126DU,100010328419.0,55 Barry Street,0.4596 -4170,362353,59 Barry Street Burnley Lancashire BB12 6DU,,, BB12 6DU,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB126DU,100010328421.0,59 Barry Street,0.4596 -5029,188283,75 Barry Street Burnley Lancashire BB12 6DU,,, BB12 6DU,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Sep 2012,D - 55 to 68,65.0,B - 81 to 91,83.0,BB126DU,100010328429.0,"75, Barry Street",0.4596 -5132,94853,77 Barry Street Burnley Lancashire BB12 6DU,,, BB12 6DU,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Mar 2010,D - 55 to 68,66.0,C - 69 to 80,71.0,BB126DU,100010328430.0,"77, Barry Street",0.4596 -3958,362340,2 Berridge Avenue Burnley Lancashire BB12 6AW,,, BB12 6AW,House: End Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB126AW,100010328992.0,2 Berridge Avenue,0.4705 -4066,358893,4 Berridge Avenue Burnley Lancashire BB12 6AW,,, BB12 6AW,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Dec 2025,C - 69 to 80,73.0,B - 81 to 91,83.0,BB126AW,100010328993.0,4 Berridge Avenue,0.4705 -4413,144002,10 Berridge Avenue Burnley Lancashire BB12 6AW,,, BB12 6AW,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Apr 2012,C - 69 to 80,69.0,B - 81 to 91,88.0,BB126AW,100010328996.0,"10, Berridge Avenue",0.4754 -4529,362377,12 Berridge Avenue Burnley Lancashire BB12 6AW,,, BB12 6AW,House: End Terrace,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB126AW,100010328997.0,12 Berridge Avenue,0.4754 -4854,222017,18 Berridge Avenue Burnley Lancashire BB12 6AW,,, BB12 6AW,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,66.0,C - 69 to 80,72.0,BB126AW,100010329000.0,18 Berridge Avenue,0.4754 -5036,89039,22 Berridge Avenue Burnley Lancashire BB12 6AW,,, BB12 6AW,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Oct 2009,C - 69 to 80,72.0,C - 69 to 80,73.0,BB126AW,100010329002.0,"22, Berridge Avenue",0.4754 -3970,40833,2 Mitton Grove Burnley Lancashire BB10 4NY,,, BB10 4NY,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Feb 2026,D - 55 to 68,68.0,B - 81 to 91,82.0,BB104NY,100010349146.0,"2, Mitton Grove",0.4536 -4080,324691,4 Mitton Grove Burnley Lancashire BB10 4NY,,, BB10 4NY,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2019,C - 69 to 80,73.0,B - 81 to 91,89.0,BB104NY,100010349148.0,"4, Mitton Grove",0.4536 -4185,324690,6 Mitton Grove Burnley Lancashire BB10 4NY,,, BB10 4NY,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2019,C - 69 to 80,74.0,B - 81 to 91,89.0,BB104NY,100010349150.0,"6, Mitton Grove",0.4536 -4300,324689,8 Mitton Grove Burnley Lancashire BB10 4NY,,, BB10 4NY,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2019,C - 69 to 80,73.0,B - 81 to 91,89.0,BB104NY,100010349152.0,"8, Mitton Grove",0.4536 -3987,359933,1 Griffin Close Burnley Lancashire BB11 5SD,,, BB11 5SD,Bungalow: End Terr,Domestic EPC Required,EPC Present,12 May 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB115SD,100010340647.0,1 Griffin Close,0.4596 -4095,244963,3 Griffin Close Burnley Lancashire BB11 5SD,,, BB11 5SD,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,71.0,C - 69 to 80,79.0,BB115SD,100010340648.0,3 Griffin Close,0.4596 -4202,40843,5 Griffin Close Burnley Lancashire BB11 5SD,,, BB11 5SD,Flat: Bottom,Domestic EPC Required,EPC Present,02 Mar 2009,C - 69 to 80,78.0,C - 69 to 80,80.0,BB115SD,100012537825.0,"5, Griffin Close",0.4596 -4312,362363,7 Griffin Close Burnley Lancashire BB11 5SD,,, BB11 5SD,Flat: Top,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB115SD,100012537826.0,7 Griffin Close,0.4596 -4433,362373,9 Griffin Close Burnley Lancashire BB11 5SD,,, BB11 5SD,Flat: Top,Domestic EPC Required,EPC Present,27 Apr 2022,C - 69 to 80,75.0,C - 69 to 80,78.0,BB115SD,100012537827.0,9 Griffin Close,0.4596 -12996,341706,11 Griffin Close Burnley Lancashire BB11 5SD,,, BB11 5SD,Flat: Bottom,Domestic EPC Required,EPC Present,07 Oct 2021,C - 69 to 80,73.0,C - 69 to 80,76.0,BB115SD,100012537824.0,11 Griffin Close,0.4652 -3990,300665,23 Lennox Street Worsthorne Burnley Lancashire BB10 3LY,,, BB10 3LY,House: End Terrace,Domestic EPC Required,EPC Present,14 Aug 2018,D - 55 to 68,57.0,B - 81 to 91,85.0,BB103LY,100010345882.0,"23, Lennox Street, Worsthorne",0.5555 -4014,240376,12 Bruce Street Burnley Lancashire BB11 4BL,,, BB11 4BL,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Aug 2015,D - 55 to 68,67.0,B - 81 to 91,89.0,BB114BL,100010331239.0,"12, Bruce Street",0.4596 -4228,362358,16 Bruce Street Burnley Lancashire BB11 4BL,,, BB11 4BL,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Jul 2023,D - 55 to 68,66.0,B - 81 to 91,84.0,BB114BL,100010331241.0,16 Bruce Street,0.4596 -4025,362343,32 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB128NP,100010339473.0,"32 Garden Street, Padiham",0.6185 -4130,204090,34 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jun 2025,C - 69 to 80,69.0,C - 69 to 80,76.0,BB128NP,100010339475.0,"34 Garden Street, Padiham",0.6185 -4237,225155,36 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,15 May 2014,C - 69 to 80,70.0,B - 81 to 91,87.0,BB128NP,100010339477.0,"36, Garden Street, Padiham",0.6185 -4360,226567,38 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Jul 2014,D - 55 to 68,66.0,B - 81 to 91,88.0,BB128NP,100010339479.0,"38, Garden Street, Padiham",0.6185 -4474,186374,40 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Jan 2026,D - 55 to 68,68.0,B - 81 to 91,83.0,BB128NP,100010339481.0,"40 Garden Street, Padiham",0.6185 -4593,40865,42 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2020,D - 55 to 68,66.0,C - 69 to 80,74.0,BB128NP,100010339483.0,"42 Garden Street, Padiham",0.6185 -4712,201436,44 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Apr 2013,C - 69 to 80,70.0,B - 81 to 91,88.0,BB128NP,100010339485.0,"44, Garden Street, Padiham",0.6185 -4905,362400,48 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB128NP,100010339489.0,"48 Garden Street, Padiham",0.6185 -4998,77014,50 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Oct 2009,D - 55 to 68,65.0,C - 69 to 80,70.0,BB128NP,100010339491.0,"50, Garden Street, Padiham",0.6185 -5095,76998,52 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Jan 2026,C - 69 to 80,69.0,C - 69 to 80,77.0,BB128NP,100010339493.0,"52 Garden Street, Padiham",0.6185 -5201,362416,54 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB128NP,100010339495.0,"54 Garden Street, Padiham",0.6185 -5260,210915,55 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: End Terrace,Domestic EPC Required,EPC Present,12 Sep 2013,D - 55 to 68,65.0,B - 81 to 91,83.0,BB128NP,100010339496.0,"55, Garden Street, Padiham",0.6185 -5312,40898,56 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Jan 2026,D - 55 to 68,61.0,B - 81 to 91,85.0,BB128NP,100010339497.0,"56 Garden Street, Padiham",0.6185 -5421,224364,58 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,06 May 2014,C - 69 to 80,70.0,B - 81 to 91,86.0,BB128NP,100010339499.0,"58, Garden Street, Padiham",0.6185 -5478,226568,59 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jul 2014,C - 69 to 80,70.0,B - 81 to 91,88.0,BB128NP,100010339500.0,"59, Garden Street, Padiham",0.6185 -5527,118888,60 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Nov 2025,C - 69 to 80,69.0,C - 69 to 80,76.0,BB128NP,100010339501.0,"60 Garden Street, Padiham",0.6185 -5629,338857,62 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Jun 2021,D - 55 to 68,59.0,B - 81 to 91,86.0,BB128NP,100010339503.0,"62 GARDEN STREET, PADIHAM",0.6185 -5686,211777,63 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Oct 2013,D - 55 to 68,58.0,C - 69 to 80,80.0,BB128NP,100010339504.0,"63, Garden Street, Padiham",0.6185 -5735,362456,64 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB128NP,100010339505.0,"64 Garden Street, Padiham",0.6185 -5789,40920,65 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Mar 2009,D - 55 to 68,56.0,C - 69 to 80,69.0,BB128NP,100010339506.0,"65, Garden Street, Padiham",0.6185 -5884,272782,67 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Mar 2017,D - 55 to 68,59.0,B - 81 to 91,84.0,BB128NP,100010339508.0,"67, Garden Street, Padiham",0.6185 -10983,111052,13 Garden Street Padiham Lancashire BB12 8NP,,, BB12 8NP,House: End Terrace,Domestic EPC Required,EPC Present,30 Nov 2009,E - 39 to 54,45.0,D - 55 to 68,60.0,BB128NP,200002826961.0,"13, Garden Street, Padiham",0.6185 -4026,250085,8 Turton Grove Burnley Lancashire BB10 4PZ,,, BB10 4PZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 May 2016,D - 55 to 68,68.0,B - 81 to 91,88.0,BB104PZ,100010359052.0,"8, Turton Grove",0.4536 -4240,250086,12 Turton Grove Burnley Lancashire BB10 4PZ,,, BB10 4PZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 May 2016,D - 55 to 68,68.0,B - 81 to 91,88.0,BB104PZ,100010359054.0,"12, Turton Grove",0.4596 -4027,324248,35 Slaidburn Avenue Burnley Lancashire BB10 4NZ,,, BB10 4NZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Nov 2019,D - 55 to 68,59.0,C - 69 to 80,75.0,BB104NZ,100010355981.0,"35, Slaidburn Avenue",0.4801 -4243,324249,39 Slaidburn Avenue Burnley Lancashire BB10 4NZ,,, BB10 4NZ,House: End Terrace,Domestic EPC Required,EPC Present,26 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB104NZ,100010355985.0,39 Slaidburn Avenue,0.4801 -4366,210254,41 Slaidburn Avenue Burnley Lancashire BB10 4NZ,,, BB10 4NZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Aug 2013,C - 69 to 80,73.0,B - 81 to 91,89.0,BB104NZ,100010355987.0,"41, Slaidburn Avenue",0.4801 -4484,323770,43 Slaidburn Avenue Burnley Lancashire BB10 4NZ,,, BB10 4NZ,House: End Terrace,Domestic EPC Required,EPC Present,07 Nov 2019,C - 69 to 80,71.0,B - 81 to 91,85.0,BB104NZ,100010355989.0,"43, Slaidburn Avenue",0.4801 -5050,324250,54 Slaidburn Avenue Burnley Lancashire BB10 4NZ,,, BB10 4NZ,House: End Terrace,Domestic EPC Required,EPC Present,11 Nov 2019,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104NZ,100010355998.0,"54, Slaidburn Avenue",0.4801 -5206,322646,57 Slaidburn Avenue Burnley Lancashire BB10 4NZ,,, BB10 4NZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,70.0,B - 81 to 91,89.0,BB104NZ,100010356001.0,"57, Slaidburn Avenue",0.4801 -4040,194690,7 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Jan 2013,D - 55 to 68,57.0,B - 81 to 91,84.0,BB126AA,100010348737.0,"7, Middlesex Avenue",0.4754 -4096,362346,8 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB126AA,100010348738.0,8 Middlesex Avenue,0.4754 -4258,226305,11 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: End Terrace,Domestic EPC Required,EPC Present,23 Jun 2014,D - 55 to 68,61.0,B - 81 to 91,87.0,BB126AA,100010348741.0,"11, Middlesex Avenue",0.4801 -4316,362364,12 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB126AA,100010348742.0,12 Middlesex Avenue,0.4801 -4374,362367,13 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB126AA,100010348743.0,13 Middlesex Avenue,0.4801 -4438,90193,14 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Feb 2010,D - 55 to 68,55.0,C - 69 to 80,71.0,BB126AA,100010348744.0,14 Middlesex Avenue,0.4801 -4670,222898,18 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Mar 2014,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126AA,100010348748.0,"18, Middlesex Avenue",0.4801 -4915,362401,23 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB126AA,100010348753.0,23 Middlesex Avenue,0.4801 -5011,222810,25 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Feb 2014,D - 55 to 68,63.0,B - 81 to 91,86.0,BB126AA,100010348755.0,"25, Middlesex Avenue",0.4801 -5217,362418,29 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB126AA,100010348759.0,29 Middlesex Avenue,0.4801 -5275,362423,30 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,88.0,BB126AA,100010348760.0,30 Middlesex Avenue,0.4801 -5490,116276,34 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Aug 2011,D - 55 to 68,60.0,C - 69 to 80,71.0,BB126AA,100010348764.0,"34, Middlesex Avenue",0.4801 -5900,103137,42 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Oct 2017,D - 55 to 68,59.0,B - 81 to 91,84.0,BB126AA,100010348771.0,"42, Middlesex Avenue",0.4801 -6079,272779,46 Middlesex Avenue Burnley Lancashire BB12 6AA,,, BB12 6AA,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2017,D - 55 to 68,58.0,B - 81 to 91,84.0,BB126AA,100010348773.0,"46, Middlesex Avenue",0.4801 -4092,193907,4 Peebles Grove Burnley Lancashire BB11 4ES,,, BB11 4ES,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Jan 2026,D - 55 to 68,63.0,C - 69 to 80,78.0,BB114ES,100010351821.0,4 Peebles Grove,0.4596 -4137,360353,4 Russell Terrace Padiham Lancashire BB12 7HB,,, BB12 7HB,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jun 2023,D - 55 to 68,60.0,C - 69 to 80,79.0,BB127HB,10003759595.0,"4 Russell Terrace, Padiham",0.6214 -6023,247058,40 Russell Terrace Padiham Lancashire BB12 7HB,,, BB12 7HB,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Mar 2016,D - 55 to 68,62.0,B - 81 to 91,86.0,BB127HB,10003759596.0,"40, Russell Terrace, Padiham",0.6242 -4176,197124,2 Colin Street Burnley Lancashire BB11 4BN,,, BB11 4BN,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Oct 2025,D - 55 to 68,63.0,B - 81 to 91,83.0,BB114BN,100010335316.0,2 Colin Street,0.4536 -4291,243006,4 Colin Street Burnley Lancashire BB11 4BN,,, BB11 4BN,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Oct 2015,D - 55 to 68,61.0,B - 81 to 91,86.0,BB114BN,100010335318.0,"4, Colin Street",0.4536 -4750,362392,12 Colin Street Burnley Lancashire BB11 4BN,,, BB11 4BN,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB114BN,100010335322.0,12 Colin Street,0.4596 -4851,359927,14 Colin Street Burnley Lancashire BB11 4BN,,, BB11 4BN,House: Semi-Detached,Domestic EPC Required,EPC Present,05 May 2023,D - 55 to 68,67.0,B - 81 to 91,82.0,BB114BN,100010335323.0,14 Colin Street,0.4596 -5134,342011,20 Colin Street Burnley Lancashire BB11 4BN,,, BB11 4BN,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Oct 2021,D - 55 to 68,63.0,B - 81 to 91,86.0,BB114BN,100010335326.0,20 Colin Street,0.4596 -4205,232689,1 Tennyson Avenue Padiham Lancashire BB12 8TE,,, BB12 8TE,House: End Terrace,Domestic EPC Required,EPC Present,18 Feb 2015,D - 55 to 68,63.0,B - 81 to 91,86.0,BB128TE,100010357946.0,"1, Tennyson Avenue, Padiham",0.6214 -4263,227755,2 Tennyson Avenue Padiham Lancashire BB12 8TE,,, BB12 8TE,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Aug 2014,D - 55 to 68,68.0,B - 81 to 91,85.0,BB128TE,100010357947.0,"2, Tennyson Avenue, Padiham",0.6214 -4558,40860,7 Tennyson Avenue Padiham Lancashire BB12 8TE,,, BB12 8TE,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,71.0,B - 81 to 91,86.0,BB128TE,100010357951.0,"7, Tennyson Avenue, Padiham",0.6214 -4676,362387,9 Tennyson Avenue Padiham Lancashire BB12 8TE,,, BB12 8TE,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2022,D - 55 to 68,66.0,B - 81 to 91,88.0,BB128TE,100010357952.0,"9 Tennyson Avenue, Padiham",0.6214 -4970,343113,15 Tennyson Avenue Padiham Lancashire BB12 8TE,,, BB12 8TE,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2021,D - 55 to 68,68.0,B - 81 to 91,89.0,BB128TE,100010357955.0,"15 Tennyson Avenue, Padiham",0.6242 -5060,362406,17 Tennyson Avenue Padiham Lancashire BB12 8TE,,, BB12 8TE,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB128TE,100010357956.0,"17 Tennyson Avenue, Padiham",0.6242 -13549,362891,5 Tennyson Avenue Padiham Lancashire BB12 8TE,,, BB12 8TE,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jun 2022,D - 55 to 68,59.0,C - 69 to 80,77.0,BB128TE,100010357950.0,"5 Tennyson Avenue, Padiham",0.6214 -4232,252173,1 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Top,Domestic EPC Required,EPC Present,14 Nov 2013,E - 39 to 54,49.0,C - 69 to 80,71.0,BB104LF,10003758895.0,"1, Wycoller Avenue",0.4705 -4287,192369,2 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Top,Domestic EPC Required,EPC Present,30 Nov 2012,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104LF,10003758905.0,"2, Wycoller Avenue",0.4705 -4341,89282,3 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Bottom,Domestic EPC Required,EPC Present,17 May 2021,C - 69 to 80,71.0,C - 69 to 80,76.0,BB104LF,10003758912.0,"3 WYCOLLER AVENUE, BURNLEY",0.6214 -4528,289895,6 Wycoller Avenue burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Bottom,Domestic EPC Required,EPC Present,21 Jul 2017,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104LF,10003758943.0,"6, Wycoller Avenue",0.4705 -4582,245845,7 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Top,Domestic EPC Required,EPC Present,02 Dec 2015,D - 55 to 68,66.0,C - 69 to 80,77.0,BB104LF,10003758954.0,"7, Wycoller Avenue",0.4705 -4642,95016,8 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Top,Domestic EPC Required,EPC Present,28 Jan 2026,C - 69 to 80,71.0,C - 69 to 80,76.0,BB104LF,10003758960.0,8 Wycoller Avenue,0.4705 -4697,362389,9 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Top,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104LF,10003758966.0,9 Wycoller Avenue,0.4705 -4751,108844,10 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Nov 2025,D - 55 to 68,67.0,B - 81 to 91,84.0,BB104LF,10003758896.0,10 Wycoller Avenue,0.4754 -4798,118275,11 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Bottom,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104LF,10003758898.0,11 Wycoller Avenue,0.4754 -4897,323690,13 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Bottom,Domestic EPC Required,EPC Present,17 Oct 2019,D - 55 to 68,67.0,C - 69 to 80,76.0,BB104LF,10003758900.0,13 Wycoller Avenue,0.4754 -5035,324374,16 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,73.0,B - 81 to 91,87.0,BB104LF,10003758902.0,"16, Wycoller Avenue",0.4754 -6011,40931,35 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Nov 2025,D - 55 to 68,61.0,C - 69 to 80,74.0,BB104LF,10003758918.0,35 Wycoller Avenue,0.4754 -6062,252214,36 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Apr 2010,D - 55 to 68,59.0,C - 69 to 80,72.0,BB104LF,10003758973.0,"36, Wycoller Avenue",0.4754 -6284,234409,41 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2015,D - 55 to 68,59.0,B - 81 to 91,86.0,BB104LF,10003758923.0,"41, Wycoller Avenue",0.4754 -6334,324375,42 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2019,D - 55 to 68,67.0,B - 81 to 91,86.0,BB104LF,10003758924.0,"42, Wycoller Avenue",0.4754 -6536,232314,46 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Jul 2025,C - 69 to 80,70.0,B - 81 to 91,81.0,BB104LF,10003758928.0,46 Wycoller Avenue,0.4754 -6876,211781,53 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: End Terrace,Domestic EPC Required,EPC Present,23 Oct 2013,D - 55 to 68,55.0,B - 81 to 91,83.0,BB104LF,10003758936.0,"53, Wycoller Avenue",0.4754 -6927,40966,54 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2026,D - 55 to 68,58.0,C - 69 to 80,77.0,BB104LF,10003758937.0,54 Wycoller Avenue,0.4754 -7028,98120,56 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Dec 2010,D - 55 to 68,62.0,D - 55 to 68,62.0,BB104LF,10003758939.0,"56, Wycoller Avenue",0.4754 -7371,324376,63 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104LF,10003758947.0,"63, Wycoller Avenue",0.4754 -7511,248689,66 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Apr 2016,D - 55 to 68,59.0,B - 81 to 91,84.0,BB104LF,10003758950.0,"66, Wycoller Avenue",0.4754 -7558,324377,67 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,72.0,B - 81 to 91,86.0,BB104LF,10003758951.0,"67, Wycoller Avenue",0.4754 -7612,324378,68 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: End Terrace,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,70.0,B - 81 to 91,85.0,BB104LF,,, -7723,324379,70 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: End Terrace,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,71.0,B - 81 to 91,86.0,BB104LF,10003758955.0,"70, Wycoller Avenue",0.4754 -7831,41014,72 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Mar 2026,D - 55 to 68,60.0,C - 69 to 80,79.0,BB104LF,10003758956.0,"72, Wycoller Avenue",0.4754 -8034,324380,76 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: End Terrace,Domestic EPC Required,EPC Present,14 Nov 2019,D - 55 to 68,68.0,B - 81 to 91,87.0,BB104LF,10003758958.0,"76, Wycoller Avenue",0.4754 -8237,180890,80 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Jun 2012,D - 55 to 68,65.0,B - 81 to 91,86.0,BB104LF,10003758961.0,"80, Wycoller Avenue",0.4754 -8441,190989,84 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Dec 2024,C - 69 to 80,73.0,B - 81 to 91,87.0,BB104LF,10003758963.0,84 Wycoller Avenue,0.4754 -9141,324382,96 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,72.0,B - 81 to 91,86.0,BB104LF,10003758974.0,"96, Wycoller Avenue",0.4754 -9374,324381,100 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104LF,10003758897.0,"100, Wycoller Avenue",0.4801 -9730,90140,4 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Bottom,Domestic EPC Required,EPC Present,31 May 2023,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104LF,10003758921.0,4 Wycoller Avenue,0.4705 -12978,329170,5 Wycoller Avenue Burnley Lancashire BB10 4LF,,, BB10 4LF,Flat: Bottom,Domestic EPC Required,EPC Present,16 Sep 2011,D - 55 to 68,63.0,C - 69 to 80,72.0,BB104LF,10003758932.0,"5, Wycoller Avenue",0.4705 -4236,362360,3 Albion Terrace Burnley Lancashire BB11 4QE,,, BB11 4QE,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 May 2024,D - 55 to 68,59.0,C - 69 to 80,72.0,BB114QE,10003781410.0,3 Albion Terrace,0.4652 -4309,295832,2 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Feb 2018,C - 69 to 80,74.0,B - 81 to 91,89.0,BB120JS,100010328511.0,"2, Beachley Square",0.4705 -4368,295829,3 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Feb 2018,C - 69 to 80,74.0,B - 81 to 91,90.0,BB120JS,100010328512.0,"3, Beachley Square",0.4705 -4769,163898,10 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,House: End Terrace,Domestic EPC Required,EPC Present,24 Apr 2012,D - 55 to 68,62.0,C - 69 to 80,80.0,BB120JS,100010328519.0,"10, Beachley Square",0.4754 -4818,205795,11 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Jun 2013,C - 69 to 80,70.0,B - 81 to 91,84.0,BB120JS,100010328520.0,"11, Beachley Square",0.4754 -5005,40885,15 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,House: End Terrace,Domestic EPC Required,EPC Present,19 Jun 2009,D - 55 to 68,60.0,D - 55 to 68,62.0,BB120JS,100010328524.0,"15, Beachley Square",0.4754 -5052,245743,16 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,Bungalow: End Terr,Domestic EPC Required,EPC Present,31 Oct 2025,B - 81 to 91,86.0,B - 81 to 91,88.0,BB120JS,100010328525.0,16 Beachley Square,0.4754 -5101,362409,17 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,27 Jun 2022,C - 69 to 80,72.0,A - 92 Plus,92.0,BB120JS,100010328526.0,17 Beachley Square,0.4754 -5157,245819,18 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,10 Nov 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB120JS,100010328527.0,"18, Beachley Square",0.4754 -5210,295834,19 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Feb 2018,C - 69 to 80,71.0,B - 81 to 91,91.0,BB120JS,100010328528.0,"19, Beachley Square",0.4754 -5270,95223,20 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,Bungalow: End Terr,Domestic EPC Required,EPC Present,12 May 2010,D - 55 to 68,68.0,C - 69 to 80,72.0,BB120JS,100010328529.0,"20, Beachley Square",0.4754 -5324,295835,21 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Feb 2018,C - 69 to 80,70.0,B - 81 to 91,89.0,BB120JS,100010328530.0,"21, Beachley Square",0.4754 -5382,295830,22 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,06 Feb 2018,C - 69 to 80,72.0,A - 92 Plus,92.0,BB120JS,100010328531.0,"22, Beachley Square",0.4754 -5432,295831,23 Beachley Square Burnley Lancashire BB12 0JS,,, BB12 0JS,Bungalow: End Terr,Domestic EPC Required,EPC Present,06 Feb 2018,C - 69 to 80,70.0,B - 81 to 91,90.0,BB120JS,100010328532.0,"23, Beachley Square",0.4754 -4315,252180,4 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,69.0,C - 69 to 80,76.0,BB103HD,100010338904.0,4 Fleetwood Road,0.4652 -4437,221647,6 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB103HD,100010338906.0,6 Fleetwood Road,0.4652 -4666,247011,10 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Mar 2016,C - 69 to 80,75.0,B - 81 to 91,88.0,BB103HD,100010338910.0,"10, Fleetwood Road",0.4705 -4873,40879,14 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Jun 2009,D - 55 to 68,66.0,C - 69 to 80,71.0,BB103HD,100010338914.0,"14, Fleetwood Road",0.4705 -5055,246390,18 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Feb 2016,C - 69 to 80,75.0,B - 81 to 91,89.0,BB103HD,100010338917.0,"18, Fleetwood Road",0.4705 -5159,252179,20 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jul 2013,D - 55 to 68,59.0,C - 69 to 80,72.0,BB103HD,100010338919.0,"20, Fleetwood Road",0.4705 -5216,40895,21 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,Flat: Bottom,Domestic EPC Required,EPC Present,22 Jun 2021,C - 69 to 80,71.0,C - 69 to 80,76.0,BB103HD,100010338920.0,21 FLEETWOOD ROAD,0.4705 -5330,295080,23 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,Flat: Bottom,Domestic EPC Required,EPC Present,25 Oct 2017,C - 69 to 80,71.0,C - 69 to 80,75.0,BB103HD,100010338922.0,"23, Fleetwood Road",0.4705 -5434,252263,25 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,Flat: Top,Domestic EPC Required,EPC Present,07 Jul 2016,C - 69 to 80,74.0,C - 69 to 80,77.0,BB103HD,100010338924.0,"25, Fleetwood Road",0.4705 -9635,251530,22 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Jun 2016,C - 69 to 80,74.0,B - 81 to 91,83.0,BB103HD,,, -9674,251532,24 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Jun 2016,C - 69 to 80,74.0,B - 81 to 91,83.0,BB103HD,,, -13590,353080,19 Fleetwood Road Burnley Lancashire BB10 3HD,,, BB10 3HD,Flat: Top,Domestic EPC Required,EPC Present,30 Aug 2022,C - 69 to 80,73.0,C - 69 to 80,73.0,BB103HD,100010338918.0,19 Fleetwood Road,0.4705 -4318,101564,1 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,15 Aug 2024,C - 69 to 80,75.0,C - 69 to 80,77.0,BB113AU,100010356307.0,1 Springfield Bank,0.4754 -4382,204088,2 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,79.0,C - 69 to 80,79.0,BB113AU,100010356308.0,2 Springfield Bank,0.4754 -4442,111259,3 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,77.0,BB113AU,100010356309.0,3 Springfield Bank,0.4754 -4498,252191,4 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,79.0,C - 69 to 80,79.0,BB113AU,100010356310.0,4 Springfield Bank,0.4754 -4563,269455,5 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jan 2017,C - 69 to 80,74.0,C - 69 to 80,78.0,BB113AU,100010356311.0,"5, Springfield Bank",0.4754 -4619,40867,6 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,09 Apr 2009,D - 55 to 68,66.0,C - 69 to 80,74.0,BB113AU,100010356312.0,"6, Springfield Bank",0.4754 -4673,269457,7 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,19 Jan 2017,C - 69 to 80,75.0,C - 69 to 80,78.0,BB113AU,100010356313.0,"7, Springfield Bank",0.4754 -4730,328284,8 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,79.0,C - 69 to 80,79.0,BB113AU,100010356314.0,"8, Springfield Bank",0.4754 -4780,112183,9 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,09 Nov 2021,C - 69 to 80,76.0,C - 69 to 80,79.0,BB113AU,100010356315.0,9 Springfield Bank,0.4754 -4834,252167,10 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,10 Jun 2011,D - 55 to 68,64.0,C - 69 to 80,70.0,BB113AU,100010356316.0,"10, Springfield Bank",0.4801 -4882,121797,11 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,75.0,BB113AU,100010356317.0,11 Springfield Bank,0.4801 -4923,220700,12 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,05 Dec 2013,C - 69 to 80,76.0,C - 69 to 80,77.0,BB113AU,100010356318.0,"12, Springfield Bank",0.4801 -4971,328069,13 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113AU,100010356319.0,"13, Springfield Bank",0.4801 -5017,328285,14 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113AU,100010356320.0,"14, Springfield Bank",0.4801 -5064,76955,15 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,06 Feb 2026,C - 69 to 80,76.0,C - 69 to 80,78.0,BB113AU,100010356321.0,"15, Springfield Bank",0.4801 -5113,105394,16 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,06 Feb 2026,C - 69 to 80,79.0,C - 69 to 80,79.0,BB113AU,100010356322.0,"16, Springfield Bank",0.4801 -5167,224899,17 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,76.0,C - 69 to 80,78.0,BB113AU,100010356323.0,17 Springfield Bank,0.4801 -5224,118384,18 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,05 Jul 2022,C - 69 to 80,79.0,C - 69 to 80,79.0,BB113AU,100010356324.0,18 Springfield Bank,0.4801 -5276,207690,19 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113AU,100010356325.0,19 Springfield Bank,0.4801 -5335,192464,20 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,15 Aug 2024,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113AU,100010356326.0,20 Springfield Bank,0.4801 -5393,163896,21 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113AU,100010356327.0,21 Springfield Bank,0.4801 -5498,40909,23 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,13 Jun 2023,C - 69 to 80,76.0,C - 69 to 80,78.0,BB113AU,100010356329.0,"23, Springfield Bank",0.4801 -5545,328286,24 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,77.0,C - 69 to 80,79.0,BB113AU,100010356330.0,"24, Springfield Bank",0.4801 -5596,252190,25 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,10 Jun 2011,D - 55 to 68,61.0,D - 55 to 68,67.0,BB113AU,100010356331.0,"25, Springfield Bank",0.4801 -5647,245099,26 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,07 Dec 2015,C - 69 to 80,77.0,C - 69 to 80,78.0,BB113AU,100010356332.0,"26, Springfield Bank",0.4801 -5706,136675,27 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,18 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,76.0,BB113AU,100010356333.0,27 Springfield Bank,0.4801 -5753,252192,28 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,77.0,C - 69 to 80,77.0,BB113AU,100010356334.0,28 Springfield Bank,0.4801 -5807,197608,29 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,10 Dec 2025,C - 69 to 80,75.0,C - 69 to 80,78.0,BB113AU,100010356335.0,29 Springfield Bank,0.4801 -5853,328287,30 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113AU,100010356336.0,"30, Springfield Bank",0.4801 -5950,90289,32 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,17 Oct 2024,C - 69 to 80,80.0,B - 81 to 91,81.0,BB113AU,100010356338.0,32 Springfield Bank,0.4801 -5995,328288,33 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,77.0,C - 69 to 80,78.0,BB113AU,100010356339.0,"33, Springfield Bank",0.4801 -6038,362479,34 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,11 Oct 2022,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113AU,100010356340.0,34 Springfield Bank,0.4801 -6082,328289,35 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113AU,100010356341.0,"35, Springfield Bank",0.4801 -6132,229669,36 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,30 Oct 2014,C - 69 to 80,75.0,C - 69 to 80,78.0,BB113AU,100010356342.0,"36, Springfield Bank",0.4801 -6176,183762,37 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,03 Aug 2012,C - 69 to 80,76.0,C - 69 to 80,78.0,BB113AU,100010356343.0,"37, Springfield Bank",0.4801 -6220,181846,38 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,17 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,80.0,BB113AU,100010356344.0,38 Springfield Bank,0.4801 -6264,98126,39 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,77.0,C - 69 to 80,77.0,BB113AU,100010356345.0,39 Springfield Bank,0.4801 -6311,229120,40 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,08 Oct 2014,C - 69 to 80,74.0,C - 69 to 80,79.0,BB113AU,100010356346.0,"40, Springfield Bank",0.4801 -6360,328290,41 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,79.0,C - 69 to 80,79.0,BB113AU,100010356347.0,"41, Springfield Bank",0.4801 -6407,40950,42 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,77.0,BB113AU,100010356348.0,42 Springfield Bank,0.4801 -6661,118348,47 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,25 Aug 2011,D - 55 to 68,68.0,C - 69 to 80,71.0,BB113AU,100010356349.0,"47, Springfield Bank",0.4801 -6707,328291,48 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,77.0,C - 69 to 80,78.0,BB113AU,100010356350.0,"48, Springfield Bank",0.4801 -6763,180013,49 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,17 May 2012,C - 69 to 80,72.0,C - 69 to 80,76.0,BB113AU,100010356351.0,49 Springfield Bank,0.4801 -6807,241364,50 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,18 Nov 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB113AU,100010356352.0,50 Springfield Bank,0.4801 -6858,194693,51 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,11 Jan 2013,C - 69 to 80,76.0,C - 69 to 80,79.0,BB113AU,100010356353.0,"51, Springfield Bank",0.4801 -6904,328292,52 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,77.0,C - 69 to 80,78.0,BB113AU,100010356354.0,"52, Springfield Bank",0.4801 -6955,252168,53 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,09 Aug 2024,C - 69 to 80,76.0,C - 69 to 80,77.0,BB113AU,100010356355.0,53 Springfield Bank,0.4801 -7004,71531,54 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,18 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113AU,100010356356.0,54 Springfield Bank,0.4801 -7055,221668,55 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,70.0,C - 69 to 80,70.0,BB113AU,100010356357.0,"55, Springfield Bank",0.4801 -7103,90293,56 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113AU,100010356358.0,56 Springfield Bank,0.4801 -7152,328293,57 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,79.0,C - 69 to 80,79.0,BB113AU,100010356359.0,"57, Springfield Bank",0.4801 -7205,221669,58 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,76.0,BB113AU,100010356360.0,58 Springfield Bank,0.4801 -12512,298713,22 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Top,Domestic EPC Required,EPC Present,13 Dec 2016,C - 69 to 80,76.0,C - 69 to 80,79.0,BB113AU,100010356328.0,"22, Springfield Bank",0.4801 -13368,342544,31 Springfield Bank Burnley Lancashire BB11 3AU,,, BB11 3AU,Flat: Bottom,Domestic EPC Required,EPC Present,18 Nov 2025,C - 69 to 80,77.0,C - 69 to 80,79.0,BB113AU,100010356337.0,31 Springfield Bank,0.4801 -4351,116774,1 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,64.0,D - 55 to 68,68.0,BB115DW,100010343329.0,"1, Holmestrand Avenue",0.4845 -4471,109794,3 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,64.0,C - 69 to 80,69.0,BB115DW,100010343331.0,"3, Holmestrand Avenue",0.4845 -4591,116776,5 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,65.0,C - 69 to 80,69.0,BB115DW,100010343333.0,"5, Holmestrand Avenue",0.4845 -4653,116777,6 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,62.0,D - 55 to 68,66.0,BB115DW,100010343334.0,"6, Holmestrand Avenue",0.4845 -4758,106919,8 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,62.0,D - 55 to 68,66.0,BB115DW,100010343336.0,"8, Holmestrand Avenue",0.4845 -4858,116778,10 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,62.0,D - 55 to 68,66.0,BB115DW,100010343338.0,"10, Holmestrand Avenue",0.4886 -4946,116780,12 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,63.0,D - 55 to 68,66.0,BB115DW,100010343340.0,"12, Holmestrand Avenue",0.4886 -4992,116781,13 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,63.0,D - 55 to 68,66.0,BB115DW,100010343341.0,"13, Holmestrand Avenue",0.4886 -5040,116782,14 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,12 Sep 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB115DW,100010343342.0,14 Holmestrand Avenue,0.4886 -5091,116783,15 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,27 Sep 2024,D - 55 to 68,67.0,B - 81 to 91,84.0,BB115DW,100010343343.0,15 Holmestrand Avenue,0.4886 -5142,116784,16 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,66.0,D - 55 to 68,68.0,BB115DW,100010343344.0,"16, Holmestrand Avenue",0.4886 -5193,116785,17 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,61.0,D - 55 to 68,66.0,BB115DW,100010343345.0,"17, Holmestrand Avenue",0.4886 -5253,116786,18 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,60.0,D - 55 to 68,66.0,BB115DW,100010343346.0,"18, Holmestrand Avenue",0.4886 -5417,40903,21 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,15 May 2025,C - 69 to 80,69.0,B - 81 to 91,85.0,BB115DW,100010343349.0,21 Holmestrand Avenue,0.4886 -5470,104057,22 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,11 Mar 2022,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115DW,100010343350.0,22 Holmestrand Avenue,0.4886 -5519,116787,23 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,65.0,D - 55 to 68,68.0,BB115DW,100010343351.0,"23, Holmestrand Avenue",0.4886 -5621,116788,25 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,60.0,D - 55 to 68,66.0,BB115DW,100010343353.0,"25, Holmestrand Avenue",0.4886 -5680,116789,26 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,65.0,D - 55 to 68,68.0,BB115DW,100010343354.0,"26, Holmestrand Avenue",0.4886 -5782,116790,28 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,65.0,D - 55 to 68,68.0,BB115DW,100010343355.0,"28, Holmestrand Avenue",0.4886 -5878,116791,30 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,65.0,D - 55 to 68,68.0,BB115DW,100010343357.0,"30, Holmestrand Avenue",0.4886 -6012,116792,33 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,62.0,D - 55 to 68,68.0,BB115DW,100010343359.0,"33, Holmestrand Avenue",0.4886 -6104,97640,35 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,65.0,D - 55 to 68,68.0,BB115DW,100010343360.0,"35, Holmestrand Avenue",0.4886 -6196,116793,37 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,65.0,C - 69 to 80,69.0,BB115DW,100010343361.0,"37, Holmestrand Avenue",0.4886 -6288,116794,39 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,68.0,C - 69 to 80,71.0,BB115DW,100010343362.0,"39, Holmestrand Avenue",0.4886 -11671,237658,11 Holmestrand Avenue Burnley Lancashire BB11 5DW,,, BB11 5DW,Bungalow: Detached,Domestic EPC Required,EPC Present,11 Jun 2015,C - 69 to 80,74.0,B - 81 to 91,85.0,BB115DW,100010343339.0,"11, Holmestrand Avenue",0.4886 -4399,98981,21 Kingfisher Bank Burnley Lancashire BB11 5RU,,, BB11 5RU,House: End Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,73.0,B - 81 to 91,85.0,BB115RU,10003782029.0,21 Kingfisher Bank,0.4754 -4448,194527,22 Kingfisher Bank Burnley Lancashire BB11 5RU,,, BB11 5RU,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,88.0,BB115RU,10003782030.0,22 Kingfisher Bank,0.4754 -4511,112761,23 Kingfisher Bank Burnley Lancashire BB11 5RU,,, BB11 5RU,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Nov 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115RU,10003782031.0,23 Kingfisher Bank,0.4754 -4569,40863,24 Kingfisher Bank Burnley Lancashire BB11 5RU,,, BB11 5RU,House: End Terrace,Domestic EPC Required,EPC Present,19 Jul 2018,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115RU,10003782032.0,"24, Kingfisher Bank",0.4754 -4629,232824,25 Kingfisher Bank Burnley Lancashire BB11 5RU,,, BB11 5RU,House: End Terrace,Domestic EPC Required,EPC Present,12 Mar 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB115RU,10003782033.0,25 Kingfisher Bank,0.4754 -4740,90059,27 Kingfisher Bank Burnley Lancashire BB11 5RU,,, BB11 5RU,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jan 2026,C - 69 to 80,72.0,B - 81 to 91,84.0,BB115RU,10003782035.0,27 Kingfisher Bank,0.4754 -4548,194949,136 Abel Street Burnley Lancashire BB10 1QB,,, BB10 1QB,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Dec 2012,C - 69 to 80,70.0,B - 81 to 91,86.0,BB101QB,100010326412.0,"136, Abel Street",0.4596 -4624,108982,2 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Jul 2025,C - 69 to 80,69.0,C - 69 to 80,77.0,BB115JG,100010338703.0,2 Fenwick Street,0.4652 -4681,179920,3 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Dec 2025,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115JG,100010338704.0,3 Fenwick Street,0.4652 -4735,110668,4 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Sep 2025,C - 69 to 80,70.0,C - 69 to 80,79.0,BB115JG,100010338705.0,4 Fenwick Street,0.4652 -4783,189870,5 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Dec 2025,C - 69 to 80,70.0,B - 81 to 91,84.0,BB115JG,100010338706.0,5 Fenwick Street,0.4652 -4838,101652,6 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,13 Oct 2010,D - 55 to 68,57.0,D - 55 to 68,68.0,BB115JG,100010338707.0,"6, Fenwick Street",0.4652 -4883,76845,7 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Feb 2026,C - 69 to 80,75.0,B - 81 to 91,81.0,BB115JG,100010338708.0,"7, Fenwick Street",0.4652 -4925,99549,8 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Sep 2025,C - 69 to 80,70.0,C - 69 to 80,79.0,BB115JG,100010338709.0,8 Fenwick Street,0.4652 -4972,250438,9 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Jun 2016,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115JG,100010338710.0,"9, Fenwick Street",0.4652 -5018,180750,10 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,08 Jun 2012,D - 55 to 68,67.0,B - 81 to 91,88.0,BB115JG,100010338711.0,"10, Fenwick Street",0.4705 -5067,237175,11 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Feb 2026,C - 69 to 80,76.0,B - 81 to 91,82.0,BB115JG,100010338712.0,"11, Fenwick Street",0.4705 -5118,40893,12 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Dec 2024,D - 55 to 68,67.0,B - 81 to 91,89.0,BB115JG,100010338713.0,12 Fenwick Street,0.4705 -5171,89062,13 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Oct 2009,E - 39 to 54,53.0,C - 69 to 80,69.0,BB115JG,100010338714.0,"13, Fenwick Street",0.4705 -5227,225868,14 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,31 Jul 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB115JG,100010338715.0,14 Fenwick Street,0.4705 -5284,97186,15 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Sep 2021,C - 69 to 80,71.0,B - 81 to 91,88.0,BB115JG,100010338716.0,15 Fenwick Street,0.4705 -5339,97188,16 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Dec 2025,D - 55 to 68,62.0,B - 81 to 91,81.0,BB115JG,100010338717.0,16 Fenwick Street,0.4705 -5396,110802,17 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Jan 2011,E - 39 to 54,49.0,C - 69 to 80,73.0,BB115JG,100010338718.0,"17, Fenwick Street",0.4705 -5446,362437,18 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,90.0,BB115JG,100010338719.0,18 Fenwick Street,0.4705 -5598,362445,21 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,90.0,BB115JG,100010338722.0,21 Fenwick Street,0.4705 -5710,115842,23 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,28 Nov 2025,D - 55 to 68,61.0,C - 69 to 80,71.0,BB115JG,100010338724.0,23 Fenwick Street,0.4705 -5757,362458,24 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115JG,100010338725.0,24 Fenwick Street,0.4705 -5808,221646,25 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,05 Nov 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB115JG,100010338726.0,25 Fenwick Street,0.4705 -5857,136666,26 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Jul 2024,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115JG,100010338727.0,26 Fenwick Street,0.4705 -5906,105146,27 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,16 Dec 2010,D - 55 to 68,58.0,C - 69 to 80,69.0,BB115JG,100010338728.0,"27, Fenwick Street",0.4705 -5951,182483,28 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Jul 2012,C - 69 to 80,69.0,B - 81 to 91,85.0,BB115JG,100010338729.0,"28, Fenwick Street",0.4705 -5997,110888,29 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,07 Aug 2024,C - 69 to 80,69.0,B - 81 to 91,90.0,BB115JG,100010338730.0,29 Fenwick Street,0.4705 -6043,362480,30 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115JG,100010338731.0,30 Fenwick Street,0.4705 -6090,191097,31 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,19 Jan 2026,D - 55 to 68,65.0,C - 69 to 80,75.0,BB115JG,100010338732.0,31 Fenwick Street,0.4705 -6133,362487,32 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115JG,100010338733.0,32 Fenwick Street,0.4705 -6178,110917,33 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Sep 2025,C - 69 to 80,70.0,C - 69 to 80,79.0,BB115JG,100010338734.0,33 Fenwick Street,0.4705 -6221,252188,34 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Jun 2011,E - 39 to 54,50.0,C - 69 to 80,70.0,BB115JG,100010338735.0,"34, Fenwick Street",0.4705 -6270,110923,35 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Dec 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115JG,100010338736.0,35 Fenwick Street,0.4705 -6315,89434,36 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Jun 2025,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115JG,100010338737.0,36 Fenwick Street,0.4705 -6362,295099,37 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,28 Nov 2025,D - 55 to 68,65.0,C - 69 to 80,74.0,BB115JG,100010338738.0,37 Fenwick Street,0.4705 -6459,362518,39 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,90.0,BB115JG,100010338740.0,39 Fenwick Street,0.4705 -6511,111157,40 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Jun 2025,C - 69 to 80,69.0,B - 81 to 91,90.0,BB115JG,100010338741.0,40 Fenwick Street,0.4705 -6610,111162,42 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Sep 2025,C - 69 to 80,71.0,C - 69 to 80,79.0,BB115JG,100010338743.0,42 Fenwick Street,0.4705 -6711,111169,44 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Sep 2025,C - 69 to 80,70.0,C - 69 to 80,79.0,BB115JG,100010338745.0,44 Fenwick Street,0.4705 -6766,240297,45 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Aug 2015,C - 69 to 80,69.0,B - 81 to 91,85.0,BB115JG,100010338746.0,"45, Fenwick Street",0.4705 -6810,111176,46 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,26 Jun 2025,C - 69 to 80,69.0,C - 69 to 80,77.0,BB115JG,100010338747.0,46 Fenwick Street,0.4705 -6907,271935,48 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,16 Feb 2017,D - 55 to 68,66.0,B - 81 to 91,87.0,BB115JG,100010338749.0,"48, Fenwick Street",0.4705 -6959,362552,49 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115JG,100010338750.0,49 Fenwick Street,0.4705 -7058,179915,51 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,14 May 2012,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115JG,100010338751.0,"51, Fenwick Street",0.4705 -7354,136925,57 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Sep 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115JG,100010338754.0,57 Fenwick Street,0.4705 -7451,111199,59 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,18 May 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115JG,100010338755.0,59 Fenwick Street,0.4705 -7542,362596,61 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115JG,100010338756.0,61 Fenwick Street,0.4705 -7651,362603,63 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115JG,100010338757.0,63 Fenwick Street,0.4705 -7756,221835,65 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Jul 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115JG,100010338758.0,65 Fenwick Street,0.4705 -7972,234693,69 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Nov 2025,C - 69 to 80,70.0,B - 81 to 91,83.0,BB115JG,100010338760.0,69 Fenwick Street,0.4705 -13358,357210,19 Fenwick Street Burnley Lancashire BB11 5JG,,, BB11 5JG,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jan 2022,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115JG,100010338720.0,19 Fenwick Street,0.4705 -4644,40870,282 Accrington Road Burnley Lancashire BB11 5EU,,, BB11 5EU,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Dec 2010,D - 55 to 68,68.0,C - 69 to 80,69.0,BB115EU,100010326598.0,"282, Accrington Road",0.4801 -4665,76850,86 Brunswick Street Burnley Lancashire BB11 3LT,,, BB11 3LT,House: End Terrace,Domestic EPC Required,EPC Present,17 Aug 2009,D - 55 to 68,56.0,D - 55 to 68,58.0,BB113LT,100010331858.0,"86, Brunswick Street",0.4801 -4709,210879,4 Chingford Bank Burnley Lancashire BB10 2RN,,, BB10 2RN,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Aug 2013,D - 55 to 68,66.0,C - 69 to 80,80.0,BB102RN,100010333708.0,"4, Chingford Bank",0.4652 -4759,325353,5 Chingford Bank Burnley Lancashire BB10 2RN,,, BB10 2RN,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2019,C - 69 to 80,73.0,B - 81 to 91,88.0,BB102RN,100010333709.0,"5, Chingford Bank",0.4652 -4861,76812,7 Chingford Bank Burnley Lancashire BB10 2RN,,, BB10 2RN,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Oct 2025,C - 69 to 80,75.0,B - 81 to 91,81.0,BB102RN,100010333711.0,7 Chingford Bank,0.4652 -5093,199713,12 Chingford Bank Burnley Lancashire BB10 2RN,,, BB10 2RN,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Oct 2025,C - 69 to 80,73.0,B - 81 to 91,85.0,BB102RN,100010333716.0,12 Chingford Bank,0.4705 -5258,131105,15 Chingford Bank Burnley Lancashire BB10 2RN,,, BB10 2RN,House: End Terrace,Domestic EPC Required,EPC Present,30 Jan 2026,C - 69 to 80,72.0,C - 69 to 80,78.0,BB102RN,100010333719.0,15 Chingford Bank,0.4705 -5578,110831,21 Chingford Bank Burnley Lancashire BB10 2RN,,, BB10 2RN,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2010,E - 39 to 54,45.0,D - 55 to 68,58.0,BB102RN,100010333725.0,"21, Chingford Bank",0.4705 -4716,138691,165 Rosehill Road Burnley Lancashire BB11 2QX,,, BB11 2QX,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2012,C - 69 to 80,69.0,C - 69 to 80,70.0,BB112QX,100010354546.0,"165, Rosehill Road",0.4705 -5743,340116,185 Rosehill Road Burnley Lancashire BB11 2QX,,, BB11 2QX,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Aug 2021,D - 55 to 68,57.0,B - 81 to 91,85.0,BB112QX,100010354556.0,185 Rosehill Road,0.4705 -5937,210877,189 Rosehill Road Burnley Lancashire BB11 2QX,,, BB11 2QX,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2013,C - 69 to 80,69.0,B - 81 to 91,88.0,BB112QX,100010354558.0,"189, Rosehill Road",0.4705 -6028,275588,191 Rosehill Road Burnley Lancashire BB11 2QX,,, BB11 2QX,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jun 2017,D - 55 to 68,55.0,B - 81 to 91,83.0,BB112QX,100010354559.0,"191, Rosehill Road",0.4705 -6111,362486,193 Rosehill Road Burnley Lancashire BB11 2QX,,, BB11 2QX,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112QX,100010354560.0,193 Rosehill Road,0.4705 -6391,111323,199 Rosehill Road Burnley Lancashire BB11 2QX,,, BB11 2QX,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Dec 2010,D - 55 to 68,61.0,C - 69 to 80,74.0,BB112QX,100010354563.0,"199, Rosehill Road",0.4705 -6597,362526,203 Rosehill Road Burnley Lancashire BB11 2QX,,, BB11 2QX,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112QX,100010354565.0,203 Rosehill Road,0.4705 -6791,197125,207 Rosehill Road Burnley Lancashire BB11 2QX,,, BB11 2QX,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Feb 2013,C - 69 to 80,69.0,B - 81 to 91,86.0,BB112QX,100010354567.0,"207, Rosehill Road",0.4705 -6992,362558,211 Rosehill Road Burnley Lancashire BB11 2QX,,, BB11 2QX,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112QX,100010354569.0,211 Rosehill Road,0.4705 -4833,69661,2 St Stephen Street Burnley Lancashire BB11 3JA,,, BB11 3JA,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,63.0,C - 69 to 80,79.0,BB113JA,10003781742.0,2 St. Stephen Street,0.4961 -4911,275591,4 Reynolds Street Burnley Lancashire BB11 2NJ,,, BB11 2NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jun 2017,D - 55 to 68,61.0,B - 81 to 91,87.0,BB112NJ,100010353772.0,"4, Reynolds Street",0.4705 -4913,210886,28 Booth Court Burnley Lancashire BB10 1NS,,, BB10 1NS,Bungalow: Detached,Domestic EPC Required,EPC Present,01 Apr 2025,D - 55 to 68,67.0,C - 69 to 80,71.0,BB101NS,10003780575.0,28 Booth Court,0.4536 -4959,205800,29 Booth Court Burnley Lancashire BB10 1NS,,, BB10 1NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,16 Jul 2024,C - 69 to 80,69.0,B - 81 to 91,87.0,BB101NS,10003780576.0,29 Booth Court,0.4536 -5004,136672,30 Booth Court Burnley Lancashire BB10 1NS,,, BB10 1NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,28 Feb 2012,D - 55 to 68,65.0,D - 55 to 68,68.0,BB101NS,10003780577.0,"30, Booth Court",0.4536 -5053,245821,31 Booth Court Burnley Lancashire BB10 1NS,,, BB10 1NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,26 Nov 2015,D - 55 to 68,65.0,B - 81 to 91,88.0,BB101NS,,, -5103,111260,32 Booth Court Burnley Lancashire BB10 1NS,,, BB10 1NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,20 Jan 2026,B - 81 to 91,88.0,B - 81 to 91,90.0,BB101NS,10003780579.0,32 Booth Court,0.4536 -5158,252005,33 Booth Court Burnley Lancashire BB10 1NS,,, BB10 1NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,19 Dec 2025,C - 69 to 80,80.0,B - 81 to 91,81.0,BB101NS,10003780580.0,33 Booth Court,0.4536 -5211,119423,34 Booth Court Burnley Lancashire BB10 1NS,,, BB10 1NS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,20 Oct 2011,D - 55 to 68,63.0,D - 55 to 68,63.0,BB101NS,10003780581.0,"34, Booth Court",0.4536 -4921,76849,18 Smalley Street Burnley Lancashire BB11 3HH,,, BB11 3HH,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Aug 2009,C - 69 to 80,69.0,C - 69 to 80,70.0,BB113HH,100010356015.0,"18, Smalley Street",0.4705 -13355,357173,24 Smalley Street Burnley Lancashire BB11 3HH,,, BB11 3HH,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Mar 2022,C - 69 to 80,74.0,B - 81 to 91,89.0,BB113HH,100010356018.0,24 Smalley Street,0.4705 -4968,110835,22 Harold Avenue Burnley Lancashire BB11 5JZ,,, BB11 5JZ,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115JZ,100010341353.0,22 Harold Avenue,0.4652 -5061,110876,24 Harold Avenue Burnley Lancashire BB11 5JZ,,, BB11 5JZ,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Dec 2010,D - 55 to 68,60.0,C - 69 to 80,75.0,BB115JZ,100010341354.0,"24, Harold Avenue",0.4652 -5221,40896,27 Harold Avenue Burnley Lancashire BB11 5JZ,,, BB11 5JZ,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Feb 2011,D - 55 to 68,61.0,C - 69 to 80,75.0,BB115JZ,100010341356.0,27 Harold Avenue,0.4652 -5282,362424,28 Harold Avenue Burnley Lancashire BB11 5JZ,,, BB11 5JZ,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115JZ,100010341357.0,28 Harold Avenue,0.4652 -4979,362404,1 Amersham Grove Burnley Lancashire BB10 2RP,,, BB10 2RP,House: End Terrace,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB102RP,10003757992.0,1 Amersham Grove,0.4652 -5292,235640,7 Amersham Grove Burnley Lancashire BB10 2RP,,, BB10 2RP,House: End Terrace,Domestic EPC Required,EPC Present,14 May 2015,D - 55 to 68,64.0,C - 69 to 80,79.0,BB102RP,10003758004.0,"7, Amersham Grove",0.4652 -5351,76996,8 Amersham Grove Burnley Lancashire BB10 2RP,,, BB10 2RP,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Apr 2022,C - 69 to 80,73.0,B - 81 to 91,88.0,BB102RP,10003758003.0,8 Amersham Grove,0.4652 -6190,339076,25 Amersham Grove Burnley Lancashire BB10 2RP,,, BB10 2RP,House: End Terrace,Domestic EPC Required,EPC Present,23 Jun 2021,C - 69 to 80,69.0,B - 81 to 91,88.0,BB102RP,10003757994.0,25 AMERSHAM GROVE,0.4705 -6280,223391,27 Amersham Grove Burnley Lancashire BB10 2RP,,, BB10 2RP,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Apr 2014,D - 55 to 68,68.0,B - 81 to 91,81.0,BB102RP,10003758015.0,"27, Amersham Grove",0.4705 -6326,252245,28 Amersham Grove Burnley Lancashire BB10 2RP,,, BB10 2RP,House: End Terrace,Domestic EPC Required,EPC Present,04 Jul 2016,D - 55 to 68,60.0,C - 69 to 80,80.0,BB102RP,10003758014.0,"28, Amersham Grove",0.4705 -6530,362520,32 Amersham Grove Burnley Lancashire BB10 2RP,,, BB10 2RP,House: End Terrace,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB102RP,10003758010.0,32 Amersham Grove,0.4705 -4986,222435,16 Hambledon Street Padiham Lancashire BB12 8QU,,, BB12 8QU,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Aug 2023,D - 55 to 68,67.0,B - 81 to 91,87.0,BB128QU,100010340912.0,"16 Hambledon Street, Padiham",0.6268 -4996,180748,7 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: End Terrace,Domestic EPC Required,EPC Present,08 Jun 2012,C - 69 to 80,69.0,B - 81 to 91,90.0,BB112NP,100010354900.0,"7, Rossetti Avenue",0.4705 -5044,252181,8 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Nov 2010,D - 55 to 68,62.0,C - 69 to 80,75.0,BB112NP,100010354901.0,8 Rossetti Avenue,0.4705 -5092,227771,9 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: End Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,D - 55 to 68,68.0,B - 81 to 91,86.0,BB112NP,100010354902.0,9 Rossetti Avenue,0.4705 -5199,112760,11 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Jun 2017,D - 55 to 68,64.0,B - 81 to 91,84.0,BB112NP,100010354904.0,"11, Rossetti Avenue",0.4754 -5369,110786,14 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: End Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,C - 69 to 80,70.0,B - 81 to 91,85.0,BB112NP,100010354907.0,14 Rossetti Avenue,0.4754 -5423,208338,15 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: End Terrace,Domestic EPC Required,EPC Present,16 Jul 2013,C - 69 to 80,71.0,B - 81 to 91,87.0,BB112NP,100010354908.0,"15, Rossetti Avenue",0.4754 -5734,40918,21 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: End Terrace,Domestic EPC Required,EPC Present,09 Dec 2008,D - 55 to 68,58.0,C - 69 to 80,73.0,BB112NP,100010354914.0,"21, Rossetti Avenue",0.4754 -6110,110895,29 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: End Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,D - 55 to 68,68.0,B - 81 to 91,86.0,BB112NP,100010354922.0,29 Rossetti Avenue,0.4754 -6341,110922,34 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Dec 2010,D - 55 to 68,61.0,C - 69 to 80,74.0,BB112NP,100010354927.0,34 Rossetti Avenue,0.4754 -6441,250503,36 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: End Terrace,Domestic EPC Required,EPC Present,02 Jun 2016,D - 55 to 68,64.0,B - 81 to 91,82.0,BB112NP,100010354929.0,"36, Rossetti Avenue",0.4754 -6542,187506,38 Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jul 2017,D - 55 to 68,65.0,B - 81 to 91,85.0,BB112NP,100010354931.0,"38, Rossetti Avenue",0.4754 -6646,204093,40a Rossetti Avenue Burnley Lancashire BB11 2NP,,, BB11 2NP,House: Semi-Detached,Domestic EPC Required,EPC Present,15 May 2013,C - 69 to 80,70.0,B - 81 to 91,86.0,BB112NP,100010354933.0,"40a, Rossetti Avenue",0.5309 -5003,99123,6 Reynolds Street Burnley Lancashire BB11 2NL,,, BB11 2NL,House: End Terrace,Domestic EPC Required,EPC Present,16 Dec 2021,D - 55 to 68,65.0,B - 81 to 91,86.0,BB112NL,100010353774.0,6 Reynolds Street,0.4705 -5323,274453,12 Reynolds Street Burnley Lancashire BB11 2NL,,, BB11 2NL,House: End Terrace,Domestic EPC Required,EPC Present,02 Jun 2017,E - 39 to 54,53.0,B - 81 to 91,84.0,BB112NL,100010353780.0,"12, Reynolds Street",0.4754 -5842,362466,22 Reynolds Street Burnley Lancashire BB11 2NL,,, BB11 2NL,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112NL,100010353790.0,22 Reynolds Street,0.4754 -6031,246851,26 Reynolds Street Burnley Lancashire BB11 2NL,,, BB11 2NL,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Feb 2016,D - 55 to 68,68.0,B - 81 to 91,81.0,BB112NL,100010353793.0,"26, Reynolds Street",0.4754 -6209,274451,30 Reynolds Street Burnley Lancashire BB11 2NL,,, BB11 2NL,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jun 2017,D - 55 to 68,56.0,B - 81 to 91,81.0,BB112NL,100010353795.0,"30, Reynolds Street",0.4754 -5009,102256,20 Griffin Close Burnley Lancashire BB11 5SE,,, BB11 5SE,House: End Terrace,Domestic EPC Required,EPC Present,04 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB115SE,100010340654.0,20 Griffin Close,0.4652 -5106,40892,22 Griffin Close Burnley Lancashire BB11 5SE,,, BB11 5SE,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Dec 2025,C - 69 to 80,71.0,B - 81 to 91,85.0,BB115SE,100010340656.0,22 Griffin Close,0.4652 -5213,136629,24 Griffin Close Burnley Lancashire BB11 5SE,,, BB11 5SE,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2025,C - 69 to 80,76.0,C - 69 to 80,83.0,BB115SE,100010340658.0,24 Griffin Close,0.4652 -5326,362428,26 Griffin Close Burnley Lancashire BB11 5SE,,, BB11 5SE,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,87.0,BB115SE,100010340660.0,26 Griffin Close,0.4652 -5384,328491,27 Griffin Close Burnley Lancashire BB11 5SE,,, BB11 5SE,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115SE,100010340661.0,"27, Griffin Close",0.4652 -5433,328490,28 Griffin Close Burnley Lancashire BB11 5SE,,, BB11 5SE,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115SE,100010340662.0,"28, Griffin Close",0.4652 -9628,328489,29 Griffin Close Burnley Lancashire BB11 5SE,,, BB11 5SE,House: End Terrace,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,70.0,B - 81 to 91,87.0,BB115SE,100010340663.0,"29, Griffin Close",0.4652 -5022,40886,79 Marlborough Street Burnley Lancashire BB11 2HW,,, BB11 2HW,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Dec 2008,D - 55 to 68,63.0,C - 69 to 80,72.0,BB112HW,100010348104.0,"79, Marlborough Street",0.4886 -6522,89315,109 Marlborough Street Burnley Lancashire BB11 2HW,,, BB11 2HW,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Dec 2024,D - 55 to 68,61.0,B - 81 to 91,84.0,BB112HW,100010348119.0,109 Marlborough Street,0.4925 -5066,243000,1 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,19 Dec 2025,C - 69 to 80,75.0,C - 69 to 80,80.0,BB101NR,,, -5114,252003,2 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,01 Apr 2025,C - 69 to 80,69.0,C - 69 to 80,73.0,BB101NR,10003780622.0,2 Allen Court,0.4471 -5170,252004,3 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,15 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,90.0,BB101NR,10003780623.0,3 Allen Court,0.4471 -5226,115723,4 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,01 Apr 2025,D - 55 to 68,68.0,C - 69 to 80,72.0,BB101NR,10003780624.0,4 Allen Court,0.4471 -5280,244943,5 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Oct 2015,D - 55 to 68,68.0,B - 81 to 91,89.0,BB101NR,10003780625.0,"5, Allen Court",0.4471 -5337,103053,6 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,16 Jul 2024,C - 69 to 80,70.0,B - 81 to 91,89.0,BB101NR,10003780626.0,6 Allen Court,0.4471 -5395,208445,7 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Flat: Bottom,Domestic EPC Required,EPC Present,18 Jul 2013,C - 69 to 80,70.0,C - 69 to 80,77.0,BB101NR,10003780627.0,"7, Allen Court",0.4471 -5548,182481,10 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Flat: Bottom,Domestic EPC Required,EPC Present,30 Jan 2026,C - 69 to 80,72.0,C - 69 to 80,75.0,BB101NR,10003780630.0,10 Allen Court,0.4536 -13118,330868,9 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Flat: Top,Domestic EPC Required,EPC Present,21 Jun 2019,C - 69 to 80,72.0,C - 69 to 80,75.0,BB101NR,10003780629.0,"9, Allen Court",0.4471 -13602,355054,8 Allen Court Burnley Lancashire BB10 1NR,,, BB10 1NR,Flat: Top,Domestic EPC Required,EPC Present,08 Jan 2026,C - 69 to 80,76.0,C - 69 to 80,76.0,BB101NR,10003780628.0,8 Allen Court,0.4471 -5086,90197,1a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Maisonette: no shop,Domestic EPC Required,EPC Present,18 Feb 2010,C - 69 to 80,70.0,C - 69 to 80,75.0,BB126AY,100012538416.0,"1a, Anglesey Avenue",0.5265 -5196,232676,3a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Maisonette: no shop,Domestic EPC Required,EPC Present,18 Feb 2015,D - 55 to 68,59.0,C - 69 to 80,71.0,BB126AY,100010327327.0,"3a, Anglesey Avenue",0.5265 -5256,89270,4a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Maisonette: no shop,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,75.0,C - 69 to 80,75.0,BB126AY,100010327328.0,4a Anglesey Avenue,0.5265 -5307,362959,5a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Maisonette: no shop,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,69.0,C - 69 to 80,73.0,BB126AY,100010327329.0,5a Anglesey Avenue,0.5265 -5365,289897,6a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Maisonette: no shop,Domestic EPC Required,EPC Present,12 Jul 2017,D - 55 to 68,58.0,C - 69 to 80,71.0,BB126AY,100010327330.0,"6a, Anglesey Avenue",0.5265 -5406,295084,7 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,08 Aug 2017,C - 69 to 80,76.0,C - 69 to 80,77.0,BB126AY,100010327332.0,"7, Anglesey Avenue",0.4705 -5412,69652,7a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Top,Domestic EPC Required,EPC Present,22 Jul 2009,C - 69 to 80,70.0,C - 69 to 80,76.0,BB126AY,100010327331.0,"7a, Anglesey Avenue",0.5265 -5461,40906,8 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,75.0,BB126AY,100010327334.0,8 Anglesey Avenue,0.4705 -5465,180888,8a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Top,Domestic EPC Required,EPC Present,13 Jun 2012,C - 69 to 80,70.0,C - 69 to 80,74.0,BB126AY,100010327333.0,"8a, Anglesey Avenue",0.5265 -5509,289896,9 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,13 Jul 2017,C - 69 to 80,72.0,C - 69 to 80,76.0,BB126AY,100010327336.0,"9, Anglesey Avenue",0.4705 -5513,40910,9a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Top,Domestic EPC Required,EPC Present,12 Jan 2009,C - 69 to 80,69.0,C - 69 to 80,75.0,BB126AY,100010327335.0,"9a, Anglesey Avenue",0.5265 -5563,40911,10 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,76.0,BB126AY,100010327338.0,10 Anglesey Avenue,0.4754 -5569,136777,10a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Top,Domestic EPC Required,EPC Present,06 Mar 2012,D - 55 to 68,64.0,D - 55 to 68,67.0,BB126AY,100010327337.0,"10a, Anglesey Avenue",0.5309 -5670,289899,12 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Top,Domestic EPC Required,EPC Present,10 Jul 2017,C - 69 to 80,73.0,C - 69 to 80,78.0,BB126AY,100010327340.0,"12, Anglesey Avenue",0.4754 -5723,40917,13 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Middle,Domestic EPC Required,EPC Present,29 Sep 2008,C - 69 to 80,69.0,C - 69 to 80,75.0,BB126AY,,, -5772,105377,14 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Middle,Domestic EPC Required,EPC Present,10 Jan 2011,B - 81 to 91,81.0,B - 81 to 91,85.0,BB126AY,100010327342.0,"14, Anglesey Avenue",0.4754 -5822,89272,15 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,12 Nov 2009,C - 69 to 80,76.0,C - 69 to 80,80.0,BB126AY,100010327343.0,"15, Anglesey Avenue",0.4754 -5871,362469,16 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,31 Jul 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB126AY,100010327344.0,16 Anglesey Avenue,0.4754 -5961,196142,18 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,17 Jul 2017,C - 69 to 80,70.0,C - 69 to 80,76.0,BB126AY,100010327346.0,"18, Anglesey Avenue",0.4754 -6009,286350,19 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Middle,Domestic EPC Required,EPC Present,13 Jul 2017,C - 69 to 80,71.0,C - 69 to 80,79.0,BB126AY,100010327347.0,"19, Anglesey Avenue",0.4754 -6193,40941,23 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Top,Domestic EPC Required,EPC Present,04 Apr 2009,C - 69 to 80,78.0,B - 81 to 91,82.0,BB126AY,100010327351.0,"23, Anglesey Avenue",0.4754 -6283,90282,25 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Middle,Domestic EPC Required,EPC Present,11 Mar 2010,C - 69 to 80,79.0,B - 81 to 91,82.0,BB126AY,100010327353.0,"25, Anglesey Avenue",0.4754 -6330,362508,26 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Middle,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,80.0,C - 69 to 80,80.0,BB126AY,100010327354.0,26 Anglesey Avenue,0.4754 -6377,194694,27 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,11 Jan 2013,C - 69 to 80,75.0,C - 69 to 80,78.0,BB126AY,100010327355.0,"27, Anglesey Avenue",0.4754 -6428,103139,28 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,08 Nov 2010,C - 69 to 80,75.0,C - 69 to 80,79.0,BB126AY,100010327356.0,"28, Anglesey Avenue",0.4754 -6472,40954,29 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jun 2009,C - 69 to 80,73.0,C - 69 to 80,78.0,BB126AY,100010327357.0,"29, Anglesey Avenue",0.4754 -6532,113830,30 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB126AY,100010327358.0,30 Anglesey Avenue,0.4754 -6620,76888,32 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Top,Domestic EPC Required,EPC Present,26 Aug 2009,C - 69 to 80,75.0,B - 81 to 91,81.0,BB126AY,100010327360.0,"32, Anglesey Avenue",0.4754 -9761,89453,2a Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Maisonette: no shop,Domestic EPC Required,EPC Present,01 Dec 2009,D - 55 to 68,67.0,C - 69 to 80,74.0,BB126AY,100010327326.0,"2a, Anglesey Avenue",0.5265 -12682,304678,17 Anglesey Avenue Burnley Lancashire BB12 6AY,,, BB12 6AY,Flat: Bottom,Domestic EPC Required,EPC Present,17 Jul 2017,C - 69 to 80,72.0,C - 69 to 80,77.0,BB126AY,100010327345.0,"17, Anglesey Avenue",0.4754 -5102,326492,55 Burns Street Burnley Lancashire BB12 0AJ,,, BB12 0AJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2020,C - 69 to 80,72.0,B - 81 to 91,90.0,BB120AJ,100010332291.0,"55, Burns Street",0.4596 -6075,89457,74 Burns Street Burnley Lancashire BB12 0AJ,,, BB12 0AJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Jun 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB120AJ,100010332309.0,74 Burns Street,0.4596 -5117,77004,9 Cairo Street Burnley Lancashire BB12 0NL,,, BB12 0NL,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Sep 2009,D - 55 to 68,65.0,C - 69 to 80,72.0,BB120NL,100010332559.0,"9, Cairo Street",0.4536 -10803,75539,4 Cairo Street Burnley Lancashire BB12 0NL,,, BB12 0NL,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Jul 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB120NL,100010332554.0,4 Cairo Street,0.4536 -12718,315219,12 Cairo Street Burnley Lancashire BB12 0NL,,, BB12 0NL,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Sep 2019,C - 69 to 80,69.0,B - 81 to 91,87.0,BB120NL,100010332562.0,"12, Cairo Street",0.4596 -12759,325268,20 Cairo Street Burnley Lancashire BB12 0NL,,, BB12 0NL,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2018,D - 55 to 68,66.0,B - 81 to 91,89.0,BB120NL,100010332570.0,"20, Cairo Street",0.4596 -13831,378945,(Cherry House) 8 Cairo Street Burnley Lancashire BB12 0NL,,, BB12 0NL,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Feb 2009,D - 55 to 68,62.0,C - 69 to 80,70.0,BB120NL,100010332558.0,"8, Cairo Street",0.3587 -13832,379036,(Hazel House) 18 Cairo Street Burnley Lancashire BB12 0NL,,, BB12 0NL,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Aug 2009,D - 55 to 68,60.0,D - 55 to 68,60.0,BB120NL,100010332568.0,"18, Cairo Street",0.3667 -13833,379048,(Chestnut House) 3 Cairo Street Burnley Lancashire BB12 0NL,,, BB12 0NL,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Feb 2015,D - 55 to 68,67.0,B - 81 to 91,88.0,BB120NL,100010332553.0,"3, Cairo Street",0.3547 -5203,76898,1 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Nov 2025,D - 55 to 68,67.0,C - 69 to 80,74.0,BB114DS,100010355572.0,1 Selkirk Street,0.4652 -5265,362421,2 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB114DS,100010355573.0,2 Selkirk Street,0.4652 -5376,76858,4 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Feb 2022,C - 69 to 80,70.0,B - 81 to 91,90.0,BB114DS,100010355575.0,4 Selkirk Street,0.4652 -5483,105052,6 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Dec 2010,C - 69 to 80,69.0,C - 69 to 80,73.0,BB114DS,100010355577.0,"6, Selkirk Street",0.4652 -5530,359929,7 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Bottom,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,71.0,C - 69 to 80,76.0,BB114DS,100010355578.0,7 Selkirk Street,0.4652 -5585,252166,8 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Sep 2015,D - 55 to 68,55.0,C - 69 to 80,76.0,BB114DS,100010355579.0,"8, Selkirk Street",0.4652 -5630,105050,9 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Top,Domestic EPC Required,EPC Present,02 Dec 2010,C - 69 to 80,75.0,C - 69 to 80,79.0,BB114DS,100010355580.0,"9, Selkirk Street",0.4652 -5693,338856,10 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,25 May 2021,C - 69 to 80,71.0,B - 81 to 91,89.0,BB114DS,100010355581.0,10 SELKIRK STREET,0.4705 -5739,362457,11 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Top,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,73.0,C - 69 to 80,75.0,BB114DS,100010355582.0,11 Selkirk Street,0.4705 -5794,367827,12 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Bungalow: Detached,Domestic EPC Required,EPC Present,02 Dec 2025,D - 55 to 68,66.0,C - 69 to 80,75.0,BB114DS,100010355583.0,12 Selkirk Street,0.4705 -5838,40923,13 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Bottom,Domestic EPC Required,EPC Present,18 Dec 2008,C - 69 to 80,69.0,C - 69 to 80,73.0,BB114DS,100010355584.0,"13, Selkirk Street",0.4705 -5935,40926,15 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Bottom,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,73.0,BB114DS,100010355586.0,15 Selkirk Street,0.4705 -5983,234526,16 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Bungalow: Detached,Domestic EPC Required,EPC Present,10 Apr 2015,C - 69 to 80,69.0,A - 92 Plus,107.0,BB114DS,100010355587.0,"16, Selkirk Street",0.4705 -6024,362476,17 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Top,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,74.0,C - 69 to 80,76.0,BB114DS,100010355588.0,17 Selkirk Street,0.4705 -6112,252216,19 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Oct 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB114DS,100010355590.0,19 Selkirk Street,0.4705 -6160,228727,20 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,09 Nov 2025,D - 55 to 68,65.0,C - 69 to 80,73.0,BB114DS,100010355591.0,20 Selkirk Street,0.4705 -6204,362498,21 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB114DS,100010355592.0,21 Selkirk Street,0.4705 -6254,95013,22 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,05 May 2010,D - 55 to 68,64.0,C - 69 to 80,74.0,BB114DS,100010355593.0,"22, Selkirk Street",0.4705 -6392,300658,25 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Mar 2018,C - 69 to 80,70.0,B - 81 to 91,83.0,BB114DS,100010355596.0,"25, Selkirk Street",0.4705 -6492,119424,27 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Oct 2011,D - 55 to 68,64.0,D - 55 to 68,65.0,BB114DS,100010355598.0,"27, Selkirk Street",0.4705 -6693,250066,31 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,10 May 2016,C - 69 to 80,69.0,B - 81 to 91,86.0,BB114DS,100010355602.0,"31, Selkirk Street",0.4705 -6792,94996,33 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Jun 2021,C - 69 to 80,70.0,B - 81 to 91,85.0,BB114DS,100010355603.0,33 SELKIRK STREET,0.4705 -6890,222936,35 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Top,Domestic EPC Required,EPC Present,24 Mar 2014,C - 69 to 80,72.0,C - 69 to 80,73.0,BB114DS,10023762452.0,"35, Selkirk Street",0.4705 -6989,210878,37 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Bottom,Domestic EPC Required,EPC Present,24 Mar 2014,C - 69 to 80,70.0,C - 69 to 80,74.0,BB114DS,10023762453.0,"37, Selkirk Street",0.4705 -7087,222937,39 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Bottom,Domestic EPC Required,EPC Present,24 Mar 2014,C - 69 to 80,71.0,C - 69 to 80,75.0,BB114DS,10023762454.0,"39, Selkirk Street",0.4705 -7185,222938,41 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Top,Domestic EPC Required,EPC Present,24 Mar 2014,C - 69 to 80,72.0,C - 69 to 80,73.0,BB114DS,10023762455.0,"41, Selkirk Street",0.4705 -13566,352255,3 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Top,Domestic EPC Required,EPC Present,20 Feb 2013,D - 55 to 68,67.0,C - 69 to 80,70.0,BB114DS,100010355574.0,"3, Selkirk Street",0.4652 -13615,355932,5 Selkirk Street Burnley Lancashire BB11 4DS,,, BB11 4DS,Flat: Bottom,Domestic EPC Required,EPC Present,04 Sep 2023,C - 69 to 80,74.0,C - 69 to 80,77.0,BB114DS,100010355576.0,5 Selkirk Street,0.4652 -5245,195126,1 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Sep 2018,D - 55 to 68,63.0,B - 81 to 91,82.0,BB114EF,100010337793.0,"1, Dunoon Street",0.4596 -5295,252153,2 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Dec 2015,C - 69 to 80,71.0,B - 81 to 91,85.0,BB114EF,100012537429.0,"2, Dunoon Street",0.4596 -5347,40899,3 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2018,D - 55 to 68,63.0,B - 81 to 91,84.0,BB114EF,100010337794.0,"3, Dunoon Street",0.4596 -5408,252199,4 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Apr 2022,D - 55 to 68,63.0,B - 81 to 91,86.0,BB114EF,100010337795.0,4 Dunoon Street,0.4596 -5455,227466,5 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Aug 2014,D - 55 to 68,66.0,B - 81 to 91,86.0,BB114EF,100010337796.0,"5, Dunoon Street",0.4596 -5508,362440,6 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB114EF,100010337797.0,6 Dunoon Street,0.4596 -5562,252267,7 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Top,Domestic EPC Required,EPC Present,07 Jul 2016,C - 69 to 80,70.0,C - 69 to 80,72.0,BB114EF,100010337798.0,"7, Dunoon Street",0.4596 -5613,184327,8 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Top,Domestic EPC Required,EPC Present,08 Aug 2012,D - 55 to 68,65.0,C - 69 to 80,73.0,BB114EF,100010337799.0,"8, Dunoon Street",0.4596 -5672,182787,9 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Bottom,Domestic EPC Required,EPC Present,24 Jul 2012,C - 69 to 80,72.0,C - 69 to 80,75.0,BB114EF,100010337800.0,"9, Dunoon Street",0.4596 -5720,40916,10 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Bottom,Domestic EPC Required,EPC Present,11 Nov 2008,C - 69 to 80,71.0,C - 69 to 80,79.0,BB114EF,100010337801.0,"10, Dunoon Street",0.4652 -5773,233289,11 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Bottom,Domestic EPC Required,EPC Present,26 Feb 2015,D - 55 to 68,62.0,C - 69 to 80,74.0,BB114EF,100010337802.0,"11, Dunoon Street",0.4652 -5818,88992,12 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Bottom,Domestic EPC Required,EPC Present,16 Oct 2009,D - 55 to 68,65.0,C - 69 to 80,76.0,BB114EF,100010337803.0,"12, Dunoon Street",0.4652 -5872,95845,13 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Top,Domestic EPC Required,EPC Present,27 Jun 2023,C - 69 to 80,73.0,C - 69 to 80,73.0,BB114EF,100010337804.0,13 Dunoon Street,0.4652 -5913,40924,14 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Top,Domestic EPC Required,EPC Present,07 Jul 2009,D - 55 to 68,65.0,C - 69 to 80,75.0,BB114EF,100010337805.0,"14, Dunoon Street",0.4652 -6004,286347,16 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Bungalow: End Terr,Domestic EPC Required,EPC Present,19 Jul 2017,D - 55 to 68,57.0,B - 81 to 91,84.0,BB114EF,100010337807.0,"16, Dunoon Street",0.4652 -6057,362481,17 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB114EF,100010337808.0,17 Dunoon Street,0.4652 -6097,95193,18 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,11 May 2010,C - 69 to 80,69.0,C - 69 to 80,72.0,BB114EF,100010337809.0,"18, Dunoon Street",0.4652 -6144,362491,19 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB114EF,100010337810.0,19 Dunoon Street,0.4652 -6188,106385,20 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Feb 2011,D - 55 to 68,66.0,C - 69 to 80,70.0,BB114EF,,, -6234,126692,21 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB114EF,100010337812.0,21 Dunoon Street,0.4652 -6281,362506,22 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Bungalow: End Terr,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB114EF,100010337813.0,22 Dunoon Street,0.4652 -6331,40944,23 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Top,Domestic EPC Required,EPC Present,26 May 2021,D - 55 to 68,63.0,C - 69 to 80,70.0,BB114EF,100010337814.0,23 DUNOON STREET,0.4652 -6372,96033,24 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Top,Domestic EPC Required,EPC Present,10 Nov 2021,D - 55 to 68,65.0,C - 69 to 80,73.0,BB114EF,100010337815.0,24 Dunoon Street,0.4652 -6421,229148,25 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Bottom,Domestic EPC Required,EPC Present,09 Oct 2014,D - 55 to 68,65.0,C - 69 to 80,75.0,BB114EF,100010337816.0,"25, Dunoon Street",0.4652 -6469,40953,26 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Bottom,Domestic EPC Required,EPC Present,22 Feb 2009,D - 55 to 68,63.0,C - 69 to 80,74.0,BB114EF,100010337817.0,"26, Dunoon Street",0.4652 -6575,241793,28 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Bottom,Domestic EPC Required,EPC Present,29 Sep 2015,D - 55 to 68,64.0,C - 69 to 80,71.0,BB114EF,100010337819.0,"28, Dunoon Street",0.4652 -6674,40957,30 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Top,Domestic EPC Required,EPC Present,27 Jun 2023,D - 55 to 68,67.0,C - 69 to 80,74.0,BB114EF,100010337821.0,30 Dunoon Street,0.4652 -6722,304933,31 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Apr 2019,D - 55 to 68,65.0,B - 81 to 91,85.0,BB114EF,100010337822.0,"31, Dunoon Street",0.4652 -6774,100568,32 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Sep 2018,D - 55 to 68,57.0,C - 69 to 80,80.0,BB114EF,100010337823.0,"32, Dunoon Street",0.4652 -6868,196095,34 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Jan 2013,E - 39 to 54,52.0,B - 81 to 91,85.0,BB114EF,100010337825.0,"34, Dunoon Street",0.4652 -6921,116277,35 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Jul 2025,D - 55 to 68,67.0,C - 69 to 80,79.0,BB114EF,100010337826.0,35 Dunoon Street,0.4652 -9755,252162,29 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Top,Domestic EPC Required,EPC Present,02 Mar 2016,D - 55 to 68,66.0,C - 69 to 80,75.0,BB114EF,100010337820.0,"29, Dunoon Street",0.4652 -13748,359597,15 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Bungalow: End Terr,Domestic EPC Required,EPC Present,05 May 2023,D - 55 to 68,67.0,B - 81 to 91,88.0,BB114EF,100010337806.0,15 Dunoon Street,0.4652 -13765,360279,27 Dunoon Street Burnley Lancashire BB11 4EF,,, BB11 4EF,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jun 2023,C - 69 to 80,70.0,C - 69 to 80,73.0,BB114EF,100010337818.0,27 Dunoon Street,0.4652 -5332,110889,29 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,82.0,BB115LJ,100010341358.0,29 Harold Avenue,0.4652 -5442,40904,31 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Oct 2023,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LJ,100010341360.0,31 Harold Avenue,0.4652 -5496,252242,32 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jul 2016,D - 55 to 68,68.0,B - 81 to 91,84.0,BB115LJ,100010341361.0,"32, Harold Avenue",0.4652 -5544,226301,33 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,70.0,B - 81 to 91,84.0,BB115LJ,100010341362.0,33 Harold Avenue,0.4652 -5648,110925,35 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,69.0,C - 69 to 80,75.0,BB115LJ,100010341364.0,35 Harold Avenue,0.4652 -5707,110930,36 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Dec 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115LJ,100010341365.0,36 Harold Avenue,0.4652 -5949,89319,41 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Nov 2009,C - 69 to 80,69.0,C - 69 to 80,71.0,BB115LJ,100010341370.0,"41, Harold Avenue",0.4652 -6081,111170,44 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Oct 2023,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115LJ,100010341373.0,44 Harold Avenue,0.4652 -6130,250581,45 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Jun 2016,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115LJ,100010341374.0,"45, Harold Avenue",0.4652 -6173,96031,46 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Feb 2011,D - 55 to 68,60.0,C - 69 to 80,74.0,BB115LJ,100010341375.0,"46, Harold Avenue",0.4652 -6219,111178,47 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,67.0,C - 69 to 80,75.0,BB115LJ,100010341376.0,"47, Harold Avenue",0.4652 -6261,111181,48 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115LJ,100010341377.0,48 Harold Avenue,0.4652 -6404,111186,51 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2021,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LJ,100010341380.0,51 Harold Avenue,0.4652 -6454,40952,52 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,60.0,C - 69 to 80,74.0,BB115LJ,100010341381.0,"52, Harold Avenue",0.4652 -6561,111193,54 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Feb 2026,C - 69 to 80,72.0,C - 69 to 80,78.0,BB115LJ,100010341383.0,"54, Harold Avenue",0.4652 -6605,76963,55 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Dec 2025,C - 69 to 80,71.0,C - 69 to 80,79.0,BB115LJ,100010341384.0,55 Harold Avenue,0.4652 -6705,40960,57 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: End Terrace,Domestic EPC Required,EPC Present,05 Jul 2009,D - 55 to 68,66.0,C - 69 to 80,71.0,BB115LJ,100010341386.0,"57, Harold Avenue",0.4652 -6759,111198,58 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,71.0,B - 81 to 91,89.0,BB115LJ,100010341387.0,58 Harold Avenue,0.4652 -6803,238797,59 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jan 2026,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115LJ,100010341388.0,59 Harold Avenue,0.4652 -7051,94841,64 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115LJ,100010341393.0,64 Harold Avenue,0.4652 -7149,40978,66 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Feb 2026,C - 69 to 80,71.0,C - 69 to 80,77.0,BB115LJ,100010341395.0,"66, Harold Avenue",0.4652 -7300,111213,69 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Dec 2010,D - 55 to 68,60.0,C - 69 to 80,75.0,BB115LJ,100010341398.0,"69, Harold Avenue",0.4652 -7490,362592,73 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB115LJ,100010341402.0,73 Harold Avenue,0.4652 -7804,103505,79 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: End Terrace,Domestic EPC Required,EPC Present,28 Nov 2025,D - 55 to 68,68.0,C - 69 to 80,76.0,BB115LJ,100010341407.0,79 Harold Avenue,0.4652 -8011,41019,83 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Dec 2010,D - 55 to 68,61.0,C - 69 to 80,76.0,BB115LJ,100010341409.0,"83, Harold Avenue",0.4652 -8211,111298,87 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: End Terrace,Domestic EPC Required,EPC Present,09 Feb 2011,D - 55 to 68,67.0,C - 69 to 80,75.0,BB115LJ,100010341411.0,"87, Harold Avenue",0.4652 -9668,110920,34 Harold Avenue Burnley Lancashire BB11 5LJ,,, BB11 5LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Dec 2021,C - 69 to 80,71.0,B - 81 to 91,88.0,BB115LJ,100010341363.0,34 Harold Avenue,0.4652 -5357,102922,2 Mount Lane Cliviger Burnley Lancashire BB10 4TL,,, BB10 4TL,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2025,C - 69 to 80,79.0,A - 92 Plus,116.0,BB104TL,100010349640.0,"2 Mount Lane, Cliviger",0.535 -5467,244952,4 Mount Lane Cliviger Burnley Lancashire BB10 4TL,,, BB10 4TL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Oct 2015,C - 69 to 80,71.0,B - 81 to 91,90.0,BB104TL,100010349642.0,"4, Mount Lane, Cliviger",0.535 -5392,223038,26 Killington Street Burnley Lancashire BB10 1TT,,, BB10 1TT,House: End Terrace,Domestic EPC Required,EPC Present,26 Jun 2025,D - 55 to 68,61.0,C - 69 to 80,77.0,BB101TT,100010344672.0,26 Killington Street,0.4845 -10891,41104,19 Killington Street Burnley Lancashire BB10 1TT,,, BB10 1TT,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Mar 2009,D - 55 to 68,57.0,D - 55 to 68,67.0,BB101TT,100010344666.0,"19, Killington Street",0.4845 -5404,40901,5 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,House: End Terrace,Domestic EPC Required,EPC Present,05 Mar 2009,D - 55 to 68,60.0,D - 55 to 68,66.0,BB102RJ,100010328572.0,"5, Beckenham Court",0.4705 -5721,362454,11 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,House: End Terrace,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102RJ,100010328578.0,11 Beckenham Court,0.4754 -5771,362460,12 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,75.0,B - 81 to 91,88.0,BB102RJ,100010328579.0,12 Beckenham Court,0.4754 -5821,250068,13 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 May 2016,C - 69 to 80,69.0,B - 81 to 91,82.0,BB102RJ,100010328580.0,"13, Beckenham Court",0.4754 -5868,252238,14 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,House: End Terrace,Domestic EPC Required,EPC Present,17 Jul 2024,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102RJ,100010328581.0,14 Beckenham Court,0.4754 -5917,94887,15 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Bottom,Domestic EPC Required,EPC Present,22 Feb 2012,D - 55 to 68,58.0,D - 55 to 68,61.0,BB102RJ,100010328582.0,"15, Beckenham Court",0.4754 -5966,40929,16 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Bottom,Domestic EPC Required,EPC Present,12 May 2023,C - 69 to 80,74.0,C - 69 to 80,77.0,BB102RJ,100010328583.0,16 Beckenham Court,0.4754 -6008,40930,17 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Bottom,Domestic EPC Required,EPC Present,21 Jan 2026,C - 69 to 80,76.0,C - 69 to 80,79.0,BB102RJ,100010328584.0,17 Beckenham Court,0.4754 -6053,89765,18 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Top,Domestic EPC Required,EPC Present,08 Oct 2024,C - 69 to 80,77.0,C - 69 to 80,78.0,BB102RJ,100010328585.0,18 Beckenham Court,0.4754 -6100,362483,19 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Top,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB102RJ,100010328586.0,19 Beckenham Court,0.4754 -6148,290413,20 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Top,Domestic EPC Required,EPC Present,02 Aug 2017,C - 69 to 80,75.0,C - 69 to 80,78.0,BB102RJ,100010328587.0,"20, Beckenham Court",0.4754 -6192,362495,21 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Bottom,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,76.0,C - 69 to 80,78.0,BB102RJ,100010328588.0,21 Beckenham Court,0.4754 -6239,362502,22 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Bottom,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,77.0,C - 69 to 80,78.0,BB102RJ,100010328589.0,22 Beckenham Court,0.4754 -6279,250582,23 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Bottom,Domestic EPC Required,EPC Present,15 Jun 2016,D - 55 to 68,68.0,C - 69 to 80,74.0,BB102RJ,100010328590.0,"23, Beckenham Court",0.4754 -6333,40945,24 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Top,Domestic EPC Required,EPC Present,28 Aug 2025,C - 69 to 80,80.0,C - 69 to 80,80.0,BB102RJ,100010328591.0,24 Beckenham Court,0.4754 -6376,362512,25 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Top,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB102RJ,100010328592.0,25 Beckenham Court,0.4754 -6427,116217,26 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Top,Domestic EPC Required,EPC Present,21 Nov 2025,C - 69 to 80,80.0,C - 69 to 80,80.0,BB102RJ,100010328593.0,26 Beckenham Court,0.4754 -6471,90209,27 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,House: End Terrace,Domestic EPC Required,EPC Present,22 Feb 2010,D - 55 to 68,62.0,D - 55 to 68,63.0,BB102RJ,100010328594.0,"27, Beckenham Court",0.4754 -6625,325381,30 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Jan 2020,C - 69 to 80,76.0,B - 81 to 91,89.0,BB102RJ,100010328597.0,"30, Beckenham Court",0.4754 -6675,98124,31 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Bottom,Domestic EPC Required,EPC Present,28 Aug 2025,C - 69 to 80,75.0,C - 69 to 80,78.0,BB102RJ,100010328598.0,31 Beckenham Court,0.4754 -6727,325281,32 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Bottom,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,71.0,C - 69 to 80,76.0,BB102RJ,100010328599.0,"32, Beckenham Court",0.4754 -6776,325282,33 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Bottom,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,73.0,C - 69 to 80,77.0,BB102RJ,100010328600.0,"33, Beckenham Court",0.4754 -6827,90086,34 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Top,Domestic EPC Required,EPC Present,02 Jan 2026,C - 69 to 80,77.0,C - 69 to 80,77.0,BB102RJ,100010328601.0,34 Beckenham Court,0.4754 -6875,40965,35 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Top,Domestic EPC Required,EPC Present,21 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,78.0,BB102RJ,100010328602.0,35 Beckenham Court,0.4754 -12765,322338,36 Beckenham Court Burnley Lancashire BB10 2RJ,,, BB10 2RJ,Flat: Top,Domestic EPC Required,EPC Present,18 Nov 2012,D - 55 to 68,68.0,C - 69 to 80,71.0,BB102RJ,100010328603.0,"36, Beckenham Court",0.4754 -5471,295089,8 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,House: End Terrace,Domestic EPC Required,EPC Present,24 Aug 2017,D - 55 to 68,63.0,C - 69 to 80,78.0,BB126AZ,100010332810.0,8 Cardigan Avenue,0.4705 -5518,222433,9 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,House: End Terrace,Domestic EPC Required,EPC Present,12 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,80.0,BB126AZ,100010332811.0,9 Cardigan Avenue,0.4705 -5573,210943,10 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2013,D - 55 to 68,58.0,C - 69 to 80,80.0,BB126AZ,100010332812.0,"10, Cardigan Avenue",0.4754 -5623,112174,11 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,House: End Terrace,Domestic EPC Required,EPC Present,02 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB126AZ,100010332813.0,11 Cardigan Avenue,0.4754 -5681,362449,12 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Sep 2022,C - 69 to 80,73.0,B - 81 to 91,88.0,BB126AZ,100010332814.0,12 Cardigan Avenue,0.4754 -5780,362461,14 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,Flat: Top,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB126AZ,100010332816.0,14 Cardigan Avenue,0.4754 -5828,362464,15 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,83.0,BB126AZ,100010332817.0,15 Cardigan Avenue,0.4754 -5880,223607,16 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,Flat: Bottom,Domestic EPC Required,EPC Present,25 Sep 2024,C - 69 to 80,72.0,C - 69 to 80,74.0,BB126AZ,100010332818.0,16 Cardigan Avenue,0.4754 -5925,245846,17 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,House: End Terrace,Domestic EPC Required,EPC Present,24 Jul 2017,D - 55 to 68,63.0,C - 69 to 80,78.0,BB126AZ,100010332819.0,17 Cardigan Avenue,0.4754 -5971,324895,18 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,Flat: Bottom,Domestic EPC Required,EPC Present,07 Jul 2016,C - 69 to 80,71.0,C - 69 to 80,73.0,BB126AZ,100010332820.0,"18, Cardigan Avenue",0.4754 -6013,245825,19 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,Flat: Top,Domestic EPC Required,EPC Present,02 Dec 2015,C - 69 to 80,74.0,C - 69 to 80,77.0,BB126AZ,100010332821.0,"19, Cardigan Avenue",0.4754 -6063,179652,20 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,Flat: Top,Domestic EPC Required,EPC Present,02 May 2012,C - 69 to 80,73.0,C - 69 to 80,79.0,BB126AZ,100010332822.0,"20, Cardigan Avenue",0.4754 -6105,362484,21 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,Flat: Middle,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB126AZ,100010332823.0,21 Cardigan Avenue,0.4754 -6153,359963,22 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,Flat: Top,Domestic EPC Required,EPC Present,06 Jun 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB126AZ,100010332824.0,22 Cardigan Avenue,0.4754 -6244,205937,24 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,Flat: Bottom,Domestic EPC Required,EPC Present,02 Jan 2026,C - 69 to 80,70.0,C - 69 to 80,75.0,BB126AZ,100010332826.0,24 Cardigan Avenue,0.4754 -11684,237914,23 Cardigan Avenue Burnley Lancashire BB12 6AZ,,, BB12 6AZ,Flat: Bottom,Domestic EPC Required,EPC Present,07 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,76.0,BB126AZ,100010332825.0,23 Cardigan Avenue,0.4754 -5481,40908,1 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Jul 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB127BU,10003781595.0,"1 Regent Close, Padiham",0.6121 -5526,252142,2 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,79.0,BB127BU,10003781598.0,"2 Regent Close, Padiham",0.6121 -5581,221664,3 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127BU,10003781599.0,"3, Regent Close, Padiham",0.6121 -5627,222850,4 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Mar 2014,C - 69 to 80,70.0,B - 81 to 91,91.0,BB127BU,10003781600.0,"4, Regent Close, Padiham",0.6121 -5692,252133,5 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Nov 2015,C - 69 to 80,72.0,A - 92 Plus,92.0,BB127BU,10003781601.0,"5 Regent Close, Padiham",0.6121 -5736,233924,6 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Mar 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127BU,10003781602.0,"6, Regent Close, Padiham",0.6121 -5790,90133,7 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: End Terr,Domestic EPC Required,EPC Present,29 Jan 2010,D - 55 to 68,64.0,C - 69 to 80,71.0,BB127BU,10003781603.0,"7 Regent Close, Padiham",0.6121 -5836,252146,8 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: End Terr,Domestic EPC Required,EPC Present,31 May 2024,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BU,10003781604.0,"8 Regent Close, Padiham",0.6121 -5932,118271,10 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,75.0,B - 81 to 91,83.0,BB127BU,10003781596.0,"10 Regent Close, Padiham",0.6154 -6021,211778,12 Regent Close Padiham Lancashire BB12 7BU,,, BB12 7BU,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,79.0,B - 81 to 91,86.0,BB127BU,10003781597.0,"12 Regent Close, Padiham",0.6154 -5535,295103,1 Portal Grove Burnley Lancashire BB12 6DN,,, BB12 6DN,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Sep 2017,D - 55 to 68,64.0,B - 81 to 91,86.0,BB126DN,100010352391.0,"1, Portal Grove",0.4536 -5940,362472,9 Portal Grove Burnley Lancashire BB12 6DN,,, BB12 6DN,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB126DN,100010352399.0,9 Portal Grove,0.4536 -5984,362474,10 Portal Grove Burnley Lancashire BB12 6DN,,, BB12 6DN,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,84.0,BB126DN,100010352400.0,10 Portal Grove,0.4596 -6030,362478,11 Portal Grove Burnley Lancashire BB12 6DN,,, BB12 6DN,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126DN,100010352401.0,11 Portal Grove,0.4596 -6166,239481,14 Portal Grove Burnley Lancashire BB12 6DN,,, BB12 6DN,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Aug 2015,D - 55 to 68,68.0,B - 81 to 91,86.0,BB126DN,100010352404.0,"14, Portal Grove",0.4596 -5549,96715,108 Victoria Road Padiham Lancashire BB12 8TG,,, BB12 8TG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Jul 2010,D - 55 to 68,65.0,C - 69 to 80,70.0,BB128TG,100010359438.0,"108, Victoria Road, Padiham",0.6214 -5655,244956,110 Victoria Road Padiham Lancashire BB12 8TG,,, BB12 8TG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Oct 2015,D - 55 to 68,66.0,B - 81 to 91,90.0,BB128TG,100010359439.0,"110, Victoria Road, Padiham",0.6214 -5624,40915,41 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Aug 2022,C - 69 to 80,72.0,B - 81 to 91,89.0,BB114DN,100010348482.0,41 Melrose Avenue,0.4705 -5733,95502,43 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,26 May 2010,D - 55 to 68,68.0,D - 55 to 68,68.0,BB114DN,100010348484.0,"43, Melrose Avenue",0.4705 -5831,362465,45 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB114DN,100010348486.0,45 Melrose Avenue,0.4705 -5928,252196,47 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jun 2011,E - 39 to 54,47.0,C - 69 to 80,69.0,BB114DN,100010348488.0,"47, Melrose Avenue",0.4705 -6020,113833,49 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,13 Jun 2011,D - 55 to 68,61.0,D - 55 to 68,67.0,BB114DN,100010348490.0,"49, Melrose Avenue",0.4705 -6109,40938,51 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,19 Aug 2023,D - 55 to 68,67.0,B - 81 to 91,89.0,BB114DN,100010348492.0,51 Melrose Avenue,0.4705 -6200,362496,53 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB114DN,100010348494.0,53 Melrose Avenue,0.4705 -6290,113834,55 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Sep 2025,C - 69 to 80,70.0,C - 69 to 80,79.0,BB114DN,100010348496.0,55 Melrose Avenue,0.4705 -6484,111258,59 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Apr 2011,D - 55 to 68,59.0,D - 55 to 68,65.0,BB114DN,100010348500.0,"59, Melrose Avenue",0.4705 -6588,252209,61 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jun 2011,E - 39 to 54,45.0,D - 55 to 68,68.0,BB114DN,100010348502.0,"61, Melrose Avenue",0.4705 -6688,362530,63 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB114DN,100010348504.0,63 Melrose Avenue,0.4705 -6788,95011,65 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,05 May 2010,D - 55 to 68,66.0,B - 81 to 91,83.0,BB114DN,100010348506.0,"65, Melrose Avenue",0.4705 -7337,220129,76 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Nov 2013,C - 69 to 80,73.0,B - 81 to 91,86.0,BB114DN,100010348509.0,"76, Melrose Avenue",0.4705 -7427,362586,78 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB114DN,100010348510.0,78 Melrose Avenue,0.4705 -7624,362601,82 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB114DN,100010348512.0,82 Melrose Avenue,0.4705 -10902,99022,84 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2010,C - 69 to 80,75.0,C - 69 to 80,75.0,BB114DN,100010348513.0,84 Melrose Avenue,0.4705 -13353,341046,57 Melrose Avenue Burnley Lancashire BB11 4DN,,, BB11 4DN,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,08 Sep 2021,D - 55 to 68,67.0,A - 92 Plus,92.0,BB114DN,100010348498.0,57 Melrose Avenue,0.4705 -5664,252219,1 Greenock Street Burnley Lancashire BB11 4DT,,, BB11 4DT,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB114DT,100010340520.0,1 Greenock Street,0.4705 -5713,362451,2 Greenock Street Burnley Lancashire BB11 4DT,,, BB11 4DT,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB114DT,100010340521.0,2 Greenock Street,0.4705 -5766,252197,3 Greenock Street Burnley Lancashire BB11 4DT,,, BB11 4DT,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2025,C - 69 to 80,73.0,C - 69 to 80,73.0,BB114DT,100010340522.0,3 Greenock Street,0.4705 -5816,184508,4 Greenock Street Burnley Lancashire BB11 4DT,,, BB11 4DT,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Dec 2025,D - 55 to 68,65.0,C - 69 to 80,80.0,BB114DT,100010340523.0,4 Greenock Street,0.4705 -6002,69667,8 Greenock Street Burnley Lancashire BB11 4DT,,, BB11 4DT,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Oct 2021,C - 69 to 80,72.0,B - 81 to 91,89.0,BB114DT,100010340526.0,8 Greenock Street,0.4705 -6095,40937,10 Greenock Street Burnley Lancashire BB11 4DT,,, BB11 4DT,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Sep 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB114DT,100010340527.0,10 Greenock Street,0.4754 -6185,252215,12 Greenock Street Burnley Lancashire BB11 4DT,,, BB11 4DT,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jul 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB114DT,100010340528.0,12 Greenock Street,0.4754 -6277,134546,14 Greenock Street Burnley Lancashire BB11 4DT,,, BB11 4DT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Feb 2012,D - 55 to 68,65.0,D - 55 to 68,65.0,BB114DT,100010340529.0,"14, Greenock Street",0.4754 -6370,362510,16 Greenock Street Burnley Lancashire BB11 4DT,,, BB11 4DT,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB114DT,100010340530.0,16 Greenock Street,0.4754 -5665,104038,2 Narvik Avenue Burnley Lancashire BB11 5DN,,, BB11 5DN,Bungalow: Detached,Domestic EPC Required,EPC Present,05 May 2011,D - 55 to 68,64.0,D - 55 to 68,66.0,BB115DN,100010349864.0,"2, Narvik Avenue",0.4596 -5767,104041,4 Narvik Avenue Burnley Lancashire BB11 5DN,,, BB11 5DN,Bungalow: Detached,Domestic EPC Required,EPC Present,27 Jan 2026,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115DN,100010349866.0,4 Narvik Avenue,0.4596 -5677,328071,9 Branch Road Burnley Lancashire BB11 3AT,,, BB11 3AT,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,71.0,B - 81 to 91,90.0,BB113AT,100010329513.0,"9, Branch Road",0.4471 -6059,40934,17 Branch Road Burnley Lancashire BB11 3AT,,, BB11 3AT,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 May 2009,D - 55 to 68,65.0,C - 69 to 80,70.0,BB113AT,100010329521.0,"17, Branch Road",0.4536 -12954,332693,46 Branch Road Burnley Lancashire BB11 3AT,,, BB11 3AT,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Oct 2020,C - 69 to 80,73.0,C - 69 to 80,78.0,BB113AT,100010329548.0,"46 BRANCH ROAD, BURNLEY",0.6121 -5683,229126,68 Church Street Padiham Lancashire BB12 8JQ,,, BB12 8JQ,House: End Terrace,Domestic EPC Required,EPC Present,08 Oct 2014,D - 55 to 68,59.0,B - 81 to 91,85.0,BB128JQ,10003759500.0,"68, Church Street, Padiham",0.6185 -5697,362450,3 Berkeley Crescent Padiham Lancashire BB12 6AF,,, BB12 6AF,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126AF,100010328981.0,"3, Berkshire Avenue",0.2122 -5797,105313,5 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Nov 2010,E - 39 to 54,54.0,C - 69 to 80,71.0,BB128NR,100010328921.0,"5, Berkeley Crescent, Padiham",0.6268 -5892,97713,7 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,14 Jun 2025,D - 55 to 68,63.0,B - 81 to 91,84.0,BB128NR,100010328923.0,"7 Berkeley Crescent, Padiham",0.6268 -5978,77015,9 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,70.0,B - 81 to 91,86.0,BB128NR,100010328925.0,"9, Berkeley Crescent, Padiham",0.6268 -6027,362477,10 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB128NR,100010328926.0,"10 Berkeley Crescent, Padiham",0.6293 -6074,110764,11 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Nov 2010,D - 55 to 68,58.0,C - 69 to 80,78.0,BB128NR,100010328927.0,"11, Berkeley Crescent, Padiham",0.6293 -6115,228557,12 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Sep 2014,C - 69 to 80,71.0,B - 81 to 91,86.0,BB128NR,100010328928.0,"12, Berkeley Crescent, Padiham",0.6293 -6163,362493,13 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB128NR,100010328929.0,"13 Berkeley Crescent, Padiham",0.6293 -6207,110783,14 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Nov 2010,D - 55 to 68,57.0,C - 69 to 80,73.0,BB128NR,100010328930.0,"14, Berkeley Crescent, Padiham",0.6293 -6297,362507,16 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB128NR,100010328932.0,"16 Berkeley Crescent, Padiham",0.6293 -6350,229259,17 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2014,D - 55 to 68,67.0,B - 81 to 91,82.0,BB128NR,100010328933.0,"17, Berkeley Crescent, Padiham",0.6293 -6395,362514,18 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB128NR,100010328934.0,"18 Berkeley Crescent, Padiham",0.6293 -6448,232405,19 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Feb 2015,D - 55 to 68,64.0,B - 81 to 91,84.0,BB128NR,100010328935.0,"19, Berkeley Crescent, Padiham",0.6293 -6550,362523,21 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB128NR,100010328937.0,"21 Berkeley Crescent, Padiham",0.6293 -6595,221629,22 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,70.0,B - 81 to 91,88.0,BB128NR,100010328938.0,"22, Berkeley Crescent, Padiham",0.6293 -6643,200833,23 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,14 Jun 2025,C - 69 to 80,69.0,B - 81 to 91,83.0,BB128NR,100010328939.0,"23 Berkeley Crescent, Padiham",0.6293 -6695,110874,24 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,24 Jan 2011,D - 55 to 68,64.0,C - 69 to 80,73.0,BB128NR,100010328940.0,"24, Berkeley Crescent, Padiham",0.6293 -6746,362536,25 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB128NR,100010328941.0,"25 Berkeley Crescent, Padiham",0.6293 -6794,362539,26 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB128NR,100010328942.0,"26 Berkeley Crescent, Padiham",0.6293 -6844,362542,27 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB128NR,100010328943.0,"27 Berkeley Crescent, Padiham",0.6293 -6892,274449,28 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Jun 2017,C - 69 to 80,69.0,B - 81 to 91,82.0,BB128NR,100010328944.0,"28, Berkeley Crescent, Padiham",0.6293 -6941,40968,29 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Mar 2022,D - 55 to 68,67.0,B - 81 to 91,88.0,BB128NR,100010328945.0,"29 Berkeley Crescent, Padiham",0.6293 -6991,362557,30 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB128NR,100010328946.0,"30 Berkeley Crescent, Padiham",0.6293 -7042,362563,31 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB128NR,100010328947.0,"31 Berkeley Crescent, Padiham",0.6293 -7089,362565,32 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB128NR,100010328948.0,"32 Berkeley Crescent, Padiham",0.6293 -7188,113828,34 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,30 Aug 2021,D - 55 to 68,67.0,B - 81 to 91,87.0,BB128NR,100010328950.0,"34 Berkeley Crescent, Padiham",0.6293 -7240,362572,35 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB128NR,100010328951.0,"35 Berkeley Crescent, Padiham",0.6293 -7291,362575,36 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB128NR,100010328952.0,"36 Berkeley Crescent, Padiham",0.6293 -7340,362578,37 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Aug 2022,D - 55 to 68,66.0,B - 81 to 91,86.0,BB128NR,100010328953.0,"37 Berkeley Crescent, Padiham",0.6293 -7384,362583,38 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB128NR,100010328954.0,"38 Berkeley Crescent, Padiham",0.6293 -7435,111154,39 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,19 Aug 2021,D - 55 to 68,66.0,B - 81 to 91,87.0,BB128NR,100010328955.0,"39 Berkeley Crescent, Padiham",0.6293 -7481,207475,40 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,10 Jul 2013,C - 69 to 80,69.0,B - 81 to 91,82.0,BB128NR,100010328956.0,"40, Berkeley Crescent, Padiham",0.6293 -7529,193901,41 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,07 Dec 2012,D - 55 to 68,68.0,B - 81 to 91,84.0,BB128NR,100010328957.0,"41, Berkeley Crescent, Padiham",0.6293 -7628,234530,43 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Apr 2015,C - 69 to 80,70.0,B - 81 to 91,88.0,BB128NR,100010328959.0,"43, Berkeley Crescent, Padiham",0.6293 -7686,90298,44 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jun 2014,C - 69 to 80,72.0,B - 81 to 91,85.0,BB128NR,100010328960.0,"44, Berkeley Crescent, Padiham",0.6293 -7741,362608,45 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,87.0,BB128NR,100010328961.0,"45 Berkeley Crescent, Padiham",0.6293 -7790,229261,46 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2014,C - 69 to 80,71.0,B - 81 to 91,84.0,BB128NR,100010328962.0,"46, Berkeley Crescent, Padiham",0.6293 -7849,362617,47 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB128NR,100010328963.0,"47 Berkeley Crescent, Padiham",0.6293 -7952,362621,49 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB128NR,100010328965.0,"49 Berkeley Crescent, Padiham",0.6293 -8048,222012,51 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Dec 2024,D - 55 to 68,60.0,B - 81 to 91,83.0,BB128NR,100010328966.0,"51 Berkeley Crescent, Padiham",0.6293 -8148,189412,53 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,02 Oct 2012,C - 69 to 80,69.0,B - 81 to 91,85.0,BB128NR,100010328967.0,"53, Berkeley Crescent, Padiham",0.6293 -8249,106907,55 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,68.0,C - 69 to 80,75.0,BB128NR,100010328968.0,"55, Berkeley Crescent, Padiham",0.6293 -8457,223678,59 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,22 Apr 2014,D - 55 to 68,65.0,B - 81 to 91,85.0,BB128NR,100010328970.0,"59, Berkeley Crescent, Padiham",0.6293 -8815,362675,65 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB128NR,100010328973.0,"65 Berkeley Crescent, Padiham",0.6293 -8930,96238,67 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Mar 2011,D - 55 to 68,58.0,C - 69 to 80,78.0,BB128NR,100010328974.0,"67, Berkeley Crescent, Padiham",0.6293 -9040,69689,69 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jul 2009,D - 55 to 68,68.0,C - 69 to 80,75.0,BB128NR,100010328975.0,"69, Berkeley Crescent, Padiham",0.6293 -9154,183759,71 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: End Terrace,Domestic EPC Required,EPC Present,02 Aug 2012,D - 55 to 68,68.0,B - 81 to 91,83.0,BB128NR,100010328976.0,"71, Berkeley Crescent, Padiham",0.6293 -9271,105068,73 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Aug 2021,D - 55 to 68,63.0,B - 81 to 91,85.0,BB128NR,100010328977.0,"73 Berkeley Crescent, Padiham",0.6293 -9389,362708,75 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,70.0,B - 81 to 91,89.0,BB128NR,100010328978.0,"75 Berkeley Crescent, Padiham",0.6293 -11053,181094,20 Berkeley Crescent Padiham Lancashire BB12 8NR,,, BB12 8NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Jun 2012,C - 69 to 80,74.0,B - 81 to 91,89.0,BB128NR,100010328936.0,"20, Berkeley Crescent, Padiham",0.6293 -5827,362463,11 Cunningham Grove Burnley Lancashire BB12 6DD,,, BB12 6DD,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB126DD,100010336650.0,11 Cunningham Grove,0.4801 -6015,295100,15 Cunningham Grove Burnley Lancashire BB12 6DD,,, BB12 6DD,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2017,D - 55 to 68,63.0,B - 81 to 91,86.0,BB126DD,100010336652.0,"15, Cunningham Grove",0.4801 -6586,105071,27 Cunningham Grove Burnley Lancashire BB12 6DD,,, BB12 6DD,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Dec 2025,C - 69 to 80,69.0,C - 69 to 80,75.0,BB126DD,100010336658.0,27 Cunningham Grove,0.4801 -5847,104061,36 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jul 2025,C - 69 to 80,74.0,C - 69 to 80,80.0,BB115SG,100010340666.0,36 Griffin Close,0.4652 -5942,104065,38 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Jan 2016,C - 69 to 80,73.0,B - 81 to 91,85.0,BB115SG,100010340668.0,"38, Griffin Close",0.4652 -6033,252270,40 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,House: End Terrace,Domestic EPC Required,EPC Present,08 Jul 2016,C - 69 to 80,72.0,B - 81 to 91,86.0,BB115SG,100010340670.0,"40, Griffin Close",0.4652 -6449,97638,49 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,House: End Terrace,Domestic EPC Required,EPC Present,04 Aug 2010,C - 69 to 80,70.0,C - 69 to 80,75.0,BB115SG,100010340677.0,"49, Griffin Close",0.4652 -6500,105056,50 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,House: End Terrace,Domestic EPC Required,EPC Present,23 Nov 2025,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115SG,100010340678.0,50 Griffin Close,0.4652 -7048,116215,61 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,Flat: Bottom,Domestic EPC Required,EPC Present,29 Jul 2011,C - 69 to 80,69.0,C - 69 to 80,73.0,BB115SG,100010340684.0,"61, Griffin Close",0.4652 -7146,199682,63 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,Flat: Top,Domestic EPC Required,EPC Present,13 Mar 2013,C - 69 to 80,72.0,C - 69 to 80,75.0,BB115SG,100010340685.0,"63, Griffin Close",0.4652 -7249,362573,65 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,Flat: Bottom,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB115SG,100010340686.0,65 Griffin Close,0.4652 -7345,114857,67 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,Flat: Top,Domestic EPC Required,EPC Present,24 Jun 2011,C - 69 to 80,75.0,C - 69 to 80,77.0,BB115SG,100010340687.0,"67, Griffin Close",0.4652 -7443,232410,69 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,Flat: Top,Domestic EPC Required,EPC Present,11 Feb 2015,C - 69 to 80,74.0,C - 69 to 80,76.0,BB115SG,100010340688.0,"69, Griffin Close",0.4652 -9734,328488,48 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Mar 2020,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115SG,100010340676.0,"48, Griffin Close",0.4652 -10904,94951,46 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jan 2026,C - 69 to 80,76.0,B - 81 to 91,88.0,BB115SG,100010340675.0,46 Griffin Close,0.4652 -12685,304831,71 Griffin Close Burnley Lancashire BB11 5SG,,, BB11 5SG,Flat: Bottom,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,74.0,C - 69 to 80,76.0,BB115SG,100010340689.0,71 Griffin Close,0.4652 -5869,227402,1 Rydal Close Padiham Lancashire BB12 8PQ,,, BB12 8PQ,House: End Terrace,Domestic EPC Required,EPC Present,05 Aug 2014,D - 55 to 68,58.0,B - 81 to 91,85.0,BB128PQ,100010355113.0,"1, Rydal Close, Padiham",0.6085 -5921,136774,2 Rydal Close Padiham Lancashire BB12 8PQ,,, BB12 8PQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,65.0,C - 69 to 80,73.0,BB128PQ,100010355114.0,"2 Rydal Close, Padiham",0.6085 -6005,90203,4 Rydal Close Padiham Lancashire BB12 8PQ,,, BB12 8PQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Feb 2010,D - 55 to 68,64.0,D - 55 to 68,67.0,BB128PQ,100010355116.0,"4, Rydal Close, Padiham",0.6085 -6098,108807,6 Rydal Close Padiham Lancashire BB12 8PQ,,, BB12 8PQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Mar 2011,C - 69 to 80,71.0,C - 69 to 80,74.0,BB128PQ,100010355118.0,"6, Rydal Close, Padiham",0.6085 -6189,40940,8 Rydal Close Padiham Lancashire BB12 8PQ,,, BB12 8PQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,17 Nov 2008,C - 69 to 80,69.0,C - 69 to 80,75.0,BB128PQ,100010355120.0,"8, Rydal Close, Padiham",0.6085 -6235,362501,9 Rydal Close Padiham Lancashire BB12 8PQ,,, BB12 8PQ,House: End Terrace,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB128PQ,100010355121.0,"9 Rydal Close, Padiham",0.6085 -6422,362516,13 Rydal Close Padiham Lancashire BB12 8PQ,,, BB12 8PQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB128PQ,100010355123.0,"13 Rydal Close, Padiham",0.6121 -5898,104063,37 Griffin Close Burnley Lancashire BB11 5SF,,, BB11 5SF,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Nov 2010,D - 55 to 68,62.0,C - 69 to 80,76.0,BB115SF,100010340667.0,"37, Griffin Close",0.4652 -5986,111155,39 Griffin Close Burnley Lancashire BB11 5SF,,, BB11 5SF,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Feb 2011,D - 55 to 68,57.0,C - 69 to 80,72.0,BB115SF,100010340669.0,"39, Griffin Close",0.4652 -6078,104069,41 Griffin Close Burnley Lancashire BB11 5SF,,, BB11 5SF,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Jul 2024,C - 69 to 80,77.0,B - 81 to 91,89.0,BB115SF,100010340671.0,41 Griffin Close,0.4652 -6170,111166,43 Griffin Close Burnley Lancashire BB11 5SF,,, BB11 5SF,House: End Terrace,Domestic EPC Required,EPC Present,23 Dec 2010,D - 55 to 68,56.0,C - 69 to 80,70.0,BB115SF,100010340673.0,"43, Griffin Close",0.4652 -5947,200834,2 Windermere Avenue Burnley Lancashire BB10 2AE,,, BB10 2AE,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Mar 2013,D - 55 to 68,68.0,B - 81 to 91,88.0,BB102AE,,, -6175,180891,7 Windermere Avenue Burnley Lancashire BB10 2AE,,, BB10 2AE,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Sep 2024,D - 55 to 68,67.0,B - 81 to 91,85.0,BB102AE,100010361124.0,7 Windermere Avenue,0.4801 -6217,326221,8 Windermere Avenue Burnley Lancashire BB10 2AE,,, BB10 2AE,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Feb 2020,C - 69 to 80,71.0,B - 81 to 91,86.0,BB102AE,100010361125.0,"8, Windermere Avenue",0.4801 -6308,243349,10 Windermere Avenue Burnley Lancashire BB10 2AE,,, BB10 2AE,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2015,D - 55 to 68,62.0,B - 81 to 91,88.0,BB102AE,100010361127.0,"10, Windermere Avenue",0.4845 -6356,326220,11 Windermere Avenue Burnley Lancashire BB10 2AE,,, BB10 2AE,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,62.0,C - 69 to 80,75.0,BB102AE,100010361128.0,11 Windermere Avenue,0.4845 -6706,326222,18 Windermere Avenue Burnley Lancashire BB10 2AE,,, BB10 2AE,House: End Terrace,Domestic EPC Required,EPC Present,07 Feb 2020,D - 55 to 68,68.0,B - 81 to 91,87.0,BB102AE,100010361135.0,"18, Windermere Avenue",0.4845 -6761,295079,19 Windermere Avenue Burnley Lancashire BB10 2AE,,, BB10 2AE,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Oct 2017,C - 69 to 80,70.0,B - 81 to 91,86.0,BB102AE,100010361136.0,"19, Windermere Avenue",0.4845 -6853,326219,21 Windermere Avenue Burnley Lancashire BB10 2AE,,, BB10 2AE,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Feb 2020,D - 55 to 68,63.0,B - 81 to 91,83.0,BB102AE,100010361138.0,"21, Windermere Avenue",0.4845 -7201,40979,28 Windermere Avenue Burnley Lancashire BB10 2AE,,, BB10 2AE,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jan 2009,D - 55 to 68,68.0,C - 69 to 80,71.0,BB102AE,100010361145.0,"28, Windermere Avenue",0.4845 -6000,90252,1 Moorland Road Burnley Lancashire BB11 2NY,,, BB11 2NY,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112NY,100010349321.0,1 Moorland Road,0.4596 -6367,40948,9 Moorland Road Burnley Lancashire BB11 2NY,,, BB11 2NY,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Nov 2008,D - 55 to 68,68.0,C - 69 to 80,73.0,BB112NY,100010349329.0,"9, Moorland Road",0.4596 -6864,110821,19 Moorland Road Burnley Lancashire BB11 2NY,,, BB11 2NY,House: End Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,C - 69 to 80,74.0,B - 81 to 91,86.0,BB112NY,100010349341.0,19 Moorland Road,0.4652 -6874,210871,19a Moorland Road Burnley Lancashire BB11 2NY,,, BB11 2NY,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Mar 2025,C - 69 to 80,69.0,B - 81 to 91,85.0,BB112NY,100010349339.0,19a Moorland Road,0.5219 -6877,362544,19b Moorland Road Burnley Lancashire BB11 2NY,,, BB11 2NY,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB112NY,100010349340.0,19b Moorland Road,0.5219 -6918,197121,20 Moorland Road Burnley Lancashire BB11 2NY,,, BB11 2NY,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Feb 2013,D - 55 to 68,67.0,B - 81 to 91,83.0,BB112NY,100010349342.0,20 Moorland Road,0.4652 -7218,110880,26 Moorland Road Burnley Lancashire BB11 2NY,,, BB11 2NY,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Jun 2017,D - 55 to 68,64.0,B - 81 to 91,85.0,BB112NY,100010349350.0,"26, Moorland Road",0.4652 -7814,194692,38 Moorland Road Burnley Lancashire BB11 2NY,,, BB11 2NY,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,C - 69 to 80,71.0,B - 81 to 91,84.0,BB112NY,100010349361.0,38 Moorland Road,0.4652 -6016,194525,21 Pheasantford Street Burnley Lancashire BB10 3BD,,, BB10 3BD,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Nov 2025,D - 55 to 68,65.0,C - 69 to 80,78.0,BB103BD,100010352068.0,21 Pheasantford Street,0.4925 -6034,40932,299 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Bottom,Domestic EPC Required,EPC Present,06 Jan 2026,C - 69 to 80,70.0,C - 69 to 80,70.0,BB115BS,100010334720.0,299 Coal Clough Lane,0.5309 -6122,201780,301 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Top,Domestic EPC Required,EPC Present,08 Apr 2013,C - 69 to 80,77.0,C - 69 to 80,78.0,BB115BS,100010334722.0,"301, Coal Clough Lane",0.5309 -6211,186167,303 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Bottom,Domestic EPC Required,EPC Present,16 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB115BS,100010334724.0,303 Coal Clough Lane,0.5309 -6303,89545,305 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Top,Domestic EPC Required,EPC Present,15 Nov 2025,A - 92 Plus,94.0,A - 92 Plus,95.0,BB115BS,100010334726.0,305 Coal Clough Lane,0.5309 -6399,221635,307 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,71.0,C - 69 to 80,75.0,BB115BS,100010334728.0,"307, Coal Clough Lane",0.5309 -6499,245296,309 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Top,Domestic EPC Required,EPC Present,15 Dec 2015,C - 69 to 80,72.0,C - 69 to 80,72.0,BB115BS,100010334729.0,"309, Coal Clough Lane",0.5309 -6600,96581,311 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Bottom,Domestic EPC Required,EPC Present,16 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,75.0,BB115BS,100010334731.0,311 Coal Clough Lane,0.5309 -6698,223072,313 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Top,Domestic EPC Required,EPC Present,16 Nov 2025,C - 69 to 80,79.0,C - 69 to 80,79.0,BB115BS,100010334733.0,313 Coal Clough Lane,0.5309 -6798,197947,315 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Bottom,Domestic EPC Required,EPC Present,16 Nov 2025,C - 69 to 80,76.0,C - 69 to 80,78.0,BB115BS,100010334735.0,315 Coal Clough Lane,0.5309 -6898,252163,317 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Top,Domestic EPC Required,EPC Present,17 Jun 2011,D - 55 to 68,64.0,C - 69 to 80,75.0,BB115BS,100010334737.0,"317, Coal Clough Lane",0.5309 -6998,359926,319 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Bottom,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,76.0,C - 69 to 80,78.0,BB115BS,100010334739.0,319 Coal Clough Lane,0.5309 -7092,252157,321 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Top,Domestic EPC Required,EPC Present,04 Oct 2024,C - 69 to 80,76.0,C - 69 to 80,77.0,BB115BS,100010334741.0,321 Coal Clough Lane,0.5309 -7198,138694,323 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jan 2026,C - 69 to 80,77.0,C - 69 to 80,78.0,BB115BS,100010334743.0,323 Coal Clough Lane,0.5309 -7297,107909,325 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Top,Domestic EPC Required,EPC Present,02 Mar 2026,C - 69 to 80,77.0,C - 69 to 80,79.0,BB115BS,100010334745.0,"325, Coal Clough Lane",0.5309 -7388,210924,327 Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Bottom,Domestic EPC Required,EPC Present,19 Jul 2023,C - 69 to 80,75.0,C - 69 to 80,78.0,BB115BS,100010334748.0,327 Coal Clough Lane,0.5309 -7401,245151,327a Coal Clough Lane Burnley Lancashire BB11 5BS,,, BB11 5BS,Flat: Top,Domestic EPC Required,EPC Present,16 Oct 2015,C - 69 to 80,74.0,C - 69 to 80,78.0,BB115BS,100010334747.0,"327a, Coal Clough Lane",0.575 -6045,69660,6 Hogarth Avenue Burnley Lancashire BB11 2NW,,, BB11 2NW,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jul 2009,D - 55 to 68,67.0,C - 69 to 80,70.0,BB112NW,100010342850.0,"6, Hogarth Avenue",0.4652 -6089,221599,7 Hogarth Avenue Burnley Lancashire BB11 2NW,,, BB11 2NW,House: End Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,D - 55 to 68,68.0,B - 81 to 91,86.0,BB112NW,100010342851.0,7 Hogarth Avenue,0.4652 -6179,110750,9 Hogarth Avenue Burnley Lancashire BB11 2NW,,, BB11 2NW,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Dec 2010,D - 55 to 68,63.0,C - 69 to 80,75.0,BB112NW,100010342853.0,"9, Hogarth Avenue",0.4652 -6222,246345,10 Hogarth Avenue Burnley Lancashire BB11 2NW,,, BB11 2NW,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jan 2016,D - 55 to 68,56.0,B - 81 to 91,86.0,BB112NW,100010342854.0,"10, Hogarth Avenue",0.4705 -6363,362509,13 Hogarth Avenue Burnley Lancashire BB11 2NW,,, BB11 2NW,House: End Terrace,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112NW,100010342857.0,13 Hogarth Avenue,0.4705 -6609,197464,18 Hogarth Avenue Burnley Lancashire BB11 2NW,,, BB11 2NW,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Feb 2013,D - 55 to 68,62.0,B - 81 to 91,82.0,BB112NW,100010342862.0,"18, Hogarth Avenue",0.4705 -6861,286338,23 Hogarth Avenue Burnley Lancashire BB11 2NW,,, BB11 2NW,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jun 2017,D - 55 to 68,63.0,B - 81 to 91,86.0,BB112NW,100010342867.0,"23, Hogarth Avenue",0.4705 -6906,226563,24 Hogarth Avenue Burnley Lancashire BB11 2NW,,, BB11 2NW,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,C - 69 to 80,69.0,B - 81 to 91,87.0,BB112NW,100010342868.0,24 Hogarth Avenue,0.4705 -6092,362482,1 Forfar Grove Burnley Lancashire BB11 5HZ,,, BB11 5HZ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB115HZ,10023759347.0,1 Forfar Grove,0.4536 -6136,362488,2 Forfar Grove Burnley Lancashire BB11 5HZ,,, BB11 5HZ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB115HZ,10023759350.0,2 Forfar Grove,0.4536 -6183,324894,3 Forfar Grove Burnley Lancashire BB11 5HZ,,, BB11 5HZ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Jun 2021,D - 55 to 68,65.0,B - 81 to 91,87.0,BB115HZ,10023759348.0,3 FORFAR GROVE,0.4536 -6228,362500,4 Forfar Grove Burnley Lancashire BB11 5HZ,,, BB11 5HZ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB115HZ,10023759351.0,4 Forfar Grove,0.4536 -6278,362505,5 Forfar Grove Burnley Lancashire BB11 5HZ,,, BB11 5HZ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB115HZ,10023759349.0,5 Forfar Grove,0.4536 -6323,40943,6 Forfar Grove Burnley Lancashire BB11 5HZ,,, BB11 5HZ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,07 Jul 2009,C - 69 to 80,69.0,C - 69 to 80,73.0,BB115HZ,10023759352.0,"6, Forfar Grove",0.4536 -6123,323628,35 Brunshaw Avenue Burnley Lancashire BB10 4LD,,, BB10 4LD,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Oct 2019,C - 69 to 80,70.0,B - 81 to 91,82.0,BB104LD,100010331282.0,"35, Brunshaw Avenue",0.4754 -6213,323629,37 Brunshaw Avenue Burnley Lancashire BB10 4LD,,, BB10 4LD,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Oct 2019,C - 69 to 80,74.0,B - 81 to 91,86.0,BB104LD,100010331284.0,"37, Brunshaw Avenue",0.4754 -6502,323630,43 Brunshaw Avenue Burnley Lancashire BB10 4LD,,, BB10 4LD,House: End Terrace,Domestic EPC Required,EPC Present,14 Oct 2019,C - 69 to 80,71.0,B - 81 to 91,84.0,BB104LD,100010331290.0,"43, Brunshaw Avenue",0.4754 -6899,247390,51 Brunshaw Avenue Burnley Lancashire BB10 4LD,,, BB10 4LD,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2016,C - 69 to 80,71.0,B - 81 to 91,86.0,BB104LD,100010331295.0,"51, Brunshaw Avenue",0.4754 -6999,247414,53 Brunshaw Avenue Burnley Lancashire BB10 4LD,,, BB10 4LD,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Mar 2016,C - 69 to 80,71.0,B - 81 to 91,86.0,BB104LD,100010331297.0,"53, Brunshaw Avenue",0.4754 -8363,247391,80 Brunshaw Avenue Burnley Lancashire BB10 4LD,,, BB10 4LD,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Mar 2016,C - 69 to 80,69.0,B - 81 to 91,87.0,BB104LD,100010331321.0,"80, Brunshaw Avenue",0.4754 -6141,105311,1 Wasdale Close Padiham Lancashire BB12 8NJ,,, BB12 8NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Aug 2021,E - 39 to 54,51.0,B - 81 to 91,87.0,BB128NJ,100010359807.0,"1 Wasdale Close, Padiham",0.6154 -6186,250594,2 Wasdale Close Padiham Lancashire BB12 8NJ,,, BB12 8NJ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Dec 2025,C - 69 to 80,69.0,C - 69 to 80,77.0,BB128NJ,100010359808.0,"2 Wasdale Close, Padiham",0.6154 -6273,240989,4 Wasdale Close Padiham Lancashire BB12 8NJ,,, BB12 8NJ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Sep 2015,D - 55 to 68,68.0,B - 81 to 91,90.0,BB128NJ,100010359810.0,"4, Wasdale Close, Padiham",0.6154 -6419,110733,7 Wasdale Close Padiham Lancashire BB12 8NJ,,, BB12 8NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Aug 2021,E - 39 to 54,50.0,B - 81 to 91,87.0,BB128NJ,100010359813.0,"7 Wasdale Close, Padiham",0.6154 -6521,252223,9 Wasdale Close Padiham Lancashire BB12 8NJ,,, BB12 8NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Nov 2008,D - 55 to 68,59.0,C - 69 to 80,69.0,BB128NJ,100010359815.0,"9, Wasdale Close, Padiham",0.6154 -6568,362524,10 Wasdale Close Padiham Lancashire BB12 8NJ,,, BB12 8NJ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,88.0,BB128NJ,100010359816.0,"10 Wasdale Close, Padiham",0.6185 -6916,220025,17 Wasdale Close Padiham Lancashire BB12 8NJ,,, BB12 8NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Nov 2013,D - 55 to 68,63.0,C - 69 to 80,78.0,BB128NJ,100010359821.0,"17, Wasdale Close, Padiham",0.6185 -7017,40972,19 Wasdale Close Padiham Lancashire BB12 8NJ,,, BB12 8NJ,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Nov 2010,E - 39 to 54,53.0,C - 69 to 80,69.0,BB128NJ,100010359822.0,"19, Wasdale Close, Padiham",0.6185 -6169,268808,2 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Nov 2016,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102RL,10003758114.0,"2, Chessington Green",0.4801 -6214,205792,3 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Jun 2013,D - 55 to 68,68.0,B - 81 to 91,82.0,BB102RL,10003758108.0,"3, Chessington Green",0.4801 -6302,229289,5 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,House: End Terrace,Domestic EPC Required,EPC Present,03 Feb 2026,C - 69 to 80,73.0,C - 69 to 80,80.0,BB102RL,10003758122.0,"5, Chessington Green",0.4801 -6352,40946,6 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,60.0,D - 55 to 68,66.0,BB102RL,10003758106.0,"6, Chessington Green",0.4801 -6401,325289,7 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Bottom,Domestic EPC Required,EPC Present,16 Dec 2019,C - 69 to 80,73.0,C - 69 to 80,78.0,BB102RL,10003758105.0,"7, Chessington Green",0.4801 -6450,325271,8 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Bottom,Domestic EPC Required,EPC Present,16 Dec 2019,C - 69 to 80,70.0,C - 69 to 80,76.0,BB102RL,10003758104.0,"8, Chessington Green",0.4801 -6556,96192,10 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Top,Domestic EPC Required,EPC Present,01 Jul 2010,C - 69 to 80,78.0,C - 69 to 80,79.0,BB102RL,10003758099.0,"10, Chessington Green",0.4845 -6650,124147,12 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2011,D - 55 to 68,62.0,D - 55 to 68,62.0,BB102RL,10003758119.0,"12, Chessington Green",0.4845 -6997,362559,19 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Bottom,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,75.0,C - 69 to 80,78.0,BB102RL,10003758121.0,19 Chessington Green,0.4845 -7047,89229,20 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Bottom,Domestic EPC Required,EPC Present,10 Dec 2025,C - 69 to 80,76.0,C - 69 to 80,79.0,BB102RL,10003758103.0,20 Chessington Green,0.4845 -7095,40975,21 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Bottom,Domestic EPC Required,EPC Present,21 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,74.0,BB102RL,10003758112.0,21 Chessington Green,0.4845 -7147,89068,22 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Top,Domestic EPC Required,EPC Present,28 Nov 2025,C - 69 to 80,77.0,C - 69 to 80,78.0,BB102RL,10003758111.0,22 Chessington Green,0.4845 -7197,295074,23 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Top,Domestic EPC Required,EPC Present,10 Nov 2017,C - 69 to 80,75.0,C - 69 to 80,78.0,BB102RL,10003758110.0,"23, Chessington Green",0.4845 -7246,201347,24 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Top,Domestic EPC Required,EPC Present,02 Apr 2013,D - 55 to 68,68.0,C - 69 to 80,71.0,BB102RL,10003758109.0,"24, Chessington Green",0.4845 -12862,327537,9 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Top,Domestic EPC Required,EPC Present,28 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,78.0,BB102RL,10003758113.0,9 Chessington Green,0.4801 -13290,338361,11 Chessington Green Burnley Lancashire BB10 2RL,,, BB10 2RL,Flat: Top,Domestic EPC Required,EPC Present,02 Feb 2026,C - 69 to 80,77.0,C - 69 to 80,80.0,BB102RL,10003758118.0,"11, Chessington Green",0.4845 -6174,362494,7 Creswick Avenue Burnley Lancashire BB11 2NZ,,, BB11 2NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,84.0,BB112NZ,100010336056.0,7 Creswick Avenue,0.4705 -6359,96679,11 Creswick Avenue Burnley Lancashire BB11 2NZ,,, BB11 2NZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,B - 81 to 91,83.0,B - 81 to 91,88.0,BB112NZ,100010336060.0,11 Creswick Avenue,0.4754 -6406,362515,12 Creswick Avenue Burnley Lancashire BB11 2NZ,,, BB11 2NZ,House: End Terrace,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,84.0,BB112NZ,100010336061.0,12 Creswick Avenue,0.4754 -7005,203986,24 Creswick Avenue Burnley Lancashire BB11 2NZ,,, BB11 2NZ,House: End Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,D - 55 to 68,68.0,B - 81 to 91,85.0,BB112NZ,100010336073.0,24 Creswick Avenue,0.4754 -7052,362564,25 Creswick Avenue Burnley Lancashire BB11 2NZ,,, BB11 2NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112NZ,100010336074.0,25 Creswick Avenue,0.4754 -6242,110660,2 Tuscan Avenue Burnley Lancashire BB11 5LS,,, BB11 5LS,House: End Terrace,Domestic EPC Required,EPC Present,07 Aug 2024,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115LS,100010359057.0,2 Tuscan Avenue,0.4596 -6285,110665,3 Tuscan Avenue Burnley Lancashire BB11 5LS,,, BB11 5LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,64.0,C - 69 to 80,75.0,BB115LS,100010359058.0,"3, Tuscan Avenue",0.4596 -6335,110673,4 Tuscan Avenue Burnley Lancashire BB11 5LS,,, BB11 5LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Feb 2011,D - 55 to 68,58.0,C - 69 to 80,76.0,BB115LS,100010359059.0,"4, Tuscan Avenue",0.4596 -6380,198888,5 Tuscan Avenue Burnley Lancashire BB11 5LS,,, BB11 5LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Mar 2013,C - 69 to 80,70.0,B - 81 to 91,86.0,BB115LS,100010359060.0,"5, Tuscan Avenue",0.4596 -6433,110685,6 Tuscan Avenue Burnley Lancashire BB11 5LS,,, BB11 5LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB115LS,100010359061.0,6 Tuscan Avenue,0.4596 -6475,110732,7 Tuscan Avenue Burnley Lancashire BB11 5LS,,, BB11 5LS,House: End Terrace,Domestic EPC Required,EPC Present,28 Jun 2024,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115LS,100010359062.0,7 Tuscan Avenue,0.4596 -6535,362521,8 Tuscan Avenue Burnley Lancashire BB11 5LS,,, BB11 5LS,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,81.0,BB115LS,100010359063.0,8 Tuscan Avenue,0.4596 -6628,252476,10 Tuscan Avenue Burnley Lancashire BB11 5LS,,, BB11 5LS,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Jul 2016,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115LS,100010359064.0,"10, Tuscan Avenue",0.4652 -6731,40961,12 Tuscan Avenue Burnley Lancashire BB11 5LS,,, BB11 5LS,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,62.0,C - 69 to 80,75.0,BB115LS,100010359065.0,"12, Tuscan Avenue",0.4652 -6266,362504,126 Sycamore Avenue Burnley Lancashire BB12 6AG,,, BB12 6AG,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126AG,100010357555.0,126 Sycamore Avenue,0.4801 -6558,125278,132 Sycamore Avenue Burnley Lancashire BB12 6AG,,, BB12 6AG,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Dec 2011,C - 69 to 80,69.0,C - 69 to 80,72.0,BB126AG,100010357561.0,"132, Sycamore Avenue",0.4801 -6662,362527,134 Sycamore Avenue Burnley Lancashire BB12 6AG,,, BB12 6AG,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB126AG,100010357563.0,134 Sycamore Avenue,0.4801 -6764,40963,136 Sycamore Avenue Burnley Lancashire BB12 6AG,,, BB12 6AG,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jun 2009,D - 55 to 68,55.0,C - 69 to 80,71.0,BB126AG,100010357565.0,"136, Sycamore Avenue",0.4801 -6859,362543,138 Sycamore Avenue Burnley Lancashire BB12 6AG,,, BB12 6AG,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Oct 2020,D - 55 to 68,59.0,B - 81 to 91,84.0,BB126AG,100010357567.0,"138 SYCAMORE AVENUE, BURNLEY",0.6268 -7056,204091,142 Sycamore Avenue Burnley Lancashire BB12 6AG,,, BB12 6AG,House: Semi-Detached,Domestic EPC Required,EPC Present,14 May 2013,D - 55 to 68,59.0,B - 81 to 91,86.0,BB126AG,100010357571.0,"142, Sycamore Avenue",0.4801 -7252,104912,146 Sycamore Avenue Burnley Lancashire BB12 6AG,,, BB12 6AG,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Nov 2010,E - 39 to 54,54.0,D - 55 to 68,61.0,BB126AG,100010357575.0,"146, Sycamore Avenue",0.4801 -6353,108008,101 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Aug 2015,D - 55 to 68,64.0,B - 81 to 91,88.0,BB104BN,100010328824.0,"101, Belvedere Road",0.4754 -6451,240418,103 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Sep 2021,C - 69 to 80,70.0,A - 92 Plus,93.0,BB104BN,100010328826.0,103 Belvedere Road,0.4754 -6555,184510,105 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Aug 2015,C - 69 to 80,70.0,B - 81 to 91,91.0,BB104BN,100010328828.0,"105, Belvedere Road",0.4754 -6651,89461,107 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: End Terr,Domestic EPC Required,EPC Present,19 Sep 2021,C - 69 to 80,69.0,B - 81 to 91,90.0,BB104BN,100010328830.0,107 Belvedere Road,0.4754 -6752,240422,109 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Aug 2015,D - 55 to 68,66.0,B - 81 to 91,87.0,BB104BN,100010328831.0,"109, Belvedere Road",0.4754 -6846,240423,111 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Aug 2015,D - 55 to 68,65.0,B - 81 to 91,88.0,BB104BN,100010328832.0,"111, Belvedere Road",0.4754 -6945,250598,113 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: End Terr,Domestic EPC Required,EPC Present,17 Dec 2025,C - 69 to 80,72.0,C - 69 to 80,80.0,BB104BN,100010328833.0,113 Belvedere Road,0.4754 -7049,240424,115 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Aug 2015,D - 55 to 68,64.0,B - 81 to 91,87.0,BB104BN,100010328834.0,"115, Belvedere Road",0.4754 -7145,236580,117 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Aug 2015,E - 39 to 54,53.0,C - 69 to 80,76.0,BB104BN,100010328835.0,"117, Belvedere Road",0.4754 -7248,240425,119 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Aug 2015,D - 55 to 68,68.0,B - 81 to 91,89.0,BB104BN,100010328836.0,"119, Belvedere Road",0.4754 -7346,240426,121 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Aug 2015,D - 55 to 68,65.0,B - 81 to 91,88.0,BB104BN,100010328837.0,"121, Belvedere Road",0.4754 -7442,211482,123 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Aug 2015,D - 55 to 68,65.0,B - 81 to 91,87.0,BB104BN,100010328838.0,"123, Belvedere Road",0.4754 -7534,240427,125 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Flat: Bottom,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,73.0,BB104BN,100010328839.0,125 Belvedere Road,0.4754 -7637,241897,127 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Flat: Bottom,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,73.0,BB104BN,100010328840.0,127 Belvedere Road,0.4754 -7747,362609,129 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Flat: Top,Domestic EPC Required,EPC Present,19 Aug 2025,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104BN,100010328841.0,129 Belvedere Road,0.4754 -7854,241898,131 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Flat: Top,Domestic EPC Required,EPC Present,05 Dec 2025,C - 69 to 80,76.0,C - 69 to 80,76.0,BB104BN,100010328842.0,131 Belvedere Road,0.4754 -7959,76897,133 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Flat: Bottom,Domestic EPC Required,EPC Present,28 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104BN,100010328843.0,133 Belvedere Road,0.4754 -8057,188287,135 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Flat: Bottom,Domestic EPC Required,EPC Present,04 Sep 2012,D - 55 to 68,68.0,C - 69 to 80,73.0,BB104BN,100010328844.0,"135, Belvedere Road",0.4754 -8155,116413,137 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Flat: Top,Domestic EPC Required,EPC Present,20 Aug 2015,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104BN,100010328846.0,"137, Belvedere Road",0.4754 -8258,116213,139 Belvedere Road Burnley Lancashire BB10 4BN,,, BB10 4BN,Flat: Top,Domestic EPC Required,EPC Present,19 Aug 2025,C - 69 to 80,74.0,C - 69 to 80,75.0,BB104BN,100010328848.0,139 Belvedere Road,0.4754 -6378,362513,1 Douglas Road Briercliffe Burnley Lancashire BB10 2JQ,,, BB10 2JQ,House: End Terrace,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB102JQ,100010337438.0,"1 Douglas Road, Briercliffe",0.5525 -6426,229667,2 Douglas Road Briercliffe Burnley Lancashire BB10 2JQ,,, BB10 2JQ,House: End Terrace,Domestic EPC Required,EPC Present,18 Oct 2017,D - 55 to 68,64.0,B - 81 to 91,86.0,BB102JQ,100010337439.0,"2, Douglas Road, Briercliffe",0.5525 -6431,250426,255 Colne Road Burnley Lancashire BB10 1EF,,, BB10 1EF,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 May 2016,D - 55 to 68,68.0,B - 81 to 91,90.0,BB101EF,100010335453.0,"255, Colne Road",0.4536 -6453,99553,18 Ruskin Grove Hapton Burnley Lancashire BB11 5RE,,, BB11 5RE,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Sep 2010,C - 69 to 80,72.0,C - 69 to 80,76.0,BB115RE,100010355021.0,"18, Ruskin Grove, Hapton",0.5389 -6468,250102,36 Bristol Street Burnley Lancashire BB11 4EU,,, BB11 4EU,Flat: Top,Domestic EPC Required,EPC Present,17 May 2016,C - 69 to 80,74.0,C - 69 to 80,75.0,BB114EU,100010330449.0,"36, Bristol Street",0.4705 -6573,40955,38 Bristol Street Burnley Lancashire BB11 4EU,,, BB11 4EU,Flat: Bottom,Domestic EPC Required,EPC Present,03 Nov 2008,D - 55 to 68,67.0,C - 69 to 80,70.0,BB114EU,100010330450.0,"38, Bristol Street",0.4705 -6676,362529,40 Bristol Street Burnley Lancashire BB11 4EU,,, BB11 4EU,Flat: Bottom,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,74.0,C - 69 to 80,77.0,BB114EU,100010330451.0,40 Bristol Street,0.4705 -6778,89032,42 Bristol Street Burnley Lancashire BB11 4EU,,, BB11 4EU,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2009,D - 55 to 68,62.0,C - 69 to 80,69.0,BB114EU,100010330452.0,"42, Bristol Street",0.4705 -7168,211485,50 Bristol Street Burnley Lancashire BB11 4EU,,, BB11 4EU,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Oct 2013,D - 55 to 68,68.0,B - 81 to 91,83.0,BB114EU,100010330456.0,"50, Bristol Street",0.4705 -13775,368709,34 Bristol Street Burnley Lancashire BB11 4EU,,, BB11 4EU,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,29 Jul 2023,C - 69 to 80,69.0,B - 81 to 91,90.0,BB114EU,100010330448.0,34 Bristol Street,0.4705 -6478,295659,4 Keynsham Grove Burnley Lancashire BB12 0JU,,, BB12 0JU,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Feb 2018,C - 69 to 80,74.0,B - 81 to 91,86.0,BB120JU,100010344567.0,"4, Keynsham Grove",0.4652 -6585,202619,6 Keynsham Grove Burnley Lancashire BB12 0JU,,, BB12 0JU,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Apr 2013,C - 69 to 80,69.0,B - 81 to 91,85.0,BB120JU,100010344569.0,"6, Keynsham Grove",0.4652 -6523,106311,1 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,16 Nov 2017,D - 55 to 68,65.0,B - 81 to 91,87.0,BB115JQ,100010327893.0,"1, Ballater Street",0.4705 -6574,179916,2 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115JQ,100010327894.0,2 Ballater Street,0.4705 -6621,200178,3 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,23 Oct 2025,D - 55 to 68,64.0,B - 81 to 91,84.0,BB115JQ,100010327895.0,3 Ballater Street,0.4705 -6678,359890,4 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,70.0,B - 81 to 91,90.0,BB115JQ,100010327896.0,4 Ballater Street,0.4705 -6728,97711,5 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,06 Aug 2010,D - 55 to 68,62.0,C - 69 to 80,72.0,BB115JQ,100010327897.0,"5, Ballater Street",0.4705 -6772,362537,6 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,90.0,BB115JQ,100010327898.0,6 Ballater Street,0.4705 -6821,362540,7 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,90.0,BB115JQ,100010327899.0,7 Ballater Street,0.4705 -6867,252218,8 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,11 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115JQ,100010327900.0,8 Ballater Street,0.4705 -6920,362548,9 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,90.0,BB115JQ,100010327901.0,9 Ballater Street,0.4705 -6974,244346,10 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,19 Nov 2015,D - 55 to 68,68.0,B - 81 to 91,89.0,BB115JQ,100010327902.0,"10, Ballater Street",0.4754 -7024,90294,11 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,15 Mar 2010,D - 55 to 68,68.0,C - 69 to 80,69.0,BB115JQ,100010327903.0,"11, Ballater Street",0.4754 -7069,341704,12 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Nov 2025,D - 55 to 68,61.0,C - 69 to 80,71.0,BB115JQ,100010327904.0,12 Ballater Street,0.4754 -7122,103477,13 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,11 Nov 2010,D - 55 to 68,59.0,C - 69 to 80,69.0,BB115JQ,100010327905.0,"13, Ballater Street",0.4754 -7170,105259,14 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Jan 2011,C - 69 to 80,71.0,C - 69 to 80,72.0,BB115JQ,100010327906.0,"14, Ballater Street",0.4754 -7224,110795,15 Ballater Street Burnley Lancashire BB11 5JQ,,, BB11 5JQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,30 Dec 2010,E - 39 to 54,50.0,D - 55 to 68,67.0,BB115JQ,100010327907.0,"15, Ballater Street",0.4754 -6582,204820,5 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 May 2013,D - 55 to 68,64.0,B - 81 to 91,82.0,BB120JT,100010327806.0,"5, Avon Court",0.4401 -7027,322690,14 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,House: End Terrace,Domestic EPC Required,EPC Present,23 Sep 2019,C - 69 to 80,70.0,B - 81 to 91,84.0,BB120JT,100010327809.0,"14, Avon Court",0.4471 -7124,221137,16 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,74.0,C - 69 to 80,78.0,BB120JT,100010327811.0,16 Avon Court,0.4471 -7172,229283,17 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,House: End Terrace,Domestic EPC Required,EPC Present,27 Jan 2026,C - 69 to 80,72.0,C - 69 to 80,80.0,BB120JT,100010327812.0,17 Avon Court,0.4471 -7275,89498,19 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Apr 2022,C - 69 to 80,74.0,B - 81 to 91,90.0,BB120JT,100010327814.0,19 Avon Court,0.4471 -7325,206146,20 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,79.0,BB120JT,100010327815.0,20 Avon Court,0.4471 -7370,362581,21 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Apr 2024,C - 69 to 80,76.0,B - 81 to 91,90.0,BB120JT,100010327816.0,21 Avon Court,0.4471 -7556,233916,25 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,Bungalow: End Terr,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,71.0,C - 69 to 80,79.0,BB120JT,100010327820.0,25 Avon Court,0.4471 -7610,245817,26 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Jan 2016,C - 69 to 80,69.0,B - 81 to 91,89.0,BB120JT,100010327821.0,"26, Avon Court",0.4471 -7666,245818,27 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,03 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB120JT,100010327822.0,"27, Avon Court",0.4471 -7721,98362,28 Avon Court Burnley Lancashire BB12 0JT,,, BB12 0JT,Bungalow: End Terr,Domestic EPC Required,EPC Present,03 Oct 2023,C - 69 to 80,74.0,A - 92 Plus,93.0,BB120JT,100010327823.0,28 Avon Court,0.4471 -6687,40958,10 Sunningdale Garden Burnley Lancashire BB10 2RW,,, BB10 2RW,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Jan 2009,D - 55 to 68,57.0,D - 55 to 68,59.0,BB102RW,100010357287.0,"10, Sunningdale Gardens",0.3794 -6787,325273,12 Sunningdale Garden Burnley Lancashire BB10 2RW,,, BB10 2RW,House: End Terrace,Domestic EPC Required,EPC Present,16 Dec 2019,C - 69 to 80,73.0,B - 81 to 91,87.0,BB102RW,100010357289.0,"12, Sunningdale Gardens",0.3794 -6835,222812,13 Sunningdale Garden Burnley Lancashire BB10 2RW,,, BB10 2RW,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Mar 2014,D - 55 to 68,68.0,B - 81 to 91,83.0,BB102RW,100010357290.0,"13, Sunningdale Gardens",0.3794 -7238,325272,21 Sunningdale Garden Burnley Lancashire BB10 2RW,,, BB10 2RW,House: End Terrace,Domestic EPC Required,EPC Present,16 Dec 2019,C - 69 to 80,70.0,B - 81 to 91,84.0,BB102RW,100010357298.0,"21, Sunningdale Gardens",0.3794 -7378,246559,24 Sunningdale Garden Burnley Lancashire BB10 2RW,,, BB10 2RW,House: End Terrace,Domestic EPC Required,EPC Present,16 Feb 2016,D - 55 to 68,62.0,C - 69 to 80,77.0,BB102RW,100010357301.0,"24, Sunningdale Gardens",0.3794 -7523,222851,27 Sunningdale Garden Burnley Lancashire BB10 2RW,,, BB10 2RW,House: End Terrace,Domestic EPC Required,EPC Present,15 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB102RW,100010357304.0,27 Sunningdale Gardens,0.3794 -7625,41000,29 Sunningdale Garden Burnley Lancashire BB10 2RW,,, BB10 2RW,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Apr 2009,D - 55 to 68,63.0,D - 55 to 68,67.0,BB102RW,100010357306.0,"29, Sunningdale Gardens",0.3794 -12686,304900,22 Sunningdale Garden Burnley Lancashire BB10 2RW,,, BB10 2RW,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Jul 2009,D - 55 to 68,68.0,C - 69 to 80,75.0,BB102RW,100010357299.0,"22, Sunningdale Gardens",0.3794 -6689,211372,41 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Mar 2025,D - 55 to 68,68.0,B - 81 to 91,86.0,BB112NT,100010354936.0,41 Rossetti Avenue,0.4754 -6741,362535,42 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: End Terrace,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB112NT,100010354939.0,42 Rossetti Avenue,0.4754 -6747,120794,42a Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Mar 2025,D - 55 to 68,68.0,B - 81 to 91,86.0,BB112NT,100010354937.0,42a Rossetti Avenue,0.5309 -6751,111164,42b Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jun 2021,D - 55 to 68,65.0,B - 81 to 91,86.0,BB112NT,100010354938.0,42B ROSSETTI AVENUE,0.5309 -6786,362538,43 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB112NT,100010354940.0,43 Rossetti Avenue,0.4754 -6837,111171,44 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Nov 2010,D - 55 to 68,55.0,C - 69 to 80,70.0,BB112NT,100010354941.0,44 Rossetti Avenue,0.4754 -6885,362545,45 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112NT,100010354942.0,45 Rossetti Avenue,0.4754 -6934,40967,46 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Mar 2022,D - 55 to 68,64.0,B - 81 to 91,85.0,BB112NT,100010354943.0,46 Rossetti Avenue,0.4754 -6984,126613,47 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Aug 2024,D - 55 to 68,68.0,B - 81 to 91,83.0,BB112NT,100010354944.0,47 Rossetti Avenue,0.4754 -7136,111185,50 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: End Terrace,Domestic EPC Required,EPC Present,15 Mar 2022,D - 55 to 68,60.0,C - 69 to 80,80.0,BB112NT,100010354947.0,50 Rossetti Avenue,0.4754 -7181,362570,51 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112NT,100010354948.0,51 Rossetti Avenue,0.4754 -7237,77011,52 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Mar 2022,C - 69 to 80,69.0,B - 81 to 91,88.0,BB112NT,100010354949.0,52 Rossetti Avenue,0.4754 -7285,40983,53 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Aug 2021,D - 55 to 68,59.0,B - 81 to 91,82.0,BB112NT,100010354950.0,53 Rossetti Avenue,0.4754 -7379,286339,55 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jun 2017,D - 55 to 68,60.0,B - 81 to 91,85.0,BB112NT,100010354952.0,"55, Rossetti Avenue",0.4754 -7433,362588,56 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: End Terrace,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB112NT,100010354953.0,56 Rossetti Avenue,0.4754 -7526,289904,58 Rossetti Avenue Burnley Lancashire BB11 2NT,,, BB11 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Jul 2017,D - 55 to 68,61.0,B - 81 to 91,87.0,BB112NT,100010354955.0,"58, Rossetti Avenue",0.4754 -6692,362531,14 Cross Street Burnley Lancashire BB10 2HT,,, BB10 2HT,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB102HT,100010336306.0,"14 Cross Street, Briercliffe",0.4437 -6715,326170,3 Derwent Avenue Burnley Lancashire BB10 1HZ,,, BB10 1HZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Feb 2020,C - 69 to 80,74.0,B - 81 to 91,89.0,BB101HZ,100010337280.0,"3, Derwent Avenue",0.4652 -6770,221641,4 Derwent Avenue Burnley Lancashire BB10 1HZ,,, BB10 1HZ,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,71.0,B - 81 to 91,84.0,BB101HZ,100010337281.0,"4, Derwent Avenue",0.4652 -6962,40970,8 Derwent Avenue Burnley Lancashire BB10 1HZ,,, BB10 1HZ,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jul 2025,D - 55 to 68,66.0,C - 69 to 80,79.0,BB101HZ,100010337285.0,8 Derwent Avenue,0.4652 -7063,326169,10 Derwent Avenue Burnley Lancashire BB10 1HZ,,, BB10 1HZ,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Feb 2020,C - 69 to 80,69.0,B - 81 to 91,87.0,BB101HZ,100010337287.0,"10, Derwent Avenue",0.4705 -7164,326172,12 Derwent Avenue Burnley Lancashire BB10 1HZ,,, BB10 1HZ,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Feb 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB101HZ,100010337289.0,"12, Derwent Avenue",0.4705 -7314,76956,15 Derwent Avenue Burnley Lancashire BB10 1HZ,,, BB10 1HZ,House: End Terrace,Domestic EPC Required,EPC Present,17 Sep 2009,D - 55 to 68,59.0,C - 69 to 80,73.0,BB101HZ,100010337292.0,"15, Derwent Avenue",0.4705 -7504,40993,19 Derwent Avenue Burnley Lancashire BB10 1HZ,,, BB10 1HZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Dec 2008,D - 55 to 68,67.0,C - 69 to 80,75.0,BB101HZ,100010337294.0,"19, Derwent Avenue",0.4705 -7600,326171,21 Derwent Avenue Burnley Lancashire BB10 1HZ,,, BB10 1HZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Feb 2020,C - 69 to 80,73.0,B - 81 to 91,87.0,BB101HZ,100010337295.0,"21, Derwent Avenue",0.4705 -6732,242791,1 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,Bungalow: End Terr,Domestic EPC Required,EPC Present,09 Oct 2015,C - 69 to 80,69.0,B - 81 to 91,90.0,BB115HE,100010361257.0,"1, Winsford Walk",0.4596 -6784,244959,2 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Oct 2015,D - 55 to 68,68.0,B - 81 to 91,90.0,BB115HE,100010361258.0,"2, Winsford Walk",0.4596 -6830,362541,3 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,88.0,BB115HE,100010361259.0,3 Winsford Walk,0.4596 -6879,221677,4 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115HE,100010361260.0,"4, Winsford Walk",0.4596 -6929,362549,5 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,89.0,BB115HE,100010361261.0,5 Winsford Walk,0.4596 -6982,244960,6 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: End Terrace,Domestic EPC Required,EPC Present,30 Oct 2015,C - 69 to 80,69.0,B - 81 to 91,86.0,BB115HE,100010361262.0,"6, Winsford Walk",0.4596 -7077,341045,8 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Sep 2021,C - 69 to 80,77.0,B - 81 to 91,89.0,BB115HE,100010361264.0,8 Winsford Walk,0.4596 -7230,40980,11 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: End Terrace,Domestic EPC Required,EPC Present,26 Nov 2008,C - 69 to 80,73.0,C - 69 to 80,77.0,BB115HE,100010361267.0,"11, Winsford Walk",0.4652 -7278,40982,12 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,87.0,BB115HE,100010361268.0,12 Winsford Walk,0.4652 -7327,40986,13 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Dec 2025,C - 69 to 80,74.0,B - 81 to 91,86.0,BB115HE,100010361269.0,13 Winsford Walk,0.4652 -7373,182442,14 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,87.0,BB115HE,100010361270.0,14 Winsford Walk,0.4652 -7421,40990,15 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Nov 2025,C - 69 to 80,76.0,B - 81 to 91,88.0,BB115HE,100010361271.0,15 Winsford Walk,0.4652 -7464,362589,16 Winsford Walk Burnley Lancashire BB11 5HE,,, BB11 5HE,House: End Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115HE,100010361272.0,16 Winsford Walk,0.4652 -6758,241366,1 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2015,C - 69 to 80,71.0,B - 81 to 91,85.0,BB102QG,100010355544.0,"1, Sedburgh Street",0.4705 -6854,325352,3 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,C - 69 to 80,72.0,B - 81 to 91,87.0,BB102QG,100010355546.0,"3, Sedburgh Street",0.4705 -7053,103298,7 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jun 2025,C - 69 to 80,73.0,C - 69 to 80,77.0,BB102QG,100010355550.0,7 Sedburgh Street,0.4705 -7099,325351,8 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,C - 69 to 80,75.0,B - 81 to 91,88.0,BB102QG,100010355551.0,"8, Sedburgh Street",0.4705 -7154,186748,9 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Sep 2012,C - 69 to 80,71.0,B - 81 to 91,86.0,BB102QG,100012536208.0,"9, Sedburgh Street",0.4705 -7204,325346,10 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,C - 69 to 80,74.0,B - 81 to 91,87.0,BB102QG,100010355552.0,"10, Sedburgh Street",0.4754 -7254,40981,11 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Apr 2009,C - 69 to 80,75.0,C - 69 to 80,75.0,BB102QG,100010355553.0,"11, Sedburgh Street",0.4754 -7304,325350,12 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,C - 69 to 80,74.0,B - 81 to 91,87.0,BB102QG,100010355554.0,"12, Sedburgh Street",0.4754 -7400,221667,14 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,73.0,B - 81 to 91,86.0,BB102QG,100010355556.0,"14, Sedburgh Street",0.4754 -7447,230499,15 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Dec 2014,C - 69 to 80,72.0,B - 81 to 91,87.0,BB102QG,100010355557.0,"15, Sedburgh Street",0.4754 -7493,219722,16 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Nov 2013,C - 69 to 80,72.0,B - 81 to 91,87.0,BB102QG,100010355558.0,"16, Sedburgh Street",0.4754 -7590,95416,18 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,21 May 2010,C - 69 to 80,69.0,C - 69 to 80,72.0,BB102QG,100010355559.0,"18, Sedburgh Street",0.4754 -7698,76899,20 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2026,C - 69 to 80,71.0,C - 69 to 80,77.0,BB102QG,100010355560.0,20 Sedburgh Street,0.4754 -7805,41012,22 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2026,C - 69 to 80,70.0,C - 69 to 80,77.0,BB102QG,100010355561.0,22 Sedburgh Street,0.4754 -8115,325349,28 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,C - 69 to 80,73.0,B - 81 to 91,88.0,BB102QG,100010355564.0,"28, Sedburgh Street",0.4754 -8209,90195,30 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Feb 2010,C - 69 to 80,69.0,C - 69 to 80,75.0,BB102QG,100010355565.0,"30, Sedburgh Street",0.4754 -8311,325348,32 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,C - 69 to 80,72.0,B - 81 to 91,87.0,BB102QG,100010355566.0,"32, Sedburgh Street",0.4754 -8415,136669,34 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Feb 2012,C - 69 to 80,70.0,C - 69 to 80,71.0,BB102QG,100010355567.0,"34, Sedburgh Street",0.4754 -8526,269021,36 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Nov 2025,D - 55 to 68,58.0,D - 55 to 68,64.0,BB102QG,100010355568.0,36 Sedburgh Street,0.4754 -8647,325347,38 Sedburgh Street Burnley Lancashire BB10 2QG,,, BB10 2QG,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,C - 69 to 80,74.0,B - 81 to 91,87.0,BB102QG,100010355569.0,"38, Sedburgh Street",0.4754 -6932,362550,79 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,Flat: Bottom,Domestic EPC Required,EPC Present,03 May 2022,C - 69 to 80,76.0,C - 69 to 80,79.0,BB120JX,100010341256.0,79 Hargrove Avenue,0.4754 -7034,362561,81 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,Flat: Top,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB120JX,100010341258.0,81 Hargrove Avenue,0.4754 -7132,362569,83 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,Flat: Bottom,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,78.0,BB120JX,100010341260.0,83 Hargrove Avenue,0.4754 -7233,227041,85 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,Flat: Top,Domestic EPC Required,EPC Present,22 Jul 2014,C - 69 to 80,73.0,C - 69 to 80,75.0,BB120JX,100010341262.0,85 Hargrove Avenue,0.4754 -7330,295855,87 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,Flat: Bottom,Domestic EPC Required,EPC Present,13 Feb 2018,C - 69 to 80,77.0,C - 69 to 80,78.0,BB120JX,100010341263.0,"87, Hargrove Avenue",0.4754 -7424,77013,89 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,Flat: Top,Domestic EPC Required,EPC Present,01 Mar 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB120JX,100010341264.0,89 Hargrove Avenue,0.4754 -7515,295856,91 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,Flat: Bottom,Domestic EPC Required,EPC Present,14 Feb 2018,C - 69 to 80,74.0,C - 69 to 80,77.0,BB120JX,100010341265.0,"91, Hargrove Avenue",0.4754 -7616,300656,93 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,House: End Terrace,Domestic EPC Required,EPC Present,16 Mar 2018,C - 69 to 80,69.0,B - 81 to 91,86.0,BB120JX,100010341266.0,"93, Hargrove Avenue",0.4754 -7943,300655,99 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Mar 2018,C - 69 to 80,71.0,B - 81 to 91,86.0,BB120JX,100010341269.0,"99, Hargrove Avenue",0.4754 -8039,300657,101 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2018,C - 69 to 80,70.0,B - 81 to 91,87.0,BB120JX,100010341270.0,"101, Hargrove Avenue",0.4801 -13614,362893,77 Hargrove Avenue Burnley Lancashire BB12 0JX,,, BB12 0JX,Flat: Top,Domestic EPC Required,EPC Present,30 Aug 2022,C - 69 to 80,76.0,C - 69 to 80,79.0,BB120JX,100010341254.0,77 Hargrove Avenue,0.4754 -6933,244953,566 Padiham Road Burnley Lancashire BB12 6TQ,,, BB12 6TQ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2015,D - 55 to 68,63.0,C - 69 to 80,79.0,BB126TQ,100010351141.0,"566, Padiham Road",0.4652 -7039,362562,568 Padiham Road Burnley Lancashire BB12 6TQ,,, BB12 6TQ,House: End Terrace,Domestic EPC Required,EPC Present,06 Sep 2022,D - 55 to 68,64.0,C - 69 to 80,79.0,BB126TQ,100010351142.0,568 Padiham Road,0.4652 -7846,362616,584 Padiham Road Burnley Lancashire BB12 6TQ,,, BB12 6TQ,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB126TQ,100010351150.0,584 Padiham Road,0.4652 -8044,224365,588 Padiham Road Burnley Lancashire BB12 6TQ,,, BB12 6TQ,House: End Terrace,Domestic EPC Required,EPC Present,17 Oct 2017,D - 55 to 68,55.0,C - 69 to 80,74.0,BB126TQ,100010351152.0,"588, Padiham Road",0.4652 -6944,197462,3 East Street Padiham Lancashire BB12 8HX,,, BB12 8HX,House: End Terrace,Domestic EPC Required,EPC Present,12 Feb 2013,E - 39 to 54,48.0,C - 69 to 80,80.0,BB128HX,100010337891.0,"3, East Street, Padiham",0.6085 -6976,229513,1 Chipping Grove Burnley Lancashire BB10 4PA,,, BB10 4PA,House: End Terrace,Domestic EPC Required,EPC Present,29 Oct 2014,D - 55 to 68,68.0,B - 81 to 91,85.0,BB104PA,100010333728.0,"1, Chipping Grove",0.4652 -7225,324889,6 Chipping Grove Burnley Lancashire BB10 4PA,,, BB10 4PA,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Nov 2019,C - 69 to 80,71.0,B - 81 to 91,89.0,BB104PA,100010333733.0,"6, Chipping Grove",0.4652 -6978,362555,11 Rutland Avenue Burnley Lancashire BB12 6AN,,, BB12 6AN,House: End Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB126AN,100010355071.0,11 Rutland Avenue,0.4705 -7372,362582,19 Rutland Avenue Burnley Lancashire BB12 6AN,,, BB12 6AN,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB126AN,100010355079.0,19 Rutland Avenue,0.4705 -7422,89438,20 Rutland Avenue Burnley Lancashire BB12 6AN,,, BB12 6AN,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Nov 2009,C - 69 to 80,75.0,C - 69 to 80,79.0,BB126AN,100010355080.0,"20, Rutland Avenue",0.4705 -7519,362594,22 Rutland Avenue Burnley Lancashire BB12 6AN,,, BB12 6AN,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB126AN,100010355082.0,22 Rutland Avenue,0.4705 -7724,362607,26 Rutland Avenue Burnley Lancashire BB12 6AN,,, BB12 6AN,House: End Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB126AN,100010355086.0,26 Rutland Avenue,0.4705 -7991,76887,31 Rutland Avenue Burnley Lancashire BB12 6AN,,, BB12 6AN,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Aug 2009,C - 69 to 80,69.0,C - 69 to 80,75.0,BB126AN,100010355091.0,"31, Rutland Avenue",0.4705 -8037,187509,32 Rutland Avenue Burnley Lancashire BB12 6AN,,, BB12 6AN,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Aug 2025,C - 69 to 80,75.0,B - 81 to 91,81.0,BB126AN,100010355092.0,32 Rutland Avenue,0.4705 -7007,203984,5 Thames Avenue Burnley Lancashire BB10 2PZ,,, BB10 2PZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 May 2013,D - 55 to 68,64.0,B - 81 to 91,85.0,BB102PZ,100010357973.0,"5, Thames Avenue",0.4596 -7109,40976,7 Thames Avenue Burnley Lancashire BB10 2PZ,,, BB10 2PZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jan 2009,D - 55 to 68,65.0,C - 69 to 80,76.0,BB102PZ,100010357974.0,"7, Thames Avenue",0.4596 -7403,76964,13 Thames Avenue Burnley Lancashire BB10 2PZ,,, BB10 2PZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Sep 2009,C - 69 to 80,69.0,C - 69 to 80,75.0,BB102PZ,100010357977.0,"13, Thames Avenue",0.4652 -7811,202632,21 Thames Avenue Burnley Lancashire BB10 2PZ,,, BB10 2PZ,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Apr 2013,D - 55 to 68,60.0,B - 81 to 91,84.0,BB102PZ,100010357981.0,"21, Thames Avenue",0.4652 -12687,325759,1 Thames Avenue Burnley Lancashire BB10 2PZ,,, BB10 2PZ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB102PZ,100010357971.0,"1, Thames Avenue",0.4596 -7085,103980,73 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,House: End Terrace,Domestic EPC Required,EPC Present,22 Nov 2010,C - 69 to 80,69.0,C - 69 to 80,72.0,BB104LA,100010359633.0,"73, Waddington Avenue",0.4845 -7190,324389,75 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Nov 2019,D - 55 to 68,66.0,B - 81 to 91,87.0,BB104LA,100010359635.0,"75, Waddington Avenue",0.4845 -7478,230646,81 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2014,D - 55 to 68,65.0,B - 81 to 91,88.0,BB104LA,100010359641.0,"81, Waddington Avenue",0.4845 -7573,119035,83 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Oct 2011,D - 55 to 68,60.0,D - 55 to 68,65.0,BB104LA,100010359643.0,"83, Waddington Avenue",0.4845 -7684,324548,85 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Nov 2019,D - 55 to 68,67.0,B - 81 to 91,86.0,BB104LA,100010359645.0,"85, Waddington Avenue",0.4845 -7791,41011,87 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Nov 2008,D - 55 to 68,68.0,C - 69 to 80,73.0,BB104LA,100010359647.0,"87, Waddington Avenue",0.4845 -7897,210881,89 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Sep 2024,D - 55 to 68,67.0,B - 81 to 91,83.0,BB104LA,100010359649.0,89 Waddington Avenue,0.4845 -8247,76842,96 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,Flat: Top,Domestic EPC Required,EPC Present,30 Jan 2026,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104LA,100010359655.0,96 Waddington Avenue,0.4845 -8348,89437,98 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,Flat: Bottom,Domestic EPC Required,EPC Present,27 Nov 2024,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104LA,100010359656.0,98 Waddington Avenue,0.4845 -8456,198891,100 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,Flat: Bottom,Domestic EPC Required,EPC Present,07 Mar 2013,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104LA,100010359657.0,"100, Waddington Avenue",0.4886 -8569,244958,102 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,Flat: Top,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,77.0,B - 81 to 91,82.0,BB104LA,100010359658.0,102 Waddington Avenue,0.4886 -8813,229679,106 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jun 2026,D - 55 to 68,68.0,B - 81 to 91,86.0,BB104LA,100010359660.0,"106, Waddington Avenue",0.4886 -9155,324547,112 Waddington Avenue Burnley Lancashire BB10 4LA,,, BB10 4LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Nov 2019,D - 55 to 68,68.0,B - 81 to 91,86.0,BB104LA,100010359663.0,"112, Waddington Avenue",0.4886 -7094,234532,21 Bread Street Burnley Lancashire BB12 0PX,,, BB12 0PX,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Feb 2018,C - 69 to 80,69.0,B - 81 to 91,90.0,BB120PX,100010329785.0,"21, Bread Street",0.4596 -7802,340594,35 Bread Street Burnley Lancashire BB12 0PX,,, BB12 0PX,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Aug 2021,C - 69 to 80,71.0,B - 81 to 91,91.0,BB120PX,100010329792.0,35 Bread Street,0.4596 -10979,109086,37 Bread Street Burnley Lancashire BB12 0PX,,, BB12 0PX,House: End Terrace,Domestic EPC Required,EPC Present,29 Jul 2025,D - 55 to 68,61.0,C - 69 to 80,75.0,BB120PX,100010329793.0,37 Bread Street,0.4596 -7157,245149,1 Britannia Walk Burnley Lancashire BB11 3JW,,, BB11 3JW,House: End Terrace,Domestic EPC Required,EPC Present,16 Oct 2015,C - 69 to 80,72.0,B - 81 to 91,86.0,BB113JW,100010330457.0,"1, Britannia Walk",0.4652 -7209,230522,2 Britannia Walk Burnley Lancashire BB11 3JW,,, BB11 3JW,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Dec 2014,C - 69 to 80,73.0,B - 81 to 91,86.0,BB113JW,100010330458.0,"2, Britannia Walk",0.4652 -7307,221631,4 Britannia Walk Burnley Lancashire BB11 3JW,,, BB11 3JW,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Oct 2015,C - 69 to 80,73.0,B - 81 to 91,86.0,BB113JW,100010330460.0,"4, Britannia Walk",0.4652 -7355,252151,5 Britannia Walk Burnley Lancashire BB11 3JW,,, BB11 3JW,House: End Terrace,Domestic EPC Required,EPC Present,20 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,86.0,BB113JW,100010330461.0,"5, Britannia Walk",0.4652 -7402,76891,6 Britannia Walk Burnley Lancashire BB11 3JW,,, BB11 3JW,House: End Terrace,Domestic EPC Required,EPC Present,02 Sep 2009,D - 55 to 68,55.0,C - 69 to 80,69.0,BB113JW,100010330462.0,"6, Britannia Walk",0.4652 -7496,245824,8 Britannia Walk Burnley Lancashire BB11 3JW,,, BB11 3JW,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Nov 2015,C - 69 to 80,72.0,B - 81 to 91,86.0,BB113JW,100010330464.0,"8, Britannia Walk",0.4652 -7591,252134,10 Britannia Walk Burnley Lancashire BB11 3JW,,, BB11 3JW,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Dec 2015,B - 81 to 91,87.0,A - 92 Plus,94.0,BB113JW,100010330466.0,"10, Britannia Walk",0.4705 -7652,245422,11 Britannia Walk Burnley Lancashire BB11 3JW,,, BB11 3JW,House: End Terrace,Domestic EPC Required,EPC Present,22 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,80.0,BB113JW,100010330467.0,11 Britannia Walk,0.4705 -7167,110652,1 Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jun 2017,D - 55 to 68,65.0,B - 81 to 91,87.0,BB112NS,10003780874.0,"1, Tadema Grove",0.4536 -7367,358895,5 Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Feb 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB112NS,10003780876.0,5 Tadema Grove,0.4536 -7414,229122,6 Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Oct 2014,C - 69 to 80,70.0,B - 81 to 91,87.0,BB112NS,10003780887.0,"6, Tadema Grove",0.4536 -7552,110752,9 Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jun 2017,D - 55 to 68,65.0,B - 81 to 91,87.0,BB112NS,10003780878.0,"9, Tadema Grove",0.4536 -7661,110766,11 Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Nov 2010,D - 55 to 68,61.0,C - 69 to 80,74.0,BB112NS,10003780879.0,11 Tadema Grove,0.4596 -7877,110797,15 Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Dec 2010,D - 55 to 68,62.0,C - 69 to 80,75.0,BB112NS,10003780880.0,"15, Tadema Grove",0.4596 -7981,110808,17 Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Jun 2016,D - 55 to 68,67.0,B - 81 to 91,84.0,BB112NS,10003780881.0,"17, Tadema Grove",0.4596 -8077,275586,19 Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jun 2017,D - 55 to 68,64.0,B - 81 to 91,87.0,BB112NS,10003780882.0,"19, Tadema Grove",0.4596 -11366,226984,2a Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Jul 2014,C - 69 to 80,71.0,B - 81 to 91,88.0,BB112NS,10003780883.0,"2a, Tadema Grove",0.5117 -11367,227754,4a Tadema Grove Burnley Lancashire BB11 2NS,,, BB11 2NS,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Aug 2014,C - 69 to 80,72.0,B - 81 to 91,88.0,BB112NS,10003780885.0,"4a, Tadema Grove",0.5117 -7322,324934,5 Roughlee Grove Burnley Lancashire BB10 4LE,,, BB10 4LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Dec 2019,C - 69 to 80,72.0,B - 81 to 91,88.0,BB104LE,100010354963.0,"5, Roughlee Grove",0.4652 -7665,324971,12 Roughlee Grove Burnley Lancashire BB10 4LE,,, BB10 4LE,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Dec 2019,C - 69 to 80,70.0,B - 81 to 91,87.0,BB104LE,100010354970.0,"12, Roughlee Grove",0.4705 -7720,324953,13 Roughlee Grove Burnley Lancashire BB10 4LE,,, BB10 4LE,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Dec 2019,C - 69 to 80,69.0,B - 81 to 91,87.0,BB104LE,100010354971.0,"13, Roughlee Grove",0.4705 -7357,187824,8 St Giles Street Padiham Lancashire BB12 8HL,,, BB12 8HL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,13 Sep 2012,D - 55 to 68,67.0,B - 81 to 91,90.0,BB128HL,100010356516.0,"8, St. Giles Street, Padiham",0.6317 -7452,143908,10 St Giles Street Padiham Lancashire BB12 8HL,,, BB12 8HL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Apr 2012,D - 55 to 68,63.0,B - 81 to 91,86.0,BB128HL,100010356517.0,"10, St. Giles Street, Padiham",0.6339 -7544,40995,12 St Giles Street Padiham Lancashire BB12 8HL,,, BB12 8HL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,09 Apr 2009,D - 55 to 68,66.0,C - 69 to 80,70.0,BB128HL,100010356518.0,"12, St. Giles Street, Padiham",0.6339 -7653,362604,14 St Giles Street Padiham Lancashire BB12 8HL,,, BB12 8HL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB128HL,100010356519.0,"14 St. Giles Street, Padiham",0.6339 -7759,362610,16 St Giles Street Padiham Lancashire BB12 8HL,,, BB12 8HL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB128HL,100010356520.0,"16 St. Giles Street, Padiham",0.6339 -7868,116209,18 St Giles Street Padiham Lancashire BB12 8HL,,, BB12 8HL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Jul 2011,D - 55 to 68,63.0,D - 55 to 68,67.0,BB128HL,100010356521.0,"18, St. Giles Street, Padiham",0.6339 -468,250091,34 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,23 Oct 2025,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104PY,200001126220.0,34 Edgworth Grove,0.4705 -521,251656,35 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jun 2016,D - 55 to 68,68.0,C - 69 to 80,77.0,BB104PY,200001126221.0,"35, Edgworth Grove",0.4705 -621,250092,37 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,12 May 2016,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104PY,200001126223.0,"37, Edgworth Grove",0.4705 -669,250093,38 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,09 May 2016,C - 69 to 80,74.0,C - 69 to 80,78.0,BB104PY,200001126224.0,"38, Edgworth Grove",0.4705 -717,250591,39 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,15 Jun 2016,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104PY,200001126225.0,"39, Edgworth Grove",0.4705 -820,250340,41 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,23 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,75.0,BB104PY,200001126227.0,41 Edgworth Grove,0.4705 -867,251657,42 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jun 2016,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104PY,200001126228.0,"42, Edgworth Grove",0.4705 -920,250097,43 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,14 May 2016,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104PY,200001126229.0,"43, Edgworth Grove",0.4705 -972,252105,44 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jun 2024,C - 69 to 80,73.0,C - 69 to 80,78.0,BB104PY,200001126230.0,44 Edgworth Grove,0.4705 -1026,250341,45 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,19 May 2016,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104PY,200001126231.0,"45, Edgworth Grove",0.4705 -1082,339925,46 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,25 Jul 2021,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104PY,200001126232.0,46 EDGWORTH GROVE,0.4705 -1136,252106,47 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,30 Jun 2016,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104PY,200001126233.0,47 Edgworth Grove,0.4705 -1193,250098,48 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,09 May 2016,C - 69 to 80,74.0,C - 69 to 80,78.0,BB104PY,200001126234.0,"48, Edgworth Grove",0.4705 -1301,250592,50 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,17 Jun 2016,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104PY,200001126235.0,"50, Edgworth Grove",0.4705 -1412,252001,52 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,29 Jun 2016,D - 55 to 68,66.0,C - 69 to 80,73.0,BB104PY,200001126236.0,"52, Edgworth Grove",0.4705 -1520,250593,54 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,07 Jun 2016,D - 55 to 68,64.0,C - 69 to 80,71.0,BB104PY,200001126237.0,"54, Edgworth Grove",0.4705 -1624,250099,56 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,13 May 2016,D - 55 to 68,63.0,C - 69 to 80,70.0,BB104PY,200001126238.0,"56, Edgworth Grove",0.4705 -7843,362615,1 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,02 Nov 2022,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104PY,200001126187.0,1 Edgworth Grove,0.4652 -7892,250054,2 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,28 Apr 2016,D - 55 to 68,66.0,C - 69 to 80,75.0,BB104PY,200001126188.0,"2, Edgworth Grove",0.4652 -7947,118347,3 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,25 Aug 2011,D - 55 to 68,61.0,D - 55 to 68,66.0,BB104PY,200001126189.0,"3, Edgworth Grove",0.4652 -7995,250055,4 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,28 Apr 2016,D - 55 to 68,67.0,C - 69 to 80,75.0,BB104PY,200001126190.0,"4, Edgworth Grove",0.4652 -8042,362627,5 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104PY,200001126191.0,5 Edgworth Grove,0.4652 -8090,252103,6 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,30 Jun 2016,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104PY,,, -8144,362634,7 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB104PY,200001126193.0,7 Edgworth Grove,0.4652 -8191,250056,8 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,28 Apr 2016,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104PY,200001126194.0,"8, Edgworth Grove",0.4652 -8244,210942,9 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,23 Jul 2024,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104PY,200001126195.0,9 Edgworth Grove,0.4652 -8287,250511,10 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2025,C - 69 to 80,76.0,C - 69 to 80,76.0,BB104PY,200001126196.0,10 Edgworth Grove,0.4705 -8344,199684,11 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,04 Jan 2022,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104PY,200001126197.0,11 Edgworth Grove,0.4705 -8394,250057,12 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,28 Apr 2016,D - 55 to 68,68.0,C - 69 to 80,76.0,BB104PY,200001126198.0,"12, Edgworth Grove",0.4705 -8451,191597,13 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,12 Nov 2012,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104PY,200001126199.0,"13, Edgworth Grove",0.4705 -8501,250058,14 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,28 Apr 2016,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104PY,200001126200.0,"14, Edgworth Grove",0.4705 -8561,41043,15 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,10 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,72.0,BB104PY,200001126201.0,15 Edgworth Grove,0.4705 -8621,250087,16 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,14 May 2016,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104PY,200001126202.0,"16, Edgworth Grove",0.4705 -8685,202744,17 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104PY,200001126203.0,17 Edgworth Grove,0.4705 -8745,250059,18 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,28 Apr 2016,D - 55 to 68,65.0,C - 69 to 80,74.0,BB104PY,200001126204.0,"18, Edgworth Grove",0.4705 -8808,230228,19 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,26 Nov 2014,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104PY,200001126205.0,"19, Edgworth Grove",0.4705 -8867,250590,20 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,13 Jun 2016,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104PY,200001126206.0,"20, Edgworth Grove",0.4705 -8927,250504,21 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,02 Jun 2016,C - 69 to 80,76.0,C - 69 to 80,76.0,BB104PY,200001126207.0,"21, Edgworth Grove",0.4705 -8976,250060,22 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,28 Apr 2016,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104PY,200001126208.0,"22, Edgworth Grove",0.4705 -9037,41059,23 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,25 Jun 2025,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104PY,200001126209.0,23 Edgworth Grove,0.4705 -9087,250061,24 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,28 Apr 2016,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104PY,200001126210.0,"24, Edgworth Grove",0.4705 -9205,250088,26 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,14 May 2016,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104PY,200001126212.0,"26, Edgworth Grove",0.4705 -9266,250512,27 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,02 Jun 2016,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104PY,200001126213.0,"27, Edgworth Grove",0.4705 -9323,250089,28 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,23 Oct 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104PY,200001126214.0,28 Edgworth Grove,0.4705 -9383,250090,29 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2025,C - 69 to 80,76.0,C - 69 to 80,76.0,BB104PY,200001126215.0,29 Edgworth Grove,0.4705 -9438,250062,30 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,03 May 2016,C - 69 to 80,70.0,C - 69 to 80,76.0,BB104PY,200001126216.0,"30, Edgworth Grove",0.4705 -9494,251655,31 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,27 Jun 2016,C - 69 to 80,71.0,C - 69 to 80,78.0,BB104PY,200001126217.0,"31, Edgworth Grove",0.4705 -9540,252104,32 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Top,Domestic EPC Required,EPC Present,30 Jun 2016,C - 69 to 80,71.0,C - 69 to 80,78.0,BB104PY,200001126218.0,32 Edgworth Grove,0.4705 -9596,250569,33 Edgworth Grove Burnley Lancashire BB10 4PY,,, BB10 4PY,Flat: Bottom,Domestic EPC Required,EPC Present,01 Jun 2016,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104PY,200001126219.0,"33, Edgworth Grove",0.4705 -479,305163,25 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Semi-Detached,Domestic EPC Required,EPC Present,08 May 2019,C - 69 to 80,69.0,B - 81 to 91,84.0,BB102RH,10003758423.0,"25, Kingsbury Place",0.4754 -530,362137,26 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB102RH,10003758415.0,26 Kingsbury Place,0.4754 -582,325285,27 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: End Terrace,Domestic EPC Required,EPC Present,16 Dec 2019,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102RH,10003758414.0,"27, Kingsbury Place",0.4754 -634,204819,28 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 May 2013,D - 55 to 68,60.0,B - 81 to 91,82.0,BB102RH,10003758439.0,"28, Kingsbury Place",0.4754 -780,119599,31 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Feb 2026,C - 69 to 80,75.0,B - 81 to 91,81.0,BB102RH,10003758410.0,"31, Kingsbury Place",0.4754 -932,274448,34 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: End Terrace,Domestic EPC Required,EPC Present,19 May 2017,C - 69 to 80,73.0,B - 81 to 91,87.0,BB102RH,10003758407.0,"34, Kingsbury Place",0.4754 -985,102781,35 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 May 2024,C - 69 to 80,76.0,B - 81 to 91,90.0,BB102RH,10003758422.0,35 Kingsbury Place,0.4754 -8295,325286,1 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: End Terrace,Domestic EPC Required,EPC Present,16 Dec 2019,C - 69 to 80,69.0,B - 81 to 91,90.0,BB102RH,10003758405.0,"1, Kingsbury Place",0.4705 -8356,250534,2 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jan 2026,C - 69 to 80,73.0,C - 69 to 80,79.0,BB102RH,10003758429.0,2 Kingsbury Place,0.4705 -8579,95865,6 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: End Terrace,Domestic EPC Required,EPC Present,24 Sep 2020,C - 69 to 80,74.0,B - 81 to 91,87.0,BB102RH,10003758419.0,6 KINGSBURY PLACE,0.4705 -8634,210880,7 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Aug 2013,D - 55 to 68,68.0,B - 81 to 91,81.0,BB102RH,10003758418.0,"7, Kingsbury Place",0.4705 -8699,221651,8 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,60.0,C - 69 to 80,79.0,BB102RH,10003758417.0,"8, Kingsbury Place",0.4705 -8939,362682,12 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: End Terrace,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102RH,10003758436.0,12 Kingsbury Place,0.4754 -9161,125374,16 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Dec 2011,D - 55 to 68,65.0,D - 55 to 68,68.0,BB102RH,10003758431.0,"16, Kingsbury Place",0.4754 -9278,41071,18 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: End Terrace,Domestic EPC Required,EPC Present,10 Dec 2008,C - 69 to 80,71.0,C - 69 to 80,73.0,BB102RH,10003758430.0,"18, Kingsbury Place",0.4754 -13914,388551,9 Kingsbury Place Burnley Lancashire BB10 2RH,,, BB10 2RH,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jun 2025,C - 69 to 80,69.0,B - 81 to 91,84.0,BB102RH,10003758416.0,9 Kingsbury Place,0.4705 -483,222431,4 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Feb 2014,C - 69 to 80,73.0,B - 81 to 91,85.0,BB115RZ,100010350901.0,"4, Padgate Place",0.4596 -536,237560,5 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Jun 2015,C - 69 to 80,69.0,B - 81 to 91,85.0,BB115RZ,100010350902.0,"5, Padgate Place",0.4596 -632,223608,7 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,Flat: Bottom,Domestic EPC Required,EPC Present,07 Dec 2025,C - 69 to 80,72.0,C - 69 to 80,74.0,BB115RZ,100010350904.0,7 Padgate Place,0.4596 -680,40671,8 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,Flat: Top,Domestic EPC Required,EPC Present,20 Feb 2026,C - 69 to 80,72.0,B - 81 to 91,90.0,BB115RZ,100010350905.0,"8, Padgate Place",0.4596 -728,253477,9 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,Flat: Top,Domestic EPC Required,EPC Present,12 Sep 2016,C - 69 to 80,76.0,C - 69 to 80,80.0,BB115RZ,100010350906.0,"9, Padgate Place",0.4596 -829,40676,11 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Sep 2008,C - 69 to 80,69.0,C - 69 to 80,72.0,BB115RZ,,, -876,89576,12 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Dec 2010,E - 39 to 54,50.0,C - 69 to 80,74.0,BB115RZ,100010350909.0,"12, Padgate Place",0.4652 -1036,40689,15 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,Bungalow: End Terr,Domestic EPC Required,EPC Present,02 Nov 2025,B - 81 to 91,84.0,B - 81 to 91,87.0,BB115RZ,100010350912.0,15 Padgate Place,0.4652 -1092,201779,16 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: End Terrace,Domestic EPC Required,EPC Present,07 Dec 2021,C - 69 to 80,74.0,B - 81 to 91,87.0,BB115RZ,100010350913.0,16 Padgate Place,0.4652 -1148,101573,17 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Oct 2010,C - 69 to 80,70.0,C - 69 to 80,75.0,BB115RZ,100010350914.0,"17, Padgate Place",0.4652 -1204,100563,18 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Mar 2011,D - 55 to 68,63.0,C - 69 to 80,76.0,BB115RZ,100010350915.0,18 Padgate Place,0.4652 -1258,40704,19 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jan 2009,C - 69 to 80,69.0,C - 69 to 80,76.0,BB115RZ,100010350916.0,"19, Padgate Place",0.4652 -1313,253473,20 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: End Terrace,Domestic EPC Required,EPC Present,23 Aug 2016,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115RZ,100010350917.0,"20, Padgate Place",0.4652 -1365,362178,21 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB115RZ,100010350918.0,21 Padgate Place,0.4652 -1422,362184,22 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115RZ,100010350919.0,22 Padgate Place,0.4652 -1474,295916,23 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Feb 2018,C - 69 to 80,70.0,B - 81 to 91,85.0,BB115RZ,100010350920.0,"23, Padgate Place",0.4652 -1584,226274,25 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Oct 2014,C - 69 to 80,69.0,B - 81 to 91,85.0,BB115RZ,100010350922.0,"25, Padgate Place",0.4652 -1641,250431,26 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: End Terrace,Domestic EPC Required,EPC Present,25 May 2016,C - 69 to 80,69.0,B - 81 to 91,84.0,BB115RZ,100010350923.0,"26, Padgate Place",0.4652 -1687,110885,27 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: End Terrace,Domestic EPC Required,EPC Present,20 Jan 2022,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115RZ,100010350924.0,27 Padgate Place,0.4652 -1744,362198,28 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115RZ,100010350925.0,28 Padgate Place,0.4652 -1798,110894,29 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Aug 2024,C - 69 to 80,72.0,B - 81 to 91,86.0,BB115RZ,100010350926.0,29 Padgate Place,0.4652 -1855,362204,30 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115RZ,100010350927.0,30 Padgate Place,0.4652 -1905,362207,31 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115RZ,100010350928.0,31 Padgate Place,0.4652 -1957,89054,32 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Oct 2009,C - 69 to 80,73.0,C - 69 to 80,78.0,BB115RZ,100010350929.0,"32, Padgate Place",0.4652 -2007,238799,33 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jan 2026,C - 69 to 80,74.0,B - 81 to 91,86.0,BB115RZ,100010350930.0,33 Padgate Place,0.4652 -2057,104059,34 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Sep 2024,C - 69 to 80,76.0,B - 81 to 91,90.0,BB115RZ,100010350931.0,34 Padgate Place,0.4652 -2105,362217,35 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115RZ,100010350932.0,35 Padgate Place,0.4652 -9555,190792,2 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Dec 2025,C - 69 to 80,75.0,B - 81 to 91,87.0,BB115RZ,100010350899.0,2 Padgate Place,0.4596 -9609,189872,3 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Oct 2012,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115RZ,100010350900.0,"3, Padgate Place",0.4596 -9735,225346,10 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,Flat: Bottom,Domestic EPC Required,EPC Present,22 May 2014,C - 69 to 80,71.0,C - 69 to 80,77.0,BB115RZ,100010350907.0,"10, Padgate Place",0.4652 -12966,359680,14 Padgate Place Burnley Lancashire BB11 5RZ,,, BB11 5RZ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Apr 2023,C - 69 to 80,71.0,B - 81 to 91,89.0,BB115RZ,100010350911.0,14 Padgate Place,0.4652 -484,304938,138 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,17 Apr 2019,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104QJ,100010330933.0,"138, Brownhill Avenue",0.4845 -586,314819,140 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,30 May 2019,C - 69 to 80,70.0,C - 69 to 80,72.0,BB104QJ,100010330935.0,"140, Brownhill Avenue",0.4845 -784,247417,144 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,14 Mar 2016,C - 69 to 80,72.0,C - 69 to 80,74.0,BB104QJ,100010330937.0,"144, Brownhill Avenue",0.4845 -883,182136,146 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,10 Jul 2012,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104QJ,100010330938.0,"146, Brownhill Avenue",0.4845 -989,305158,148 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,08 May 2019,C - 69 to 80,74.0,C - 69 to 80,74.0,BB104QJ,100010330939.0,"148, Brownhill Avenue",0.4845 -1099,125501,150 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,13 Dec 2011,C - 69 to 80,71.0,C - 69 to 80,75.0,BB104QJ,100010330941.0,"150, Brownhill Avenue",0.4845 -6995,304937,88 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,23 Apr 2019,D - 55 to 68,67.0,C - 69 to 80,73.0,BB104QJ,100010330885.0,"88, Brownhill Avenue",0.4801 -7098,227012,90 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,18 Jul 2014,C - 69 to 80,71.0,C - 69 to 80,75.0,BB104QJ,100010330887.0,"90, Brownhill Avenue",0.4801 -7195,90103,92 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,23 Jan 2010,C - 69 to 80,77.0,B - 81 to 91,81.0,BB104QJ,100010330889.0,"92, Brownhill Avenue",0.4801 -7295,244455,94 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,24 Nov 2015,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104QJ,100010330891.0,"94, Brownhill Avenue",0.4801 -7392,305189,96 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,14 May 2019,D - 55 to 68,68.0,C - 69 to 80,73.0,BB104QJ,100010330893.0,"96, Brownhill Avenue",0.4801 -7488,111107,98 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2011,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QJ,100010330894.0,"98, Brownhill Avenue",0.4801 -7580,40997,100 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,09 Jun 2009,C - 69 to 80,77.0,B - 81 to 91,81.0,BB104QJ,100010330896.0,"100, Brownhill Avenue",0.4845 -7689,271903,102 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,15 Feb 2017,D - 55 to 68,68.0,C - 69 to 80,73.0,BB104QJ,100010330898.0,"102, Brownhill Avenue",0.4845 -7797,362613,104 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104QJ,100010330900.0,104 Brownhill Avenue,0.4845 -8104,234327,110 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,20 Mar 2015,C - 69 to 80,75.0,C - 69 to 80,75.0,BB104QJ,100010330906.0,"110, Brownhill Avenue",0.4845 -8202,362636,112 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104QJ,100010330908.0,112 Brownhill Avenue,0.4845 -8305,220118,114 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,20 Nov 2013,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104QJ,100010330910.0,"114, Brownhill Avenue",0.4845 -8411,203575,116 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,25 Apr 2013,C - 69 to 80,72.0,C - 69 to 80,73.0,BB104QJ,100010330911.0,116 Brownhill Avenue,0.4845 -8518,305165,118 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,10 May 2019,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104QJ,100010330913.0,"118, Brownhill Avenue",0.4845 -8641,204089,120 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,16 May 2013,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QJ,100010330915.0,"120, Brownhill Avenue",0.4845 -8765,41048,122 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,23 Oct 2025,D - 55 to 68,67.0,C - 69 to 80,69.0,BB104QJ,100010330917.0,122 Brownhill Avenue,0.4845 -8883,222618,124 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,03 Mar 2014,C - 69 to 80,75.0,C - 69 to 80,76.0,BB104QJ,100010330919.0,"124, Brownhill Avenue",0.4845 -8989,98159,126 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,24 Aug 2022,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104QJ,100010330921.0,126 Brownhill Avenue,0.4845 -9103,362695,128 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,24 Nov 2022,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104QJ,100010330923.0,128 Brownhill Avenue,0.4845 -9339,252264,132 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,07 Jul 2016,B - 81 to 91,90.0,A - 92 Plus,94.0,BB104QJ,100010330927.0,"132, Brownhill Avenue",0.4845 -9455,220609,134 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Top,Domestic EPC Required,EPC Present,31 Jul 2023,B - 81 to 91,90.0,B - 81 to 91,90.0,BB104QJ,100010330929.0,134 Brownhill Avenue,0.4845 -9559,76892,136 Brownhill Avenue Burnley Lancashire BB10 4QJ,,, BB10 4QJ,Flat: Bottom,Domestic EPC Required,EPC Present,02 Sep 2009,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104QJ,100010330931.0,"136, Brownhill Avenue",0.4845 -487,252164,18 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Top,Domestic EPC Required,EPC Present,07 Dec 2017,C - 69 to 80,71.0,C - 69 to 80,74.0,BB115HY,100010336852.0,"18, Dalton Street",0.4652 -542,40663,19 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Feb 2026,C - 69 to 80,75.0,B - 81 to 91,82.0,BB115HY,100010336853.0,"19, Dalton Street",0.4652 -588,250532,20 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Bottom,Domestic EPC Required,EPC Present,07 Jun 2016,C - 69 to 80,70.0,C - 69 to 80,75.0,BB115HY,100010336854.0,"20, Dalton Street",0.4652 -639,362146,21 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Jun 2022,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115HY,100010336855.0,21 Dalton Street,0.4652 -789,243351,24 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Top,Domestic EPC Required,EPC Present,29 Oct 2015,C - 69 to 80,72.0,C - 69 to 80,72.0,BB115HY,100010336858.0,"24, Dalton Street",0.4652 -838,188286,25 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jun 2024,C - 69 to 80,74.0,B - 81 to 91,91.0,BB115HY,100010336859.0,25 Dalton Street,0.4652 -892,40680,26 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Top,Domestic EPC Required,EPC Present,05 Dec 2023,C - 69 to 80,74.0,C - 69 to 80,74.0,BB115HY,100010336860.0,26 Dalton Street,0.4652 -997,97719,28 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Bottom,Domestic EPC Required,EPC Present,11 Aug 2010,D - 55 to 68,66.0,C - 69 to 80,75.0,BB115HY,100010336862.0,"28, Dalton Street",0.4652 -1108,252183,30 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Bottom,Domestic EPC Required,EPC Present,15 Jul 2025,C - 69 to 80,73.0,C - 69 to 80,76.0,BB115HY,100010336864.0,30 Dalton Street,0.4652 -1157,89771,31 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,86.0,BB115HY,100010336865.0,31 Dalton Street,0.4652 -1213,362168,32 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Top,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,75.0,BB115HY,100010336866.0,32 Dalton Street,0.4652 -2162,253479,50 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,12 Sep 2016,C - 69 to 80,70.0,B - 81 to 91,90.0,BB115HY,100010336874.0,"50, Dalton Street",0.4652 -8770,96148,2 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Aug 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115HY,100010336836.0,2 Dalton Street,0.4596 -8888,304936,4 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Apr 2019,D - 55 to 68,68.0,B - 81 to 91,84.0,BB115HY,100010336838.0,"4, Dalton Street",0.4596 -8995,234697,6 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Dec 2025,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115HY,100010336840.0,6 Dalton Street,0.4596 -9173,41065,9 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Oct 2008,D - 55 to 68,67.0,C - 69 to 80,71.0,BB115HY,100010336843.0,"9, Dalton Street",0.4596 -9224,90141,10 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Top,Domestic EPC Required,EPC Present,24 Nov 2025,C - 69 to 80,76.0,C - 69 to 80,77.0,BB115HY,100010336844.0,10 Dalton Street,0.4652 -9290,41072,11 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,66.0,C - 69 to 80,74.0,BB115HY,100010336845.0,11 Dalton Street,0.4652 -9341,275585,12 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jun 2017,D - 55 to 68,68.0,C - 69 to 80,73.0,BB115HY,100010336846.0,"12, Dalton Street",0.4652 -9405,69498,13 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,77.0,BB115HY,100010336847.0,13 Dalton Street,0.4652 -9458,136630,14 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Bottom,Domestic EPC Required,EPC Present,06 Jan 2026,C - 69 to 80,72.0,C - 69 to 80,74.0,BB115HY,100010336848.0,14 Dalton Street,0.4652 -9566,103975,16 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Flat: Top,Domestic EPC Required,EPC Present,10 Jun 2024,C - 69 to 80,73.0,C - 69 to 80,76.0,BB115HY,100010336850.0,16 Dalton Street,0.4652 -10997,112588,52 Dalton Street Burnley Lancashire BB11 5HY,,, BB11 5HY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,06 Apr 2011,D - 55 to 68,61.0,C - 69 to 80,72.0,BB115HY,100010336875.0,"52, Dalton Street",0.4652 -491,40658,20 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,09 Feb 2026,C - 69 to 80,75.0,C - 69 to 80,80.0,BB127LQ,100010359842.0,"20, Water Street, Hapton",0.5389 -549,225825,21 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,02 Jun 2014,D - 55 to 68,65.0,B - 81 to 91,88.0,BB127LQ,100010359843.0,"21, Water Street, Hapton",0.5389 -643,245155,23 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,01 Nov 2025,B - 81 to 91,82.0,B - 81 to 91,85.0,BB127LQ,100010359844.0,"23 Water Street, Hapton",0.5389 -743,90320,25 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Mar 2010,C - 69 to 80,72.0,C - 69 to 80,74.0,BB127LQ,100010359845.0,"25, Water Street, Hapton",0.5389 -844,246347,27 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB127LQ,100010359846.0,"27 Water Street, Hapton",0.5389 -8648,245156,2 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,75.0,B - 81 to 91,81.0,BB127LQ,100010359824.0,"2 Water Street, Hapton",0.535 -8772,115841,4 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,77.0,B - 81 to 91,81.0,BB127LQ,100010359826.0,"4 Water Street, Hapton",0.535 -8892,95419,6 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 May 2010,C - 69 to 80,70.0,C - 69 to 80,75.0,BB127LQ,100010359828.0,"6, Water Street, Hapton",0.535 -8999,221673,8 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,15 Jul 2014,D - 55 to 68,65.0,A - 92 Plus,97.0,BB127LQ,100010359830.0,"8, Water Street, Hapton",0.535 -9110,246348,10 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 Oct 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB127LQ,100010359832.0,"10 Water Street, Hapton",0.5389 -9228,232168,12 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,26 Jan 2015,D - 55 to 68,64.0,B - 81 to 91,86.0,BB127LQ,100010359834.0,"12, Water Street, Hapton",0.5389 -9346,234699,14 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,79.0,B - 81 to 91,85.0,BB127LQ,100010359836.0,"14 Water Street, Hapton",0.5389 -9462,41078,16 Water Street Hapton Burnley Lancashire BB12 7LQ,,, BB12 7LQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,05 Mar 2009,C - 69 to 80,69.0,C - 69 to 80,72.0,BB127LQ,100010359838.0,"16, Water Street, Hapton",0.5389 -496,250244,21 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Top,Domestic EPC Required,EPC Present,09 May 2016,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104NF,100010352283.0,"21, Pleasington Grove",0.4845 -599,250245,23 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Top,Domestic EPC Required,EPC Present,05 May 2016,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104NF,100010352284.0,"23, Pleasington Grove",0.4845 -8535,250100,1 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,22 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,73.0,BB104NF,100010352265.0,1 Pleasington Grove,0.4801 -8602,76902,2 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,25 Jun 2025,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104NF,100010352266.0,2 Pleasington Grove,0.4801 -8657,250101,3 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,22 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,73.0,BB104NF,100010352267.0,3 Pleasington Grove,0.4801 -8723,223677,4 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,22 Apr 2014,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104NF,100010352268.0,"4, Pleasington Grove",0.4801 -8780,250113,5 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Top,Domestic EPC Required,EPC Present,05 May 2016,C - 69 to 80,71.0,C - 69 to 80,75.0,BB104NF,100010352269.0,"5, Pleasington Grove",0.4801 -8843,323719,6 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Top,Domestic EPC Required,EPC Present,31 Oct 2019,C - 69 to 80,75.0,C - 69 to 80,76.0,BB104NF,100010352270.0,"6, Pleasington Grove",0.4801 -8902,250132,7 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Top,Domestic EPC Required,EPC Present,14 May 2016,C - 69 to 80,74.0,C - 69 to 80,78.0,BB104NF,100010352271.0,"7, Pleasington Grove",0.4801 -9009,250166,9 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,05 May 2016,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104NF,100010352273.0,"9, Pleasington Grove",0.4801 -9063,211782,10 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,23 Oct 2013,C - 69 to 80,71.0,C - 69 to 80,78.0,BB104NF,100010352274.0,"10, Pleasington Grove",0.4845 -9116,252156,11 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,05 May 2016,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104NF,100010352275.0,"11, Pleasington Grove",0.4845 -9186,323718,12 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,31 Oct 2019,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104NF,100010352276.0,"12, Pleasington Grove",0.4845 -9233,250167,13 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Top,Domestic EPC Required,EPC Present,05 May 2016,C - 69 to 80,70.0,C - 69 to 80,76.0,BB104NF,100010352277.0,"13, Pleasington Grove",0.4845 -9301,96323,14 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Top,Domestic EPC Required,EPC Present,09 Jul 2010,C - 69 to 80,75.0,C - 69 to 80,80.0,BB104NF,100010352278.0,"14, Pleasington Grove",0.4845 -9355,250228,15 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Top,Domestic EPC Required,EPC Present,05 May 2016,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104NF,100010352279.0,"15, Pleasington Grove",0.4845 -9417,295072,16 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Top,Domestic EPC Required,EPC Present,12 Dec 2017,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104NF,100010352280.0,"16, Pleasington Grove",0.4845 -9470,250229,17 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,05 May 2016,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104NF,100010352281.0,"17, Pleasington Grove",0.4845 -9570,250238,19 Pleasington Grove Burnley Lancashire BB10 4NF,,, BB10 4NF,Flat: Bottom,Domestic EPC Required,EPC Present,22 Nov 2025,D - 55 to 68,63.0,C - 69 to 80,75.0,BB104NF,100010352282.0,19 Pleasington Grove,0.4845 -498,40659,25 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Jul 2018,D - 55 to 68,63.0,B - 81 to 91,81.0,BB114EA,100010345292.0,"25, Lanark Street",0.4652 -8317,115739,1 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Flat: Top,Domestic EPC Required,EPC Present,08 Jul 2011,D - 55 to 68,65.0,C - 69 to 80,72.0,BB114EA,100010345270.0,"1, Lanark Street",0.4596 -8369,252204,2 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Jun 2011,E - 39 to 54,50.0,D - 55 to 68,68.0,BB114EA,100010345271.0,"2, Lanark Street",0.4596 -8419,76851,3 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Flat: Bottom,Domestic EPC Required,EPC Present,17 Aug 2009,C - 69 to 80,74.0,C - 69 to 80,77.0,BB114EA,100010345272.0,"3, Lanark Street",0.4596 -8479,252211,4 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Jul 2018,D - 55 to 68,66.0,B - 81 to 91,83.0,BB114EA,100010345273.0,"4, Lanark Street",0.4596 -8533,89052,5 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Flat: Bottom,Domestic EPC Required,EPC Present,30 Oct 2009,C - 69 to 80,75.0,C - 69 to 80,76.0,BB114EA,100010345274.0,"5, Lanark Street",0.4596 -8600,41045,6 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Nov 2025,D - 55 to 68,63.0,C - 69 to 80,71.0,BB114EA,100010345275.0,6 Lanark Street,0.4596 -8659,232172,7 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Flat: Top,Domestic EPC Required,EPC Present,02 Jan 2015,C - 69 to 80,74.0,C - 69 to 80,76.0,BB114EA,100010345276.0,"7, Lanark Street",0.4596 -8782,225869,9 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,01 Dec 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB114EA,100010345278.0,9 Lanark Street,0.4596 -8841,41051,10 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Aug 2018,D - 55 to 68,67.0,B - 81 to 91,85.0,BB114EA,100010345279.0,"10, Lanark Street",0.4652 -8896,243653,11 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,01 Dec 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB114EA,100010345280.0,11 Lanark Street,0.4652 -9006,252194,13 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,31 Jul 2025,C - 69 to 80,71.0,C - 69 to 80,79.0,BB114EA,100010345282.0,13 Lanark Street,0.4652 -9062,227040,14 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Dec 2025,D - 55 to 68,67.0,C - 69 to 80,75.0,BB114EA,100010345283.0,14 Lanark Street,0.4652 -9117,114741,15 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,28 Nov 2025,D - 55 to 68,56.0,D - 55 to 68,65.0,BB114EA,100010345284.0,15 Lanark Street,0.4652 -9235,250580,17 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Flat: Top,Domestic EPC Required,EPC Present,15 Jun 2016,C - 69 to 80,74.0,C - 69 to 80,75.0,BB114EA,100010345286.0,"17, Lanark Street",0.4652 -9303,41073,18 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,67.0,C - 69 to 80,74.0,BB114EA,100010345287.0,18 Lanark Street,0.4652 -9356,41075,19 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Flat: Bottom,Domestic EPC Required,EPC Present,28 Aug 2014,C - 69 to 80,70.0,C - 69 to 80,74.0,BB114EA,100010345288.0,"19, Lanark Street",0.4652 -9414,125083,20 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Nov 2011,D - 55 to 68,67.0,D - 55 to 68,68.0,BB114EA,100010345289.0,"20, Lanark Street",0.4652 -9466,105064,21 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Flat: Bottom,Domestic EPC Required,EPC Present,22 Aug 2025,C - 69 to 80,72.0,C - 69 to 80,76.0,BB114EA,100010345290.0,21 Lanark Street,0.4652 -9572,41081,23 Lanark Street Burnley Lancashire BB11 4EA,,, BB11 4EA,Flat: Top,Domestic EPC Required,EPC Present,31 Dec 2008,D - 55 to 68,61.0,C - 69 to 80,74.0,BB114EA,100010345291.0,"23, Lanark Street",0.4652 -500,362135,95 Blacker Street Burnley Lancashire BB10 2AF,,, BB10 2AF,House: End Terrace,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB102AF,100010329240.0,95 Blacker Street,0.4705 -898,236530,103 Blacker Street Burnley Lancashire BB10 2AF,,, BB10 2AF,House: Semi-Detached,Domestic EPC Required,EPC Present,29 May 2015,D - 55 to 68,55.0,B - 81 to 91,83.0,BB102AF,100010329244.0,"103, Blacker Street",0.4754 -1224,362170,109 Blacker Street Burnley Lancashire BB10 2AF,,, BB10 2AF,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB102AF,100010329247.0,109 Blacker Street,0.4754 -5397,223445,12 Blacker Street Burnley Lancashire BB10 2AF,,, BB10 2AF,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2014,D - 55 to 68,67.0,B - 81 to 91,83.0,BB102AF,100010329228.0,"12, Blacker Street",0.4705 -5600,110798,16 Blacker Street Burnley Lancashire BB10 2AF,,, BB10 2AF,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Jan 2026,D - 55 to 68,58.0,C - 69 to 80,78.0,BB102AF,100010329230.0,16 Blacker Street,0.4705 -8898,88999,81 Blacker Street Burnley Lancashire BB10 2AF,,, BB10 2AF,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jan 2026,D - 55 to 68,58.0,C - 69 to 80,73.0,BB102AF,100010329233.0,81 Blacker Street,0.4705 -508,109804,38 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,22 Oct 2025,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104NX,100010333553.0,38 Chatburn Avenue,0.4754 -657,252281,41 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,14 Jul 2016,C - 69 to 80,69.0,C - 69 to 80,78.0,BB104NX,100010333555.0,"41, Chatburn Avenue",0.4754 -756,100566,43 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,02 Feb 2026,D - 55 to 68,63.0,C - 69 to 80,71.0,BB104NX,100010333557.0,"43, Chatburn Avenue",0.4754 -807,323190,44 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2019,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104NX,100010333558.0,"44, Chatburn Avenue",0.4754 -858,100533,45 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,16 Sep 2010,D - 55 to 68,64.0,C - 69 to 80,75.0,BB104NX,100010333559.0,"45, Chatburn Avenue",0.4754 -907,323189,46 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2019,D - 55 to 68,68.0,C - 69 to 80,77.0,BB104NX,100010333560.0,"46, Chatburn Avenue",0.4754 -958,95024,47 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,25 Feb 2026,C - 69 to 80,75.0,C - 69 to 80,75.0,BB104NX,100010333561.0,"47, Chatburn Avenue",0.4754 -1009,323191,48 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,27 Sep 2019,C - 69 to 80,77.0,C - 69 to 80,78.0,BB104NX,100010333562.0,"48, Chatburn Avenue",0.4754 -1286,208555,53 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,21 Jan 2026,D - 55 to 68,66.0,C - 69 to 80,75.0,BB104NX,100010333565.0,53 Chatburn Avenue,0.4754 -1712,40730,61 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,12 Feb 2009,C - 69 to 80,77.0,C - 69 to 80,78.0,BB104NX,100010333569.0,"61, Chatburn Avenue",0.4754 -1822,243004,63 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,22 Oct 2015,C - 69 to 80,69.0,C - 69 to 80,77.0,BB104NX,100010333570.0,"63, Chatburn Avenue",0.4754 -7657,323322,1 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Oct 2019,D - 55 to 68,65.0,C - 69 to 80,80.0,BB104NX,100010333519.0,"1, Chatburn Avenue",0.4705 -7709,195779,2 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,18 Jan 2013,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104NX,100010333520.0,"2, Chatburn Avenue",0.4705 -7817,76843,4 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,07 Nov 2021,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104NX,100010333522.0,4 Chatburn Avenue,0.4705 -7872,323193,5 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2019,C - 69 to 80,73.0,B - 81 to 91,87.0,BB104NX,100010333523.0,"5, Chatburn Avenue",0.4705 -7923,222020,6 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2014,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104NX,100010333524.0,"6, Chatburn Avenue",0.4705 -8070,323194,9 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2019,C - 69 to 80,73.0,B - 81 to 91,88.0,BB104NX,100010333527.0,"9, Chatburn Avenue",0.4705 -8125,247017,10 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,03 Mar 2016,D - 55 to 68,66.0,C - 69 to 80,77.0,BB104NX,100010333528.0,"10, Chatburn Avenue",0.4754 -8224,232310,12 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,15 Jul 2025,D - 55 to 68,63.0,C - 69 to 80,73.0,BB104NX,100010333530.0,12 Chatburn Avenue,0.4754 -8274,125011,13 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,14 Nov 2011,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104NX,100010333531.0,"13, Chatburn Avenue",0.4754 -8376,208554,15 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,24 Dec 2024,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104NX,100010333533.0,15 Chatburn Avenue,0.4754 -8487,94976,17 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,17 Oct 2024,C - 69 to 80,71.0,C - 69 to 80,74.0,BB104NX,100010333535.0,17 Chatburn Avenue,0.4754 -8541,323187,18 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2019,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104NX,100010333536.0,"18, Chatburn Avenue",0.4754 -8609,229296,19 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,28 Oct 2014,D - 55 to 68,68.0,C - 69 to 80,78.0,BB104NX,100010333537.0,"19, Chatburn Avenue",0.4754 -8963,362684,25 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104NX,100010333541.0,25 Chatburn Avenue,0.4754 -9073,362694,27 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,74.0,C - 69 to 80,78.0,BB104NX,100010333543.0,27 Chatburn Avenue,0.4754 -9129,41063,28 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,03 Nov 2008,C - 69 to 80,73.0,C - 69 to 80,75.0,BB104NX,100010333544.0,"28, Chatburn Avenue",0.4754 -9247,323192,30 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2019,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104NX,100010333546.0,"30, Chatburn Avenue",0.4754 -9309,323188,31 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2019,D - 55 to 68,63.0,C - 69 to 80,74.0,BB104NX,100010333547.0,"31, Chatburn Avenue",0.4754 -9425,246547,33 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,02 Feb 2016,D - 55 to 68,66.0,C - 69 to 80,77.0,BB104NX,100010333549.0,"33, Chatburn Avenue",0.4754 -9477,89004,34 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,22 Nov 2022,C - 69 to 80,73.0,C - 69 to 80,78.0,BB104NX,100010333550.0,34 Chatburn Avenue,0.4754 -12656,303747,8 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,26 Nov 2015,D - 55 to 68,67.0,C - 69 to 80,77.0,BB104NX,100010333526.0,"8, Chatburn Avenue",0.4705 -13129,336403,55 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Bottom,Domestic EPC Required,EPC Present,10 Sep 2020,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104NX,100010333566.0,"55, Chatburn Avenue",0.4754 -13476,352601,35 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,Flat: Top,Domestic EPC Required,EPC Present,05 Jul 2022,C - 69 to 80,74.0,C - 69 to 80,78.0,BB104NX,100010333551.0,35 Chatburn Avenue,0.4754 -13729,359407,51 Chatburn Avenue Burnley Lancashire BB10 4NX,,, BB10 4NX,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Mar 2023,C - 69 to 80,69.0,C - 69 to 80,75.0,BB104NX,100010333564.0,51 Chatburn Avenue,0.4754 -516,323353,11 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Dec 2025,D - 55 to 68,63.0,C - 69 to 80,75.0,BB104NU,100010351748.0,11 Paythorne Avenue,0.4801 -568,323355,12 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Oct 2019,C - 69 to 80,75.0,B - 81 to 91,88.0,BB104NU,100010351749.0,"12, Paythorne Avenue",0.4801 -616,220698,13 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Dec 2013,D - 55 to 68,68.0,B - 81 to 91,85.0,BB104NU,100010351750.0,"13, Paythorne Avenue",0.4801 -815,245154,17 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Oct 2015,C - 69 to 80,71.0,B - 81 to 91,86.0,BB104NU,100010351754.0,"17, Paythorne Avenue",0.4801 -863,362153,18 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB104NU,100010351755.0,18 Paythorne Avenue,0.4801 -914,223487,19 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Apr 2014,D - 55 to 68,66.0,B - 81 to 91,83.0,BB104NU,100010351756.0,"19, Paythorne Avenue",0.4801 -1020,323742,21 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: End Terrace,Domestic EPC Required,EPC Present,04 Nov 2019,D - 55 to 68,68.0,B - 81 to 91,85.0,BB104NU,100010351758.0,"21, Paythorne Avenue",0.4801 -1132,323741,23 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Nov 2019,C - 69 to 80,71.0,B - 81 to 91,85.0,BB104NU,100010351760.0,"23, Paythorne Avenue",0.4801 -1240,323631,25 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Oct 2019,D - 55 to 68,59.0,B - 81 to 91,85.0,BB104NU,100010351762.0,"25, Paythorne Avenue",0.4801 -1509,323683,30 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Oct 2019,C - 69 to 80,69.0,B - 81 to 91,85.0,BB104NU,100010351765.0,"30, Paythorne Avenue",0.4801 -1616,102783,32 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Jul 2023,D - 55 to 68,63.0,B - 81 to 91,83.0,BB104NU,100010351766.0,32 Paythorne Avenue,0.4801 -1722,226275,34 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Feb 2026,D - 55 to 68,65.0,B - 81 to 91,85.0,BB104NU,100010351767.0,"34, Paythorne Avenue",0.4801 -1832,323354,36 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Oct 2019,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104NU,100010351768.0,"36, Paythorne Avenue",0.4801 -9142,41064,1 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,Flat: Top,Domestic EPC Required,EPC Present,01 Apr 2009,C - 69 to 80,78.0,B - 81 to 91,81.0,BB104NU,100010351739.0,"1, Paythorne Avenue",0.4754 -9200,362698,2 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: End Terrace,Domestic EPC Required,EPC Present,01 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104NU,100010351740.0,2 Paythorne Avenue,0.4754 -9258,237854,3 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,Flat: Bottom,Domestic EPC Required,EPC Present,07 Jul 2015,D - 55 to 68,63.0,C - 69 to 80,75.0,BB104NU,100010351741.0,"3, Paythorne Avenue",0.4754 -9486,340204,7 Paythorne Avenue Burnley Lancashire BB10 4NU,,, BB10 4NU,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Aug 2021,D - 55 to 68,62.0,B - 81 to 91,85.0,BB104NU,100010351745.0,7 Paythorne Avenue,0.4754 -519,325555,16 Ribble Avenue Burnley Lancashire BB10 2QB,,, BB10 2QB,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102QB,100010353835.0,"16, Ribble Avenue",0.4652 -716,234533,20 Ribble Avenue Burnley Lancashire BB10 2QB,,, BB10 2QB,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Apr 2015,D - 55 to 68,60.0,B - 81 to 91,82.0,BB102QB,100010353837.0,"20, Ribble Avenue",0.4652 -9260,325553,8 Ribble Avenue Burnley Lancashire BB10 2QB,,, BB10 2QB,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,76.0,B - 81 to 91,88.0,BB102QB,100010353831.0,"8, Ribble Avenue",0.4596 -9489,197108,12 Ribble Avenue Burnley Lancashire BB10 2QB,,, BB10 2QB,House: End Terrace,Domestic EPC Required,EPC Present,11 Jan 2013,D - 55 to 68,59.0,B - 81 to 91,84.0,BB102QB,100010353833.0,"12, Ribble Avenue",0.4652 -9591,325552,14 Ribble Avenue Burnley Lancashire BB10 2QB,,, BB10 2QB,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,76.0,B - 81 to 91,88.0,BB102QB,100010353834.0,"14, Ribble Avenue",0.4652 -10898,95346,18 Ribble Avenue Burnley Lancashire BB10 2QB,,, BB10 2QB,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Mar 2009,E - 39 to 54,51.0,D - 55 to 68,68.0,BB102QB,100010353836.0,"18, Ribble Avenue",0.4652 -527,245194,135 Eastern Avenue Burnley Lancashire BB10 2AS,,, BB10 2AS,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,11 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,90.0,BB102AS,100010337978.0,"135, Eastern Avenue",0.4754 -626,94868,137 Eastern Avenue Burnley Lancashire BB10 2AS,,, BB10 2AS,Bungalow: End Terr,Domestic EPC Required,EPC Present,01 Apr 2010,C - 69 to 80,69.0,C - 69 to 80,74.0,BB102AS,100010337979.0,"137, Eastern Avenue",0.4754 -725,274961,139 Eastern Avenue Burnley Lancashire BB10 2AS,,, BB10 2AS,Bungalow: End Terr,Domestic EPC Required,EPC Present,21 Jun 2017,D - 55 to 68,66.0,B - 81 to 91,90.0,BB102AS,100010337980.0,"139, Eastern Avenue",0.4754 -826,100138,141 Eastern Avenue Burnley Lancashire BB10 2AS,,, BB10 2AS,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,70.0,B - 81 to 91,89.0,BB102AS,100010337981.0,141 Eastern Avenue,0.4754 -924,208336,143 Eastern Avenue Burnley Lancashire BB10 2AS,,, BB10 2AS,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,01 Dec 2025,D - 55 to 68,68.0,C - 69 to 80,78.0,BB102AS,100010337982.0,143 Eastern Avenue,0.4754 -1031,40688,145 Eastern Avenue Burnley Lancashire BB10 2AS,,, BB10 2AS,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Mar 2009,C - 69 to 80,69.0,C - 69 to 80,75.0,BB102AS,100010337983.0,"145, Eastern Avenue",0.4754 -9500,325761,131 Eastern Avenue Burnley Lancashire BB10 2AS,,, BB10 2AS,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,90.0,BB102AS,100010337976.0,"131, Eastern Avenue",0.4754 -9602,325762,133 Eastern Avenue Burnley Lancashire BB10 2AS,,, BB10 2AS,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,27 Jan 2020,D - 55 to 68,57.0,B - 81 to 91,91.0,BB102AS,100010337977.0,133 Eastern Avenue,0.4754 -533,245146,23 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Oct 2015,C - 69 to 80,71.0,B - 81 to 91,89.0,BB128NH,100010326739.0,"23, Adamson Street, Padiham",0.6214 -579,362141,24 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,88.0,BB128NH,100010326740.0,"24 Adamson Street, Padiham",0.6214 -679,105066,26 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,31 Oct 2025,B - 81 to 91,88.0,B - 81 to 91,90.0,BB128NH,100010326742.0,"26 Adamson Street, Padiham",0.6214 -775,221142,28 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,05 Dec 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB128NH,100010326743.0,"28 Adamson Street, Padiham",0.6214 -874,245816,30 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,91.0,BB128NH,100010326744.0,"30, Adamson Street, Padiham",0.6214 -980,89066,32 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,26 May 2023,C - 69 to 80,76.0,C - 69 to 80,80.0,BB128NH,100010326745.0,"32 Adamson Street, Padiham",0.6214 -1205,246178,36 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Dec 2015,D - 55 to 68,62.0,B - 81 to 91,85.0,BB128NH,100010326747.0,"36, Adamson Street, Padiham",0.6214 -1315,243001,38 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Oct 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB128NH,100010326748.0,"38, Adamson Street, Padiham",0.6214 -8516,362655,2 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Sep 2023,D - 55 to 68,65.0,B - 81 to 91,87.0,BB128NH,100010326720.0,"2 Adamson Street, Padiham",0.6185 -8760,362673,6 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Sep 2023,D - 55 to 68,65.0,B - 81 to 91,87.0,BB128NH,100010326722.0,"6 Adamson Street, Padiham",0.6185 -8821,246344,7 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,31 Oct 2025,B - 81 to 91,84.0,B - 81 to 91,86.0,BB128NH,100010326723.0,"7 Adamson Street, Padiham",0.6185 -8940,245693,9 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,80.0,B - 81 to 91,83.0,BB128NH,100010326725.0,"9 Adamson Street, Padiham",0.6185 -9047,245695,11 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,90.0,BB128NH,100010326727.0,"11, Adamson Street, Padiham",0.6214 -9159,246342,13 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128NH,100010326729.0,"13, Adamson Street, Padiham",0.6214 -9276,97626,15 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jun 2024,C - 69 to 80,78.0,B - 81 to 91,87.0,BB128NH,100010326731.0,"15 Adamson Street, Padiham",0.6214 -9512,246343,19 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,11 Dec 2015,C - 69 to 80,69.0,B - 81 to 91,88.0,BB128NH,100010326735.0,"19, Adamson Street, Padiham",0.6214 -9550,231197,20 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Jan 2015,D - 55 to 68,65.0,B - 81 to 91,91.0,BB128NH,100010326736.0,"20, Adamson Street, Padiham",0.6214 -12758,322250,21 Adamson Street Padiham Lancashire BB12 8NH,,, BB12 8NH,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,72.0,C - 69 to 80,80.0,BB128NH,100010326737.0,"21 Adamson Street, Padiham",0.6214 -534,40660,26 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Dec 2008,C - 69 to 80,69.0,C - 69 to 80,76.0,BB128PD,100010361205.0,"26, Windermere Road, Padiham",0.6242 -584,40666,27 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: End Terrace,Domestic EPC Required,EPC Present,21 Nov 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB128PD,100010361206.0,"27 Windermere Road, Padiham",0.6242 -833,192265,32 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: End Terrace,Domestic EPC Required,EPC Present,19 Jan 2026,C - 69 to 80,71.0,B - 81 to 91,86.0,BB128PD,100010361211.0,"32 Windermere Road, Padiham",0.6242 -1532,362188,45 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: End Terrace,Domestic EPC Required,EPC Present,21 Aug 2022,D - 55 to 68,67.0,B - 81 to 91,82.0,BB128PD,100010361218.0,"45 Windermere Road, Padiham",0.6242 -1638,103135,47 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Nov 2010,C - 69 to 80,72.0,C - 69 to 80,77.0,BB128PD,100010361219.0,"47, Windermere Road, Padiham",0.6242 -1743,338981,49 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Jun 2021,D - 55 to 68,67.0,B - 81 to 91,86.0,BB128PD,100010361220.0,"49 WINDERMERE ROAD, PADIHAM",0.6242 -1854,40737,51 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: End Terrace,Domestic EPC Required,EPC Present,30 May 2019,C - 69 to 80,69.0,B - 81 to 91,85.0,BB128PD,100010361221.0,"51 Windermere Road, Padiham",0.6242 -1956,250529,53 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: End Terrace,Domestic EPC Required,EPC Present,07 Jun 2016,D - 55 to 68,64.0,B - 81 to 91,85.0,BB128PD,100010361222.0,"53, Windermere Road, Padiham",0.6242 -9214,362700,17 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: End Terrace,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB128PD,100010361196.0,"17 Windermere Road, Padiham",0.6242 -9333,362705,19 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB128PD,100010361198.0,"19 Windermere Road, Padiham",0.6242 -9454,220121,21 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2013,D - 55 to 68,68.0,B - 81 to 91,86.0,BB128PD,100010361200.0,"21, Windermere Road, Padiham",0.6242 -9510,181036,22 Windermere Road Padiham Lancashire BB12 8PD,,, BB12 8PD,House: End Terrace,Domestic EPC Required,EPC Present,22 Jun 2012,D - 55 to 68,65.0,B - 81 to 91,83.0,BB128PD,100010361201.0,"22, Windermere Road, Padiham",0.6242 -535,40661,65 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Flat: Bottom,Domestic EPC Required,EPC Present,28 Oct 2025,D - 55 to 68,64.0,C - 69 to 80,72.0,BB114EB,100010341473.0,65 Harold Street,0.4652 -629,40668,67 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Flat: Bottom,Domestic EPC Required,EPC Present,26 Jan 2009,C - 69 to 80,70.0,C - 69 to 80,77.0,BB114EB,100010341475.0,"67, Harold Street",0.4652 -727,107912,69 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Flat: Top,Domestic EPC Required,EPC Present,15 Aug 2024,D - 55 to 68,62.0,C - 69 to 80,71.0,BB114EB,100010341477.0,69 Harold Street,0.4652 -828,221603,71 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 Dec 2013,D - 55 to 68,66.0,B - 81 to 91,88.0,BB114EB,100010341479.0,"71, Harold Street",0.4652 -930,40681,73 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 May 2009,D - 55 to 68,68.0,D - 55 to 68,68.0,BB114EB,100010341481.0,"73, Harold Street",0.4652 -1038,271934,75 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Feb 2017,D - 55 to 68,64.0,B - 81 to 91,85.0,BB114EB,100010341483.0,"75, Harold Street",0.4652 -1147,198528,77 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Mar 2013,D - 55 to 68,64.0,B - 81 to 91,86.0,BB114EB,100010341485.0,"77, Harold Street",0.4652 -1257,362173,79 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Flat: Top,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,71.0,C - 69 to 80,73.0,BB114EB,100010341487.0,79 Harold Street,0.4652 -1366,125084,81 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Flat: Bottom,Domestic EPC Required,EPC Present,10 Jan 2026,C - 69 to 80,72.0,C - 69 to 80,74.0,BB114EB,100010341488.0,81 Harold Street,0.4652 -1473,132683,83 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Flat: Bottom,Domestic EPC Required,EPC Present,23 Jan 2012,D - 55 to 68,64.0,C - 69 to 80,70.0,BB114EB,100010341489.0,"83, Harold Street",0.4652 -1583,241368,85 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Flat: Top,Domestic EPC Required,EPC Present,27 Oct 2025,D - 55 to 68,63.0,C - 69 to 80,73.0,BB114EB,100010341490.0,85 Harold Street,0.4652 -1688,134166,87 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jan 2012,D - 55 to 68,59.0,D - 55 to 68,64.0,BB114EB,100010341491.0,"87, Harold Street",0.4652 -1904,362206,91 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB114EB,100010341493.0,91 Harold Street,0.4652 -8636,362661,46 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB114EB,100010341454.0,46 Harold Street,0.4652 -8756,194959,48 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Dec 2024,D - 55 to 68,68.0,B - 81 to 91,85.0,BB114EB,100010341456.0,48 Harold Street,0.4652 -8875,90174,50 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Feb 2010,D - 55 to 68,60.0,C - 69 to 80,72.0,BB114EB,100010341458.0,"50, Harold Street",0.4652 -8984,247008,52 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Feb 2026,C - 69 to 80,74.0,C - 69 to 80,80.0,BB114EB,100010341460.0,"52, Harold Street",0.4652 -9097,230229,54 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Nov 2014,C - 69 to 80,72.0,B - 81 to 91,82.0,BB114EB,100010341462.0,"54, Harold Street",0.4652 -9277,41070,57 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Feb 2026,C - 69 to 80,76.0,B - 81 to 91,81.0,BB114EB,100010341465.0,"57, Harold Street",0.4652 -9393,41077,59 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jun 2009,D - 55 to 68,63.0,C - 69 to 80,73.0,BB114EB,100010341467.0,"59, Harold Street",0.4652 -9506,304935,61 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Oct 2025,D - 55 to 68,67.0,C - 69 to 80,74.0,BB114EB,100010341469.0,61 Harold Street,0.4652 -9608,41084,63 Harold Street Burnley Lancashire BB11 4EB,,, BB11 4EB,Flat: Top,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,72.0,C - 69 to 80,73.0,BB114EB,100010341471.0,63 Harold Street,0.4652 -539,323720,41 Bowland Avenue Burnley Lancashire BB10 4NG,,, BB10 4NG,Flat: Top,Domestic EPC Required,EPC Present,31 Oct 2019,D - 55 to 68,66.0,C - 69 to 80,69.0,BB104NG,100010329377.0,"41, Bowland Avenue",0.4705 -636,210920,43 Bowland Avenue Burnley Lancashire BB10 4NG,,, BB10 4NG,Flat: Bottom,Domestic EPC Required,EPC Present,22 May 2024,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104NG,100010329378.0,43 Bowland Avenue,0.4705 -7533,323769,1 Bowland Avenue Burnley Lancashire BB10 4NG,,, BB10 4NG,House: End Terrace,Domestic EPC Required,EPC Present,07 Nov 2019,C - 69 to 80,72.0,B - 81 to 91,85.0,BB104NG,100010329342.0,"1, Bowland Avenue",0.4652 -7636,286349,3 Bowland Avenue Burnley Lancashire BB10 4NG,,, BB10 4NG,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jul 2017,C - 69 to 80,71.0,B - 81 to 91,85.0,BB104NG,100010329344.0,"3, Bowland Avenue",0.4652 -8257,94999,15 Bowland Avenue Burnley Lancashire BB10 4NG,,, BB10 4NG,House: End Terrace,Domestic EPC Required,EPC Present,13 Feb 2026,D - 55 to 68,67.0,B - 81 to 91,81.0,BB104NG,100010329356.0,"15, Bowland Avenue",0.4705 -9053,323721,29 Bowland Avenue Burnley Lancashire BB10 4NG,,, BB10 4NG,Flat: Bottom,Domestic EPC Required,EPC Present,31 Oct 2019,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104NG,100010329368.0,"29, Bowland Avenue",0.4705 -9284,101571,33 Bowland Avenue Burnley Lancashire BB10 4NG,,, BB10 4NG,Flat: Top,Domestic EPC Required,EPC Present,08 Oct 2010,C - 69 to 80,78.0,B - 81 to 91,82.0,BB104NG,100010329372.0,"33, Bowland Avenue",0.4705 -9403,229297,35 Bowland Avenue Burnley Lancashire BB10 4NG,,, BB10 4NG,Flat: Bottom,Domestic EPC Required,EPC Present,22 Nov 2025,D - 55 to 68,62.0,C - 69 to 80,71.0,BB104NG,100010329374.0,35 Bowland Avenue,0.4705 -543,98157,22 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jun 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB114ER,100010339135.0,22 Forfar Street,0.4652 -640,340117,24 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Bottom,Domestic EPC Required,EPC Present,09 Aug 2021,C - 69 to 80,73.0,C - 69 to 80,76.0,BB114ER,100010339136.0,24 Forfar Street,0.4652 -839,235520,28 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Top,Domestic EPC Required,EPC Present,25 Nov 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB114ER,100010339138.0,28 Forfar Street,0.4652 -938,40682,30 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Bottom,Domestic EPC Required,EPC Present,17 May 2009,C - 69 to 80,75.0,C - 69 to 80,80.0,BB114ER,100010339139.0,"30, Forfar Street",0.4652 -1048,40691,32 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Bottom,Domestic EPC Required,EPC Present,06 Jan 2026,C - 69 to 80,74.0,C - 69 to 80,76.0,BB114ER,100010339140.0,32 Forfar Street,0.4652 -1158,362165,34 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Top,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB114ER,100010339142.0,34 Forfar Street,0.4652 -1214,362169,35 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB114ER,100010339143.0,35 Forfar Street,0.4652 -1327,362177,37 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB114ER,100010339145.0,37 Forfar Street,0.4652 -1378,362179,38 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Bottom,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB114ER,100010339146.0,38 Forfar Street,0.4652 -1483,362185,40 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Bottom,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,74.0,C - 69 to 80,76.0,BB114ER,100010339147.0,40 Forfar Street,0.4652 -1592,362189,42 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Top,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB114ER,100010339148.0,42 Forfar Street,0.4652 -1698,362195,44 Forfar Street Burnley Lancashire BB11 4ER,,, BB11 4ER,Flat: Top,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB114ER,100010339149.0,44 Forfar Street,0.4652 -547,237555,10 Hambledon View Burnley Lancashire BB12 6NY,,, BB12 6NY,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Jun 2015,D - 55 to 68,55.0,C - 69 to 80,73.0,BB126NY,100010340927.0,"10, Hambledon View",0.4705 -1269,40705,24 Hambledon View Burnley Lancashire BB12 6NY,,, BB12 6NY,House: End Terrace,Domestic EPC Required,EPC Present,17 Oct 2017,E - 39 to 54,44.0,C - 69 to 80,74.0,BB126NY,100010340934.0,"24, Hambledon View",0.4705 -552,227011,22 Ebor Street Burnley Lancashire BB10 1ER,,, BB10 1ER,Flat: Bottom,Domestic EPC Required,EPC Present,18 Jul 2014,C - 69 to 80,70.0,C - 69 to 80,77.0,BB101ER,100010338037.0,"22, Ebor Street",0.4536 -648,40670,24 Ebor Street Burnley Lancashire BB10 1ER,,, BB10 1ER,Flat: Bottom,Domestic EPC Required,EPC Present,10 Jul 2009,C - 69 to 80,74.0,C - 69 to 80,76.0,BB101ER,100010338039.0,"24, Ebor Street",0.4536 -748,210887,26 Ebor Street Burnley Lancashire BB10 1ER,,, BB10 1ER,Flat: Top,Domestic EPC Required,EPC Present,22 Aug 2013,C - 69 to 80,69.0,C - 69 to 80,73.0,BB101ER,100010338041.0,"26, Ebor Street",0.4536 -12983,329225,28 Ebor Street Burnley Lancashire BB10 1ER,,, BB10 1ER,Flat: Top,Domestic EPC Required,EPC Present,11 Oct 2012,C - 69 to 80,71.0,C - 69 to 80,74.0,BB101ER,100010338043.0,"28, Ebor Street",0.4536 -556,362138,87 Casterton Avenue Burnley Lancashire BB10 2PB,,, BB10 2PB,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB102PB,100010333204.0,87 Casterton Avenue,0.4801 -852,237659,93 Casterton Avenue Burnley Lancashire BB10 2PB,,, BB10 2PB,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jun 2015,D - 55 to 68,61.0,B - 81 to 91,86.0,BB102PB,100010333210.0,"93, Casterton Avenue",0.4801 -1387,90199,103 Casterton Avenue Burnley Lancashire BB10 2PB,,, BB10 2PB,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Feb 2010,D - 55 to 68,68.0,C - 69 to 80,72.0,BB102PB,100010333220.0,"103, Casterton Avenue",0.4845 -1498,252237,105 Casterton Avenue Burnley Lancashire BB10 2PB,,, BB10 2PB,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jul 2016,C - 69 to 80,71.0,B - 81 to 91,86.0,BB102PB,100010333222.0,"105, Casterton Avenue",0.4845 -1924,96150,113 Casterton Avenue Burnley Lancashire BB10 2PB,,, BB10 2PB,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Feb 2026,D - 55 to 68,67.0,C - 69 to 80,74.0,BB102PB,100010333228.0,"113, Casterton Avenue",0.4845 -2027,325616,115 Casterton Avenue Burnley Lancashire BB10 2PB,,, BB10 2PB,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2025,C - 69 to 80,69.0,B - 81 to 91,87.0,BB102PB,100010333230.0,115 Casterton Avenue,0.4845 -561,362139,25 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB112PA,100010335749.0,25 Constable Avenue,0.4801 -656,245847,27 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Mar 2025,C - 69 to 80,70.0,B - 81 to 91,85.0,BB112PA,100010335751.0,27 Constable Avenue,0.4801 -703,192281,28 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Nov 2012,C - 69 to 80,71.0,B - 81 to 91,85.0,BB112PA,100010335752.0,"28, Constable Avenue",0.4801 -754,89775,29 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: End Terrace,Domestic EPC Required,EPC Present,24 Nov 2010,D - 55 to 68,57.0,C - 69 to 80,71.0,BB112PA,100010335753.0,"29, Constable Avenue",0.4801 -857,110900,31 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Nov 2010,D - 55 to 68,61.0,C - 69 to 80,74.0,BB112PA,100010335755.0,"31, Constable Avenue",0.4801 -906,110906,32 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,63.0,C - 69 to 80,78.0,BB112PA,100010335756.0,"32, Constable Avenue",0.4801 -1013,362160,34 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB112PA,100010335758.0,34 Constable Avenue,0.4801 -1121,110928,36 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Dec 2010,D - 55 to 68,60.0,C - 69 to 80,74.0,BB112PA,100010335760.0,"36, Constable Avenue",0.4801 -9072,362693,13 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB112PA,100010335737.0,13 Constable Avenue,0.4801 -9308,362704,17 Constable Avenue Burnley Lancashire BB11 2PA,,, BB11 2PA,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,82.0,BB112PA,100010335741.0,17 Constable Avenue,0.4801 -572,362140,1 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,90.0,BB126EF,10003781473.0,1 Woodbine Gardens,0.4754 -623,359958,2 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,06 Jun 2023,C - 69 to 80,75.0,B - 81 to 91,91.0,BB126EF,10003781484.0,2 Woodbine Gardens,0.4754 -670,226306,3 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,23 Jun 2014,C - 69 to 80,69.0,B - 81 to 91,91.0,BB126EF,10003781495.0,"3, Woodbine Gardens",0.4754 -720,221678,4 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,67.0,B - 81 to 91,88.0,BB126EF,10003781506.0,"4, Woodbine Gardens",0.4754 -770,104938,5 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,05 Nov 2024,C - 69 to 80,69.0,B - 81 to 91,87.0,BB126EF,10003781515.0,5 Woodbine Gardens,0.4754 -822,362150,6 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB126EF,10003781516.0,6 Woodbine Gardens,0.4754 -866,221602,7 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,18 Jul 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB126EF,10003781517.0,7 Woodbine Gardens,0.4754 -922,180695,8 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,24 Jun 2025,C - 69 to 80,71.0,C - 69 to 80,75.0,BB126EF,10003781518.0,8 Woodbine Gardens,0.4754 -971,201435,9 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,05 Apr 2013,C - 69 to 80,76.0,C - 69 to 80,79.0,BB126EF,10003781519.0,"9, Woodbine Gardens",0.4754 -1029,289906,10 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,26 Jul 2017,C - 69 to 80,75.0,C - 69 to 80,77.0,BB126EF,10003781474.0,"10, Woodbine Gardens",0.4801 -1083,362163,11 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB126EF,10003781475.0,11 Woodbine Gardens,0.4801 -1141,132614,12 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,26 Apr 2022,C - 69 to 80,78.0,C - 69 to 80,78.0,BB126EF,10003781476.0,12 Woodbine Gardens,0.4801 -1196,341048,13 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,15 Sep 2021,C - 69 to 80,77.0,C - 69 to 80,78.0,BB126EF,10003781477.0,13 Woodbine Gardens,0.4801 -1250,103755,14 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,16 Nov 2010,B - 81 to 91,83.0,B - 81 to 91,85.0,BB126EF,10003781478.0,"14, Woodbine Gardens",0.4801 -1304,234577,15 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,20 Apr 2015,C - 69 to 80,75.0,C - 69 to 80,77.0,BB126EF,10003781479.0,"15, Woodbine Gardens",0.4801 -1356,252148,16 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,31 Jul 2012,C - 69 to 80,76.0,C - 69 to 80,79.0,BB126EF,10003781480.0,"16, Woodbine Gardens",0.4801 -1409,362182,17 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB126EF,10003781481.0,17 Woodbine Gardens,0.4801 -1463,192368,18 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,29 Nov 2012,C - 69 to 80,77.0,C - 69 to 80,80.0,BB126EF,10003781482.0,"18, Woodbine Gardens",0.4801 -1518,40721,19 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,06 May 2009,B - 81 to 91,83.0,B - 81 to 91,85.0,BB126EF,10003781483.0,"19, Woodbine Gardens",0.4801 -1573,90139,20 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,01 Feb 2010,B - 81 to 91,82.0,B - 81 to 91,85.0,BB126EF,10003781485.0,"20, Woodbine Gardens",0.4801 -1625,76889,21 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,26 Aug 2009,B - 81 to 91,82.0,B - 81 to 91,84.0,BB126EF,10003781486.0,"21, Woodbine Gardens",0.4801 -1678,362193,22 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB126EF,10003781487.0,22 Woodbine Gardens,0.4801 -1731,362196,23 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,76.0,C - 69 to 80,77.0,BB126EF,10003781488.0,23 Woodbine Gardens,0.4801 -1788,90202,24 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,19 Feb 2010,B - 81 to 91,82.0,B - 81 to 91,85.0,BB126EF,10003781489.0,"24, Woodbine Gardens",0.4801 -1895,163338,26 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,23 Apr 2012,C - 69 to 80,76.0,C - 69 to 80,78.0,BB126EF,10003781491.0,"26, Woodbine Gardens",0.4801 -1944,362210,27 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB126EF,10003781492.0,27 Woodbine Gardens,0.4801 -1998,250246,28 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,19 May 2016,C - 69 to 80,79.0,C - 69 to 80,80.0,BB126EF,10003781493.0,"28, Woodbine Gardens",0.4801 -2047,207477,29 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,78.0,C - 69 to 80,80.0,BB126EF,10003781494.0,"29, Woodbine Gardens",0.4801 -2099,289907,30 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,26 Jul 2017,C - 69 to 80,72.0,C - 69 to 80,77.0,BB126EF,10003781496.0,"30, Woodbine Gardens",0.4801 -2142,362219,31 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB126EF,10003781497.0,31 Woodbine Gardens,0.4801 -2200,223392,32 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,02 Apr 2014,C - 69 to 80,77.0,C - 69 to 80,79.0,BB126EF,10003781498.0,"32, Woodbine Gardens",0.4801 -2240,221607,33 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,07 Jan 2014,C - 69 to 80,77.0,C - 69 to 80,79.0,BB126EF,10003781499.0,"33, Woodbine Gardens",0.4801 -2294,104940,34 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,29 Nov 2010,B - 81 to 91,85.0,B - 81 to 91,87.0,BB126EF,10003781500.0,"34, Woodbine Gardens",0.4801 -2335,224898,35 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,12 May 2014,C - 69 to 80,76.0,C - 69 to 80,77.0,BB126EF,10003781501.0,"35, Woodbine Gardens",0.4801 -2388,115740,36 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,08 Jul 2011,C - 69 to 80,77.0,C - 69 to 80,78.0,BB126EF,10003781502.0,"36, Woodbine Gardens",0.4801 -2430,110227,37 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,19 Aug 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB126EF,10003781503.0,37 Woodbine Gardens,0.4801 -2487,40767,38 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,02 Feb 2009,B - 81 to 91,83.0,B - 81 to 91,85.0,BB126EF,10003781504.0,"38, Woodbine Gardens",0.4801 -2531,362236,39 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,24 Jun 2022,C - 69 to 80,76.0,C - 69 to 80,79.0,BB126EF,10003781505.0,39 Woodbine Gardens,0.4801 -2591,228692,40 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,02 Oct 2014,C - 69 to 80,77.0,C - 69 to 80,78.0,BB126EF,10003781507.0,"40, Woodbine Gardens",0.4801 -2638,221679,41 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,78.0,C - 69 to 80,80.0,BB126EF,10003781508.0,"41, Woodbine Gardens",0.4801 -2693,362251,42 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB126EF,10003781509.0,42 Woodbine Gardens,0.4801 -2737,362255,43 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,80.0,C - 69 to 80,80.0,BB126EF,10003781510.0,43 Woodbine Gardens,0.4801 -2790,134080,44 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,24 Jan 2012,C - 69 to 80,77.0,C - 69 to 80,79.0,BB126EF,10003781511.0,"44, Woodbine Gardens",0.4801 -2838,101413,45 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,16 Dec 2021,C - 69 to 80,70.0,B - 81 to 91,91.0,BB126EF,10003781512.0,45 Woodbine Gardens,0.4801 -2889,362264,46 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,91.0,BB126EF,10003781513.0,46 Woodbine Gardens,0.4801 -2938,362269,47 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Bungalow: Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,88.0,BB126EF,10003781514.0,47 Woodbine Gardens,0.4801 -11624,234717,25 Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Bottom,Domestic EPC Required,EPC Present,08 Aug 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB126EF,10003781490.0,25 Woodbine Gardens,0.4801 -11625,362720,25A Woodbine Gardens Burnley Lancashire BB12 6EF,,, BB12 6EF,Flat: Top,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,80.0,C - 69 to 80,80.0,BB126EF,10023762728.0,25a Woodbine Gardens,0.535 -597,339019,326 Rossendale Road Burnley Lancashire BB11 5JF,,, BB11 5JF,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Jun 2021,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115JF,100010354816.0,326 ROSSENDALE ROAD,0.4801 -1117,111325,336 Rossendale Road Burnley Lancashire BB11 5JF,,, BB11 5JF,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Dec 2010,E - 39 to 54,49.0,D - 55 to 68,67.0,BB115JF,100010354821.0,"336, Rossendale Road",0.4801 -9357,362707,318 Rossendale Road Burnley Lancashire BB11 5JF,,, BB11 5JF,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115JF,100010354812.0,318 Rossendale Road,0.4801 -615,244962,4 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,79.0,BB128NU,100010341169.0,"4 Hargrove Avenue, Padiham",0.6214 -762,245152,7 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,Flat: Top,Domestic EPC Required,EPC Present,14 Oct 2015,D - 55 to 68,67.0,C - 69 to 80,73.0,BB128NU,100010341172.0,"7, Hargrove Avenue, Padiham",0.6214 -966,192263,11 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB128NU,100010341175.0,"11 Hargrove Avenue, Padiham",0.6242 -1187,193903,15 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: End Terrace,Domestic EPC Required,EPC Present,10 Dec 2012,D - 55 to 68,64.0,B - 81 to 91,83.0,BB128NU,100010341179.0,"15, Hargrove Avenue, Padiham",0.6242 -1239,244949,16 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: End Terrace,Domestic EPC Required,EPC Present,03 Dec 2015,D - 55 to 68,64.0,B - 81 to 91,84.0,BB128NU,100010341180.0,"16, Hargrove Avenue, Padiham",0.6242 -1564,108013,22 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Mar 2011,D - 55 to 68,56.0,C - 69 to 80,69.0,BB128NU,100010341184.0,"22, Hargrove Avenue, Padiham",0.6242 -1615,222429,23 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: End Terrace,Domestic EPC Required,EPC Present,04 Feb 2014,D - 55 to 68,57.0,B - 81 to 91,83.0,BB128NU,100010341185.0,"23, Hargrove Avenue, Padiham",0.6242 -1668,119422,24 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Nov 2021,D - 55 to 68,63.0,B - 81 to 91,87.0,BB128NU,100010341186.0,"24 Hargrove Avenue, Padiham",0.6242 -1719,247888,25 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,23 Mar 2016,D - 55 to 68,67.0,B - 81 to 91,89.0,BB128NU,100010341187.0,"25, Hargrove Avenue, Padiham",0.6242 -1829,124989,27 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2011,C - 69 to 80,70.0,C - 69 to 80,70.0,BB128NU,100010341189.0,"27, Hargrove Avenue, Padiham",0.6242 -1886,100576,28 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Oct 2025,D - 55 to 68,58.0,C - 69 to 80,79.0,BB128NU,100010341190.0,"28 Hargrove Avenue, Padiham",0.6242 -2136,187825,33 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Sep 2012,D - 55 to 68,56.0,B - 81 to 91,84.0,BB128NU,100010341193.0,"33, Hargrove Avenue, Padiham",0.6242 -2235,220607,35 Hargrove Avenue Padiham Lancashire BB12 8NU,,, BB12 8NU,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Oct 2025,D - 55 to 68,59.0,C - 69 to 80,80.0,BB128NU,100010341194.0,"35 Hargrove Avenue, Padiham",0.6242 -617,111324,251 Barden Lane Burnley Lancashire BB10 1JA,,, BB10 1JA,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Apr 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB101JA,100010328239.0,251 Barden Lane,0.4596 -619,362145,133 Hargrove Avenue Burnley Lancashire BB12 0JY,,, BB12 0JY,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB120JY,100010341288.0,133 Hargrove Avenue,0.4801 -1242,362172,145 Hargrove Avenue Burnley Lancashire BB12 0JY,,, BB12 0JY,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB120JY,100010341294.0,145 Hargrove Avenue,0.4801 -8338,295857,107 Hargrove Avenue Burnley Lancashire BB12 0JY,,, BB12 0JY,House: End Terrace,Domestic EPC Required,EPC Present,14 Feb 2018,C - 69 to 80,75.0,B - 81 to 91,88.0,BB120JY,100010341272.0,"107, Hargrove Avenue",0.4801 -8448,236528,109 Hargrove Avenue Burnley Lancashire BB12 0JY,,, BB12 0JY,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Jul 2024,C - 69 to 80,77.0,B - 81 to 91,91.0,BB120JY,100010341273.0,109 Hargrove Avenue,0.4801 -8804,186597,115 Hargrove Avenue Burnley Lancashire BB12 0JY,,, BB12 0JY,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jul 2024,C - 69 to 80,75.0,B - 81 to 91,90.0,BB120JY,100010341276.0,115 Hargrove Avenue,0.4801 -9259,295914,123 Hargrove Avenue Burnley Lancashire BB12 0JY,,, BB12 0JY,House: End Terrace,Domestic EPC Required,EPC Present,15 Feb 2018,C - 69 to 80,71.0,B - 81 to 91,88.0,BB120JY,100010341281.0,"123, Hargrove Avenue",0.4801 -627,243792,23 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2015,D - 55 to 68,63.0,B - 81 to 91,84.0,BB104BL,100010333609.0,"23, Chichester Close",0.4801 -722,243793,25 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Aug 2025,C - 69 to 80,75.0,B - 81 to 91,81.0,BB104BL,100010333611.0,25 Chichester Close,0.4801 -976,245176,30 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: End Terrace,Domestic EPC Required,EPC Present,17 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,88.0,BB104BL,100010333616.0,"30, Chichester Close",0.4801 -1032,245177,31 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Nov 2015,D - 55 to 68,63.0,C - 69 to 80,79.0,BB104BL,100010333617.0,"31, Chichester Close",0.4801 -1200,243794,34 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2015,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104BL,100010333620.0,"34, Chichester Close",0.4801 -1950,243795,48 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,90.0,BB104BL,100010333634.0,"48, Chichester Close",0.4801 -2053,241677,50 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Nov 2015,C - 69 to 80,73.0,A - 92 Plus,92.0,BB104BL,100010333636.0,"50, Chichester Close",0.4801 -2149,243796,52 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: End Terrace,Domestic EPC Required,EPC Present,10 Nov 2015,D - 55 to 68,68.0,B - 81 to 91,86.0,BB104BL,100010333637.0,52 Chichester Close,0.4801 -8578,76904,1 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Flat: Bottom,Domestic EPC Required,EPC Present,19 Oct 2015,D - 55 to 68,68.0,C - 69 to 80,71.0,BB104BL,100010333587.0,"1, Chichester Close",0.4754 -8629,90186,2 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,72.0,A - 92 Plus,93.0,BB104BL,100010333588.0,2 Chichester Close,0.4754 -8694,89001,3 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Flat: Bottom,Domestic EPC Required,EPC Present,26 Oct 2015,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104BL,100010333589.0,"3, Chichester Close",0.4754 -8752,242506,4 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Sep 2015,D - 55 to 68,68.0,B - 81 to 91,91.0,BB104BL,100010333590.0,4 Chichester Close,0.4754 -8817,243779,5 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Flat: Top,Domestic EPC Required,EPC Present,09 Nov 2015,C - 69 to 80,71.0,C - 69 to 80,75.0,BB104BL,100010333591.0,"5, Chichester Close",0.4754 -8874,242528,6 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Sep 2015,D - 55 to 68,68.0,B - 81 to 91,89.0,BB104BL,100010333592.0,"6, Chichester Close",0.4754 -8934,242999,7 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Flat: Top,Domestic EPC Required,EPC Present,21 Oct 2015,C - 69 to 80,72.0,C - 69 to 80,74.0,BB104BL,100010333593.0,"7, Chichester Close",0.4754 -8983,242745,8 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Oct 2025,C - 69 to 80,69.0,B - 81 to 91,88.0,BB104BL,100010333594.0,8 Chichester Close,0.4754 -9045,243784,9 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Flat: Bottom,Domestic EPC Required,EPC Present,03 Nov 2015,D - 55 to 68,68.0,C - 69 to 80,73.0,BB104BL,100010333595.0,"9, Chichester Close",0.4754 -9095,243314,10 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: End Terrace,Domestic EPC Required,EPC Present,26 Oct 2025,C - 69 to 80,75.0,B - 81 to 91,88.0,BB104BL,100010333596.0,10 Chichester Close,0.4801 -9153,243315,11 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Flat: Bottom,Domestic EPC Required,EPC Present,26 Oct 2025,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104BL,100010333597.0,11 Chichester Close,0.4801 -9392,245773,15 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,Flat: Top,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104BL,100010333601.0,"15, Chichester Close",0.4801 -9447,243316,16 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: End Terrace,Domestic EPC Required,EPC Present,19 Oct 2015,C - 69 to 80,69.0,B - 81 to 91,85.0,BB104BL,100010333602.0,"16, Chichester Close",0.4801 -9544,201790,18 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Nov 2025,C - 69 to 80,78.0,B - 81 to 91,84.0,BB104BL,100010333604.0,18 Chichester Close,0.4801 -9605,243789,19 Chichester Close Burnley Lancashire BB10 4BL,,, BB10 4BL,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,87.0,BB104BL,100010333605.0,"19, Chichester Close",0.4801 -633,247409,9 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,House: End Terrace,Domestic EPC Required,EPC Present,15 Mar 2016,C - 69 to 80,69.0,B - 81 to 91,88.0,BB104QB,100010359729.0,"9, Walsden Grove",0.4596 -677,247393,10 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Apr 2016,B - 81 to 91,82.0,B - 81 to 91,85.0,BB104QB,100010359730.0,10 Walsden Grove,0.4652 -726,248688,11 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Apr 2016,B - 81 to 91,91.0,A - 92 Plus,96.0,BB104QB,100010359731.0,"11, Walsden Grove",0.4652 -776,247392,12 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2016,D - 55 to 68,63.0,C - 69 to 80,77.0,BB104QB,100010359732.0,"12, Walsden Grove",0.4652 -929,248959,15 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Apr 2016,B - 81 to 91,87.0,A - 92 Plus,96.0,BB104QB,100010359735.0,"15, Walsden Grove",0.4652 -1042,248960,17 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Apr 2016,B - 81 to 91,86.0,A - 92 Plus,92.0,BB104QB,100010359736.0,"17, Walsden Grove",0.4652 -1150,248961,19 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Apr 2016,B - 81 to 91,85.0,A - 92 Plus,93.0,BB104QB,100010359737.0,"19, Walsden Grove",0.4652 -1259,248962,21 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Apr 2016,B - 81 to 91,90.0,A - 92 Plus,97.0,BB104QB,100010359738.0,"21, Walsden Grove",0.4652 -1364,250063,23 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Apr 2016,B - 81 to 91,91.0,A - 92 Plus,97.0,BB104QB,100010359739.0,"23, Walsden Grove",0.4652 -1472,247411,25 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Apr 2016,B - 81 to 91,87.0,A - 92 Plus,93.0,BB104QB,100010359740.0,25 Walsden Grove,0.4652 -9399,247396,1 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Apr 2016,C - 69 to 80,79.0,B - 81 to 91,84.0,BB104QB,100010359721.0,"1, Walsden Grove",0.4596 -13317,339032,13 Walsden Grove Burnley Lancashire BB10 4QB,,, BB10 4QB,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Apr 2016,B - 81 to 91,90.0,A - 92 Plus,96.0,BB104QB,100010359733.0,"13, Walsden Grove",0.4652 -654,118464,6 Chislehurst Grove Burnley Lancashire BB10 2RR,,, BB10 2RR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Feb 2026,C - 69 to 80,75.0,B - 81 to 91,81.0,BB102RR,100010333741.0,"6, Chislehurst Grove",0.4801 -804,362149,9 Chislehurst Grove Burnley Lancashire BB10 2RR,,, BB10 2RR,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102RR,100010333744.0,9 Chislehurst Grove,0.4801 -1120,40698,15 Chislehurst Grove Burnley Lancashire BB10 2RR,,, BB10 2RR,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Nov 2008,D - 55 to 68,57.0,D - 55 to 68,59.0,BB102RR,100010333750.0,"15, Chislehurst Grove",0.4845 -1178,325280,16 Chislehurst Grove Burnley Lancashire BB10 2RR,,, BB10 2RR,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,74.0,B - 81 to 91,89.0,BB102RR,100010333751.0,"16, Chislehurst Grove",0.4845 -1499,325279,22 Chislehurst Grove Burnley Lancashire BB10 2RR,,, BB10 2RR,House: End Terrace,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,70.0,B - 81 to 91,84.0,BB102RR,100010333757.0,"22, Chislehurst Grove",0.4845 -1608,325277,24 Chislehurst Grove Burnley Lancashire BB10 2RR,,, BB10 2RR,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102RR,100010333759.0,"24, Chislehurst Grove",0.4845 -1876,40738,29 Chislehurst Grove Burnley Lancashire BB10 2RR,,, BB10 2RR,House: End Terrace,Domestic EPC Required,EPC Present,15 Nov 2008,C - 69 to 80,71.0,C - 69 to 80,73.0,BB102RR,100010333764.0,"29, Chislehurst Grove",0.4845 -1977,325278,31 Chislehurst Grove Burnley Lancashire BB10 2RR,,, BB10 2RR,House: End Terrace,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102RR,100010333766.0,"31, Chislehurst Grove",0.4845 -671,111177,46 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2021,E - 39 to 54,52.0,B - 81 to 91,89.0,BB128PB,100010345432.0,"46 Langdale Road, Padiham",0.6185 -868,111184,50 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Aug 2021,E - 39 to 54,52.0,B - 81 to 91,88.0,BB128PB,100010345436.0,"50 Langdale Road, Padiham",0.6185 -1027,105930,53 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Jan 2011,E - 39 to 54,52.0,D - 55 to 68,64.0,BB128PB,100010345439.0,"53, Langdale Road, Padiham",0.6185 -1247,188945,57 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2012,D - 55 to 68,59.0,C - 69 to 80,74.0,BB128PB,100010345441.0,"57, Langdale Road, Padiham",0.6185 -1354,103758,59 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Nov 2010,D - 55 to 68,60.0,D - 55 to 68,63.0,BB128PB,100010345442.0,"59, Langdale Road, Padiham",0.6185 -1994,111217,71 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Nov 2010,D - 55 to 68,55.0,C - 69 to 80,69.0,BB128PB,100010345448.0,"71, Langdale Road, Padiham",0.6185 -2483,40766,81 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Nov 2010,E - 39 to 54,52.0,D - 55 to 68,68.0,BB128PB,100010345453.0,"81, Langdale Road, Padiham",0.6185 -2689,40773,85 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Feb 2009,D - 55 to 68,59.0,C - 69 to 80,73.0,BB128PB,100010345455.0,"85, Langdale Road, Padiham",0.6185 -2886,222808,89 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Feb 2014,D - 55 to 68,59.0,C - 69 to 80,74.0,BB128PB,100010345457.0,"89, Langdale Road, Padiham",0.6185 -8746,362672,26 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128PB,100010345412.0,"26 Langdale Road, Padiham",0.6185 -9324,110931,36 Langdale Road Padiham Lancashire BB12 8PB,,, BB12 8PB,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Aug 2021,D - 55 to 68,65.0,B - 81 to 91,85.0,BB128PB,100010345422.0,"36 Langdale Road, Padiham",0.6185 -674,105431,64 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Dec 2020,D - 55 to 68,64.0,B - 81 to 91,87.0,BB112PD,100010339297.0,"64 GAINSBOROUGH AVENUE, BURNLEY",0.6339 -1309,362176,76 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB112PD,100010339309.0,76 Gainsborough Avenue,0.4925 -1530,362187,80 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB112PD,100010339313.0,80 Gainsborough Avenue,0.4925 -1580,89953,81 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Jan 2010,D - 55 to 68,65.0,C - 69 to 80,70.0,BB112PD,100010339314.0,"81, Gainsborough Avenue",0.4925 -1636,224902,82 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Semi-Detached,Domestic EPC Required,EPC Present,13 May 2014,C - 69 to 80,71.0,B - 81 to 91,85.0,BB112PD,100010339315.0,"82, Gainsborough Avenue",0.4925 -1685,111296,83 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Semi-Detached,Domestic EPC Required,EPC Present,22 May 2017,D - 55 to 68,58.0,B - 81 to 91,83.0,BB112PD,100010339316.0,"83, Gainsborough Avenue",0.4925 -1740,362197,84 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,71.0,B - 81 to 91,84.0,BB112PD,100010339317.0,84 Gainsborough Avenue,0.4925 -1793,362200,85 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,70.0,B - 81 to 91,83.0,BB112PD,100010339318.0,85 Gainsborough Avenue,0.4925 -2150,193898,92 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 May 2017,D - 55 to 68,65.0,B - 81 to 91,84.0,BB112PD,100010339324.0,"92, Gainsborough Avenue",0.4925 -2539,96244,100 Gainsborough Avenue Burnley Lancashire BB11 2PD,,, BB11 2PD,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Apr 2023,D - 55 to 68,60.0,C - 69 to 80,79.0,BB112PD,100010339328.0,100 Gainsborough Avenue,0.4961 -11158,211461,18 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Sep 2025,C - 69 to 80,80.0,A - 92 Plus,85.0,BB79UY,10022974450.0,"18 Cobden Close, Sabden",0.6159 -11159,211450,19 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,85.0,A - 92 Plus,95.0,BB79UY,10022974451.0,"19, Cobden Close, Sabden",0.6159 -11160,211460,20 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,85.0,A - 92 Plus,95.0,BB79UY,10022974452.0,"20, Cobden Close, Sabden",0.6159 -11161,211449,21 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,85.0,A - 92 Plus,95.0,BB79UY,10022974453.0,"21, Cobden Close, Sabden",0.6159 -11162,211456,22 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: End Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,84.0,A - 92 Plus,93.0,BB79UY,10022974454.0,"22, Cobden Close, Sabden",0.6159 -11163,211459,6 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: End Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,83.0,A - 92 Plus,96.0,BB79UY,10022974435.0,"6, Cobden Close, Sabden",0.6124 -11164,211458,7 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,84.0,A - 92 Plus,96.0,BB79UY,10022974436.0,"7, Cobden Close, Sabden",0.6124 -11165,211457,8 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,84.0,A - 92 Plus,96.0,BB79UY,10022974437.0,"8, Cobden Close, Sabden",0.6124 -11166,210974,11 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: End Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,84.0,A - 92 Plus,94.0,BB79UY,10022974440.0,"11, Cobden Close, Sabden",0.6159 -11168,210972,14 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,85.0,A - 92 Plus,95.0,BB79UY,10022974442.0,"14, Cobden Close, Sabden",0.6159 -11172,211462,Flat 1 17 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,Flat: Bottom,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,83.0,B - 81 to 91,83.0,BB79UY,10022974446.0,"Flat 1, 17, Cobden Close, Sabden",0.697 -11173,211463,Flat 2 17 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,83.0,B - 81 to 91,83.0,BB79UY,10022974447.0,"Flat 2, 17, Cobden Close, Sabden",0.697 -11174,211464,Flat 3 17 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,Flat: Top,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,84.0,B - 81 to 91,84.0,BB79UY,10022974448.0,"Flat 3, 17, Cobden Close, Sabden",0.697 -11175,211465,Flat 4 17 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,Flat: Top,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,83.0,B - 81 to 91,83.0,BB79UY,10022974449.0,"Flat 4, 17, Cobden Close, Sabden",0.697 -12787,323641,12 Cobden Close Sabden Lancashire BB7 9UY,,, BB7 9UY,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,85.0,A - 92 Plus,95.0,BB79UY,10022974441.0,"12, Cobden Close, Sabden",0.6159 -11177,211480,Flat 1 7 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Bottom,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,83.0,B - 81 to 91,83.0,BB79UX,10022974468.0,"Flat 1, 7, Mill Court, Sabden",0.6897 -11178,211479,Flat 2 7 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Bottom,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,83.0,B - 81 to 91,83.0,BB79UX,10022974469.0,"Flat 2, 7, Mill Court, Sabden",0.6897 -11179,211478,Flat 3 7 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Middle,Domestic EPC Required,EPC Present,25 Oct 2024,B - 81 to 91,82.0,B - 81 to 91,82.0,BB79UX,10022974470.0,"Flat 3, 7 Mill Court, Sabden",0.6897 -11180,211477,Flat 4 7 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Middle,Domestic EPC Required,EPC Present,15 Aug 2024,B - 81 to 91,82.0,B - 81 to 91,82.0,BB79UX,10022974471.0,"Flat 4, 7 Mill Court, Sabden",0.6897 -11181,211476,Flat 5 7 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Top,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,84.0,B - 81 to 91,84.0,BB79UX,10022974472.0,"Flat 5, 7, Mill Court, Sabden",0.6897 -11183,211475,Flat 1 6 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Bottom,Domestic EPC Required,EPC Present,19 Aug 2023,C - 69 to 80,79.0,C - 69 to 80,79.0,BB79UX,10022974462.0,"Flat 1, 6 Mill Court, Sabden",0.6897 -11184,211474,Flat 2 6 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Bottom,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,83.0,B - 81 to 91,83.0,BB79UX,10022974463.0,"Flat 2, 6 Mill Court, Sabden",0.6897 -11216,211452,Flat 4 6 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Middle,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,84.0,B - 81 to 91,84.0,BB79UX,10022974465.0,"Flat 4, 6, Mill Court, Sabden",0.6897 -11217,211451,Flat 5 6 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Top,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,84.0,B - 81 to 91,84.0,BB79UX,10022974466.0,"Flat 5, 6, Mill Court, Sabden",0.6897 -13211,336437,Flat 3 6 Mill Court Sabden Lancashire BB7 9UX,,, BB7 9UX,Flat: Bottom,Domestic EPC Required,EPC Present,20 Mar 2013,B - 81 to 91,84.0,B - 81 to 91,84.0,BB79UX,10022974464.0,"Flat 3, 6, Mill Court, Sabden",0.6897 -11185,252172,(Sycamore House) 23 Padiham Road Burnley Lancashire BB12 0LX,,, BB12 0LX,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jan 2013,D - 55 to 68,57.0,C - 69 to 80,76.0,BB120LX,100010350939.0,"23, Padiham Road",0.3605 -11199,210868,1 Moorview Close Briercliffe Burnley Lancashire BB10 2HD,,, BB10 2HD,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2013,C - 69 to 80,71.0,B - 81 to 91,90.0,BB102HD,100010349399.0,"1, Moorview Close",0.3993 -11200,209271,2 Moorview Close Briercliffe Burnley Lancashire BB10 2HD,,, BB10 2HD,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Mar 2010,C - 69 to 80,69.0,C - 69 to 80,74.0,BB102HD,100010349400.0,"2, Moorview Close",0.3993 -11201,210867,3 Moorview Close Briercliffe Burnley Lancashire BB10 2HD,,, BB10 2HD,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jan 2026,C - 69 to 80,70.0,B - 81 to 91,86.0,BB102HD,100010349401.0,3 Moorview Close,0.3993 -11202,210874,4 Moorview Close Briercliffe Burnley Lancashire BB10 2HD,,, BB10 2HD,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jan 2026,C - 69 to 80,70.0,B - 81 to 91,85.0,BB102HD,100010349402.0,4 Moorview Close,0.3993 -11203,210921,5 Moorview Close Briercliffe Burnley Lancashire BB10 2HD,,, BB10 2HD,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Sep 2013,C - 69 to 80,69.0,B - 81 to 91,90.0,BB102HD,100010349403.0,"5, Moorview Close",0.3993 -11204,210922,6 Moorview Close Briercliffe Burnley Lancashire BB10 2HD,,, BB10 2HD,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Apr 2023,C - 69 to 80,74.0,B - 81 to 91,89.0,BB102HD,100010349404.0,6 Moorview Close,0.3993 -11205,210869,8 Moorview Close Briercliffe Burnley Lancashire BB10 2HD,,, BB10 2HD,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Feb 2026,C - 69 to 80,72.0,B - 81 to 91,86.0,BB102HD,100010349406.0,"8, Moorview Close",0.3993 -11206,209269,9 Moorview Close Briercliffe Burnley Lancashire BB10 2HD,,, BB10 2HD,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Mar 2010,D - 55 to 68,67.0,C - 69 to 80,73.0,BB102HD,100010349407.0,"9, Moorview Close",0.3993 -12096,268902,7 Moorview Close Burnley Lancashire BB10 2HD,,, BB10 2HD,House: End Terrace,Domestic EPC Required,EPC Present,12 Dec 2016,D - 55 to 68,66.0,B - 81 to 91,83.0,BB102HD,100010349405.0,"7, Moorview Close",0.4652 -11231,209331,30 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,09 May 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331583.0,"30, Acre View",0.3792 -11232,209336,20 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 May 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331578.0,"20, Acre View",0.3792 -11233,209335,22 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 May 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331579.0,"22, Acre View",0.3792 -11234,209334,24 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 May 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331580.0,"24, Acre View",0.3792 -11235,209333,26 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,09 May 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331581.0,"26, Acre View",0.3792 -11236,209332,28 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 May 2013,B - 81 to 91,86.0,B - 81 to 91,87.0,OL130HR,10014331582.0,"28, Acre View",0.3792 -11237,209330,32 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Detached,Domestic EPC Required,EPC Present,14 Oct 2021,C - 69 to 80,76.0,C - 69 to 80,79.0,OL130HR,10014331584.0,32 Acre View,0.3792 -11238,209327,47 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,09 May 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331574.0,"47, Acre View",0.3792 -11239,209328,49 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 May 2013,B - 81 to 91,86.0,B - 81 to 91,88.0,OL130HR,10014331575.0,"49, Acre View",0.3792 -11240,209329,51 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,09 May 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331576.0,"51, Acre View",0.3792 -11241,209337,18 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,03 May 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331577.0,"18, Acre View",0.3792 -11242,209320,29 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jun 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331565.0,"29, Acre View",0.3792 -11243,209321,31 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jun 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331566.0,"31, Acre View",0.3792 -11244,209326,43 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Jun 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331572.0,"43, Acre View",0.3792 -11245,210944,45 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Jun 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331573.0,"45, Acre View",0.3792 -11246,209319,27 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,03 Jun 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331564.0,"27, Acre View",0.3792 -11247,209352,33 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,16 Aug 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331567.0,"33, Acre View",0.3792 -11248,209322,35 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,03 Jun 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331568.0,"35, Acre View",0.3792 -11249,209323,37 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jun 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331569.0,"37, Acre View",0.3792 -11250,209324,39 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jun 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331570.0,"39, Acre View",0.3792 -11251,209325,41 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,03 Jun 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331571.0,"41, Acre View",0.3792 -11260,209314,17 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331559.0,"17, Acre View",0.3792 -11261,209313,15 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331558.0,"15, Acre View",0.3792 -11262,209312,13 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331557.0,"13, Acre View",0.3792 -11263,209311,11 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331556.0,"11, Acre View",0.3792 -11264,209310,9 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331555.0,"9, Acre View",0.3721 -11265,209309,7 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331554.0,"7, Acre View",0.3721 -11266,209308,5 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,86.0,B - 81 to 91,87.0,OL130HR,10014331553.0,"5, Acre View",0.3721 -11267,209306,1 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331551.0,"1, Acre View",0.3721 -11268,209307,3 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,86.0,B - 81 to 91,87.0,OL130HR,10014331552.0,"3, Acre View",0.3721 -11269,209302,3c Acre Avenue Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331552.0,"3, Acre View",0.2284 -11270,209303,3d Acre Avenue Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331552.0,"3, Acre View",0.2284 -11271,209304,3e Acre Avenue Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331552.0,"3, Acre View",0.2284 -11272,209305,3f Acre Avenue Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: End Terrace,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331552.0,"3, Acre View",0.2284 -11273,209318,25 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Detached,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,83.0,B - 81 to 91,84.0,OL130HR,10014331563.0,"25, Acre View",0.3792 -11274,209317,23 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331562.0,"23, Acre View",0.3792 -11275,209316,21 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,85.0,B - 81 to 91,86.0,OL130HR,10014331561.0,"21, Acre View",0.3792 -11276,209315,19 Acre View Stacksteads Bacup Lancashire OL13 0HR,,, OL13 0HR,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Jul 2013,B - 81 to 91,84.0,B - 81 to 91,86.0,OL130HR,10014331560.0,"19, Acre View",0.3792 -11253,227306,182 Cog Lane Burnley Lancashire BB11 5BG,,, BB11 5BG,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jul 2014,C - 69 to 80,72.0,A - 92 Plus,92.0,BB115BG,100010334916.0,"182, Cog Lane",0.4401 -11332,227305,186 Cog Lane Burnley Lancashire BB11 5BG,,, BB11 5BG,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jul 2014,C - 69 to 80,69.0,B - 81 to 91,91.0,BB115BG,100010334920.0,186 Cog Lane,0.4401 -11333,227307,188 Cog Lane Burnley Lancashire BB11 5BG,,, BB11 5BG,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jul 2014,C - 69 to 80,72.0,A - 92 Plus,92.0,BB115BG,100010334922.0,"188, Cog Lane",0.4401 -11573,232170,184 Cog Lane Burnley Lancashire BB11 5BG,,, BB11 5BG,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jan 2015,C - 69 to 80,72.0,B - 81 to 91,91.0,BB115BG,100010334918.0,184 Cog Lane,0.4401 -11254,229249,302 Cog Lane Burnley Lancashire BB11 5JU,,, BB11 5JU,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Sep 2025,C - 69 to 80,72.0,B - 81 to 91,83.0,BB115JU,100010335004.0,302 Cog Lane,0.4401 -11255,227403,304 Cog Lane Burnley Lancashire BB11 5JU,,, BB11 5JU,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Aug 2014,D - 55 to 68,66.0,B - 81 to 91,87.0,BB115JU,100010335006.0,"304, Cog Lane",0.4401 -11516,226561,266 Cog Lane Burnley Lancashire BB11 5JU,,, BB11 5JU,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Jul 2014,C - 69 to 80,72.0,B - 81 to 91,90.0,BB115JU,100010334981.0,"266, Cog Lane",0.4401 -11572,232174,103 Cog Lane Burnley Lancashire BB11 5JU,,, BB11 5JU,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Feb 2015,C - 69 to 80,72.0,A - 92 Plus,92.0,BB115JU,,, -11256,252007,60 Towneley Street Burnley Lancashire BB10 1UJ,,, BB10 1UJ,House: End Terrace,Domestic EPC Required,EPC Present,08 May 2017,C - 69 to 80,70.0,B - 81 to 91,88.0,BB101UJ,100010358862.0,"60, Towneley Street",0.4754 -13020,331053,14 Towneley Street Burnley Lancashire BB10 1UJ,,, BB10 1UJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Sep 2020,C - 69 to 80,75.0,B - 81 to 91,91.0,BB101UJ,100010358817.0,14 TOWNELEY STREET,0.4754 -11257,252159,10 Burdett Street Burnley Lancashire BB11 5AG,,, BB11 5AG,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Sep 2019,D - 55 to 68,59.0,C - 69 to 80,78.0,BB115AG,100010331924.0,"10, Burdett Street",0.4705 -11278,252124,34 Grange Road Whitworth Rochdale Lancashire OL12 8LF,,, OL12 8LF,House: End Terrace,Domestic EPC Required,EPC Present,23 Oct 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LF,10014332331.0,"34, Grange Road, Whitworth",0.5432 -11279,252125,35 Grange Road Whitworth Rochdale Lancashire OL12 8LF,,, OL12 8LF,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Oct 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LF,10014332332.0,"35, Grange Road, Whitworth",0.5432 -11280,252115,656 Market Street Whitworth Rochdale Lancashire OL12 8LD,,, OL12 8LD,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LD,10014332337.0,"656, Market Street, Whitworth",0.5527 -11281,252126,648 Market Street Whitworth Rochdale Lancashire OL12 8LD,,, OL12 8LD,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LD,10014332333.0,"648, Market Street, Whitworth",0.5527 -11282,252112,650 Market Street Whitworth Rochdale Lancashire OL12 8LD,,, OL12 8LD,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LD,10014332334.0,"650, Market Street, Whitworth",0.5527 -11283,252113,652 Market Street Whitworth Rochdale Lancashire OL12 8LD,,, OL12 8LD,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LD,10014332335.0,"652, Market Street, Whitworth",0.5527 -11284,252114,654 Market Street Whitworth Rochdale Lancashire OL12 8LD,,, OL12 8LD,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LD,10014332336.0,"654, Market Street, Whitworth",0.5527 -11285,252127,658 Market Street Whitworth Rochdale Lancashire OL12 8LD,,, OL12 8LD,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LD,10014332338.0,"658, Market Street, Whitworth",0.5527 -11286,210977,660 Market Street Whitworth Rochdale Lancashire OL12 8LD,,, OL12 8LD,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LD,10014332339.0,"660, Market Street, Whitworth",0.5527 -11287,210978,662 Market Street Whitworth Rochdale Lancashire OL12 8LD,,, OL12 8LD,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LD,10014332340.0,"662, Market Street, Whitworth",0.5527 -11288,210975,664 Market Street Whitworth Rochdale Lancashire OL12 8LD,,, OL12 8LD,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LD,10014332341.0,"664, Market Street, Whitworth",0.5527 -11291,210976,1 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332302.0,"1, Facit Fold, Whitworth",0.536 -11292,211544,2 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332303.0,"2, Facit Fold, Whitworth",0.536 -11298,211543,3 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332304.0,"3, Facit Fold, Whitworth",0.536 -11299,252117,4 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332305.0,"4, Facit Fold, Whitworth",0.536 -11300,252118,5 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332306.0,"5, Facit Fold, Whitworth",0.536 -11302,252119,6 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332307.0,"6, Facit Fold, Whitworth",0.536 -11303,252120,7 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332308.0,"7, Facit Fold, Whitworth",0.536 -11304,211542,8 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Apr 2016,B - 81 to 91,87.0,B - 81 to 91,88.0,OL128LG,10014332309.0,"8, Facit Fold, Whitworth",0.536 -11306,252121,10 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332311.0,"10, Facit Fold, Whitworth",0.5397 -11307,211540,11 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LG,10014332312.0,"11, Facit Fold, Whitworth",0.5397 -11311,211539,12 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332313.0,"12, Facit Fold, Whitworth",0.5397 -11312,252122,14 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332314.0,"14, Facit Fold, Whitworth",0.5397 -11313,211538,15 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332315.0,"15, Facit Fold, Whitworth",0.5397 -11314,211537,16 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LG,10014332316.0,"16, Facit Fold, Whitworth",0.5397 -11315,211536,17 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: End Terrace,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,95.0,OL128LG,10014332317.0,"17, Facit Fold, Whitworth",0.5397 -11316,211535,18 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,84.0,A - 92 Plus,96.0,OL128LG,10014332318.0,"18, Facit Fold, Whitworth",0.5397 -11317,211534,19 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: End Terrace,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,95.0,OL128LG,10014332319.0,"19, Facit Fold, Whitworth",0.5397 -11318,252123,20 Facit Fold Whitworth Rochdale Lancashire OL12 8LG,,, OL12 8LG,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Sep 2025,C - 69 to 80,79.0,B - 81 to 91,83.0,OL128LG,10014332320.0,"20 Facit Fold, Whitworth",0.5397 -11293,252116,1 Edward Street Whitworth Rochdale Lancashire OL12 8LE,,, OL12 8LE,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LE,10014332322.0,"1, Edward Street, Whitworth",0.5465 -11294,252111,3 Edward Street Whitworth Rochdale Lancashire OL12 8LE,,, OL12 8LE,House: End Terrace,Domestic EPC Required,EPC Present,23 Oct 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LE,10014332323.0,"3, Edward Street, Whitworth",0.5465 -11295,252110,5 Edward Street Whitworth Rochdale Lancashire OL12 8LE,,, OL12 8LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Oct 2013,B - 81 to 91,83.0,A - 92 Plus,95.0,OL128LE,10014332324.0,"5, Edward Street, Whitworth",0.5465 -11296,252128,7 Edward Street Whitworth Rochdale Lancashire OL12 8LE,,, OL12 8LE,House: End Terrace,Domestic EPC Required,EPC Present,23 Oct 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LE,10014332325.0,"7, Edward Street, Whitworth",0.5465 -11297,252130,9 Edward Street Whitworth Rochdale Lancashire OL12 8LE,,, OL12 8LE,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Oct 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LE,10014332326.0,"9, Edward Street, Whitworth",0.5465 -11301,252131,11 Edward Street Whitworth Rochdale Lancashire OL12 8LE,,, OL12 8LE,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Oct 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL128LE,10014332327.0,"11, Edward Street, Whitworth",0.5497 -11308,232313,15 Edward Street Whitworth Rochdale Lancashire OL12 8LE,,, OL12 8LE,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Oct 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LE,10014332328.0,"15, Edward Street, Whitworth",0.5497 -11309,246204,17 Edward Street Whitworth Rochdale Lancashire OL12 8LE,,, OL12 8LE,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Jan 2016,C - 69 to 80,79.0,A - 92 Plus,94.0,OL128LE,10014332329.0,"17, Edward Street, Whitworth",0.5497 -11310,252129,19 Edward Street Whitworth Rochdale Lancashire OL12 8LE,,, OL12 8LE,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Oct 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL128LE,10014332330.0,"19, Edward Street, Whitworth",0.5497 -11321,211682,11 Pickup Street Bacup Lancashire OL13 9AZ,,, OL13 9AZ,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,82.0,A - 92 Plus,95.0,OL139AZ,10014332010.0,"11, Pickup Street",0.4717 -11322,211681,9 Pickup Street Bacup Lancashire OL13 9AZ,,, OL13 9AZ,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,82.0,A - 92 Plus,95.0,OL139AZ,10014332009.0,"9, Pickup Street",0.4661 -11323,211680,1 Pickup Street Bacup Lancashire OL13 9AZ,,, OL13 9AZ,House: End Terrace,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL139AZ,10014332005.0,"1, Pickup Street",0.4661 -11324,211679,3 Pickup Street Bacup Lancashire OL13 9AZ,,, OL13 9AZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,84.0,A - 92 Plus,95.0,OL139AZ,10014332006.0,"3, Pickup Street",0.4661 -11325,211684,5 Pickup Street Bacup Lancashire OL13 9AZ,,, OL13 9AZ,House: End Terrace,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,83.0,A - 92 Plus,94.0,OL139AZ,10014332007.0,"5, Pickup Street",0.4661 -11326,211685,7 Pickup Street Bacup Lancashire OL13 9AZ,,, OL13 9AZ,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,82.0,A - 92 Plus,95.0,OL139AZ,10014332008.0,"7, Pickup Street",0.4661 -11330,211686,8 South Street Bacup Lancashire OL13 9AP,,, OL13 9AP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL139AP,10014332012.0,"8, South Street",0.4601 -11331,211687,10 South Street Bacup Lancashire OL13 9AP,,, OL13 9AP,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2013,B - 81 to 91,82.0,A - 92 Plus,94.0,OL139AP,10014332013.0,"10, South Street",0.4661 -11628,245190,4 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Apr 2015,B - 81 to 91,82.0,A - 92 Plus,94.0,BB102FY,10023762654.0,"4 McLinden Court, Briercliffe",0.4417 -11629,245192,6 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Apr 2015,B - 81 to 91,82.0,A - 92 Plus,94.0,BB102FY,10023762655.0,"6 McLinden Court, Briercliffe",0.4417 -11630,245196,8 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Apr 2015,B - 81 to 91,82.0,A - 92 Plus,94.0,BB102FY,10023762656.0,"8 McLinden Court, Briercliffe",0.4417 -11631,245198,10 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Apr 2015,B - 81 to 91,81.0,A - 92 Plus,95.0,BB102FY,10023762657.0,"10 McLinden Court, Briercliffe",0.4446 -11632,245200,12 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Apr 2015,B - 81 to 91,82.0,A - 92 Plus,95.0,BB102FY,10023762658.0,"12 McLinden Court, Briercliffe",0.4446 -11633,245207,22 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jun 2015,B - 81 to 91,82.0,A - 92 Plus,95.0,BB102FY,10023762663.0,"22 McLinden Court, Briercliffe",0.4446 -11634,245209,24 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jun 2015,B - 81 to 91,82.0,A - 92 Plus,95.0,BB102FY,10023762664.0,"24 McLinden Court, Briercliffe",0.4446 -11638,252395,50 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Jun 2015,B - 81 to 91,82.0,A - 92 Plus,95.0,BB102FY,10023762677.0,"50 McLinden Court, Briercliffe",0.4446 -11639,245214,52 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Jun 2015,B - 81 to 91,82.0,A - 92 Plus,95.0,BB102FY,10023762678.0,"52 McLinden Court, Briercliffe",0.4446 -11640,245241,54 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jun 2015,B - 81 to 91,81.0,A - 92 Plus,95.0,BB102FY,10023762679.0,"54 McLinden Court, Briercliffe",0.4446 -11641,252072,56 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jun 2015,B - 81 to 91,81.0,A - 92 Plus,95.0,BB102FY,10023762680.0,"56 McLinden Court, Briercliffe",0.4446 -11642,245243,58 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,19 May 2015,B - 81 to 91,83.0,A - 92 Plus,94.0,BB102FY,10023762681.0,"58 McLinden Court, Briercliffe",0.4446 -11643,245251,60 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,19 May 2015,B - 81 to 91,82.0,A - 92 Plus,94.0,BB102FY,10023762682.0,"60 McLinden Court, Briercliffe",0.4446 -11644,245188,2 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Apr 2015,B - 81 to 91,82.0,A - 92 Plus,94.0,BB102FY,10023762653.0,"2 McLinden Court, Briercliffe",0.4417 -11660,245203,14 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Apr 2015,B - 81 to 91,82.0,A - 92 Plus,95.0,BB102FY,10023762659.0,"14 McLinden Court, Briercliffe",0.4446 -11662,245205,16 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Apr 2015,B - 81 to 91,82.0,A - 92 Plus,95.0,BB102FY,10023762660.0,"16 McLinden Court, Briercliffe",0.4446 -11690,245252,62 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,12 May 2015,B - 81 to 91,83.0,A - 92 Plus,94.0,BB102FY,10023762683.0,"62 McLinden Court, Briercliffe",0.4446 -11691,245255,64 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,House: Semi-Detached,Domestic EPC Required,EPC Present,12 May 2015,B - 81 to 91,82.0,A - 92 Plus,94.0,BB102FY,10023762684.0,"64 McLinden Court, Briercliffe",0.4446 -11701,245276,1 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,29 Apr 2015,B - 81 to 91,81.0,A - 92 Plus,95.0,BB102FY,10023762637.0,"1 McLinden Court, Briercliffe",0.4417 -11702,245284,3 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,15 Apr 2015,B - 81 to 91,81.0,A - 92 Plus,95.0,BB102FY,10023762638.0,"3 McLinden Court, Briercliffe",0.4417 -11703,245288,31 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,02 Jun 2015,B - 81 to 91,85.0,A - 92 Plus,100.0,BB102FY,10023762651.0,31 McLinden Court,0.2958 -11704,245286,33 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,02 Jun 2015,B - 81 to 91,81.0,A - 92 Plus,95.0,BB102FY,10023762652.0,33 McLinden Court,0.2958 -11716,252065,5 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Bottom,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,82.0,B - 81 to 91,82.0,BB102FY,10023762639.0,"5, McLindon Court",0.3993 -11717,252081,7 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Middle,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,82.0,B - 81 to 91,82.0,BB102FY,10023762640.0,"7, McLindon Court",0.3993 -11718,252083,19 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Bottom,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,83.0,B - 81 to 91,83.0,BB102FY,10023762645.0,19 McLindon Court,0.4046 -11719,252085,9 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Top,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,81.0,B - 81 to 91,81.0,BB102FY,10023762641.0,"9, McLindon Court",0.3993 -11720,252087,11 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Bottom,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,83.0,B - 81 to 91,83.0,BB102FY,10023762642.0,"11, McLindon Court",0.4046 -11721,252089,15 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Middle,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,83.0,B - 81 to 91,83.0,BB102FY,10023762643.0,"15, McLindon Court",0.4046 -11722,252091,17 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Top,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,83.0,B - 81 to 91,83.0,BB102FY,10023762644.0,"17, McLindon Court",0.4046 -11723,252093,21 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Middle,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,83.0,B - 81 to 91,83.0,BB102FY,10023762646.0,"21, McLindon Court",0.4046 -11724,252095,23 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Top,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,83.0,B - 81 to 91,83.0,BB102FY,10023762647.0,"23, McLindon Court",0.4046 -11725,252097,25 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Bottom,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,82.0,B - 81 to 91,82.0,BB102FY,10023762648.0,"25, McLindon Court",0.4046 -11726,252099,27 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Middle,Domestic EPC Required,EPC Present,07 Oct 2025,B - 81 to 91,82.0,B - 81 to 91,82.0,BB102FY,10023762649.0,27 McLindon Court,0.4046 -11727,252101,29 McLindon Court Briercliffe Burnley Lancashire BB10 2FY,,, BB10 2FY,Flat: Top,Domestic EPC Required,EPC Present,29 Oct 2015,B - 81 to 91,81.0,B - 81 to 91,81.0,BB102FY,10023762650.0,"29, McLindon Court",0.4046 -11646,236608,3 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: Semi-Detached,Domestic EPC Required,EPC Present,19 May 2015,B - 81 to 91,83.0,A - 92 Plus,95.0,BB102FX,10023762626.0,"3 Hallam Street, Briercliffe",0.5555 -11647,245256,5 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jun 2015,B - 81 to 91,83.0,A - 92 Plus,95.0,BB102FX,10023762627.0,"5, Hallam Street, Briercliffe",0.5555 -11648,245160,7 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jun 2015,B - 81 to 91,83.0,A - 92 Plus,95.0,BB102FX,10023762628.0,"7, Hallam Street, Briercliffe",0.5555 -11649,245162,9 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Apr 2015,B - 81 to 91,83.0,A - 92 Plus,94.0,BB102FX,10023762629.0,"9 Hallam Street, Briercliffe",0.5555 -11650,245164,11 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Apr 2015,B - 81 to 91,83.0,A - 92 Plus,94.0,BB102FX,10023762630.0,"11 Hallam Street, Briercliffe",0.5583 -11651,236599,1 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: Semi-Detached,Domestic EPC Required,EPC Present,19 May 2015,B - 81 to 91,83.0,A - 92 Plus,95.0,BB102FX,10023762625.0,"1 Hallam Street, Briercliffe",0.5555 -11654,245259,15 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: End Terrace,Domestic EPC Required,EPC Present,17 Jun 2015,B - 81 to 91,83.0,A - 92 Plus,94.0,BB102FX,10023762631.0,"15 Hallam Street, Briercliffe",0.5583 -11655,245261,17 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Apr 2015,B - 81 to 91,84.0,A - 92 Plus,95.0,BB102FX,10023762632.0,"17 Hallam Street, Briercliffe",0.5583 -11656,245274,19 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: End Terrace,Domestic EPC Required,EPC Present,14 Apr 2015,B - 81 to 91,83.0,A - 92 Plus,95.0,BB102FX,10023762633.0,"19 Hallam Street, Briercliffe",0.5583 -11657,245166,21 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: End Terrace,Domestic EPC Required,EPC Present,14 Apr 2015,B - 81 to 91,83.0,A - 92 Plus,96.0,BB102FX,10023762634.0,"21 Hallam Street, Briercliffe",0.5583 -11658,245171,23 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Apr 2015,B - 81 to 91,84.0,A - 92 Plus,96.0,BB102FX,10023762635.0,"23 Hallam Street, Briercliffe",0.5583 -11659,245186,25 Hallam Street Briercliffe Burnley Lancashire BB10 2FX,,, BB10 2FX,House: End Terrace,Domestic EPC Required,EPC Present,12 Feb 2015,B - 81 to 91,82.0,A - 92 Plus,94.0,BB102FX,10023762636.0,"25 Hallam Street, Briercliffe",0.5583 -11760,247875,4 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,81.0,A - 92 Plus,98.0,BB55ZR,10070894392.0,"4 Parklands Court, Moor Street, Clayton le Moors",0.7628 -11761,247881,7 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,81.0,A - 92 Plus,98.0,BB55ZR,10070894395.0,"7 Parklands Court, Moor Street, Clayton le Moors",0.7628 -11762,247877,5 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,81.0,A - 92 Plus,98.0,BB55ZR,10070894393.0,"5 Parklands Court, Moor Street, Clayton le Moors",0.7628 -11763,247959,12 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,81.0,A - 92 Plus,98.0,BB55ZR,10070894400.0,"12 Parklands Court, Moor Street, Clayton le Moors",0.7639 -11764,247879,6 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,82.0,A - 92 Plus,95.0,BB55ZR,10070894394.0,"6 Parklands Court, Moor Street, Clayton le Moors",0.7628 -11765,247961,13 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,C - 69 to 80,80.0,A - 92 Plus,97.0,BB55ZR,10070894401.0,"13 Parklands Court, Moor Street, Clayton le Moors",0.7639 -11766,247869,1 Parklands Court Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,C - 69 to 80,80.0,A - 92 Plus,97.0,BB55ZR,10070894389.0,"1 Parklands Court, Moor Street, Clayton le Moors",0.5949 -11767,247955,10 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,81.0,A - 92 Plus,98.0,BB55ZR,10070894398.0,"10 Parklands Court, Moor Street, Clayton le Moors",0.7639 -11768,247883,8 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,81.0,A - 92 Plus,98.0,BB55ZR,10070894396.0,"8 Parklands Court, Moor Street, Clayton le Moors",0.7628 -11769,247957,11 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,82.0,A - 92 Plus,95.0,BB55ZR,10070894399.0,"11 Parklands Court, Moor Street, Clayton le Moors",0.7639 -11770,247871,2 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,81.0,A - 92 Plus,98.0,BB55ZR,10070894390.0,"2 Parklands Court, Moor Street, Clayton le Moors",0.7628 -11771,247953,9 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2016,B - 81 to 91,81.0,A - 92 Plus,98.0,BB55ZR,10070894397.0,"9 Parklands Court, Moor Street, Clayton le Moors",0.7628 -13917,383826,3 Parklands Court Moor Street Clayton le Moors Lancashire BB5 5ZR,,, BB5 5ZR,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,26 Jan 2016,A - 92 Plus,94.0,A - 92 Plus,95.0,BB55ZR,10070894391.0,"3 Parklands Court, Moor Street, Clayton le Moors",0.7628 -12129,268469,146 Brunshaw Road Burnley Lancashire BB10 4BY,,, BB10 4BY,House: End Terrace,Domestic EPC Required,EPC Present,09 Apr 2014,C - 69 to 80,69.0,A - 92 Plus,92.0,BB104BY,100010331495.0,"146, Brunshaw Road",0.4705 -12149,367855,59 Bank Parade Burnley Lancashire BB11 1UG,,, BB11 1UG,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Apr 2024,D - 55 to 68,65.0,B - 81 to 91,86.0,BB111UG,100010327967.0,59 Bank Parade,0.4536 -12236,272065,3 Pomfret Street Burnley Lancashire BB11 4AF,,, BB11 4AF,Bungalow: End Terr,Domestic EPC Required,EPC Present,09 Feb 2017,B - 81 to 91,83.0,A - 92 Plus,97.0,BB114AF,10023763372.0,"3, Pomfret Street",0.4652 -12237,272063,3a Pomfret Street Burnley Lancashire BB11 4AF,,, BB11 4AF,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Feb 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114AF,10023763373.0,3a Pomfret Street,0.5219 -12238,272064,3b Pomfret Street Burnley Lancashire BB11 4AF,,, BB11 4AF,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Feb 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114AF,10023763374.0,3b Pomfret Street,0.5219 -12239,272067,5 Pomfret Street Burnley Lancashire BB11 4AF,,, BB11 4AF,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Feb 2017,B - 81 to 91,83.0,A - 92 Plus,93.0,BB114AF,10023763375.0,5 Pomfret Street,0.4652 -12240,272066,5a Pomfret Street Burnley Lancashire BB11 4AF,,, BB11 4AF,Bungalow: End Terr,Domestic EPC Required,EPC Present,09 Feb 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114AF,10023763376.0,5a Pomfret Street,0.5219 -12241,272440,4 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Mar 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BD,10023763361.0,4 Blannel Street,0.4652 -12242,272518,6 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Mar 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BD,10023763362.0,6 Blannel Street,0.4652 -12243,272519,8 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Mar 2017,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BD,10023763363.0,8 Blannel Street,0.4652 -12244,272520,10 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Mar 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BD,10023763364.0,10 Blannel Street,0.4705 -12245,272521,12 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Mar 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BD,10023763365.0,12 Blannel Street,0.4705 -12254,273424,5 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Mar 2017,B - 81 to 91,83.0,A - 92 Plus,97.0,BB114BD,10023763366.0,"5, Blannel Street",0.4652 -12255,273419,7 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Mar 2017,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BD,10023763367.0,"7, Blannel Street",0.4652 -12256,273417,9 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Mar 2017,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BD,10023763368.0,"9, Blannel Street",0.4652 -12257,273416,11 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Mar 2017,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BD,10023763369.0,"11, Blannel Street",0.4705 -12258,273415,13 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Mar 2017,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BD,10023763370.0,"13, Blannel Street",0.4705 -12259,273414,15 Blannel Street Burnley Lancashire BB11 4BD,,, BB11 4BD,House: End Terrace,Domestic EPC Required,EPC Present,27 Mar 2017,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114BD,10023763371.0,"15, Blannel Street",0.4705 -12267,323671,2 Waverley Street Burnley Lancashire BB11 4DB,,, BB11 4DB,Bungalow: End Terr,Domestic EPC Required,EPC Present,09 May 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DB,10023763355.0,"2, Waverley Street",0.4705 -12268,323672,4 Waverley Street Burnley Lancashire BB11 4DB,,, BB11 4DB,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 May 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DB,10023763356.0,"4, Waverley Street",0.4705 -12269,323673,6 Waverley Street Burnley Lancashire BB11 4DB,,, BB11 4DB,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 May 2017,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114DB,10023763357.0,"6, Waverley Street",0.4705 -12270,323674,8 Waverley Street Burnley Lancashire BB11 4DB,,, BB11 4DB,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 May 2017,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DB,10023763358.0,"8, Waverley Street",0.4705 -12271,323669,10 Waverley Street Burnley Lancashire BB11 4DB,,, BB11 4DB,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 May 2017,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114DB,10023763359.0,"10, Waverley Street",0.4754 -12272,323670,12 Waverley Street Burnley Lancashire BB11 4DB,,, BB11 4DB,House: End Terrace,Domestic EPC Required,EPC Present,09 May 2017,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114DB,10023763360.0,"12, Waverley Street",0.4754 -12311,316664,20-22 Macleod Street NELSON Lancashire BB9 7HQ,,, BB9 7HQ,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2014,C - 69 to 80,75.0,B - 81 to 91,84.0,BB97HQ,10090962079.0,"20-22, Macleod Street",0.5371 -12312,316665,24-26 Macleod Street NELSON Lancashire BB9 7HQ,,, BB9 7HQ,House: End Terrace,Domestic EPC Required,EPC Present,27 Nov 2014,C - 69 to 80,76.0,B - 81 to 91,86.0,BB97HQ,10090962078.0,24-26 Mcleod Street,0.4213 -12313,316666,28-30 Macleod Street NELSON Lancashire BB9 7HQ,,, BB9 7HQ,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2014,C - 69 to 80,77.0,B - 81 to 91,87.0,BB97HQ,10090962077.0,"28-30, Macleod Street",0.5371 -12314,316667,32-34 Macleod Street NELSON Lancashire BB9 7HQ,,, BB9 7HQ,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2014,C - 69 to 80,76.0,B - 81 to 91,86.0,BB97HQ,10090962076.0,"32-34, Macleod Street",0.5371 -12315,316668,36-38 Macleod Street NELSON Lancashire BB9 7HQ,,, BB9 7HQ,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2014,C - 69 to 80,76.0,B - 81 to 91,86.0,BB97HQ,10090962075.0,"36-38, Macleod Street",0.5371 -12326,295033,40-42 Macleod Street NELSON Lancashire BB9 7HQ,,, BB9 7HQ,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2014,C - 69 to 80,75.0,B - 81 to 91,84.0,BB97HQ,10090962074.0,"40-42, Macleod Street",0.5371 -12316,275441,23-25 Mosley Street NELSON Lancashire BB9 7HA,,, BB9 7HA,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Dec 2012,C - 69 to 80,77.0,B - 81 to 91,85.0,BB97HA,10090962066.0,"23-25, Mosley Street",0.5328 -12320,295032,1 Mosley Street NELSON Lancashire BB9 7HA,,, BB9 7HA,House: End Terrace,Domestic EPC Required,EPC Present,21 Dec 2012,C - 69 to 80,72.0,B - 81 to 91,82.0,BB97HA,61005000.0,"1, Mosley Street",0.4661 -12317,316677,26-28 Albert Street NELSON Lancashire BB9 7EY,,, BB9 7EY,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Feb 2017,C - 69 to 80,75.0,B - 81 to 91,82.0,BB97EY,10090962891.0,"26-28, Albert Street",0.5328 -12321,316674,14 Albert Street NELSON Lancashire BB9 7EY,,, BB9 7EY,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Aug 2019,C - 69 to 80,74.0,B - 81 to 91,86.0,BB97EY,61004980.0,"14, Albert Street",0.4717 -12322,316675,16 Albert Street NELSON Lancashire BB9 7EY,,, BB9 7EY,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Aug 2015,C - 69 to 80,74.0,B - 81 to 91,86.0,BB97EY,61004982.0,"16, Albert Street",0.4717 -12323,316676,18-20 Albert Street NELSON Lancashire BB9 7EY,,, BB9 7EY,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Feb 2017,C - 69 to 80,75.0,B - 81 to 91,82.0,BB97EY,10090962889.0,"18-20, Albert Street",0.5328 -12318,322634,144 - 146 Every Street NELSON Lancashire BB9 7HF,,, BB9 7HF,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2014,C - 69 to 80,78.0,B - 81 to 91,86.0,BB97HF,10090962072.0,"144-146, Every Street",0.5371 -12319,322636,148 - 150 Every Street NELSON Lancashire BB9 7HF,,, BB9 7HF,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2014,C - 69 to 80,76.0,B - 81 to 91,83.0,BB97HF,10090962070.0,"148-150, Every Street",0.5371 -12452,296843,11 Cotton Street Burnley Lancashire BB12 0NH,,, BB12 0NH,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Jul 2023,D - 55 to 68,64.0,B - 81 to 91,84.0,BB120NH,100010335960.0,11 Cotton Street,0.4652 -12510,304349,7 Tennis Street Burnley Lancashire BB10 3AG,,, BB10 3AG,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Mar 2019,C - 69 to 80,72.0,B - 81 to 91,91.0,BB103AG,100010357927.0,"7, Tennis Street",0.4596 -12511,322676,11 Tennis Street Burnley Lancashire BB10 3AG,,, BB10 3AG,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Oct 2013,E - 39 to 54,42.0,B - 81 to 91,83.0,BB103AG,100010357931.0,"11, Tennis Street",0.4652 -12514,300659,18 Paulhan Street Burnley Lancashire BB10 1ET,,, BB10 1ET,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Jul 2018,D - 55 to 68,65.0,B - 81 to 91,88.0,BB101ET,100010351728.0,"18, Paulhan Street",0.4705 -12654,302594,20 Paulhan Street Burnley BB10 1ET,,, BB10 1ET,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2018,C - 69 to 80,73.0,B - 81 to 91,87.0,BB101ET,100010351730.0,"20, Paulhan Street",0.5583 -12518,300666,10 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jun 2018,C - 69 to 80,71.0,C - 69 to 80,79.0,BB102PN,10024181643.0,"10, May Tree Close",0.3281 -13230,338145,11 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: End Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,96.0,BB102PN,10094603894.0,11 May Tree Close,0.3281 -13231,338146,12 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,97.0,BB102PN,10094603895.0,12 May Tree Close,0.3281 -13232,338147,14 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,97.0,BB102PN,10094603896.0,14 May Tree Close,0.3281 -13233,338148,15 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: End Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,96.0,BB102PN,10094603897.0,15 May Tree Close,0.3281 -13234,338149,16 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: End Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,96.0,BB102PN,10094603898.0,16 May Tree Close,0.3281 -13235,338150,17 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,97.0,BB102PN,10094603899.0,17 May Tree Close,0.3281 -13236,338151,18 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,97.0,BB102PN,10094603900.0,18 May Tree Close,0.3281 -13237,338152,19 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: End Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,96.0,BB102PN,10094603901.0,19 May Tree Close,0.3281 -13238,338153,20 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: End Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,83.0,A - 92 Plus,95.0,BB102PN,10094603902.0,20 May Tree Close,0.3281 -13239,338154,21 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,97.0,BB102PN,10094603903.0,21 May Tree Close,0.3281 -13240,338155,22 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,97.0,BB102PN,10094603904.0,22 May Tree Close,0.3281 -13241,338156,23 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: End Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,83.0,A - 92 Plus,96.0,BB102PN,10094603905.0,23 May Tree Close,0.3281 -13242,338157,24 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: End Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,96.0,BB102PN,10094603906.0,24 May Tree Close,0.3281 -13243,338158,25 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,97.0,BB102PN,10094603907.0,25 May Tree Close,0.3281 -13244,338159,26 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,97.0,BB102PN,10094603908.0,26 May Tree Close,0.3281 -13245,338160,27 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,97.0,BB102PN,10094603909.0,27 May Tree Close,0.3281 -13246,338161,28 Maytree Close Burnley Lancashire BB10 2PN,,, BB10 2PN,House: End Terrace,Domestic EPC Required,EPC Present,16 Mar 2021,B - 81 to 91,83.0,A - 92 Plus,95.0,BB102PN,10094603910.0,28 May Tree Close,0.3281 -12563,300654,20 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110295.0,"20, Jubilee Close, Padiham",0.5461 -12564,300667,21 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB127FR,10094110296.0,"21, Jubilee Close, Padiham",0.5461 -12565,300668,22 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Oct 2018,B - 81 to 91,86.0,A - 92 Plus,96.0,BB127FR,10094110297.0,"22, Jubilee Close, Padiham",0.5461 -12566,300669,23 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB127FR,10094110298.0,"23, Jubilee Close, Padiham",0.5461 -12567,300670,24 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB127FR,10094110299.0,"24, Jubilee Close, Padiham",0.5461 -12568,300671,25 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB127FR,10094110300.0,"25, Jubilee Close, Padiham",0.5461 -12569,300672,26 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: End Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB127FR,10094110301.0,"26, Jubilee Close, Padiham",0.5461 -12570,300673,27 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB127FR,10094110302.0,"27, Jubilee Close, Padiham",0.5461 -12571,300674,28 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: End Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110303.0,"28, Jubilee Close, Padiham",0.5461 -12572,300691,29 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Oct 2018,B - 81 to 91,82.0,A - 92 Plus,97.0,BB127FR,10094110304.0,"29, Jubilee Close, Padiham",0.5461 -12573,300692,30 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Oct 2018,B - 81 to 91,82.0,A - 92 Plus,97.0,BB127FR,10094110305.0,"30, Jubilee Close, Padiham",0.5461 -12574,300702,31 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110306.0,"31, Jubilee Close, Padiham",0.5461 -12575,300703,32 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110307.0,"32, Jubilee Close, Padiham",0.5461 -12576,300689,33 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: End Terrace,Domestic EPC Required,EPC Present,03 Oct 2018,B - 81 to 91,83.0,A - 92 Plus,95.0,BB127FR,10094110308.0,"33, Jubilee Close, Padiham",0.5461 -12577,300690,34 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Oct 2018,A - 92 Plus,94.0,A - 92 Plus,97.0,BB127FR,10094110309.0,"34, Jubilee Close, Padiham",0.5461 -12578,300688,35 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB127FR,10094110310.0,"35, Jubilee Close, Padiham",0.5461 -12579,300687,36 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: End Terrace,Domestic EPC Required,EPC Present,03 Oct 2018,B - 81 to 91,82.0,A - 92 Plus,95.0,BB127FR,10094110311.0,"36, Jubilee Close, Padiham",0.5461 -12610,300684,37 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: End Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,95.0,BB127FR,10094110312.0,"37, Jubilee Close, Padiham",0.5461 -12611,300683,38 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110313.0,"38, Jubilee Close, Padiham",0.5461 -12612,300685,39 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110314.0,"39, Jubilee Close, Padiham",0.5461 -12613,300682,40 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110315.0,"40, Jubilee Close, Padiham",0.5461 -12614,300681,41 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110316.0,"41, Jubilee Close, Padiham",0.5461 -12615,300680,42 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110317.0,"42, Jubilee Close, Padiham",0.5461 -12616,300678,43 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110318.0,"43, Jubilee Close, Padiham",0.5461 -12617,300679,44 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110319.0,"44, Jubilee Close, Padiham",0.5461 -12618,300677,45 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110320.0,"45, Jubilee Close, Padiham",0.5461 -12619,300676,46 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110321.0,"46, Jubilee Close, Padiham",0.5461 -12620,300675,47 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,97.0,BB127FR,10094110322.0,"47, Jubilee Close, Padiham",0.5461 -12621,300631,48 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: End Terrace,Domestic EPC Required,EPC Present,26 Nov 2018,B - 81 to 91,82.0,A - 92 Plus,95.0,BB127FR,10094110323.0,"48, Jubilee Close, Padiham",0.5461 -12622,300651,1 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110276.0,"1, Jubilee Close, Padiham",0.5426 -12623,300652,2 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Nov 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB127FR,10094110277.0,"2, Jubilee Close, Padiham",0.5426 -12624,300653,3 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110278.0,"3, Jubilee Close, Padiham",0.5426 -12625,300704,4 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110279.0,"4, Jubilee Close, Padiham",0.5426 -12626,300705,5 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110280.0,"5, Jubilee Close, Padiham",0.5426 -12627,300706,6 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110281.0,"6, Jubilee Close, Padiham",0.5426 -12628,300693,7 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: End Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110282.0,"7, Jubilee Close, Padiham",0.5426 -12629,300695,8 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB127FR,10094110283.0,"8, Jubilee Close, Padiham",0.5426 -12630,300696,9 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB127FR,10094110284.0,"9, Jubilee Close, Padiham",0.5426 -12631,300697,10 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB127FR,10094110285.0,"10, Jubilee Close, Padiham",0.5461 -12632,300698,11 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB127FR,10094110286.0,"11, Jubilee Close, Padiham",0.5461 -12633,300699,12 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB127FR,10094110287.0,"12, Jubilee Close, Padiham",0.5461 -12634,300700,13 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB127FR,10094110288.0,"13, Jubilee Close, Padiham",0.5461 -12635,300701,14 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB127FR,10094110289.0,"14, Jubilee Close, Padiham",0.5461 -12636,300694,15 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: End Terrace,Domestic EPC Required,EPC Present,09 Oct 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110290.0,"15, Jubilee Close, Padiham",0.5461 -12637,300707,16 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110291.0,"16, Jubilee Close, Padiham",0.5461 -12638,300708,17 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110292.0,"17, Jubilee Close, Padiham",0.5461 -12639,300709,18 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110293.0,"18, Jubilee Close, Padiham",0.5461 -12640,300710,19 Jubilee Close Padiham Lancashire England BB12 7FR,,, BB12 7FR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Nov 2018,B - 81 to 91,84.0,A - 92 Plus,95.0,BB127FR,10094110294.0,"19, Jubilee Close, Padiham",0.5461 -12647,305101,9 Kyan Street Burnley Lancashire England BB10 1HL,,, BB10 1HL,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 May 2019,C - 69 to 80,70.0,B - 81 to 91,90.0,BB101HL,100010345075.0,"9, Kyan Street",0.3905 -12652,302619,31 West Street Burnley Lancashire BB10 3ER,,, BB10 3ER,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 May 2019,C - 69 to 80,69.0,B - 81 to 91,88.0,BB103ER,100010360329.0,"31, West Street",0.4536 -12695,305741,101 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965565.0,"101, Priory Chase",0.4717 -12696,305742,103 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965566.0,"103, Priory Chase",0.4717 -12697,305743,105 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,83.0,A - 92 Plus,97.0,BB90NZ,10090965567.0,"105, Priory Chase",0.4717 -12698,305744,107 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,83.0,A - 92 Plus,97.0,BB90NZ,10090965568.0,"107, Priory Chase",0.4717 -12699,305745,109 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965569.0,"109, Priory Chase",0.4717 -12700,305746,111 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965570.0,"111, Priory Chase",0.4717 -12701,305740,88 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965575.0,"88, Priory Chase",0.4661 -12702,305739,86 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,98.0,BB90NZ,10090965576.0,"86, Priory Chase",0.4661 -12703,305738,84 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB90NZ,10090965577.0,"84, Priory Chase",0.4661 -12704,305737,82 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB90NZ,10090965578.0,"82, Priory Chase",0.4661 -12705,305736,80 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965579.0,"80, Priory Chase",0.4661 -12706,305735,76 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965581.0,"76, Priory Chase",0.4661 -12707,305734,66 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2019,B - 81 to 91,83.0,A - 92 Plus,97.0,BB90NZ,10090965586.0,"66, Priory Chase",0.4661 -12708,305733,64 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2019,B - 81 to 91,83.0,A - 92 Plus,97.0,BB90NZ,10090965587.0,"64, Priory Chase",0.4661 -12709,305732,62 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965588.0,"62, Priory Chase",0.4661 -12710,305731,60 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965589.0,"60, Priory Chase",0.4661 -12711,305730,58 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,23 May 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB90NZ,10090965590.0,"58, Priory Chase",0.4661 -12712,305729,56 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,23 May 2019,B - 81 to 91,84.0,A - 92 Plus,98.0,BB90NZ,10090965591.0,"56, Priory Chase",0.4661 -12713,305728,54 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,98.0,BB90NZ,10090965592.0,"54, Priory Chase",0.4661 -12714,305727,52 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965593.0,"52, Priory Chase",0.4661 -12721,315288,99 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965564.0,"99, Priory Chase",0.4661 -12722,315311,93 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965561.0,"93, Priory Chase",0.4661 -12723,315334,90 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965574.0,"90, Priory Chase",0.4661 -12724,315357,92 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965573.0,"92, Priory Chase",0.4661 -12725,315380,78 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB90NZ,10090965580.0,"78, Priory Chase",0.4661 -12726,315696,95 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB90NZ,10090965562.0,"95, Priory Chase",0.4661 -12727,315697,97 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB90NZ,10090965563.0,"97, Priory Chase",0.4661 -12728,315698,113 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Mar 2019,B - 81 to 91,83.0,A - 92 Plus,97.0,BB90NZ,10090965571.0,"113, Priory Chase",0.4717 -12730,315700,74 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB90NZ,10090965582.0,"74, Priory Chase",0.4661 -12731,315701,72 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB90NZ,10090965583.0,"72, Priory Chase",0.4661 -12732,315702,70 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB90NZ,10090965584.0,"70, Priory Chase",0.4661 -12733,315703,68 Priory Chase NELSON Lancashire BB9 0NZ,,, BB9 0NZ,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Apr 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB90NZ,10090965585.0,"68, Priory Chase",0.4661 -12719,315223,133 Hollingreave Road Burnley Lancashire BB11 2HU,,, BB11 2HU,House: End Terrace,Domestic EPC Required,EPC Present,25 Sep 2019,C - 69 to 80,72.0,B - 81 to 91,91.0,BB112HU,100010343240.0,"133, Hollingreave Road",0.4886 -12769,322609,125 Hollingreave Road Burnley Lancashire BB11 2HU,,, BB11 2HU,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2019,C - 69 to 80,72.0,B - 81 to 91,90.0,BB112HU,100010343232.0,"125, Hollingreave Road",0.4886 -13022,333501,160 Hollingreave Road Burnley Lancashire BB11 2HU,,, BB11 2HU,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Oct 2020,C - 69 to 80,72.0,C - 69 to 80,75.0,BB112HU,100010343255.0,"160 HOLLINGREAVE ROAD, BURNLEY",0.6317 -13088,333850,158 Hollingreave Road Burnley Lancashire BB11 2HU,,, BB11 2HU,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2020,C - 69 to 80,72.0,C - 69 to 80,76.0,BB112HU,100010343254.0,"158 HOLLINGREAVE ROAD, BURNLEY",0.6317 -13318,343253,166 Hollingreave Road Burnley Lancashire BB11 2HU,,, BB11 2HU,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Oct 2021,C - 69 to 80,74.0,B - 81 to 91,90.0,BB112HU,100010343258.0,166 Hollingreave Road,0.4886 -13555,357155,148 Hollingreave Road Burnley Lancashire BB11 2HU,,, BB11 2HU,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Oct 2022,C - 69 to 80,77.0,B - 81 to 91,91.0,BB112HU,100010343249.0,"148 HOLLINGREAVE ROAD, BURNLEY",0.6317 -12741,316279,59 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Oct 2019,C - 69 to 80,72.0,A - 92 Plus,92.0,BB113LS,100010351495.0,"59, Parkinson Street",0.4801 -12786,323342,21 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Jan 2020,C - 69 to 80,73.0,A - 92 Plus,92.0,BB113LS,100010351457.0,"21, Parkinson Street",0.4801 -12791,323711,63 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jan 2020,C - 69 to 80,74.0,B - 81 to 91,92.0,BB113LS,100010351499.0,"63, Parkinson Street",0.4801 -12794,326498,53 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2020,C - 69 to 80,74.0,B - 81 to 91,91.0,BB113LS,100010351489.0,"53, Parkinson Street",0.4801 -12796,326494,9 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2020,C - 69 to 80,74.0,A - 92 Plus,92.0,BB113LS,100010351445.0,"9, Parkinson Street",0.4754 -12804,326496,16 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LS,100010351452.0,"16, Parkinson Street",0.4801 -12808,328397,50 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Mar 2020,C - 69 to 80,73.0,B - 81 to 91,91.0,BB113LS,100010351486.0,"50, Parkinson Street",0.4801 -12955,329533,14 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Jun 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LS,100010351450.0,"14, Parkinson Street",0.4801 -12956,329852,15 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Jun 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LS,100010351451.0,"15, Parkinson Street",0.4801 -12969,330194,30 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jul 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LS,100010351466.0,"30, Parkinson Street",0.4801 -12970,330849,68 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Aug 2020,C - 69 to 80,74.0,A - 92 Plus,92.0,BB113LS,100010351504.0,"68, Parkinson Street",0.4801 -12979,332694,56 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Oct 2020,C - 69 to 80,74.0,C - 69 to 80,77.0,BB113LS,100010351492.0,"56 PARKINSON STREET, BURNLEY",0.6268 -12980,331061,58 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Oct 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LS,100010351494.0,"58 PARKINSON STREET, BURNLEY",0.6268 -12990,329401,27 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Mar 2020,C - 69 to 80,74.0,A - 92 Plus,92.0,BB113LS,100010351463.0,"27, Parkinson Street",0.4801 -13146,338265,28 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Feb 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LS,100010351464.0,"28 PARKINSON STREET, BURNLEY",0.6268 -13248,338853,32 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Apr 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LS,100010351468.0,"32 PARKINSON STREET, BURNLEY",0.6268 -13249,339233,48 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 May 2021,C - 69 to 80,74.0,A - 92 Plus,93.0,BB113LS,100010351484.0,48 PARKINSON STREET,0.4801 -13767,367908,57 Parkinson Street Burnley Lancashire BB11 3LS,,, BB11 3LS,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB113LS,100010351493.0,"57 PARKINSON STREET, BURNLEY",0.6268 -12744,316282,175 New Lane ACCRINGTON Lancashire BB5 3QN,,, BB5 3QN,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Mar 2022,C - 69 to 80,71.0,B - 81 to 91,85.0,BB53QN,100010435737.0,"175 New Lane, Oswaldtwistle",0.429 -12745,316285,23 Hollingreave Road Burnley Lancashire BB11 2HZ,,, BB11 2HZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Oct 2019,D - 55 to 68,65.0,C - 69 to 80,80.0,BB112HZ,100010343134.0,"23, Hollingreave Road",0.4845 -12792,328395,44 Hollingreave Road Burnley Lancashire BB11 2HZ,,, BB11 2HZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Mar 2020,C - 69 to 80,72.0,B - 81 to 91,87.0,BB112HZ,100010343154.0,"44, Hollingreave Road",0.4845 -13284,339412,62 Hollingreave Road Burnley Lancashire BB11 2HZ,,, BB11 2HZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 May 2021,C - 69 to 80,74.0,B - 81 to 91,89.0,BB112HZ,100010343172.0,"62 HOLLINGREAVE ROAD, BURNLEY",0.6293 -12746,323625,9 Dall Street Burnley Lancashire BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Oct 2019,C - 69 to 80,71.0,A - 92 Plus,92.0,BB113LB,100010336720.0,"9, Dall Street",0.4471 -12761,322307,17 Dall Street Burnley Lancashire UK BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Nov 2019,C - 69 to 80,72.0,B - 81 to 91,91.0,BB113LB,100010336728.0,"17, Dall Street",0.4099 -12764,322370,43 Dall Street Burnley Lancashire BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,72.0,B - 81 to 91,90.0,BB113LB,100010336754.0,"43, Dall Street",0.4536 -12809,328393,39 Dall Street Burnley Lancashire UK BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Mar 2020,C - 69 to 80,74.0,A - 92 Plus,92.0,BB113LB,100010336750.0,"39, Dall Street",0.4099 -12993,329428,74 Dall Street Burnley Lancashire UK BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Apr 2020,C - 69 to 80,74.0,B - 81 to 91,90.0,BB113LB,100010336785.0,"74, Dall Street",0.4099 -13023,332659,68 Dall Street Burnley Lancashire BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LB,100010336779.0,"68 DALL STREET, BURNLEY",0.6121 -13128,337673,21 Dall Street Burnley Lancashire BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Jan 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LB,100010336732.0,"21 DALL STREET, BURNLEY",0.6121 -13618,358897,56 Dall Street Burnley Lancashire BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Feb 2023,C - 69 to 80,76.0,B - 81 to 91,90.0,BB113LB,100010336767.0,56 Dall Street,0.4536 -13731,359942,72 Dall Street Burnley Lancashire BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 May 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB113LB,100010336783.0,72 Dall Street,0.4536 -13771,368219,53 Dall Street Burnley Lancashire BB11 3LB,,, BB11 3LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2021,C - 69 to 80,76.0,A - 92 Plus,92.0,BB113LB,100010336764.0,53 Dall Street,0.4536 -13830,380312,60 Dall Street Burnley Lancashire BB11 3LB,,, BB11 3LB,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Jul 2024,C - 69 to 80,73.0,B - 81 to 91,87.0,BB113LB,100010336771.0,60 Dall Street,0.4536 -12754,322707,93 Hollingreave Road Burnley Lancashire BB11 2HT,,, BB11 2HT,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Sep 2019,C - 69 to 80,69.0,B - 81 to 91,88.0,BB112HT,100010343203.0,"93, Hollingreave Road",0.4845 -12974,330853,97 Hollingreave Road Burnley Lancashire BB11 2HT,,, BB11 2HT,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Aug 2020,C - 69 to 80,70.0,B - 81 to 91,87.0,BB112HT,100010343207.0,"97, Hollingreave Road",0.4845 -13168,338276,95 Hollingreave Road Burnley Lancashire BB11 2HT,,, BB11 2HT,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Mar 2021,C - 69 to 80,72.0,B - 81 to 91,88.0,BB112HT,100010343205.0,"95 HOLLINGREAVE ROAD, BURNLEY",0.6293 -12756,321704,7 Stoney Street Burnley Lancashire BB11 3PT,,, BB11 3PT,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2019,C - 69 to 80,70.0,B - 81 to 91,91.0,BB113PT,100010357142.0,"7, Stoney Street",0.4596 -12984,329260,10 Stoney Street Burnley Lancashire BB11 3PT,,, BB11 3PT,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Mar 2020,D - 55 to 68,65.0,B - 81 to 91,90.0,BB113PT,100010357145.0,"10, Stoney Street",0.4652 -12760,322300,79 Parkinson Street Burnley Lancashire BB11 3LU,,, BB11 3LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Jan 2020,D - 55 to 68,66.0,B - 81 to 91,89.0,BB113LU,100010351515.0,"79, Parkinson Street",0.4801 -12770,322613,91 Parkinson Street Burnley Lancashire BB11 3LU,,, BB11 3LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,70.0,B - 81 to 91,86.0,BB113LU,100010351527.0,"91, Parkinson Street",0.4801 -12771,322622,96 Parkinson Street Burnley Lancashire BB11 3LU,,, BB11 3LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB113LU,100010351532.0,"96, Parkinson Street",0.4801 -12981,330851,83 Parkinson Street Burnley Lancashire BB11 3LU,,, BB11 3LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Aug 2020,C - 69 to 80,70.0,B - 81 to 91,90.0,BB113LU,100010351519.0,"83, Parkinson Street",0.4801 -13589,357810,78 Parkinson Street Burnley Lancashire BB11 3LU,,, BB11 3LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Nov 2022,C - 69 to 80,76.0,B - 81 to 91,91.0,BB113LU,100010351514.0,78 Parkinson Street,0.4801 -12763,322310,82 Hufling Lane Burnley Lancashire BB11 3QH,,, BB11 3QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Nov 2019,C - 69 to 80,69.0,B - 81 to 91,90.0,BB113QH,100010343761.0,"82, Hufling Lane",0.4596 -13021,332979,86 Hufling Lane Burnley Lancashire BB11 3QH,,, BB11 3QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Oct 2020,C - 69 to 80,74.0,C - 69 to 80,77.0,BB113QH,100010343764.0,"86 HUFLING LANE, BURNLEY",0.6154 -13305,340559,34 Hufling Lane Burnley Lancashire BB11 3QH,,, BB11 3QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Sep 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113QH,100010343718.0,34 Hufling Lane,0.4596 -13881,382515,39 Hufling Lane Burnley Lancashire BB11 3QH,,, BB11 3QH,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Oct 2024,C - 69 to 80,78.0,B - 81 to 91,90.0,BB113QH,100010343723.0,39 Hufling Lane,0.4596 -12766,322414,24 Sutherland Street Colne Lancashire BB8 0DB,,, BB8 0DB,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jun 2025,D - 55 to 68,57.0,B - 81 to 91,82.0,BB80DB,61019562.0,24 Sutherland Street,0.494 -12768,324897,89 Reed Street Burnley Lancashire BB11 3LW,,, BB11 3LW,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Nov 2019,D - 55 to 68,64.0,B - 81 to 91,87.0,BB113LW,100010353697.0,"89, Reed Street",0.4536 -12821,329061,75 Reed Street Burnley Lancashire BB11 3LW,,, BB11 3LW,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Apr 2020,D - 55 to 68,64.0,B - 81 to 91,88.0,BB113LW,100010353683.0,"75, Reed Street",0.4536 -12864,329531,5 Reed Street Burnley Lancashire BB11 3LW,,, BB11 3LW,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,70.0,B - 81 to 91,89.0,BB113LW,,, -12784,322703,26 Hornby Street Burnley Lancashire BB11 3AS,,, BB11 3AS,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,72.0,B - 81 to 91,87.0,BB113AS,100010343468.0,"26, Hornby Street",0.4652 -12822,328476,34 Hornby Street Burnley Lancashire BB11 3AS,,, BB11 3AS,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Mar 2020,D - 55 to 68,65.0,B - 81 to 91,87.0,BB113AS,100010343472.0,"34, Hornby Street",0.4652 -12788,325673,66 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Jan 2020,C - 69 to 80,74.0,B - 81 to 91,91.0,BB113LP,100010353674.0,"66, Reed Street",0.4536 -12806,324361,25 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jan 2020,C - 69 to 80,72.0,B - 81 to 91,89.0,BB113LP,100010353633.0,"25, Reed Street",0.4536 -12807,324366,52 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2020,C - 69 to 80,74.0,B - 81 to 91,91.0,BB113LP,100010353660.0,"52, Reed Street",0.4536 -12982,337611,11 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Oct 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LP,100010353619.0,"11 REED STREET, BURNLEY",0.6121 -13306,341121,68 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Sep 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LP,100010353676.0,68 Reed Street,0.4536 -13354,357176,45 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Feb 2022,C - 69 to 80,76.0,A - 92 Plus,92.0,BB113LP,100010353653.0,45 Reed Street,0.4536 -13449,352604,50 Reed Street BURNLEY Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jun 2022,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113LP,100010353658.0,50 Reed Street,0.4536 -13482,354533,51 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Jun 2023,C - 69 to 80,75.0,B - 81 to 91,89.0,BB113LP,100010353659.0,51 Reed Street,0.4536 -13587,357182,62 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2022,B - 81 to 91,86.0,B - 81 to 91,87.0,BB113LP,100010353670.0,62 Reed Street,0.4536 -13611,358845,4 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Nov 2022,C - 69 to 80,77.0,B - 81 to 91,91.0,BB113LP,100010353612.0,4 Reed Street,0.4471 -13637,358896,59 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Feb 2023,C - 69 to 80,75.0,B - 81 to 91,88.0,BB113LP,100010353667.0,59 Reed Street,0.4536 -13751,362956,40 Reed Street Burnley Lancashire BB11 3LP,,, BB11 3LP,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Aug 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB113LP,100010353648.0,40 Reed Street,0.4536 -12793,326501,65 Branch Road Burnley Lancashire BB11 3NB,,, BB11 3NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2020,C - 69 to 80,74.0,B - 81 to 91,91.0,BB113NB,100010329567.0,"65, Branch Road",0.4536 -12854,329527,39 Branch Road Burnley Lancashire BB11 3NB,,, BB11 3NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113NB,100010329541.0,"39, Branch Road",0.4536 -12985,329334,47 Branch Road Burnley Lancashire BB11 3NB,,, BB11 3NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Mar 2020,C - 69 to 80,74.0,B - 81 to 91,91.0,BB113NB,100010329549.0,"47, Branch Road",0.4536 -13083,333842,83 Branch Road Burnley Lancashire BB11 3NB,,, BB11 3NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2020,C - 69 to 80,75.0,C - 69 to 80,79.0,BB113NB,100010329585.0,"83 BRANCH ROAD, BURNLEY",0.6121 -13112,337318,33 Branch Road Burnley Lancashire BB11 3NB,,, BB11 3NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Jan 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113NB,100010329535.0,"33 BRANCH ROAD, BURNLEY",0.6121 -13169,338260,113 Branch Road Burnley Lancashire BB11 3NB,,, BB11 3NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Feb 2021,C - 69 to 80,70.0,B - 81 to 91,88.0,BB113NB,,, -13224,338682,71 Branch Road Burnley Lancashire BB11 3NB,,, BB11 3NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Apr 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113NB,100010329573.0,"71 BRANCH ROAD, BURNLEY",0.6121 -13309,340988,31 Branch Road Burnley Lancashire BB11 3NB,,, BB11 3NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Sep 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB113NB,100010329533.0,31 Branch Road,0.4536 -12797,328063,20 Clarence Street Burnley Lancashire BB11 3HG,,, BB11 3HG,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Feb 2020,D - 55 to 68,67.0,B - 81 to 91,91.0,BB113HG,100010333937.0,"20, Clarence Street",0.4754 -12825,325389,5 Roshan Avenue NELSON Lancashire BB9 5QE,,, BB9 5QE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Nov 2019,B - 81 to 91,82.0,A - 92 Plus,95.0,BB95QE,10090965518.0,"5, Roshan Avenue, Brierfield",0.4318 -12826,325391,7 Roshan Avenue NELSON Lancashire BB9 5QE,,, BB9 5QE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,29 Nov 2019,B - 81 to 91,82.0,A - 92 Plus,95.0,BB95QE,10090965517.0,"7, Roshan Avenue, Brierfield",0.4318 -12827,326196,9 Roshan Avenue NELSON Lancashire BB9 5QE,,, BB9 5QE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,29 Nov 2019,B - 81 to 91,82.0,A - 92 Plus,95.0,BB95QE,10090965516.0,"9, Roshan Avenue, Brierfield",0.4318 -12828,326193,11 Roshan Avenue NELSON Lancashire BB9 5QE,,, BB9 5QE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,29 Nov 2019,B - 81 to 91,82.0,A - 92 Plus,95.0,BB95QE,10090965515.0,"11, Roshan Avenue, Brierfield",0.4365 -12829,326190,15 Roshan Avenue NELSON Lancashire BB9 5QE,,, BB9 5QE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,29 Nov 2019,B - 81 to 91,82.0,A - 92 Plus,95.0,BB95QE,10090965514.0,"15, Roshan Avenue, Brierfield",0.4365 -12830,326187,17 Roshan Avenue NELSON Lancashire BB9 5QE,,, BB9 5QE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,29 Nov 2019,B - 81 to 91,82.0,A - 92 Plus,95.0,BB95QE,10090965513.0,"17, Roshan Avenue, Brierfield",0.4365 -12832,325591,2 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,Bungalow: Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,95.0,BB128ES,10023762776.0,"2, Wilding Way, Padiham",0.6085 -12833,325924,16a Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,96.0,BB128ES,10094111378.0,"16a Wilding Way, Padiham",0.6533 -12834,325925,16 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,96.0,BB128ES,10023762783.0,"16, Wilding Way, Padiham",0.6121 -12835,325926,14a Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,96.0,BB128ES,10094111377.0,"14a Wilding Way, Padiham",0.6533 -12836,325927,14 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB128ES,10023762782.0,"14, Wilding Way, Padiham",0.6121 -12837,325928,12 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB128ES,10023762781.0,"12, Wilding Way, Padiham",0.6121 -12838,325929,10 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,96.0,BB128ES,10023762780.0,"10, Wilding Way, Padiham",0.6121 -12839,325930,8 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,96.0,BB128ES,10023762779.0,"8, Wilding Way, Padiham",0.6085 -12840,325931,6 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB128ES,10023762778.0,"6, Wilding Way, Padiham",0.6085 -12841,325932,4 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,97.0,BB128ES,10023762777.0,"4, Wilding Way, Padiham",0.6085 -12842,325933,2a Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,96.0,BB128ES,10094111376.0,"2A Wilding Way, Padiham",0.6502 -12843,325934,1 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,95.0,BB128ES,10023762761.0,"1, Wilding Way, Padiham",0.6085 -12844,325935,3 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB128ES,10023762762.0,"3, Wilding Way, Padiham",0.6085 -12845,325936,5 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB128ES,10023762763.0,"5, Wilding Way, Padiham",0.6085 -12846,325937,7 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,97.0,BB128ES,10023762764.0,"7, Wilding Way, Padiham",0.6085 -12847,325938,9 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,97.0,BB128ES,10023762765.0,"9, Wilding Way, Padiham",0.6085 -12848,325939,11 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,97.0,BB128ES,10023762766.0,"11, Wilding Way, Padiham",0.6121 -12849,325940,13 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,83.0,A - 92 Plus,97.0,BB128ES,10023762767.0,"13, Wilding Way, Padiham",0.6121 -12850,325941,15 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB128ES,10023762768.0,"15, Wilding Way, Padiham",0.6121 -12851,325942,17 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB128ES,10023762769.0,"17, Wilding Way, Padiham",0.6121 -12852,325943,19 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB128ES,10023762770.0,"19, Wilding Way, Padiham",0.6121 -12853,325944,21 Wilding Way Padiham Lancashire BB12 8ES,,, BB12 8ES,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Dec 2019,B - 81 to 91,84.0,A - 92 Plus,96.0,BB128ES,10023762771.0,"21, Wilding Way, Padiham",0.6121 -12874,328374,402 Colne Road Burnley Lancashire BB10 1EL,,, BB10 1EL,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,72.0,B - 81 to 91,89.0,BB101EL,100010335551.0,"402, Colne Road",0.4536 -12879,329551,1 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,A - 92 Plus,97.0,BB102SB,10094110782.0,"1, Royal Court, Briercliffe",0.4347 -12880,329550,2 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,A - 92 Plus,97.0,BB102SB,10094110783.0,"2, Royal Court, Briercliffe",0.4347 -12881,329549,3 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,B - 81 to 91,97.0,BB102SB,10094110784.0,"3, Royal Court, Briercliffe",0.4347 -12882,329548,4 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,A - 92 Plus,97.0,BB102SB,10094110785.0,"4, Royal Court, Briercliffe",0.4347 -12883,329547,5 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Detached,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,A - 92 Plus,96.0,BB102SB,10094110786.0,"5, Royal Court, Briercliffe",0.4347 -12884,329546,6 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,A - 92 Plus,97.0,BB102SB,10094110787.0,"6, Royal Court, Briercliffe",0.4347 -12885,329545,7 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,A - 92 Plus,97.0,BB102SB,10094110788.0,"7, Royal Court, Briercliffe",0.4347 -12886,329544,8 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Detached,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,A - 92 Plus,97.0,BB102SB,10094110789.0,"8, Royal Court, Briercliffe",0.4347 -12887,329543,9 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,A - 92 Plus,97.0,BB102SB,10094110790.0,"9, Royal Court, Briercliffe",0.4347 -12888,329542,10 Royal Court Burnley Lancashire BB10 2SB,,, BB10 2SB,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,17 Oct 2019,B - 81 to 91,82.0,A - 92 Plus,97.0,BB102SB,10094110791.0,"10, Royal Court, Briercliffe",0.4393 -12890,328681,34 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780517.0,"34, Thornber Court",0.4705 -12892,328649,2 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Sep 2019,C - 69 to 80,76.0,A - 92 Plus,93.0,BB103AW,10003780486.0,"2, Thornber Court",0.4652 -12894,328651,4 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Aug 2010,C - 69 to 80,70.0,C - 69 to 80,78.0,BB103AW,10003780488.0,"4, Thornber Court",0.4652 -12896,328653,6 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Aug 2010,C - 69 to 80,70.0,C - 69 to 80,77.0,BB103AW,10003780490.0,"6, Thornber Court",0.4652 -12897,328654,7 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Oct 2025,C - 69 to 80,76.0,B - 81 to 91,81.0,BB103AW,10003780491.0,7 Thornber Court,0.4652 -12898,328655,8 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,94.0,BB103AW,10003780492.0,"8, Thornber Court",0.4652 -12899,328656,9 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,94.0,BB103AW,10003780493.0,"9, Thornber Court",0.4652 -12900,328657,10 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Nov 2016,C - 69 to 80,75.0,A - 92 Plus,92.0,BB103AW,10003780494.0,"10, Thornber Court",0.4705 -12901,328658,11 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,94.0,BB103AW,10003780495.0,"11, Thornber Court",0.4705 -12902,328659,12 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Aug 2018,C - 69 to 80,70.0,A - 92 Plus,92.0,BB103AW,10003780496.0,"12, Thornber Court",0.4705 -12904,328661,15 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,93.0,BB103AW,10003780498.0,"15, Thornber Court",0.4705 -12905,328662,16 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,93.0,BB103AW,10003780499.0,"16, Thornber Court",0.4705 -12906,328663,17 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Oct 2025,C - 69 to 80,75.0,B - 81 to 91,82.0,BB103AW,10003780500.0,17 Thornber Court,0.4705 -12907,328664,18 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,75.0,A - 92 Plus,92.0,BB103AW,10003780501.0,18 Thornber Court,0.4705 -12908,328665,19 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,71.0,B - 81 to 91,90.0,BB103AW,10003780502.0,"19, Thornber Court",0.4705 -12909,328667,20 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,73.0,A - 92 Plus,95.0,BB103AW,10003780503.0,"20, Thornber Court",0.4705 -12910,328668,21 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780504.0,"21, Thornber Court",0.4705 -12911,328669,22 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,77.0,A - 92 Plus,95.0,BB103AW,10003780505.0,"22, Thornber Court",0.4705 -12912,328670,23 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,29 Mar 2013,C - 69 to 80,70.0,A - 92 Plus,93.0,BB103AW,10003780506.0,"23, Thornber Court",0.4705 -12913,328671,24 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,76.0,A - 92 Plus,93.0,BB103AW,10003780507.0,"24, Thornber Court",0.4705 -12914,328672,25 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,05 Apr 2016,C - 69 to 80,73.0,B - 81 to 91,90.0,BB103AW,10003780508.0,"25, Thornber Court",0.4705 -12915,328673,26 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780509.0,"26, Thornber Court",0.4705 -12916,328674,27 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,78.0,BB103AW,10003780510.0,27 Thornber Court,0.4705 -12917,328675,28 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,93.0,BB103AW,10003780511.0,"28, Thornber Court",0.4705 -12918,328676,29 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,73.0,A - 92 Plus,95.0,BB103AW,10003780512.0,"29, Thornber Court",0.4705 -12919,328677,30 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,14 Oct 2025,C - 69 to 80,75.0,B - 81 to 91,82.0,BB103AW,10003780513.0,30 Thornber Court,0.4705 -12920,328678,31 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,10 Mar 2019,C - 69 to 80,76.0,A - 92 Plus,95.0,BB103AW,10003780514.0,"31, Thornber Court",0.4705 -12922,328680,33 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,73.0,B - 81 to 91,91.0,BB103AW,10003780516.0,"33, Thornber Court",0.4705 -12923,328682,35 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780518.0,"35, Thornber Court",0.4705 -12924,328683,36 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,01 Jul 2024,C - 69 to 80,74.0,A - 92 Plus,93.0,BB103AW,10003780519.0,36 Thornber Court,0.4705 -12925,328684,37 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,72.0,A - 92 Plus,95.0,BB103AW,10003780520.0,"37, Thornber Court",0.4705 -12927,328686,39 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,10 Mar 2019,C - 69 to 80,76.0,A - 92 Plus,93.0,BB103AW,10003780522.0,"39, Thornber Court",0.4705 -12928,328687,40 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Feb 2013,C - 69 to 80,71.0,A - 92 Plus,94.0,BB103AW,10003780523.0,"40, Thornber Court",0.4705 -12929,328688,41 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,25 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,93.0,BB103AW,10003780524.0,"41, Thornber Court",0.4705 -12930,328689,42 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,93.0,BB103AW,10003780525.0,"42, Thornber Court",0.4705 -12931,328690,43 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,21 Jun 2016,D - 55 to 68,67.0,B - 81 to 91,87.0,BB103AW,10003780526.0,"43, Thornber Court",0.4705 -12932,328691,44 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780527.0,"44, Thornber Court",0.4705 -12934,328693,46 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,71.0,B - 81 to 91,89.0,BB103AW,10003780529.0,"46, Thornber Court",0.4705 -12935,328694,47 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,73.0,A - 92 Plus,95.0,BB103AW,10003780530.0,"47, Thornber Court",0.4705 -12936,328695,48 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Aug 2018,C - 69 to 80,70.0,A - 92 Plus,93.0,BB103AW,10003780531.0,"48, Thornber Court",0.4705 -12937,328696,49 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780532.0,"49, Thornber Court",0.4705 -12938,328697,50 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,27 Oct 2025,C - 69 to 80,76.0,B - 81 to 91,82.0,BB103AW,10003780533.0,50 Thornber Court,0.4705 -12939,328700,51 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780534.0,"51, Thornber Court",0.4705 -12940,328701,52 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,77.0,A - 92 Plus,94.0,BB103AW,10003780535.0,"52, Thornber Court",0.4705 -12941,328702,53 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Jan 2017,C - 69 to 80,73.0,A - 92 Plus,93.0,BB103AW,10003780536.0,"53, Thornber Court",0.4705 -12942,328703,54 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,93.0,BB103AW,10003780537.0,"54, Thornber Court",0.4705 -12943,328704,55 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,03 Feb 2026,C - 69 to 80,69.0,C - 69 to 80,75.0,BB103AW,10003780538.0,55 Thornber Court,0.4705 -12944,328705,56 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780539.0,"56, Thornber Court",0.4705 -12946,328707,58 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Aug 2014,C - 69 to 80,71.0,A - 92 Plus,94.0,BB103AW,10003780541.0,"58, Thornber Court",0.4705 -12947,328708,59 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,69.0,A - 92 Plus,93.0,BB103AW,10003780542.0,"59, Thornber Court",0.4705 -12948,328709,60 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,16 Aug 2014,C - 69 to 80,69.0,B - 81 to 91,91.0,BB103AW,10003780543.0,"60, Thornber Court",0.4705 -12950,328711,62 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780545.0,"62, Thornber Court",0.4705 -12951,328712,63 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780546.0,"63, Thornber Court",0.4705 -12952,328713,64 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,11 Jan 2011,C - 69 to 80,70.0,C - 69 to 80,78.0,BB103AW,10003780547.0,"64, Thornber Court",0.4705 -12953,328648,1 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: End Terr,Domestic EPC Required,EPC Present,14 Oct 2025,C - 69 to 80,70.0,C - 69 to 80,76.0,BB103AW,10003780485.0,1 Thornber Court,0.4652 -13379,343425,5 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Aug 2017,C - 69 to 80,69.0,A - 92 Plus,93.0,BB103AW,10003780489.0,"5, Thornber Court",0.4652 -13380,343450,32 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Dec 2021,C - 69 to 80,75.0,A - 92 Plus,93.0,BB103AW,10003780515.0,32 Thornber Court,0.4705 -13381,343485,57 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,05 Dec 2021,C - 69 to 80,76.0,A - 92 Plus,93.0,BB103AW,10003780540.0,57 Thornber Court,0.4705 -13593,354098,38 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Aug 2014,C - 69 to 80,71.0,A - 92 Plus,94.0,BB103AW,10003780521.0,"38, Thornber Court",0.4705 -13597,354278,45 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,01 Jun 2023,C - 69 to 80,74.0,B - 81 to 91,91.0,BB103AW,10003780528.0,45 Thornber Court,0.4705 -13683,357710,61 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Oct 2010,C - 69 to 80,72.0,B - 81 to 91,81.0,BB103AW,10003780544.0,"61, Thornber Court",0.4705 -13696,358028,14 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,70.0,A - 92 Plus,94.0,BB103AW,10003780497.0,"14, Thornber Court",0.4705 -13763,360176,3 Thornber Court Burnley Lancashire BB10 3AW,,, BB10 3AW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Jul 2023,C - 69 to 80,72.0,B - 81 to 91,90.0,BB103AW,10003780487.0,3 Thornber Court,0.4652 -12964,362803,68 Colbran Street Burnley Lancashire BB10 3BU,,, BB10 3BU,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Dec 2011,D - 55 to 68,55.0,D - 55 to 68,64.0,BB103BU,100010335248.0,"68, Colbran Street",0.4705 -12973,330196,131 Waterbarn Street Burnley Lancashire BB10 1RN,,, BB10 1RN,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jul 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB101RN,,, -13014,342418,Apartment 1 - R22 The Junction Picadilly Road LANCASTER Lancashire LA1 4PX,,, LA1 4PX,Flat: Middle,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,72.0,C - 69 to 80,72.0,LA14PX,100010472747.0,"Tracey's Place, Apartment 1, Piccadilly, Scotforth",0.2097 -13015,342419,Apartment 2 - R17 The Junction Picadilly Road LANCASTER Lancashire LA1 4PX,,, LA1 4PX,Flat: Middle,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,71.0,C - 69 to 80,71.0,LA14PX,100010472748.0,"Tracey's Place, Apartment 2, Piccadilly, Scotforth",0.2097 -13016,342420,Apartment 3 - R07 The Junction Picadilly Road LANCASTER Lancashire LA1 4PX,,, LA1 4PX,Flat: Middle,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,70.0,C - 69 to 80,70.0,LA14PX,200002845360.0,"Tracey's Place, Apartment 3, Piccadilly, Scotforth",0.2097 -13017,342421,Apartment 4 - R09 The Junction Picadilly Road LANCASTER Lancashire LA1 4PX,,, LA1 4PX,Flat: Middle,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,71.0,C - 69 to 80,71.0,LA14PX,100010472750.0,"Tracey's Place, Apartment 4, Piccadilly, Scotforth",0.2097 -13018,342422,Apartment 5 - R13 The Junction Picadilly Road LANCASTER Lancashire LA1 4PX,,, LA1 4PX,Flat: Middle,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,70.0,C - 69 to 80,70.0,LA14PX,10009274307.0,"Tracey's Place, Apartment 5, Piccadilly, Scotforth",0.2097 -13019,333496,221 Padiham Road Burnley Lancashire BB12 0HB,,, BB12 0HB,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Nov 2020,C - 69 to 80,69.0,C - 69 to 80,74.0,BB120HB,100010350946.0,"221 PADIHAM ROAD, BURNLEY",0.6185 -13747,359559,229 Padiham Road Burnley Lancashire England BB12 0HB,,, BB12 0HB,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 May 2014,D - 55 to 68,63.0,B - 81 to 91,86.0,BB120HB,100010350950.0,"229, Padiham Road",0.4085 -13026,329839,1 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Aug 2013,B - 81 to 91,81.0,A - 92 Plus,95.0,BB103FH,10023761952.0,"1 The Hollies, Abinger Street",0.5944 -13027,329840,2 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Jan 2024,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103FH,10023761953.0,"2 The Hollies, Abinger Street",0.5944 -13028,329841,3 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761954.0,"3 The Hollies, Abinger Street",0.5944 -13029,329842,4 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761955.0,"4 The Hollies, Abinger Street",0.5944 -13030,329843,5 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761956.0,"5 The Hollies, Abinger Street",0.5944 -13031,329844,6 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761957.0,"6 The Hollies, Abinger Street",0.5944 -13032,329845,7 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761958.0,"7 The Hollies, Abinger Street",0.5944 -13033,329846,8 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761959.0,"8 The Hollies, Abinger Street",0.5944 -13034,329847,9 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761960.0,"9 The Hollies, Abinger Street",0.5944 -13035,329848,10 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761961.0,"10 The Hollies, Abinger Street",0.5972 -13036,329967,11 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761962.0,"11 The Hollies, Abinger Street",0.5972 -13037,329968,12 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761963.0,"12 The Hollies, Abinger Street",0.5972 -13038,329969,14 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761964.0,"14 The Hollies, Abinger Street",0.5972 -13039,329970,15 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Jul 2024,C - 69 to 80,75.0,B - 81 to 91,91.0,BB103FH,10023761965.0,"15 The Hollies, Abinger Street",0.5972 -13041,329972,17 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,,, -13042,329973,18 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,79.0,A - 92 Plus,94.0,BB103FH,10023761968.0,"18 The Hollies, Abinger Street",0.5972 -13043,329974,19 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,11 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761969.0,"19 The Hollies, Abinger Street",0.5972 -13044,329975,20 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,11 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761970.0,"20 The Hollies, Abinger Street",0.5972 -13045,329976,21 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: End Terr,Domestic EPC Required,EPC Present,12 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,95.0,BB103FH,10023761971.0,"21 The Hollies, Abinger Street",0.5972 -13728,358905,16 The Hollies Abinger Street Burnley Lancashire BB10 3FH,,, BB10 3FH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Sep 2013,B - 81 to 91,81.0,A - 92 Plus,97.0,BB103FH,10023761966.0,"16 The Hollies, Abinger Street",0.5972 -13046,329988,1 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,10 Apr 2016,C - 69 to 80,75.0,A - 92 Plus,92.0,BB103EJ,10014136493.0,"1, Antley Court",0.3547 -13047,329990,2 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136494.0,"2, Antley Court",0.3547 -13049,329994,4 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136498.0,"4, Antley Court",0.3547 -13050,329996,5 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 May 2019,C - 69 to 80,77.0,A - 92 Plus,93.0,BB103EJ,10014136499.0,"5, Antley Court",0.3547 -13051,329998,6 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,10 Apr 2016,C - 69 to 80,75.0,B - 81 to 91,91.0,BB103EJ,10014136500.0,"6, Antley Court",0.3547 -13052,330000,7 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136501.0,"7, Antley Court",0.3547 -13054,330004,9 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Jan 2020,C - 69 to 80,75.0,B - 81 to 91,91.0,BB103EJ,10014136503.0,"9, Antley Court",0.3547 -13055,330006,10 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB103EJ,10014136504.0,"10, Antley Court",0.3605 -13056,330066,11 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,74.0,B - 81 to 91,90.0,BB103EJ,10014136505.0,"11, Antley Court",0.3605 -13057,330068,12 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,10 Apr 2016,C - 69 to 80,74.0,A - 92 Plus,92.0,BB103EJ,10014136506.0,"12, Antley Court",0.3605 -13059,330072,15 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136508.0,"15, Antley Court",0.3605 -13060,330074,16 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Jan 2019,C - 69 to 80,75.0,A - 92 Plus,93.0,BB103EJ,10014136509.0,"16, Antley Court",0.3605 -13061,330076,17 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Sep 2016,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136510.0,"17, Antley Court",0.3605 -13062,330078,18 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,75.0,B - 81 to 91,91.0,BB103EJ,10014136511.0,"18, Antley Court",0.3605 -13063,330080,19 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Jul 2010,C - 69 to 80,79.0,B - 81 to 91,84.0,BB103EJ,10014136512.0,"19, Antley Court",0.3605 -13064,330082,20 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,75.0,B - 81 to 91,91.0,BB103EJ,10014136513.0,"20, Antley Court",0.3605 -13066,330776,22 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,75.0,B - 81 to 91,91.0,BB103EJ,10014136515.0,"22, Antley Court",0.3605 -13069,338576,25 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,02 Oct 2011,C - 69 to 80,73.0,C - 69 to 80,77.0,BB103EJ,10014136518.0,"25, Antley Court",0.3605 -13072,338579,28 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,75.0,B - 81 to 91,91.0,BB103EJ,10014136521.0,"28, Antley Court",0.3605 -13073,338580,29 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,06 Mar 2012,C - 69 to 80,69.0,C - 69 to 80,73.0,BB103EJ,10014136522.0,"29, Antley Court",0.3605 -13074,338581,30 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136523.0,"30, Antley Court",0.3605 -13075,338582,31 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136524.0,"31, Antley Court",0.3605 -13076,338583,32 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Feb 2011,C - 69 to 80,79.0,B - 81 to 91,84.0,BB103EJ,10014136525.0,"32, Antley Court",0.3605 -13077,338584,33 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,11 Jan 2017,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136526.0,"33, Antley Court",0.3605 -13079,338586,35 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,74.0,A - 92 Plus,92.0,BB103EJ,10014136528.0,"35, Antley Court",0.3605 -13080,338587,36 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,09 Apr 2016,C - 69 to 80,74.0,A - 92 Plus,92.0,BB103EJ,10014136529.0,"36, Antley Court",0.3605 -13081,338588,37 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136530.0,"37, Antley Court",0.3605 -13082,338589,38 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,13 Feb 2018,C - 69 to 80,71.0,B - 81 to 91,90.0,BB103EJ,10014136531.0,"38, Antley Court",0.3605 -13583,352874,3 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136497.0,"3, Antley Court",0.3547 -13588,352953,23 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: End Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,75.0,B - 81 to 91,91.0,BB103EJ,10014136516.0,23 Antley Court,0.3605 -13599,354340,26 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,76.0,B - 81 to 91,91.0,BB103EJ,10014136519.0,"26, Antley Court",0.3605 -13603,355125,21 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB103EJ,10014136514.0,"21, Antley Court",0.3605 -13640,356894,27 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136520.0,"27, Antley Court",0.3605 -13641,356926,34 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,92.0,BB103EJ,10014136527.0,"34, Antley Court",0.3605 -13669,357305,8 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,75.0,B - 81 to 91,91.0,BB103EJ,10014136502.0,"8, Antley Court",0.3547 -13764,360207,14 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Jun 2020,C - 69 to 80,76.0,A - 92 Plus,93.0,BB103EJ,10014136507.0,"14, Antley Court",0.3605 -13777,368830,24 Antley Court Abinger Street Burnley Lancashire BB10 3EJ,,, BB10 3EJ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Jun 2020,C - 69 to 80,75.0,A - 92 Plus,92.0,BB103EJ,10014136517.0,"24, Antley Court",0.3605 -13114,336419,195 Oxford Road Burnley Lancashire BB11 3HB,,, BB11 3HB,House: End Terrace,Domestic EPC Required,EPC Present,09 Dec 2020,D - 55 to 68,60.0,B - 81 to 91,85.0,BB113HB,100010350889.0,"195 OXFORD ROAD, BURNLEY",0.6154 -13116,336890,32 Berry Street Burnley Lancashire BB11 2LG,,, BB11 2LG,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Dec 2020,D - 55 to 68,67.0,B - 81 to 91,87.0,BB112LG,100010329035.0,"32 BERRY STREET, BURNLEY",0.6154 -13117,330816,3 Monmouth Street Burnley Lancashire BB12 0PT,,, BB12 0PT,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jun 2025,C - 69 to 80,72.0,C - 69 to 80,80.0,BB120PT,100010349189.0,3 Monmouth Street,0.4705 -13140,337739,142 Healey Wood Burnley Lancashire BB11 2LN,,, BB11 2LN,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Feb 2021,C - 69 to 80,72.0,B - 81 to 91,90.0,BB112LN,100010341912.0,"142 HEALEY WOOD ROAD, BURNLEY",0.5518 -13142,332670,7 Veevers Street Brierfield Lancashire BB9 5QQ,,, BB9 5QQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,09 Oct 2020,B - 81 to 91,84.0,B - 81 to 91,85.0,BB95QQ,10090965416.0,"7,, Veevers Street, Brierfield",0.6303 -13143,332676,9 Veevers Street Brierfield Lancashire BB9 5QQ,,, BB9 5QQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,09 Oct 2020,B - 81 to 91,84.0,B - 81 to 91,85.0,BB95QQ,10090965417.0,"9,, Veevers Street, Brierfield",0.6303 -13144,332682,11 Veevers Street Brierfield Lancashire BB9 5QQ,,, BB9 5QQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,09 Oct 2020,B - 81 to 91,84.0,B - 81 to 91,85.0,BB95QQ,10090965418.0,"11,, Veevers Street, Brierfield",0.6328 -13145,332687,15 Veevers Street Brierfield Lancashire BB9 5QQ,,, BB9 5QQ,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,09 Oct 2020,B - 81 to 91,84.0,A - 92 Plus,94.0,BB95QQ,10090965419.0,"15,, Veevers Street, Brierfield",0.6328 -13149,333554,2 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,85.0,BB128FB,10094111392.0,"2 Forest Green Close, Padiham",0.5007 -13150,333579,4 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,85.0,BB128FB,10094111394.0,"4 Forest Green Close, Padiham",0.5007 -13151,333597,6 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,85.0,BB128FB,10094111396.0,"6 Forest Green Close, Padiham",0.5007 -13152,333600,8 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,85.0,BB128FB,10094111398.0,"8 Forest Green Close, Padiham",0.5007 -13153,333603,10 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,85.0,BB128FB,10094111400.0,"10 Forest Green Close, Padiham",0.5043 -13154,333607,12 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,85.0,BB128FB,10094111402.0,"12 Forest Green Close, Padiham",0.5043 -13155,333610,14 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,84.0,B - 81 to 91,85.0,BB128FB,10094111404.0,"14 Forest Green Close, Padiham",0.5043 -13156,333625,16 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,84.0,B - 81 to 91,85.0,BB128FB,10094111406.0,"16 Forest Green Close, Padiham",0.5043 -13157,333628,18 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,85.0,BB128FB,10094111408.0,"18 Forest Green Close, Padiham",0.5043 -13158,333631,20 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,85.0,BB128FB,10094111409.0,"20 Forest Green Close, Padiham",0.5043 -13159,333634,17 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: End Terrace,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,84.0,BB128FB,10094111407.0,"17 Forest Green Close, Padiham",0.5043 -13160,333661,15 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,84.0,B - 81 to 91,86.0,BB128FB,10094111405.0,"15 Forest Green Close, Padiham",0.5043 -13161,333664,13 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: End Terrace,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,84.0,BB128FB,10094111403.0,"13 Forest Green Close, Padiham",0.5043 -13162,333667,11 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,84.0,BB128FB,10094111401.0,"11 Forest Green Close, Padiham",0.5043 -13163,333670,9 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,84.0,BB128FB,10094111399.0,"9 Forest Green Close, Padiham",0.5007 -13164,333673,7 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,84.0,BB128FB,10094111397.0,"7 Forest Green Close, Padiham",0.5007 -13165,333676,5 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,84.0,BB128FB,10094111395.0,"5 Forest Green Close, Padiham",0.5007 -13166,333679,3 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,84.0,BB128FB,10094111393.0,"3 Forest Green Close, Padiham",0.5007 -13167,333682,1 Forest Green Close Burnley Lancashire BB12 8FB,,, BB12 8FB,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2020,B - 81 to 91,83.0,B - 81 to 91,85.0,BB128FB,10094111391.0,"1 Forest Green Close, Padiham",0.5007 -13173,338494,56-58 Accrington Road Burnley Lancashire BB11 4AU,,, BB11 4AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Mar 2021,C - 69 to 80,73.0,B - 81 to 91,87.0,BB114AU,100010326521.0,"56-58 ACCRINGTON ROAD, BURNLEY",0.6665 -13319,341108,52 Accrington Road Burnley Lancashire BB11 4AU,,, BB11 4AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Sep 2021,C - 69 to 80,72.0,A - 92 Plus,92.0,BB114AU,100010326517.0,"52 ACCRINGTON ROAD, BURNLEY",0.6242 -13176,338012,31 Connaught Road Preston Lancashire PR1 8EX,,, PR1 8EX,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Jan 2020,D - 55 to 68,66.0,B - 81 to 91,82.0,PR18EX,100010540206.0,"31, Connaught Road",0.4737 -13177,343498,167 De Lacy Preston Lancashire PR2 2AP,,, PR2 2AP,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Sep 2019,D - 55 to 68,66.0,B - 81 to 91,82.0,PR22AP,100010541748.0,"167, De Lacy Street, Ashton-on-Ribble",0.3786 -13179,357120,133 De Lacy Preston Lancashire PR2 2AP,,, PR2 2AP,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Aug 2019,C - 69 to 80,72.0,B - 81 to 91,86.0,PR22AP,100010541731.0,"133, De Lacy Street, Ashton-on-Ribble",0.3786 -13178,367877,22 Colenso Road Preston Lancashire PR2 2LL,,, PR2 2LL,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Feb 2012,D - 55 to 68,63.0,D - 55 to 68,66.0,PR22LL,100010539797.0,"22, Colenso Road, Ashton-on-Ribble",0.4126 -13180,338510,97 Branch Road Burnley Lancashire BB11 3LY,,, BB11 3LY,House: End Terrace,Domestic EPC Required,EPC Present,07 Apr 2021,D - 55 to 68,63.0,B - 81 to 91,86.0,BB113LY,100010329600.0,"97 BRANCH ROAD, BURNLEY",0.6121 -13181,338267,123 Branch Road Burnley Lancashire BB11 3LY,,, BB11 3LY,House: End Terrace,Domestic EPC Required,EPC Present,10 Mar 2021,D - 55 to 68,64.0,B - 81 to 91,86.0,BB113LY,100010329625.0,"123 BRANCH ROAD, BURNLEY",0.6154 -13182,338561,89 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111455.0,"89 FLORENCE AVENUE, BURNLEY",0.6242 -13183,338560,91 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111456.0,"91 FLORENCE AVENUE, BURNLEY",0.6242 -13184,338559,93 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111457.0,"93 FLORENCE AVENUE, BURNLEY",0.6242 -13185,338558,95 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111458.0,"95 FLORENCE AVENUE, BURNLEY",0.6242 -13186,338556,99 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111460.0,"99 FLORENCE AVENUE, BURNLEY",0.6242 -13187,341888,101 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111461.0,"101 FLORENCE AVENUE, BURNLEY",0.6268 -13188,338555,103 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111462.0,"103 FLORENCE AVENUE, BURNLEY",0.6268 -13189,338554,105 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111463.0,"105 FLORENCE AVENUE, BURNLEY",0.6268 -13190,338553,107 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111464.0,"107 FLORENCE AVENUE, BURNLEY",0.6268 -13191,338552,109 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111465.0,"109 FLORENCE AVENUE, BURNLEY",0.6268 -13192,338551,111 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111466.0,"111 FLORENCE AVENUE, BURNLEY",0.6268 -13193,338562,100 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111467.0,"100 FLORENCE AVENUE, BURNLEY",0.6268 -13194,338563,102 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111468.0,"102 FLORENCE AVENUE, BURNLEY",0.6268 -13195,338564,104 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111469.0,"104 FLORENCE AVENUE, BURNLEY",0.6268 -13196,338565,106 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111470.0,"106 FLORENCE AVENUE, BURNLEY",0.6268 -13197,338566,108 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111471.0,"108 FLORENCE AVENUE, BURNLEY",0.6268 -13198,338567,110 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111472.0,"110 FLORENCE AVENUE, BURNLEY",0.6268 -13199,338568,112 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111473.0,"112 FLORENCE AVENUE, BURNLEY",0.6268 -13200,338569,114 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111474.0,"114 FLORENCE AVENUE, BURNLEY",0.6268 -13201,338570,116 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111475.0,"116 FLORENCE AVENUE, BURNLEY",0.6268 -13202,338571,118 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111476.0,"118 FLORENCE AVENUE, BURNLEY",0.6268 -13203,338572,120 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111477.0,"120 FLORENCE AVENUE, BURNLEY",0.6268 -13204,338573,122 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111478.0,"122 FLORENCE AVENUE, BURNLEY",0.6268 -13205,338557,97 Florence Avenue Burnley Lancashire BB11 5LL,,, BB11 5LL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,27 Oct 2020,B - 81 to 91,82.0,A - 92 Plus,97.0,BB115LL,10094111459.0,"97 FLORENCE AVENUE, BURNLEY",0.6242 -13212,336822,28 Fraser Street Burnley Lancashire BB10 1UL,,, BB10 1UL,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Aug 2014,D - 55 to 68,64.0,B - 81 to 91,81.0,BB101UL,100010339195.0,"28, Fraser Street",0.4652 -13435,352594,55 Fraser Street Burnley Lancashire BB10 1UL,,, BB10 1UL,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jun 2022,C - 69 to 80,74.0,B - 81 to 91,91.0,BB101UL,100010339215.0,55 Fraser Street,0.4652 -13253,341887,110 Station road Padiham Lancashire BB12 8FD,,, BB12 8FD,Flat: Top,Domestic EPC Required,EPC Present,15 Mar 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FD,10094111415.0,"110 STATION ROAD, PADIHAM",0.6185 -13254,338526,108 Station road Padiham Lancashire BB12 8FD,,, BB12 8FD,Flat: Bottom,Domestic EPC Required,EPC Present,15 Mar 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FD,10094111414.0,"108 STATION ROAD, PADIHAM",0.6185 -13255,338527,106 Station road Padiham Lancashire BB12 8FD,,, BB12 8FD,Flat: Top,Domestic EPC Required,EPC Present,15 Mar 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FD,10094111413.0,"106 STATION ROAD, PADIHAM",0.6185 -13256,338528,104 Station road Padiham Lancashire BB12 8FD,,, BB12 8FD,Flat: Bottom,Domestic EPC Required,EPC Present,15 Mar 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FD,10094111412.0,"104 STATION ROAD, PADIHAM",0.6185 -13257,338529,102 Station road Padiham Lancashire BB12 8FD,,, BB12 8FD,Flat: Top,Domestic EPC Required,EPC Present,15 Mar 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FD,10094111411.0,"102 STATION ROAD, PADIHAM",0.6185 -13258,338530,100 Station road Padiham Lancashire BB12 8FD,,, BB12 8FD,Flat: Bottom,Domestic EPC Required,EPC Present,15 Mar 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FD,10094111410.0,"100 STATION ROAD, PADIHAM",0.6185 -13259,338531,1 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,83.0,A - 92 Plus,97.0,BB128FE,10094111416.0,"1, CALDER GREEN APPROACH, PADIHAM",0.6709 -13260,338532,3 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,83.0,A - 92 Plus,97.0,BB128FE,10094111417.0,"3, CALDER GREEN APPROACH, PADIHAM",0.6709 -13261,338533,5 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,84.0,A - 92 Plus,96.0,BB128FE,10094111418.0,"5, CALDER GREEN APPROACH, PADIHAM",0.6709 -13262,338534,7 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,83.0,A - 92 Plus,97.0,BB128FE,10094111419.0,"7, CALDER GREEN APPROACH, PADIHAM",0.6709 -13263,338535,9 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Top,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FE,10094111420.0,"9, CALDER GREEN APPROACH, PADIHAM",0.6709 -13264,338536,11 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Bottom,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FE,10094111421.0,"11, CALDER GREEN APPROACH, PADIHAM",0.6729 -13265,338537,13 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Bottom,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FE,10094111422.0,"13, CALDER GREEN APPROACH, PADIHAM",0.6729 -13266,338538,15 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Top,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FE,10094111423.0,"15, CALDER GREEN APPROACH, PADIHAM",0.6729 -13267,338539,17 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Top,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FE,10094111424.0,"17, CALDER GREEN APPROACH, PADIHAM",0.6729 -13268,338540,19 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Bottom,Domestic EPC Required,EPC Present,22 Feb 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FE,10094111425.0,"19, CALDER GREEN APPROACH, PADIHAM",0.6729 -13269,338541,21 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Bottom,Domestic EPC Required,EPC Present,28 Feb 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FE,10094111426.0,"21, CALDER GREEN APPROACH, PADIHAM",0.6729 -13270,338542,23 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Top,Domestic EPC Required,EPC Present,28 Feb 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FE,10094111427.0,"23, CALDER GREEN APPROACH, PADIHAM",0.6729 -13271,338543,25 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Top,Domestic EPC Required,EPC Present,28 Feb 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FE,10094111428.0,"25, CALDER GREEN APPROACH, PADIHAM",0.6729 -13272,338544,27 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Bottom,Domestic EPC Required,EPC Present,28 Feb 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FE,10094111429.0,"27, CALDER GREEN APPROACH, PADIHAM",0.6729 -13273,338545,29 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Bottom,Domestic EPC Required,EPC Present,28 Feb 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FE,10094111430.0,"29, CALDER GREEN APPROACH, PADIHAM",0.6729 -13274,338546,31 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Top,Domestic EPC Required,EPC Present,28 Feb 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FE,10094111431.0,"31, CALDER GREEN APPROACH, PADIHAM",0.6729 -13275,338547,33 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Top,Domestic EPC Required,EPC Present,28 Feb 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FE,10094111432.0,"33, CALDER GREEN APPROACH, PADIHAM",0.6729 -13276,338548,35 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Bottom,Domestic EPC Required,EPC Present,28 Feb 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FE,10094111433.0,"35, CALDER GREEN APPROACH, PADIHAM",0.6729 -13277,338549,37 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Bottom,Domestic EPC Required,EPC Present,28 Feb 2021,B - 81 to 91,84.0,B - 81 to 91,84.0,BB128FE,10094111434.0,"37, CALDER GREEN APPROACH, PADIHAM",0.6729 -13278,338550,39 Calder Green Approach Padiham Lancashire BB12 8FE,,, BB12 8FE,Flat: Top,Domestic EPC Required,EPC Present,22 Apr 2021,B - 81 to 91,83.0,B - 81 to 91,83.0,BB128FE,10094111435.0,"39, CALDER GREEN APPROACH, PADIHAM",0.6729 -13280,338998,30 Sussex Street Burnley Lancashire BB11 3NQ,,, BB11 3NQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 May 2021,C - 69 to 80,72.0,B - 81 to 91,89.0,BB113NQ,100010357373.0,"30 SUSSEX STREET, BURNLEY",0.6185 -13308,343385,100 Springfield Road Burnley Lancashire BB11 3LR,,, BB11 3LR,House: End Terrace,Domestic EPC Required,EPC Present,01 Dec 2021,C - 69 to 80,71.0,B - 81 to 91,84.0,BB113LR,100010356384.0,100 Springfield Road,0.4845 -13311,340203,10 Junction Street Burnley Lancashire BB12 0LZ,,, BB12 0LZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Aug 2021,C - 69 to 80,73.0,A - 92 Plus,92.0,BB120LZ,100010344408.0,"10 Junction Street, Whittlefield",0.4437 -13314,341909,15 Hudson Street Burnley Lancashire BB11 4PL,,, BB11 4PL,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2021,C - 69 to 80,74.0,A - 92 Plus,92.0,BB114PL,100010343671.0,15 Hudson Street,0.4652 -13370,357204,17 Hudson Street Burnley Lancashire BB11 4PL,,, BB11 4PL,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Feb 2022,C - 69 to 80,74.0,A - 92 Plus,93.0,BB114PL,100010343673.0,17 Hudson Street,0.4652 -13316,342051,23 Bar Street Burnley Lancashire BB10 3BA,,, BB10 3BA,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Oct 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB103BA,100010328027.0,23 Bar Street,0.4471 -13610,359179,18 Bar Street Burnley Lancashire BB10 3BA,,, BB10 3BA,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Mar 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB103BA,100010328022.0,18 Bar Street,0.4471 -13322,339462,1 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,98.0,BB103FN,10094111761.0,1 Claret Close,0.4536 -13323,339463,2 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,98.0,BB103FN,10094111762.0,2 Claret Close,0.4536 -13324,339464,3 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,98.0,BB103FN,10094111763.0,3 Claret Close,0.4536 -13325,339465,4 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,98.0,BB103FN,10094111764.0,4 Claret Close,0.4536 -13326,339466,5 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,98.0,BB103FN,10094111765.0,5 Claret Close,0.4536 -13327,339467,6 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,99.0,BB103FN,10094111766.0,6 Claret Close,0.4536 -13328,339468,7 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,84.0,A - 92 Plus,98.0,BB103FN,10094111767.0,7 Claret Close,0.4536 -13329,339469,8 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,98.0,BB103FN,10094111768.0,8 Claret Close,0.4536 -13330,339470,9 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,98.0,BB103FN,10094111769.0,9 Claret Close,0.4536 -13331,339471,10 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,98.0,BB103FN,10094111770.0,10 Claret Close,0.4596 -13332,339472,11 Claret Close Burnley Lancashire BB10 3FN,,, BB10 3FN,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2021,B - 81 to 91,82.0,A - 92 Plus,98.0,BB103FN,10094111771.0,11 Claret Close,0.4596 -13335,343202,6 Kime Street Burnley Lancashire BB12 6RH,,, BB12 6RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2021,C - 69 to 80,73.0,A - 92 Plus,92.0,BB126RH,100010344712.0,6 Kime Street,0.4471 -13383,357127,18 Kime Street Burnley Lancashire BB12 6RH,,, BB12 6RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Apr 2022,C - 69 to 80,73.0,A - 92 Plus,93.0,BB126RH,100010344724.0,18 Kime Street,0.4536 -13699,358132,8 Kime Street Burnley Lancashire BB12 6RH,,, BB12 6RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Jun 2025,C - 69 to 80,70.0,B - 81 to 91,81.0,BB126RH,100010344714.0,8 Kime Street,0.4471 -13706,358353,26 Kime Street Burnley Lancashire BB12 6RH,,, BB12 6RH,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Aug 2015,C - 69 to 80,69.0,B - 81 to 91,91.0,BB126RH,100010344732.0,26 Kime Street,0.4536 -13348,343395,18 Violet Street Burnley Lancashire BB10 1PU,,, BB10 1PU,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Nov 2021,C - 69 to 80,73.0,B - 81 to 91,91.0,BB101PU,100010359560.0,18 Violet Street,0.4652 -13350,343573,14 Forest Street Burnley Lancashire BB11 2SA,,, BB11 2SA,House: End Terrace,Domestic EPC Required,EPC Present,29 Nov 2021,D - 55 to 68,64.0,B - 81 to 91,84.0,BB112SA,100010339117.0,14 Forest Street,0.4652 -13357,357124,69 Stockbridge Road Padiham Lancashire BB12 7EX,,, BB12 7EX,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Sep 2021,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127EX,100010357097.0,"69 Stockbridge Road, Padiham",0.6268 -13359,357158,4 Hollingreave Road Burnley Lancashire BB11 2JA,,, BB11 2JA,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Jan 2022,C - 69 to 80,69.0,B - 81 to 91,86.0,BB112JA,100010343115.0,4 Hollingreave Road,0.4801 -13363,357150,88 Lyndhurst Road Burnley Lancashire BB10 4DH,,, BB10 4DH,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Jan 2022,C - 69 to 80,70.0,B - 81 to 91,85.0,BB104DH,100010347530.0,88 Lyndhurst Road,0.4705 -13375,357146,12 Coultate Street Burnley Lancashire BB12 6RD,,, BB12 6RD,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2022,C - 69 to 80,73.0,B - 81 to 91,91.0,BB126RD,100010335976.0,12 Coultate Street,0.4754 -13376,357138,16 Coultate Street Burnley Lancashire BB12 6RD,,, BB12 6RD,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2022,C - 69 to 80,72.0,B - 81 to 91,91.0,BB126RD,100010335980.0,16 Coultate Street,0.4754 -13378,357143,2 Hallows Street Burnley Lancashire BB10 2AG,,, BB10 2AG,House: End Terrace,Domestic EPC Required,EPC Present,25 Mar 2022,C - 69 to 80,73.0,B - 81 to 91,88.0,BB102AG,10003758218.0,2 Hallows Street,0.4652 -13391,357132,78 Plumbe Street Burnley Lancashire BB11 3AW,,, BB11 3AW,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Mar 2022,C - 69 to 80,71.0,B - 81 to 91,88.0,BB113AW,100010352339.0,78 Plumbe Street,0.4652 -13393,362824,114 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: End Terrace,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114EL,10094112239.0,114 Accrington Road,0.4801 -13394,362825,120 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: End Terrace,Domestic EPC Required,EPC Present,28 Jan 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114EL,10094112242.0,120 Accrington Road,0.4801 -13395,362826,116 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: End Terrace,Domestic EPC Required,EPC Present,28 Jan 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114EL,10094112240.0,116 Accrington Road,0.4801 -13396,362827,122 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114EL,10094112243.0,122 Accrington Road,0.4801 -13397,362828,124 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2022,B - 81 to 91,83.0,A - 92 Plus,97.0,BB114EL,10094112244.0,124 Accrington Road,0.4801 -13398,362829,118 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Jan 2022,B - 81 to 91,84.0,A - 92 Plus,98.0,BB114EL,10094112241.0,118 Accrington Road,0.4801 -13399,362830,112 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114EL,10094112238.0,112 Accrington Road,0.4801 -13400,362831,110 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: End Terrace,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114EL,10094112237.0,110 Accrington Road,0.4801 -13401,362832,108 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114EL,10094112236.0,108 Accrington Road,0.4801 -13402,362833,106 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114EL,10094112235.0,106 Accrington Road,0.4801 -13403,362834,104 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: End Terrace,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114EL,10094112234.0,104 Accrington Road,0.4801 -13404,362835,102 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,98.0,BB114EL,10094112233.0,102 Accrington Road,0.4801 -13405,362836,100 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: End Terrace,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114EL,10094112232.0,100 Accrington Road,0.4801 -13406,362837,98 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114EL,10094112231.0,98 Accrington Road,0.4754 -13407,362838,96 Accrington Road Burnley Lancashire BB11 4EL,,, BB11 4EL,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,96.0,BB114EL,10094112230.0,96 Accrington Road,0.4754 -13408,362839,1 Hazelwood Walk BURNLEY Lancashire BB11 4EN,,, BB11 4EN,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114EN,10094112248.0,"1 Hazelwood Walk, Elmwood Street",0.4313 -13409,362840,3 Hazelwood Walk BURNLEY Lancashire BB11 4EN,,, BB11 4EN,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114EN,10094112250.0,"3 Hazelwood Walk, Elmwood Street",0.4313 -13410,362841,4 Hazelwood Walk BURNLEY Lancashire BB11 4EN,,, BB11 4EN,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114EN,10094112251.0,"4 Hazelwood Walk, Elmwood Street",0.4313 -13411,362842,2 Hazelwood Walk BURNLEY Lancashire BB11 4EN,,, BB11 4EN,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Jan 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114EN,10094112249.0,"2 Hazelwood Walk, Elmwood Street",0.4313 -13420,362851,11 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: End Terrace,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114BU,10094112265.0,11 Tay Street,0.4471 -13421,362852,13a Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BU,10094112271.0,13a Tay Street,0.506 -13422,362853,1 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114BU,10094112260.0,1 Tay Street,0.4401 -13423,362854,3 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114BU,10094112261.0,3 Tay Street,0.4401 -13424,362855,13 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: End Terrace,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BU,10094112266.0,13 Tay Street,0.4471 -13425,362856,5 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114BU,10094112262.0,5 Tay Street,0.4401 -13426,362857,7 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114BU,10094112263.0,7 Tay Street,0.4401 -13427,362858,9 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: End Terrace,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB114BU,10094112264.0,9 Tay Street,0.4401 -13428,362859,9A Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BU,10094112270.0,9a Tay Street,0.5 -13429,362860,19 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: End Terrace,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BU,10094112269.0,19 Tay Street,0.4471 -13430,362861,17A Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114BU,10094112272.0,17a Tay Street,0.506 -13431,362862,17 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: End Terrace,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BU,10094112268.0,17 Tay Street,0.4471 -13432,362863,15 Tay Street BURNLEY Lancashire BB11 4BU,,, BB11 4BU,House: End Terrace,Domestic EPC Required,EPC Present,23 Feb 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114BU,10094112267.0,15 Tay Street,0.4471 -13433,357193,16 Athol Street North BURNLEY Lancashire BB11 4BS,,, BB11 4BS,Flat: Top,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,82.0,B - 81 to 91,82.0,BB114BS,10094112245.0,16 Athol Street North,0.535 -13434,362864,18 Athol Street North BURNLEY Lancashire BB11 4BS,,, BB11 4BS,Flat: Bottom,Domestic EPC Required,EPC Present,10 Mar 2022,B - 81 to 91,82.0,B - 81 to 91,82.0,BB114BS,10094112246.0,18 Athol Street North,0.535 -13446,357207,15 Brush Street Burnley Lancashire BB11 5EL,,, BB11 5EL,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Jul 2022,C - 69 to 80,75.0,A - 92 Plus,92.0,BB115EL,100010331869.0,15 Brush Street,0.4596 -13458,367882,35 Monica Grove Levenshulme Greater Manchester M19 2BQ,,, M19 2BQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Apr 2024,D - 55 to 68,63.0,B - 81 to 91,85.0,M192BQ,77146770.0,35 Monica Grove,0.3959 -13462,367883,48 Monica Grove Levenshulme Greater Manchester M19 2BN,,, M19 2BN,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Sep 2021,C - 69 to 80,70.0,B - 81 to 91,87.0,M192BN,77146721.0,"48 Monica Grove, MANCHESTER",0.5525 -13484,355462,13 Mitchell Street Burnley Lancashire BB12 0HH,,, BB12 0HH,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Aug 2022,C - 69 to 80,72.0,B - 81 to 91,88.0,BB120HH,100010349046.0,13 Mitchell Street,0.4754 -13543,357822,11 Edith Street NELSON Lancashire BB9 9HU,,, BB9 9HU,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Dec 2022,C - 69 to 80,76.0,B - 81 to 91,90.0,BB99HU,61010561.0,11 Edith Street,0.4661 -13545,356972,27 Eliza Street Burnley Lancashire BB10 4AQ,,, BB10 4AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Oct 2022,C - 69 to 80,78.0,B - 81 to 91,91.0,BB104AQ,100010338166.0,27 Eliza Street,0.4596 -13911,384696,49 Eliza Street Burnley Lancashire BB10 4AQ,,, BB10 4AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Mar 2025,C - 69 to 80,73.0,B - 81 to 91,85.0,BB104AQ,100010338174.0,49 Eliza Street,0.4596 -13547,355019,40 Queensberry Road Burnley Lancashire BB11 4LH,,, BB11 4LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Aug 2022,C - 69 to 80,76.0,B - 81 to 91,90.0,BB114LH,100010353018.0,40 Queensberry Road,0.4801 -13550,351886,70 Todmorden Road Burnley Lancashire BB10 4AA,,, BB10 4AA,House: End Terrace,Domestic EPC Required,EPC Present,26 Jan 2011,E - 39 to 54,46.0,D - 55 to 68,65.0,BB104AA,100010358662.0,"70, Todmorden Road",0.4705 -13552,357195,46 Pritchard Street Burnley Lancashire BB11 4JY,,, BB11 4JY,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Oct 2022,B - 81 to 91,85.0,B - 81 to 91,88.0,BB114JY,100010352787.0,46 Pritchard Street,0.4801 -13554,356987,27 Grange Street Burnley Lancashire BB11 4JZ,,, BB11 4JZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2022,B - 81 to 91,84.0,B - 81 to 91,85.0,BB114JZ,100010340104.0,"27 GRANGE STREET, BURNLEY",0.6185 -13567,354575,27 Sycamore Avenue Burnley Lancashire BB12 6FA,,, BB12 6FA,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB126FA,10094112307.0,27 Sycamore Avenue,0.4754 -13568,354588,25 Sycamore Avenue Burnley Lancashire BB12 6FA,,, BB12 6FA,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB126FA,10094112306.0,25 Sycamore Avenue,0.4754 -13569,354598,23 Sycamore Avenue Burnley Lancashire BB12 6FA,,, BB12 6FA,House: End Terrace,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB126FA,10094112305.0,23 Sycamore Avenue,0.4754 -13570,354608,21 Sycamore Avenue Burnley Lancashire BB12 6FA,,, BB12 6FA,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB126FA,10094112304.0,21 Sycamore Avenue,0.4754 -13571,354618,19 Sycamore Avenue Burnley Lancashire BB12 6FA,,, BB12 6FA,House: End Terrace,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB126FA,10094112303.0,19 Sycamore Avenue,0.4754 -13619,357171,1 Sycamore Avenue Burnley Lancashire BB12 6FA,,, BB12 6FA,House: End Terrace,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB126FA,10094112300.0,1 Sycamore Avenue,0.4705 -13620,357166,3 Sycamore Avenue Burnley Lancashire BB12 6FA,,, BB12 6FA,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB126FA,10094112301.0,"3, Sycamore Avenue",0.4705 -13621,357153,5 Sycamore Avenue Burnley Lancashire BB12 6FA,,, BB12 6FA,House: End Terrace,Domestic EPC Required,EPC Present,05 Oct 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB126FA,10094112302.0,5 Sycamore Avenue,0.4705 -13572,354628,1 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB126EW,10023758847.0,1 Acorn Mews,0.4401 -13574,354638,2 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB126EW,10023758848.0,2 Acorn Mews,0.4401 -13575,354646,3 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB126EW,10023758849.0,3 Acorn Mews,0.4401 -13576,354656,4 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB126EW,10023758850.0,4 Acorn Mews,0.4401 -13577,354664,5 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Bottom,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,B - 81 to 91,83.0,BB126EW,10023758851.0,5 Acorn Mews,0.4401 -13578,354674,6 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Top,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,84.0,B - 81 to 91,84.0,BB126EW,10023758852.0,6 Acorn Mews,0.4401 -13579,354684,8 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Bottom,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,B - 81 to 91,83.0,BB126EW,10023758854.0,8 Acorn Mews,0.4401 -13580,354694,7 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Top,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,84.0,B - 81 to 91,84.0,BB126EW,10023758853.0,7 Acorn Mews,0.4401 -13581,354704,9 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Top,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,84.0,B - 81 to 91,84.0,BB126EW,10023758855.0,9 Acorn Mews,0.4401 -13582,354714,10 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Bottom,Domestic EPC Required,EPC Present,01 Aug 2022,B - 81 to 91,83.0,B - 81 to 91,83.0,BB126EW,10023758856.0,10 Acorn Mews,0.4471 -13622,362895,11 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: End Terrace,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB126EW,10023758857.0,11 Acorn Mews,0.4471 -13623,362896,12 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB126EW,10023758858.0,12 Acorn Mews,0.4471 -13624,362897,13 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB126EW,10094112292.0,13 Acorn Mews,0.4471 -13625,362898,14 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB126EW,10023758859.0,14 Acorn Mews,0.4471 -13626,362899,15 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,84.0,A - 92 Plus,97.0,BB126EW,10023758860.0,15 Acorn Mews,0.4471 -13627,362900,16 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: End Terrace,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB126EW,10023758861.0,16 Acorn Mews,0.4471 -13628,362901,17 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB126EW,10023758862.0,17 Acorn Mews,0.4471 -13629,362902,18 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB126EW,10023758863.0,18 Acorn Mews,0.4471 -13630,362903,19 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,83.0,A - 92 Plus,96.0,BB126EW,10023758864.0,19 Acorn Mews,0.4471 -13631,362904,20 Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Oct 2022,B - 81 to 91,83.0,A - 92 Plus,95.0,BB126EW,10023758865.0,20 Acorn Mews,0.4471 -13686,362937,Flat 1 Oakfield House Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Bottom,Domestic EPC Required,EPC Present,11 Nov 2022,B - 81 to 91,83.0,B - 81 to 91,83.0,BB126EW,10094112294.0,"Flat 1, Oakfield House, Acorn Mews",0.6335 -13687,362938,Flat 2 Oakfield House Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Bottom,Domestic EPC Required,EPC Present,11 Nov 2022,B - 81 to 91,83.0,B - 81 to 91,83.0,BB126EW,10094112295.0,"Flat 2, Oakfield House, Acorn Mews",0.6335 -13688,362939,Flat 3 Oakfield House Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Bottom,Domestic EPC Required,EPC Present,11 Nov 2022,B - 81 to 91,83.0,B - 81 to 91,83.0,BB126EW,10094112296.0,"Flat 3, Oakfield House, Acorn Mews",0.6335 -13689,362940,Flat 4 Oakfield House Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Top,Domestic EPC Required,EPC Present,11 Nov 2022,B - 81 to 91,83.0,B - 81 to 91,83.0,BB126EW,10094112297.0,"Flat 4, Oakfield House, Acorn Mews",0.6335 -13690,362941,Flat 5 Oakfield House Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Top,Domestic EPC Required,EPC Present,11 Nov 2022,B - 81 to 91,83.0,B - 81 to 91,83.0,BB126EW,10094112298.0,"Flat 5, Oakfield House, Acorn Mews",0.6335 -13691,362942,Flat 6 Oakfield House Acorn Mews Burnley Lancashire BB12 6EW,,, BB12 6EW,Flat: Top,Domestic EPC Required,EPC Present,11 Nov 2022,B - 81 to 91,83.0,B - 81 to 91,83.0,BB126EW,10094112299.0,"Flat 6, Oakfield House, Acorn Mews",0.6335 -13584,357048,14 Tabor Street Burnley Lancashire BB12 0HF,,, BB12 0HF,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Oct 2022,C - 69 to 80,74.0,B - 81 to 91,87.0,BB120HF,100010357705.0,14 Tabor Street,0.4596 -13601,358857,81 Dall Street Burnley Lancashire BB11 3LF,,, BB11 3LF,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2022,C - 69 to 80,72.0,B - 81 to 91,86.0,BB113LF,100010336792.0,81 Dall Street,0.4536 -13684,359150,90 Dall Street Burnley Lancashire BB11 3LF,,, BB11 3LF,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Feb 2023,C - 69 to 80,71.0,B - 81 to 91,84.0,BB113LF,100010336801.0,90 Dall Street,0.4536 -13604,357597,65 Reed Street Burnley Lancashire BB11 3LE,,, BB11 3LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Nov 2022,C - 69 to 80,78.0,B - 81 to 91,91.0,BB113LE,,, -13609,359014,20 Colville Street Burnley Lancashire BB10 1LY,,, BB10 1LY,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Dec 2022,C - 69 to 80,77.0,B - 81 to 91,90.0,BB101LY,100010335605.0,20 Colville Street,0.4754 -13636,358892,17 Arran Street Burnley Lancashire BB11 4BW,,, BB11 4BW,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Feb 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB114BW,100010327625.0,17 Arran Street,0.4596 -13754,362957,7 Arran Street Burnley Lancashire BB11 4BW,,, BB11 4BW,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Aug 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB114BW,100010327615.0,7 Arran Street,0.4536 -13694,357938,11 Wytham Street Padiham Lancashire England BB12 7DX,,, BB12 7DX,House: End Terrace,Domestic EPC Required,EPC Present,20 Mar 2020,D - 55 to 68,63.0,B - 81 to 91,88.0,BB127DX,100010361676.0,"11, Wytham Street, Padiham",0.5461 -13882,382492,25 Wytham Street Burnley Lancashire BB12 7DX,,, BB12 7DX,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Oct 2024,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127DX,100010361683.0,"25 Wytham Street, Padiham",0.4393 -13695,359402,7 Colbran Street Burnley Lancashire BB10 3DP,,, BB10 3DP,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Mar 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB103DP,100010335187.0,"7 COLBRAN STREET, BURNLEY",0.6185 -13700,358173,10 Dickson Street Burnley Lancashire BB12 6QQ,,, BB12 6QQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2017,C - 69 to 80,76.0,A - 92 Plus,92.0,BB126QQ,100010337376.0,"10, Dickson Street",0.4705 -13766,360290,1 Dickson Street Burnley Lancashire BB12 6QQ,,, BB12 6QQ,House: End Terrace,Domestic EPC Required,EPC Present,06 Jun 2023,D - 55 to 68,64.0,B - 81 to 91,85.0,BB126QQ,100010337370.0,1 Dickson Street,0.4652 -13702,362943,11 Randall Street Burnley Lancashire BB10 1SR,,, BB10 1SR,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,70.0,B - 81 to 91,88.0,BB101SR,100010353168.0,11 Randall Street,0.4705 -13705,358322,18 Rawson Street Burnley Lancashire BB10 1SJ,,, BB10 1SJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 May 2016,C - 69 to 80,70.0,B - 81 to 91,89.0,BB101SJ,100010353231.0,"18, Rawson Street",0.4652 -13708,362945,34 Brennand Street Burnley Lancashire BB10 1SQ,,, BB10 1SQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 May 2014,C - 69 to 80,75.0,B - 81 to 91,91.0,BB101SQ,100010329822.0,"34, Brennand Street",0.4754 -13712,362947,65 Brennand Street Burnley Lancashire BB10 1SQ,,, BB10 1SQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Jul 2013,C - 69 to 80,74.0,B - 81 to 91,88.0,BB101SQ,100010329851.0,"65, Brennand Street",0.4754 -13713,358578,67 Gannow Lane Burnley Lancashire BB12 6QD,,, BB12 6QD,House: End Terrace,Domestic EPC Required,EPC Present,24 Jan 2017,C - 69 to 80,71.0,B - 81 to 91,84.0,BB126QD,100010339329.0,"67, Gannow Lane",0.4536 -13715,358643,91 Gannow Lane Burnley Lancashire BB12 6QH,,, BB12 6QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Feb 2016,C - 69 to 80,74.0,B - 81 to 91,88.0,BB126QH,100010339349.0,"91, Gannow Lane",0.4536 -13716,358651,103 Gannow Lane Burnley Lancashire BB12 6QH,,, BB12 6QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Apr 2015,C - 69 to 80,74.0,B - 81 to 91,90.0,BB126QH,100010339361.0,"103, Gannow Lane",0.4596 -13717,362949,114 Gannow Lane Burnley Lancashire BB12 6QH,,, BB12 6QH,House: End Terrace,Domestic EPC Required,EPC Present,20 Jul 2015,D - 55 to 68,63.0,B - 81 to 91,87.0,BB126QH,100012538299.0,"114, Gannow Lane",0.4596 -13718,362950,118 Gannow Lane Burnley Lancashire BB12 6QH,,, BB12 6QH,House: End Terrace,Domestic EPC Required,EPC Present,25 Feb 2026,C - 69 to 80,73.0,B - 81 to 91,90.0,BB126QH,100010339374.0,"118, Gannow Lane",0.4596 -13719,362951,124 Gannow Lane Burnley Lancashire BB12 6QH,,, BB12 6QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB126QH,100010339377.0,124 Gannow Lane,0.4596 -13720,358778,126 Gannow Lane Burnley Lancashire BB12 6QH,,, BB12 6QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Dec 2015,C - 69 to 80,71.0,B - 81 to 91,89.0,BB126QH,100010339378.0,"126, Gannow Lane",0.4596 -13721,362952,134 Gannow Lane Burnley Lancashire BB12 6QH,,, BB12 6QH,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Feb 2015,C - 69 to 80,74.0,B - 81 to 91,90.0,BB126QH,100010339382.0,"134, Gannow Lane",0.4596 -13722,359946,1 Linden Street Burnley Lancashire BB10 4EQ,,, BB10 4EQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 May 2023,C - 69 to 80,72.0,B - 81 to 91,84.0,BB104EQ,100010346115.0,1 Linden Street,0.4596 -13723,359951,1 Mitella Street Burnley Lancashire BB10 4DS,,, BB10 4DS,House: End Terrace,Domestic EPC Required,EPC Present,23 May 2023,C - 69 to 80,69.0,B - 81 to 91,83.0,BB104DS,100010349052.0,1 Mitella Street,0.4652 -13730,359975,5 Woodbine Road Burnley Lancashire BB12 6RE,,, BB12 6RE,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jun 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB126RE,100010361338.0,"5 WOODBINE ROAD, BURNLEY",0.6154 -13732,359937,40 Burdett Street Burnley Lancashire BB11 5AP,,, BB11 5AP,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 May 2023,C - 69 to 80,71.0,B - 81 to 91,84.0,BB115AP,100010331943.0,40 Burdett Street,0.4705 -13733,359980,14 Clare Street Burnley Lancashire BB11 4AT,,, BB11 4AT,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jun 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB114AT,100010333901.0,14 Clare Street,0.4596 -13750,362955,12 Clare Street Burnley Lancashire BB11 4AT,,, BB11 4AT,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Jul 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB114AT,100010333900.0,"12 CLARE STREET, BURNLEY",0.6154 -13737,362953,35 Rosegrove Lane Burnley Lancashire BB12 6HX,,, BB12 6HX,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jul 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB126HX,100010354387.0,35 Rosegrove Lane,0.4705 -13745,362954,137 Ormerod Road Burnley Lancashire BB10 3AA,,, BB10 3AA,House: Detached,Domestic EPC Required,EPC Present,24 Apr 2024,D - 55 to 68,58.0,C - 69 to 80,75.0,BB103AA,100010350647.0,137 Ormerod Road,0.4652 -13756,359994,36 Tunnel Street Burnley Lancashire BB12 0NN,,, BB12 0NN,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Mar 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB120NN,100010359011.0,36 Tunnel Street,0.4652 -13834,379109,(Tree House) 31 Tunnel Street Burnley Lancashire BB12 0NN,,, BB12 0NN,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Jul 2015,D - 55 to 68,64.0,B - 81 to 91,85.0,BB120NN,100010359007.0,"31, Tunnel Street",0.3744 -13768,368815,4 Cardinal Street Burnley Lancashire BB10 1RU,,, BB10 1RU,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB101RU,100010332884.0,"4 CARDINAL STREET, BURNLEY",0.6214 -13769,368813,8 Emily Street Burnley Lancashire BB11 2HR,,, BB11 2HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB112HR,100010338319.0,8 Emily Street,0.4536 -13773,368817,79 Springfield Road Burnley Lancashire BB11 2JB,,, BB11 2JB,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,90.0,BB112JB,100010356375.0,79 Springfield Road,0.4801 -13798,372094,Flat 1 125 Walmersley Road BURY GREATER MANCHESTER BL9 5AY,,, BL9 5AY,Flat: Bottom,Domestic EPC Required,EPC Present,05 Aug 2025,C - 69 to 80,74.0,C - 69 to 80,76.0,BL95AY,100012564480.0,"FLAT 1, 125 WALMERSLEY ROAD",0.5417 -13799,372099,Flat 2 125 Walmersley Road BURY GREATER MANCHESTER BL9 5AY,,, BL9 5AY,Flat: Bottom,Domestic EPC Required,EPC Present,05 Aug 2025,C - 69 to 80,73.0,C - 69 to 80,75.0,BL95AY,100012564481.0,"FLAT 2, 125 WALMERSLEY ROAD",0.5417 -13886,383207,10 Swindon Street Burnley Lancashire BB11 4PF,,, BB11 4PF,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Dec 2024,C - 69 to 80,72.0,B - 81 to 91,86.0,BB114PF,100010357482.0,10 Swindon Street,0.4705 -13909,384695,14 Graham Street Padiham Lancashire BB12 8RW,,, BB12 8RW,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Mar 2025,C - 69 to 80,73.0,B - 81 to 91,88.0,BB128RW,100010340046.0,"14 Graham Street, Padiham",0.6185 -13913,386949,16 Lark Street Burnley Lancashire BB12 0HJ,,, BB12 0HJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Nov 2022,D - 55 to 68,63.0,B - 81 to 91,85.0,BB120HJ,100010345559.0,16 Lark Street,0.4536 -13915,388182,174 Russell Terrace Padiham Lancashire BB12 7EP,,, BB12 7EP,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Apr 2025,C - 69 to 80,69.0,B - 81 to 91,84.0,BB127EP,10003759568.0,"174 Russell Terrace, Padiham",0.6268 -13920,394757,Apartment 9 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112775.0,"Apartment 9, Dovestone Gardens, Briercliffe Road",0.6085 -13921,394680,Apartment 2 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112768.0,"Apartment 2, Dovestone Gardens, Briercliffe Road",0.6085 -13922,394724,Apartment 6 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112772.0,"Apartment 6, Dovestone Gardens, Briercliffe Road",0.6085 -13923,394691,Apartment 3 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,83.0,B - 81 to 91,83.0,BB101BB,10094112769.0,"Apartment 3, Dovestone Gardens, Briercliffe Road",0.6085 -13924,394670,Apartment 10 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,84.0,B - 81 to 91,84.0,BB101BB,10094112776.0,"Apartment 10, Dovestone Gardens, Briercliffe Road",0.6102 -13925,394702,Apartment 4 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,81.0,B - 81 to 91,81.0,BB101BB,10094112770.0,"Apartment 4, Dovestone Gardens, Briercliffe Road",0.6085 -13926,394735,Apartment 7 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112773.0,"Apartment 7, Dovestone Gardens, Briercliffe Road",0.6085 -13927,394713,Apartment 5 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,84.0,B - 81 to 91,84.0,BB101BB,10094112771.0,"Apartment 5, Dovestone Gardens, Briercliffe Road",0.6085 -13928,394669,Apartment 1 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112767.0,"Apartment 1, Dovestone Gardens, Briercliffe Road",0.6085 -13929,394746,Apartment 8 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,84.0,B - 81 to 91,84.0,BB101BB,10094112774.0,"Apartment 8, Dovestone Gardens, Briercliffe Road",0.6085 -13930,394671,Apartment 11 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,84.0,B - 81 to 91,84.0,BB101BB,10094112777.0,"Apartment 11, Dovestone Gardens, Briercliffe Road",0.6102 -13931,394672,Apartment 12 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,C - 69 to 80,80.0,C - 69 to 80,80.0,BB101BB,10094112778.0,"Apartment 12, Dovestone Gardens, Briercliffe Road",0.6102 -13932,394673,Apartment 13 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,82.0,B - 81 to 91,82.0,BB101BB,10094112779.0,"Apartment 13, Dovestone Gardens, Briercliffe Road",0.6102 -13933,394674,Apartment 14 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112780.0,"Apartment 14, Dovestone Gardens, Briercliffe Road",0.6102 -13934,394675,Apartment 15 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112781.0,"Apartment 15, Dovestone Gardens, Briercliffe Road",0.6102 -13935,394676,Apartment 16 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112782.0,"Apartment 16, Dovestone Gardens, Briercliffe Road",0.6102 -13936,394677,Apartment 17 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112783.0,"Apartment 17, Dovestone Gardens, Briercliffe Road",0.6102 -13937,394678,Apartment 18 (GF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Bottom,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112784.0,"Apartment 18, Dovestone Gardens, Briercliffe Road",0.6102 -13938,394679,Apartment 19 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112785.0,"Apartment 19, Dovestone Gardens, Briercliffe Road",0.6102 -13939,394681,Apartment 20 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112786.0,"Apartment 20, Dovestone Gardens, Briercliffe Road",0.6102 -13940,394682,Apartment 21 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,87.0,B - 81 to 91,87.0,BB101BB,10094112787.0,"Apartment 21, Dovestone Gardens, Briercliffe Road",0.6102 -13941,394683,Apartment 22 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112788.0,"Apartment 22, Dovestone Gardens, Briercliffe Road",0.6102 -13942,394684,Apartment 23 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112789.0,"Apartment 23, Dovestone Gardens, Briercliffe Road",0.6102 -13943,394685,Apartment 24 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112790.0,"Apartment 24, Dovestone Gardens, Briercliffe Road",0.6102 -13944,394688,Apartment 27 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112793.0,"Apartment 27, Dovestone Gardens, Briercliffe Road",0.6102 -13945,394689,Apartment 28 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112794.0,"Apartment 28, Dovestone Gardens, Briercliffe Road",0.6102 -13946,394690,Apartment 29 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112795.0,"Apartment 29, Dovestone Gardens, Briercliffe Road",0.6102 -13947,394692,Apartment 30 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112796.0,"Apartment 30, Dovestone Gardens, Briercliffe Road",0.6102 -13948,394693,Apartment 31 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112797.0,"Apartment 31, Dovestone Gardens, Briercliffe Road",0.6102 -13949,394694,Apartment 32 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112798.0,"Apartment 32, Dovestone Gardens, Briercliffe Road",0.6102 -13950,394695,Apartment 33 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112799.0,"Apartment 33, Dovestone Gardens, Briercliffe Road",0.6102 -13951,394696,Apartment 34 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112800.0,"Apartment 34, Dovestone Gardens, Briercliffe Road",0.6102 -13952,394697,Apartment 35 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112801.0,"Apartment 35, Dovestone Gardens, Briercliffe Road",0.6102 -13953,394698,Apartment 36 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112802.0,"Apartment 36, Dovestone Gardens, Briercliffe Road",0.6102 -13954,394699,Apartment 37 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112803.0,"Apartment 37, Dovestone Gardens, Briercliffe Road",0.6102 -13955,394700,Apartment 38 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112804.0,"Apartment 38, Dovestone Gardens, Briercliffe Road",0.6102 -13956,394701,Apartment 39 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112805.0,"Apartment 39, Dovestone Gardens, Briercliffe Road",0.6102 -13957,394703,Apartment 40 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112806.0,"Apartment 40, Dovestone Gardens, Briercliffe Road",0.6102 -13958,394706,Apartment 43 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112809.0,"Apartment 43, Dovestone Gardens, Briercliffe Road",0.6102 -13959,394686,Apartment 25 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112791.0,"Apartment 25, Dovestone Gardens, Briercliffe Road",0.6102 -13960,394687,Apartment 26 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112792.0,"Apartment 26, Dovestone Gardens, Briercliffe Road",0.6102 -13961,394704,Apartment 41 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112807.0,"Apartment 41, Dovestone Gardens, Briercliffe Road",0.6102 -13962,394707,Apartment 44 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112810.0,"Apartment 44, Dovestone Gardens, Briercliffe Road",0.6102 -13963,394705,Apartment 42 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,87.0,B - 81 to 91,87.0,BB101BB,10094112808.0,"Apartment 42, Dovestone Gardens, Briercliffe Road",0.6102 -13964,394708,Apartment 45 (FF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112811.0,"Apartment 45, Dovestone Gardens, Briercliffe Road",0.6102 -13965,394709,Apartment 46 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112812.0,"Apartment 46, Dovestone Gardens, Briercliffe Road",0.6102 -13966,394710,Apartment 47 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112813.0,"Apartment 47, Dovestone Gardens, Briercliffe Road",0.6102 -13967,394711,Apartment 48 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,83.0,B - 81 to 91,83.0,BB101BB,10094112814.0,"Apartment 48, Dovestone Gardens, Briercliffe Road",0.6102 -13968,394712,Apartment 49 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,81.0,B - 81 to 91,81.0,BB101BB,10094112815.0,"Apartment 49, Dovestone Gardens, Briercliffe Road",0.6102 -13969,394714,Apartment 50 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,84.0,B - 81 to 91,84.0,BB101BB,10094112816.0,"Apartment 50, Dovestone Gardens, Briercliffe Road",0.6102 -13970,394715,Apartment 51 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112817.0,"Apartment 51, Dovestone Gardens, Briercliffe Road",0.6102 -13971,394718,Apartment 54 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112820.0,"Apartment 54, Dovestone Gardens, Briercliffe Road",0.6102 -13972,394719,Apartment 55 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112821.0,"Apartment 55, Dovestone Gardens, Briercliffe Road",0.6102 -13973,394720,Apartment 56 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112822.0,"Apartment 56, Dovestone Gardens, Briercliffe Road",0.6102 -13974,394721,Apartment 57 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112823.0,"Apartment 57, Dovestone Gardens, Briercliffe Road",0.6102 -13975,394722,Apartment 58 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112824.0,"Apartment 58, Dovestone Gardens, Briercliffe Road",0.6102 -13976,394723,Apartment 59 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112825.0,"Apartment 59, Dovestone Gardens, Briercliffe Road",0.6102 -13977,394725,Apartment 60 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112826.0,"Apartment 60, Dovestone Gardens, Briercliffe Road",0.6102 -13978,394726,Apartment 61 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112827.0,"Apartment 61, Dovestone Gardens, Briercliffe Road",0.6102 -13979,394727,Apartment 62 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112828.0,"Apartment 62, Dovestone Gardens, Briercliffe Road",0.6102 -13980,394728,Apartment 63 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112829.0,"Apartment 63, Dovestone Gardens, Briercliffe Road",0.6102 -13981,394729,Apartment 64 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112830.0,"Apartment 64, Dovestone Gardens, Briercliffe Road",0.6102 -13982,394730,Apartment 65 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112831.0,"Apartment 65, Dovestone Gardens, Briercliffe Road",0.6102 -13983,394731,Apartment 66 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112832.0,"Apartment 66, Dovestone Gardens, Briercliffe Road",0.6102 -13984,394732,Apartment 67 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112833.0,"Apartment 67, Dovestone Gardens, Briercliffe Road",0.6102 -13985,394736,Apartment 70 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112836.0,"Apartment 70, Dovestone Gardens, Briercliffe Road",0.6102 -13986,394716,Apartment 52 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112818.0,"Apartment 52, Dovestone Gardens, Briercliffe Road",0.6102 -13987,394717,Apartment 53 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112819.0,"Apartment 53, Dovestone Gardens, Briercliffe Road",0.6102 -13988,394733,Apartment 68 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,82.0,B - 81 to 91,82.0,BB101BB,10094112834.0,"Apartment 68, Dovestone Gardens, Briercliffe Road",0.6102 -13989,394737,Apartment 71 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112837.0,"Apartment 71, Dovestone Gardens, Briercliffe Road",0.6102 -13990,394734,Apartment 69 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,83.0,B - 81 to 91,83.0,BB101BB,10094112835.0,"Apartment 69, Dovestone Gardens, Briercliffe Road",0.6102 -13991,394738,Apartment 72 (SF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,88.0,B - 81 to 91,88.0,BB101BB,10094112838.0,"Apartment 72, Dovestone Gardens, Briercliffe Road",0.6102 -13992,394739,Apartment 73 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112839.0,"Apartment 73, Dovestone Gardens, Briercliffe Road",0.6102 -13993,394740,Apartment 74 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,83.0,B - 81 to 91,83.0,BB101BB,10094112840.0,"Apartment 74, Dovestone Gardens, Briercliffe Road",0.6102 -13994,394743,Apartment 77 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112843.0,"Apartment 77, Dovestone Gardens, Briercliffe Road",0.6102 -13995,394744,Apartment 78 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,84.0,B - 81 to 91,84.0,BB101BB,10094112844.0,"Apartment 78, Dovestone Gardens, Briercliffe Road",0.6102 -13996,394745,Apartment 79 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112845.0,"Apartment 79, Dovestone Gardens, Briercliffe Road",0.6102 -13997,394748,Apartment 81 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112847.0,"Apartment 81, Dovestone Gardens, Briercliffe Road",0.6102 -13998,394747,Apartment 80 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112846.0,"Apartment 80, Dovestone Gardens, Briercliffe Road",0.6102 -13999,394749,Apartment 82 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,81.0,B - 81 to 91,81.0,BB101BB,10094112848.0,"Apartment 82, Dovestone Gardens, Briercliffe Road",0.6102 -14000,394750,Apartment 83 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,83.0,B - 81 to 91,83.0,BB101BB,10094112849.0,"Apartment 83, Dovestone Gardens, Briercliffe Road",0.6102 -14001,394751,Apartment 84 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112850.0,"Apartment 84, Dovestone Gardens, Briercliffe Road",0.6102 -14002,394752,Apartment 85 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112851.0,"Apartment 85, Dovestone Gardens, Briercliffe Road",0.6102 -14003,394753,Apartment 86 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112852.0,"Apartment 86, Dovestone Gardens, Briercliffe Road",0.6102 -14004,394755,Apartment 88 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112854.0,"Apartment 88, Dovestone Gardens, Briercliffe Road",0.6102 -14005,394754,Apartment 87 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112853.0,"Apartment 87, Dovestone Gardens, Briercliffe Road",0.6102 -14006,394756,Apartment 89 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112855.0,"Apartment 89, Dovestone Gardens, Briercliffe Road",0.6102 -14007,394759,Apartment 91 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112857.0,"Apartment 91, Dovestone Gardens, Briercliffe Road",0.6102 -14008,394758,Apartment 90 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,84.0,B - 81 to 91,84.0,BB101BB,10094112856.0,"Apartment 90, Dovestone Gardens, Briercliffe Road",0.6102 -14009,394741,Apartment 75 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112841.0,"Apartment 75, Dovestone Gardens, Briercliffe Road",0.6102 -14010,394742,Apartment 76 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,85.0,B - 81 to 91,85.0,BB101BB,10094112842.0,"Apartment 76, Dovestone Gardens, Briercliffe Road",0.6102 -14011,394760,Apartment 92 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112858.0,"Apartment 92, Dovestone Gardens, Briercliffe Road",0.6102 -14012,394761,Apartment 93 (TF) Dovestone Gardens Briercliffe Road Burnley Lancashire BB10 1BB,,, BB10 1BB,Flat: Middle,Domestic EPC Required,EPC Present,15 Apr 2025,B - 81 to 91,86.0,B - 81 to 91,86.0,BB101BB,10094112859.0,"Apartment 93, Dovestone Gardens, Briercliffe Road",0.6102 -14016,388324,132A Walmersley Road BURY Lancashire BL9 6DX,,, BL9 6DX,Flat: Bottom,Domestic EPC Required,EPC Present,30 Mar 2024,C - 69 to 80,75.0,C - 69 to 80,75.0,BL96DX,4210016920.0,"FLAT 132A, 132 WALMERSLEY ROAD, BURY",0.5886 -14017,388340,132B Walmersley Road BURY Lancashire BL9 6DX,,, BL9 6DX,Flat: Bottom,Domestic EPC Required,EPC Present,01 Apr 2024,C - 69 to 80,72.0,C - 69 to 80,78.0,BL96DX,4210016921.0,132b Walmersley Road,0.5477 -14018,388360,132C Walmersley Road BURY Lancashire BL9 6DX,,, BL9 6DX,Flat: Top,Domestic EPC Required,EPC Present,01 Apr 2024,C - 69 to 80,74.0,C - 69 to 80,79.0,BL96DX,4210016922.0,132c Walmersley Road,0.5477 -14019,388380,132D Walmersley Road BURY Lancashire BL9 6DX,,, BL9 6DX,Flat: Top,Domestic EPC Required,EPC Present,01 Apr 2024,C - 69 to 80,71.0,C - 69 to 80,77.0,BL96DX,4210016923.0,132d Walmersley Road,0.5477 -2813,111202,61 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Apr 2018,C - 69 to 80,69.0,B - 81 to 91,83.0,BB114DW,100010326830.0,"61, Airdrie Crescent",0.4801 -3350,224358,72 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Apr 2014,C - 69 to 80,69.0,B - 81 to 91,84.0,BB114DW,100010326837.0,"72, Airdrie Crescent",0.4801 -9618,89266,2 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Jul 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB114DW,100010326828.0,2 Airdrie Crescent,0.4754 -13781,369302,47 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112698.0,47 Airdrie Crescent,0.4801 -13782,369305,45 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112697.0,45 Airdrie Crescent,0.4801 -13783,369309,43 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112696.0,43 Airdrie Crescent,0.4801 -13784,369313,41 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112695.0,41 Airdrie Crescent,0.4801 -13785,369317,39 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jun 2023,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112694.0,39 Airdrie Crescent,0.4801 -13786,369321,37 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112693.0,37 Airdrie Crescent,0.4801 -13787,369325,35 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112692.0,35 Airdrie Crescent,0.4801 -13788,369329,33 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112691.0,33 Airdrie Crescent,0.4801 -13789,369333,31 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jun 2023,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112690.0,31 Airdrie Crescent,0.4801 -13790,369337,29 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112689.0,29 Airdrie Crescent,0.4801 -13791,369341,27 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112688.0,27 Airdrie Crescent,0.4801 -13792,369345,25 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2023,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112687.0,25 Airdrie Crescent,0.4801 -13793,369349,23 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112686.0,23 Airdrie Crescent,0.4801 -13794,369353,49 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112699.0,49 Airdrie Crescent,0.4801 -13795,369357,51 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112700.0,51 Airdrie Crescent,0.4801 -13883,381203,53 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Apr 2024,A - 92 Plus,95.0,A - 92 Plus,97.0,BB114DW,10094112701.0,53 Airdrie Crescent,0.4801 -13891,382526,55 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Oct 2024,A - 92 Plus,94.0,A - 92 Plus,95.0,BB114DW,10094112702.0,55 Airdrie Crescent,0.4801 -13892,382543,57 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Oct 2024,A - 92 Plus,94.0,A - 92 Plus,95.0,BB114DW,10094112703.0,57 Airdrie Crescent,0.4801 -13893,382554,59 Airdrie Crescent Burnley Lancashire BB11 4DW,,, BB11 4DW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,02 Oct 2024,A - 92 Plus,93.0,A - 92 Plus,95.0,BB114DW,10094112704.0,59 Airdrie Crescent,0.4801 -2819,230177,2 Mount Crescent Cliviger Burnley Lancashire BB10 4TN,,, BB10 4TN,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2025,C - 69 to 80,79.0,A - 92 Plus,116.0,BB104TN,100010349628.0,"2 Mount Crescent, Cliviger",0.5494 -2922,187828,4 Mount Crescent Cliviger Burnley Lancashire BB10 4TN,,, BB10 4TN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Sep 2012,C - 69 to 80,70.0,A - 92 Plus,96.0,BB104TN,100010349629.0,"4, Mount Crescent, Cliviger",0.5494 -3019,324906,6 Mount Crescent Cliviger Burnley Lancashire BB10 4TN,,, BB10 4TN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,02 Dec 2019,C - 69 to 80,73.0,A - 92 Plus,92.0,BB104TN,100010349630.0,"6, Mount Crescent, Cliviger",0.5494 -3116,324904,8 Mount Crescent Cliviger Burnley Lancashire BB10 4TN,,, BB10 4TN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,02 Dec 2019,C - 69 to 80,70.0,A - 92 Plus,92.0,BB104TN,100010349631.0,"8, Mount Crescent, Cliviger",0.5494 -3210,250067,10 Mount Crescent Cliviger Burnley Lancashire BB10 4TN,,, BB10 4TN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Mar 2025,B - 81 to 91,81.0,A - 92 Plus,117.0,BB104TN,100010349632.0,"10 Mount Crescent, Cliviger",0.5525 -3307,324905,12 Mount Crescent Cliviger Burnley Lancashire BB10 4TN,,, BB10 4TN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,02 Dec 2019,C - 69 to 80,73.0,A - 92 Plus,92.0,BB104TN,100010349633.0,"12, Mount Crescent, Cliviger",0.5525 -3406,40807,14 Mount Crescent Cliviger Burnley Lancashire BB10 4TN,,, BB10 4TN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Oct 2008,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104TN,100010349634.0,"14, Mount Crescent, Cliviger",0.5525 -3510,221659,16 Mount Crescent Cliviger Burnley Lancashire BB10 4TN,,, BB10 4TN,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,69.0,A - 92 Plus,94.0,BB104TN,100010349635.0,"16, Mount Crescent, Cliviger",0.5525 -3618,240377,18 Mount Crescent Cliviger Burnley Lancashire BB10 4TN,,, BB10 4TN,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Mar 2025,C - 69 to 80,79.0,A - 92 Plus,116.0,BB104TN,100010349636.0,"18 Mount Crescent, Cliviger",0.5525 -2839,106967,22 Orpington Square Burnley Lancashire BB10 2RF,,, BB10 2RF,House: End Terrace,Domestic EPC Required,EPC Present,16 Feb 2011,D - 55 to 68,55.0,D - 55 to 68,60.0,BB102RF,10003780833.0,"22, Orpington Square",0.4801 -2866,179646,17 St Annes Street Padiham Lancashire BB12 7AX,,, BB12 7AX,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 May 2012,D - 55 to 68,63.0,B - 81 to 91,87.0,BB127AX,100010356429.0,"17, St. Annes Street, Padiham",0.6339 -2884,236211,5 Sefton Terrace Burnley Lancashire BB11 4PZ,,, BB11 4PZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 May 2015,D - 55 to 68,60.0,B - 81 to 91,83.0,BB114PZ,10003758840.0,"5, Sefton Terrace",0.4652 -2893,95641,1 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Top,Domestic EPC Required,EPC Present,18 Aug 2021,C - 69 to 80,77.0,C - 69 to 80,78.0,BB113TA,100010350814.0,1 Oxford Place,0.4536 -2941,234412,2 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Bottom,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,75.0,BB113TA,100010350815.0,2 Oxford Place,0.4536 -2994,359935,3 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Top,Domestic EPC Required,EPC Present,18 May 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113TA,100010350816.0,3 Oxford Place,0.4536 -3036,226548,4 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Bottom,Domestic EPC Required,EPC Present,17 Sep 2024,C - 69 to 80,76.0,C - 69 to 80,78.0,BB113TA,100010350817.0,4 Oxford Place,0.4536 -3087,40794,5 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Top,Domestic EPC Required,EPC Present,22 Mar 2017,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113TA,100010350818.0,"5, Oxford Place",0.4536 -3131,40797,6 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Bottom,Domestic EPC Required,EPC Present,22 Sep 2008,D - 55 to 68,67.0,C - 69 to 80,79.0,BB113TA,,, -3179,210940,7 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Top,Domestic EPC Required,EPC Present,26 Nov 2025,C - 69 to 80,77.0,C - 69 to 80,78.0,BB113TA,100010350820.0,7 Oxford Place,0.4536 -3227,163891,8 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Bottom,Domestic EPC Required,EPC Present,10 Dec 2025,C - 69 to 80,74.0,C - 69 to 80,76.0,BB113TA,100010350821.0,8 Oxford Place,0.4536 -3276,252241,9 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Top,Domestic EPC Required,EPC Present,02 Jul 2016,C - 69 to 80,76.0,C - 69 to 80,78.0,BB113TA,100010350822.0,"9, Oxford Place",0.4536 -3322,40805,10 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Bottom,Domestic EPC Required,EPC Present,26 Jul 2021,C - 69 to 80,76.0,C - 69 to 80,79.0,BB113TA,100010350823.0,10 OXFORD PLACE,0.4596 -3375,362308,11 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Top,Domestic EPC Required,EPC Present,13 Oct 2022,C - 69 to 80,79.0,C - 69 to 80,80.0,BB113TA,100010350824.0,11 Oxford Place,0.4596 -3423,69664,12 Oxford Place Burnley Lancashire BB11 3TA,,, BB11 3TA,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jul 2009,B - 81 to 91,81.0,B - 81 to 91,83.0,BB113TA,100010350825.0,"12, Oxford Place",0.4596 -2912,362266,520 Padiham Road Burnley Lancashire BB12 6TF,,, BB12 6TF,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,83.0,BB126TF,100010351121.0,520 Padiham Road,0.4652 -3867,362335,506 Padiham Road Burnley Lancashire BB12 6TF,,, BB12 6TF,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB126TF,100010351114.0,506 Padiham Road,0.4652 -3974,190620,508 Padiham Road Burnley Lancashire BB12 6TF,,, BB12 6TF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Oct 2012,D - 55 to 68,65.0,B - 81 to 91,89.0,BB126TF,100010351115.0,"508, Padiham Road",0.4652 -4079,181038,510 Padiham Road Burnley Lancashire BB12 6TF,,, BB12 6TF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Jun 2012,D - 55 to 68,59.0,B - 81 to 91,86.0,BB126TF,100010351116.0,"510, Padiham Road",0.4652 -4184,362356,512 Padiham Road Burnley Lancashire BB12 6TF,,, BB12 6TF,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB126TF,100010351117.0,512 Padiham Road,0.4652 -11066,193908,518 Padiham Road Burnley Lancashire BB12 6TF,,, BB12 6TF,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Dec 2012,C - 69 to 80,71.0,B - 81 to 91,85.0,BB126TF,100010351120.0,"518, Padiham Road",0.4652 -2928,228326,4 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,78.0,BB126AQ,100010336545.0,4 Cumberland Avenue,0.4801 -3168,362289,9 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB126AQ,100010336550.0,9 Cumberland Avenue,0.4801 -3216,359957,10 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 May 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB126AQ,100010336551.0,10 Cumberland Avenue,0.4845 -3312,40804,12 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: End Terrace,Domestic EPC Required,EPC Present,09 Apr 2009,D - 55 to 68,66.0,C - 69 to 80,74.0,BB126AQ,100010336553.0,"12, Cumberland Avenue",0.4845 -3516,201776,16 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Apr 2013,C - 69 to 80,73.0,B - 81 to 91,87.0,BB126AQ,100010336557.0,"16, Cumberland Avenue",0.4845 -3675,362324,19 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB126AQ,100010336560.0,19 Cumberland Avenue,0.4845 -3722,210895,20 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Aug 2013,C - 69 to 80,73.0,B - 81 to 91,87.0,BB126AQ,100010336561.0,"20, Cumberland Avenue",0.4845 -3821,227863,22 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Aug 2014,C - 69 to 80,69.0,B - 81 to 91,84.0,BB126AQ,100010336563.0,"22, Cumberland Avenue",0.4845 -3871,362336,23 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: End Terrace,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB126AQ,100010336564.0,23 Cumberland Avenue,0.4845 -4032,362344,26 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: End Terrace,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB126AQ,100010336567.0,26 Cumberland Avenue,0.4845 -4083,222619,27 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Mar 2014,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126AQ,100010336568.0,"27, Cumberland Avenue",0.4845 -4189,124990,29 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Nov 2011,C - 69 to 80,71.0,C - 69 to 80,74.0,BB126AQ,100010336570.0,"29, Cumberland Avenue",0.4845 -4425,362372,33 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB126AQ,100010336574.0,33 Cumberland Avenue,0.4845 -5583,362444,55 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,88.0,BB126AQ,100010336590.0,55 Cumberland Avenue,0.4845 -5694,105429,57 Cumberland Avenue Burnley Lancashire BB12 6AQ,,, BB12 6AQ,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Jan 2011,D - 55 to 68,67.0,C - 69 to 80,72.0,BB126AQ,100010336591.0,"57, Cumberland Avenue",0.4845 -2944,183761,1 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Bottom,Domestic EPC Required,EPC Present,02 Aug 2012,C - 69 to 80,70.0,C - 69 to 80,76.0,BB128QP,100010356522.0,"1, St. James Place, Padiham",0.6641 -2996,253476,2 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Bottom,Domestic EPC Required,EPC Present,07 Dec 2025,C - 69 to 80,69.0,C - 69 to 80,74.0,BB128QP,100010356523.0,"2 St. James Place, Padiham",0.6641 -3040,204373,3 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Top,Domestic EPC Required,EPC Present,20 May 2013,C - 69 to 80,74.0,C - 69 to 80,77.0,BB128QP,100010356524.0,"3, St. James Place, Padiham",0.6641 -3089,76900,4 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Top,Domestic EPC Required,EPC Present,02 Sep 2009,C - 69 to 80,78.0,B - 81 to 91,81.0,BB128QP,100010356525.0,"4, St. James Place, Padiham",0.6641 -3134,362284,5 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Bottom,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB128QP,100010356526.0,"5 St. James Place, Padiham",0.6641 -3181,40799,6 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Bottom,Domestic EPC Required,EPC Present,07 Jan 2009,C - 69 to 80,69.0,C - 69 to 80,78.0,BB128QP,100010356527.0,"6, St. James Place, Padiham",0.6641 -3230,362294,7 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Top,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB128QP,100010356528.0,"7 St. James Place, Padiham",0.6641 -3278,230223,8 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Top,Domestic EPC Required,EPC Present,21 Nov 2014,C - 69 to 80,74.0,C - 69 to 80,76.0,BB128QP,100010356529.0,"8, St. James Place, Padiham",0.6641 -3324,106954,9 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Bottom,Domestic EPC Required,EPC Present,15 Feb 2011,C - 69 to 80,75.0,C - 69 to 80,78.0,BB128QP,100010356530.0,"9, St. James Place, Padiham",0.6641 -3372,362307,10 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Bottom,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB128QP,100010356531.0,"10 St. James Place, Padiham",0.6665 -3421,243352,11 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Top,Domestic EPC Required,EPC Present,29 Oct 2015,C - 69 to 80,73.0,C - 69 to 80,76.0,BB128QP,100010356532.0,"11, St. James Place, Padiham",0.6665 -3530,203574,13 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Bottom,Domestic EPC Required,EPC Present,25 Apr 2013,C - 69 to 80,71.0,C - 69 to 80,77.0,BB128QP,100010356534.0,"13, St. James Place, Padiham",0.6665 -3582,234413,14 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Bottom,Domestic EPC Required,EPC Present,02 Dec 2025,C - 69 to 80,73.0,C - 69 to 80,76.0,BB128QP,100010356535.0,"14 St. James Place, Padiham",0.6665 -3631,231068,15 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Top,Domestic EPC Required,EPC Present,15 Jan 2015,C - 69 to 80,73.0,C - 69 to 80,76.0,BB128QP,100010356536.0,"15, St. James Place, Padiham",0.6665 -3683,220610,16 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Top,Domestic EPC Required,EPC Present,04 Dec 2013,C - 69 to 80,74.0,C - 69 to 80,76.0,BB128QP,100010356537.0,"16, St. James Place, Padiham",0.6665 -13310,338935,12 St James Place Padiham Lancashire BB12 8QP,,, BB12 8QP,Flat: Top,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,77.0,C - 69 to 80,77.0,BB128QP,100010356533.0,"12 St. James Place, Padiham",0.6665 -2955,253566,310 Padiham Road Burnley Lancashire BB12 6ST,,, BB12 6ST,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2025,D - 55 to 68,64.0,C - 69 to 80,77.0,BB126ST,100010350983.0,310 Padiham Road,0.4652 -2973,362272,2 Wavell Street Burnley Lancashire BB12 6DX,,, BB12 6DX,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,84.0,BB126DX,100010360081.0,2 Wavell Street,0.4596 -3067,362278,4 Wavell Street Burnley Lancashire BB12 6DX,,, BB12 6DX,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB126DX,100010360083.0,4 Wavell Street,0.4596 -3119,362282,5 Wavell Street Burnley Lancashire BB12 6DX,,, BB12 6DX,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB126DX,100010360084.0,5 Wavell Street,0.4596 -3359,362306,10 Wavell Street Burnley Lancashire BB12 6DX,,, BB12 6DX,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126DX,100010360089.0,10 Wavell Street,0.4652 -3560,295097,14 Wavell Street Burnley Lancashire BB12 6DX,,, BB12 6DX,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Sep 2017,D - 55 to 68,66.0,B - 81 to 91,87.0,BB126DX,100010360093.0,"14, Wavell Street",0.4652 -3617,362320,15 Wavell Street Burnley Lancashire BB12 6DX,,, BB12 6DX,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB126DX,100010360094.0,15 Wavell Street,0.4652 -3666,40819,16 Wavell Street Burnley Lancashire BB12 6DX,,, BB12 6DX,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Oct 2008,D - 55 to 68,67.0,C - 69 to 80,74.0,BB126DX,100010360095.0,"16, Wavell Street",0.4652 -3768,229257,18 Wavell Street Burnley Lancashire BB12 6DX,,, BB12 6DX,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Oct 2014,D - 55 to 68,68.0,B - 81 to 91,87.0,BB126DX,100010360096.0,"18, Wavell Street",0.4652 -3969,190585,22 Wavell Street Burnley Lancashire BB12 6DX,,, BB12 6DX,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Oct 2012,C - 69 to 80,70.0,B - 81 to 91,85.0,BB126DX,100010360098.0,"22, Wavell Street",0.4652 -2989,69493,1 Sheddon Grove Burnley Lancashire BB10 4NH,,, BB10 4NH,House: End Terrace,Domestic EPC Required,EPC Present,04 Feb 2026,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104NH,100010355755.0,"1, Sheddon Grove",0.4596 -3223,324972,6 Sheddon Grove Burnley Lancashire BB10 4NH,,, BB10 4NH,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Dec 2019,D - 55 to 68,67.0,B - 81 to 91,86.0,BB104NH,100010355760.0,"6, Sheddon Grove",0.4596 -3016,189414,65 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Oct 2012,D - 55 to 68,67.0,B - 81 to 91,83.0,BB114DR,100010326833.0,"65, Airdrie Crescent",0.4801 -3111,40796,67 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB114DR,100010326834.0,67 Airdrie Crescent,0.4801 -3552,362315,76 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB114DR,100010326841.0,76 Airdrie Crescent,0.4801 -3659,252268,78 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Jul 2016,C - 69 to 80,70.0,B - 81 to 91,87.0,BB114DR,100010326843.0,"78, Airdrie Crescent",0.4801 -3759,362331,80 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB114DR,100010326845.0,80 Airdrie Crescent,0.4801 -3857,236581,82 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jun 2015,D - 55 to 68,64.0,B - 81 to 91,85.0,BB114DR,100010326847.0,"82, Airdrie Crescent",0.4801 -3960,252193,84 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Nov 2017,C - 69 to 80,72.0,B - 81 to 91,88.0,BB114DR,100010326848.0,"84, Airdrie Crescent",0.4801 -4119,250501,87 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,Flat: Top,Domestic EPC Required,EPC Present,02 Jun 2016,C - 69 to 80,74.0,C - 69 to 80,77.0,BB114DR,100010326850.0,"87, Airdrie Crescent",0.4801 -4174,186593,88 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Aug 2024,C - 69 to 80,70.0,B - 81 to 91,84.0,BB114DR,100010326851.0,88 Airdrie Crescent,0.4801 -4230,195127,89 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,Flat: Bottom,Domestic EPC Required,EPC Present,03 Jan 2022,C - 69 to 80,71.0,C - 69 to 80,77.0,BB114DR,100010326852.0,89 Airdrie Crescent,0.4801 -4289,100574,90 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Jul 2025,C - 69 to 80,69.0,C - 69 to 80,77.0,BB114DR,100010326853.0,90 Airdrie Crescent,0.4801 -4343,94898,91 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,Flat: Bottom,Domestic EPC Required,EPC Present,09 Apr 2010,D - 55 to 68,58.0,C - 69 to 80,75.0,BB114DR,100010326854.0,"91, Airdrie Crescent",0.4801 -4409,125268,92 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Nov 2011,D - 55 to 68,57.0,D - 55 to 68,66.0,BB114DR,100010326855.0,92 Airdrie Crescent,0.4801 -4463,40854,93 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,Flat: Top,Domestic EPC Required,EPC Present,09 Nov 2025,D - 55 to 68,68.0,D - 55 to 68,68.0,BB114DR,100010326856.0,93 Airdrie Crescent,0.4801 -4524,40856,94 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB114DR,100010326857.0,94 Airdrie Crescent,0.4801 -4584,247885,95 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,Flat: Top,Domestic EPC Required,EPC Present,23 Mar 2016,C - 69 to 80,74.0,C - 69 to 80,76.0,BB114DR,100010326858.0,"95, Airdrie Crescent",0.4801 -4647,362384,96 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,89.0,BB114DR,100010326859.0,96 Airdrie Crescent,0.4801 -4700,247886,97 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,Flat: Bottom,Domestic EPC Required,EPC Present,23 Mar 2016,C - 69 to 80,71.0,C - 69 to 80,73.0,BB114DR,100010326860.0,"97, Airdrie Crescent",0.4801 -4799,40876,99 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,Flat: Bottom,Domestic EPC Required,EPC Present,17 May 2009,C - 69 to 80,73.0,C - 69 to 80,73.0,BB114DR,100010326862.0,"99, Airdrie Crescent",0.4801 -4895,247887,101 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,Flat: Top,Domestic EPC Required,EPC Present,23 Mar 2016,C - 69 to 80,73.0,C - 69 to 80,75.0,BB114DR,100010326864.0,"101, Airdrie Crescent",0.4845 -4939,110641,102 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Apr 2011,D - 55 to 68,64.0,C - 69 to 80,72.0,BB114DR,100010326865.0,"102, Airdrie Crescent",0.4845 -4985,271498,103 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jan 2026,D - 55 to 68,67.0,B - 81 to 91,82.0,BB114DR,100010326866.0,103 Airdrie Crescent,0.4845 -5188,90225,107 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,79.0,BB114DR,100010326870.0,107 Airdrie Crescent,0.4845 -5248,362420,108 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,89.0,BB114DR,100010326871.0,108 Airdrie Crescent,0.4845 -5355,252200,110 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Aug 2018,D - 55 to 68,67.0,B - 81 to 91,84.0,BB114DR,100010326873.0,"110, Airdrie Crescent",0.4845 -5468,252205,112 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB114DR,100010326874.0,112 Airdrie Crescent,0.4845 -5565,96677,114 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Feb 2019,D - 55 to 68,65.0,B - 81 to 91,83.0,BB114DR,100010326875.0,"114, Airdrie Crescent",0.4845 -5678,252206,116 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB114DR,100010326876.0,116 Airdrie Crescent,0.4845 -5875,203608,120 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Sep 2025,C - 69 to 80,70.0,B - 81 to 91,77.0,BB114DR,100010326878.0,120 Airdrie Crescent,0.4845 -6061,194171,124 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Jan 2013,D - 55 to 68,67.0,B - 81 to 91,83.0,BB114DR,100010326880.0,"124, Airdrie Crescent",0.4845 -6151,190588,126 Airdrie Crescent Burnley Lancashire BB11 4DR,,, BB11 4DR,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Apr 2017,D - 55 to 68,63.0,C - 69 to 80,79.0,BB114DR,100010326881.0,"126, Airdrie Crescent",0.4845 -3085,362279,22 Cotton Street Padiham Lancashire BB12 7AY,,, BB12 7AY,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127AY,100010335954.0,"22 Cotton Street, Padiham",0.6185 -3110,194170,1 Greenock Close Burnley Lancashire BB11 4DU,,, BB11 4DU,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Jan 2013,C - 69 to 80,69.0,B - 81 to 91,85.0,BB114DU,10003758201.0,"1, Greenock Close",0.4652 -3152,362287,2 Greenock Close Burnley Lancashire BB11 4DU,,, BB11 4DU,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,87.0,BB114DU,10003758202.0,2 Greenock Close,0.4652 -3201,242907,3 Greenock Close Burnley Lancashire BB11 4DU,,, BB11 4DU,House: End Terrace,Domestic EPC Required,EPC Present,16 Oct 2015,C - 69 to 80,72.0,B - 81 to 91,90.0,BB114DU,10003758203.0,"3, Greenock Close",0.4652 -3249,362297,4 Greenock Close Burnley Lancashire BB11 4DU,,, BB11 4DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Aug 2012,D - 55 to 68,66.0,B - 81 to 91,83.0,BB114DU,,, -3300,206142,5 Greenock Close Burnley Lancashire BB11 4DU,,, BB11 4DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Jun 2013,C - 69 to 80,74.0,B - 81 to 91,88.0,BB114DU,10003758205.0,"5, Greenock Close",0.4652 -3348,362305,6 Greenock Close Burnley Lancashire BB11 4DU,,, BB11 4DU,House: End Terrace,Domestic EPC Required,EPC Present,06 Nov 2008,D - 55 to 68,62.0,C - 69 to 80,72.0,BB114DU,,, -3448,193902,8 Greenock Close Burnley Lancashire BB11 4DU,,, BB11 4DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,77.0,B - 81 to 91,81.0,BB114DU,10003758208.0,8 Greenock Close,0.4652 -3500,362313,9 Greenock Close Burnley Lancashire BB11 4DU,,, BB11 4DU,House: End Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB114DU,10003758209.0,9 Greenock Close,0.4652 -3194,112879,4 Swanage Road Burnley Lancashire BB10 3EB,,, BB10 3EB,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,77.0,BB103EB,100010357466.0,4 Swanage Road,0.4536 -3343,252170,7 Swanage Road Burnley Lancashire BB10 3EB,,, BB10 3EB,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Feb 2026,C - 69 to 80,76.0,B - 81 to 91,81.0,BB103EB,100010357469.0,"7, Swanage Road",0.4536 -3544,252169,11 Swanage Road Burnley Lancashire BB10 3EB,,, BB10 3EB,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,75.0,B - 81 to 91,88.0,BB103EB,100010357473.0,11 Swanage Road,0.4596 -3699,252176,14 Swanage Road Burnley Lancashire BB10 3EB,,, BB10 3EB,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB103EB,100010357475.0,14 Swanage Road,0.4596 -3224,248680,1 Deerstone Avenue Burnley Lancashire BB10 4QF,,, BB10 4QF,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Apr 2016,C - 69 to 80,74.0,B - 81 to 91,88.0,BB104QF,100010337134.0,"1, Deerstone Avenue",0.4754 -4259,248691,21 Deerstone Avenue Burnley Lancashire BB10 4QF,,, BB10 4QF,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Apr 2016,C - 69 to 80,72.0,B - 81 to 91,89.0,BB104QF,100010337154.0,"21, Deerstone Avenue",0.4801 -4612,248693,27 Deerstone Avenue Burnley Lancashire BB10 4QF,,, BB10 4QF,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Apr 2016,C - 69 to 80,75.0,B - 81 to 91,90.0,BB104QF,100010337160.0,"27, Deerstone Avenue",0.4801 -5108,208557,37 Deerstone Avenue Burnley Lancashire BB10 4QF,,, BB10 4QF,House: End Terrace,Domestic EPC Required,EPC Present,18 Mar 2022,C - 69 to 80,74.0,B - 81 to 91,89.0,BB104QF,100010337170.0,37 Deerstone Avenue,0.4801 -5328,248697,41 Deerstone Avenue Burnley Lancashire BB10 4QF,,, BB10 4QF,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Apr 2016,C - 69 to 80,74.0,B - 81 to 91,91.0,BB104QF,100010337174.0,"41, Deerstone Avenue",0.4801 -5537,248699,45 Deerstone Avenue Burnley Lancashire BB10 4QF,,, BB10 4QF,House: End Terrace,Domestic EPC Required,EPC Present,07 Apr 2016,C - 69 to 80,70.0,B - 81 to 91,89.0,BB104QF,100010337178.0,"45, Deerstone Avenue",0.4801 -6124,248840,57 Deerstone Avenue Burnley Lancashire BB10 4QF,,, BB10 4QF,House: End Terrace,Domestic EPC Required,EPC Present,06 Apr 2016,C - 69 to 80,69.0,B - 81 to 91,87.0,BB104QF,100010337190.0,"57, Deerstone Avenue",0.4801 -6894,248841,73 Deerstone Avenue Burnley Lancashire BB10 4QF,,, BB10 4QF,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Apr 2016,C - 69 to 80,72.0,B - 81 to 91,89.0,BB104QF,100010337206.0,"73, Deerstone Avenue",0.4801 -3242,204376,1 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,24 May 2013,D - 55 to 68,67.0,B - 81 to 91,84.0,BB102QD,100010342805.0,"1, Hodder Street",0.4596 -3344,322296,3 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Aug 2019,D - 55 to 68,65.0,B - 81 to 91,85.0,BB102QD,100010342807.0,"3, Hodder Street",0.4596 -3601,179608,8 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Apr 2012,D - 55 to 68,57.0,B - 81 to 91,81.0,BB102QD,100010342812.0,"8, Hodder Street",0.4596 -3650,90184,9 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Feb 2010,D - 55 to 68,59.0,C - 69 to 80,70.0,BB102QD,100010342813.0,"9, Hodder Street",0.4596 -3702,325382,10 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: End Terrace,Domestic EPC Required,EPC Present,02 Jan 2020,C - 69 to 80,72.0,B - 81 to 91,88.0,BB102QD,100010342814.0,"10, Hodder Street",0.4652 -3751,223396,11 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: End Terrace,Domestic EPC Required,EPC Present,03 Apr 2014,D - 55 to 68,59.0,B - 81 to 91,85.0,BB102QD,100010342815.0,"11, Hodder Street",0.4652 -3802,197611,12 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Feb 2013,C - 69 to 80,70.0,B - 81 to 91,87.0,BB102QD,100010342816.0,"12, Hodder Street",0.4652 -3900,197612,14 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Feb 2013,C - 69 to 80,69.0,B - 81 to 91,85.0,BB102QD,100010342818.0,"14, Hodder Street",0.4652 -3949,222024,15 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jan 2014,D - 55 to 68,61.0,B - 81 to 91,83.0,BB102QD,100010342819.0,"15, Hodder Street",0.4652 -4060,325768,17 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: End Terrace,Domestic EPC Required,EPC Present,27 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB102QD,100010342821.0,"17, Hodder Street",0.4652 -4114,40841,18 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Jan 2026,D - 55 to 68,66.0,C - 69 to 80,77.0,BB102QD,100010342822.0,18 Hodder Street,0.4652 -4166,244342,19 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Nov 2015,C - 69 to 80,71.0,C - 69 to 80,78.0,BB102QD,100010342823.0,"19, Hodder Street",0.4652 -4281,221649,21 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,71.0,B - 81 to 91,86.0,BB102QD,100010342825.0,"21, Hodder Street",0.4652 -4339,325379,22 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Dec 2019,C - 69 to 80,69.0,B - 81 to 91,81.0,BB102QD,100010342826.0,"22, Hodder Street",0.4652 -4457,325384,24 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: End Terrace,Domestic EPC Required,EPC Present,02 Jan 2020,C - 69 to 80,73.0,B - 81 to 91,88.0,BB102QD,100010342828.0,"24, Hodder Street",0.4652 -4517,325383,25 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB102QD,100010342829.0,"25, Hodder Street",0.4652 -4580,289898,26 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Jul 2017,D - 55 to 68,60.0,B - 81 to 91,82.0,BB102QD,100010342830.0,"26, Hodder Street",0.4652 -4936,110951,33 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Apr 2011,D - 55 to 68,64.0,C - 69 to 80,72.0,BB102QD,100010342837.0,"33, Hodder Street",0.4652 -5126,325387,37 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: End Terrace,Domestic EPC Required,EPC Present,02 Jan 2020,C - 69 to 80,72.0,B - 81 to 91,89.0,BB102QD,100010342839.0,"37, Hodder Street",0.4652 -5236,325385,39 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jan 2020,D - 55 to 68,68.0,B - 81 to 91,83.0,BB102QD,100010342840.0,"39, Hodder Street",0.4652 -5666,325386,47 Hodder Street Burnley Lancashire BB10 2QD,,, BB10 2QD,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Jan 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB102QD,100010342844.0,"47, Hodder Street",0.4652 -3272,248659,2 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104QG,100010337135.0,"2, Deerstone Avenue",0.4754 -3474,248681,6 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 Mar 2016,E - 39 to 54,53.0,C - 69 to 80,78.0,BB104QG,100010337139.0,"6, Deerstone Avenue",0.4754 -3580,248682,8 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,70.0,A - 92 Plus,92.0,BB104QG,100010337141.0,"8, Deerstone Avenue",0.4754 -3681,250038,10 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,03 May 2016,C - 69 to 80,71.0,A - 92 Plus,93.0,BB104QG,100010337143.0,"10, Deerstone Avenue",0.4801 -3780,248683,12 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Apr 2016,C - 69 to 80,70.0,A - 92 Plus,92.0,BB104QG,100010337145.0,"12, Deerstone Avenue",0.4801 -3984,248685,16 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,69.0,B - 81 to 91,90.0,BB104QG,100010337149.0,"16, Deerstone Avenue",0.4801 -4093,248686,18 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,69.0,A - 92 Plus,92.0,BB104QG,100010337151.0,"18, Deerstone Avenue",0.4801 -4671,248694,28 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Apr 2016,D - 55 to 68,68.0,B - 81 to 91,90.0,BB104QG,100010337161.0,"28, Deerstone Avenue",0.4801 -5058,250037,36 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Apr 2016,C - 69 to 80,70.0,B - 81 to 91,90.0,BB104QG,100010337169.0,"36, Deerstone Avenue",0.4801 -5160,248695,38 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,House: End Terrace,Domestic EPC Required,EPC Present,06 Apr 2016,C - 69 to 80,73.0,B - 81 to 91,82.0,BB104QG,100010337171.0,"38, Deerstone Avenue",0.4801 -5387,248698,42 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Apr 2016,C - 69 to 80,69.0,B - 81 to 91,90.0,BB104QG,100010337175.0,"42, Deerstone Avenue",0.4801 -5592,248700,46 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,House: End Terrace,Domestic EPC Required,EPC Present,12 Dec 2025,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104QG,100010337179.0,46 Deerstone Avenue,0.4801 -5701,250336,48 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,19 May 2016,C - 69 to 80,69.0,C - 69 to 80,76.0,BB104QG,100010337181.0,"48, Deerstone Avenue",0.4801 -5802,250588,50 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,15 Jun 2016,D - 55 to 68,68.0,C - 69 to 80,77.0,BB104QG,100010337183.0,"50, Deerstone Avenue",0.4801 -5899,250337,52 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Top,Domestic EPC Required,EPC Present,19 May 2016,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104QG,100010337185.0,"52, Deerstone Avenue",0.4801 -6080,250510,56 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,02 Jun 2016,D - 55 to 68,68.0,C - 69 to 80,77.0,BB104QG,100010337189.0,"56, Deerstone Avenue",0.4801 -6168,250077,58 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,13 May 2016,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104QG,100010337191.0,"58, Deerstone Avenue",0.4801 -6260,250078,60 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Top,Domestic EPC Required,EPC Present,13 May 2016,C - 69 to 80,74.0,C - 69 to 80,78.0,BB104QG,100010337193.0,"60, Deerstone Avenue",0.4801 -6354,250079,62 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Top,Domestic EPC Required,EPC Present,14 May 2016,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104QG,100010337195.0,"62, Deerstone Avenue",0.4801 -6452,250080,64 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,13 May 2016,C - 69 to 80,71.0,C - 69 to 80,76.0,BB104QG,100010337197.0,"64, Deerstone Avenue",0.4801 -6554,250081,66 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,13 May 2016,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104QG,100010337199.0,"66, Deerstone Avenue",0.4801 -6655,245885,68 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Top,Domestic EPC Required,EPC Present,14 Jan 2016,C - 69 to 80,70.0,C - 69 to 80,70.0,BB104QG,100010337201.0,"68, Deerstone Avenue",0.4801 -6756,250338,70 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Top,Domestic EPC Required,EPC Present,19 May 2016,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104QG,100010337203.0,"70, Deerstone Avenue",0.4801 -6950,252102,74 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,30 Jun 2016,D - 55 to 68,67.0,C - 69 to 80,75.0,BB104QG,100010337207.0,"74, Deerstone Avenue",0.4801 -7045,250339,76 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Top,Domestic EPC Required,EPC Present,19 May 2016,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104QG,100010337209.0,"76, Deerstone Avenue",0.4801 -7143,250083,78 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Top,Domestic EPC Required,EPC Present,13 May 2016,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104QG,100010337211.0,"78, Deerstone Avenue",0.4801 -7640,250589,88 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Bottom,Domestic EPC Required,EPC Present,14 Jun 2016,D - 55 to 68,66.0,C - 69 to 80,75.0,BB104QG,100010337218.0,"88, Deerstone Avenue",0.4801 -7748,250084,90 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Flat: Top,Domestic EPC Required,EPC Present,14 May 2016,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104QG,100010337219.0,"90, Deerstone Avenue",0.4801 -12861,326448,14 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Apr 2016,D - 55 to 68,67.0,B - 81 to 91,90.0,BB104QG,100010337147.0,"14, Deerstone Avenue",0.4801 -13371,343122,22 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,69.0,A - 92 Plus,92.0,BB104QG,100010337155.0,"22, Deerstone Avenue",0.4801 -13746,359507,20 Deerstone Avenue Burnley Lancashire BB10 4QG,,, BB10 4QG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Apr 2016,B - 81 to 91,81.0,B - 81 to 91,86.0,BB104QG,100010337153.0,"20, Deerstone Avenue",0.4801 -3297,326167,25 Fraser Street Burnley Lancashire BB10 1UP,,, BB10 1UP,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Feb 2020,C - 69 to 80,73.0,B - 81 to 91,89.0,BB101UP,100010339192.0,"25, Fraser Street",0.4652 -3302,211371,358 Cog Lane Burnley Lancashire BB11 5JS,,, BB11 5JS,House: End Terrace,Domestic EPC Required,EPC Present,10 Oct 2013,C - 69 to 80,70.0,B - 81 to 91,84.0,BB115JS,100010335053.0,"358, Cog Lane",0.4401 -3402,184329,360 Cog Lane Burnley Lancashire BB11 5JS,,, BB11 5JS,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Aug 2012,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115JS,100010335055.0,"360, Cog Lane",0.4401 -3613,362318,364 Cog Lane Burnley Lancashire BB11 5JS,,, BB11 5JS,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115JS,100010335059.0,364 Cog Lane,0.4401 -3713,250578,366 Cog Lane Burnley Lancashire BB11 5JS,,, BB11 5JS,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jun 2016,C - 69 to 80,75.0,B - 81 to 91,88.0,BB115JS,100010335061.0,"366, Cog Lane",0.4401 -3909,362337,370 Cog Lane Burnley Lancashire BB11 5JS,,, BB11 5JS,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115JS,100010335065.0,370 Cog Lane,0.4401 -4234,111326,376 Cog Lane Burnley Lancashire BB11 5JS,,, BB11 5JS,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Jan 2011,D - 55 to 68,62.0,C - 69 to 80,72.0,BB115JS,100010335071.0,"376, Cog Lane",0.4401 -4350,222006,378 Cog Lane Burnley Lancashire BB11 5JS,,, BB11 5JS,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Jan 2014,D - 55 to 68,65.0,B - 81 to 91,86.0,BB115JS,100010335073.0,"378, Cog Lane",0.4401 -4589,229250,382 Cog Lane Burnley Lancashire BB11 5JS,,, BB11 5JS,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Oct 2014,D - 55 to 68,63.0,C - 69 to 80,80.0,BB115JS,100010335077.0,"382, Cog Lane",0.4401 -6231,236582,237 Cog Lane Burnley Lancashire BB11 5JS,,, BB11 5JS,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Jun 2015,D - 55 to 68,56.0,C - 69 to 80,73.0,BB115JS,100010334957.0,"237, Cog Lane",0.4401 -3410,97230,36 Coleshill Avenue Burnley Lancashire BB10 4PF,,, BB10 4PF,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Dec 2025,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104PF,100010335289.0,36 Coleshill Avenue,0.4801 -3715,76896,42 Coleshill Avenue Burnley Lancashire BB10 4PF,,, BB10 4PF,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Sep 2009,D - 55 to 68,68.0,C - 69 to 80,72.0,BB104PF,100010335294.0,"42, Coleshill Avenue",0.4801 -4024,90207,48 Coleshill Avenue Burnley Lancashire BB10 4PF,,, BB10 4PF,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Jun 2025,C - 69 to 80,72.0,C - 69 to 80,78.0,BB104PF,100010335300.0,48 Coleshill Avenue,0.4801 -4081,100531,49 Coleshill Avenue Burnley Lancashire BB10 4PF,,, BB10 4PF,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Sep 2010,D - 55 to 68,57.0,C - 69 to 80,72.0,BB104PF,100010335301.0,"49, Coleshill Avenue",0.4801 -4301,89060,53 Coleshill Avenue Burnley Lancashire BB10 4PF,,, BB10 4PF,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Dec 2020,D - 55 to 68,64.0,B - 81 to 91,83.0,BB104PF,100010335305.0,"53 COLESHILL AVENUE, BURNLEY",0.6268 -4473,324888,56 Coleshill Avenue Burnley Lancashire BB10 4PF,,, BB10 4PF,House: End Terrace,Domestic EPC Required,EPC Present,27 Nov 2019,C - 69 to 80,73.0,B - 81 to 91,87.0,BB104PF,100010335308.0,"56, Coleshill Avenue",0.4801 -4658,40873,59 Coleshill Avenue Burnley Lancashire BB10 4PF,,, BB10 4PF,Flat: Top,Domestic EPC Required,EPC Present,03 Feb 2026,D - 55 to 68,63.0,C - 69 to 80,71.0,BB104PF,100010335311.0,"59, Coleshill Avenue",0.4801 -4764,323717,61 Coleshill Avenue Burnley Lancashire BB10 4PF,,, BB10 4PF,Flat: Bottom,Domestic EPC Required,EPC Present,31 Oct 2019,C - 69 to 80,70.0,C - 69 to 80,74.0,BB104PF,100010335313.0,"61, Coleshill Avenue",0.4801 -3425,362309,71 Sycamore Avenue Burnley Lancashire BB12 6DQ,,, BB12 6DQ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB126DQ,100010357527.0,71 Sycamore Avenue,0.4754 -3736,362326,77 Sycamore Avenue Burnley Lancashire BB12 6DQ,,, BB12 6DQ,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB126DQ,100010357530.0,77 Sycamore Avenue,0.4754 -4266,220024,87 Sycamore Avenue Burnley Lancashire BB12 6DQ,,, BB12 6DQ,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Nov 2013,D - 55 to 68,63.0,B - 81 to 91,82.0,BB126DQ,100010357535.0,"87, Sycamore Avenue",0.4754 -3465,90099,12 Thorn Street Burnley Lancashire BB10 1NB,,, BB10 1NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Jan 2010,C - 69 to 80,75.0,C - 69 to 80,76.0,BB101NB,100010358279.0,"12, Thorn Street",0.4596 -3571,96717,14 Thorn Street Burnley Lancashire BB10 1NB,,, BB10 1NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Jul 2010,C - 69 to 80,76.0,C - 69 to 80,76.0,BB101NB,100010358280.0,"14, Thorn Street",0.4596 -12507,298311,40-42 Thorn Street Burnley Lancashire BB10 1NB,,, BB10 1NB,House: End Terrace,Domestic EPC Required,EPC Present,01 May 2018,C - 69 to 80,73.0,B - 81 to 91,83.0,BB101NB,100010358303.0,40-42 Thorn Street,0.5219 -13312,341688,38 Thorn Street Burnley Lancashire BB10 1NB,,, BB10 1NB,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Sep 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB101NB,100010358301.0,38 Thorn Street,0.4596 -3477,90324,1 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,16 Mar 2010,C - 69 to 80,76.0,C - 69 to 80,78.0,BB103DT,10003780461.0,"1, Marles Court",0.4536 -3527,226303,2 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,18 Jun 2014,C - 69 to 80,73.0,C - 69 to 80,76.0,BB103DT,10003780462.0,"2, Marles Court",0.4536 -3584,40814,3 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,11 Jul 2024,C - 69 to 80,78.0,C - 69 to 80,79.0,BB103DT,10003780463.0,3 Marles Court,0.4536 -3634,40816,4 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,01 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,76.0,BB103DT,10003780464.0,4 Marles Court,0.4536 -3686,40821,5 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,18 Apr 2023,C - 69 to 80,74.0,C - 69 to 80,76.0,BB103DT,10003780465.0,5 Marles Court,0.4536 -3832,40830,8 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,18 Sep 2008,C - 69 to 80,70.0,C - 69 to 80,75.0,BB103DT,,, -3883,107906,9 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Mar 2011,C - 69 to 80,71.0,C - 69 to 80,76.0,BB103DT,10003780469.0,"9, Marles Court",0.4536 -3992,186165,11 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,01 Nov 2025,C - 69 to 80,75.0,C - 69 to 80,75.0,BB103DT,10003780471.0,11 Marles Court,0.4596 -4044,268942,12 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,15 Dec 2016,C - 69 to 80,73.0,C - 69 to 80,76.0,BB103DT,10003780472.0,"12, Marles Court",0.4596 -4099,221656,13 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,70.0,C - 69 to 80,73.0,BB103DT,10003780473.0,"13, Marles Court",0.4596 -4148,269022,14 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,21 Dec 2016,C - 69 to 80,73.0,C - 69 to 80,77.0,BB103DT,10003780474.0,"14, Marles Court",0.4596 -4317,326208,17 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,10 Feb 2020,C - 69 to 80,72.0,C - 69 to 80,76.0,BB103DT,10003780477.0,"17, Marles Court",0.4596 -4381,224920,18 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,09 May 2014,C - 69 to 80,70.0,C - 69 to 80,77.0,BB103DT,10003780478.0,"18, Marles Court",0.4596 -4439,40853,19 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,26 Feb 2009,C - 69 to 80,75.0,C - 69 to 80,79.0,BB103DT,10003780479.0,"19, Marles Court",0.4596 -4497,224921,20 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,09 May 2014,C - 69 to 80,69.0,C - 69 to 80,73.0,BB103DT,10003780480.0,"20, Marles Court",0.4596 -4560,250069,21 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,12 May 2016,C - 69 to 80,70.0,C - 69 to 80,75.0,BB103DT,10003780481.0,"21, Marles Court",0.4596 -4615,116205,22 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,17 Oct 2025,C - 69 to 80,74.0,C - 69 to 80,77.0,BB103DT,10003780482.0,22 Marles Court,0.4596 -4672,362386,23 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,69.0,C - 69 to 80,77.0,BB103DT,10003780483.0,23 Marles Court,0.4596 -4732,102919,24 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Bottom,Domestic EPC Required,EPC Present,02 Nov 2010,C - 69 to 80,76.0,C - 69 to 80,79.0,BB103DT,10003780484.0,"24, Marles Court",0.4596 -13364,342106,7 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,10 Feb 2020,C - 69 to 80,73.0,C - 69 to 80,77.0,BB103DT,10003780467.0,"7, Marles Court",0.4536 -13744,359425,6 Marles Court Burnley Lancashire BB10 3DT,,, BB10 3DT,Flat: Top,Domestic EPC Required,EPC Present,16 Sep 2010,B - 81 to 91,81.0,B - 81 to 91,84.0,BB103DT,10003780466.0,"6 MARLES COURT, EARL STREET, BURNLEY",0.4915 -3503,325763,1 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2020,D - 55 to 68,68.0,C - 69 to 80,70.0,BB102AY,100012382200.0,"1, Barden View",0.4471 -3555,40813,2 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,07 May 2009,B - 81 to 91,82.0,B - 81 to 91,85.0,BB102AY,100012382201.0,"2, Barden View",0.4471 -3611,221834,3 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,21 Jan 2014,C - 69 to 80,77.0,C - 69 to 80,80.0,BB102AY,100012382202.0,"3, Barden View",0.4471 -3662,40818,4 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,11 Nov 2008,B - 81 to 91,84.0,B - 81 to 91,85.0,BB102AY,100012382203.0,"4, Barden View",0.4471 -3710,97158,5 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,26 Jul 2010,B - 81 to 91,81.0,B - 81 to 91,84.0,BB102AY,100012382204.0,"5, Barden View",0.4471 -3810,290414,7 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,04 Aug 2017,C - 69 to 80,76.0,C - 69 to 80,77.0,BB102AY,100012382206.0,"7, Barden View",0.4471 -3859,89221,8 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,05 Nov 2009,B - 81 to 91,83.0,B - 81 to 91,85.0,BB102AY,100012382207.0,"8, Barden View",0.4471 -3908,125124,9 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,31 May 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB102AY,100012382208.0,9 Barden View,0.4471 -3963,134196,10 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,02 Feb 2012,C - 69 to 80,78.0,C - 69 to 80,79.0,BB102AY,100012382209.0,"10, Barden View",0.4536 -4016,100557,11 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,05 Oct 2020,C - 69 to 80,74.0,C - 69 to 80,76.0,BB102AY,100012382210.0,"11 BARDEN VIEW, BLACKER STREET, BURNLEY",0.4838 -4071,40838,12 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,18 Dec 2008,B - 81 to 91,82.0,B - 81 to 91,84.0,BB102AY,100012382211.0,"12, Barden View",0.4536 -4178,181489,14 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,25 Jan 2026,C - 69 to 80,76.0,C - 69 to 80,76.0,BB102AY,100012382212.0,14 Barden View,0.4536 -4231,188284,15 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,19 Jan 2026,C - 69 to 80,77.0,C - 69 to 80,77.0,BB102AY,100012382213.0,15 Barden View,0.4536 -4293,40848,16 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,28 Apr 2022,C - 69 to 80,80.0,B - 81 to 91,81.0,BB102AY,100012382214.0,16 Barden View,0.4536 -4348,115745,17 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,24 Jun 2022,C - 69 to 80,78.0,C - 69 to 80,80.0,BB102AY,100012382215.0,17 Barden View,0.4536 -4414,362370,18 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB102AY,100012382216.0,18 Barden View,0.4536 -4467,90137,19 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,20 Jun 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB102AY,100012382217.0,19 Barden View,0.4536 -4530,362378,20 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB102AY,100012382218.0,20 Barden View,0.4536 -4588,40864,21 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,26 Jan 2009,B - 81 to 91,84.0,B - 81 to 91,86.0,BB102AY,100012382219.0,"21, Barden View",0.4536 -4650,40872,22 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,25 Feb 2009,B - 81 to 91,82.0,B - 81 to 91,84.0,BB102AY,100012382220.0,"22, Barden View",0.4536 -11599,238796,23 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Top,Domestic EPC Required,EPC Present,22 Jul 2015,C - 69 to 80,75.0,C - 69 to 80,78.0,BB102AY,10023762858.0,23 Barden View,0.4536 -11604,252044,6 Barden View Burnley Lancashire BB10 2AY,,, BB10 2AY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jan 2026,C - 69 to 80,77.0,C - 69 to 80,77.0,BB102AY,100012382205.0,6 Barden View,0.4471 -3533,362314,6 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115JE,100010327864.0,6 Ayr Grove,0.4326 -3639,245090,8 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Dec 2015,D - 55 to 68,65.0,B - 81 to 91,85.0,BB115JE,100010327865.0,"8, Ayr Grove",0.4326 -3839,248001,12 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,69.0,B - 81 to 91,90.0,BB115JE,100010327867.0,"12, Ayr Grove",0.4401 -3939,234698,14 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Apr 2015,D - 55 to 68,63.0,B - 81 to 91,84.0,BB115JE,100010327868.0,"14, Ayr Grove",0.4401 -4049,250801,16 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Jun 2016,C - 69 to 80,69.0,B - 81 to 91,90.0,BB115JE,100010327869.0,"16, Ayr Grove",0.4401 -4268,89364,20 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115JE,100010327871.0,20 Ayr Grove,0.4401 -4504,96152,24 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,06 Feb 2026,C - 69 to 80,69.0,C - 69 to 80,77.0,BB115JE,100010327873.0,"24, Ayr Grove",0.4401 -4623,252217,26 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,15 Jul 2025,C - 69 to 80,69.0,C - 69 to 80,78.0,BB115JE,100010327874.0,26 Ayr Grove,0.4401 -9626,184328,28 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Feb 2026,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115JE,100010327875.0,"28, Ayr Grove",0.4401 -9627,234336,22 Ayr Grove Burnley Lancashire BB11 5JE,,, BB11 5JE,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,03 Feb 2026,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115JE,100010327872.0,"22, Ayr Grove",0.4401 -3535,40811,19 Lockyer Avenue Burnley Lancashire BB12 6AH,,, BB12 6AH,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jun 2009,D - 55 to 68,68.0,C - 69 to 80,74.0,BB126AH,100010346475.0,"19, Lockyer Avenue",0.4705 -3553,40812,1 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Dec 2025,D - 55 to 68,68.0,B - 81 to 91,83.0,BB115LQ,100010354272.0,1 Rome Avenue,0.4471 -3658,40817,3 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Nov 2025,C - 69 to 80,76.0,B - 81 to 91,82.0,BB115LQ,100010354274.0,3 Rome Avenue,0.4471 -3709,96681,4 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Nov 2025,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115LQ,100010354275.0,4 Rome Avenue,0.4471 -3757,362330,5 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115LQ,100010354276.0,5 Rome Avenue,0.4471 -3806,90296,6 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Mar 2010,D - 55 to 68,66.0,C - 69 to 80,70.0,BB115LQ,100010354277.0,"6, Rome Avenue",0.4471 -3855,191102,7 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Nov 2025,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115LQ,100010354278.0,7 Rome Avenue,0.4471 -3905,110738,8 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,65.0,C - 69 to 80,74.0,BB115LQ,100010354279.0,"8, Rome Avenue",0.4471 -3959,221138,9 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Dec 2013,C - 69 to 80,69.0,B - 81 to 91,86.0,BB115LQ,100010354280.0,"9, Rome Avenue",0.4471 -4068,228558,11 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2014,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115LQ,100010354282.0,"11, Rome Avenue",0.4536 -4116,362349,12 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115LQ,100010354283.0,12 Rome Avenue,0.4536 -4175,106940,13 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Jun 2024,C - 69 to 80,70.0,B - 81 to 91,87.0,BB115LQ,100010354284.0,13 Rome Avenue,0.4536 -4225,40845,14 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115LQ,100010354285.0,14 Rome Avenue,0.4536 -4290,362362,15 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,A - 92 Plus,96.0,BB115LQ,10003758830.0,15-17 Rome Avenue,0.4099 -4345,362365,16 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115LQ,100010354287.0,16 Rome Avenue,0.4536 -4464,362374,18 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115LQ,100010354289.0,18 Rome Avenue,0.4536 -4525,40857,19 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Dec 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115LQ,100010354290.0,19 Rome Avenue,0.4536 -4585,110829,20 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Oct 2024,C - 69 to 80,69.0,B - 81 to 91,85.0,BB115LQ,100010354291.0,20 Rome Avenue,0.4536 -4702,110836,22 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,65.0,C - 69 to 80,74.0,BB115LQ,100010354293.0,"22, Rome Avenue",0.4536 -4755,95842,23 Rome Avenue Burnley Lancashire BB11 5LQ,,, BB11 5LQ,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Jun 2010,D - 55 to 68,62.0,D - 55 to 68,65.0,BB115LQ,100010354294.0,"23, Rome Avenue",0.4536 -3562,339023,2 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jun 2021,C - 69 to 80,69.0,B - 81 to 91,83.0,BB114DX,100010348445.0,2 MELROSE AVENUE,0.4652 -3615,362319,3 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,90.0,BB114DX,100010348446.0,3 Melrose Avenue,0.4652 -3668,359891,4 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DX,100010348447.0,4 Melrose Avenue,0.4652 -3717,118466,5 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Sep 2014,D - 55 to 68,66.0,B - 81 to 91,82.0,BB114DX,100010348448.0,"5, Melrose Avenue",0.4652 -3771,182034,6 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Jul 2012,C - 69 to 80,70.0,B - 81 to 91,86.0,BB114DX,100010348449.0,"6, Melrose Avenue",0.4652 -3913,95500,9 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,26 May 2010,C - 69 to 80,69.0,C - 69 to 80,70.0,BB114DX,100010348452.0,"9, Melrose Avenue",0.4652 -4022,101565,11 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,15 May 2025,D - 55 to 68,62.0,B - 81 to 91,88.0,BB114DX,100010348454.0,11 Melrose Avenue,0.4705 -4125,362352,13 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DX,100010348456.0,13 Melrose Avenue,0.4705 -4239,224900,15 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,12 May 2014,C - 69 to 80,70.0,B - 81 to 91,87.0,BB114DX,100010348458.0,"15, Melrose Avenue",0.4705 -4354,224359,17 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Apr 2014,C - 69 to 80,69.0,B - 81 to 91,86.0,BB114DX,100010348460.0,"17, Melrose Avenue",0.4705 -4476,362375,19 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DX,100010348462.0,19 Melrose Avenue,0.4705 -4595,105060,21 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Apr 2022,C - 69 to 80,71.0,B - 81 to 91,89.0,BB114DX,100010348464.0,21 Melrose Avenue,0.4705 -4708,271497,23 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Jan 2017,C - 69 to 80,70.0,B - 81 to 91,86.0,BB114DX,100010348466.0,"23, Melrose Avenue",0.4705 -4810,95859,25 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jun 2010,D - 55 to 68,58.0,C - 69 to 80,71.0,BB114DX,100010348468.0,"25, Melrose Avenue",0.4705 -4904,362399,27 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DX,100010348470.0,27 Melrose Avenue,0.4705 -4993,120793,29 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Nov 2011,D - 55 to 68,64.0,D - 55 to 68,67.0,BB114DX,100010348472.0,"29, Melrose Avenue",0.4705 -5149,116275,32 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Aug 2011,D - 55 to 68,58.0,C - 69 to 80,71.0,BB114DX,100010348475.0,"32, Melrose Avenue",0.4705 -5197,198889,33 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Mar 2013,D - 55 to 68,66.0,B - 81 to 91,84.0,BB114DX,100010348476.0,"33, Melrose Avenue",0.4705 -5257,208553,34 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Jul 2013,D - 55 to 68,65.0,B - 81 to 91,86.0,BB114DX,100010348477.0,"34, Melrose Avenue",0.4705 -5311,362427,35 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2022,E - 39 to 54,47.0,B - 81 to 91,84.0,BB114DX,100010348478.0,35 Melrose Avenue,0.4705 -5422,111532,37 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Aug 2024,D - 55 to 68,64.0,B - 81 to 91,90.0,BB114DX,100010348479.0,37 Melrose Avenue,0.4705 -5523,362443,39 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB114DX,100010348480.0,39 Melrose Avenue,0.4705 -5976,202620,48 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Apr 2013,D - 55 to 68,67.0,B - 81 to 91,85.0,BB114DX,100010348489.0,"48, Melrose Avenue",0.4705 -6068,240987,50 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Dec 2025,D - 55 to 68,64.0,C - 69 to 80,72.0,BB114DX,100010348491.0,50 Melrose Avenue,0.4705 -6157,362492,52 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB114DX,100010348493.0,52 Melrose Avenue,0.4705 -6250,250500,54 Melrose Ave Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Feb 2026,C - 69 to 80,71.0,C - 69 to 80,78.0,BB114DX,100010348495.0,"54, Melrose Avenue",0.4705 -6342,222436,56 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Feb 2014,C - 69 to 80,71.0,B - 81 to 91,87.0,BB114DX,100010348497.0,"56, Melrose Avenue",0.4705 -6439,362517,58 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB114DX,100010348499.0,58 Melrose Avenue,0.4705 -6543,362522,60 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB114DX,100010348501.0,60 Melrose Avenue,0.4705 -6638,124145,62 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Nov 2011,D - 55 to 68,66.0,C - 69 to 80,69.0,BB114DX,100010348503.0,"62, Melrose Avenue",0.4705 -6739,40962,64 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Jun 2009,D - 55 to 68,59.0,C - 69 to 80,70.0,BB114DX,100010348505.0,"64, Melrose Avenue",0.4705 -12446,297022,36 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Apr 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110199.0,"36, Melrose Avenue",0.4705 -12447,297023,38 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Apr 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114DX,10094110200.0,"38, Melrose Avenue",0.4705 -12448,297024,40 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Apr 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110201.0,"40, Melrose Avenue",0.4705 -12449,297025,42 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Apr 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110202.0,"42, Melrose Avenue",0.4705 -12450,297026,44 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Apr 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114DX,10094110203.0,"44, Melrose Avenue",0.4705 -12451,297027,46 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Apr 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110204.0,"46, Melrose Avenue",0.4705 -12453,297028,20 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,02 May 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114DX,10094110193.0,"20, Melrose Avenue",0.4705 -12454,297029,22 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,02 May 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110194.0,"22, Melrose Avenue",0.4705 -12456,297031,26 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,02 May 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114DX,10094110196.0,"26, Melrose Avenue",0.4705 -12457,297032,28 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,02 May 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114DX,10094110197.0,"28, Melrose Avenue",0.4705 -12458,297033,30 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,02 May 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110198.0,"30, Melrose Avenue",0.4705 -12459,316678,8 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: End Terrace,Domestic EPC Required,EPC Present,16 May 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110187.0,"8, Melrose Avenue",0.4652 -12460,304353,10 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,16 May 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110188.0,"10, Melrose Avenue",0.4705 -12461,304354,12 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,16 May 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110189.0,"12, Melrose Avenue",0.4705 -12462,304355,14 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,16 May 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110190.0,"14, Melrose Avenue",0.4705 -12463,304356,16 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,16 May 2018,B - 81 to 91,83.0,A - 92 Plus,96.0,BB114DX,10094110191.0,"16, Melrose Avenue",0.4705 -12464,304357,18 Melrose Avenue Burnley Lancashire BB11 4DX,,, BB11 4DX,House: Semi-Detached,Domestic EPC Required,EPC Present,16 May 2018,B - 81 to 91,84.0,A - 92 Plus,97.0,BB114DX,10094110192.0,"18, Melrose Avenue",0.4705 -3572,252171,4 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Jan 2012,D - 55 to 68,62.0,C - 69 to 80,74.0,BB104LB,100010359566.0,"4, Waddington Avenue",0.4801 -3824,77000,9 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Top,Domestic EPC Required,EPC Present,05 Sep 2024,B - 81 to 91,91.0,B - 81 to 91,91.0,BB104LB,100010359571.0,9 Waddington Avenue,0.4801 -3920,103481,11 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Bottom,Domestic EPC Required,EPC Present,20 Feb 2026,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104LB,100010359573.0,11 Waddington Avenue,0.4845 -4033,40836,13 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Bottom,Domestic EPC Required,EPC Present,02 Jul 2009,D - 55 to 68,64.0,C - 69 to 80,71.0,BB104LB,100010359575.0,"13, Waddington Avenue",0.4845 -4133,89050,15 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Top,Domestic EPC Required,EPC Present,17 Oct 2024,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104LB,100010359577.0,15 Waddington Avenue,0.4845 -4190,76857,16 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Aug 2009,D - 55 to 68,58.0,D - 55 to 68,65.0,BB104LB,100010359578.0,"16, Waddington Avenue",0.4845 -4361,323687,19 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Bottom,Domestic EPC Required,EPC Present,17 Oct 2019,D - 55 to 68,68.0,C - 69 to 80,76.0,BB104LB,100010359580.0,"19, Waddington Avenue",0.4845 -4478,94998,21 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Bottom,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,71.0,C - 69 to 80,76.0,BB104LB,100010359581.0,21 Waddington Avenue,0.4845 -4542,324384,22 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,71.0,B - 81 to 91,85.0,BB104LB,100010359582.0,"22, Waddington Avenue",0.4845 -4599,104918,23 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Top,Domestic EPC Required,EPC Present,02 Feb 2026,C - 69 to 80,70.0,C - 69 to 80,75.0,BB104LB,100010359583.0,"23, Waddington Avenue",0.4845 -4715,76853,25 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,27 Jun 2022,D - 55 to 68,63.0,C - 69 to 80,78.0,BB104LB,100010359585.0,25 Waddington Avenue,0.4845 -4766,324385,26 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Nov 2019,D - 55 to 68,65.0,B - 81 to 91,87.0,BB104LB,100010359586.0,"26, Waddington Avenue",0.4845 -4909,250600,29 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Jun 2016,D - 55 to 68,65.0,B - 81 to 91,85.0,BB104LB,100010359589.0,"29, Waddington Avenue",0.4845 -5001,105449,31 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,15 Aug 2024,D - 55 to 68,59.0,B - 81 to 91,83.0,BB104LB,100010359591.0,31 Waddington Avenue,0.4845 -5048,223395,32 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,03 Apr 2014,D - 55 to 68,61.0,B - 81 to 91,87.0,BB104LB,100010359592.0,"32, Waddington Avenue",0.4845 -5099,324387,33 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,70.0,B - 81 to 91,85.0,BB104LB,100010359593.0,"33, Waddington Avenue",0.4845 -5426,229150,39 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Oct 2014,D - 55 to 68,62.0,B - 81 to 91,84.0,BB104LB,100010359599.0,"39, Waddington Avenue",0.4845 -5529,90073,41 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,19 Jan 2010,D - 55 to 68,56.0,C - 69 to 80,73.0,BB104LB,100010359601.0,"41, Waddington Avenue",0.4845 -5584,227326,42 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jul 2014,D - 55 to 68,58.0,B - 81 to 91,85.0,BB104LB,100010359602.0,"42, Waddington Avenue",0.4845 -5699,324386,44 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2019,C - 69 to 80,70.0,B - 81 to 91,85.0,BB104LB,100010359604.0,"44, Waddington Avenue",0.4845 -5738,244957,45 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Nov 2015,D - 55 to 68,60.0,B - 81 to 91,85.0,BB104LB,100010359605.0,"45, Waddington Avenue",0.4845 -5837,324545,47 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,18 Nov 2019,D - 55 to 68,63.0,C - 69 to 80,78.0,BB104LB,100010359607.0,"47, Waddington Avenue",0.4845 -5933,324543,49 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Nov 2019,C - 69 to 80,71.0,B - 81 to 91,85.0,BB104LB,100010359609.0,49 Waddington Avenue,0.4845 -5981,183305,50 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Feb 2026,D - 55 to 68,68.0,B - 81 to 91,86.0,BB104LB,100010359610.0,"50, Waddington Avenue",0.4845 -6022,76854,51 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Aug 2009,D - 55 to 68,63.0,C - 69 to 80,69.0,BB104LB,100010359611.0,"51, Waddington Avenue",0.4845 -6114,324544,53 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,18 Nov 2019,C - 69 to 80,70.0,B - 81 to 91,85.0,BB104LB,100010359613.0,"53, Waddington Avenue",0.4845 -6393,125267,59 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,27 Sep 2021,D - 55 to 68,62.0,B - 81 to 91,82.0,BB104LB,100010359619.0,59 Waddington Avenue,0.4845 -6548,118273,62 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2011,D - 55 to 68,65.0,C - 69 to 80,70.0,BB104LB,100010359622.0,"62, Waddington Avenue",0.4845 -6641,324388,64 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2019,D - 55 to 68,64.0,B - 81 to 91,85.0,BB104LB,100010359624.0,"64, Waddington Avenue",0.4845 -6744,230645,66 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,14 Jun 2017,D - 55 to 68,64.0,B - 81 to 91,86.0,BB104LB,100010359626.0,"66, Waddington Avenue",0.4845 -7040,222683,72 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,04 Mar 2014,D - 55 to 68,59.0,B - 81 to 91,87.0,BB104LB,100010359632.0,"72, Waddington Avenue",0.4845 -7242,324546,76 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Nov 2019,D - 55 to 68,67.0,B - 81 to 91,86.0,BB104LB,100010359636.0,"76, Waddington Avenue",0.4845 -7339,125012,78 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,14 Nov 2011,D - 55 to 68,60.0,D - 55 to 68,66.0,BB104LB,100010359638.0,78 Waddington Avenue,0.4845 -7631,231158,84 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,House: End Terrace,Domestic EPC Required,EPC Present,20 Jan 2015,D - 55 to 68,57.0,B - 81 to 91,84.0,BB104LB,100010359644.0,"84, Waddington Avenue",0.4845 -7738,323688,86 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Top,Domestic EPC Required,EPC Present,17 Oct 2019,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104LB,100010359646.0,"86, Waddington Avenue",0.4845 -7850,116216,88 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Bottom,Domestic EPC Required,EPC Present,29 Jul 2011,D - 55 to 68,64.0,C - 69 to 80,73.0,BB104LB,100010359648.0,"88, Waddington Avenue",0.4845 -7950,323689,90 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Bottom,Domestic EPC Required,EPC Present,17 Oct 2019,D - 55 to 68,68.0,C - 69 to 80,76.0,BB104LB,100010359650.0,"90, Waddington Avenue",0.4845 -8045,89224,92 Waddington Avenue Burnley Lancashire BB10 4LB,,, BB10 4LB,Flat: Top,Domestic EPC Required,EPC Present,30 Mar 2023,C - 69 to 80,75.0,C - 69 to 80,75.0,BB104LB,100010359652.0,92 Waddington Avenue,0.4845 -3597,221608,15 Bridge Street Padiham Lancashire BB12 8LA,,, BB12 8LA,House: End Terrace,Domestic EPC Required,EPC Present,07 Jan 2014,D - 55 to 68,55.0,B - 81 to 91,85.0,BB128LA,100010329940.0,"15, Bridge Street, Padiham",0.6185 -3696,199318,17 Bridge Street Padiham Lancashire BB12 8LA,,, BB12 8LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Mar 2013,D - 55 to 68,56.0,B - 81 to 91,85.0,BB128LA,100010329942.0,"17, Bridge Street, Padiham",0.6185 -3801,193900,19 Bridge Street Padiham Lancashire BB12 8LA,,, BB12 8LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Dec 2012,D - 55 to 68,61.0,B - 81 to 91,88.0,BB128LA,100010329944.0,"19, Bridge Street, Padiham",0.6185 -4004,94918,23 Bridge Street Padiham Lancashire BB12 8LA,,, BB12 8LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Apr 2010,D - 55 to 68,58.0,D - 55 to 68,67.0,BB128LA,100010329948.0,"23, Bridge Street, Padiham",0.6185 -4111,138696,25 Bridge Street Padiham Lancashire BB12 8LA,,, BB12 8LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Aug 2024,D - 55 to 68,62.0,B - 81 to 91,86.0,BB128LA,100010329950.0,"25 Bridge Street, Padiham",0.6185 -4220,253475,27 Bridge Street Padiham Lancashire BB12 8LA,,, BB12 8LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Aug 2016,D - 55 to 68,57.0,B - 81 to 91,85.0,BB128LA,100010329952.0,"27, Bridge Street, Padiham",0.6185 -4337,221630,29 Bridge Street Padiham Lancashire BB12 8LA,,, BB12 8LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,63.0,B - 81 to 91,88.0,BB128LA,100010329954.0,"29, Bridge Street, Padiham",0.6185 -4577,362380,33 Bridge Street Padiham Lancashire BB12 8LA,,, BB12 8LA,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB128LA,100010329958.0,"33 Bridge Street, Padiham",0.6185 -4692,362388,35 Bridge Street Padiham Lancashire BB12 8LA,,, BB12 8LA,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,D - 55 to 68,59.0,B - 81 to 91,86.0,BB128LA,100010329960.0,"35 Bridge Street, Padiham",0.6185 -3600,295077,1 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,28 Sep 2017,C - 69 to 80,69.0,B - 81 to 91,88.0,BB127BT,100010335882.0,"1, Coronation Avenue, Padiham",0.6268 -3697,236527,3 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,29 May 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127BT,100010335884.0,"3, Coronation Avenue, Padiham",0.6268 -3798,245829,5 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,13 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127BT,100010335886.0,"5, Coronation Avenue, Padiham",0.6268 -3852,245849,6 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Oct 2024,B - 81 to 91,88.0,B - 81 to 91,91.0,BB127BT,100010335887.0,"6 Coronation Avenue, Padiham",0.6268 -3899,252141,7 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2015,C - 69 to 80,69.0,B - 81 to 91,88.0,BB127BT,100010335888.0,"7, Coronation Avenue, Padiham",0.6268 -3951,89432,8 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Nov 2017,C - 69 to 80,75.0,B - 81 to 91,85.0,BB127BT,100010335889.0,"8, Coronation Avenue, Padiham",0.6268 -4003,245827,9 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: End Terr,Domestic EPC Required,EPC Present,10 Nov 2015,C - 69 to 80,69.0,B - 81 to 91,89.0,BB127BT,100010335890.0,"9, Coronation Avenue, Padiham",0.6268 -4110,221638,11 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Oct 2024,B - 81 to 91,88.0,B - 81 to 91,91.0,BB127BT,100010335892.0,"11 Coronation Avenue, Padiham",0.6293 -4219,252135,13 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,89.0,BB127BT,100010335894.0,"13, Coronation Avenue, Padiham",0.6293 -4282,247412,14 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Oct 2024,B - 81 to 91,88.0,B - 81 to 91,91.0,BB127BT,100010335895.0,"14 Coronation Avenue, Padiham",0.6293 -4336,190586,15 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Jun 2024,C - 69 to 80,77.0,B - 81 to 91,86.0,BB127BT,100010335896.0,"15 Coronation Avenue, Padiham",0.6293 -4402,118998,16 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Oct 2024,B - 81 to 91,87.0,B - 81 to 91,90.0,BB127BT,100010335897.0,"16 Coronation Avenue, Padiham",0.6293 -4456,245830,17 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Oct 2024,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BT,100010335898.0,"17 Coronation Avenue, Padiham",0.6293 -4576,245828,19 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,13 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,91.0,BB127BT,100010335900.0,"19, Coronation Avenue, Padiham",0.6293 -4691,250531,21 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Jun 2016,A - 92 Plus,92.0,A - 92 Plus,95.0,BB127BT,100010335902.0,"21, Coronation Avenue, Padiham",0.6293 -4793,245848,23 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: End Terr,Domestic EPC Required,EPC Present,14 Oct 2024,C - 69 to 80,69.0,B - 81 to 91,88.0,BB127BT,100010335904.0,"23 Coronation Avenue, Padiham",0.6293 -4933,245742,26 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,06 Jan 2016,C - 69 to 80,69.0,B - 81 to 91,86.0,BB127BT,100010335907.0,"26, Coronation Avenue, Padiham",0.6293 -4982,245826,27 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,10 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,87.0,BB127BT,100010335908.0,"27, Coronation Avenue, Padiham",0.6293 -5032,136628,28 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,20 Oct 2024,B - 81 to 91,84.0,B - 81 to 91,88.0,BB127BT,100010335909.0,"28 Coronation Avenue, Padiham",0.6293 -5454,252140,36 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,24 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,89.0,BB127BT,100010335917.0,"36, Coronation Avenue, Padiham",0.6293 -5867,222848,44 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,13 Mar 2014,D - 55 to 68,65.0,B - 81 to 91,87.0,BB127BT,100010335921.0,"44, Coronation Avenue, Padiham",0.6293 -6051,252144,48 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,09 Sep 2014,E - 39 to 54,39.0,B - 81 to 91,87.0,BB127BT,100010335923.0,"48, Coronation Avenue, Padiham",0.6293 -6147,105383,50 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,05 Sep 2024,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BT,100010335924.0,"50 Coronation Avenue, Padiham",0.6293 -6240,188281,52 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,20 Oct 2024,B - 81 to 91,84.0,B - 81 to 91,88.0,BB127BT,100010335925.0,"52 Coronation Avenue, Padiham",0.6293 -6423,90061,56 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,20 Oct 2024,B - 81 to 91,81.0,B - 81 to 91,86.0,BB127BT,100010335927.0,"56 Coronation Avenue, Padiham",0.6293 -6526,100121,58 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,20 Oct 2024,C - 69 to 80,70.0,B - 81 to 91,87.0,BB127BT,100010335928.0,"58 Coronation Avenue, Padiham",0.6293 -6623,108805,60 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,20 Oct 2024,C - 69 to 80,70.0,B - 81 to 91,87.0,BB127BT,100010335929.0,"60 Coronation Avenue, Padiham",0.6293 -6725,245831,62 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,24 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,88.0,BB127BT,100010335930.0,"62, Coronation Avenue, Padiham",0.6293 -6825,94984,64 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,24 Jun 2024,B - 81 to 91,81.0,B - 81 to 91,89.0,BB127BT,100010335931.0,"64 Coronation Avenue, Padiham",0.6293 -12689,305126,40 Coronation Avenue Padiham Lancashire BB12 7BT,,, BB12 7BT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,05 Sep 2024,B - 81 to 91,85.0,B - 81 to 91,89.0,BB127BT,100010335919.0,"40 Coronation Avenue, Padiham",0.6293 -3612,362317,7 Tedder Avenue Burnley Lancashire BB12 6DL,,, BB12 6DL,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Apr 2024,D - 55 to 68,61.0,B - 81 to 91,83.0,BB126DL,100010357884.0,7 Tedder Avenue,0.4596 -3763,290411,10 Tedder Avenue Burnley Lancashire BB12 6DL,,, BB12 6DL,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Aug 2017,D - 55 to 68,56.0,B - 81 to 91,86.0,BB126DL,100010357887.0,"10, Tedder Avenue",0.4652 -4123,250596,17 Tedder Avenue Burnley Lancashire BB12 6DL,,, BB12 6DL,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Jun 2016,D - 55 to 68,56.0,C - 69 to 80,77.0,BB126DL,100010357894.0,"17, Tedder Avenue",0.4652 -4235,362359,19 Tedder Avenue Burnley Lancashire BB12 6DL,,, BB12 6DL,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB126DL,100010357896.0,19 Tedder Avenue,0.4652 -4294,89234,20 Tedder Avenue Burnley Lancashire BB12 6DL,,, BB12 6DL,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Aug 2021,D - 55 to 68,66.0,B - 81 to 91,86.0,BB126DL,100010357897.0,20 TEDDER AVENUE,0.4652 -3646,248193,5 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,71.0,B - 81 to 91,88.0,BB104QA,100010332964.0,"5, Carholme Avenue",0.4705 -4686,248194,24 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,73.0,B - 81 to 91,90.0,BB104QA,100010332983.0,"24, Carholme Avenue",0.4754 -4974,40882,30 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Jun 2009,C - 69 to 80,69.0,C - 69 to 80,74.0,BB104QA,100010332989.0,"30, Carholme Avenue",0.4754 -5286,362425,36 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB104QA,100010332995.0,36 Carholme Avenue,0.4754 -5400,362432,38 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: End Terrace,Domestic EPC Required,EPC Present,01 Sep 2022,C - 69 to 80,74.0,B - 81 to 91,89.0,BB104QA,100010332997.0,38 Carholme Avenue,0.4754 -5662,248627,43 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,71.0,B - 81 to 91,88.0,BB104QA,100010333001.0,"43, Carholme Avenue",0.4754 -5718,362453,44 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB104QA,100010333002.0,44 Carholme Avenue,0.4754 -5813,248676,46 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Apr 2016,C - 69 to 80,69.0,B - 81 to 91,88.0,BB104QA,100010333004.0,"46, Carholme Avenue",0.4754 -5864,250036,47 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Apr 2016,C - 69 to 80,70.0,B - 81 to 91,88.0,BB104QA,100010333005.0,"47, Carholme Avenue",0.4754 -6050,248677,51 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Apr 2016,C - 69 to 80,70.0,B - 81 to 91,88.0,BB104QA,100010333009.0,"51, Carholme Avenue",0.4754 -6324,248644,57 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,74.0,B - 81 to 91,91.0,BB104QA,100010333012.0,"57, Carholme Avenue",0.4754 -6420,248645,59 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: End Terrace,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104QA,100010333013.0,"59, Carholme Avenue",0.4754 -6569,248678,62 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: End Terrace,Domestic EPC Required,EPC Present,12 Dec 2025,C - 69 to 80,69.0,C - 69 to 80,77.0,BB104QA,,, -6720,248646,65 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,73.0,B - 81 to 91,90.0,BB104QA,100010333017.0,"65, Carholme Avenue",0.4754 -6769,248647,66 Carholme Avenue Burnley Lancashire BB10 4QA,,, BB10 4QA,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,74.0,B - 81 to 91,89.0,BB104QA,,, -3664,362322,365 Cog Lane Burnley Lancashire BB11 5HR,,, BB11 5HR,House: End Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB115HR,100010335060.0,365 Cog Lane,0.4401 -3762,224901,367 Cog Lane Burnley Lancashire BB11 5HR,,, BB11 5HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Nov 2025,C - 69 to 80,70.0,B - 81 to 91,82.0,BB115HR,100010335062.0,367 Cog Lane,0.4401 -3860,359226,369 Cog Lane Burnley Lancashire BB11 5HR,,, BB11 5HR,House: End Terrace,Domestic EPC Required,EPC Present,04 Mar 2023,D - 55 to 68,67.0,B - 81 to 91,85.0,BB115HR,100010335064.0,369 Cog Lane,0.4401 -4179,362354,375 Cog Lane Burnley Lancashire BB11 5HR,,, BB11 5HR,House: End Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB115HR,100010335070.0,375 Cog Lane,0.4401 -4415,362371,379 Cog Lane Burnley Lancashire BB11 5HR,,, BB11 5HR,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115HR,100010335074.0,379 Cog Lane,0.4401 -4531,40858,381 Cog Lane Burnley Lancashire BB11 5HR,,, BB11 5HR,House: End Terrace,Domestic EPC Required,EPC Present,19 Dec 2008,D - 55 to 68,57.0,C - 69 to 80,73.0,BB115HR,100010335076.0,"381, Cog Lane",0.4401 -4651,362385,383 Cog Lane Burnley Lancashire BB11 5HR,,, BB11 5HR,House: End Terrace,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB115HR,100010335078.0,383 Cog Lane,0.4401 -4857,233912,387 Cog Lane Burnley Lancashire BB11 5HR,,, BB11 5HR,House: End Terrace,Domestic EPC Required,EPC Present,06 Dec 2025,D - 55 to 68,67.0,C - 69 to 80,78.0,BB115HR,100010335082.0,387 Cog Lane,0.4401 -3687,202633,121 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2025,D - 55 to 68,66.0,C - 69 to 80,74.0,BB115LE,,, -3784,362332,123 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115LE,100010338970.0,123 Florence Avenue,0.4801 -4097,362347,129 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115LE,100010338976.0,129 Florence Avenue,0.4801 -4208,96029,131 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Feb 2011,D - 55 to 68,66.0,C - 69 to 80,74.0,BB115LE,100010338978.0,"131, Florence Avenue",0.4801 -4561,234528,137 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,07 Dec 2025,C - 69 to 80,69.0,B - 81 to 91,82.0,BB115LE,100010338984.0,137 Florence Avenue,0.4801 -4677,111308,139 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Nov 2025,D - 55 to 68,65.0,C - 69 to 80,74.0,BB115LE,100010338986.0,139 Florence Avenue,0.4801 -4836,105433,142 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Jan 2011,C - 69 to 80,71.0,C - 69 to 80,75.0,BB115LE,100010338989.0,142 Florence Avenue,0.4801 -4880,111309,143 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB115LE,100010338990.0,143 Florence Avenue,0.4801 -4920,89803,144 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Jul 2025,C - 69 to 80,74.0,B - 81 to 91,81.0,BB115LE,100010338991.0,144 Florence Avenue,0.4801 -4967,40880,145 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,03 Oct 2023,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LE,100010338992.0,145 Florence Avenue,0.4801 -5012,111311,146 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,26 Aug 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115LE,100010338993.0,146 Florence Avenue,0.4801 -5065,289902,147 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Jul 2017,C - 69 to 80,69.0,B - 81 to 91,85.0,BB115LE,100010338994.0,"147, Florence Avenue",0.4801 -5111,362410,148 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115LE,100010338995.0,148 Florence Avenue,0.4801 -5169,99132,149 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Feb 2011,D - 55 to 68,68.0,C - 69 to 80,75.0,BB115LE,100010338996.0,"149, Florence Avenue",0.4801 -5225,111312,150 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Feb 2011,D - 55 to 68,68.0,C - 69 to 80,75.0,BB115LE,100010338997.0,"150, Florence Avenue",0.4801 -5336,111314,152 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,31 Jul 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB115LE,100010338999.0,152 Florence Avenue,0.4801 -5440,340129,154 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Aug 2021,C - 69 to 80,70.0,B - 81 to 91,89.0,BB115LE,100010339000.0,154 Florence Avenue,0.4801 -5946,95863,164 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Jun 2010,D - 55 to 68,66.0,C - 69 to 80,74.0,BB115LE,100010339005.0,"164, Florence Avenue",0.4801 -6037,96027,166 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Dec 2010,E - 39 to 54,54.0,C - 69 to 80,70.0,BB115LE,100010339006.0,"166, Florence Avenue",0.4801 -6215,111316,170 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,09 Feb 2011,D - 55 to 68,63.0,C - 69 to 80,72.0,BB115LE,100010339008.0,"170, Florence Avenue",0.4801 -6312,111317,172 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jul 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115LE,100010339009.0,172 Florence Avenue,0.4801 -6408,95847,174 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LE,100010339010.0,174 Florence Avenue,0.4801 -6506,103479,176 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,10 Mar 2011,D - 55 to 68,66.0,C - 69 to 80,76.0,BB115LE,100010339011.0,"176, Florence Avenue",0.4801 -6607,111318,178 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,20 Oct 2017,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115LE,100010339012.0,"178, Florence Avenue",0.4801 -6708,111319,180 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,65.0,C - 69 to 80,72.0,BB115LE,100010339013.0,"180, Florence Avenue",0.4801 -6808,111320,182 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Sep 2025,C - 69 to 80,72.0,C - 69 to 80,80.0,BB115LE,100010339014.0,182 Florence Avenue,0.4801 -6905,111321,184 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB115LE,100010339015.0,184 Florence Avenue,0.4801 -7104,362566,188 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115LE,100010339017.0,188 Florence Avenue,0.4801 -7305,220111,192 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: End Terrace,Domestic EPC Required,EPC Present,20 Nov 2013,D - 55 to 68,67.0,B - 81 to 91,84.0,BB115LE,100010339019.0,"192, Florence Avenue",0.4801 -9702,69669,127 Florence Avenue Burnley Lancashire BB11 5LE,,, BB11 5LE,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB115LE,100010338974.0,127 Florence Avenue,0.4801 -3721,40823,7 Alma Street Padiham Lancashire BB12 8LF,,, BB12 8LF,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Oct 2008,D - 55 to 68,64.0,C - 69 to 80,70.0,BB128LF,100010327233.0,"7, Alma Street, Padiham",0.6085 -3823,250442,9 Alma Street Padiham Lancashire BB12 8LF,,, BB12 8LF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,01 Jun 2016,D - 55 to 68,65.0,B - 81 to 91,86.0,BB128LF,100010327235.0,"9, Alma Street, Padiham",0.6085 -3918,110763,11 Alma Street Padiham Lancashire BB12 8LF,,, BB12 8LF,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Dec 2010,D - 55 to 68,56.0,C - 69 to 80,73.0,BB128LF,100010327237.0,"11, Alma Street, Padiham",0.6121 -4031,110780,13 Alma Street Padiham Lancashire BB12 8LF,,, BB12 8LF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,15 Feb 2011,D - 55 to 68,65.0,C - 69 to 80,73.0,BB128LF,100010327239.0,"13, Alma Street, Padiham",0.6121 -4138,359931,15 Alma Street Padiham Lancashire BB12 8LF,,, BB12 8LF,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,12 May 2023,D - 55 to 68,66.0,B - 81 to 91,87.0,BB128LF,100010327241.0,"15 Alma Street, Padiham",0.6121 -4246,110799,17 Alma Street Padiham Lancashire BB12 8LF,,, BB12 8LF,Bungalow: End Terr,Domestic EPC Required,EPC Present,25 Nov 2010,D - 55 to 68,62.0,C - 69 to 80,73.0,BB128LF,100010327243.0,"17, Alma Street, Padiham",0.6121 -4363,110814,19 Alma Street Padiham Lancashire BB12 8LF,,, BB12 8LF,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,25 Nov 2010,D - 55 to 68,56.0,C - 69 to 80,72.0,BB128LF,100010327245.0,"19, Alma Street, Padiham",0.6121 -4483,362376,21 Alma Street Padiham Lancashire BB12 8LF,,, BB12 8LF,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128LF,100010327247.0,"21 Alma Street, Padiham",0.6121 -3730,124144,113 Lowerhouse Lane Burnley Lancashire BB12 6JA,,, BB12 6JA,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2011,D - 55 to 68,65.0,C - 69 to 80,70.0,BB126JA,100010347130.0,"113, Lowerhouse Lane",0.4801 -3738,40824,34 Hargher Street Burnley Lancashire BB11 4EG,,, BB11 4EG,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Dec 2023,D - 55 to 68,64.0,B - 81 to 91,84.0,BB114EG,100010341154.0,34 Hargher Street,0.4705 -3769,222014,8 Coniston Avenue Padiham Lancashire BB12 8PE,,, BB12 8PE,House: End Terrace,Domestic EPC Required,EPC Present,20 Jan 2014,D - 55 to 68,66.0,B - 81 to 91,88.0,BB128PE,100010335698.0,"8, Coniston Avenue, Padiham",0.6214 -4075,247943,14 Coniston Avenue Padiham Lancashire BB12 8PE,,, BB12 8PE,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Mar 2016,D - 55 to 68,66.0,B - 81 to 91,85.0,BB128PE,100010335704.0,"14, Coniston Avenue, Padiham",0.6242 -511,362136,9 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: End Terrace,Domestic EPC Required,EPC Present,21 Nov 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB127BX,100010326450.0,"9 Abingdon Road, Padiham",0.6154 -611,362143,11 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Nov 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB127BX,100010326452.0,"11 Abingdon Road, Padiham",0.6185 -860,362152,16 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: End Terrace,Domestic EPC Required,EPC Present,29 Oct 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB127BX,100010326457.0,"16 Abingdon Road, Padiham",0.6185 -959,362159,18 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: End Terrace,Domestic EPC Required,EPC Present,29 Oct 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB127BX,100010326458.0,"18 Abingdon Road, Padiham",0.6185 -1069,362162,20 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127BX,100010326459.0,"20 Abingdon Road, Padiham",0.6185 -1180,362167,22 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127BX,100010326460.0,"22 Abingdon Road, Padiham",0.6185 -9534,362713,6 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Oct 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB127BX,100010326448.0,"6 Abingdon Road, Padiham",0.6154 -664,295082,12 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Oct 2017,C - 69 to 80,69.0,B - 81 to 91,86.0,BB127BX,100010326453.0,"12, Abingdon Road, Padiham",0.6185 -709,250073,13 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 May 2016,C - 69 to 80,70.0,B - 81 to 91,88.0,BB127BX,100010326454.0,"13, Abingdon Road, Padiham",0.6185 -810,98123,15 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2025,C - 69 to 80,70.0,C - 69 to 80,77.0,BB127BX,100010326456.0,"15 Abingdon Road, Padiham",0.6185 -1289,40707,24 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: End Terrace,Domestic EPC Required,EPC Present,16 Jan 2024,C - 69 to 80,70.0,B - 81 to 91,84.0,BB127BX,100010326461.0,"24 Abingdon Road, Padiham",0.6185 -9252,101651,1 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: End Terrace,Domestic EPC Required,EPC Present,13 Oct 2010,D - 55 to 68,67.0,C - 69 to 80,71.0,BB127BX,100010326443.0,"1, Abingdon Road, Padiham",0.6154 -9311,230221,2 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: End Terrace,Domestic EPC Required,EPC Present,07 Dec 2025,D - 55 to 68,59.0,C - 69 to 80,71.0,BB127BX,100010326444.0,"2 Abingdon Road, Padiham",0.6154 -9369,110661,3 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Mar 2011,D - 55 to 68,60.0,C - 69 to 80,74.0,BB127BX,100010326445.0,"3, Abingdon Road, Padiham",0.6154 -9481,105312,5 Abingdon Road Padiham Lancashire BB12 7BX,,, BB12 7BX,House: End Terrace,Domestic EPC Required,EPC Present,30 Oct 2025,E - 39 to 54,50.0,D - 55 to 68,66.0,BB127BX,100010326447.0,"5 Abingdon Road, Padiham",0.6154 -905,362156,8 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,01 Nov 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115RT,100010357446.0,8 Swallow Park,0.4536 -608,108797,2 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,07 Jun 2021,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115RT,100010357440.0,2 SWALLOW PARK,0.4536 -753,241668,5 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,77.0,BB115RT,100010357443.0,5 Swallow Park,0.4536 -957,108704,9 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,15 Mar 2011,D - 55 to 68,64.0,C - 69 to 80,70.0,BB115RT,100010357447.0,"9, Swallow Park",0.4536 -1065,250065,11 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,10 May 2016,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115RT,100010357449.0,"11, Swallow Park",0.4596 -1124,295915,12 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,21 Feb 2018,C - 69 to 80,71.0,B - 81 to 91,86.0,BB115RT,100010357450.0,"12, Swallow Park",0.4596 -1175,266992,13 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,05 Oct 2016,D - 55 to 68,68.0,B - 81 to 91,83.0,BB115RT,100010357451.0,"13, Swallow Park",0.4596 -1284,40706,15 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,19 May 2009,D - 55 to 68,67.0,C - 69 to 80,70.0,BB115RT,100010357453.0,"15, Swallow Park",0.4596 -1342,180072,16 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,23 May 2012,C - 69 to 80,69.0,B - 81 to 91,88.0,BB115RT,100010357454.0,"16, Swallow Park",0.4596 -1391,296643,17 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,14 Mar 2018,C - 69 to 80,73.0,B - 81 to 91,86.0,BB115RT,100010357455.0,"17, Swallow Park",0.4596 -1557,118276,20 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,73.0,C - 69 to 80,83.0,BB115RT,100010357458.0,20 Swallow Park,0.4596 -1662,362192,22 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: Cluster Block,Domestic EPC Required,EPC Present,06 Sep 2022,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115RT,100010357460.0,22 Swallow Park,0.4596 -11533,229677,24 Swallow Park Burnley Lancashire BB11 5RT,,, BB11 5RT,House: End Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,D - 55 to 68,67.0,C - 69 to 80,80.0,BB115RT,100010357462.0,24 Swallow Park,0.4596 -962,375592,1 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,74.0,C - 69 to 80,76.0,BB102BS,10003758756.0,1 Newground Court,0.3333 -1014,375593,2 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,76.0,C - 69 to 80,77.0,BB102BS,10003758755.0,2 Newground Court,0.3333 -1071,325078,3 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,09 Dec 2019,C - 69 to 80,69.0,C - 69 to 80,69.0,BB102BS,10003758741.0,"3, Newground Court",0.3333 -1126,325077,4 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,09 Dec 2019,C - 69 to 80,69.0,C - 69 to 80,72.0,BB102BS,10003758740.0,"4, Newground Court",0.3333 -1183,325076,5 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,09 Dec 2019,D - 55 to 68,68.0,C - 69 to 80,71.0,BB102BS,10003758739.0,"5, Newground Court",0.3333 -1236,325075,6 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,09 Dec 2019,D - 55 to 68,62.0,C - 69 to 80,70.0,BB102BS,10003758738.0,"6, Newground Court",0.3333 -1292,40708,7 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,28 Oct 2008,C - 69 to 80,69.0,C - 69 to 80,75.0,BB102BS,10003758737.0,"7, Newground Court",0.3333 -1345,76958,8 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,17 Sep 2009,C - 69 to 80,76.0,B - 81 to 91,83.0,BB102BS,10003758736.0,"8, Newground Court",0.3333 -1399,188288,9 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,19 Sep 2012,C - 69 to 80,69.0,C - 69 to 80,75.0,BB102BS,10003758735.0,"9, Newground Court",0.3333 -1452,221660,10 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,79.0,C - 69 to 80,80.0,BB102BS,10003758730.0,"10, Newground Court",0.3383 -1507,40720,11 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,07 Sep 2021,C - 69 to 80,76.0,C - 69 to 80,78.0,BB102BS,10003758731.0,11 Newground Court,0.3383 -1562,90250,12 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,15 Oct 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB102BS,10003758732.0,12 Newground Court,0.3383 -1612,252239,13 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,02 Jul 2016,C - 69 to 80,69.0,C - 69 to 80,76.0,BB102BS,10003758733.0,"13, Newground Court",0.3383 -1666,250518,14 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,27 Jan 2026,C - 69 to 80,71.0,C - 69 to 80,74.0,BB102BS,10003758734.0,14 Newground Court,0.3383 -1716,69663,15 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,27 Jul 2009,C - 69 to 80,76.0,B - 81 to 91,81.0,BB102BS,10003758749.0,"15, Newground Court",0.3383 -1773,325074,16 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,30 Jan 2026,C - 69 to 80,76.0,C - 69 to 80,76.0,BB102BS,10003758747.0,16 Newground Court,0.3383 -1826,234695,17 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,21 Apr 2015,C - 69 to 80,72.0,C - 69 to 80,75.0,BB102BS,10003758745.0,"17, Newground Court",0.3383 -1883,325283,18 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,12 Dec 2019,C - 69 to 80,69.0,C - 69 to 80,71.0,BB102BS,10003758743.0,"18, Newground Court",0.3383 -1933,192370,19 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,03 Oct 2021,C - 69 to 80,74.0,C - 69 to 80,75.0,BB102BS,10003758729.0,19 Newground Court,0.3383 -1985,325073,20 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,09 Dec 2019,C - 69 to 80,70.0,C - 69 to 80,71.0,BB102BS,10003758754.0,"20, Newground Court",0.3383 -2036,209266,21 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,07 Aug 2013,C - 69 to 80,69.0,C - 69 to 80,76.0,BB102BS,10003758753.0,"21, Newground Court",0.3383 -2084,362215,22 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,78.0,C - 69 to 80,79.0,BB102BS,10003758752.0,22 Newground Court,0.3383 -2132,295086,23 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,09 Aug 2017,C - 69 to 80,78.0,C - 69 to 80,78.0,BB102BS,10003758751.0,"23, Newground Court",0.3383 -2186,325072,24 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,09 Dec 2019,C - 69 to 80,71.0,C - 69 to 80,71.0,BB102BS,10003758750.0,"24, Newground Court",0.3383 -2232,325071,25 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,30 Jan 2026,C - 69 to 80,71.0,C - 69 to 80,74.0,BB102BS,10003758748.0,25 Newground Court,0.3383 -2280,204083,26 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Bottom,Domestic EPC Required,EPC Present,14 May 2013,C - 69 to 80,73.0,C - 69 to 80,77.0,BB102BS,10003758746.0,"26, Newground Court",0.3383 -2374,40759,28 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,01 Nov 2025,D - 55 to 68,67.0,C - 69 to 80,75.0,BB102BS,10003758742.0,28 Newground Court,0.3383 -12684,325070,27 New Ground Court Burnley Lancashire BB10 2BS,,, BB10 2BS,Flat: Top,Domestic EPC Required,EPC Present,09 Dec 2019,C - 69 to 80,71.0,C - 69 to 80,71.0,BB102BS,10003758744.0,"27, Newground Court",0.3383 -1268,362174,9 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Cluster Block,Domestic EPC Required,EPC Present,25 Oct 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB115RR,10003780674.0,9 Sandpiper Square,0.4754 -841,225316,1 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: End Terrace,Domestic EPC Required,EPC Present,20 May 2014,D - 55 to 68,68.0,B - 81 to 91,86.0,BB115RR,10003780668.0,"1, Sandpiper Square",0.4754 -891,40679,2 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Nov 2025,C - 69 to 80,73.0,B - 81 to 91,85.0,BB115RR,10003780669.0,2 Sandpiper Square,0.4754 -940,40683,3 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2025,C - 69 to 80,76.0,B - 81 to 91,88.0,BB115RR,10003780670.0,3 Sandpiper Square,0.4754 -994,222011,4 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: End Terrace,Domestic EPC Required,EPC Present,16 Jan 2014,D - 55 to 68,66.0,B - 81 to 91,83.0,BB115RR,10003780671.0,"4, Sandpiper Square",0.4754 -1053,105261,5 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Cluster Block,Domestic EPC Required,EPC Present,06 Jan 2011,C - 69 to 80,70.0,C - 69 to 80,73.0,BB115RR,10003780672.0,"5, Sandpiper Square",0.4754 -1105,362164,6 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Cluster Block,Domestic EPC Required,EPC Present,01 Sep 2022,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115RR,10003780673.0,6 Sandpiper Square,0.4754 -1377,210872,11 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: End Terrace,Domestic EPC Required,EPC Present,14 Dec 2025,C - 69 to 80,71.0,B - 81 to 91,84.0,BB115RR,10003780676.0,11 Sandpiper Square,0.4801 -1431,89600,12 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,86.0,BB115RR,10003780677.0,12 Sandpiper Square,0.4801 -1482,40718,13 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: End Terrace,Domestic EPC Required,EPC Present,14 Dec 2025,D - 55 to 68,64.0,C - 69 to 80,77.0,BB115RR,10003780678.0,13 Sandpiper Square,0.4801 -1542,40723,14 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Cluster Block,Domestic EPC Required,EPC Present,12 Jan 2026,C - 69 to 80,74.0,C - 69 to 80,86.0,BB115RR,10003780679.0,14 Sandpiper Square,0.4801 -1589,104053,15 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Cluster Block,Domestic EPC Required,EPC Present,18 Nov 2010,D - 55 to 68,57.0,C - 69 to 80,71.0,BB115RR,10003780680.0,"15, Sandpiper Square",0.4801 -1696,108798,17 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Cluster Block,Domestic EPC Required,EPC Present,16 Mar 2011,C - 69 to 80,69.0,C - 69 to 80,71.0,BB115RR,10003780681.0,"17, Sandpiper Square",0.4801 -1812,362202,19 Sandpiper Square Burnley Lancashire BB11 5RR,,, BB11 5RR,House: Cluster Block,Domestic EPC Required,EPC Present,11 Oct 2022,C - 69 to 80,69.0,B - 81 to 91,83.0,BB115RR,10003780682.0,19 Sandpiper Square,0.4801 -1395,362181,131 Thursby Road Burnley Lancashire BB10 3EX,,, BB10 3EX,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Nov 2023,C - 69 to 80,71.0,A - 92 Plus,84.0,BB103EX,100010358478.0,131 Thursby Road,0.4652 -7922,326437,82 Thursby Road Burnley Lancashire BB10 3EX,,, BB10 3EX,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Feb 2020,C - 69 to 80,72.0,B - 81 to 91,87.0,BB103EX,100010358457.0,"82, Thursby Road",0.4596 -1909,362208,85 Ighten Road Burnley Lancashire BB12 0HP,,, BB12 0HP,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Nov 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB120HP,10003758372.0,85 Ighten Road,0.4536 -2039,375595,8 Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Dec 2023,D - 55 to 68,65.0,B - 81 to 91,86.0,BB127DZ,100010327009.0,"8 Albion Street, Padiham",0.6154 -12467,298559,1 Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Bottom,Domestic EPC Required,EPC Present,17 May 2018,B - 81 to 91,84.0,B - 81 to 91,84.0,BB127DZ,10094110324.0,"1, Albion Street, Padiham",0.6154 -12468,298560,3 Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Top,Domestic EPC Required,EPC Present,17 May 2018,B - 81 to 91,84.0,B - 81 to 91,84.0,BB127DZ,10094110325.0,"3, Albion Street, Padiham",0.6154 -12469,298561,5 Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Bottom,Domestic EPC Required,EPC Present,17 May 2018,B - 81 to 91,84.0,B - 81 to 91,84.0,BB127DZ,10094110326.0,"5, Albion Street, Padiham",0.6154 -12470,298562,7 Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Top,Domestic EPC Required,EPC Present,17 May 2018,B - 81 to 91,83.0,B - 81 to 91,83.0,BB127DZ,10094110327.0,"7, Albion Street, Padiham",0.6154 -12471,298563,9 Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Bottom,Domestic EPC Required,EPC Present,17 May 2018,B - 81 to 91,83.0,B - 81 to 91,83.0,BB127DZ,10094110328.0,"9, Albion Street, Padiham",0.6154 -12472,375596,11 Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Top,Domestic EPC Required,EPC Present,17 May 2018,B - 81 to 91,84.0,B - 81 to 91,84.0,BB127DZ,10094110329.0,"11, Albion Street, Padiham",0.6185 -12473,298565,13 Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Bottom,Domestic EPC Required,EPC Present,17 May 2018,B - 81 to 91,84.0,B - 81 to 91,84.0,BB127DZ,10094110330.0,"13, Albion Street, Padiham",0.6185 -12474,298566,15 Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Top,Domestic EPC Required,EPC Present,17 May 2018,B - 81 to 91,84.0,B - 81 to 91,84.0,BB127DZ,10094110331.0,"15, Albion Street, Padiham",0.6185 -13336,340716,Flat 1 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Bottom,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,78.0,C - 69 to 80,78.0,BB127DZ,10094111949.0,"Flat 1, Perseverance Court, Albion Street",0.6475 -13337,340717,Flat 2 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Bottom,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,78.0,C - 69 to 80,78.0,BB127DZ,10094111950.0,"Flat 2, Perseverance Court, Albion Street",0.6475 -13338,340718,Flat 3 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Bottom,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,78.0,C - 69 to 80,78.0,BB127DZ,10094111951.0,"Flat 3, Perseverance Court, Albion Street",0.6475 -13339,340719,Flat 4 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Bottom,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,75.0,C - 69 to 80,75.0,BB127DZ,10094111952.0,"Flat 4, Perseverance Court, Albion Street",0.6475 -13340,340720,Flat 5 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Bottom,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,78.0,C - 69 to 80,78.0,BB127DZ,10094111953.0,"Flat 5, Perseverance Court, Albion Street",0.6475 -13341,340721,Flat 6 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Top,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,79.0,C - 69 to 80,79.0,BB127DZ,10094111954.0,"Flat 6, Perseverance Court, Albion Street",0.6475 -13342,340722,Flat 7 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Top,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,79.0,C - 69 to 80,79.0,BB127DZ,10094111955.0,"Flat 7, Perseverance Court, Albion Street",0.6475 -13343,340723,Flat 8 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Top,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,80.0,C - 69 to 80,80.0,BB127DZ,10094111956.0,"Flat 8, Perseverance Court, Albion Street",0.6475 -13344,340724,Flat 9 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Top,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,78.0,C - 69 to 80,78.0,BB127DZ,10094111957.0,"Flat 9, Perseverance Court, Albion Street",0.6475 -13345,340725,Flat 10 Perseverance Court Albion Street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,Flat: Top,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,79.0,C - 69 to 80,79.0,BB127DZ,10094111958.0,"Flat 10, Perseverance Court, Albion Street",0.6493 -13351,340726,2 Albion street Padiham Lancashire BB12 7DZ,,, BB12 7DZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Aug 2021,C - 69 to 80,77.0,B - 81 to 91,89.0,BB127DZ,10094111974.0,2 Albion Street,0.4596 -2125,375590,4 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Dec 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115LF,100010358567.0,4 Tiber Avenue,0.4536 -1979,362213,1 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,88.0,BB115LF,100010358564.0,1 Tiber Avenue,0.4536 -2028,110659,2 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,65.0,C - 69 to 80,74.0,BB115LF,100010358565.0,"2, Tiber Avenue",0.4536 -2179,114556,5 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115LF,100010358568.0,5 Tiber Avenue,0.4536 -2223,40753,6 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Dec 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115LF,100010358569.0,6 Tiber Avenue,0.4536 -2272,110731,7 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Aug 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115LF,100010358570.0,7 Tiber Avenue,0.4536 -2316,76946,8 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Jul 2021,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115LF,100010358571.0,8 TIBER AVENUE,0.4536 -2366,229256,9 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Nov 2025,D - 55 to 68,68.0,C - 69 to 80,75.0,BB115LF,100010358572.0,9 Tiber Avenue,0.4536 -2412,40761,10 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB115LF,100010358573.0,10 Tiber Avenue,0.4596 -2465,110767,11 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: End Terrace,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,69.0,C - 69 to 80,76.0,BB115LF,100010358574.0,11 Tiber Avenue,0.4596 -2514,110778,12 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2011,D - 55 to 68,61.0,C - 69 to 80,71.0,BB115LF,100010358575.0,"12, Tiber Avenue",0.4596 -2567,107642,13 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115LF,100010358576.0,13 Tiber Avenue,0.4596 -2621,76921,14 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Sep 2009,D - 55 to 68,67.0,C - 69 to 80,73.0,BB115LF,100010358577.0,"14, Tiber Avenue",0.4596 -2668,191103,15 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Nov 2025,D - 55 to 68,66.0,C - 69 to 80,73.0,BB115LF,100010358578.0,15 Tiber Avenue,0.4596 -2717,238604,16 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: End Terrace,Domestic EPC Required,EPC Present,09 Jul 2015,C - 69 to 80,69.0,B - 81 to 91,83.0,BB115LF,100010358579.0,"16, Tiber Avenue",0.4596 -2864,207691,19 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Jul 2013,D - 55 to 68,67.0,B - 81 to 91,84.0,BB115LF,100010358582.0,"19, Tiber Avenue",0.4596 -2965,110833,21 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Mar 2024,D - 55 to 68,65.0,B - 81 to 91,83.0,BB115LF,100010358584.0,21 Tiber Avenue,0.4596 -3017,362277,22 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: End Terrace,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,A - 92 Plus,96.0,BB115LF,100010358585.0,22 Tiber Avenue,0.4596 -3114,362281,24 Tiber Avenue Burnley Lancashire BB11 5LF,,, BB11 5LF,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,72.0,A - 92 Plus,96.0,BB115LF,100010358586.0,24 Tiber Avenue,0.4596 -2447,362229,18 Kiddrow Lane Burnley Lancashire BB12 6LH,,, BB12 6LH,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Feb 2024,D - 55 to 68,63.0,B - 81 to 91,84.0,BB126LH,100010344587.0,18 Kiddrow Lane,0.4596 -2547,362237,20 Kiddrow Lane Burnley Lancashire BB12 6LH,,, BB12 6LH,House: End Terrace,Domestic EPC Required,EPC Present,01 Sep 2022,E - 39 to 54,47.0,C - 69 to 80,79.0,BB126LH,100010344588.0,20 Kiddrow Lane,0.4596 -2474,362232,341 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Jun 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB115HT,100010335036.0,341 Cog Lane,0.4401 -2580,203981,343 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Aug 2022,D - 55 to 68,56.0,C - 69 to 80,76.0,BB115HT,100010335038.0,343 Cog Lane,0.4401 -2875,111108,349 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Apr 2011,D - 55 to 68,66.0,C - 69 to 80,69.0,BB115HT,100010335044.0,"349, Cog Lane",0.4401 -2977,267333,351 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Oct 2016,D - 55 to 68,64.0,B - 81 to 91,87.0,BB115HT,100010335046.0,"351, Cog Lane",0.4401 -3072,90270,353 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Mar 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB115HT,100010335048.0,353 Cog Lane,0.4401 -3166,362288,355 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115HT,100010335050.0,355 Cog Lane,0.4401 -3261,362298,357 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB115HT,100010335052.0,357 Cog Lane,0.4401 -6589,362525,422 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB115HT,100010335100.0,422 Cog Lane,0.4401 -6883,359925,428 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB115HT,100010335106.0,428 Cog Lane,0.4401 -6985,362556,430 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB115HT,100010335108.0,430 Cog Lane,0.4401 -7560,362597,442 Cog Lane Burnley Lancashire BB11 5HT,,, BB11 5HT,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB115HT,100010335120.0,442 Cog Lane,0.4401 -2946,362270,17 Dane Street Burnley Lancashire BB10 1AB,,, BB10 1AB,House: Mid-Terrace,Domestic EPC Required,No EPC Present,29 Jun 2023,,,,,BB101AB,,, -3187,362291,22 Dane Street Burnley Lancashire BB10 1AB,,, BB10 1AB,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Feb 2024,C - 69 to 80,73.0,B - 81 to 91,89.0,BB101AB,100010336899.0,22 Dane Street,0.4536 -3283,362301,8 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,27 Oct 2023,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104AY,10003780173.0,8 Wellington Court,0.4754 -3005,322657,2 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,78.0,C - 69 to 80,79.0,BB104AY,10003780170.0,"2, Wellington Court",0.4754 -3098,234410,4 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,79.0,C - 69 to 80,80.0,BB104AY,10003780171.0,4 Wellington Court,0.4754 -3144,237127,5 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Top,Domestic EPC Required,EPC Present,09 Jun 2015,C - 69 to 80,72.0,C - 69 to 80,76.0,BB104AY,10003780162.0,"5, Wellington Court",0.4754 -3191,181845,6 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,06 Jul 2012,B - 81 to 91,85.0,B - 81 to 91,88.0,BB104AY,10003780172.0,"6, Wellington Court",0.4754 -3334,272188,9 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Top,Domestic EPC Required,EPC Present,23 Feb 2017,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104AY,10003780164.0,"9, Wellington Court",0.4754 -3381,220114,10 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,14 Nov 2025,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104AY,10003780174.0,10 Wellington Court,0.4801 -3434,136002,11 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Top,Domestic EPC Required,EPC Present,05 Oct 2025,C - 69 to 80,72.0,C - 69 to 80,74.0,BB104AY,10003780165.0,11 Wellington Court,0.4801 -3486,322659,12 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,75.0,C - 69 to 80,79.0,BB104AY,10003780175.0,"12, Wellington Court",0.4801 -3591,247946,14 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104AY,10003780176.0,"14, Wellington Court",0.4801 -3694,322658,16 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104AY,10003780177.0,"16, Wellington Court",0.4801 -3746,136668,17 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,77.0,C - 69 to 80,79.0,BB104AY,10003780167.0,"17, Wellington Court",0.4801 -3790,40826,18 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,26 Aug 2025,C - 69 to 80,77.0,B - 81 to 91,79.0,BB104AY,10003780178.0,18 Wellington Court,0.4801 -3845,242790,19 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Top,Domestic EPC Required,EPC Present,08 Oct 2015,C - 69 to 80,77.0,C - 69 to 80,79.0,BB104AY,10003780168.0,"19, Wellington Court",0.4801 -3892,322647,20 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,76.0,C - 69 to 80,79.0,BB104AY,10003780179.0,"20, Wellington Court",0.4801 -3946,190587,21 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Top,Domestic EPC Required,EPC Present,05 Nov 2025,C - 69 to 80,69.0,C - 69 to 80,71.0,BB104AY,10003780169.0,21 Wellington Court,0.4801 -3997,230657,22 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Bottom,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,77.0,BB104AY,10003780180.0,22 Wellington Court,0.4801 -13130,331072,13 Wellington Court Burnley Lancashire BB10 4AY,,, BB10 4AY,Flat: Top,Domestic EPC Required,EPC Present,14 Dec 2009,C - 69 to 80,78.0,B - 81 to 91,84.0,BB104AY,10003780166.0,"13, Wellington Court",0.4801 -3435,362310,14 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Nov 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB115RX,10003758757.0,14 Nightingale Crescent,0.4961 -2954,40786,4 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Nov 2025,C - 69 to 80,76.0,B - 81 to 91,82.0,BB115RX,10003758764.0,4 Nightingale Crescent,0.4925 -3007,362276,5 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,85.0,BB115RX,10003758763.0,5 Nightingale Crescent,0.4925 -3193,76846,9 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Jun 2023,C - 69 to 80,74.0,B - 81 to 91,86.0,BB115RX,10003758759.0,9 Nightingale Crescent,0.4925 -3239,362296,10 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115RX,10003758768.0,10 Nightingale Crescent,0.4961 -3286,362302,11 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115RX,10003758769.0,11 Nightingale Crescent,0.4961 -3335,104048,12 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Nov 2010,E - 39 to 54,49.0,C - 69 to 80,74.0,BB115RX,10003758770.0,"12, Nightingale Crescent",0.4961 -3383,104050,13 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Aug 2024,C - 69 to 80,75.0,B - 81 to 91,90.0,BB115RX,10003758767.0,13 Nightingale Crescent,0.4961 -3487,142713,15 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: End Terrace,Domestic EPC Required,EPC Present,27 Jun 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115RX,10003758766.0,15 Nightingale Crescent,0.4961 -3541,90063,16 Nightingale Crescent Burnley Lancashire BB11 5RX,,, BB11 5RX,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Nov 2025,C - 69 to 80,78.0,B - 81 to 91,83.0,BB115RX,10003758758.0,16 Nightingale Crescent,0.4961 -3554,362316,27 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Oct 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB127BL,100010360367.0,"27 West View Terrace, Padiham",0.6641 -2408,252139,4 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: End Terr,Domestic EPC Required,EPC Present,13 Nov 2022,B - 81 to 91,84.0,B - 81 to 91,89.0,BB127BL,100010360344.0,"4 West View Terrace, Padiham",0.6617 -2509,252136,6 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127BL,100010360346.0,"6, West View Terrace, Padiham",0.6617 -2616,95018,8 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Oct 2024,B - 81 to 91,88.0,B - 81 to 91,91.0,BB127BL,100010360348.0,"8 West View Terrace, Padiham",0.6617 -2712,40774,10 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Oct 2024,B - 81 to 91,88.0,B - 81 to 91,91.0,BB127BL,100010360350.0,"10 West View Terrace, Padiham",0.6641 -2814,252137,12 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127BL,100010360352.0,"12, West View Terrace, Padiham",0.6641 -2911,202631,14 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,06 Oct 2021,C - 69 to 80,69.0,C - 69 to 80,76.0,BB127BL,100010360354.0,"14 West View Terrace, Padiham",0.6641 -3014,112187,16 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Oct 2024,B - 81 to 91,88.0,B - 81 to 91,91.0,BB127BL,100010360356.0,"16 West View Terrace, Padiham",0.6641 -3112,194079,18 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: End Terr,Domestic EPC Required,EPC Present,14 Oct 2024,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BL,100010360358.0,"18 West View Terrace, Padiham",0.6641 -3205,222847,20 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Oct 2024,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BL,100010360360.0,"20 West View Terrace, Padiham",0.6641 -3301,252138,22 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,20 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127BL,100010360362.0,"22, West View Terrace, Padiham",0.6641 -3352,89273,23 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Oct 2024,B - 81 to 91,84.0,B - 81 to 91,88.0,BB127BL,100010360363.0,"23 West View Terrace, Padiham",0.6641 -3398,234330,24 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Oct 2024,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BL,100010360364.0,"24 West View Terrace, Padiham",0.6641 -3502,245841,26 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Nov 2015,C - 69 to 80,71.0,B - 81 to 91,89.0,BB127BL,100010360366.0,"26, West View Terrace, Padiham",0.6641 -3610,89275,28 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Oct 2024,B - 81 to 91,87.0,B - 81 to 91,91.0,BB127BL,100010360368.0,"28 West View Terrace, Padiham",0.6641 -3711,197945,30 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Oct 2024,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BL,100010360370.0,"30 West View Terrace, Padiham",0.6641 -3756,245839,31 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: End Terr,Domestic EPC Required,EPC Present,14 Oct 2024,B - 81 to 91,84.0,B - 81 to 91,88.0,BB127BL,100010360371.0,"31 West View Terrace, Padiham",0.6641 -3809,245694,32 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Oct 2024,B - 81 to 91,84.0,B - 81 to 91,88.0,BB127BL,100010360372.0,"32 West View Terrace, Padiham",0.6641 -3854,137012,33 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,14 Oct 2024,B - 81 to 91,86.0,B - 81 to 91,89.0,BB127BL,100010360373.0,"33 West View Terrace, Padiham",0.6641 -3907,221675,34 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Sep 2023,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BL,100010360374.0,"34 West View Terrace, Padiham",0.6641 -4013,252143,36 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Oct 2024,B - 81 to 91,85.0,B - 81 to 91,89.0,BB127BL,100010360376.0,"36 West View Terrace, Padiham",0.6641 -4120,245842,38 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Oct 2024,C - 69 to 80,69.0,B - 81 to 91,88.0,BB127BL,100010360378.0,"38 West View Terrace, Padiham",0.6641 -4227,183469,40 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Oct 2024,B - 81 to 91,85.0,B - 81 to 91,89.0,BB127BL,100010360379.0,"40 West View Terrace, Padiham",0.6641 -4346,90256,42 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Oct 2024,B - 81 to 91,85.0,B - 81 to 91,89.0,BB127BL,100010360380.0,"42 West View Terrace, Padiham",0.6641 -4465,245840,44 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Oct 2024,B - 81 to 91,85.0,B - 81 to 91,89.0,BB127BL,100010360381.0,"44 West View Terrace, Padiham",0.6641 -4586,97715,46 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,14 Oct 2024,B - 81 to 91,86.0,B - 81 to 91,90.0,BB127BL,100010360382.0,"46 West View Terrace, Padiham",0.6641 -13281,337958,25 West View Terrace Padiham Lancashire BB12 7BL,,, BB12 7BL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,22 Oct 2024,B - 81 to 91,84.0,B - 81 to 91,88.0,BB127BL,100010360365.0,"25 West View Terrace, Padiham",0.6641 -3661,362321,2 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,21 Nov 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127BY,100010359768.0,"2 Warwick Drive, Padiham",0.6154 -4121,362350,11 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Nov 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB127BY,100010359777.0,"11 Warwick Drive, Padiham",0.6185 -4347,362366,15 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,23 Nov 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127BY,100010359781.0,"15 Warwick Drive, Padiham",0.6185 -5247,362419,32 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,23 Nov 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127BY,100010359798.0,"32 Warwick Drive, Padiham",0.6185 -5299,362426,33 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,23 Nov 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127BY,100010359799.0,"33 Warwick Drive, Padiham",0.6185 -5359,362430,34 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,24 Jan 2024,D - 55 to 68,63.0,B - 81 to 91,82.0,BB127BY,100010359800.0,"34 Warwick Drive, Padiham",0.6185 -5517,362441,37 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Nov 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB127BY,100010359803.0,"37 Warwick Drive, Padiham",0.6185 -5616,362447,39 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,23 Nov 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127BY,100010359805.0,"39 Warwick Drive, Padiham",0.6185 -3705,116210,3 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Jul 2011,D - 55 to 68,68.0,C - 69 to 80,70.0,BB127BY,100010359769.0,"3, Warwick Drive, Padiham",0.6154 -3760,359892,4 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 May 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB127BY,100010359770.0,"4 Warwick Drive, Padiham",0.6154 -3962,210893,8 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,22 Aug 2013,D - 55 to 68,64.0,B - 81 to 91,85.0,BB127BY,100010359774.0,"8, Warwick Drive, Padiham",0.6154 -4070,221672,10 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,70.0,B - 81 to 91,83.0,BB127BY,100010359776.0,"10, Warwick Drive, Padiham",0.6185 -4292,110794,14 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Nov 2010,D - 55 to 68,64.0,C - 69 to 80,78.0,BB127BY,100010359780.0,"14, Warwick Drive, Padiham",0.6185 -4527,76997,18 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,24 Sep 2009,D - 55 to 68,68.0,C - 69 to 80,71.0,BB127BY,100010359784.0,"18, Warwick Drive, Padiham",0.6185 -4587,222811,19 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Jan 2026,D - 55 to 68,65.0,C - 69 to 80,77.0,BB127BY,100010359785.0,"19 Warwick Drive, Padiham",0.6185 -4754,116227,22 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Aug 2011,C - 69 to 80,73.0,C - 69 to 80,75.0,BB127BY,100010359788.0,"22, Warwick Drive, Padiham",0.6185 -4855,267811,24 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,08 Nov 2016,D - 55 to 68,59.0,C - 69 to 80,80.0,BB127BY,100010359790.0,"24, Warwick Drive, Padiham",0.6185 -5039,95214,28 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Jan 2026,D - 55 to 68,64.0,C - 69 to 80,79.0,BB127BY,100010359794.0,"28 Warwick Drive, Padiham",0.6185 -5081,76962,29 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Feb 2026,D - 55 to 68,67.0,C - 69 to 80,80.0,BB127BY,100010359795.0,"29, Warwick Drive, Padiham",0.6185 -5138,76947,30 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Sep 2009,D - 55 to 68,58.0,D - 55 to 68,66.0,BB127BY,100010359796.0,"30, Warwick Drive, Padiham",0.6185 -5185,220112,31 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,20 Nov 2013,D - 55 to 68,65.0,B - 81 to 91,82.0,BB127BY,100010359797.0,"31, Warwick Drive, Padiham",0.6185 -5466,105059,36 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Dec 2010,C - 69 to 80,69.0,C - 69 to 80,73.0,BB127BY,100010359802.0,"36, Warwick Drive, Padiham",0.6185 -5568,95861,38 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Jun 2010,C - 69 to 80,69.0,C - 69 to 80,72.0,BB127BY,100010359804.0,"38, Warwick Drive, Padiham",0.6185 -5675,226276,40 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,10 Jun 2014,D - 55 to 68,66.0,B - 81 to 91,83.0,BB127BY,100010359806.0,"40, Warwick Drive, Padiham",0.6185 -9623,96577,26 Warwick Drive Padiham Lancashire BB12 7BY,,, BB12 7BY,House: End Terrace,Domestic EPC Required,EPC Present,16 Jul 2010,D - 55 to 68,64.0,C - 69 to 80,69.0,BB127BY,100010359792.0,"26, Warwick Drive, Padiham",0.6185 -3745,362328,40 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Oct 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB127DU,100010345326.0,"40 Lancaster Drive, Padiham",0.4027 -4737,362391,58 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Bottom,Domestic EPC Required,EPC Present,24 Oct 2023,C - 69 to 80,71.0,C - 69 to 80,76.0,BB127DU,100010345335.0,"58 Lancaster Drive, Padiham",0.4027 -3846,343112,42 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Nov 2021,C - 69 to 80,74.0,B - 81 to 91,88.0,BB127DU,100010345327.0,"42 Lancaster Drive, Padiham",0.4027 -3942,362338,44 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: End Terrace,Domestic EPC Required,EPC Present,13 Oct 2022,C - 69 to 80,74.0,B - 81 to 91,87.0,BB127DU,100010345328.0,"44 Lancaster Drive, Padiham",0.4027 -4052,103051,46 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Bottom,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,74.0,C - 69 to 80,77.0,BB127DU,100010345329.0,"46 Lancaster Drive, Padiham",0.4027 -4275,179914,50 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Bottom,Domestic EPC Required,EPC Present,14 May 2012,C - 69 to 80,72.0,C - 69 to 80,78.0,BB127DU,100010345331.0,"50, Lancaster Drive, Padiham",0.4027 -4397,114848,52 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Top,Domestic EPC Required,EPC Present,18 Oct 2011,C - 69 to 80,72.0,C - 69 to 80,74.0,BB127DU,100010345332.0,"52, Lancaster Drive, Padiham",0.4027 -4509,113831,54 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Top,Domestic EPC Required,EPC Present,07 Jun 2011,C - 69 to 80,73.0,C - 69 to 80,75.0,BB127DU,100010345333.0,"54, Lancaster Drive, Padiham",0.4027 -4626,119037,56 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Top,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,77.0,C - 69 to 80,77.0,BB127DU,100010345334.0,"56 Lancaster Drive, Padiham",0.4027 -4841,100127,60 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Bottom,Domestic EPC Required,EPC Present,01 Apr 2010,C - 69 to 80,71.0,C - 69 to 80,75.0,BB127DU,100010345336.0,"60, Lancaster Drive, Padiham",0.4027 -4928,94901,62 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Bottom,Domestic EPC Required,EPC Present,09 Apr 2010,C - 69 to 80,73.0,C - 69 to 80,75.0,BB127DU,100010345337.0,"62, Lancaster Drive, Padiham",0.4027 -5020,228328,64 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Top,Domestic EPC Required,EPC Present,10 Sep 2014,C - 69 to 80,75.0,C - 69 to 80,78.0,BB127DU,100010345338.0,"64, Lancaster Drive, Padiham",0.4027 -5230,40897,68 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Top,Domestic EPC Required,EPC Present,18 Feb 2009,B - 81 to 91,81.0,B - 81 to 91,83.0,BB127DU,100010345340.0,"68, Lancaster Drive, Padiham",0.4027 -5449,362438,72 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,86.0,BB127DU,100010345342.0,"72 Lancaster Drive, Padiham",0.4027 -5862,227404,80 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: End Terrace,Domestic EPC Required,EPC Present,05 Aug 2014,D - 55 to 68,67.0,B - 81 to 91,83.0,BB127DU,100010345346.0,"80, Lancaster Drive, Padiham",0.4027 -5957,362473,82 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,86.0,BB127DU,100010345347.0,"82 Lancaster Drive, Padiham",0.4027 -6138,76757,86 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: End Terrace,Domestic EPC Required,EPC Present,04 Aug 2009,C - 69 to 80,72.0,C - 69 to 80,75.0,BB127DU,100010345349.0,"86, Lancaster Drive, Padiham",0.4027 -6227,362499,88 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: End Terrace,Domestic EPC Required,EPC Present,13 Sep 2022,C - 69 to 80,71.0,B - 81 to 91,87.0,BB127DU,100010345350.0,"88 Lancaster Drive, Padiham",0.4027 -6716,211374,98 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Oct 2013,D - 55 to 68,68.0,B - 81 to 91,86.0,BB127DU,100010345355.0,"98, Lancaster Drive, Padiham",0.4027 -6912,76886,102 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Aug 2009,C - 69 to 80,69.0,C - 69 to 80,77.0,BB127DU,100010345357.0,"102, Lancaster Drive, Padiham",0.4068 -7015,110952,104 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Apr 2011,D - 55 to 68,68.0,C - 69 to 80,76.0,BB127DU,100010345358.0,"104, Lancaster Drive, Padiham",0.4068 -7113,362568,106 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: End Terrace,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127DU,100010345359.0,"106 Lancaster Drive, Padiham",0.4068 -7217,362571,108 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Oct 2022,C - 69 to 80,75.0,B - 81 to 91,89.0,BB127DU,100010345360.0,"108 Lancaster Drive, Padiham",0.4068 -7310,362577,110 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127DU,100010345361.0,"110 Lancaster Drive, Padiham",0.4068 -7500,107916,114 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Dec 2025,C - 69 to 80,74.0,B - 81 to 91,87.0,BB127DU,100010345363.0,"114 Lancaster Drive, Padiham",0.4068 -7598,362600,116 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: End Terrace,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127DU,100010345364.0,"116 Lancaster Drive, Padiham",0.4068 -8127,362630,126 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: End Terrace,Domestic EPC Required,EPC Present,04 Oct 2022,C - 69 to 80,75.0,B - 81 to 91,89.0,BB127DU,100010345369.0,"126 Lancaster Drive, Padiham",0.4068 -8219,41031,128 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Mar 2009,C - 69 to 80,72.0,C - 69 to 80,78.0,BB127DU,100010345370.0,"128, Lancaster Drive, Padiham",0.4068 -8431,362648,132 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: End Terrace,Domestic EPC Required,EPC Present,04 Oct 2022,C - 69 to 80,74.0,B - 81 to 91,88.0,BB127DU,100010345372.0,"132 Lancaster Drive, Padiham",0.4068 -8661,362664,136 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB127DU,100010345374.0,"136 Lancaster Drive, Padiham",0.4068 -8784,341047,138 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Sep 2021,D - 55 to 68,67.0,B - 81 to 91,84.0,BB127DU,100010345375.0,"138 Lancaster Drive, Padiham",0.4068 -8904,272217,140 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jul 2017,C - 69 to 80,69.0,B - 81 to 91,87.0,BB127DU,100010345376.0,"140, Lancaster Drive, Padiham",0.4068 -10895,362717,66 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Top,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB127DU,100010345339.0,"66 Lancaster Drive, Padiham",0.4027 -11052,118962,92 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Aug 2011,C - 69 to 80,70.0,C - 69 to 80,73.0,BB127DU,100010345352.0,"92, Lancaster Drive, Padiham",0.4027 -13617,356037,48 Lancaster Drive Hapton Burnley Lancashire BB12 7DU,,, BB12 7DU,Flat: Bottom,Domestic EPC Required,EPC Present,23 Jun 2012,C - 69 to 80,70.0,C - 69 to 80,76.0,BB127DU,100010345330.0,"48, Lancaster Drive, Padiham",0.4027 -4226,362357,33 Abinger Street Burnley Lancashire BB10 3EE,,, BB10 3EE,Flat: Top,Domestic EPC Required,EPC Present,16 Jan 2024,C - 69 to 80,76.0,C - 69 to 80,76.0,BB103EE,100010326481.0,33 Abinger Street,0.4705 -3605,227327,21 Abinger Street Burnley Lancashire BB10 3EE,,, BB10 3EE,Flat: Top,Domestic EPC Required,EPC Present,29 Jul 2014,C - 69 to 80,70.0,C - 69 to 80,71.0,BB103EE,100010326475.0,"21, Abinger Street",0.4705 -3707,250599,23 Abinger Street Burnley Lancashire BB10 3EE,,, BB10 3EE,Flat: Bottom,Domestic EPC Required,EPC Present,08 Nov 2025,C - 69 to 80,76.0,C - 69 to 80,78.0,BB103EE,100010326476.0,23 Abinger Street,0.4705 -3804,232167,25 Abinger Street Burnley Lancashire BB10 3EE,,, BB10 3EE,Flat: Top,Domestic EPC Required,EPC Present,26 Jan 2015,D - 55 to 68,68.0,C - 69 to 80,72.0,BB103EE,100010326477.0,"25, Abinger Street",0.4705 -4010,116206,29 Abinger Street Burnley Lancashire BB10 3EE,,, BB10 3EE,Flat: Top,Domestic EPC Required,EPC Present,08 Nov 2025,B - 81 to 91,90.0,B - 81 to 91,90.0,BB103EE,100010326479.0,29 Abinger Street,0.4705 -4117,289903,31 Abinger Street Burnley Lancashire BB10 3EE,,, BB10 3EE,Flat: Bottom,Domestic EPC Required,EPC Present,06 Jul 2017,C - 69 to 80,74.0,C - 69 to 80,77.0,BB103EE,100010326480.0,"31, Abinger Street",0.4705 -4342,103499,35 Abinger Street Burnley Lancashire BB10 3EE,,, BB10 3EE,Flat: Bottom,Domestic EPC Required,EPC Present,05 Aug 2024,C - 69 to 80,73.0,C - 69 to 80,78.0,BB103EE,100010326482.0,35 Abinger Street,0.4705 -12690,305231,27 Abinger Street Burnley Lancashire BB10 3EE,,, BB10 3EE,Flat: Bottom,Domestic EPC Required,EPC Present,09 Jul 2014,D - 55 to 68,63.0,C - 69 to 80,72.0,BB103EE,100010326478.0,"27, Abinger Street",0.4705 -4398,362369,26 Ruskin Avenue Padiham Lancashire BB12 8TF,,, BB12 8TF,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,74.0,B - 81 to 91,85.0,BB128TF,100010355004.0,"26 Ruskin Avenue, Padiham",0.6185 -3337,362304,6 Ruskin Avenue Padiham Lancashire BB12 8TF,,, BB12 8TF,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,85.0,BB128TF,100010354984.0,"6 Ruskin Avenue, Padiham",0.6154 -3437,362311,8 Ruskin Avenue Padiham Lancashire BB12 8TF,,, BB12 8TF,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB128TF,100010354986.0,"8 Ruskin Avenue, Padiham",0.6154 -3748,203579,14 Ruskin Avenue Padiham Lancashire BB12 8TF,,, BB12 8TF,House: End Terrace,Domestic EPC Required,EPC Present,01 May 2013,D - 55 to 68,66.0,B - 81 to 91,81.0,BB128TF,100010354992.0,"14, Ruskin Avenue, Padiham",0.6185 -3847,182444,16 Ruskin Avenue Padiham Lancashire BB12 8TF,,, BB12 8TF,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jul 2012,D - 55 to 68,67.0,B - 81 to 91,86.0,BB128TF,100010354994.0,"16, Ruskin Avenue, Padiham",0.6185 -3999,362342,19 Ruskin Avenue Padiham Lancashire BB12 8TF,,, BB12 8TF,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB128TF,100010354997.0,"19 Ruskin Avenue, Padiham",0.6185 -4108,362348,21 Ruskin Avenue Padiham Lancashire BB12 8TF,,, BB12 8TF,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,86.0,BB128TF,100010354999.0,"21 Ruskin Avenue, Padiham",0.6185 -4573,196108,29 Ruskin Avenue Padiham Lancashire BB12 8TF,,, BB12 8TF,House: End Terrace,Domestic EPC Required,EPC Present,29 Jan 2013,D - 55 to 68,62.0,B - 81 to 91,84.0,BB128TF,100010355007.0,"29, Ruskin Avenue, Padiham",0.6185 -4733,76920,140 Florence Avenue Burnley Lancashire BB11 5LD,,, BB11 5LD,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Oct 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115LD,100010338987.0,140 Florence Avenue,0.4801 -3479,362312,117 Florence Avenue Burnley Lancashire BB11 5LD,,, BB11 5LD,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115LD,100010338964.0,117 Florence Avenue,0.4801 -3585,98155,119 Florence Avenue Burnley Lancashire BB11 5LD,,, BB11 5LD,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Sep 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115LD,100010338966.0,119 Florence Avenue,0.4801 -4046,111303,128 Florence Avenue Burnley Lancashire BB11 5LD,,, BB11 5LD,House: End Terrace,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,61.0,C - 69 to 80,75.0,BB115LD,100010338975.0,"128, Florence Avenue",0.4801 -4153,111304,130 Florence Avenue Burnley Lancashire BB11 5LD,,, BB11 5LD,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Feb 2011,D - 55 to 68,67.0,C - 69 to 80,75.0,BB115LD,100010338977.0,"130, Florence Avenue",0.4801 -4265,111305,132 Florence Avenue Burnley Lancashire BB11 5LD,,, BB11 5LD,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Mar 2011,D - 55 to 68,60.0,C - 69 to 80,72.0,BB115LD,100010338979.0,"132, Florence Avenue",0.4801 -4384,360284,134 Florence Avenue Burnley Lancashire BB11 5LD,,, BB11 5LD,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Jun 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB115LD,100010338981.0,134 Florence Avenue,0.4801 -4500,111306,136 Florence Avenue Burnley Lancashire BB11 5LD,,, BB11 5LD,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,91.0,BB115LD,100010338983.0,136 Florence Avenue,0.4801 -4620,111307,138 Florence Avenue Burnley Lancashire BB11 5LD,,, BB11 5LD,House: End Terrace,Domestic EPC Required,EPC Present,12 Feb 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB115LD,100010338985.0,138 Florence Avenue,0.4801 -4945,362402,22 St Johns Road Padiham Lancashire BB12 7BN,,, BB12 7BN,House: End Terrace,Domestic EPC Required,EPC Present,29 Jun 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB127BN,100010356559.0,"22 St. Johns Road, Padiham",0.6641 -5006,362405,48 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Top,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104QD,100010330850.0,48 Brownhill Avenue,0.4801 -2990,247982,9 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: End Terrace,Domestic EPC Required,EPC Present,29 Mar 2016,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104QD,100012536466.0,"Brunshaw, 9 Brownhill Avenue",0.4164 -3084,247986,11 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Mar 2016,C - 69 to 80,70.0,B - 81 to 91,85.0,BB104QD,100012536464.0,"11, Brownhill Avenue",0.4801 -3369,247866,17 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,69.0,B - 81 to 91,91.0,BB104QD,100010330823.0,"17, Brownhill Avenue",0.4801 -3471,247867,19 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Mar 2016,D - 55 to 68,67.0,A - 92 Plus,92.0,BB104QD,100010330825.0,19 Brownhill Avenue,0.4801 -3577,247962,21 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,70.0,B - 81 to 91,91.0,BB104QD,100010330827.0,"21, Brownhill Avenue",0.4801 -3930,305162,28 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Bottom,Domestic EPC Required,EPC Present,08 May 2019,C - 69 to 80,72.0,C - 69 to 80,74.0,BB104QD,100010330834.0,"28, Brownhill Avenue",0.4801 -3986,247991,29 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,73.0,B - 81 to 91,90.0,BB104QD,100010330835.0,"29, Brownhill Avenue",0.4801 -4041,342535,30 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Bottom,Domestic EPC Required,EPC Present,11 Nov 2021,C - 69 to 80,72.0,C - 69 to 80,74.0,BB104QD,100010330836.0,30 Brownhill Avenue,0.4801 -4143,305161,32 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Top,Domestic EPC Required,EPC Present,08 May 2009,C - 69 to 80,74.0,C - 69 to 80,75.0,BB104QD,100010330837.0,"32, Brownhill Avenue",0.4801 -4256,125125,34 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Top,Domestic EPC Required,EPC Present,01 Jul 2024,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104QD,100010330838.0,34 Brownhill Avenue,0.4801 -4377,194017,36 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Bottom,Domestic EPC Required,EPC Present,14 Dec 2012,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104QD,100010330840.0,"36, Brownhill Avenue",0.4801 -4436,247987,37 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Mar 2016,C - 69 to 80,72.0,B - 81 to 91,88.0,BB104QD,100010330841.0,"37, Brownhill Avenue",0.4801 -4493,197610,38 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Bottom,Domestic EPC Required,EPC Present,07 Oct 2021,C - 69 to 80,72.0,C - 69 to 80,77.0,BB104QD,100010330842.0,38 Brownhill Avenue,0.4801 -4552,247988,39 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Oct 2025,C - 69 to 80,75.0,B - 81 to 91,81.0,BB104QD,100010330843.0,39 Brownhill Avenue,0.4801 -4609,252265,40 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Top,Domestic EPC Required,EPC Present,07 Jul 2016,C - 69 to 80,73.0,C - 69 to 80,74.0,BB104QD,100010330844.0,"40, Brownhill Avenue",0.4801 -4726,362390,42 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104QD,100010330846.0,42 Brownhill Avenue,0.4801 -4825,40877,44 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Bottom,Domestic EPC Required,EPC Present,12 May 2009,C - 69 to 80,70.0,C - 69 to 80,77.0,BB104QD,100010330847.0,"44, Brownhill Avenue",0.4801 -4918,97705,46 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Flat: Bottom,Domestic EPC Required,EPC Present,05 Aug 2010,C - 69 to 80,69.0,C - 69 to 80,73.0,BB104QD,100010330848.0,"46, Brownhill Avenue",0.4801 -5941,182137,66 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jul 2012,C - 69 to 80,71.0,C - 69 to 80,79.0,BB104QD,100010330868.0,"66, Brownhill Avenue",0.4801 -6301,305160,74 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: End Terrace,Domestic EPC Required,EPC Present,08 May 2019,C - 69 to 80,73.0,B - 81 to 91,89.0,BB104QD,100010330873.0,"74, Brownhill Avenue",0.4801 -6397,286342,76 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Jul 2017,C - 69 to 80,75.0,B - 81 to 91,90.0,BB104QD,100010330874.0,"76, Brownhill Avenue",0.4801 -6503,107908,78 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Mar 2011,C - 69 to 80,75.0,C - 69 to 80,79.0,BB104QD,100010330875.0,"78, Brownhill Avenue",0.4801 -6702,362532,82 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: End Terrace,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,89.0,BB104QD,100010330879.0,82 Brownhill Avenue,0.4801 -6802,267508,84 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Oct 2016,C - 69 to 80,75.0,B - 81 to 91,89.0,BB104QD,100010330881.0,"84, Brownhill Avenue",0.4801 -13229,337633,23 Brownhill Avenue Burnley Lancashire BB10 4QD,,, BB10 4QD,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Mar 2016,D - 55 to 68,68.0,B - 81 to 91,90.0,BB104QD,100010330829.0,"23, Brownhill Avenue",0.4801 -5083,362408,4 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Oct 2023,C - 69 to 80,71.0,C - 69 to 80,74.0,BB127BZ,100010350106.0,"4 Norfolk Avenue, Padiham",0.6185 -5186,362414,6 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Oct 2023,C - 69 to 80,71.0,C - 69 to 80,74.0,BB127BZ,100010350108.0,"6 Norfolk Avenue, Padiham",0.6185 -4942,340128,1 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: End Terrace,Domestic EPC Required,EPC Present,16 Aug 2021,D - 55 to 68,59.0,B - 81 to 91,86.0,BB127BZ,100010350103.0,"1 Norfolk Avenue, Padiham",0.6185 -4989,231069,2 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: End Terrace,Domestic EPC Required,EPC Present,15 Jan 2015,D - 55 to 68,64.0,B - 81 to 91,81.0,BB127BZ,100010350104.0,"2, Norfolk Avenue, Padiham",0.6185 -5037,40887,3 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jan 2026,D - 55 to 68,66.0,B - 81 to 91,82.0,BB127BZ,100010350105.0,"3 Norfolk Avenue, Padiham",0.6185 -5137,76914,5 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jan 2026,D - 55 to 68,64.0,C - 69 to 80,79.0,BB127BZ,100010350107.0,"5 Norfolk Avenue, Padiham",0.6185 -5304,76934,8 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: End Terrace,Domestic EPC Required,EPC Present,17 Feb 2026,C - 69 to 80,70.0,B - 81 to 91,84.0,BB127BZ,100010350110.0,"8, Norfolk Avenue, Padiham",0.6185 -5358,104043,9 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: End Terrace,Domestic EPC Required,EPC Present,14 Jan 2026,D - 55 to 68,64.0,C - 69 to 80,80.0,BB127BZ,100010350111.0,"9 Norfolk Avenue, Padiham",0.6185 -5415,362435,10 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: End Terrace,Domestic EPC Required,EPC Present,05 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127BZ,100010350112.0,"10 Norfolk Avenue, Padiham",0.6214 -5464,88996,11 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jun 2024,C - 69 to 80,70.0,B - 81 to 91,86.0,BB127BZ,100010350113.0,"11 Norfolk Avenue, Padiham",0.6214 -5516,104049,12 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Nov 2010,D - 55 to 68,64.0,C - 69 to 80,76.0,BB127BZ,100010350114.0,"12, Norfolk Avenue, Padiham",0.6214 -5567,124991,13 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Nov 2011,C - 69 to 80,72.0,C - 69 to 80,73.0,BB127BZ,100010350115.0,"13, Norfolk Avenue, Padiham",0.6214 -5618,97233,14 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jul 2010,D - 55 to 68,68.0,C - 69 to 80,72.0,BB127BZ,100010350116.0,"14, Norfolk Avenue, Padiham",0.6214 -5676,120795,15 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: End Terrace,Domestic EPC Required,EPC Present,15 Aug 2024,D - 55 to 68,65.0,B - 81 to 91,89.0,BB127BZ,100010350117.0,"15 Norfolk Avenue, Padiham",0.6214 -5727,191098,16 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: End Terrace,Domestic EPC Required,EPC Present,14 Jun 2024,D - 55 to 68,64.0,B - 81 to 91,84.0,BB127BZ,100010350118.0,"16 Norfolk Avenue, Padiham",0.6214 -5777,40919,17 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: End Terrace,Domestic EPC Required,EPC Present,11 Jun 2009,D - 55 to 68,68.0,C - 69 to 80,73.0,BB127BZ,100010350119.0,"17, Norfolk Avenue, Padiham",0.6214 -5876,97625,19 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Jan 2026,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127BZ,100010350120.0,"19 Norfolk Avenue, Padiham",0.6214 -5968,220125,21 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2013,D - 55 to 68,68.0,B - 81 to 91,89.0,BB127BZ,100010350121.0,"21, Norfolk Avenue, Padiham",0.6214 -6060,40935,23 Norfolk Avenue Padiham Lancashire BB12 7BZ,,, BB12 7BZ,House: End Terrace,Domestic EPC Required,EPC Present,24 Sep 2008,D - 55 to 68,68.0,C - 69 to 80,72.0,BB127BZ,,, -5175,362413,10 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,Flat: Top,Domestic EPC Required,EPC Present,17 Sep 2023,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104NW,100010339627.0,10 Gisburn Grove,0.4652 -4739,94892,1 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,House: End Terrace,Domestic EPC Required,EPC Present,08 Apr 2010,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104NW,100010339618.0,"1, Gisburn Grove",0.4596 -4786,362393,2 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,Flat: Top,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104NW,100010339619.0,2 Gisburn Grove,0.4596 -4885,233997,4 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,Flat: Bottom,Domestic EPC Required,EPC Present,05 Mar 2015,D - 55 to 68,68.0,C - 69 to 80,77.0,BB104NW,100010339621.0,"4, Gisburn Grove",0.4596 -4932,111038,5 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Jun 2010,D - 55 to 68,62.0,C - 69 to 80,78.0,BB104NW,100010339622.0,"5, Gisburn Grove",0.4596 -4977,323691,6 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,Flat: Bottom,Domestic EPC Required,EPC Present,18 Oct 2019,C - 69 to 80,70.0,B - 81 to 91,91.0,BB104NW,100010339623.0,"6, Gisburn Grove",0.4596 -5024,138705,7 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,House: End Terrace,Domestic EPC Required,EPC Present,24 Feb 2026,C - 69 to 80,69.0,B - 81 to 91,83.0,BB104NW,100010339624.0,"7, Gisburn Grove",0.4596 -5071,362407,8 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,Flat: Top,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104NW,100010339625.0,8 Gisburn Grove,0.4596 -5288,274960,12 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,Flat: Bottom,Domestic EPC Required,EPC Present,21 Jun 2017,D - 55 to 68,68.0,C - 69 to 80,72.0,BB104NW,100010339629.0,"12, Gisburn Grove",0.4652 -5401,362433,14 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,Flat: Bottom,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,74.0,C - 69 to 80,77.0,BB104NW,100010339630.0,14 Gisburn Grove,0.4652 -5504,235417,16 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,Flat: Top,Domestic EPC Required,EPC Present,24 Feb 2026,C - 69 to 80,72.0,C - 69 to 80,74.0,BB104NW,100010339631.0,"16, Gisburn Grove",0.4652 -5605,233918,18 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Mar 2015,C - 69 to 80,69.0,B - 81 to 91,87.0,BB104NW,100010339632.0,"18, Gisburn Grove",0.4652 -5714,202618,20 Gisburn Grove Burnley Lancashire BB10 4NW,,, BB10 4NW,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Apr 2013,D - 55 to 68,67.0,B - 81 to 91,85.0,BB104NW,100010339633.0,"20, Gisburn Grove",0.4652 -5202,362417,6 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Oct 2023,C - 69 to 80,75.0,B - 81 to 91,88.0,BB127DT,100010347607.0,"6 Malvern Avenue, Padiham",0.394 -5371,362431,9 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Oct 2023,C - 69 to 80,75.0,B - 81 to 91,88.0,BB127DT,100010347610.0,"9 Malvern Avenue, Padiham",0.394 -5625,362448,14 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,29 Oct 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB127DT,100010347614.0,"14 Malvern Avenue, Padiham",0.3985 -5788,362462,17 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Oct 2023,C - 69 to 80,74.0,B - 81 to 91,87.0,BB127DT,100010347617.0,"17 Malvern Avenue, Padiham",0.3985 -5929,362471,20 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Nov 2023,C - 69 to 80,74.0,B - 81 to 91,87.0,BB127DT,100010347620.0,"20 Malvern Avenue, Padiham",0.3985 -6108,362485,24 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB127DT,100010347624.0,"24 Malvern Avenue, Padiham",0.3985 -6201,362497,26 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB127DT,100012538603.0,"26 Malvern Avenue, Padiham",0.3985 -6247,362503,27 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Nov 2023,C - 69 to 80,74.0,B - 81 to 91,87.0,BB127DT,100010347626.0,"27 Malvern Avenue, Padiham",0.3985 -8285,362643,68 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,29 Oct 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB127DT,100010347649.0,"68 Malvern Avenue, Padiham",0.3985 -8507,362652,72 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Oct 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127DT,100010347651.0,"72 Malvern Avenue, Padiham",0.3985 -13642,362905,34 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Bottom,Domestic EPC Required,EPC Present,24 Jan 2024,C - 69 to 80,74.0,C - 69 to 80,77.0,BB127DT,10003781204.0,34 Malvern Avenue,0.4162 -4953,196094,1 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,75.0,B - 81 to 91,81.0,BB127DT,100010347602.0,"1 Malvern Avenue, Padiham",0.394 -5047,40888,3 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 May 2009,D - 55 to 68,66.0,C - 69 to 80,77.0,BB127DT,100010347604.0,"Clayton Consultancy Ltd, 3 Malvern Avenue, Padiham",0.2968 -5097,106382,4 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Feb 2011,C - 69 to 80,72.0,C - 69 to 80,76.0,BB127DT,100010347605.0,"4, Malvern Avenue, Padiham",0.394 -5151,362412,5 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,04 Oct 2022,C - 69 to 80,74.0,B - 81 to 91,86.0,BB127DT,100010347606.0,"5 Malvern Avenue, Padiham",0.394 -5263,234328,7 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,26 Mar 2015,D - 55 to 68,65.0,B - 81 to 91,87.0,BB127DT,100010347608.0,"7, Malvern Avenue, Padiham",0.394 -5313,237660,8 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 Jun 2015,D - 55 to 68,66.0,B - 81 to 91,86.0,BB127DT,100010347609.0,"8, Malvern Avenue, Padiham",0.394 -5424,362436,10 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Oct 2023,C - 69 to 80,74.0,B - 81 to 91,87.0,BB127DT,100010347611.0,"10 Malvern Avenue, Padiham",0.3985 -5479,40907,11 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,69.0,C - 69 to 80,80.0,BB127DT,100010347612.0,"11 Malvern Avenue, Padiham",0.3985 -5522,362442,12 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Oct 2023,C - 69 to 80,74.0,B - 81 to 91,87.0,BB127DT,100010347613.0,"12 Malvern Avenue, Padiham",0.3985 -5732,240296,16 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,11 Aug 2015,C - 69 to 80,69.0,B - 81 to 91,84.0,BB127DT,100010347616.0,"16, Malvern Avenue, Padiham",0.3985 -5834,189871,18 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Oct 2012,C - 69 to 80,72.0,B - 81 to 91,89.0,BB127DT,100010347618.0,"18, Malvern Avenue, Padiham",0.3985 -6156,250443,25 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Jun 2016,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127DT,100010347625.0,"25, Malvern Avenue, Padiham",0.3985 -6292,90079,28 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Jan 2010,C - 69 to 80,74.0,C - 69 to 80,76.0,BB127DT,100012538604.0,"28, Malvern Avenue, Padiham",0.3985 -6339,97155,29 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Jul 2010,C - 69 to 80,75.0,C - 69 to 80,78.0,BB127DT,100010347627.0,"29, Malvern Avenue, Padiham",0.3985 -6389,40949,30 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2022,C - 69 to 80,74.0,B - 81 to 91,88.0,BB127DT,100012538605.0,"30 Malvern Avenue, Padiham",0.3985 -6442,238014,31 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,12 May 2015,C - 69 to 80,74.0,B - 81 to 91,88.0,BB127DT,100010347628.0,"31, Malvern Avenue, Padiham",0.3985 -6486,316631,32 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Top,Domestic EPC Required,EPC Present,23 Jun 2019,C - 69 to 80,69.0,C - 69 to 80,73.0,BB127DT,100010347629.0,"32, Malvern Avenue, Padiham",0.3985 -6546,98121,33 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,09 Nov 2021,C - 69 to 80,71.0,B - 81 to 91,87.0,BB127DT,100010347630.0,"33 Malvern Avenue, Padiham",0.3985 -6839,343114,39 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,15 Nov 2021,C - 69 to 80,71.0,B - 81 to 91,87.0,BB127DT,100010347633.0,"39 Malvern Avenue, Padiham",0.3985 -6935,226304,41 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,69.0,C - 69 to 80,76.0,BB127DT,100010347634.0,"41 Malvern Avenue, Padiham",0.3985 -7084,201345,44 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Bottom,Domestic EPC Required,EPC Present,02 Apr 2013,C - 69 to 80,72.0,C - 69 to 80,78.0,BB127DT,100010347636.0,"44, Malvern Avenue, Padiham",0.3985 -7137,119218,45 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,17 Oct 2011,C - 69 to 80,72.0,C - 69 to 80,73.0,BB127DT,100010347637.0,"45, Malvern Avenue, Padiham",0.3985 -7182,98147,46 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Bottom,Domestic EPC Required,EPC Present,19 Aug 2010,C - 69 to 80,76.0,C - 69 to 80,78.0,BB127DT,100010347638.0,"46, Malvern Avenue, Padiham",0.3985 -7380,89041,50 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Top,Domestic EPC Required,EPC Present,31 Jul 2023,C - 69 to 80,77.0,C - 69 to 80,77.0,BB127DT,100010347640.0,"50 Malvern Avenue, Padiham",0.3985 -7476,362591,52 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Top,Domestic EPC Required,EPC Present,08 Oct 2023,C - 69 to 80,78.0,C - 69 to 80,78.0,BB127DT,100010347641.0,"52 Malvern Avenue, Padiham",0.3985 -7566,95003,54 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Top,Domestic EPC Required,EPC Present,05 May 2010,C - 69 to 80,79.0,B - 81 to 91,81.0,BB127DT,100010347642.0,"54, Malvern Avenue, Padiham",0.3985 -7678,289908,56 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Bottom,Domestic EPC Required,EPC Present,26 Jul 2017,C - 69 to 80,70.0,C - 69 to 80,73.0,BB127DT,100010347643.0,"56, Malvern Avenue, Padiham",0.3985 -7789,362612,58 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Bottom,Domestic EPC Required,EPC Present,08 Oct 2023,C - 69 to 80,76.0,C - 69 to 80,78.0,BB127DT,100010347644.0,"58 Malvern Avenue, Padiham",0.3985 -7896,362619,60 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Bottom,Domestic EPC Required,EPC Present,08 Oct 2023,C - 69 to 80,76.0,C - 69 to 80,78.0,BB127DT,100010347645.0,"60 Malvern Avenue, Padiham",0.3985 -7994,119250,62 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Top,Domestic EPC Required,EPC Present,18 Oct 2011,C - 69 to 80,75.0,C - 69 to 80,77.0,BB127DT,100010347646.0,"62, Malvern Avenue, Padiham",0.3985 -8089,230491,64 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Top,Domestic EPC Required,EPC Present,03 Jul 2025,C - 69 to 80,77.0,C - 69 to 80,77.0,BB127DT,100010347647.0,"64 Malvern Avenue, Padiham",0.3985 -8189,41030,66 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Top,Domestic EPC Required,EPC Present,25 Nov 2008,D - 55 to 68,65.0,C - 69 to 80,73.0,BB127DT,100010347648.0,"66, Malvern Avenue, Padiham",0.3985 -8392,41036,70 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,27 Jan 2009,D - 55 to 68,68.0,C - 69 to 80,80.0,BB127DT,100010347650.0,"70, Malvern Avenue, Padiham",0.3985 -8627,362660,74 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,13 Sep 2022,C - 69 to 80,75.0,B - 81 to 91,89.0,BB127DT,100010347652.0,"74 Malvern Avenue, Padiham",0.3985 -8750,115840,76 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,13 Jul 2011,D - 55 to 68,67.0,C - 69 to 80,72.0,BB127DT,100010347653.0,"76, Malvern Avenue, Padiham",0.3985 -8865,362679,78 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Apr 2021,C - 69 to 80,71.0,B - 81 to 91,88.0,BB127DT,100010347654.0,"78 MALVERN AVENUE, HAPTON",0.5461 -8980,227727,80 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Aug 2014,C - 69 to 80,69.0,B - 81 to 91,88.0,BB127DT,100010347655.0,"80, Malvern Avenue, Padiham",0.3985 -9091,100545,82 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,House: End Terrace,Domestic EPC Required,EPC Present,16 Sep 2010,C - 69 to 80,73.0,C - 69 to 80,76.0,BB127DT,100010347656.0,"82, Malvern Avenue, Padiham",0.3985 -13592,362892,48 Malvern Avenue Hapton Burnley Lancashire BB12 7DT,,, BB12 7DT,Flat: Bottom,Domestic EPC Required,EPC Present,13 Sep 2022,C - 69 to 80,74.0,C - 69 to 80,77.0,BB127DT,100010347639.0,"48 Malvern Avenue, Padiham",0.3985 -5495,362439,19 Grasmere Avenue Padiham Lancashire BB12 8PG,,, BB12 8PG,House: End Terrace,Domestic EPC Required,EPC Present,28 Oct 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB128PG,100010340225.0,"19 Grasmere Avenue, Padiham",0.6242 -4616,362383,2 Grasmere Avenue Padiham Lancashire BB12 8PG,,, BB12 8PG,House: End Terrace,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,83.0,BB128PG,100010340208.0,"2 Grasmere Avenue, Padiham",0.6214 -4675,186373,3 Grasmere Avenue Padiham Lancashire BB12 8PG,,, BB12 8PG,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Jul 2023,C - 69 to 80,73.0,B - 81 to 91,86.0,BB128PG,100010340209.0,"3 Grasmere Avenue, Padiham",0.6214 -4779,194019,5 Grasmere Avenue Padiham Lancashire BB12 8PG,,, BB12 8PG,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,68.0,B - 81 to 91,86.0,BB128PG,100010340211.0,"5, Grasmere Avenue, Padiham",0.6214 -5112,362411,12 Grasmere Avenue Padiham Lancashire BB12 8PG,,, BB12 8PG,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,85.0,BB128PG,100010340218.0,"12 Grasmere Avenue, Padiham",0.6242 -5278,90322,15 Grasmere Avenue Padiham Lancashire BB12 8PG,,, BB12 8PG,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Mar 2010,C - 69 to 80,71.0,C - 69 to 80,78.0,BB128PG,100010340221.0,"15, Grasmere Avenue, Padiham",0.6242 -5444,250556,18 Grasmere Avenue Padiham Lancashire BB12 8PG,,, BB12 8PG,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Jun 2016,D - 55 to 68,67.0,B - 81 to 91,85.0,BB128PG,100010340224.0,"18, Grasmere Avenue, Padiham",0.6242 -5609,362446,82 Burnley Road Clowbridge Burnley Lancashire BB11 5PB,,, BB11 5PB,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Sep 2023,D - 55 to 68,63.0,B - 81 to 91,86.0,BB115PB,100010332119.0,"82 Burnley Road, Clowbridge",0.5989 -5725,362455,84 Burnley Road Clowbridge Burnley Lancashire BB11 5PB,,, BB11 5PB,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115PB,100010332120.0,"84 Burnley Road, Clowbridge",0.5989 -5909,362470,12 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Feb 2024,C - 69 to 80,72.0,B - 81 to 91,85.0,BB115SB,100010342140.0,12 Helston Close,0.4652 -6001,362475,14 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB115SB,100010342142.0,14 Helston Close,0.4652 -5344,362429,1 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,87.0,BB115SB,100010342129.0,1 Helston Close,0.4596 -5402,362434,2 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB115SB,100010342130.0,2 Helston Close,0.4596 -5452,250064,3 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: End Terrace,Domestic EPC Required,EPC Present,10 May 2016,C - 69 to 80,71.0,B - 81 to 91,88.0,BB115SB,100010342131.0,"3, Helston Close",0.4596 -5505,89264,4 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: End Terrace,Domestic EPC Required,EPC Present,10 Nov 2009,C - 69 to 80,70.0,C - 69 to 80,76.0,BB115SB,100010342132.0,"4, Helston Close",0.4596 -5554,105054,5 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Dec 2010,C - 69 to 80,74.0,C - 69 to 80,76.0,BB115SB,100010342133.0,5 Helston Close,0.4596 -5602,90057,6 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Dec 2025,C - 69 to 80,76.0,C - 69 to 80,82.0,BB115SB,100010342134.0,6 Helston Close,0.4596 -5659,69672,7 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Mar 2026,C - 69 to 80,74.0,B - 81 to 91,86.0,BB115SB,100010342135.0,"7, Helston Close",0.4596 -5716,362452,8 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,88.0,BB115SB,100010342136.0,8 Helston Close,0.4596 -5763,76852,9 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Nov 2025,C - 69 to 80,76.0,B - 81 to 91,87.0,BB115SB,100010342137.0,9 Helston Close,0.4596 -5815,40922,10 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: End Terrace,Domestic EPC Required,EPC Present,25 Sep 2008,D - 55 to 68,68.0,C - 69 to 80,75.0,BB115SB,,, -5865,362468,11 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,85.0,BB115SB,100010342139.0,11 Helston Close,0.4652 -5955,245077,13 Helston Close Burnley Lancashire BB11 5SB,,, BB11 5SB,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Dec 2015,C - 69 to 80,72.0,B - 81 to 91,86.0,BB115SB,100010342141.0,"13, Helston Close",0.4652 -6143,362490,25 Dryden Street Padiham Lancashire BB12 8TQ,,, BB12 8TQ,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Oct 2023,D - 55 to 68,58.0,B - 81 to 91,85.0,BB128TQ,100010337557.0,"25 Dryden Street, Padiham",0.6185 -5462,246350,11 Dryden Street Padiham Lancashire BB12 8TQ,,, BB12 8TQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Dec 2015,D - 55 to 68,58.0,B - 81 to 91,84.0,BB128TQ,100010337543.0,"11, Dryden Street, Padiham",0.6185 -5559,88995,13 Dryden Street Padiham Lancashire BB12 8TQ,,, BB12 8TQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Nov 2017,B - 81 to 91,82.0,B - 81 to 91,91.0,BB128TQ,100010337545.0,"13, Dryden Street, Padiham",0.6185 -6480,362519,29 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Flat: Top,Domestic EPC Required,EPC Present,16 Oct 2023,C - 69 to 80,76.0,C - 69 to 80,76.0,BB126AU,100010332830.0,29 Cardigan Avenue,0.4754 -6289,222427,25 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Flat: Bottom,Domestic EPC Required,EPC Present,11 Sep 2023,C - 69 to 80,74.0,C - 69 to 80,76.0,BB126AU,100010332827.0,25 Cardigan Avenue,0.4754 -6385,194086,27 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Flat: Middle,Domestic EPC Required,EPC Present,19 Dec 2012,C - 69 to 80,76.0,C - 69 to 80,78.0,BB126AU,100010332828.0,"27, Cardigan Avenue",0.4754 -6436,134168,28 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Flat: Bottom,Domestic EPC Required,EPC Present,31 Jan 2012,D - 55 to 68,68.0,C - 69 to 80,71.0,BB126AU,100010332829.0,"28, Cardigan Avenue",0.4754 -6540,138690,30 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Flat: Top,Domestic EPC Required,EPC Present,15 Mar 2012,C - 69 to 80,73.0,C - 69 to 80,76.0,BB126AU,100010332831.0,"30, Cardigan Avenue",0.4754 -6633,180889,32 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Flat: Top,Domestic EPC Required,EPC Present,13 Jun 2012,C - 69 to 80,74.0,C - 69 to 80,78.0,BB126AU,100010332832.0,"32, Cardigan Avenue",0.4754 -6686,235522,33 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: End Terrace,Domestic EPC Required,EPC Present,20 Jul 2017,D - 55 to 68,58.0,C - 69 to 80,74.0,BB126AU,100010332833.0,"33, Cardigan Avenue",0.4754 -6735,362534,34 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,76.0,C - 69 to 80,77.0,BB126AU,100010332834.0,34 Cardigan Avenue,0.4754 -6931,211486,38 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Flat: Top,Domestic EPC Required,EPC Present,16 Oct 2013,C - 69 to 80,71.0,C - 69 to 80,77.0,BB126AU,100010332838.0,"38, Cardigan Avenue",0.4754 -7033,211780,40 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Sep 2017,D - 55 to 68,63.0,C - 69 to 80,79.0,BB126AU,100010332840.0,"40, Cardigan Avenue",0.4754 -7080,250437,41 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: End Terrace,Domestic EPC Required,EPC Present,01 Jun 2016,C - 69 to 80,71.0,B - 81 to 91,86.0,BB126AU,100010332841.0,"41, Cardigan Avenue",0.4754 -7232,333834,44 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Sep 2020,D - 55 to 68,62.0,D - 55 to 68,67.0,BB126AU,100010332844.0,"44 CARDIGAN AVENUE, BURNLEY",0.6242 -7329,268887,46 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,28 Nov 2016,D - 55 to 68,64.0,B - 81 to 91,84.0,BB126AU,100010332846.0,46 Cardigan Avenue,0.4754 -7375,94920,47 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: End Terrace,Domestic EPC Required,EPC Present,26 Jul 2017,C - 69 to 80,75.0,B - 81 to 91,88.0,BB126AU,100010332847.0,"47, Cardigan Avenue",0.4754 -7423,362584,48 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB126AU,100010332848.0,48 Cardigan Avenue,0.4754 -7514,341258,50 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Bungalow: End Terr,Domestic EPC Required,EPC Present,29 Sep 2021,D - 55 to 68,63.0,B - 81 to 91,85.0,BB126AU,100010332850.0,50 Cardigan Avenue,0.4754 -7561,197946,51 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Feb 2013,C - 69 to 80,69.0,B - 81 to 91,88.0,BB126AU,100010332851.0,"51, Cardigan Avenue",0.4754 -7672,41003,53 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Jun 2009,C - 69 to 80,70.0,C - 69 to 80,76.0,BB126AU,100010332853.0,"53, Cardigan Avenue",0.4754 -7835,295083,56 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: End Terrace,Domestic EPC Required,EPC Present,07 Aug 2017,C - 69 to 80,73.0,B - 81 to 91,89.0,BB126AU,100010332856.0,"56, Cardigan Avenue",0.4754 -7942,305190,58 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 May 2019,C - 69 to 80,75.0,B - 81 to 91,89.0,BB126AU,100010332858.0,"58, Cardigan Avenue",0.4754 -8036,295088,60 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Aug 2017,C - 69 to 80,73.0,B - 81 to 91,88.0,BB126AU,100010332860.0,"60, Cardigan Avenue",0.4754 -8184,41029,63 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Jun 2009,D - 55 to 68,66.0,C - 69 to 80,71.0,BB126AU,100010332863.0,"63, Cardigan Avenue",0.4754 -8240,362638,64 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB126AU,100010332864.0,64 Cardigan Avenue,0.4754 -8386,105375,67 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Semi-Detached,Domestic EPC Required,EPC Present,18 May 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB126AU,100010332867.0,67 Cardigan Avenue,0.4754 -8446,295093,68 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Aug 2017,D - 55 to 68,59.0,C - 69 to 80,80.0,BB126AU,100010332868.0,68 Cardigan Avenue,0.4754 -8557,209268,70 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,31 Jul 2017,D - 55 to 68,67.0,B - 81 to 91,87.0,BB126AU,100010332869.0,70 Cardigan Avenue,0.4754 -8681,362667,72 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB126AU,100010332870.0,72 Cardigan Avenue,0.4754 -8803,232686,74 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Feb 2015,D - 55 to 68,56.0,B - 81 to 91,82.0,BB126AU,100010332871.0,"74, Cardigan Avenue",0.4754 -8923,290410,76 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: End Terrace,Domestic EPC Required,EPC Present,01 Aug 2017,C - 69 to 80,73.0,B - 81 to 91,90.0,BB126AU,100010332872.0,"76, Cardigan Avenue",0.4754 -9033,362687,78 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Sep 2023,C - 69 to 80,75.0,B - 81 to 91,88.0,BB126AU,100010332873.0,78 Cardigan Avenue,0.4754 -9146,76859,80 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Aug 2009,C - 69 to 80,72.0,C - 69 to 80,76.0,BB126AU,100010332874.0,"80, Cardigan Avenue",0.4754 -9380,90254,84 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Jun 2024,C - 69 to 80,73.0,B - 81 to 91,89.0,BB126AU,100010332876.0,84 Cardigan Avenue,0.4754 -9491,286351,86 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Jul 2017,C - 69 to 80,73.0,B - 81 to 91,88.0,BB126AU,100010332877.0,"86, Cardigan Avenue",0.4754 -9592,208475,88 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Aug 2017,C - 69 to 80,69.0,B - 81 to 91,87.0,BB126AU,100010332878.0,"88, Cardigan Avenue",0.4754 -12659,303911,36 Cardigan Avenue Burnley Lancashire BB12 6AU,,, BB12 6AU,Flat: Bottom,Domestic EPC Required,EPC Present,18 Dec 2015,D - 55 to 68,66.0,C - 69 to 80,76.0,BB126AU,100010332836.0,"36, Cardigan Avenue",0.4754 -6724,362533,37 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128RL,100010337569.0,"37 Dryden Street, Padiham",0.6185 -7321,77003,49 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,88.0,BB128RL,100010337581.0,"49 Dryden Street, Padiham",0.6185 -6236,245460,27 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,19 Jan 2026,B - 81 to 91,86.0,B - 81 to 91,89.0,BB128RL,100010337559.0,"27 Dryden Street, Padiham",0.6185 -6332,208474,29 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,25 Jul 2013,D - 55 to 68,63.0,B - 81 to 91,86.0,BB128RL,100010337561.0,"29, Dryden Street, Padiham",0.6185 -6429,230222,31 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,21 Nov 2014,D - 55 to 68,65.0,B - 81 to 91,89.0,BB128RL,100010337563.0,"31, Dryden Street, Padiham",0.6185 -6531,226273,33 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,30 Jun 2014,D - 55 to 68,67.0,B - 81 to 91,91.0,BB128RL,100010337565.0,"33, Dryden Street, Padiham",0.6185 -6627,274447,35 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 May 2017,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128RL,100010337567.0,"35, Dryden Street, Padiham",0.6185 -6672,187508,36 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,21 Jan 2026,C - 69 to 80,74.0,C - 69 to 80,77.0,BB128RL,100010337568.0,"36 Dryden Street, Padiham",0.6185 -6779,96146,38 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,06 Nov 2025,D - 55 to 68,65.0,C - 69 to 80,74.0,BB128RL,100010337570.0,"38 Dryden Street, Padiham",0.6185 -6824,221642,39 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Jun 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128RL,100010337571.0,"39 Dryden Street, Padiham",0.6185 -6871,225819,40 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 May 2014,D - 55 to 68,62.0,B - 81 to 91,86.0,BB128RL,100010337572.0,"40, Dryden Street, Padiham",0.6185 -6923,228559,41 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,30 Oct 2025,C - 69 to 80,75.0,B - 81 to 91,81.0,BB128RL,100010337573.0,"41 Dryden Street, Padiham",0.6185 -6971,246352,42 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,19 Jan 2026,C - 69 to 80,78.0,B - 81 to 91,82.0,BB128RL,100010337574.0,"42 Dryden Street, Padiham",0.6185 -7025,362560,43 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,11 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128RL,100010337575.0,"43 Dryden Street, Padiham",0.6185 -7070,228332,44 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Aug 2025,C - 69 to 80,69.0,C - 69 to 80,80.0,BB128RL,100010337576.0,"44 Dryden Street, Padiham",0.6185 -7120,40977,45 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,09 Dec 2008,D - 55 to 68,57.0,D - 55 to 68,64.0,BB128RL,100010337577.0,"45, Dryden Street, Padiham",0.6185 -7166,246349,46 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,09 Dec 2015,D - 55 to 68,63.0,B - 81 to 91,88.0,BB128RL,100010337578.0,"46, Dryden Street, Padiham",0.6185 -7219,76954,47 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,16 Sep 2009,C - 69 to 80,70.0,C - 69 to 80,74.0,BB128RL,100010337579.0,"47, Dryden Street, Padiham",0.6185 -7269,362574,48 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128RL,100010337580.0,"48 Dryden Street, Padiham",0.6185 -7366,246351,50 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB128RL,100010337582.0,"50 Dryden Street, Padiham",0.6185 -7417,40989,51 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Jun 2009,C - 69 to 80,71.0,C - 69 to 80,75.0,BB128RL,100010337583.0,"51, Dryden Street, Padiham",0.6185 -7460,250595,52 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Jun 2016,D - 55 to 68,65.0,B - 81 to 91,88.0,BB128RL,100010337584.0,"52, Dryden Street, Padiham",0.6185 -7509,362593,53 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128RL,100010337585.0,"53 Dryden Street, Padiham",0.6185 -7554,221643,54 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,28 Oct 2024,C - 69 to 80,71.0,A - 92 Plus,92.0,BB128RL,100010337586.0,"54 Dryden Street, Padiham",0.6185 -7664,112963,56 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,19 Jan 2026,D - 55 to 68,65.0,B - 81 to 91,88.0,BB128RL,100010337587.0,"56 Dryden Street, Padiham",0.6185 -7771,41009,58 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Jun 2022,D - 55 to 68,66.0,B - 81 to 91,91.0,BB128RL,100010337588.0,"58 Dryden Street, Padiham",0.6185 -7880,118387,60 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Sep 2022,C - 69 to 80,70.0,B - 81 to 91,91.0,BB128RL,100010337589.0,"60 Dryden Street, Padiham",0.6185 -7984,245741,62 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,06 Jan 2016,D - 55 to 68,65.0,B - 81 to 91,88.0,BB128RL,100010337590.0,"62, Dryden Street, Padiham",0.6185 -8080,105058,64 Dryden Street Padiham Lancashire BB12 8RL,,, BB12 8RL,Bungalow: End Terr,Domestic EPC Required,EPC Present,06 Dec 2010,D - 55 to 68,68.0,C - 69 to 80,73.0,BB128RL,100010337591.0,"64, Dryden Street, Padiham",0.6185 -7365,362580,3 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,House: Mid-Terrace,Domestic EPC Required,EPC Present,09 Oct 2023,C - 69 to 80,69.0,B - 81 to 91,83.0,BB126BA,100010339636.0,3 Glamorgan Grove,0.4705 -7553,289900,7 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: End Terr,Domestic EPC Required,EPC Present,07 Jul 2017,D - 55 to 68,62.0,B - 81 to 91,81.0,BB126BA,100010339640.0,"7, Glamorgan Grove",0.4705 -7606,115839,8 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: End Terr,Domestic EPC Required,EPC Present,13 Jul 2011,D - 55 to 68,64.0,D - 55 to 68,68.0,BB126BA,100010339641.0,8 Glamorgan Grove,0.4705 -7663,41001,9 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,14 May 2009,C - 69 to 80,69.0,C - 69 to 80,74.0,BB126BA,100010339642.0,9 Glamorgan Grove,0.4705 -7718,289901,10 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,10 Jul 2017,C - 69 to 80,69.0,B - 81 to 91,87.0,BB126BA,100010339643.0,10 Glamorgan Grove,0.4754 -7772,190521,11 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Oct 2012,C - 69 to 80,71.0,B - 81 to 91,90.0,BB126BA,100010339644.0,11 Glamorgan Grove,0.4754 -7826,76755,12 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,19 Apr 2023,C - 69 to 80,71.0,B - 81 to 91,88.0,BB126BA,100010339645.0,12 Glamorgan Grove,0.4754 -7881,295085,13 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Aug 2017,C - 69 to 80,69.0,B - 81 to 91,87.0,BB126BA,100010339646.0,13 Glamorgan Grove,0.4754 -7932,222439,14 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Feb 2014,C - 69 to 80,69.0,B - 81 to 91,89.0,BB126BA,100010339647.0,14 Glamorgan Grove,0.4754 -7985,95947,15 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: End Terr,Domestic EPC Required,EPC Present,17 Jun 2010,C - 69 to 80,70.0,C - 69 to 80,71.0,BB126BA,100010339648.0,15 Glamorgan Grove,0.4754 -8029,41022,16 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Jul 2017,D - 55 to 68,61.0,B - 81 to 91,81.0,BB126BA,100010339649.0,16 Glamorgan Grove,0.4754 -8081,125372,17 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: End Terr,Domestic EPC Required,EPC Present,06 Dec 2011,D - 55 to 68,62.0,D - 55 to 68,67.0,BB126BA,100010339650.0,17 Glamorgan Grove,0.4754 -8133,293921,18 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: End Terr,Domestic EPC Required,EPC Present,17 Oct 2017,D - 55 to 68,65.0,B - 81 to 91,89.0,BB126BA,100010339651.0,18 Glamorgan Grove,0.4754 -8179,41028,19 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Jul 2017,D - 55 to 68,65.0,B - 81 to 91,84.0,BB126BA,100010339652.0,19 Glamorgan Grove,0.4754 -8230,289905,20 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Jul 2017,D - 55 to 68,68.0,B - 81 to 91,86.0,BB126BA,100010339653.0,20 Glamorgan Grove,0.4754 -8330,286343,22 Glamorgan Grove Burnley Lancashire BB12 6BA,,, BB12 6BA,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Jul 2017,D - 55 to 68,68.0,B - 81 to 91,86.0,BB126BA,100010339654.0,22 Glamorgan Grove,0.4754 -7397,110909,32 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Dec 2010,D - 55 to 68,60.0,C - 69 to 80,75.0,BB112NR,100010336081.0,"32, Creswick Avenue",0.4754 -7449,110914,33 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Apr 2017,D - 55 to 68,65.0,B - 81 to 91,87.0,BB112NR,100010336082.0,"33, Creswick Avenue",0.4754 -7492,110919,34 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Dec 2010,D - 55 to 68,61.0,C - 69 to 80,75.0,BB112NR,100010336083.0,"34, Creswick Avenue",0.4754 -7589,90101,36 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Dec 2020,D - 55 to 68,59.0,B - 81 to 91,84.0,BB112NR,100010336084.0,"36 CRESWICK AVENUE, BURNLEY",0.6242 -7696,111151,38 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Sep 2021,D - 55 to 68,65.0,B - 81 to 91,87.0,BB112NR,100010336085.0,38 Creswick Avenue,0.4754 -8015,94850,44 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,08 May 2017,D - 55 to 68,61.0,B - 81 to 91,87.0,BB112NR,100010336087.0,"44, Creswick Avenue",0.4754 -8265,362640,49 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB112NR,100010336092.0,49 Creswick Avenue,0.4754 -8476,41038,53 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,13 Dec 2008,C - 69 to 80,72.0,C - 69 to 80,77.0,BB112NR,100010336096.0,"53, Creswick Avenue",0.4754 -8596,103759,55 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Nov 2010,C - 69 to 80,71.0,C - 69 to 80,76.0,BB112NR,100010336098.0,"55, Creswick Avenue",0.4754 -8645,362663,56 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,86.0,BB112NR,100010336099.0,56 Creswick Avenue,0.4754 -8996,111203,62 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,15 May 2017,D - 55 to 68,60.0,B - 81 to 91,83.0,BB112NR,100010336105.0,"62, Creswick Avenue",0.4754 -9230,111209,66 Creswick Avenue Burnley Lancashire BB11 2NR,,, BB11 2NR,House: Semi-Detached,Domestic EPC Required,EPC Present,17 May 2017,D - 55 to 68,63.0,B - 81 to 91,84.0,BB112NR,100010336108.0,"66, Creswick Avenue",0.4754 -7411,248648,79 Carholme Avenue Burnley Lancashire BB10 4PT,,, BB10 4PT,House: Mid-Terrace,Domestic EPC Required,EPC Present,30 Mar 2016,C - 69 to 80,73.0,B - 81 to 91,90.0,BB104PT,100010333029.0,"79, Carholme Avenue",0.4754 -7503,248656,81 Carholme Avenue Burnley Lancashire BB10 4PT,,, BB10 4PT,House: End Terrace,Domestic EPC Required,EPC Present,31 Mar 2016,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104PT,100010333030.0,"81, Carholme Avenue",0.4754 -7706,248657,85 Carholme Avenue Burnley Lancashire BB10 4PT,,, BB10 4PT,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Mar 2016,C - 69 to 80,73.0,B - 81 to 91,87.0,BB104PT,100010333032.0,"85, Carholme Avenue",0.4754 -7926,248679,89 Carholme Avenue Burnley Lancashire BB10 4PT,,, BB10 4PT,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Apr 2016,C - 69 to 80,74.0,B - 81 to 91,90.0,BB104PT,100010333034.0,"89, Carholme Avenue",0.4754 -8126,248658,93 Carholme Avenue Burnley Lancashire BB10 4PT,,, BB10 4PT,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Apr 2016,C - 69 to 80,73.0,B - 81 to 91,90.0,BB104PT,100010333036.0,"93, Carholme Avenue",0.4754 -7444,228075,62 Brunshaw Avenue Burnley Lancashire BB10 4LQ,,, BB10 4LQ,Flat: Bottom,Domestic EPC Required,EPC Present,28 Aug 2014,D - 55 to 68,68.0,C - 69 to 80,75.0,BB104LQ,100010331306.0,"62, Brunshaw Avenue",0.4754 -7961,205790,72 Brunshaw Avenue Burnley Lancashire BB10 4LQ,,, BB10 4LQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Jun 2013,D - 55 to 68,68.0,B - 81 to 91,87.0,BB104LQ,100010331315.0,"72, Brunshaw Avenue",0.4754 -7479,226547,1 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Nov 2025,D - 55 to 68,63.0,C - 69 to 80,72.0,BB115LU,100010335621.0,1 Como Avenue,0.4471 -7528,110655,2 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Feb 2026,C - 69 to 80,75.0,B - 81 to 91,81.0,BB115LU,100010335622.0,"2, Como Avenue",0.4471 -7572,110662,3 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Aug 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB115LU,100010335623.0,3 Como Avenue,0.4471 -7630,269456,4 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Jan 2017,D - 55 to 68,66.0,B - 81 to 91,84.0,BB115LU,100010335624.0,"4, Como Avenue",0.4471 -7683,362605,5 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115LU,100010335625.0,5 Como Avenue,0.4471 -7740,304348,6 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Apr 2019,D - 55 to 68,65.0,B - 81 to 91,87.0,BB115LU,100010335626.0,"6, Como Avenue",0.4471 -7847,41015,8 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Mar 2009,C - 69 to 80,69.0,C - 69 to 80,75.0,BB115LU,100010335628.0,"8, Como Avenue",0.4471 -7953,110754,10 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: End Terrace,Domestic EPC Required,EPC Present,13 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115LU,100010335630.0,10 Como Avenue,0.4536 -8000,180751,11 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Jul 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115LU,100010335631.0,11 Como Avenue,0.4536 -8049,110772,12 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Aug 2025,C - 69 to 80,73.0,C - 69 to 80,80.0,BB115LU,100010335632.0,12 Como Avenue,0.4536 -8149,110784,14 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Dec 2025,D - 55 to 68,64.0,C - 69 to 80,71.0,BB115LU,100010335634.0,14 Como Avenue,0.4536 -8292,110800,17 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: End Terrace,Domestic EPC Required,EPC Present,10 Mar 2011,D - 55 to 68,60.0,C - 69 to 80,75.0,BB115LU,100010335637.0,"17, Como Avenue",0.4536 -8398,110815,19 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,79.0,BB115LU,100010335639.0,19 Como Avenue,0.4536 -8461,89232,20 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Nov 2009,D - 55 to 68,64.0,D - 55 to 68,68.0,BB115LU,100010335640.0,"20, Como Avenue",0.4536 -8510,362653,21 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115LU,100010335641.0,21 Como Avenue,0.4536 -8571,305305,22 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 May 2019,C - 69 to 80,71.0,B - 81 to 91,90.0,BB115LU,100010335642.0,"22, Como Avenue",0.4536 -8628,110872,23 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: End Terrace,Domestic EPC Required,EPC Present,21 Aug 2025,C - 69 to 80,72.0,C - 69 to 80,79.0,BB115LU,100010335643.0,23 Como Avenue,0.4536 -8693,110875,24 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: End Terrace,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,62.0,C - 69 to 80,75.0,BB115LU,100010335644.0,"24, Como Avenue",0.4536 -8754,250553,25 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Jun 2016,C - 69 to 80,70.0,B - 81 to 91,89.0,BB115LU,100010335645.0,"25, Como Avenue",0.4536 -8819,229284,26 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Jul 2025,C - 69 to 80,74.0,B - 81 to 91,81.0,BB115LU,100010335646.0,26 Como Avenue,0.4536 -8873,295078,27 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Oct 2017,D - 55 to 68,65.0,B - 81 to 91,83.0,BB115LU,100010335647.0,"27, Como Avenue",0.4536 -8932,41055,28 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Jun 2009,C - 69 to 80,71.0,C - 69 to 80,75.0,BB115LU,100010335648.0,"28, Como Avenue",0.4536 -8982,304351,29 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: End Terrace,Domestic EPC Required,EPC Present,05 Apr 2019,D - 55 to 68,65.0,B - 81 to 91,87.0,BB115LU,100010335649.0,"29, Como Avenue",0.4536 -9043,362689,30 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,89.0,BB115LU,100010335650.0,30 Como Avenue,0.4536 -9093,103761,31 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Nov 2025,C - 69 to 80,69.0,B - 81 to 91,82.0,BB115LU,100010335651.0,31 Como Avenue,0.4536 -9157,189415,32 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Oct 2012,D - 55 to 68,68.0,B - 81 to 91,83.0,BB115LU,100010335652.0,"32, Como Avenue",0.4536 -9210,114746,33 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Jun 2011,D - 55 to 68,66.0,C - 69 to 80,69.0,BB115LU,100010335653.0,"33, Como Avenue",0.4536 -9273,110918,34 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Jun 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB115LU,100010335654.0,34 Como Avenue,0.4536 -9331,98163,35 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: End Terrace,Domestic EPC Required,EPC Present,07 Apr 2023,C - 69 to 80,73.0,B - 81 to 91,88.0,BB115LU,100010335655.0,35 Como Avenue,0.4536 -9445,304934,37 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Apr 2019,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115LU,100010335657.0,"37, Como Avenue",0.4536 -9756,41088,36 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: End Terrace,Domestic EPC Required,EPC Present,26 Jun 2024,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LU,100010335656.0,36 Como Avenue,0.4536 -11598,241800,39 Como Avenue Burnley Lancashire BB11 5LU,,, BB11 5LU,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Aug 2015,C - 69 to 80,74.0,B - 81 to 91,90.0,BB115LU,100010335658.0,"39, Como Avenue",0.4536 -7505,324890,7 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Nov 2019,D - 55 to 68,64.0,B - 81 to 91,83.0,BB104PD,100010353896.0,"7, Ribchester Avenue",0.4801 -7655,105070,10 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Jan 2026,D - 55 to 68,62.0,C - 69 to 80,80.0,BB104PD,100010353899.0,10 Ribchester Avenue,0.4845 -8373,324891,24 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: End Terrace,Domestic EPC Required,EPC Present,27 Nov 2019,D - 55 to 68,59.0,B - 81 to 91,86.0,BB104PD,100010353912.0,"24, Ribchester Avenue",0.4845 -8484,41039,26 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Jun 2026,D - 55 to 68,68.0,B - 81 to 91,86.0,BB104PD,100010353914.0,"26, Ribchester Avenue",0.4845 -8667,324893,29 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Dec 2025,D - 55 to 68,67.0,B - 81 to 91,82.0,BB104PD,100010353917.0,29 Ribchester Avenue,0.4845 -9126,190988,37 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Oct 2012,C - 69 to 80,71.0,B - 81 to 91,88.0,BB104PD,100010353925.0,"37, Ribchester Avenue",0.4845 -9188,89005,38 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Oct 2009,C - 69 to 80,70.0,C - 69 to 80,75.0,BB104PD,100010353926.0,"38, Ribchester Avenue",0.4845 -9245,324892,39 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Nov 2019,D - 55 to 68,63.0,B - 81 to 91,86.0,BB104PD,100010353927.0,"39, Ribchester Avenue",0.4845 -9363,242930,41 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Oct 2015,C - 69 to 80,72.0,B - 81 to 91,87.0,BB104PD,100010353929.0,"41, Ribchester Avenue",0.4845 -9423,252999,42 Ribchester Avenue Burnley Lancashire BB10 4PD,,, BB10 4PD,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Aug 2016,D - 55 to 68,67.0,B - 81 to 91,85.0,BB104PD,100010353930.0,"42, Ribchester Avenue",0.4845 -7559,110643,1 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Sep 2024,D - 55 to 68,67.0,B - 81 to 91,85.0,BB115LX,100010328075.0,1 Barclay Avenue,0.4652 -7671,115738,3 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Mar 2023,C - 69 to 80,71.0,B - 81 to 91,87.0,BB115LX,100010328077.0,3 Barclay Avenue,0.4652 -7729,110667,4 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Jul 2021,C - 69 to 80,72.0,B - 81 to 91,89.0,BB115LX,100010328078.0,4 BARCLAY AVENUE,0.4652 -7777,272216,5 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Feb 2017,D - 55 to 68,68.0,B - 81 to 91,88.0,BB115LX,100010328079.0,"5, Barclay Avenue",0.4652 -7832,250157,6 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,18 May 2016,C - 69 to 80,69.0,B - 81 to 91,85.0,BB115LX,100010328080.0,"6, Barclay Avenue",0.4652 -7884,97717,7 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Feb 2011,D - 55 to 68,67.0,C - 69 to 80,74.0,BB115LX,100010328081.0,"7, Barclay Avenue",0.4652 -7941,250554,8 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Jun 2016,C - 69 to 80,73.0,B - 81 to 91,89.0,BB115LX,100010328082.0,"8, Barclay Avenue",0.4652 -7988,110745,9 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: End Terrace,Domestic EPC Required,EPC Present,09 Feb 2011,D - 55 to 68,67.0,C - 69 to 80,75.0,BB115LX,100010328083.0,"9, Barclay Avenue",0.4652 -8038,41025,10 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: End Terrace,Domestic EPC Required,EPC Present,25 Sep 2023,C - 69 to 80,74.0,B - 81 to 91,91.0,BB115LX,100010328084.0,10 Barclay Avenue,0.4705 -8138,110768,12 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Sep 2025,C - 69 to 80,72.0,C - 69 to 80,82.0,BB115LX,100010328086.0,12 Barclay Avenue,0.4705 -8188,210923,13 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2025,C - 69 to 80,71.0,B - 81 to 91,84.0,BB115LX,100010328087.0,13 Barclay Avenue,0.4705 -8242,69488,14 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Dec 2010,D - 55 to 68,63.0,C - 69 to 80,75.0,BB115LX,100010328088.0,"14, Barclay Avenue",0.4705 -8389,89002,17 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: End Terrace,Domestic EPC Required,EPC Present,16 Oct 2009,C - 69 to 80,73.0,C - 69 to 80,73.0,BB115LX,100010328091.0,"17, Barclay Avenue",0.4705 -8444,110809,18 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: End Terrace,Domestic EPC Required,EPC Present,08 Feb 2011,D - 55 to 68,61.0,C - 69 to 80,75.0,BB115LX,100010328092.0,"18, Barclay Avenue",0.4705 -8555,41042,20 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Mid-Terrace,Domestic EPC Required,EPC Present,26 May 2009,D - 55 to 68,60.0,C - 69 to 80,74.0,BB115LX,100010328094.0,"20, Barclay Avenue",0.4705 -8680,101657,22 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Oct 2010,C - 69 to 80,70.0,C - 69 to 80,74.0,BB115LX,100010328096.0,"22, Barclay Avenue",0.4705 -8743,110871,23 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: End Terrace,Domestic EPC Required,EPC Present,08 Feb 2010,D - 55 to 68,60.0,C - 69 to 80,75.0,BB115LX,100010328097.0,"23, Barclay Avenue",0.4705 -8802,253481,24 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: End Terrace,Domestic EPC Required,EPC Present,19 Sep 2016,C - 69 to 80,71.0,B - 81 to 91,88.0,BB115LX,100010328098.0,"24, Barclay Avenue",0.4705 -8862,230178,25 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Jul 2025,C - 69 to 80,74.0,C - 69 to 80,80.0,BB115LX,100010328099.0,25 Barclay Avenue,0.4705 -8922,112878,26 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,24 May 2011,D - 55 to 68,67.0,C - 69 to 80,69.0,BB115LX,100010328100.0,"26, Barclay Avenue",0.4705 -8972,89507,27 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Nov 2025,C - 69 to 80,72.0,B - 81 to 91,86.0,BB115LX,100010328101.0,27 Barclay Avenue,0.4705 -9145,110896,30 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: End Terrace,Domestic EPC Required,EPC Present,05 Jan 2022,C - 69 to 80,73.0,B - 81 to 91,90.0,BB115LX,100010328104.0,30 Barclay Avenue,0.4705 -9202,110899,31 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jul 2024,C - 69 to 80,70.0,B - 81 to 91,88.0,BB115LX,100010328105.0,31 Barclay Avenue,0.4705 -9261,41068,32 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Jan 2026,D - 55 to 68,68.0,C - 69 to 80,82.0,BB115LX,100010328106.0,32 Barclay Avenue,0.4705 -9320,110911,33 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Aug 2025,C - 69 to 80,73.0,B - 81 to 91,81.0,BB115LX,100010328107.0,33 Barclay Avenue,0.4705 -9434,110636,35 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: End Terrace,Domestic EPC Required,EPC Present,13 Jan 2026,C - 69 to 80,72.0,B - 81 to 91,86.0,BB115LX,100010328109.0,35 Barclay Avenue,0.4705 -9490,180749,36 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: End Terrace,Domestic EPC Required,EPC Present,25 Nov 2025,C - 69 to 80,69.0,B - 81 to 91,82.0,BB115LX,100010328110.0,36 Barclay Avenue,0.4705 -10868,119598,28 Barclay Avenue Burnley Lancashire BB11 5LX,,, BB11 5LX,House: Semi-Detached,Domestic EPC Required,EPC Present,24 Oct 2011,D - 55 to 68,64.0,D - 55 to 68,67.0,BB115LX,100010328102.0,"28, Barclay Avenue",0.4705 -7576,40996,5 Bank Street Padiham Lancashire BB12 8HQ,,, BB12 8HQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,19 Jul 2022,D - 55 to 68,65.0,C - 69 to 80,74.0,BB128HQ,100010327974.0,"5 Bank Street, Padiham",0.6085 -7688,244944,7 Bank Street Padiham Lancashire BB12 8HQ,,, BB12 8HQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,03 Nov 2015,C - 69 to 80,70.0,B - 81 to 91,89.0,BB128HQ,100010327975.0,"7, Bank Street, Padiham",0.6085 -7794,190622,9 Bank Street Padiham Lancashire BB12 8HQ,,, BB12 8HQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,70.0,B - 81 to 91,78.0,BB128HQ,100010327976.0,"9 Bank Street, Padiham",0.6085 -7901,359934,11 Bank Street Padiham Lancashire BB12 8HQ,,, BB12 8HQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 May 2023,C - 69 to 80,69.0,B - 81 to 91,89.0,BB128HQ,100010327977.0,"11 Bank Street, Padiham",0.6121 -7593,40998,1 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,16 Oct 2008,D - 55 to 68,68.0,C - 69 to 80,73.0,BB127EB,100010328604.0,"1, Bedford Place, Padiham",0.6154 -7757,117345,4 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,01 Sep 2011,D - 55 to 68,67.0,C - 69 to 80,70.0,BB127EB,100010328607.0,"4, Bedford Place, Padiham",0.6154 -7812,41013,5 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 May 2009,D - 55 to 68,67.0,C - 69 to 80,71.0,BB127EB,100010328608.0,"5, Bedford Place, Padiham",0.6154 -8019,362626,9 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127EB,100010328612.0,"9 Bedford Place, Padiham",0.6154 -8069,362629,10 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127EB,100010328613.0,"10 Bedford Place, Padiham",0.6185 -8170,362635,12 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,73.0,B - 81 to 91,87.0,BB127EB,100010328615.0,"12 Bedford Place, Padiham",0.6185 -8267,252198,14 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Dec 2023,C - 69 to 80,70.0,B - 81 to 91,85.0,BB127EB,100010328617.0,"14 Bedford Place, Padiham",0.6185 -8319,191099,15 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,08 Nov 2012,D - 55 to 68,68.0,B - 81 to 91,85.0,BB127EB,100010328618.0,"15, Bedford Place, Padiham",0.6185 -8371,41034,16 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,10 Feb 2009,D - 55 to 68,66.0,C - 69 to 80,72.0,BB127EB,100010328619.0,"16, Bedford Place, Padiham",0.6185 -8422,362647,17 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,86.0,BB127EB,100010328620.0,"17 Bedford Place, Padiham",0.6185 -8481,250423,18 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,24 May 2016,D - 55 to 68,68.0,B - 81 to 91,88.0,BB127EB,100010328621.0,"18, Bedford Place, Padiham",0.6185 -8532,89443,19 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Jan 2026,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127EB,100010328622.0,"19 Bedford Place, Padiham",0.6185 -8599,191100,20 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Nov 2012,C - 69 to 80,70.0,B - 81 to 91,90.0,BB127EB,100010328623.0,"20, Bedford Place, Padiham",0.6185 -8658,89040,21 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Mar 2026,D - 55 to 68,67.0,B - 81 to 91,82.0,BB127EB,100010328624.0,"21, Bedford Place, Padiham",0.6185 -8720,252234,22 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Jun 2016,C - 69 to 80,70.0,B - 81 to 91,89.0,BB127EB,100010328625.0,"22, Bedford Place, Padiham",0.6185 -8778,221628,23 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,67.0,B - 81 to 91,86.0,BB127EB,100010328626.0,"23, Bedford Place, Padiham",0.6185 -8842,97234,24 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,15 Sep 2025,C - 69 to 80,69.0,C - 69 to 80,77.0,BB127EB,100010328627.0,"24 Bedford Place, Padiham",0.6185 -8901,41054,25 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,23 Dec 2010,D - 55 to 68,59.0,C - 69 to 80,74.0,BB127EB,100010328628.0,"25, Bedford Place, Padiham",0.6185 -9008,88991,27 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,17 Jul 2024,C - 69 to 80,73.0,B - 81 to 91,91.0,BB127EB,100010328629.0,"27 Bedford Place, Padiham",0.6185 -9118,41062,29 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Mar 2023,C - 69 to 80,70.0,C - 69 to 80,86.0,BB127EB,100010328630.0,"29, Bedford Place, Padiham",0.6185 -9236,362701,31 Bedford Place Padiham Lancashire BB12 7EB,,, BB12 7EB,House: End Terrace,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB127EB,100010328631.0,"31 Bedford Place, Padiham",0.6185 -7605,138695,3 Pitt Street Padiham Lancashire BB12 8RR,,, BB12 8RR,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Mar 2012,D - 55 to 68,57.0,D - 55 to 68,62.0,BB128RR,100010352236.0,"3, Pitt Street, Padiham",0.6085 -7634,362602,27 Harold Street Burnley Lancashire BB11 4PB,,, BB11 4PB,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB114PB,100010341442.0,27 Harold Street,0.4652 -7643,274959,27a Harold Street Burnley Lancashire BB11 4PB,,, BB11 4PB,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Jun 2017,D - 55 to 68,58.0,D - 55 to 68,61.0,BB114PB,100010341441.0,"27a, Harold Street",0.5219 -7644,116221,6 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB104JY,100010354143.0,6 Rimington Avenue,0.4754 -7751,324899,8 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2019,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104JY,100010354145.0,"8, Rimington Avenue",0.4754 -7860,108015,10 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Jun 2026,C - 69 to 80,71.0,B - 81 to 91,86.0,BB104JY,100010354146.0,"10, Rimington Avenue",0.4801 -7964,229510,12 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Oct 2014,C - 69 to 80,70.0,B - 81 to 91,84.0,BB104JY,100010354148.0,"12, Rimington Avenue",0.4801 -8060,186172,14 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,House: End Terrace,Domestic EPC Required,EPC Present,23 Aug 2012,D - 55 to 68,64.0,B - 81 to 91,84.0,BB104JY,100010354150.0,"14, Rimington Avenue",0.4801 -8362,324898,20 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Dec 2019,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104JY,100010354154.0,"20, Rimington Avenue",0.4801 -8472,238929,22 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,House: Mid-Terrace,Domestic EPC Required,EPC Present,28 Jul 2015,D - 55 to 68,61.0,B - 81 to 91,83.0,BB104JY,100010354156.0,"22, Rimington Avenue",0.4801 -8829,199715,28 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,House: End Terrace,Domestic EPC Required,EPC Present,13 Mar 2013,D - 55 to 68,66.0,B - 81 to 91,84.0,BB104JY,100010354159.0,"28, Rimington Avenue",0.4801 -9055,323685,32 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,Flat: Top,Domestic EPC Required,EPC Present,17 Oct 2019,C - 69 to 80,72.0,C - 69 to 80,75.0,BB104JY,100010354160.0,"32, Rimington Avenue",0.4801 -9170,323684,34 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,Flat: Bottom,Domestic EPC Required,EPC Present,17 Oct 2019,D - 55 to 68,66.0,C - 69 to 80,76.0,BB104JY,100010354161.0,"34, Rimington Avenue",0.4801 -9286,222016,36 Rimington Avenue Burnley Lancashire BB10 4JY,,, BB10 4JY,Flat: Bottom,Domestic EPC Required,EPC Present,21 Jan 2014,C - 69 to 80,71.0,C - 69 to 80,74.0,BB104JY,100010354162.0,"36, Rimington Avenue",0.4801 -7645,324696,66 Morse Street Burnley Lancashire BB10 4LJ,,, BB10 4LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2019,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104LJ,100010349484.0,"66, Morse Street",0.4596 -7749,324695,68 Morse Street Burnley Lancashire BB10 4LJ,,, BB10 4LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2019,D - 55 to 68,59.0,B - 81 to 91,82.0,BB104LJ,100010349486.0,"68, Morse Street",0.4596 -7958,362622,72 Morse Street Burnley Lancashire BB10 4LJ,,, BB10 4LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB104LJ,100010349490.0,72 Morse Street,0.4596 -8160,107907,76 Morse Street Burnley Lancashire BB10 4LJ,,, BB10 4LJ,House: Semi-Detached,Domestic EPC Required,EPC Present,30 Jan 2026,D - 55 to 68,67.0,B - 81 to 91,81.0,BB104LJ,100010349494.0,76 Morse Street,0.4596 -8256,201777,78 Morse Street Burnley Lancashire BB10 4LJ,,, BB10 4LJ,Flat: Top,Domestic EPC Required,EPC Present,09 Nov 2025,D - 55 to 68,68.0,C - 69 to 80,73.0,BB104LJ,100010349496.0,78 Morse Street,0.4596 -8360,104942,80 Morse Street Burnley Lancashire BB10 4LJ,,, BB10 4LJ,Flat: Bottom,Domestic EPC Required,EPC Present,02 Feb 2026,D - 55 to 68,67.0,C - 69 to 80,73.0,BB104LJ,100010349498.0,"80, Morse Street",0.4596 -7656,247975,1 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: End Terr,Domestic EPC Required,EPC Present,25 Feb 2026,C - 69 to 80,71.0,C - 69 to 80,78.0,BB104QW,100010329698.0,"1, Brandwood Grove",0.4705 -7708,246795,2 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: End Terr,Domestic EPC Required,EPC Present,22 Jan 2026,C - 69 to 80,72.0,B - 81 to 91,90.0,BB104QW,100010329699.0,2 Brandwood Grove,0.4705 -7766,247976,3 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Jan 2026,C - 69 to 80,71.0,C - 69 to 80,80.0,BB104QW,100010329700.0,3 Brandwood Grove,0.4705 -7821,246796,4 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,18 Feb 2016,C - 69 to 80,69.0,B - 81 to 91,88.0,BB104QW,100010329701.0,4 Brandwood Grove,0.4705 -7875,246797,5 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Feb 2016,D - 55 to 68,67.0,B - 81 to 91,87.0,BB104QW,100010329702.0,"5, Brandwood Grove",0.4705 -7928,246791,6 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,70.0,A - 92 Plus,92.0,BB104QW,100010329703.0,6 Brandwood Grove,0.4705 -7974,246803,7 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Feb 2016,D - 55 to 68,65.0,B - 81 to 91,88.0,BB104QW,100010329704.0,"7, Brandwood Grove",0.4705 -8023,246792,8 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: End Terr,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,69.0,A - 92 Plus,93.0,BB104QW,100010329705.0,8 Brandwood Grove,0.4705 -8072,247977,9 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,31 Mar 2016,D - 55 to 68,68.0,B - 81 to 91,88.0,BB104QW,100010329706.0,"9, Brandwood Grove",0.4705 -8129,246806,10 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Feb 2016,D - 55 to 68,67.0,B - 81 to 91,87.0,BB104QW,100010329707.0,"10, Brandwood Grove",0.4754 -8177,246807,11 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: End Terr,Domestic EPC Required,EPC Present,18 Feb 2016,D - 55 to 68,67.0,B - 81 to 91,89.0,BB104QW,100010329708.0,"11, Brandwood Grove",0.4754 -8223,247865,12 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Mar 2016,C - 69 to 80,69.0,A - 92 Plus,92.0,BB104QW,100010329709.0,"12, Brandwood Grove",0.4754 -8271,247978,13 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,11 Mar 2016,D - 55 to 68,66.0,B - 81 to 91,87.0,BB104QW,100010329710.0,"13, Brandwood Grove",0.4754 -8325,247979,14 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: End Terr,Domestic EPC Required,EPC Present,15 Mar 2016,C - 69 to 80,70.0,B - 81 to 91,90.0,BB104QW,100010329711.0,14 Brandwood Grove,0.4754 -8377,246788,15 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,18 Feb 2016,D - 55 to 68,65.0,B - 81 to 91,87.0,BB104QW,100010329712.0,15 Brandwood Grove,0.4754 -8434,246793,16 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,69.0,B - 81 to 91,90.0,BB104QW,100010329713.0,"16, Brandwood Grove",0.4754 -8488,247864,17 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,04 Mar 2016,D - 55 to 68,67.0,B - 81 to 91,89.0,BB104QW,100010329714.0,"17, Brandwood Grove",0.4754 -8545,247980,18 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,12 Dec 2025,C - 69 to 80,71.0,C - 69 to 80,78.0,BB104QW,100010329715.0,18 Brandwood Grove,0.4754 -8910,246794,24 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,15 Feb 2016,C - 69 to 80,71.0,A - 92 Plus,93.0,BB104QW,100010329716.0,24 Brandwood Grove,0.4754 -9016,246790,26 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,18 Feb 2016,D - 55 to 68,64.0,B - 81 to 91,87.0,BB104QW,100010329717.0,26 Brandwood Grove,0.4754 -9130,247981,28 Brandwood Grove Burnley Lancashire BB10 4QW,,, BB10 4QW,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,12 Dec 2025,D - 55 to 68,66.0,C - 69 to 80,75.0,BB104QW,100010329718.0,28 Brandwood Grove,0.4754 -7669,230523,2 Ford Street Burnley Lancashire BB10 1RJ,,, BB10 1RJ,House: End Terrace,Domestic EPC Required,EPC Present,22 Sep 2021,D - 55 to 68,61.0,B - 81 to 91,87.0,BB101RJ,100010339065.0,2 Ford Street,0.4471 -7763,359734,53 Cromwell Street Burnley Lancashire BB12 0DB,,, BB12 0DB,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Mar 2024,C - 69 to 80,70.0,B - 81 to 91,84.0,BB120DB,100010336235.0,53 Cromwell Street,0.4754 -7774,41010,1 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104BW,10003781373.0,1 Lower Ridge Close,0.5265 -7828,322656,2 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,78.0,C - 69 to 80,78.0,BB104BW,10003781384.0,"2, Lower Ridge Close",0.5265 -7882,94993,3 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,03 Nov 2025,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104BW,10003781394.0,3 Lower Ridge Close,0.5265 -7933,322655,4 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,77.0,C - 69 to 80,79.0,BB104BW,10003781395.0,"4, Lower Ridge Close",0.5265 -7986,322654,5 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104BW,10003781396.0,"5, Lower Ridge Close",0.5265 -8032,224911,6 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,03 Nov 2025,C - 69 to 80,77.0,C - 69 to 80,77.0,BB104BW,10003781397.0,6 Lower Ridge Close,0.5265 -8082,197128,7 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,20 Apr 2023,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104BW,10003781398.0,7 Lower Ridge Close,0.5265 -8134,362631,8 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,25 Apr 2022,C - 69 to 80,76.0,C - 69 to 80,79.0,BB104BW,10003781399.0,8 Lower Ridge Close,0.5265 -8182,322693,9 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,23 Sep 2019,C - 69 to 80,75.0,C - 69 to 80,78.0,BB104BW,10003781400.0,"9, Lower Ridge Close",0.5265 -8235,115737,10 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,06 Jul 2011,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104BW,10003781374.0,"10, Lower Ridge Close",0.5309 -8278,118383,11 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,07 Dec 2021,C - 69 to 80,71.0,C - 69 to 80,77.0,BB104BW,10003781375.0,11 Lower Ridge Close,0.5309 -8335,271516,12 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,28 Jan 2017,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104BW,10003781376.0,"12, Lower Ridge Close",0.5309 -8384,105242,13 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,03 Nov 2025,C - 69 to 80,76.0,C - 69 to 80,77.0,BB104BW,10003781377.0,13 Lower Ridge Close,0.5309 -8439,205801,14 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,03 Nov 2025,C - 69 to 80,72.0,C - 69 to 80,72.0,BB104BW,10003781378.0,14 Lower Ridge Close,0.5309 -8495,234331,15 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,03 Nov 2025,C - 69 to 80,78.0,C - 69 to 80,79.0,BB104BW,10003781379.0,15 Lower Ridge Close,0.5309 -8552,136007,16 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,25 Jun 2025,C - 69 to 80,77.0,C - 69 to 80,78.0,BB104BW,10003781380.0,16 Lower Ridge Close,0.5309 -8616,323197,17 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,01 Oct 2019,C - 69 to 80,76.0,C - 69 to 80,78.0,BB104BW,10003781381.0,"17, Lower Ridge Close",0.5309 -8677,189411,18 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,13 Jun 2023,C - 69 to 80,74.0,C - 69 to 80,74.0,BB104BW,10003781382.0,18 Lower Ridge Close,0.5309 -8738,77001,19 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,24 Sep 2009,B - 81 to 91,81.0,B - 81 to 91,82.0,BB104BW,10003781383.0,"19, Lower Ridge Close",0.5309 -8797,181844,20 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,74.0,C - 69 to 80,76.0,BB104BW,10003781385.0,20 Lower Ridge Close,0.5309 -8858,244951,21 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,22 Oct 2015,C - 69 to 80,76.0,C - 69 to 80,78.0,BB104BW,10003781386.0,"21, Lower Ridge Close",0.5309 -8917,136006,22 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,04 Oct 2025,C - 69 to 80,75.0,C - 69 to 80,75.0,BB104BW,10003781387.0,22 Lower Ridge Close,0.5309 -8970,295075,23 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,07 Nov 2017,C - 69 to 80,73.0,C - 69 to 80,76.0,BB104BW,10003781388.0,"23, Lower Ridge Close",0.5309 -9026,119000,24 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,03 Nov 2025,C - 69 to 80,75.0,C - 69 to 80,77.0,BB104BW,10003781389.0,24 Lower Ridge Close,0.5309 -9080,322660,25 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,77.0,C - 69 to 80,79.0,BB104BW,10003781390.0,"25, Lower Ridge Close",0.5309 -9140,252155,26 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,04 Nov 2025,C - 69 to 80,73.0,C - 69 to 80,75.0,BB104BW,10003781391.0,26 Lower Ridge Close,0.5309 -9199,322661,27 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Top,Domestic EPC Required,EPC Present,20 Sep 2019,C - 69 to 80,79.0,C - 69 to 80,79.0,BB104BW,10003781392.0,"27, Lower Ridge Close",0.5309 -9256,290412,28 Lower Ridge Close Burnley Lancashire BB10 4BW,,, BB10 4BW,Flat: Bottom,Domestic EPC Required,EPC Present,02 Aug 2017,C - 69 to 80,70.0,C - 69 to 80,75.0,BB104BW,10003781393.0,"28, Lower Ridge Close",0.5309 -7796,289940,1 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: End Terrace,Domestic EPC Required,EPC Present,27 Jul 2017,D - 55 to 68,60.0,B - 81 to 91,87.0,BB104NR,100010328752.0,"1, Belmont Grove",0.4596 -7852,116222,2 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Aug 2011,D - 55 to 68,67.0,C - 69 to 80,70.0,BB104NR,100010328753.0,"2, Belmont Grove",0.4596 -7903,204087,3 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 May 2013,D - 55 to 68,68.0,B - 81 to 91,86.0,BB104NR,100010328754.0,"3, Belmont Grove",0.4596 -7955,115742,4 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,69.0,B - 81 to 91,83.0,BB104NR,100010328755.0,4 Belmont Grove,0.4596 -8003,323775,5 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Nov 2019,C - 69 to 80,75.0,B - 81 to 91,88.0,BB104NR,100010328756.0,"5, Belmont Grove",0.4596 -8254,188930,10 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Sep 2012,D - 55 to 68,58.0,B - 81 to 91,83.0,BB104NR,100010328761.0,"10, Belmont Grove",0.4652 -8354,204374,12 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: End Terrace,Domestic EPC Required,EPC Present,22 Nov 2025,D - 55 to 68,64.0,C - 69 to 80,76.0,BB104NR,100010328763.0,12 Belmont Grove,0.4652 -8463,362651,14 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Nov 2019,C - 69 to 80,71.0,B - 81 to 91,85.0,BB104NR,100010328765.0,"14, Belmont Grove",0.4652 -8635,323774,17 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: End Terrace,Domestic EPC Required,EPC Present,07 Nov 2019,C - 69 to 80,74.0,B - 81 to 91,88.0,BB104NR,100010328768.0,"17, Belmont Grove",0.4652 -8759,323773,19 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 Nov 2019,C - 69 to 80,73.0,B - 81 to 91,87.0,BB104NR,100010328770.0,"19, Belmont Grove",0.4652 -13827,376681,16 Belmont Grove Burnley Lancashire BB10 4NR,,, BB10 4NR,House: Semi-Detached,Domestic EPC Required,EPC Present,06 May 2024,C - 69 to 80,69.0,B - 81 to 91,84.0,BB104NR,100010328767.0,16 Belmont Grove,0.4652 -7937,69666,4 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jul 2009,E - 39 to 54,46.0,D - 55 to 68,59.0,BB114ED,100010351205.0,"4, Paisley Street",0.4652 -8137,362633,8 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB114ED,100010351209.0,8 Paisley Street,0.4652 -8185,134171,9 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Jan 2012,D - 55 to 68,68.0,D - 55 to 68,68.0,BB114ED,100010351210.0,"9, Paisley Street",0.4652 -8283,362642,11 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,82.0,BB114ED,100010351212.0,11 Paisley Street,0.4705 -8339,362645,12 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,87.0,BB114ED,100010351213.0,12 Paisley Street,0.4705 -8443,295073,14 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Nov 2017,D - 55 to 68,63.0,B - 81 to 91,85.0,BB114ED,100010351215.0,"14, Paisley Street",0.4705 -8805,194462,20 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,06 Nov 2012,D - 55 to 68,61.0,B - 81 to 91,81.0,BB114ED,100010351221.0,"20, Paisley Street",0.4705 -8864,245291,21 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,15 Dec 2015,C - 69 to 80,71.0,B - 81 to 91,84.0,BB114ED,,, -8974,41057,23 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,14 Dec 2018,D - 55 to 68,60.0,C - 69 to 80,82.0,BB114ED,100010351223.0,"23, Paisley Street",0.4705 -9678,220106,15 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Nov 2013,D - 55 to 68,59.0,B - 81 to 91,86.0,BB114ED,10023762559.0,"15, Paisley Street",0.4705 -9681,220107,17 Paisley Street Burnley Lancashire BB11 4ED,,, BB11 4ED,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Nov 2013,D - 55 to 68,57.0,B - 81 to 91,84.0,BB114ED,10023762560.0,"17, Paisley Street",0.4705 -7946,76885,1 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: End Terrace,Domestic EPC Required,EPC Present,25 Aug 2009,D - 55 to 68,67.0,C - 69 to 80,72.0,BB127ED,100010337381.0,"1, Dorset Avenue, Padiham",0.6154 -7997,362624,2 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: End Terrace,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,69.0,B - 81 to 91,86.0,BB127ED,100010337382.0,"2 Dorset Avenue, Padiham",0.6154 -8041,295523,3 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: Mid-Terrace,Domestic EPC Required,EPC Present,12 Jan 2018,D - 55 to 68,65.0,B - 81 to 91,85.0,BB127ED,100010337383.0,"3, Dorset Avenue, Padiham",0.6154 -8146,41027,5 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2009,D - 55 to 68,66.0,C - 69 to 80,72.0,BB127ED,100010337385.0,"5, Dorset Avenue, Padiham",0.6154 -8193,110638,6 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Jan 2026,D - 55 to 68,68.0,B - 81 to 91,83.0,BB127ED,100010337386.0,"6 Dorset Avenue, Padiham",0.6154 -8243,190794,7 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: End Terrace,Domestic EPC Required,EPC Present,25 Oct 2012,C - 69 to 80,69.0,B - 81 to 91,82.0,BB127ED,100010337387.0,"7, Dorset Avenue, Padiham",0.6154 -8290,76952,8 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: End Terrace,Domestic EPC Required,EPC Present,15 Jan 2026,D - 55 to 68,67.0,C - 69 to 80,74.0,BB127ED,100010337388.0,"8 Dorset Avenue, Padiham",0.6154 -8393,101654,10 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: End Terrace,Domestic EPC Required,EPC Present,14 Oct 2010,D - 55 to 68,66.0,C - 69 to 80,72.0,BB127ED,100010337390.0,"10, Dorset Avenue, Padiham",0.6185 -8454,362650,11 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127ED,100010337391.0,"11 Dorset Avenue, Padiham",0.6185 -8567,362658,13 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB127ED,100010337393.0,"13 Dorset Avenue, Padiham",0.6185 -8626,89064,14 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Nov 2022,C - 69 to 80,72.0,B - 81 to 91,90.0,BB127ED,100010337394.0,"14 Dorset Avenue, Padiham",0.6185 -8690,362668,15 Dorset Avenue Padiham Lancashire BB12 7ED,,, BB12 7ED,House: End Terrace,Domestic EPC Required,EPC Present,14 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB127ED,100010337395.0,"15 Dorset Avenue, Padiham",0.6185 -8006,220117,13 Rimington Avenue Burnley Lancashire BB10 4NN,,, BB10 4NN,House: Mid-Terrace,Domestic EPC Required,EPC Present,05 Sep 2024,B - 81 to 91,82.0,B - 81 to 91,85.0,BB104NN,100010354149.0,13 Rimington Avenue,0.4801 -8103,244945,136 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Nov 2025,B - 81 to 91,84.0,B - 81 to 91,87.0,BB104BG,100010328845.0,136 Belvedere Road,0.4754 -8203,107645,138 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Nov 2025,B - 81 to 91,87.0,B - 81 to 91,88.0,BB104BG,100010328847.0,138 Belvedere Road,0.4754 -8304,245147,140 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,21 Aug 2025,C - 69 to 80,78.0,C - 69 to 80,80.0,BB104BG,100010328849.0,140 Belvedere Road,0.4754 -8408,245820,142 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Nov 2025,B - 81 to 91,90.0,A - 92 Plus,92.0,BB104BG,100010328850.0,142 Belvedere Road,0.4754 -8519,245148,144 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: End Terr,Domestic EPC Required,EPC Present,27 Oct 2015,D - 55 to 68,68.0,B - 81 to 91,89.0,BB104BG,100010328852.0,"144, Belvedere Road",0.4754 -8643,209251,146 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: End Terr,Domestic EPC Required,EPC Present,08 Nov 2025,B - 81 to 91,88.0,B - 81 to 91,90.0,BB104BG,100010328854.0,146 Belvedere Road,0.4754 -8764,323185,148 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,27 Sep 2019,C - 69 to 80,70.0,B - 81 to 91,90.0,BB104BG,100010328856.0,"148, Belvedere Road",0.4754 -8882,241365,150 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Nov 2025,B - 81 to 91,87.0,B - 81 to 91,89.0,BB104BG,100010328857.0,150 Belvedere Road,0.4754 -8991,323186,152 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,27 Sep 2019,C - 69 to 80,69.0,B - 81 to 91,91.0,BB104BG,100010328858.0,"152, Belvedere Road",0.4754 -9100,180690,154 Belvedere Road Burnley Lancashire BB10 4BG,,, BB10 4BG,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Nov 2025,C - 69 to 80,69.0,B - 81 to 91,86.0,BB104BG,100010328859.0,154 Belvedere Road,0.4754 -8151,233917,3 Ruskin Street Burnley Lancashire BB10 1HT,,, BB10 1HT,House: Semi-Detached,Domestic EPC Required,EPC Present,16 Mar 2015,D - 55 to 68,56.0,B - 81 to 91,85.0,BB101HT,100010355024.0,"3, Ruskin Street",0.4596 -8201,118346,4 Ruskin Street Burnley Lancashire BB10 1HT,,, BB10 1HT,House: Semi-Detached,Domestic EPC Required,EPC Present,25 Aug 2011,D - 55 to 68,55.0,C - 69 to 80,69.0,BB101HT,100010355025.0,"4, Ruskin Street",0.4596 -8253,221665,5 Ruskin Street Burnley Lancashire BB10 1HT,,, BB10 1HT,House: Semi-Detached,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,73.0,B - 81 to 91,87.0,BB101HT,100010355026.0,"5, Ruskin Street",0.4596 -8513,41041,10 Ruskin Street Burnley Lancashire BB10 1HT,,, BB10 1HT,House: Semi-Detached,Domestic EPC Required,EPC Present,11 Oct 2021,D - 55 to 68,63.0,B - 81 to 91,84.0,BB101HT,100010355029.0,10 Ruskin Street,0.4652 -8757,183404,14 Ruskin Street Burnley Lancashire BB10 1HT,,, BB10 1HT,House: Semi-Detached,Domestic EPC Required,EPC Present,31 May 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB101HT,100010355031.0,14 Ruskin Street,0.4652 -8876,241792,16 Ruskin Street Burnley Lancashire BB10 1HT,,, BB10 1HT,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Sep 2015,D - 55 to 68,65.0,B - 81 to 91,82.0,BB101HT,100010355032.0,"16, Ruskin Street",0.4652 -8291,110929,36 Gainsborough Avenue Burnley Lancashire BB11 2NN,,, BB11 2NN,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 May 2017,D - 55 to 68,58.0,B - 81 to 91,84.0,BB112NN,100010339269.0,"36, Gainsborough Avenue",0.4925 -8399,362646,38 Gainsborough Avenue Burnley Lancashire BB11 2NN,,, BB11 2NN,House: End Terrace,Domestic EPC Required,EPC Present,21 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,84.0,BB112NN,100010339271.0,38 Gainsborough Avenue,0.4925 -9211,179919,52 Gainsborough Avenue Burnley Lancashire BB11 2NN,,, BB11 2NN,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 May 2012,D - 55 to 68,68.0,B - 81 to 91,86.0,BB112NN,100010339285.0,"52, Gainsborough Avenue",0.4925 -9275,111190,53 Gainsborough Avenue Burnley Lancashire BB11 2NN,,, BB11 2NN,House: End Terrace,Domestic EPC Required,EPC Present,07 Jun 2017,D - 55 to 68,58.0,B - 81 to 91,83.0,BB112NN,100010339286.0,"53, Gainsborough Avenue",0.4925 -9329,111192,54 Gainsborough Avenue Burnley Lancashire BB11 2NN,,, BB11 2NN,House: End Terrace,Domestic EPC Required,EPC Present,02 Aug 2017,D - 55 to 68,66.0,B - 81 to 91,82.0,BB112NN,100010339287.0,"54, Gainsborough Avenue",0.4925 -8298,238926,1 Windermere Road Padiham Lancashire BB12 8NT,,, BB12 8NT,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Jul 2015,D - 55 to 68,61.0,B - 81 to 91,86.0,BB128NT,100010361180.0,"1, Windermere Road, Padiham",0.6214 -8405,94906,3 Windermere Road Padiham Lancashire BB12 8NT,,, BB12 8NT,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Apr 2010,C - 69 to 80,73.0,C - 69 to 80,74.0,BB128NT,100010361182.0,"3, Windermere Road, Padiham",0.6214 -8512,362654,5 Windermere Road Padiham Lancashire BB12 8NT,,, BB12 8NT,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,29 Jul 2023,C - 69 to 80,70.0,B - 81 to 91,89.0,BB128NT,100010361184.0,"5 Windermere Road, Padiham",0.6214 -8639,362662,7 Windermere Road Padiham Lancashire BB12 8NT,,, BB12 8NT,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Jun 2022,D - 55 to 68,64.0,B - 81 to 91,89.0,BB128NT,100010361186.0,"7 Windermere Road, Padiham",0.6214 -8700,267332,8 Windermere Road Padiham Lancashire BB12 8NT,,, BB12 8NT,House: Mid-Terrace,Domestic EPC Required,EPC Present,20 Oct 2016,D - 55 to 68,65.0,B - 81 to 91,85.0,BB128NT,100010361187.0,"8, Windermere Road, Padiham",0.6214 -8761,163336,9 Windermere Road Padiham Lancashire BB12 8NT,,, BB12 8NT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,20 Apr 2012,D - 55 to 68,64.0,B - 81 to 91,88.0,BB128NT,100010361188.0,"9, Windermere Road, Padiham",0.6214 -8880,221676,11 Windermere Road Padiham Lancashire BB12 8NT,,, BB12 8NT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,65.0,B - 81 to 91,87.0,BB128NT,100010361190.0,"11, Windermere Road, Padiham",0.6242 -8988,180133,13 Windermere Road Padiham Lancashire BB12 8NT,,, BB12 8NT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,26 Jun 2024,C - 69 to 80,75.0,B - 81 to 91,84.0,BB128NT,100010361192.0,"13 Windermere Road, Padiham",0.6242 -9099,77018,15 Windermere Road Padiham Lancashire BB12 8NT,,, BB12 8NT,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,09 Oct 2009,D - 55 to 68,65.0,C - 69 to 80,70.0,BB128NT,100010361194.0,"15, Windermere Road, Padiham",0.6242 -8391,241567,1 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,18 Sep 2015,C - 69 to 80,75.0,C - 69 to 80,78.0,BB113BE,100012537241.0,"1 Holmes Square, Holmes Street",0.4674 -8449,95857,2 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113BE,100012537242.0,"2 Holmes Square, Holmes Street",0.4674 -8504,241784,3 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,18 Sep 2015,C - 69 to 80,76.0,C - 69 to 80,78.0,BB113BE,100012537243.0,"3 Holmes Square, Holmes Street",0.4674 -8566,242994,4 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113BE,100012537244.0,"4 Holmes Square, Holmes Street",0.4674 -8625,209473,5 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,76.0,C - 69 to 80,79.0,BB113BE,100012537245.0,"5 Holmes Square, Holmes Street",0.4674 -8689,209472,6 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113BE,100012537246.0,"6 Holmes Square, Holmes Street",0.4674 -8748,241787,7 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,18 Sep 2015,C - 69 to 80,74.0,C - 69 to 80,78.0,BB113BE,100012537247.0,"7 Holmes Square, Holmes Street",0.4674 -8812,242996,8 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,75.0,C - 69 to 80,78.0,BB113BE,100012537248.0,"8 Holmes Square, Holmes Street",0.4674 -8871,241788,9 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,18 Sep 2015,C - 69 to 80,74.0,C - 69 to 80,78.0,BB113BE,100012537249.0,"9 Holmes Square, Holmes Street",0.4674 -8926,242997,10 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113BE,100012537250.0,"10 Holmes Square, Holmes Street",0.4708 -8975,241790,11 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,18 Sep 2015,C - 69 to 80,74.0,C - 69 to 80,78.0,BB113BE,100012537251.0,"11 Holmes Square, Holmes Street",0.4708 -9036,242998,12 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,75.0,C - 69 to 80,78.0,BB113BE,100012537252.0,"12 Holmes Square, Holmes Street",0.4708 -9150,180996,14 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,78.0,C - 69 to 80,79.0,BB113BE,100012537255.0,"14 Holmes Square, Holmes Street",0.4708 -9207,245785,15 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,14 Dec 2015,C - 69 to 80,73.0,C - 69 to 80,78.0,BB113BE,100012537103.0,"15 Holmes Square, Holmes Street",0.4708 -9265,244961,16 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,22 Oct 2015,C - 69 to 80,79.0,C - 69 to 80,79.0,BB113BE,100012537104.0,"16 Holmes Square, Holmes Street",0.4708 -9322,241796,17 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,18 Sep 2015,C - 69 to 80,73.0,C - 69 to 80,77.0,BB113BE,100012537105.0,"17 Holmes Square, Holmes Street",0.4708 -9384,204823,18 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,74.0,C - 69 to 80,76.0,BB113BE,100012537106.0,"18 Holmes Square, Holmes Street",0.4708 -9439,252160,19 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,75.0,C - 69 to 80,76.0,BB113BE,100012537107.0,"19 Holmes Square, Holmes Street",0.4708 -9496,192367,20 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,18 Sep 2015,C - 69 to 80,77.0,C - 69 to 80,80.0,BB113BE,100012537108.0,"20 Holmes Square, Holmes Street",0.4708 -9542,196093,21 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Top,Domestic EPC Required,EPC Present,23 Oct 2015,C - 69 to 80,75.0,C - 69 to 80,77.0,BB113BE,100012537109.0,"21 Holmes Square, Holmes Street",0.4708 -9598,241798,22 Holmes Square Burnley Lancashire BB11 3BE,,, BB11 3BE,Flat: Bottom,Domestic EPC Required,EPC Present,18 Sep 2015,C - 69 to 80,74.0,C - 69 to 80,78.0,BB113BE,100012537110.0,"22 Holmes Square, Holmes Street",0.4708 -8440,362649,15 Hapton Street Padiham Lancashire BB12 8QS,,, BB12 8QS,House: Mid-Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,70.0,B - 81 to 91,87.0,BB128QS,100010341060.0,"15 Hapton Street, Padiham",0.6185 -8445,89762,227 Barden Lane Burnley Lancashire BB10 1HY,,, BB10 1HY,House: Semi-Detached,Domestic EPC Required,EPC Present,20 Jan 2026,D - 55 to 68,64.0,C - 69 to 80,85.0,BB101HY,100010328226.0,227 Barden Lane,0.4596 -8459,110932,37 Florence Avenue Burnley Lancashire BB11 5LR,,, BB11 5LR,House: Semi-Detached,Domestic EPC Required,EPC Present,08 Aug 2025,C - 69 to 80,70.0,C - 69 to 80,78.0,BB115LR,100010338925.0,37 Florence Avenue,0.4754 -8572,220701,39 Florence Avenue Burnley Lancashire BB11 5LR,,, BB11 5LR,House: Semi-Detached,Domestic EPC Required,EPC Present,05 Dec 2013,D - 55 to 68,68.0,B - 81 to 91,87.0,BB115LR,100010338926.0,"39, Florence Avenue",0.4754 -8471,240428,143 Belvedere Road Burnley Lancashire BB10 4BQ,,, BB10 4BQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Aug 2015,D - 55 to 68,67.0,B - 81 to 91,88.0,BB104BQ,100010328851.0,"143, Belvedere Road",0.4754 -8585,136631,145 Belvedere Road Burnley Lancashire BB10 4BQ,,, BB10 4BQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Aug 2015,C - 69 to 80,71.0,B - 81 to 91,90.0,BB104BQ,100010328853.0,"145, Belvedere Road",0.4754 -8708,240429,147 Belvedere Road Burnley Lancashire BB10 4BQ,,, BB10 4BQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,20 Aug 2015,D - 55 to 68,65.0,B - 81 to 91,87.0,BB104BQ,100010328855.0,"147, Belvedere Road",0.4754 -8475,250074,1 Barley Grove Burnley Lancashire BB10 4QP,,, BB10 4QP,House: End Terrace,Domestic EPC Required,EPC Present,12 May 2016,C - 69 to 80,71.0,B - 81 to 91,89.0,BB104QP,100010328313.0,"1, Barley Grove",0.4536 -8651,250075,4 Barley Grove Burnley Lancashire BB10 4QP,,, BB10 4QP,House: Semi-Detached,Domestic EPC Required,EPC Present,12 May 2016,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104QP,100010328316.0,"4, Barley Grove",0.4536 -9349,250587,16 Barley Grove Burnley Lancashire BB10 4QP,,, BB10 4QP,House: Semi-Detached,Domestic EPC Required,EPC Present,07 Jun 2016,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104QP,100010328328.0,"16, Barley Grove",0.4596 -8563,41044,50 Woodbine Road Burnley Lancashire BB12 6QS,,, BB12 6QS,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Mar 2009,D - 55 to 68,58.0,C - 69 to 80,70.0,BB126QS,100010361377.0,"50, Woodbine Road",0.4652 -8590,324694,84 Morse Street Burnley Lancashire BB10 4PB,,, BB10 4PB,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2019,D - 55 to 68,58.0,B - 81 to 91,82.0,BB104PB,100010349500.0,"84, Morse Street",0.4596 -8706,324693,86 Morse Street Burnley Lancashire BB10 4PB,,, BB10 4PB,House: Semi-Detached,Domestic EPC Required,EPC Present,17 Jul 2024,C - 69 to 80,71.0,B - 81 to 91,87.0,BB104PB,100010349502.0,86 Morse Street,0.4596 -9169,267112,94 Morse Street Burnley Lancashire BB10 4PB,,, BB10 4PB,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Oct 2016,D - 55 to 68,66.0,B - 81 to 91,85.0,BB104PB,100010349509.0,"94, Morse Street",0.4596 -9288,324692,96 Morse Street Burnley Lancashire BB10 4PB,,, BB10 4PB,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Nov 2019,D - 55 to 68,66.0,B - 81 to 91,85.0,BB104PB,100010349511.0,"96, Morse Street",0.4596 -8603,252185,1 Thirlmere Avenue Burnley Lancashire BB10 1HS,,, BB10 1HS,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Oct 2011,D - 55 to 68,66.0,C - 69 to 80,70.0,BB101HS,100010355125.0,"1, Rydal Street",0.1422 -9010,326165,14 Rydal Street Burnley Lancashire BB10 1HS,,, BB10 1HS,House: End Terrace,Domestic EPC Required,EPC Present,03 Feb 2020,C - 69 to 80,71.0,B - 81 to 91,86.0,BB101HS,100010355138.0,"14, Rydal Street",0.4596 -9123,326166,16 Rydal Street Burnley Lancashire BB10 1HS,,, BB10 1HS,House: Semi-Detached,Domestic EPC Required,EPC Present,03 Feb 2020,C - 69 to 80,71.0,B - 81 to 91,87.0,BB101HS,100010355140.0,"16, Rydal Street",0.4596 -9360,110830,20 Rydal Street Burnley Lancashire BB10 1HS,,, BB10 1HS,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Sep 2021,D - 55 to 68,58.0,B - 81 to 91,81.0,BB101HS,100010355144.0,20 Rydal Street,0.4596 -8665,325558,1 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,73.0,B - 81 to 91,88.0,BB102QQ,10003758306.0,"1, Humber Square",0.4596 -8727,226277,2 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jan 2026,C - 69 to 80,69.0,C - 69 to 80,76.0,BB102QQ,10003758317.0,2 Humber Square,0.4596 -8791,220023,3 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,House: Semi-Detached,Domestic EPC Required,EPC Present,12 Nov 2013,C - 69 to 80,74.0,B - 81 to 91,89.0,BB102QQ,10003758316.0,"3, Humber Square",0.4596 -8907,110675,5 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,House: Semi-Detached,Domestic EPC Required,EPC Present,18 Oct 2017,C - 69 to 80,72.0,B - 81 to 91,87.0,BB102QQ,10003758311.0,"5, Humber Square",0.4596 -8965,210866,6 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Sep 2013,C - 69 to 80,73.0,B - 81 to 91,86.0,BB102QQ,10003758310.0,"6, Humber Square",0.4596 -9013,325556,7 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,70.0,B - 81 to 91,86.0,BB102QQ,10003758309.0,"7, Humber Square",0.4596 -9071,325557,8 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,House: Semi-Detached,Domestic EPC Required,EPC Present,10 Jan 2020,C - 69 to 80,74.0,B - 81 to 91,88.0,BB102QQ,10003758308.0,"8, Humber Square",0.4596 -9128,76957,9 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,17 Sep 2009,C - 69 to 80,70.0,C - 69 to 80,71.0,BB102QQ,10003758307.0,"9, Humber Square",0.4596 -9189,41066,10 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Jan 2009,D - 55 to 68,66.0,C - 69 to 80,70.0,BB102QQ,10003758318.0,"10, Humber Square",0.4652 -9248,89773,11 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,02 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,89.0,BB102QQ,10003758313.0,11 Humber Square,0.4652 -9305,234529,12 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,14 Apr 2015,D - 55 to 68,66.0,B - 81 to 91,89.0,BB102QQ,10003758314.0,"12, Humber Square",0.4652 -9424,110785,14 Humber Square Burnley Lancashire BB10 2QQ,,, BB10 2QQ,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,08 Jul 2023,C - 69 to 80,71.0,B - 81 to 91,89.0,BB102QQ,10003758315.0,14 Humber Square,0.4652 -8724,252158,3 Thirlmere Avenue Burnley Lancashire BB10 1HU,,, BB10 1HU,House: Semi-Detached,Domestic EPC Required,EPC Present,22 Mar 2014,D - 55 to 68,58.0,C - 69 to 80,80.0,BB101HU,100010358196.0,3 Thirlmere Avenue,0.4754 -9241,98165,12 Thirlmere Avenue Burnley Lancashire BB10 1HU,,, BB10 1HU,House: End Terrace,Domestic EPC Required,EPC Present,20 Aug 2010,E - 39 to 54,53.0,D - 55 to 68,61.0,BB101HU,100010358205.0,"12, Thirlmere Avenue",0.4801 -9354,326179,14 Thirlmere Avenue Burnley Lancashire BB10 1HU,,, BB10 1HU,House: Semi-Detached,Domestic EPC Required,EPC Present,04 Feb 2020,C - 69 to 80,72.0,B - 81 to 91,87.0,BB101HU,100010358207.0,"14, Thirlmere Avenue",0.4801 -9525,224910,17 Thirlmere Avenue Burnley Lancashire BB10 1HU,,, BB10 1HU,House: Semi-Detached,Domestic EPC Required,EPC Present,12 May 2014,D - 55 to 68,65.0,B - 81 to 91,87.0,BB101HU,100010358210.0,"17, Thirlmere Avenue",0.4801 -9576,112888,18 Thirlmere Avenue Burnley Lancashire BB10 1HU,,, BB10 1HU,House: Semi-Detached,Domestic EPC Required,EPC Present,30 May 2011,E - 39 to 54,51.0,D - 55 to 68,68.0,BB101HU,100010358211.0,"18, Thirlmere Avenue",0.4801 -8742,362671,1 Milbrook Close Burnley Lancashire BB11 5RY,,, BB11 5RY,House: End Terrace,Domestic EPC Required,EPC Present,29 Sep 2023,C - 69 to 80,72.0,B - 81 to 91,86.0,BB115RY,10003781774.0,1 Milbrook Close,0.4652 -8801,295076,2 Milbrook Close Burnley Lancashire BB11 5RY,,, BB11 5RY,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Nov 2017,C - 69 to 80,70.0,B - 81 to 91,86.0,BB115RY,10003781775.0,"2, Milbrook Close",0.4652 -8861,221658,3 Milbrook Close Burnley Lancashire BB11 5RY,,, BB11 5RY,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Dec 2025,C - 69 to 80,71.0,B - 81 to 91,84.0,BB115RY,10003781776.0,3 Milbrook Close,0.4652 -9029,41058,6 Milbrook Close Burnley Lancashire BB11 5RY,,, BB11 5RY,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Feb 2026,C - 69 to 80,77.0,B - 81 to 91,83.0,BB115RY,10003781779.0,"6, Milbrook Close",0.4652 -9083,252230,7 Milbrook Close Burnley Lancashire BB11 5RY,,, BB11 5RY,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Jul 2018,C - 69 to 80,69.0,B - 81 to 91,84.0,BB115RY,10003781780.0,"7, Milbrook Close",0.4652 -9143,210894,8 Milbrook Close Burnley Lancashire BB11 5RY,,, BB11 5RY,House: End Terrace,Domestic EPC Required,EPC Present,09 Aug 2013,D - 55 to 68,67.0,B - 81 to 91,86.0,BB115RY,10003781781.0,"8, Milbrook Close",0.4652 -8807,272781,22 Granby Street Burnley Lancashire BB12 0PP,,, BB12 0PP,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Mar 2017,D - 55 to 68,63.0,B - 81 to 91,85.0,BB120PP,100010340072.0,"22, Granby Street",0.4652 -13698,358090,4 Granby Street Burnley Lancashire BB12 0PP,,, BB12 0PP,House: Mid-Terrace,Domestic EPC Required,EPC Present,04 Mar 2015,C - 69 to 80,75.0,B - 81 to 91,91.0,BB120PP,100010340056.0,"4, Granby Street",0.4596 -8852,41052,10 Travis Street Burnley Lancashire BB10 1DQ,,, BB10 1DQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,07 May 2009,C - 69 to 80,71.0,C - 69 to 80,71.0,BB101DQ,100010358945.0,"10, Travis Street",0.4652 -8884,362680,14 Bute Street Burnley Lancashire BB11 4EX,,, BB11 4EX,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,07 Sep 2023,C - 69 to 80,71.0,B - 81 to 91,91.0,BB114EX,100010332409.0,14 Bute Street,0.4536 -9181,362697,6 Douglas Way Briercliffe Burnley Lancashire BB10 2JH,,, BB10 2JH,House: Semi-Detached,Domestic EPC Required,EPC Present,31 Aug 2023,C - 69 to 80,69.0,B - 81 to 91,84.0,BB102JH,100010337455.0,"6 Douglas Way, Briercliffe",0.5494 -9298,362703,8 Douglas Way Briercliffe Burnley Lancashire BB10 2JH,,, BB10 2JH,House: Semi-Detached,Domestic EPC Required,EPC Present,29 Aug 2023,C - 69 to 80,70.0,B - 81 to 91,83.0,BB102JH,100010337457.0,"8 Douglas Way, Briercliffe",0.5494 -9263,324549,5 Grindleton Grove Burnley Lancashire BB10 4NT,,, BB10 4NT,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Nov 2019,D - 55 to 68,66.0,B - 81 to 91,90.0,BB104NT,100010340694.0,"5, Grindleton Grove",0.4754 -9548,118995,76 Westgate Burnley Lancashire BB11 1RY,,, BB11 1RY,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Jun 2009,E - 39 to 54,53.0,D - 55 to 68,59.0,BB111RY,100010360530.0,"76, Westgate",0.3707 -11667,367842,40 Westgate (Acorn) Burnley Lancashire BB11 1RY,,, BB11 1RY,House: Mid-Terrace,Domestic EPC Required,EPC Present,10 Aug 2009,D - 55 to 68,56.0,D - 55 to 68,58.0,BB111RY,100010360521.0,"40, Westgate",0.3232 -9600,341703,10 Willis Street Burnley Lancashire BB11 4LU,,, BB11 4LU,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Oct 2021,C - 69 to 80,72.0,B - 81 to 91,91.0,BB114LU,100010361030.0,10 Willis Street,0.4652 -9685,134167,12 Primet Heights Colne Lancashire BB8 8EF,,, BB8 8EF,Bungalow: Detached,Domestic EPC Required,EPC Present,04 Dec 2024,D - 55 to 68,62.0,C - 69 to 80,69.0,BB88EF,10024179517.0,12 Primet Heights,0.4803 -9698,41087,16 Adlington Street Burnley Lancashire BB11 2SQ,,, BB11 2SQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Oct 2008,E - 39 to 54,52.0,D - 55 to 68,57.0,BB112SQ,100010326777.0,"16, Adlington Street",0.4801 -9763,252226,2 Brock Bank Rossendale Lancashire BB4 9LH,,, BB4 9LH,Bungalow: Detached,Domestic EPC Required,EPC Present,29 Jul 2025,C - 69 to 80,70.0,C - 69 to 80,75.0,BB49LH,100012410647.0,2 Brock Bank,0.4341 -10810,182641,53 Waterloo Road Burnley Lancashire BB11 3AL,,, BB11 3AL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,23 Jul 2012,C - 69 to 80,79.0,A - 92 Plus,94.0,BB113AL,10014136336.0,"53, Waterloo Road",0.4652 -10811,89441,51 Waterloo Road Burnley Lancashire BB11 3AL,,, BB11 3AL,Bungalow: End Terr,Domestic EPC Required,EPC Present,28 Nov 2009,B - 81 to 91,83.0,B - 81 to 91,83.0,BB113AL,200002316793.0,"51, Waterloo Road",0.4652 -10812,41090,55 Waterloo Road Burnley Lancashire BB11 3AL,,, BB11 3AL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,15 Aug 2024,C - 69 to 80,79.0,A - 92 Plus,93.0,BB113AL,200002431574.0,55 Waterloo Road,0.4652 -10813,88998,57 Waterloo Road Burnley Lancashire BB11 3AL,,, BB11 3AL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,16 Oct 2009,B - 81 to 91,84.0,B - 81 to 91,84.0,BB113AL,10014136338.0,"57, Waterloo Road",0.4652 -10814,197948,59 Waterloo Road Burnley Lancashire BB11 3AL,,, BB11 3AL,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,26 Feb 2013,C - 69 to 80,79.0,A - 92 Plus,94.0,BB113AL,200002456087.0,"59, Waterloo Road",0.4652 -10815,94857,61 Waterloo Road Burnley Lancashire BB11 3AL,,, BB11 3AL,Bungalow: End Terr,Domestic EPC Required,EPC Present,29 Mar 2010,B - 81 to 91,81.0,B - 81 to 91,81.0,BB113AL,200002307829.0,"61, Waterloo Road",0.4652 -10816,230656,35 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,31 Oct 2025,C - 69 to 80,76.0,B - 81 to 91,88.0,BB113AH,10014136768.0,35 Hirst Gardens,0.4652 -10817,107644,34 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,23 Feb 2011,B - 81 to 91,84.0,B - 81 to 91,84.0,BB113AH,10014136767.0,"34, Hirst Gardens",0.4652 -10818,328072,33 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136766.0,"33, Hirst Gardens",0.4652 -10819,41091,32 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Oct 2022,C - 69 to 80,74.0,B - 81 to 91,88.0,BB113AH,10014136765.0,32 Hirst Gardens,0.4652 -10820,328073,31 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136764.0,"31, Hirst Gardens",0.4652 -10821,117330,30 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,05 Aug 2024,C - 69 to 80,77.0,B - 81 to 91,90.0,BB113AH,10014136701.0,30 Hirst Gardens,0.4652 -10822,221648,29 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,26 Sep 2014,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136700.0,"29, Hirst Gardens",0.4652 -10823,227308,28 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Jul 2014,C - 69 to 80,80.0,B - 81 to 91,91.0,BB113AH,10014136698.0,"28, Hirst Gardens",0.4652 -10824,245457,27 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,22 Dec 2015,C - 69 to 80,79.0,B - 81 to 91,91.0,BB113AH,10014136696.0,"27, Hirst Gardens",0.4652 -10825,328074,26 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136695.0,"26, Hirst Gardens",0.4652 -10826,221139,25 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,13 Dec 2013,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136694.0,"25, Hirst Gardens",0.4652 -10827,205798,24 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,11 Jun 2013,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136763.0,"24, Hirst Gardens",0.4652 -10828,274695,23 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,12 Jun 2017,C - 69 to 80,76.0,C - 69 to 80,76.0,BB113AH,10014136693.0,"23, Hirst Gardens",0.4652 -10829,328075,22 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136691.0,"22, Hirst Gardens",0.4652 -10830,105243,21 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Jan 2011,B - 81 to 91,83.0,B - 81 to 91,83.0,BB113AH,10014136762.0,"21, Hirst Gardens",0.4652 -10831,134545,20 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,04 Feb 2012,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113AH,10014136690.0,"20, Hirst Gardens",0.4652 -10832,362716,19 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,30 Aug 2023,C - 69 to 80,77.0,B - 81 to 91,91.0,BB113AH,10014136689.0,19 Hirst Gardens,0.4652 -10833,272189,18 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,20 Feb 2017,C - 69 to 80,79.0,A - 92 Plus,92.0,BB113AH,10014136688.0,"18, Hirst Gardens",0.4652 -10834,125271,17 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,01 Dec 2011,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113AH,10014136686.0,"17, Hirst Gardens",0.4652 -10835,328076,16 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136761.0,"16, Hirst Gardens",0.4652 -10836,230224,15 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Nov 2014,C - 69 to 80,80.0,A - 92 Plus,94.0,BB113AH,10014136685.0,"15, Hirst Gardens",0.4652 -10837,183758,14 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,02 Aug 2012,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136684.0,"14, Hirst Gardens",0.4652 -10838,229248,12 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,15 Oct 2014,C - 69 to 80,77.0,A - 92 Plus,92.0,BB113AH,10014136683.0,"12, Hirst Gardens",0.4652 -10839,194529,11 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,17 Nov 2021,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136682.0,11 Hirst Gardens,0.4652 -10840,197463,10 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,04 Sep 2023,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136681.0,10 Hirst Gardens,0.4652 -10841,328077,9 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136680.0,"9, Hirst Gardens",0.4596 -10842,163897,8 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Apr 2012,C - 69 to 80,77.0,B - 81 to 91,91.0,BB113AH,10014136679.0,"8, Hirst Gardens",0.4596 -10843,116414,7 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,17 Aug 2011,C - 69 to 80,78.0,C - 69 to 80,78.0,BB113AH,10014136678.0,"7, Hirst Gardens",0.4596 -10844,328078,6 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,77.0,B - 81 to 91,91.0,BB113AH,10014136760.0,"6, Hirst Gardens",0.4596 -10845,328079,5 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014136677.0,"5, Hirst Gardens",0.4596 -10846,219729,4 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,07 Nov 2013,C - 69 to 80,79.0,B - 81 to 91,91.0,BB113AH,10014136676.0,"4, Hirst Gardens",0.4596 -10847,328066,3 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,78.0,A - 92 Plus,92.0,BB113AH,10014137709.0,"3, Hirst Gardens",0.4596 -10848,89058,2 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: Mid-Terr,Domestic EPC Required,EPC Present,10 Jun 2021,C - 69 to 80,77.0,B - 81 to 91,91.0,BB113AH,10014137708.0,2 HIRST GARDENS,0.4596 -10849,328065,1 Hirst Gardens Burnley Lancashire BB11 3AH,,, BB11 3AH,Bungalow: End Terr,Domestic EPC Required,EPC Present,24 Feb 2020,C - 69 to 80,77.0,B - 81 to 91,91.0,BB113AH,10014136675.0,"1, Hirst Gardens",0.4596 -10850,89070,77 Laithe Street Burnley Lancashire BB11 2LJ,,, BB11 2LJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Nov 2009,C - 69 to 80,69.0,C - 69 to 80,76.0,BB112LJ,100010345254.0,"77, Laithe Street",0.4652 -13147,337940,72 Laithe Street Burnley Lancashire BB11 2LJ,,, BB11 2LJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Mar 2021,C - 69 to 80,75.0,A - 92 Plus,92.0,BB112LJ,100010345249.0,"72 LAITHE STREET, BURNLEY",0.6185 -13475,357168,78 Laithe Street Burnley Lancashire BB11 2LJ,,, BB11 2LJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,22 Jul 2022,C - 69 to 80,75.0,A - 92 Plus,92.0,BB112LJ,100010345255.0,78 Laithe Street,0.4652 -10852,116211,41 Wren Street Burnley Lancashire BB12 6QT,,, BB12 6QT,House: Mid-Terrace,Domestic EPC Required,EPC Present,25 Jul 2011,C - 69 to 80,70.0,C - 69 to 80,70.0,BB126QT,100010361599.0,"41, Wren Street",0.4536 -10856,41092,71 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Sep 2008,B - 81 to 91,83.0,B - 81 to 91,85.0,BB113DU,,, -10858,41093,73 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Sep 2008,B - 81 to 91,83.0,B - 81 to 91,85.0,BB113DU,,, -10859,41094,75 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: End Terrace,Domestic EPC Required,EPC Present,02 Sep 2008,B - 81 to 91,81.0,B - 81 to 91,83.0,BB113DU,,, -10860,41095,77 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: End Terrace,Domestic EPC Required,EPC Present,03 Sep 2008,B - 81 to 91,81.0,B - 81 to 91,83.0,BB113DU,,, -10861,250133,79 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 May 2016,C - 69 to 80,77.0,B - 81 to 91,88.0,BB113DU,10014137650.0,"79, Straight Mile Court",0.5389 -10862,41097,81 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Sep 2008,B - 81 to 91,83.0,B - 81 to 91,85.0,BB113DU,,, -10863,41098,83 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: End Terrace,Domestic EPC Required,EPC Present,03 Sep 2008,B - 81 to 91,81.0,B - 81 to 91,83.0,BB113DU,,, -10864,41099,87 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Sep 2008,B - 81 to 91,83.0,B - 81 to 91,85.0,BB113DU,,, -10865,41100,89 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: Mid-Terrace,Domestic EPC Required,EPC Present,02 Sep 2008,B - 81 to 91,83.0,B - 81 to 91,85.0,BB113DU,,, -10867,41101,91 Straight Mile Court Burnley Lancashire BB11 3DU,,, BB11 3DU,House: End Terrace,Domestic EPC Required,EPC Present,02 Sep 2008,B - 81 to 91,81.0,B - 81 to 91,83.0,BB113DU,,, -10899,95347,5 Walpole Street Burnley Lancashire BB10 1SW,,, BB10 1SW,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Aug 2009,E - 39 to 54,48.0,D - 55 to 68,60.0,BB101SW,100010359702.0,"5, Walpole Street",0.4652 -10907,99051,26 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jun 2008,B - 81 to 91,81.0,B - 81 to 91,83.0,OL139DW,,, -10908,99014,28 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: Mid-Terrace,Domestic EPC Required,EPC Present,03 Jun 2008,B - 81 to 91,81.0,B - 81 to 91,83.0,OL139DW,,, -10909,202630,24 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: End Terrace,Domestic EPC Required,EPC Present,18 Apr 2013,C - 69 to 80,78.0,B - 81 to 91,88.0,OL139DW,10014224188.0,"24, Pendle Avenue",0.4717 -10967,107619,34 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jan 2011,B - 81 to 91,88.0,B - 81 to 91,88.0,OL139DW,10014224193.0,"34, Pendle Avenue",0.4717 -10968,221625,36 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,80.0,A - 92 Plus,92.0,OL139DW,10014224194.0,"36, Pendle Avenue",0.4717 -10969,107623,42 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Feb 2011,B - 81 to 91,88.0,B - 81 to 91,88.0,OL139DW,10014224197.0,"42, Pendle Avenue",0.4717 -10970,107624,44 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jan 2011,B - 81 to 91,88.0,B - 81 to 91,88.0,OL139DW,10014224198.0,"44, Pendle Avenue",0.4717 -10971,107627,50 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jan 2011,B - 81 to 91,88.0,B - 81 to 91,88.0,OL139DW,10014224201.0,"50, Pendle Avenue",0.4717 -10972,107618,32 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: End Terrace,Domestic EPC Required,EPC Present,14 Jan 2011,B - 81 to 91,87.0,B - 81 to 91,87.0,OL139DW,10014224192.0,"32, Pendle Avenue",0.4717 -10973,107621,38 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: End Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,C - 69 to 80,78.0,B - 81 to 91,90.0,OL139DW,10014224195.0,"38, Pendle Avenue",0.4717 -10974,107622,40 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: End Terrace,Domestic EPC Required,EPC Present,14 Jan 2011,B - 81 to 91,87.0,B - 81 to 91,87.0,OL139DW,10014224196.0,"40, Pendle Avenue",0.4717 -10975,107625,46 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: End Terrace,Domestic EPC Required,EPC Present,14 Dec 2021,C - 69 to 80,79.0,B - 81 to 91,91.0,OL139DW,10014224199.0,46 Pendle Avenue,0.4717 -10976,107626,48 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: End Terrace,Domestic EPC Required,EPC Present,14 Jan 2011,B - 81 to 91,87.0,B - 81 to 91,87.0,OL139DW,10014224200.0,"48, Pendle Avenue",0.4717 -10977,107617,52 Pendle Avenue Bacup Lancashire OL13 9DW,,, OL13 9DW,House: End Terrace,Domestic EPC Required,EPC Present,14 Jan 2011,B - 81 to 91,87.0,B - 81 to 91,87.0,OL139DW,10014224202.0,"52, Pendle Avenue",0.4717 -10912,99106,30 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Bottom,Domestic EPC Required,EPC Present,10 Mar 2010,C - 69 to 80,76.0,C - 69 to 80,78.0,BB112QG,100010341822.0,"30, Healey Mount",0.4596 -10913,99109,31 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Bottom,Domestic EPC Required,EPC Present,10 Mar 2010,C - 69 to 80,77.0,C - 69 to 80,80.0,BB112QG,100010341823.0,"31, Healey Mount",0.4596 -10914,99112,32 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Bottom,Domestic EPC Required,EPC Present,23 Nov 2021,D - 55 to 68,62.0,C - 69 to 80,71.0,BB112QG,100010341824.0,32 Healey Mount,0.4596 -10915,99115,33 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Top,Domestic EPC Required,EPC Present,10 Mar 2010,C - 69 to 80,79.0,B - 81 to 91,83.0,BB112QG,100010341825.0,"33, Healey Mount",0.4596 -10916,99119,34 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Top,Domestic EPC Required,EPC Present,10 Mar 2010,C - 69 to 80,79.0,B - 81 to 91,84.0,BB112QG,100010341826.0,"34, Healey Mount",0.4596 -10917,99077,35 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Top,Domestic EPC Required,EPC Present,10 Mar 2010,C - 69 to 80,78.0,B - 81 to 91,83.0,BB112QG,100010341827.0,"35, Healey Mount",0.4596 -10918,99083,36 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Bottom,Domestic EPC Required,EPC Present,11 Jul 2022,C - 69 to 80,74.0,C - 69 to 80,77.0,BB112QG,100010341828.0,36 Healey Mount,0.4596 -10919,99086,37 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Bottom,Domestic EPC Required,EPC Present,10 Mar 2010,C - 69 to 80,77.0,C - 69 to 80,80.0,BB112QG,100010341829.0,"37, Healey Mount",0.4596 -10920,99089,38 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Middle,Domestic EPC Required,EPC Present,10 Mar 2010,B - 81 to 91,83.0,B - 81 to 91,86.0,BB112QG,100010341830.0,"38, Healey Mount",0.4596 -10921,99092,39 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Top,Domestic EPC Required,EPC Present,10 Mar 2010,C - 69 to 80,80.0,B - 81 to 91,84.0,BB112QG,100010341831.0,"39, Healey Mount",0.4596 -10922,99096,40 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Middle,Domestic EPC Required,EPC Present,10 Mar 2010,B - 81 to 91,81.0,B - 81 to 91,84.0,BB112QG,100010341832.0,"40, Healey Mount",0.4596 -10923,99099,41 Healey Mount Burnley Lancashire BB11 2QG,,, BB11 2QG,Flat: Top,Domestic EPC Required,EPC Present,10 Mar 2010,C - 69 to 80,78.0,B - 81 to 91,83.0,BB112QG,100010341833.0,"41, Healey Mount",0.4596 -10931,252231,Flat 1 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Bottom,Domestic EPC Required,EPC Present,27 Oct 2009,D - 55 to 68,55.0,D - 55 to 68,63.0,BB47SS,100012410769.0,"1 Litchford House, Edge Lane",0.535 -10935,116208,Flat 2 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2024,D - 55 to 68,64.0,C - 69 to 80,75.0,BB47SS,100012410770.0,"2 Litchford House, Edge Lane",0.535 -10936,180997,Flat 3 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Bottom,Domestic EPC Required,EPC Present,20 Jun 2012,C - 69 to 80,70.0,C - 69 to 80,77.0,BB47SS,100012410771.0,"3 Litchford House, Edge Lane",0.535 -10937,252233,Flat 4 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Bottom,Domestic EPC Required,EPC Present,27 Oct 2009,D - 55 to 68,57.0,D - 55 to 68,63.0,BB47SS,100012410772.0,"4 Litchford House, Edge Lane",0.535 -10938,136671,Flat 5 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Top,Domestic EPC Required,EPC Present,28 Feb 2012,D - 55 to 68,63.0,C - 69 to 80,71.0,BB47SS,100012410773.0,"5 Litchford House, Edge Lane",0.535 -10939,252175,Flat 6 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Top,Domestic EPC Required,EPC Present,27 Oct 2009,C - 69 to 80,73.0,C - 69 to 80,80.0,BB47SS,100012410774.0,"6 Litchford House, Edge Lane",0.535 -10940,221140,Flat 7 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Middle,Domestic EPC Required,EPC Present,13 Dec 2013,C - 69 to 80,75.0,C - 69 to 80,78.0,BB47SS,100012410775.0,"7 Litchford House, Edge Lane",0.535 -10941,204372,Flat 8 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Bottom,Domestic EPC Required,EPC Present,20 May 2013,D - 55 to 68,64.0,C - 69 to 80,71.0,BB47SS,100012410776.0,"8 Litchford House, Edge Lane",0.535 -10942,252227,Flat 9 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Top,Domestic EPC Required,EPC Present,25 Sep 2025,E - 39 to 54,41.0,C - 69 to 80,74.0,BB47SS,100012410777.0,"9 Litchford House, Edge Lane",0.535 -10943,115720,Flat 10 Litchford House Edge Lane Rawtenstall Lancashire BB4 7SS,,, BB4 7SS,Flat: Top,Domestic EPC Required,EPC Present,11 Oct 2022,E - 39 to 54,53.0,C - 69 to 80,78.0,BB47SS,100012410778.0,"10 Litchford House, Edge Lane",0.538 -10934,252229,Flat 1 Carter Place Woodlands Road Nelson Lancashire BB9 9JX,,, BB9 9JX,Flat: Bottom,Domestic EPC Required,EPC Present,27 Oct 2009,D - 55 to 68,60.0,D - 55 to 68,66.0,BB99JX,100012550862.0,"1, Carter Place, Woodlands Road",0.5531 -10944,252221,Flat 3 Carter Place Woodlands Road Nelson Lancashire BB9 9JX,,, BB9 9JX,Flat: Top,Domestic EPC Required,EPC Present,27 Oct 2009,D - 55 to 68,68.0,C - 69 to 80,76.0,BB99JX,100012550863.0,"3, Carter Place, Woodlands Road",0.5531 -10945,252187,Flat 5 Carter Place Woodlands Road Nelson Lancashire BB9 9JX,,, BB9 9JX,Flat: Top,Domestic EPC Required,EPC Present,27 Oct 2009,D - 55 to 68,68.0,C - 69 to 80,79.0,BB99JX,100012550864.0,"5, Carter Place, Woodlands Road",0.5531 -10946,252228,Flat 7 Carter Place Woodlands Road Nelson Lancashire BB9 9JX,,, BB9 9JX,Flat: Bottom,Domestic EPC Required,EPC Present,27 Oct 2009,D - 55 to 68,63.0,D - 55 to 68,68.0,BB99JX,100012550865.0,"7, Carter Place, Woodlands Road",0.5531 -10947,192266,Flat 9 Carter Place Woodlands Road Nelson Lancashire BB9 9JX,,, BB9 9JX,Flat: Top,Domestic EPC Required,EPC Present,27 Oct 2021,D - 55 to 68,66.0,C - 69 to 80,75.0,BB99JX,100012550866.0,"9 Carter Place, Woodlands Road",0.5531 -10950,234535,Flat 1 Preston Beck Water Street Earby Lancashire BB18 6QS,,, BB18 6QS,Flat: Bottom,Domestic EPC Required,EPC Present,14 Jun 2025,C - 69 to 80,57.0,C - 69 to 80,79.0,BB186QS,100012400104.0,"Flat 1 Preston Beck, Water Street, Earby",0.7321 -10951,119033,Flat 2 Preston Beck Water Street Earby Lancashire BB18 6QS,,, BB18 6QS,Flat: Bottom,Domestic EPC Required,EPC Present,12 Oct 2011,D - 55 to 68,67.0,C - 69 to 80,74.0,BB186QS,100012400105.0,"Flat 2, Preston Beck, Water Street, Earby",0.7321 -10952,252225,Flat 3 Preston Beck Water Street Earby Lancashire BB18 6QS,,, BB18 6QS,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2009,D - 55 to 68,65.0,C - 69 to 80,73.0,BB186QS,100012400106.0,"Flat 3 Preston Beck, Water Street, Earby",0.7321 -10953,204345,Flat 4 Preston Beck Water Street Earby Lancashire BB18 6QS,,, BB18 6QS,Flat: Top,Domestic EPC Required,EPC Present,05 Sep 2024,C - 69 to 80,69.0,C - 69 to 80,79.0,BB186QS,100012400107.0,"Flat 4 Preston Beck, Water Street, Earby",0.7321 -10954,129478,Flat 5 Preston Beck Water Street Earby Lancashire BB18 6QS,,, BB18 6QS,Flat: Top,Domestic EPC Required,EPC Present,05 Jan 2012,D - 55 to 68,61.0,D - 55 to 68,64.0,BB186QS,100012400108.0,"Flat 5 Preston Beck, Water Street, Earby",0.7321 -10955,115672,Flat 6 Preston Beck Water Street Earby Lancashire BB18 6QS,,, BB18 6QS,Flat: Top,Domestic EPC Required,EPC Present,21 Aug 2022,D - 55 to 68,63.0,C - 69 to 80,77.0,BB186QS,100012400109.0,"Flat 6 Preston Beck, Water Street, Earby",0.7321 -10956,246548,Flat 1 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Bottom,Domestic EPC Required,EPC Present,14 Jun 2025,D - 55 to 68,59.0,C - 69 to 80,79.0,BB186PJ,100012400090.0,"1 Wilkinson Mount, Water Street, Earby",0.6498 -10958,221680,Flat 2 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,56.0,D - 55 to 68,57.0,BB186PJ,100012400091.0,"2 Wilkinson Mount, Water Street, Earby",0.6498 -10959,221681,Flat 3 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Bottom,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,63.0,C - 69 to 80,79.0,BB186PJ,100012400093.0,"3 Wilkinson Mount, Water Street, Earby",0.6498 -10960,252178,Flat 4 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Middle,Domestic EPC Required,EPC Present,10 Oct 2022,C - 69 to 80,70.0,C - 69 to 80,83.0,BB186PJ,100012400095.0,"4 Wilkinson Mount, Water Street, Earby",0.6498 -10961,241674,Flat 5 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Middle,Domestic EPC Required,EPC Present,23 Sep 2015,C - 69 to 80,79.0,B - 81 to 91,84.0,BB186PJ,100012400096.0,"5 Wilkinson Mount, Water Street, Earby",0.6498 -10962,118462,Flat 6 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Bottom,Domestic EPC Required,EPC Present,27 Sep 2022,D - 55 to 68,61.0,C - 69 to 80,79.0,BB186PJ,100012400097.0,"6 Wilkinson Mount, Water Street, Earby",0.6498 -10963,118461,Flat 7 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Top,Domestic EPC Required,EPC Present,28 Sep 2011,C - 69 to 80,71.0,C - 69 to 80,79.0,BB186PJ,100012400098.0,"7, Wilkinson Mount, Water Street",0.5558 -10964,125498,Flat 8 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Top,Domestic EPC Required,EPC Present,12 Dec 2011,C - 69 to 80,76.0,C - 69 to 80,80.0,BB186PJ,100012400099.0,"8 Wilkinson Mount, Water Street, Earby",0.6498 -10965,223039,Flat 9 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Top,Domestic EPC Required,EPC Present,27 Sep 2022,D - 55 to 68,57.0,C - 69 to 80,79.0,BB186PJ,100012400100.0,"9 Wilkinson Mount, Water Street, Earby",0.6498 -10966,252213,Flat 10 Wilkinson Mount Water Street Earby Lancashire BB18 6PJ,,, BB18 6PJ,Flat: Top,Domestic EPC Required,EPC Present,27 Oct 2009,C - 69 to 80,69.0,C - 69 to 80,77.0,BB186PJ,100012400101.0,"10 Wilkinson Mount, Water Street, Earby",0.6516 -10981,111056,36 Eastgate Whitworth Rochdale Lancashire OL12 8UB,,, OL12 8UB,House: Mid-Terrace,Domestic EPC Required,EPC Present,19 Nov 2009,C - 69 to 80,72.0,C - 69 to 80,76.0,OL128UB,100010601472.0,"36, Eastgate, Whitworth",0.4856 -10985,111041,5 Hawks Grove Rossendale Lancashire BB4 6BG,,, BB4 6BG,House: Mid-Terrace,Domestic EPC Required,EPC Present,16 Nov 2009,D - 55 to 68,65.0,D - 55 to 68,68.0,BB46BG,100010609900.0,"5, Hawks Grove",0.4411 -10987,111044,6 Heathfield Avenue Bacup Lancashire OL13 0SQ,,, OL13 0SQ,House: Mid-Terrace,Domestic EPC Required,EPC Present,15 Jul 2025,D - 55 to 68,65.0,B - 81 to 91,81.0,OL130SQ,100010596694.0,6 Heathfield Avenue,0.4864 -10989,252224,17 Taylor Avenue Rossendale Lancashire BB4 9SY,,, BB4 9SY,House: Mid-Terrace,Domestic EPC Required,EPC Present,31 Jul 2025,D - 55 to 68,64.0,C - 69 to 80,80.0,BB49SY,100010615638.0,17 Taylor Avenue,0.4592 -10991,111059,52 Rossendale Crescent Bacup Lancashire OL13 9LN,,, OL13 9LN,House: Semi-Detached,Domestic EPC Required,EPC Present,09 Mar 2010,D - 55 to 68,57.0,D - 55 to 68,64.0,OL139LN,200001622366.0,"52, Rosendale Crescent",0.3755 -10993,111054,26 Windermere Road Bacup Lancashire OL13 9DN,,, OL13 9DN,Bungalow: Semi-Det,Domestic EPC Required,EPC Present,30 Jun 2010,C - 69 to 80,77.0,C - 69 to 80,79.0,OL139DN,10013832913.0,"26, Windermere Road",0.4818 -10994,111036,2 Leamington Avenue Burnley Lancashire BB10 3HH,,, BB10 3HH,House: Semi-Detached,Domestic EPC Required,EPC Present,02 Dec 2020,D - 55 to 68,65.0,B - 81 to 91,82.0,BB103HH,100010345676.0,"2 LEAMINGTON AVENUE, BURNLEY",0.6268 -10996,111050,12 Hall Carr Road Rossendale Lancashire BB4 6AW,,, BB4 6AW,House: Semi-Detached,Domestic EPC Required,EPC Present,19 Jan 2024,C - 69 to 80,72.0,B - 81 to 91,90.0,BB46AW,100010609187.0,12 Hall Carr Road,0.5109 -11006,118448,19 Claremont Street Burnley Lancashire BB12 0HG,,, BB12 0HG,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Feb 2010,C - 69 to 80,71.0,C - 69 to 80,79.0,BB120HG,100010333917.0,"19, Claremont Street",0.4801 -11011,118455,291 Manchester Road Burnley Lancashire BB11 4HL,,, BB11 4HL,House: Semi-Detached,Domestic EPC Required,EPC Present,01 Feb 2010,D - 55 to 68,67.0,C - 69 to 80,76.0,BB114HL,10014137903.0,291 Manchester Road,0.4801 -11013,118248,10 Mill Street Whitworth Rochdale Lancashire OL12 8QP,,, OL12 8QP,House: Mid-Terrace,Domestic EPC Required,EPC Present,23 Jun 2022,C - 69 to 80,76.0,A - 92 Plus,120.0,OL128QP,10013833937.0,"10 Mill Street, Whitworth",0.5432 -11015,118251,9 Ronaldsway Close Bacup Lancashire OL13 9PY,,, OL13 9PY,House: Detached,Domestic EPC Required,EPC Present,24 Feb 2011,C - 69 to 80,72.0,C - 69 to 80,75.0,OL139PY,100010598826.0,"The Windrush, 9 Ronaldsway Close",0.3847 -11017,118242,47 Woodside Crescent Rossendale Lancashire BB4 7UG,,, BB4 7UG,House: Semi-Detached,Domestic EPC Required,EPC Present,26 Nov 2010,D - 55 to 68,56.0,C - 69 to 80,76.0,BB47UG,100010616935.0,"47, Woodside Crescent",0.4786 -11021,118453,9 Ormerod Street Worsthorne Burnley Lancashire BB10 3NU,,, BB10 3NU,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Feb 2010,D - 55 to 68,66.0,C - 69 to 80,77.0,BB103NU,100010350655.0,"9, Ormerod Street, Worsthorne",0.5555 -11023,118245,19 Chester Crescent Rossendale Lancashire BB4 4HE,,, BB4 4HE,House: Semi-Detached,Domestic EPC Required,EPC Present,23 Jun 2010,D - 55 to 68,58.0,C - 69 to 80,72.0,BB44HE,100010606537.0,"19, Chester Crescent, Haslingden",0.4475 -11024,118238,52 Lowerhouse Lane Burnley Lancashire BB12 6HZ,,, BB12 6HZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,18 Jun 2010,D - 55 to 68,60.0,C - 69 to 80,69.0,BB126HZ,100010347075.0,"52, Lowerhouse Lane",0.4754 -11058,194695,9 Kay Street Clitheroe Lancashire BB7 1BX,,, BB7 1BX,House: Mid-Terrace,Domestic EPC Required,EPC Present,06 Jun 2023,D - 55 to 68,61.0,C - 69 to 80,79.0,BB71BX,100010586178.0,9 Kay Street,0.4371 -11059,194018,12 Monk Street Clitheroe Lancashire BB7 1DJ,,, BB7 1DJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Dec 2012,D - 55 to 68,62.0,C - 69 to 80,77.0,BB71DJ,100010587358.0,"12, Monk Street",0.4505 -11060,252174,67 Colthirst Drive Clitheroe Lancashire BB7 2EJ,,, BB7 2EJ,House: Mid-Terrace,Domestic EPC Required,EPC Present,08 Mar 2011,C - 69 to 80,74.0,C - 69 to 80,76.0,BB72EJ,10070401986.0,"67, Colthirst Drive",0.4724 -11062,252222,56 Woone Lane Clitheroe Lancashire BB7 1BG,,, BB7 1BG,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Jan 2012,D - 55 to 68,64.0,D - 55 to 68,66.0,BB71BG,100010591083.0,"56, Woone Lane",0.444 -11070,181818,14 Beech Street PADIHAM Lancashire BB12 7EE,,, BB12 7EE,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 May 2011,D - 55 to 68,64.0,C - 69 to 80,70.0,BB127EE,100010328651.0,"14, Beech Street, Padiham",0.6154 -11081,252220,79 Horning Crescent Burnley Lancashire BB10 2NT,,, BB10 2NT,House: Semi-Detached,Domestic EPC Required,EPC Present,27 Jan 2026,D - 55 to 68,67.0,C - 69 to 80,75.0,BB102NT,100010343546.0,79 Horning Crescent,0.4801 -11128,190682,1 Leopold Street Colne Lancashire BB8 9NZ,,, BB8 9NZ,House: End Terrace,Domestic EPC Required,EPC Present,13 Aug 2014,E - 39 to 54,54.0,C - 69 to 80,74.0,BB89NZ,10024179282.0,"1, Leopold Street",0.4751 -11129,190692,11 Leopold Street Colne Lancashire BB8 9NZ,,, BB8 9NZ,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Aug 2012,D - 55 to 68,60.0,B - 81 to 91,90.0,BB89NZ,10024179287.0,"11, Leopold Street",0.4803 -11130,190665,3 Duke Street Winewall Colne Lancashire BB8 8DA,,, BB8 8DA,House: End Terrace,Domestic EPC Required,EPC Present,13 Aug 2014,D - 55 to 68,57.0,B - 81 to 91,88.0,BB88DA,61027406.0,"3, Duke Street, Winewall",0.5482 -11131,190655,5 Duke Street Winewall Colne Lancashire BB8 8DA,,, BB8 8DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Aug 2012,D - 55 to 68,57.0,B - 81 to 91,85.0,BB88DA,61027407.0,"5, Duke Street, Winewall",0.5482 -11132,190662,9 Duke Street Winewall Colne Lancashire BB8 8DA,,, BB8 8DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,21 Oct 2013,D - 55 to 68,60.0,B - 81 to 91,88.0,BB88DA,61027409.0,"9, Duke Street, Winewall",0.5482 -11133,190659,11 Duke Street Winewall Colne Lancashire BB8 8DA,,, BB8 8DA,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Aug 2012,D - 55 to 68,68.0,B - 81 to 91,86.0,BB88DA,61027401.0,"11, Duke Street, Winewall",0.5518 -11138,190696,1 Winewall Lane Winewall Colne Lancashire BB8 8BX,,, BB8 8BX,House: End Terrace,Domestic EPC Required,EPC Present,27 Aug 2014,D - 55 to 68,58.0,B - 81 to 91,89.0,BB88BX,61027397.0,"1, Winewall Lane, Winewall",0.5087 -11139,190700,17 Winewall Lane Winewall Colne Lancashire BB8 8BX,,, BB8 8BX,House: Mid-Terrace,Domestic EPC Required,EPC Present,13 Aug 2014,D - 55 to 68,68.0,A - 92 Plus,93.0,BB88BX,61029134.0,"17, Winewall Lane, Winewall",0.5119 -11140,190639,3 Hawley Street Winewall Colne Lancashire BB8 8BY,,, BB8 8BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jun 2025,E - 39 to 54,47.0,B - 81 to 91,89.0,BB88BY,61029151.0,"3 Hawley Street, Winewall",0.5551 -11141,190635,11 Hawley Street Winewall Colne Lancashire BB8 8BY,,, BB8 8BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,14 Jun 2025,C - 69 to 80,69.0,B - 81 to 91,88.0,BB88BY,61029142.0,"11 Hawley Street, Winewall",0.5583 -11142,190651,13 Hawley Street Winewall Colne Lancashire BB8 8BY,,, BB8 8BY,House: Mid-Terrace,Domestic EPC Required,EPC Present,24 Jul 2012,E - 39 to 54,44.0,C - 69 to 80,77.0,BB88BY,61029143.0,"13, Hawley Street, Winewall",0.5583 -11154,211471,5 Mill Court Sabden Lancashire BB7 9UB,,, BB7 9UB,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,84.0,A - 92 Plus,96.0,BB79UB,10022974460.0,"5, Mill Court, Sabden",0.6048 -11218,211470,8 Mill Court Sabden Lancashire BB7 9UB,,, BB7 9UB,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,85.0,A - 92 Plus,94.0,BB79UB,10022974473.0,"8, Mill Court, Sabden",0.6048 -11219,211466,9 Mill Court Sabden Lancashire BB7 9UB,,, BB7 9UB,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,85.0,A - 92 Plus,94.0,BB79UB,10022974474.0,"9, Mill Court, Sabden",0.6048 -11220,211467,10 Mill Court Sabden Lancashire BB7 9UB,,, BB7 9UB,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,85.0,A - 92 Plus,94.0,BB79UB,10022974475.0,"10, Mill Court, Sabden",0.6087 -11221,211468,11 Mill Court Sabden Lancashire BB7 9UB,,, BB7 9UB,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,85.0,A - 92 Plus,94.0,BB79UB,10022974476.0,"11, Mill Court, Sabden",0.6087 -13137,331218,1 Mill Court Sabden Lancashire BB7 9UB,,, BB7 9UB,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,83.0,A - 92 Plus,95.0,BB79UB,10022974456.0,"1, Mill Court, Sabden",0.6048 -13138,331240,4 Mill Court Sabden Lancashire BB7 9UB,,, BB7 9UB,House: Mid-Terrace,Domestic EPC Required,EPC Present,11 Mar 2013,B - 81 to 91,84.0,A - 92 Plus,96.0,BB79UB,10022974459.0,"4, Mill Court, Sabden",0.6048 From e279858bd656a17e0287d974aef559b16a452b18 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Tue, 10 Mar 2026 13:52:19 +0000 Subject: [PATCH 052/124] got rid of code that me and dan worked on --- asset_list/app.py | 16 ++++++++-------- backend/ordnanceSurvey/helpers.py | 1 - .../local_handler/invoke_local_lambda.py | 3 +-- backend/ordnanceSurvey/main.py | 2 +- 4 files changed, 10 insertions(+), 12 deletions(-) diff --git a/asset_list/app.py b/asset_list/app.py index 3096aba1..7858146d 100644 --- a/asset_list/app.py +++ b/asset_list/app.py @@ -73,25 +73,25 @@ def app(): Property UPRN """ - data_folder = "/Users/khalimconn-kowlessar/Documents/hestia/Customers/Lifespace Rentals/Missed" + data_folder = "/workspaces/model/asset_list" # data_filename = "For Modelling - Final - reviewed.xlsx" - data_filename = "Missed Properties - with address.xlsx" + data_filename = "assests.xlsx" sheet_name = "Sheet1" - postcode_column = "Postcode" - address1_column = "address1" + postcode_column = "POSTCODE" + address1_column = "ADDRESS" address1_method = None - fulladdress_column = "address1" + fulladdress_column = "ADDRESS" address_cols_to_concat = [] missing_postcodes_method = None landlord_year_built = None - landlord_os_uprn = "UPRN" - landlord_property_type = "Type" + landlord_os_uprn = None + landlord_property_type = None landlord_built_form = None landlord_wall_construction = None landlord_roof_construction = None landlord_heating_system = None landlord_existing_pv = None - landlord_property_id = "Reference" + landlord_property_id = "UPRN" landlord_sap = None outcomes_filename = None outcomes_sheetname = None diff --git a/backend/ordnanceSurvey/helpers.py b/backend/ordnanceSurvey/helpers.py index fcaa148a..c0d6583b 100644 --- a/backend/ordnanceSurvey/helpers.py +++ b/backend/ordnanceSurvey/helpers.py @@ -3,7 +3,6 @@ from pydantic import ValidationError import requests import pandas as pd from utils.logger import setup_logger -from backend.ordnanceSurvey.types import PostcodeResponse logger = setup_logger() diff --git a/backend/ordnanceSurvey/local_handler/invoke_local_lambda.py b/backend/ordnanceSurvey/local_handler/invoke_local_lambda.py index c25f2d20..e5272732 100644 --- a/backend/ordnanceSurvey/local_handler/invoke_local_lambda.py +++ b/backend/ordnanceSurvey/local_handler/invoke_local_lambda.py @@ -14,8 +14,7 @@ payload = { { "task_id": "e31f2f21-175b-4a91-a3ec-a6baa325e917", "sub_task_id": "8673913b-1a88-42d7-8578-0449123d94b0", - "s3_uri": "s3://retrofit-data-dev/ara_raw_outputs/e31f2f21-175b-4a91-a3ec-a6baa325e917/6a427b6e-1ece-4983-b1e5-9bffccc53d1d/2026-03-04T16:48:22.339995_634c88fc.csv", - "lexiscore_column": "address2uprn_lexiscore", + "s3_uri": "s3://retrofit-data-dev/ara_raw_inputs/calico/missinguprn.csv", } ) } diff --git a/backend/ordnanceSurvey/main.py b/backend/ordnanceSurvey/main.py index 70b45079..6a639b54 100644 --- a/backend/ordnanceSurvey/main.py +++ b/backend/ordnanceSurvey/main.py @@ -11,7 +11,7 @@ from utils.s3 import ( from backend.utils.addressMatch import AddressMatch from backend.app.db.connection import get_db_session from backend.app.db.models.postcode_search import PostcodeSearchModel -from backend.utils.ordnance_survey import ( +from backend.ordnanceSurvey.helpers import ( lookup_os_places, os_places_results_to_dataframe, ) From 891ccd4a8b45f9239b854ff648e914b37feb9134 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 10 Mar 2026 13:55:45 +0000 Subject: [PATCH 053/124] fast api s3 policy --- .../terraform/lambda/fast-api/main.tf | 4 +-- infrastructure/terraform/shared/main.tf | 26 +++++++++++++++++++ 2 files changed, 28 insertions(+), 2 deletions(-) diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index ebf436c3..40e0f4f9 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -122,10 +122,10 @@ module "fastapi" { ############################################ resource "aws_iam_role_policy_attachment" "fastapi_s3_read" { role = module.fastapi.role_name - policy_arn = data.terraform_remote_state.shared.outputs.fastapi_s3_read_arn + policy_arn = data.terraform_remote_state.shared.outputs.fast_api_s3_read_arn } resource "aws_iam_role_policy_attachment" "fastapi_sqs_send" { role = module.fastapi.role_name - policy_arn = data.terraform_remote_state.shared.outputs.fastapi_sqs_send_arn + policy_arn = data.terraform_remote_state.shared.outputs.fast_api_sqs_send_arn } \ No newline at end of file diff --git a/infrastructure/terraform/shared/main.tf b/infrastructure/terraform/shared/main.tf index eaacddec..f4b2cd3f 100644 --- a/infrastructure/terraform/shared/main.tf +++ b/infrastructure/terraform/shared/main.tf @@ -535,3 +535,29 @@ module "ara_fastapi_registry" { name = "ara-fastapi" stage = var.stage } + +# S3 policy for FastAPI app to read and write from various S3 buckets +module "fast_api_s3_read_and_write" { + source = "../modules/s3_iam_policy" + + policy_name = "FastAPIReadandWriteS3" + policy_description = "Allow FastAPI Lambda to read from and write to various S3 buckets" + bucket_arns = [ + "arn:aws:s3:::${module.s3_presignable_bucket.bucket_name}", + "arn:aws:s3:::${module.retrofit_sap_data.bucket_name}", + "arn:aws:s3:::${module.retrofit_sap_predictions.bucket_name}", + "arn:aws:s3:::${module.retrofit_carbon_predictions.bucket_name}", + "arn:aws:s3:::${module.retrofit_heat_predictions.bucket_name}", + "arn:aws:s3:::${module.retrofit_heating_kwh_predictions.bucket_name}", + "arn:aws:s3:::${module.retrofit_hotwater_kwh_predictions.bucket_name}", + "arn:aws:s3:::${module.retrofit_energy_assessments.bucket_name}" + ] + actions = ["s3:GetObject", "s3:ListBucket"] + resource_paths = ["/*"] +} + +output "fast_api_s3_read_and_write_arn" { + value = module.fast_api_s3_read_and_write.policy_arn +} + + From f3d51c4c7c0d7bb19101ca93c03fa69f8f2578d6 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 10 Mar 2026 14:59:46 +0000 Subject: [PATCH 054/124] sqs permissions --- .../terraform/lambda/fast-api/main.tf | 28 +++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index 40e0f4f9..cb4c923d 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -120,12 +120,36 @@ module "fastapi" { ############################################ # IAM policy attachments ############################################ -resource "aws_iam_role_policy_attachment" "fastapi_s3_read" { +resource "aws_iam_role_policy_attachment" "fast_api_s3_read" { role = module.fastapi.role_name policy_arn = data.terraform_remote_state.shared.outputs.fast_api_s3_read_arn } +module "fastapi_sqs_policy" { + source = "../../modules/generic_iam_policy" + + policy_name = "fastapi-sqs-send-${var.stage}" + policy_description = "Allow FastAPI to send messages to engine & categorisation queues" + + actions = [ + "sqs:SendMessage" + ] + + resources = [ + data.terraform_remote_state.engine.outputs.ara_engine_queue_arn, + data.terraform_remote_state.categorisation.outputs.categorisation_queue_arn + ] + + conditions = null + + tags = { + Service = "fastapi" + Stage = var.stage + } +} + + resource "aws_iam_role_policy_attachment" "fastapi_sqs_send" { role = module.fastapi.role_name - policy_arn = data.terraform_remote_state.shared.outputs.fast_api_sqs_send_arn + policy_arn = module.fastapi_sqs_policy.policy_arn } \ No newline at end of file From 9c4a8e11dba8f8a1644abb56be88603b3660d9a3 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 10 Mar 2026 15:15:21 +0000 Subject: [PATCH 055/124] correct s3 policy attachment --- infrastructure/terraform/lambda/fast-api/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index cb4c923d..e339b582 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -149,7 +149,7 @@ module "fastapi_sqs_policy" { } -resource "aws_iam_role_policy_attachment" "fastapi_sqs_send" { +resource "aws_iam_role_policy_attachment" "fastapi_sqs_read_and_write" { role = module.fastapi.role_name - policy_arn = module.fastapi_sqs_policy.policy_arn + policy_arn = data.terraform_remote_state.shared.outputs.fast_api_s3_read_and_write_arn } \ No newline at end of file From f7cf139a97aad7850c61efd8be9b2139ca92cc5d Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Tue, 10 Mar 2026 15:16:06 +0000 Subject: [PATCH 056/124] ignore if score is 0 --- backend/ordnanceSurvey/main.py | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/backend/ordnanceSurvey/main.py b/backend/ordnanceSurvey/main.py index 6a639b54..6e82b468 100644 --- a/backend/ordnanceSurvey/main.py +++ b/backend/ordnanceSurvey/main.py @@ -60,13 +60,6 @@ def check_if_post_code_exists_in_db_cache(postcode): return os_places_results_to_dataframe(response["data"]) -def get_ordance_survey_record(row, cache=None): - if cache is None: - cache = check_if_post_code_exists_in_db_cache(postcode) - - # process cache with row - - def save_results_to_s3( results_df: pd.DataFrame, task_id: str, @@ -211,6 +204,9 @@ def handler(body: dict[str, Any], context: Any, local: bool = False) -> None: best_idx = scores.idxmax() best_score = scores[best_idx] + if best_score <= 0: + continue + df.at[idx, "ordnance_survey_address"] = postcode_cache.at[ best_idx, "ADDRESS" ] From 49892a8f60e266ff68da44c95594c10defe116b6 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Tue, 10 Mar 2026 16:15:02 +0000 Subject: [PATCH 057/124] updated readme --- backend/address2UPRN/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/address2UPRN/README.md b/backend/address2UPRN/README.md index 1a835b6e..6d26f281 100644 --- a/backend/address2UPRN/README.md +++ b/backend/address2UPRN/README.md @@ -53,3 +53,6 @@ ordnance_survey sqs is => https://eu-west-2.console.aws.amazon.com/sqs/v3/home?r "task_id": "a7b70a02-4df4-45b5-a50b-196e095910bb", "sub_task_id": "567cf73b-1210-4909-9ecc-36ae7e23420e" } + + +outputs are at s3://retrofit-data-dev/ara_ordnance_survey_outputs// \ No newline at end of file From 201888bc3a05d3c5daee24ab289a7fd80cb00a38 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 10 Mar 2026 16:24:10 +0000 Subject: [PATCH 058/124] addres JTK PR: split optional ecr uri and image digest logic in deploy lambda --- .github/workflows/_deploy_lambda.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/_deploy_lambda.yml b/.github/workflows/_deploy_lambda.yml index 420f9504..3cef705e 100644 --- a/.github/workflows/_deploy_lambda.yml +++ b/.github/workflows/_deploy_lambda.yml @@ -121,15 +121,21 @@ jobs: TF_VAR_google_solar_api_key: ${{ secrets.TF_VAR_google_solar_api_key }} TF_VAR_ordnance_survey_api_key: ${{ secrets.TF_VAR_ordnance_survey_api_key}} run: | - EXTRA_VARS="" + ECR_REPO_URL_VAR="" if [[ -n "${{ inputs.ecr_repo }}" ]]; then - EXTRA_VARS="-var=ecr_repo_url=${{ steps.repo.outputs.ecr_repo_url }} -var=image_digest=${{ inputs.image_digest }}" + ECR_REPO_URL_VAR="-var=ecr_repo_url=${{ steps.repo.outputs.ecr_repo_url }}" + fi + + IMAGE_DIGEST_VAR="" + if [[ -n "${{ inputs.ecr_repo }}" ]]; then + IMAGE_DIGEST_VAR="-var=image_digest=${{ inputs.image_digest }}" fi terraform plan \ -var="stage=${{ inputs.stage }}" \ -var="lambda_name=${{ inputs.lambda_name }}" \ - $EXTRA_VARS \ + $ECR_REPO_URL_VAR \ + $IMAGE_DIGEST_VAR \ -out=lambdaplan - name: Terraform Apply From 510e2736340af049a2928e606102e8f338d04eb0 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 10 Mar 2026 16:30:27 +0000 Subject: [PATCH 059/124] addres JTK PR: remove pip upgrade after installing requirements --- infrastructure/terraform/lambda/fast-api/main.tf | 1 - 1 file changed, 1 deletion(-) diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index e339b582..c87897c7 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -65,7 +65,6 @@ resource "null_resource" "pip_install" { --implementation cp \ --python-version 3.11 \ --only-binary=:all: \ - --upgrade EOT } } From 76a095e81583072ea35697bb4fbde9c92af94e91 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 11 Mar 2026 09:48:15 +0000 Subject: [PATCH 060/124] add github workflow --- .github/workflows/deploy_terraform.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index 366cd004..3a234873 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -322,3 +322,27 @@ jobs: AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} AWS_REGION: ${{ secrets.DEV_AWS_REGION }} TF_VAR_ORDNANCE_SURVEY_API_KEY: ${{ secrets.ORDNANCE_SURVEY_API_KEY }} + + # ============================================================ + # Deploy FastAPI Lambda + # ============================================================ + fast_api_lambda: + needs: [determine_stage] + uses: ./.github/workflows/_deploy_lambda.yml + with: + lambda_name: ara_fast_api + lambda_path: infrastructure/terraform/lambda/fast-api + stage: ${{ needs.determine_stage.outputs.stage }} + terraform_apply: ${{ needs.determine_stage.outputs.terraform_apply }} + secrets: + AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} + AWS_REGION: ${{ secrets.DEV_AWS_REGION }} + TF_VAR_db_host: ${{ secrets.DEV_DB_HOST }} + TF_VAR_db_name: ${{ secrets.DEV_DB_NAME }} + TF_VAR_db_port: ${{ secrets.DEV_DB_PORT }} + TF_VAR_api_key: ${{ secrets.DEV_API_KEY }} + TF_VAR_secret_key: ${{ secrets.DEV_SECRET_KEY }} + TF_VAR_domain_name: ${{ secrets.DEV_DOMAIN_NAME }} + TF_VAR_epc_auth_token: ${{ secrets.DEV_EPC_AUTH_TOKEN }} + TF_VAR_google_solar_api_key: ${{ secrets.DEV_GOOGLE_SOLAR_API_KEY }} From 8828e4da15c6fe5329d7e9764e1d9b294ce55d97 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 11 Mar 2026 10:04:02 +0000 Subject: [PATCH 061/124] move engine and fastapi depoyments to top of deploy_terraform --- .github/workflows/deploy_terraform.yml | 130 +++++++++++++------------ 1 file changed, 66 insertions(+), 64 deletions(-) diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index 3a234873..6291dd2a 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -77,6 +77,71 @@ jobs: if: env.TERRAFORM_APPLY == 'true' working-directory: infrastructure/terraform/shared run: terraform apply -auto-approve tfplan + + # ============================================================ + # Ara Engine image and Push + # ============================================================ + ara_engine_image: + needs: [determine_stage, shared_terraform] + uses: ./.github/workflows/_build_image.yml + with: + ecr_repo: engine-${{ needs.determine_stage.outputs.stage }} + dockerfile_path: backend/docker/engine.Dockerfile + build_context: . + secrets: + AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} + AWS_REGION: ${{ secrets.DEV_AWS_REGION }} + + # ============================================================ + # Deploy Ara Engine Lambda + # ============================================================ + ara_engine_lambda: + needs: [ara_engine_image, determine_stage] + uses: ./.github/workflows/_deploy_lambda.yml + with: + lambda_name: ara_engine + lambda_path: infrastructure/terraform/lambda/engine + stage: ${{ needs.determine_stage.outputs.stage }} + ecr_repo: engine-${{ needs.determine_stage.outputs.stage }} + image_digest: ${{ needs.ara_engine_image.outputs.image_digest }} + terraform_apply: ${{ needs.determine_stage.outputs.terraform_apply }} + secrets: + AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} + AWS_REGION: ${{ secrets.DEV_AWS_REGION }} + TF_VAR_db_host: ${{ secrets.DEV_DB_HOST }} + TF_VAR_db_name: ${{ secrets.DEV_DB_NAME }} + TF_VAR_db_port: ${{ secrets.DEV_DB_PORT }} + TF_VAR_api_key: ${{ secrets.DEV_API_KEY }} + TF_VAR_secret_key: ${{ secrets.DEV_SECRET_KEY }} + TF_VAR_domain_name: ${{ secrets.DEV_DOMAIN_NAME }} + TF_VAR_epc_auth_token: ${{ secrets.DEV_EPC_AUTH_TOKEN }} + TF_VAR_google_solar_api_key: ${{ secrets.DEV_GOOGLE_SOLAR_API_KEY }} + + # ============================================================ + # Deploy FastAPI Lambda + # ============================================================ + fast_api_lambda: + needs: [determine_stage] + uses: ./.github/workflows/_deploy_lambda.yml + with: + lambda_name: ara_fast_api + lambda_path: infrastructure/terraform/lambda/fast-api + stage: ${{ needs.determine_stage.outputs.stage }} + terraform_apply: ${{ needs.determine_stage.outputs.terraform_apply }} + secrets: + AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} + AWS_REGION: ${{ secrets.DEV_AWS_REGION }} + TF_VAR_db_host: ${{ secrets.DEV_DB_HOST }} + TF_VAR_db_name: ${{ secrets.DEV_DB_NAME }} + TF_VAR_db_port: ${{ secrets.DEV_DB_PORT }} + TF_VAR_api_key: ${{ secrets.DEV_API_KEY }} + TF_VAR_secret_key: ${{ secrets.DEV_SECRET_KEY }} + TF_VAR_domain_name: ${{ secrets.DEV_DOMAIN_NAME }} + TF_VAR_epc_auth_token: ${{ secrets.DEV_EPC_AUTH_TOKEN }} + TF_VAR_google_solar_api_key: ${{ secrets.DEV_GOOGLE_SOLAR_API_KEY }} # ============================================================ # Build Address 2 UPRN image and Push @@ -241,47 +306,6 @@ jobs: AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} AWS_REGION: ${{ secrets.DEV_AWS_REGION }} - # ============================================================ - # Ara Engine image and Push - # ============================================================ - ara_engine_image: - needs: [determine_stage, shared_terraform] - uses: ./.github/workflows/_build_image.yml - with: - ecr_repo: engine-${{ needs.determine_stage.outputs.stage }} - dockerfile_path: backend/docker/engine.Dockerfile - build_context: . - secrets: - AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} - AWS_REGION: ${{ secrets.DEV_AWS_REGION }} - - # ============================================================ - # Deploy Ara Engine Lambda - # ============================================================ - ara_engine_lambda: - needs: [ara_engine_image, determine_stage] - uses: ./.github/workflows/_deploy_lambda.yml - with: - lambda_name: ara_engine - lambda_path: infrastructure/terraform/lambda/engine - stage: ${{ needs.determine_stage.outputs.stage }} - ecr_repo: engine-${{ needs.determine_stage.outputs.stage }} - image_digest: ${{ needs.ara_engine_image.outputs.image_digest }} - terraform_apply: ${{ needs.determine_stage.outputs.terraform_apply }} - secrets: - AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} - AWS_REGION: ${{ secrets.DEV_AWS_REGION }} - TF_VAR_db_host: ${{ secrets.DEV_DB_HOST }} - TF_VAR_db_name: ${{ secrets.DEV_DB_NAME }} - TF_VAR_db_port: ${{ secrets.DEV_DB_PORT }} - TF_VAR_api_key: ${{ secrets.DEV_API_KEY }} - TF_VAR_secret_key: ${{ secrets.DEV_SECRET_KEY }} - TF_VAR_domain_name: ${{ secrets.DEV_DOMAIN_NAME }} - TF_VAR_epc_auth_token: ${{ secrets.DEV_EPC_AUTH_TOKEN }} - TF_VAR_google_solar_api_key: ${{ secrets.DEV_GOOGLE_SOLAR_API_KEY }} - # ============================================================ # Build OrdanceSurvey image and Push # ============================================================ @@ -323,26 +347,4 @@ jobs: AWS_REGION: ${{ secrets.DEV_AWS_REGION }} TF_VAR_ORDNANCE_SURVEY_API_KEY: ${{ secrets.ORDNANCE_SURVEY_API_KEY }} - # ============================================================ - # Deploy FastAPI Lambda - # ============================================================ - fast_api_lambda: - needs: [determine_stage] - uses: ./.github/workflows/_deploy_lambda.yml - with: - lambda_name: ara_fast_api - lambda_path: infrastructure/terraform/lambda/fast-api - stage: ${{ needs.determine_stage.outputs.stage }} - terraform_apply: ${{ needs.determine_stage.outputs.terraform_apply }} - secrets: - AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} - AWS_REGION: ${{ secrets.DEV_AWS_REGION }} - TF_VAR_db_host: ${{ secrets.DEV_DB_HOST }} - TF_VAR_db_name: ${{ secrets.DEV_DB_NAME }} - TF_VAR_db_port: ${{ secrets.DEV_DB_PORT }} - TF_VAR_api_key: ${{ secrets.DEV_API_KEY }} - TF_VAR_secret_key: ${{ secrets.DEV_SECRET_KEY }} - TF_VAR_domain_name: ${{ secrets.DEV_DOMAIN_NAME }} - TF_VAR_epc_auth_token: ${{ secrets.DEV_EPC_AUTH_TOKEN }} - TF_VAR_google_solar_api_key: ${{ secrets.DEV_GOOGLE_SOLAR_API_KEY }} + From 7cade00db0658582542ccd018d2fec683bfd60e2 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 11 Mar 2026 10:54:44 +0000 Subject: [PATCH 062/124] commented out custom domain stuff for now --- .../terraform/lambda/fast-api/main.tf | 19 ++++--- .../modules/lambda_with_api_gateway/main.tf | 52 +++++++++---------- 2 files changed, 35 insertions(+), 36 deletions(-) diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index c87897c7..d9377b79 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -39,14 +39,13 @@ locals { db_credentials = jsondecode(data.aws_secretsmanager_secret_version.db_credentials.secret_string) } +# data "aws_ssm_parameter" "certificate_arn" { +# name = "/ssl_certificate_arn" +# } -data "aws_ssm_parameter" "certificate_arn" { - name = "/ssl_certificate_arn" -} - -data "aws_route53_zone" "this" { - name = var.domain_name -} +# data "aws_route53_zone" "this" { +# name = var.domain_name +# } ############################################ # Install Python requirements @@ -84,9 +83,9 @@ module "fastapi" { timeout = 600 memory_size = 512 - domain_name = "api.${var.domain_name}" - certificate_arn = data.aws_ssm_parameter.certificate_arn.value - route53_zone_id = data.aws_route53_zone.this.zone_id + # domain_name = "api.${var.domain_name}" + # certificate_arn = data.aws_ssm_parameter.certificate_arn.value + # route53_zone_id = data.aws_route53_zone.this.zone_id environment = { ENVIRONMENT = var.stage diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf index 23ccc4b1..61e24c32 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf @@ -71,33 +71,33 @@ resource "aws_lambda_permission" "apigw_invoke" { ############################################ # Custom domain ############################################ -resource "aws_apigatewayv2_domain_name" "this" { - count = var.domain_name != null ? 1 : 0 - domain_name = var.domain_name +# resource "aws_apigatewayv2_domain_name" "this" { +# count = var.domain_name != null ? 1 : 0 +# domain_name = var.domain_name - domain_name_configuration { - certificate_arn = var.certificate_arn - endpoint_type = "REGIONAL" - security_policy = "TLS_1_2" - } -} +# domain_name_configuration { +# certificate_arn = var.certificate_arn +# endpoint_type = "REGIONAL" +# security_policy = "TLS_1_2" +# } +# } -resource "aws_apigatewayv2_api_mapping" "this" { - count = var.domain_name != null ? 1 : 0 - api_id = aws_apigatewayv2_api.this.id - domain_name = aws_apigatewayv2_domain_name.this[0].id - stage = aws_apigatewayv2_stage.this.id -} +# resource "aws_apigatewayv2_api_mapping" "this" { +# count = var.domain_name != null ? 1 : 0 +# api_id = aws_apigatewayv2_api.this.id +# domain_name = aws_apigatewayv2_domain_name.this[0].id +# stage = aws_apigatewayv2_stage.this.id +# } -resource "aws_route53_record" "this" { - count = var.domain_name != null ? 1 : 0 - name = aws_apigatewayv2_domain_name.this[0].domain_name - type = "A" - zone_id = var.route53_zone_id +# resource "aws_route53_record" "this" { +# count = var.domain_name != null ? 1 : 0 +# name = aws_apigatewayv2_domain_name.this[0].domain_name +# type = "A" +# zone_id = var.route53_zone_id - alias { - name = aws_apigatewayv2_domain_name.this[0].domain_name_configuration[0].target_domain_name - zone_id = aws_apigatewayv2_domain_name.this[0].domain_name_configuration[0].hosted_zone_id - evaluate_target_health = false - } -} \ No newline at end of file +# alias { +# name = aws_apigatewayv2_domain_name.this[0].domain_name_configuration[0].target_domain_name +# zone_id = aws_apigatewayv2_domain_name.this[0].domain_name_configuration[0].hosted_zone_id +# evaluate_target_health = false +# } +# } \ No newline at end of file From 05843ab46263f1a150830e5c017a0cf3b77bb6b0 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 11 Mar 2026 10:56:09 +0000 Subject: [PATCH 063/124] comment out custom_domain_endpoint in outputs.tf --- .../terraform/modules/lambda_with_api_gateway/outputs.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf index 52db1ff9..9ced7c8b 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf @@ -6,6 +6,6 @@ output "api_endpoint" { value = aws_apigatewayv2_stage.this.invoke_url } -output "custom_domain_endpoint" { - value = var.domain_name != null ? "https://${var.domain_name}" : null -} \ No newline at end of file +# output "custom_domain_endpoint" { +# value = var.domain_name != null ? "https://${var.domain_name}" : null +# } \ No newline at end of file From 1a161396805d192cee3241fa11fac6098a6e5011 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 11 Mar 2026 11:39:24 +0000 Subject: [PATCH 064/124] comment out DOMAIN_NAME --- infrastructure/terraform/lambda/fast-api/main.tf | 2 +- infrastructure/terraform/lambda/fast-api/variables.tf | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index d9377b79..0a40b14c 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -91,7 +91,7 @@ module "fastapi" { ENVIRONMENT = var.stage API_KEY = var.api_key SECRET_KEY = var.secret_key - DOMAIN_NAME = var.domain_name + # DOMAIN_NAME = var.domain_name EPC_AUTH_TOKEN = var.epc_auth_token GOOGLE_SOLAR_API_KEY = var.google_solar_api_key diff --git a/infrastructure/terraform/lambda/fast-api/variables.tf b/infrastructure/terraform/lambda/fast-api/variables.tf index a3157590..d329e0ca 100644 --- a/infrastructure/terraform/lambda/fast-api/variables.tf +++ b/infrastructure/terraform/lambda/fast-api/variables.tf @@ -29,9 +29,9 @@ variable "secret_key" { sensitive = true } -variable "domain_name" { - type = string -} +# variable "domain_name" { +# type = string +# } variable "epc_auth_token" { type = string From 496ec22705e46a3c377a1fd3e619e8f9c4ec875b Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 11 Mar 2026 11:49:27 +0000 Subject: [PATCH 065/124] fix typos --- infrastructure/terraform/lambda/categorisation/outputs.tf | 2 +- infrastructure/terraform/lambda/engine/outputs.tf | 2 +- infrastructure/terraform/lambda/fast-api/main.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/infrastructure/terraform/lambda/categorisation/outputs.tf b/infrastructure/terraform/lambda/categorisation/outputs.tf index be1ac118..06e06623 100644 --- a/infrastructure/terraform/lambda/categorisation/outputs.tf +++ b/infrastructure/terraform/lambda/categorisation/outputs.tf @@ -1,5 +1,5 @@ output "categorisation_queue_url" { - value = module.lambda.queu_url + value = module.lambda.queue_url description = "URL of the Categorisation SQS queue" } diff --git a/infrastructure/terraform/lambda/engine/outputs.tf b/infrastructure/terraform/lambda/engine/outputs.tf index bba2046b..d12e0684 100644 --- a/infrastructure/terraform/lambda/engine/outputs.tf +++ b/infrastructure/terraform/lambda/engine/outputs.tf @@ -1,5 +1,5 @@ output "ara_engine_queue_url" { - value = module.lambda.queu_url + value = module.lambda.queue_url description = "URL of the Engine SQS queue" } diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index 0a40b14c..0449b33d 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -124,7 +124,7 @@ resource "aws_iam_role_policy_attachment" "fast_api_s3_read" { } module "fastapi_sqs_policy" { - source = "../../modules/generic_iam_policy" + source = "../../modules/general_iam_policy" policy_name = "fastapi-sqs-send-${var.stage}" policy_description = "Allow FastAPI to send messages to engine & categorisation queues" From e8c839f3e494f24b736d527e43167eb10647c60a Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 11 Mar 2026 12:02:22 +0000 Subject: [PATCH 066/124] no single line variables with defaults. and typos --- .../lambda/categorisation/outputs.tf | 2 +- .../terraform/lambda/engine/outputs.tf | 2 +- .../modules/lambda_service_zip/variables.tf | 15 ++++++++-- .../lambda_with_api_gateway/variables.tf | 30 +++++++++++++++---- 4 files changed, 38 insertions(+), 11 deletions(-) diff --git a/infrastructure/terraform/lambda/categorisation/outputs.tf b/infrastructure/terraform/lambda/categorisation/outputs.tf index 06e06623..8e33b8e0 100644 --- a/infrastructure/terraform/lambda/categorisation/outputs.tf +++ b/infrastructure/terraform/lambda/categorisation/outputs.tf @@ -4,6 +4,6 @@ output "categorisation_queue_url" { } output "categorisation_queue_arn" { - value = module.lambda.queu_arn + value = module.lambda.queue_arn description = "ARN of the Categorisation SQS queue" } \ No newline at end of file diff --git a/infrastructure/terraform/lambda/engine/outputs.tf b/infrastructure/terraform/lambda/engine/outputs.tf index d12e0684..c59e0809 100644 --- a/infrastructure/terraform/lambda/engine/outputs.tf +++ b/infrastructure/terraform/lambda/engine/outputs.tf @@ -4,6 +4,6 @@ output "ara_engine_queue_url" { } output "ara_engine_queue_arn" { - value = module.lambda.queu_arn + value = module.lambda.queue_arn description = "ARN of the Engine SQS queue" } \ No newline at end of file diff --git a/infrastructure/terraform/modules/lambda_service_zip/variables.tf b/infrastructure/terraform/modules/lambda_service_zip/variables.tf index 3a243c49..68a35370 100644 --- a/infrastructure/terraform/modules/lambda_service_zip/variables.tf +++ b/infrastructure/terraform/modules/lambda_service_zip/variables.tf @@ -4,6 +4,15 @@ variable "filename" { type = string } variable "source_code_hash" { type = string } variable "handler" { type = string } variable "runtime" { type = string } -variable "timeout" { type = number default = 30 } -variable "memory_size" { type = number default = 128 } -variable "environment" { type = map(string) default = {} } \ No newline at end of file +variable "timeout" { + type = number + default = 30 +} +variable "memory_size" { + type = number + default = 128 +} +variable "environment" { + type = map(string) + default = {} +} \ No newline at end of file diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf index 1a08ff2e..b32380de 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf @@ -9,10 +9,28 @@ variable "zip_excludes" { default = ["**/__pycache__/**", "**/*.pyc", "**/.pytest_cache/**"] } -variable "timeout" { type = number default = 600 } -variable "memory_size" { type = number default = 512 } -variable "environment" { type = map(string) default = {} } +variable "timeout" { + type = number + default = 600 +} +variable "memory_size" { + type = number + default = 512 +} +variable "environment" { + type = map(string) + default = {} +} -variable "domain_name" { type = string default = null } -variable "certificate_arn" { type = string default = null } -variable "route53_zone_id" { type = string default = null } \ No newline at end of file +variable "domain_name" { + type = string + default = null +} +variable "certificate_arn" { + type = string + default = null +} +variable "route53_zone_id" { + type = string + default = null +} \ No newline at end of file From 9aa60c9e70d622326b20ae48efd733fedb3856d2 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 11 Mar 2026 12:58:31 +0000 Subject: [PATCH 067/124] fast api deployment dependencies --- .github/workflows/deploy_terraform.yml | 47 +++++++++++++------------- 1 file changed, 23 insertions(+), 24 deletions(-) diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index 6291dd2a..d3a16b35 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -118,30 +118,6 @@ jobs: TF_VAR_domain_name: ${{ secrets.DEV_DOMAIN_NAME }} TF_VAR_epc_auth_token: ${{ secrets.DEV_EPC_AUTH_TOKEN }} TF_VAR_google_solar_api_key: ${{ secrets.DEV_GOOGLE_SOLAR_API_KEY }} - - # ============================================================ - # Deploy FastAPI Lambda - # ============================================================ - fast_api_lambda: - needs: [determine_stage] - uses: ./.github/workflows/_deploy_lambda.yml - with: - lambda_name: ara_fast_api - lambda_path: infrastructure/terraform/lambda/fast-api - stage: ${{ needs.determine_stage.outputs.stage }} - terraform_apply: ${{ needs.determine_stage.outputs.terraform_apply }} - secrets: - AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} - AWS_REGION: ${{ secrets.DEV_AWS_REGION }} - TF_VAR_db_host: ${{ secrets.DEV_DB_HOST }} - TF_VAR_db_name: ${{ secrets.DEV_DB_NAME }} - TF_VAR_db_port: ${{ secrets.DEV_DB_PORT }} - TF_VAR_api_key: ${{ secrets.DEV_API_KEY }} - TF_VAR_secret_key: ${{ secrets.DEV_SECRET_KEY }} - TF_VAR_domain_name: ${{ secrets.DEV_DOMAIN_NAME }} - TF_VAR_epc_auth_token: ${{ secrets.DEV_EPC_AUTH_TOKEN }} - TF_VAR_google_solar_api_key: ${{ secrets.DEV_GOOGLE_SOLAR_API_KEY }} # ============================================================ # Build Address 2 UPRN image and Push @@ -347,4 +323,27 @@ jobs: AWS_REGION: ${{ secrets.DEV_AWS_REGION }} TF_VAR_ORDNANCE_SURVEY_API_KEY: ${{ secrets.ORDNANCE_SURVEY_API_KEY }} + # ============================================================ + # Deploy FastAPI Lambda + # ============================================================ + fast_api_lambda: + needs: [determine_stage, shared_terraform, ara_engine_lambda, categorisation_lambda] + uses: ./.github/workflows/_deploy_lambda.yml + with: + lambda_name: ara_fast_api + lambda_path: infrastructure/terraform/lambda/fast-api + stage: ${{ needs.determine_stage.outputs.stage }} + terraform_apply: ${{ needs.determine_stage.outputs.terraform_apply }} + secrets: + AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} + AWS_REGION: ${{ secrets.DEV_AWS_REGION }} + TF_VAR_db_host: ${{ secrets.DEV_DB_HOST }} + TF_VAR_db_name: ${{ secrets.DEV_DB_NAME }} + TF_VAR_db_port: ${{ secrets.DEV_DB_PORT }} + TF_VAR_api_key: ${{ secrets.DEV_API_KEY }} + TF_VAR_secret_key: ${{ secrets.DEV_SECRET_KEY }} + TF_VAR_domain_name: ${{ secrets.DEV_DOMAIN_NAME }} + TF_VAR_epc_auth_token: ${{ secrets.DEV_EPC_AUTH_TOKEN }} + TF_VAR_google_solar_api_key: ${{ secrets.DEV_GOOGLE_SOLAR_API_KEY }} From af031d81d40bc731ea2e6285ec7087f15c01150f Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 11 Mar 2026 14:04:56 +0000 Subject: [PATCH 068/124] fast api does not technically depend on shared --- .github/workflows/deploy_terraform.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index d3a16b35..6432bf38 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -327,7 +327,7 @@ jobs: # Deploy FastAPI Lambda # ============================================================ fast_api_lambda: - needs: [determine_stage, shared_terraform, ara_engine_lambda, categorisation_lambda] + needs: [determine_stage, ara_engine_lambda, categorisation_lambda] uses: ./.github/workflows/_deploy_lambda.yml with: lambda_name: ara_fast_api From 3b41ea4a2322ab44374dc6d199a5b2ef33950976 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 11 Mar 2026 14:22:19 +0000 Subject: [PATCH 069/124] correct use of tfstate outputs in fast api terraform --- infrastructure/terraform/lambda/fast-api/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index 0449b33d..8596aa66 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -110,8 +110,8 @@ module "fastapi" { HOTWATER_KWH_PREDICTIONS_BUCKET = data.terraform_remote_state.shared.outputs.retrofit_hotwater_kwh_predictions_bucket_name ENERGY_ASSESSMENTS_BUCKET = data.terraform_remote_state.shared.outputs.retrofit_energy_assessments_bucket_name - ENGINE_SQS_URL = data.terraform_remote_state.engine.ara_engine_queue_url - CATEGORISATION_SQS_URL = data.terraform_remote_state.categorisation.categorisation_queue_url + ENGINE_SQS_URL = data.terraform_remote_state.engine.outputs.ara_engine_queue_url + CATEGORISATION_SQS_URL = data.terraform_remote_state.categorisation.outputs.categorisation_queue_url } } From bf8e65be1f10152894f6d9f88272f247b6386c47 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 11 Mar 2026 14:36:13 +0000 Subject: [PATCH 070/124] fix typo in tfstate s3 location --- infrastructure/terraform/lambda/fast-api/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index 8596aa66..05d3861d 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -14,7 +14,7 @@ data "terraform_remote_state" "engine" { backend = "s3" config = { bucket = "ara-engine-terraform-state", - key = "env:/${var.stage}/teraform.tfstate" + key = "env:/${var.stage}/terraform.tfstate" region = "eu-west-2" } } @@ -23,7 +23,7 @@ data "terraform_remote_state" "categorisation" { backend = "s3" config = { bucket = "categorisation-terraform-state", - key = "env:/${var.stage}/teraform.tfstate" + key = "env:/${var.stage}/terraform.tfstate" region = "eu-west-2" } } From 8722d0cce45f0543e0bcf769d090f8953062e9c2 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 11 Mar 2026 14:46:10 +0000 Subject: [PATCH 071/124] correct s3 policy name --- infrastructure/terraform/lambda/fast-api/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index 05d3861d..fbe5805f 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -120,7 +120,7 @@ module "fastapi" { ############################################ resource "aws_iam_role_policy_attachment" "fast_api_s3_read" { role = module.fastapi.role_name - policy_arn = data.terraform_remote_state.shared.outputs.fast_api_s3_read_arn + policy_arn = data.terraform_remote_state.shared.outputs.fast_api_s3_read_and_write_arn } module "fastapi_sqs_policy" { From 73cd47def1702ef1c5b828843920e4ee883c9e6d Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Wed, 11 Mar 2026 15:04:46 +0000 Subject: [PATCH 072/124] cotality script --- cotality.py | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 cotality.py diff --git a/cotality.py b/cotality.py new file mode 100644 index 00000000..43f9afea --- /dev/null +++ b/cotality.py @@ -0,0 +1,73 @@ +import requests +import json + +TOKEN = "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6Ik1EUTRNRU5GUTBVNU9FUXpOelk1TVRFME0wUkdOMFpFUkRoR1JVVkJNVGMxT1RFNFJERXlPQSJ9.eyJodHRwOi8vZW1haWwiOiJzZWJhc3RpYW5Ab3Ntb3Npcy1hY2QuY29tIiwiaHR0cDovL2NsdWsudG9rZW4vbGFzdFBhc3N3b3JkQ2hhbmdlIjoiMjAyNS0wOC0yNlQwOTo1NDoyNi4zMjZaIiwiaHR0cDovL2NsdWsudG9rZW4vY29ubmVjdGlvbiI6ImVUZWNoSUQiLCJodHRwOi8vY2x1ay50b2tlbi9zdHJhdGVneSI6ImF1dGgwIiwiaHR0cDovL2NsdWsudG9rZW4vc3RyYXRlZ3lUeXBlIjoiZGF0YWJhc2UiLCJpc3MiOiJodHRwczovL2V0ZWNoaWQuZXUuYXV0aDAuY29tLyIsInN1YiI6ImF1dGgwfDY4YWQ4NDUyZDI2YzI1ZmMyMzkwZmYxYSIsImF1ZCI6WyJodHRwczovL3Bhc2h1Yi5hcGkuZXRlY2gubmV0IiwiaHR0cHM6Ly9ldGVjaGlkLmV1LmF1dGgwLmNvbS91c2VyaW5mbyJdLCJpYXQiOjE3NzMyMzc4MjQsImV4cCI6MTc3MzI0NTAyNCwic2NvcGUiOiJvcGVuaWQiLCJhenAiOiJEaVp6d3VVaTVkVmozOXR3NG00bWZ6emZvRm5MdmVLZyJ9.mkkxeZiD_ByHY4TJKpLQ-trmeGs15s0ekL6u1n-ek9j-EzNyf6qalEHCyHf8gzdNhU_vay96bIOMRHp4vXFaLqSANwKZayIS3EoA_b9-u2FAZpooxEvReAMNJGoZ6WLD01AQXWv-l7ww1ZqAnQzw0moL_Oma6hVmA5oa-RJKJ3MerS7e0Wei97Db48E140-EAbQf2iPcKYYtCNRA4il6n8DFiqGeoUMGo99jkR1ceZAvMpOAj8RhKX-4qSiDfX6yXUS2G96U5m7S_GWI-DEj5TazkN10Af3TyOY3EVjmZoJcRpiAR4cFmlfcTydjrShU03DWmPZm1QItf2McxfCpNA" + +base = "https://pashub.net/api" + +headers = {"Authorization": f"Bearer {TOKEN}", "Accept": "application/json"} + +company_id = "cb5249e2-8f31-4ef4-aefd-08ddaccb1fa2" + +# 1️⃣ get jobs +params = { + "pageIndex": 0, + "pageSize": 20, + "orderBy": "createdUtc", + "orderDesc": "true", + "addressUprn": "100061885568", + "companyId": company_id, +} + +r = requests.get(f"{base}/jobs", headers=headers, params=params) + +payload = r.json() + +property_id = payload["results"][0]["id"] + +print("JOB:", property_id) + +# 2️⃣ get evidence list +r = requests.get(f"{base}/jobs/{property_id}/evidence", headers=headers) + +print(r.status_code) + +evidence = r.json() + +print(evidence) + + +# 3️⃣ get evidence metadata + +if evidence: + evidence_id = evidence["results"][0]["fileId"] + + meta_url = f"https://pashub.net/api/jobs/{property_id}/evidenceMetadata" + + meta_params = {"evidenceIds": evidence_id} + + r = requests.get(meta_url, headers=headers, params=meta_params) + r.raise_for_status() + + meta = r.json() + + container = meta["containerName"] + blob_uri = meta["blobUri"] + + file = meta["files"][0] + file_id = file["fileId"] + file_name = file["fileName"] + + base, sas = blob_uri.split("?", 1) + + download_url = f"{base}{container}/{file_id}?{sas}" + + print("Download URL:", download_url) + + pdf = requests.get(download_url) + pdf.raise_for_status() + + with open(file_name, "wb") as f: + f.write(pdf.content) + + print("Saved:", file_name) From dde17250be83bc9bcea7af18f034e3ec7edcc593 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Wed, 11 Mar 2026 15:07:55 +0000 Subject: [PATCH 073/124] renamed --- cotality.py => download_cotality_evidence.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename cotality.py => download_cotality_evidence.py (100%) diff --git a/cotality.py b/download_cotality_evidence.py similarity index 100% rename from cotality.py rename to download_cotality_evidence.py From f102aa6a7c241172a8947949a0687465246d59cd Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Wed, 11 Mar 2026 15:27:31 +0000 Subject: [PATCH 074/124] move location --- .../download_cotality_evidence.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename download_cotality_evidence.py => scripts/download_cotality_evidence.py (100%) diff --git a/download_cotality_evidence.py b/scripts/download_cotality_evidence.py similarity index 100% rename from download_cotality_evidence.py rename to scripts/download_cotality_evidence.py From 325d2f2cc167d2df243c5e24252ee86f515ea883 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 11 Mar 2026 15:38:16 +0000 Subject: [PATCH 075/124] upgrade terraform AWS provider --- infrastructure/terraform/lambda/_template/provider.tf | 2 +- infrastructure/terraform/lambda/address2UPRN/provider.tf | 2 +- infrastructure/terraform/lambda/categorisation/provider.tf | 2 +- infrastructure/terraform/lambda/condition-etl/provider.tf | 2 +- infrastructure/terraform/lambda/engine/provider.tf | 2 +- infrastructure/terraform/lambda/fast-api/provider.tf | 2 +- infrastructure/terraform/lambda/ordnanceSurvey/provider.tf | 2 +- infrastructure/terraform/lambda/postcodeSplitter/provider.tf | 2 +- infrastructure/terraform/shared/main.tf | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/infrastructure/terraform/lambda/_template/provider.tf b/infrastructure/terraform/lambda/_template/provider.tf index 37c412ce..3d66f392 100644 --- a/infrastructure/terraform/lambda/_template/provider.tf +++ b/infrastructure/terraform/lambda/_template/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.16" + version = ">= 5.0" } } diff --git a/infrastructure/terraform/lambda/address2UPRN/provider.tf b/infrastructure/terraform/lambda/address2UPRN/provider.tf index ad873717..3cfa2400 100644 --- a/infrastructure/terraform/lambda/address2UPRN/provider.tf +++ b/infrastructure/terraform/lambda/address2UPRN/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.16" + version = ">= 5.0" } } diff --git a/infrastructure/terraform/lambda/categorisation/provider.tf b/infrastructure/terraform/lambda/categorisation/provider.tf index fe497c81..30e73ed2 100644 --- a/infrastructure/terraform/lambda/categorisation/provider.tf +++ b/infrastructure/terraform/lambda/categorisation/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.16" + version = ">= 5.0" } } diff --git a/infrastructure/terraform/lambda/condition-etl/provider.tf b/infrastructure/terraform/lambda/condition-etl/provider.tf index c633d238..f7adf65a 100644 --- a/infrastructure/terraform/lambda/condition-etl/provider.tf +++ b/infrastructure/terraform/lambda/condition-etl/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.16" + version = ">= 5.0" } } diff --git a/infrastructure/terraform/lambda/engine/provider.tf b/infrastructure/terraform/lambda/engine/provider.tf index 2895d039..74021fd0 100644 --- a/infrastructure/terraform/lambda/engine/provider.tf +++ b/infrastructure/terraform/lambda/engine/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.16" + version = ">= 5.0" } } diff --git a/infrastructure/terraform/lambda/fast-api/provider.tf b/infrastructure/terraform/lambda/fast-api/provider.tf index 607f4bcf..afe6f3f6 100644 --- a/infrastructure/terraform/lambda/fast-api/provider.tf +++ b/infrastructure/terraform/lambda/fast-api/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.16" + version = ">= 5.0" } } diff --git a/infrastructure/terraform/lambda/ordnanceSurvey/provider.tf b/infrastructure/terraform/lambda/ordnanceSurvey/provider.tf index b7f453f1..12bd0f85 100644 --- a/infrastructure/terraform/lambda/ordnanceSurvey/provider.tf +++ b/infrastructure/terraform/lambda/ordnanceSurvey/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.16" + version = ">= 5.0" } } diff --git a/infrastructure/terraform/lambda/postcodeSplitter/provider.tf b/infrastructure/terraform/lambda/postcodeSplitter/provider.tf index dbe323f2..5749143d 100644 --- a/infrastructure/terraform/lambda/postcodeSplitter/provider.tf +++ b/infrastructure/terraform/lambda/postcodeSplitter/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.16" + version = ">= 5.0" } } diff --git a/infrastructure/terraform/shared/main.tf b/infrastructure/terraform/shared/main.tf index f4b2cd3f..1e88435d 100644 --- a/infrastructure/terraform/shared/main.tf +++ b/infrastructure/terraform/shared/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.16" + version = ">= 5.0" } } backend "s3" { From c7d0a4510742f316b9c383d7a52d3b29746c1eff Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 11 Mar 2026 17:02:18 +0000 Subject: [PATCH 076/124] fix path and add missing env vars --- infrastructure/terraform/lambda/fast-api/main.tf | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index fbe5805f..df130b75 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -77,8 +77,8 @@ module "fastapi" { name = "fastapi" stage = var.stage - source_dir = "${path.root}/../../../../backend" - handler = "app.main.handler" + source_dir = "${path.root}/../../../.." + handler = "backend.app.main.handler" runtime = "python3.11" timeout = 600 memory_size = 512 @@ -109,6 +109,8 @@ module "fastapi" { HEATING_KWH_PREDICTIONS_BUCKET = data.terraform_remote_state.shared.outputs.retrofit_heating_kwh_predictions_bucket_name HOTWATER_KWH_PREDICTIONS_BUCKET = data.terraform_remote_state.shared.outputs.retrofit_hotwater_kwh_predictions_bucket_name ENERGY_ASSESSMENTS_BUCKET = data.terraform_remote_state.shared.outputs.retrofit_energy_assessments_bucket_name + SECRET_KEY = data.terraform_remote_state.shared.outputs.secret_key + API_KEY = data.terraform_remote_state.shared.outputs.api_key ENGINE_SQS_URL = data.terraform_remote_state.engine.outputs.ara_engine_queue_url CATEGORISATION_SQS_URL = data.terraform_remote_state.categorisation.outputs.categorisation_queue_url @@ -120,7 +122,7 @@ module "fastapi" { ############################################ resource "aws_iam_role_policy_attachment" "fast_api_s3_read" { role = module.fastapi.role_name - policy_arn = data.terraform_remote_state.shared.outputs.fast_api_s3_read_and_write_arn + policy_arn = data.terraform_remote_state.shared.outputs.fast_api_s3_read_arn } module "fastapi_sqs_policy" { From 296166d56869598fb8ed7c8555eb0e05e4675f53 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 11 Mar 2026 17:06:33 +0000 Subject: [PATCH 077/124] add slash at end of path --- infrastructure/terraform/lambda/fast-api/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index df130b75..0cfd09f7 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -77,7 +77,7 @@ module "fastapi" { name = "fastapi" stage = var.stage - source_dir = "${path.root}/../../../.." + source_dir = "${path.root}/../../../../" handler = "backend.app.main.handler" runtime = "python3.11" timeout = 600 From 182fb8931e6054d215ef7e17f7826e3cb939f58f Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 11 Mar 2026 17:23:38 +0000 Subject: [PATCH 078/124] correct environment variables and policy definition --- .github/workflows/deploy_terraform.yml | 4 ++-- infrastructure/terraform/lambda/fast-api/main.tf | 7 ------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index 6432bf38..ef927ccb 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -341,8 +341,8 @@ jobs: TF_VAR_db_host: ${{ secrets.DEV_DB_HOST }} TF_VAR_db_name: ${{ secrets.DEV_DB_NAME }} TF_VAR_db_port: ${{ secrets.DEV_DB_PORT }} - TF_VAR_api_key: ${{ secrets.DEV_API_KEY }} - TF_VAR_secret_key: ${{ secrets.DEV_SECRET_KEY }} + TF_VAR_api_key: ${{ secrets.FASTAPI_API_KEY }} + TF_VAR_secret_key: ${{ secrets.NEXTAUTH_SECRET }} TF_VAR_domain_name: ${{ secrets.DEV_DOMAIN_NAME }} TF_VAR_epc_auth_token: ${{ secrets.DEV_EPC_AUTH_TOKEN }} TF_VAR_google_solar_api_key: ${{ secrets.DEV_GOOGLE_SOLAR_API_KEY }} diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index 0cfd09f7..c9058fb7 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -109,8 +109,6 @@ module "fastapi" { HEATING_KWH_PREDICTIONS_BUCKET = data.terraform_remote_state.shared.outputs.retrofit_heating_kwh_predictions_bucket_name HOTWATER_KWH_PREDICTIONS_BUCKET = data.terraform_remote_state.shared.outputs.retrofit_hotwater_kwh_predictions_bucket_name ENERGY_ASSESSMENTS_BUCKET = data.terraform_remote_state.shared.outputs.retrofit_energy_assessments_bucket_name - SECRET_KEY = data.terraform_remote_state.shared.outputs.secret_key - API_KEY = data.terraform_remote_state.shared.outputs.api_key ENGINE_SQS_URL = data.terraform_remote_state.engine.outputs.ara_engine_queue_url CATEGORISATION_SQS_URL = data.terraform_remote_state.categorisation.outputs.categorisation_queue_url @@ -120,11 +118,6 @@ module "fastapi" { ############################################ # IAM policy attachments ############################################ -resource "aws_iam_role_policy_attachment" "fast_api_s3_read" { - role = module.fastapi.role_name - policy_arn = data.terraform_remote_state.shared.outputs.fast_api_s3_read_arn -} - module "fastapi_sqs_policy" { source = "../../modules/general_iam_policy" From 5a6294b79e95c8fa05c5ba29681ec3a4b37f03e9 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 11 Mar 2026 17:45:15 +0000 Subject: [PATCH 079/124] exclude tests from lambda zip --- .../terraform/modules/lambda_with_api_gateway/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf index b32380de..ba2d844e 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf @@ -6,7 +6,7 @@ variable "runtime" { type = string } variable "zip_excludes" { type = list(string) - default = ["**/__pycache__/**", "**/*.pyc", "**/.pytest_cache/**"] + default = ["**/__pycache__/**", "**/*.pyc", "**/.pytest_cache/**", "**/tests/**"] } variable "timeout" { From c58cfee0b631eb699b3ebda5dc5eb3c191473991 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 12 Mar 2026 10:41:08 +0000 Subject: [PATCH 080/124] upload zip to s3 rather than copying via api --- infrastructure/terraform/lambda/fast-api/main.tf | 1 + .../terraform/modules/lambda_service_zip/main.tf | 8 ++++++-- .../modules/lambda_service_zip/variables.tf | 7 +++++-- .../modules/lambda_with_api_gateway/main.tf | 13 ++++++++++++- .../modules/lambda_with_api_gateway/variables.tf | 3 ++- infrastructure/terraform/shared/main.tf | 6 ------ 6 files changed, 26 insertions(+), 12 deletions(-) diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index c9058fb7..9e8c7c2b 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -82,6 +82,7 @@ module "fastapi" { runtime = "python3.11" timeout = 600 memory_size = 512 + artifact_bucket = data.terraform_remote_state.shared.outputs.ara_fast_api_state_bucket # domain_name = "api.${var.domain_name}" # certificate_arn = data.aws_ssm_parameter.certificate_arn.value diff --git a/infrastructure/terraform/modules/lambda_service_zip/main.tf b/infrastructure/terraform/modules/lambda_service_zip/main.tf index 285aa9d4..232b5b56 100644 --- a/infrastructure/terraform/modules/lambda_service_zip/main.tf +++ b/infrastructure/terraform/modules/lambda_service_zip/main.tf @@ -2,7 +2,7 @@ resource "aws_lambda_function" "this" { function_name = var.name role = var.role_arn package_type = "Zip" - filename = var.filename + # filename = var.filename source_code_hash = var.source_code_hash handler = var.handler runtime = var.runtime @@ -10,6 +10,10 @@ resource "aws_lambda_function" "this" { memory_size = var.memory_size publish = true + s3_bucket = var.s3_bucket + s3_key = var.s3_key + source_code_hash = var.source_code_hash + environment { variables = var.environment } @@ -21,4 +25,4 @@ output "lambda_arn" { output "function_name" { value = aws_lambda_function.this.function_name -} \ No newline at end of file +} diff --git a/infrastructure/terraform/modules/lambda_service_zip/variables.tf b/infrastructure/terraform/modules/lambda_service_zip/variables.tf index 68a35370..85d1f548 100644 --- a/infrastructure/terraform/modules/lambda_service_zip/variables.tf +++ b/infrastructure/terraform/modules/lambda_service_zip/variables.tf @@ -1,6 +1,6 @@ variable "name" { type = string } variable "role_arn" { type = string } -variable "filename" { type = string } +# variable "filename" { type = string } variable "source_code_hash" { type = string } variable "handler" { type = string } variable "runtime" { type = string } @@ -15,4 +15,7 @@ variable "memory_size" { variable "environment" { type = map(string) default = {} -} \ No newline at end of file +} +variable "s3_bucket" { type = string } +variable "s3_key" { type = string } +variable "source_code_hash" { type = string } \ No newline at end of file diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf index 61e24c32..2277dee5 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf @@ -16,6 +16,16 @@ data "archive_file" "this" { excludes = var.zip_excludes } +############################################ +# Upload zip to S3 +############################################ +resource "aws_s3_object" "lambda_zip" { + bucket = var.artifact_bucket + key = "${var.name}-${var.stage}.zip" + source = data.archive_file.this.output_path + etag = data.archive_file.this.output_md5 +} + ############################################ # Lambda ############################################ @@ -24,7 +34,8 @@ module "lambda" { name = "${var.name}-${var.stage}" role_arn = module.role.role_arn - filename = data.archive_file.this.output_path + s3_bucket = var.artifact_bucket + s3_key = aws_s3_object.lambda_zip.key source_code_hash = data.archive_file.this.output_base64sha256 handler = var.handler runtime = var.runtime diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf index ba2d844e..0b1dfe71 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf @@ -33,4 +33,5 @@ variable "certificate_arn" { variable "route53_zone_id" { type = string default = null -} \ No newline at end of file +} +variable "artifact_bucket" { type = string } \ No newline at end of file diff --git a/infrastructure/terraform/shared/main.tf b/infrastructure/terraform/shared/main.tf index 1e88435d..8a4e4a1f 100644 --- a/infrastructure/terraform/shared/main.tf +++ b/infrastructure/terraform/shared/main.tf @@ -530,12 +530,6 @@ module "ara_fast_api_state_bucket" { bucket_name = "ara-fast-api-terraform-state" } -module "ara_fastapi_registry" { - source = "../modules/container_registry" - name = "ara-fastapi" - stage = var.stage -} - # S3 policy for FastAPI app to read and write from various S3 buckets module "fast_api_s3_read_and_write" { source = "../modules/s3_iam_policy" From 597fb2e764abe7814e705efa105ce1e9d6fd96b5 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 12 Mar 2026 10:47:27 +0000 Subject: [PATCH 081/124] modify key to match tfstate path --- .../terraform/modules/lambda_with_api_gateway/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf index 2277dee5..f72729e4 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf @@ -21,7 +21,7 @@ data "archive_file" "this" { ############################################ resource "aws_s3_object" "lambda_zip" { bucket = var.artifact_bucket - key = "${var.name}-${var.stage}.zip" + key = "env:/${var.stage}/${var.name}.zip" source = data.archive_file.this.output_path etag = data.archive_file.this.output_md5 } From 5f948da2ec3d6facfc7d66d9fe84c94744c01b2c Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 12 Mar 2026 10:59:30 +0000 Subject: [PATCH 082/124] delete duplicate variable in lambda_service_with_zip --- .../terraform/modules/lambda_service_zip/variables.tf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/infrastructure/terraform/modules/lambda_service_zip/variables.tf b/infrastructure/terraform/modules/lambda_service_zip/variables.tf index 85d1f548..095d4a81 100644 --- a/infrastructure/terraform/modules/lambda_service_zip/variables.tf +++ b/infrastructure/terraform/modules/lambda_service_zip/variables.tf @@ -17,5 +17,4 @@ variable "environment" { default = {} } variable "s3_bucket" { type = string } -variable "s3_key" { type = string } -variable "source_code_hash" { type = string } \ No newline at end of file +variable "s3_key" { type = string } \ No newline at end of file From db9f6c1616352162b01353b5ef0dd81389a02edc Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 12 Mar 2026 11:08:27 +0000 Subject: [PATCH 083/124] remove duplicate variable from main.tf --- infrastructure/terraform/modules/lambda_service_zip/main.tf | 1 - 1 file changed, 1 deletion(-) diff --git a/infrastructure/terraform/modules/lambda_service_zip/main.tf b/infrastructure/terraform/modules/lambda_service_zip/main.tf index 232b5b56..d52f5ba4 100644 --- a/infrastructure/terraform/modules/lambda_service_zip/main.tf +++ b/infrastructure/terraform/modules/lambda_service_zip/main.tf @@ -12,7 +12,6 @@ resource "aws_lambda_function" "this" { s3_bucket = var.s3_bucket s3_key = var.s3_key - source_code_hash = var.source_code_hash environment { variables = var.environment From 604dea8a2af23e44270544f6a932995469af15fc Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 12 Mar 2026 11:25:38 +0000 Subject: [PATCH 084/124] output tfstate bucket name --- infrastructure/terraform/shared/main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/infrastructure/terraform/shared/main.tf b/infrastructure/terraform/shared/main.tf index 8a4e4a1f..0a6dfe3f 100644 --- a/infrastructure/terraform/shared/main.tf +++ b/infrastructure/terraform/shared/main.tf @@ -530,6 +530,10 @@ module "ara_fast_api_state_bucket" { bucket_name = "ara-fast-api-terraform-state" } +output "ara_fast_api_state_bucket" { + value = module.ara_fast_api_state_bucket.bucket_name +} + # S3 policy for FastAPI app to read and write from various S3 buckets module "fast_api_s3_read_and_write" { source = "../modules/s3_iam_policy" From b55b601c15627e76a85be47214fdf6b28c0adcf6 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 12 Mar 2026 11:45:25 +0000 Subject: [PATCH 085/124] ignore infrastucture file when zipping python --- .../modules/lambda_with_api_gateway/variables.tf | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf index 0b1dfe71..d0d2b933 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/variables.tf @@ -6,7 +6,13 @@ variable "runtime" { type = string } variable "zip_excludes" { type = list(string) - default = ["**/__pycache__/**", "**/*.pyc", "**/.pytest_cache/**", "**/tests/**"] + default = [ + "**/__pycache__/**", + "**/*.pyc", + "**/.pytest_cache/**", + "**/tests/**", + "**/infrastructure/**" + ] } variable "timeout" { From 93915efd9d6e0f65cb624c515586c8d5af4a911b Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 12 Mar 2026 12:02:55 +0000 Subject: [PATCH 086/124] ensure pip install runs before zip by moving the install command to lambda_with_api_gateway --- .../terraform/lambda/fast-api/main.tf | 22 +------------------ .../modules/lambda_with_api_gateway/main.tf | 13 +++++++++++ .../lambda_with_api_gateway/variables.tf | 7 +++++- 3 files changed, 20 insertions(+), 22 deletions(-) diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index 9e8c7c2b..4bf88720 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -47,27 +47,6 @@ locals { # name = var.domain_name # } -############################################ -# Install Python requirements -############################################ -resource "null_resource" "pip_install" { - triggers = { - requirements_hash = filemd5("${path.root}/../../../../backend/app/requirements/requirements.txt") - } - - provisioner "local-exec" { - command = < Date: Thu, 12 Mar 2026 12:26:04 +0000 Subject: [PATCH 087/124] move the depends_on pip install to the correct place --- infrastructure/terraform/lambda/fast-api/main.tf | 1 - .../terraform/modules/lambda_with_api_gateway/main.tf | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index 4bf88720..c4769f41 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -51,7 +51,6 @@ locals { # FastAPI Lambda + API Gateway ############################################ module "fastapi" { - depends_on = [null_resource.pip_install] source = "../../modules/lambda_with_api_gateway" name = "fastapi" diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf index 92c7c7f5..8af51420 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf @@ -10,6 +10,8 @@ module "role" { # Install python packages ############################################ resource "null_resource" "pip_install" { + count = var.requirements_file != null ? 1 : 0 + triggers = { requirements_hash = filemd5("${var.requirements_file}") } @@ -23,6 +25,7 @@ resource "null_resource" "pip_install" { # Zip the source code ############################################ data "archive_file" "this" { + depends_on = [null_resource.pip_install] type = "zip" source_dir = var.source_dir output_path = "${path.module}/lambda_package.zip" From 7835a7e98278a24a656181d9dc792e501d5cf707 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 12 Mar 2026 13:21:27 +0000 Subject: [PATCH 088/124] correctly attach sqs policy to fastapi app --- infrastructure/terraform/lambda/fast-api/main.tf | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index c4769f41..1d5224ea 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -98,6 +98,7 @@ module "fastapi" { ############################################ # IAM policy attachments ############################################ +# SQS module "fastapi_sqs_policy" { source = "../../modules/general_iam_policy" @@ -121,8 +122,13 @@ module "fastapi_sqs_policy" { } } +resource "aws_iam_role_policy_attachment" "fastapi_sqs_send" { + role = module.fastapi.role_name + policy_arn = module.fastapi_sqs_policy.policy_arn +} -resource "aws_iam_role_policy_attachment" "fastapi_sqs_read_and_write" { +# S3 +resource "aws_iam_role_policy_attachment" "fastapi_s3_read_and_write" { role = module.fastapi.role_name policy_arn = data.terraform_remote_state.shared.outputs.fast_api_s3_read_and_write_arn } \ No newline at end of file From 2d5357ed7a1964d55a18f66bad6784201cf4c44a Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 12 Mar 2026 13:51:04 +0000 Subject: [PATCH 089/124] ensure pip install takes place every run --- .../terraform/modules/lambda_with_api_gateway/main.tf | 4 ---- 1 file changed, 4 deletions(-) diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf index 8af51420..f33f8d5b 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf @@ -12,10 +12,6 @@ module "role" { resource "null_resource" "pip_install" { count = var.requirements_file != null ? 1 : 0 - triggers = { - requirements_hash = filemd5("${var.requirements_file}") - } - provisioner "local-exec" { command = "pip install -r ${var.requirements_file} -t ${var.source_dir} --platform manylinux2014_x86_64 --implementation cp --python-version 3.11 --only-binary=:all: --upgrade" } From 83e502a361768816c5aaa4a0123341af3ea43d71 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 12 Mar 2026 14:47:28 +0000 Subject: [PATCH 090/124] from domain_name from engine environment --- .github/workflows/_deploy_lambda.yml | 4 ++-- .github/workflows/deploy_terraform.yml | 1 - infrastructure/terraform/lambda/engine/variables.tf | 4 ---- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/_deploy_lambda.yml b/.github/workflows/_deploy_lambda.yml index 3cef705e..dab98d8b 100644 --- a/.github/workflows/_deploy_lambda.yml +++ b/.github/workflows/_deploy_lambda.yml @@ -119,7 +119,7 @@ jobs: TF_VAR_domain_name: ${{ secrets.TF_VAR_domain_name }} TF_VAR_epc_auth_token: ${{ secrets.TF_VAR_epc_auth_token }} TF_VAR_google_solar_api_key: ${{ secrets.TF_VAR_google_solar_api_key }} - TF_VAR_ordnance_survey_api_key: ${{ secrets.TF_VAR_ordnance_survey_api_key}} + TF_VAR_ordnance_survey_api_key: ${{ secrets.TF_VAR_ordnance_survey_api_key }} run: | ECR_REPO_URL_VAR="" if [[ -n "${{ inputs.ecr_repo }}" ]]; then @@ -155,7 +155,7 @@ jobs: TF_VAR_domain_name: ${{ secrets.TF_VAR_domain_name }} TF_VAR_epc_auth_token: ${{ secrets.TF_VAR_epc_auth_token }} TF_VAR_google_solar_api_key: ${{ secrets.TF_VAR_google_solar_api_key }} - TF_VAR_ordnance_survey_api_key: ${{ secrets.TF_VAR_ordnance_survey_api_key}} + TF_VAR_ordnance_survey_api_key: ${{ secrets.TF_VAR_ordnance_survey_api_key }} run: | EXTRA_VARS="" if [[ -n "${{ inputs.ecr_repo }}" ]]; then diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index ef927ccb..c2ecc399 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -115,7 +115,6 @@ jobs: TF_VAR_db_port: ${{ secrets.DEV_DB_PORT }} TF_VAR_api_key: ${{ secrets.DEV_API_KEY }} TF_VAR_secret_key: ${{ secrets.DEV_SECRET_KEY }} - TF_VAR_domain_name: ${{ secrets.DEV_DOMAIN_NAME }} TF_VAR_epc_auth_token: ${{ secrets.DEV_EPC_AUTH_TOKEN }} TF_VAR_google_solar_api_key: ${{ secrets.DEV_GOOGLE_SOLAR_API_KEY }} diff --git a/infrastructure/terraform/lambda/engine/variables.tf b/infrastructure/terraform/lambda/engine/variables.tf index 0a74ad5b..bf0a42a2 100644 --- a/infrastructure/terraform/lambda/engine/variables.tf +++ b/infrastructure/terraform/lambda/engine/variables.tf @@ -65,10 +65,6 @@ variable "secret_key" { sensitive = true } -variable "domain_name" { - type = string -} - variable "epc_auth_token" { type = string sensitive = true From 3cadecfe9b9198eac9e01fd530370e6ce6e4f8a2 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 12 Mar 2026 14:47:55 +0000 Subject: [PATCH 091/124] from domain_name from engine environment --- infrastructure/terraform/lambda/engine/main.tf | 1 - 1 file changed, 1 deletion(-) diff --git a/infrastructure/terraform/lambda/engine/main.tf b/infrastructure/terraform/lambda/engine/main.tf index 3f28933b..1f3ce017 100644 --- a/infrastructure/terraform/lambda/engine/main.tf +++ b/infrastructure/terraform/lambda/engine/main.tf @@ -44,7 +44,6 @@ module "lambda" { DB_PORT = var.db_port API_KEY = var.api_key SECRET_KEY = var.secret_key - DOMAIN_NAME = var.domain_name EPC_AUTH_TOKEN = var.epc_auth_token GOOGLE_SOLAR_API_KEY = var.google_solar_api_key From 49e544d10fce938271f8cb8a4415d97c245f9969 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 12 Mar 2026 17:29:47 +0000 Subject: [PATCH 092/124] add cloudfront for domain setting --- .../terraform/lambda/engine/variables.tf | 4 + .../terraform/lambda/fast-api/main.tf | 9 ++ .../terraform/lambda/fast-api/variables.tf | 6 +- .../terraform/modules/cloudfront-api/main.tf | 82 +++++++++++++++++++ .../modules/cloudfront-api/outputs.tf | 7 ++ .../modules/cloudfront-api/variables.tf | 9 ++ .../lambda_with_api_gateway/outputs.tf | 8 ++ 7 files changed, 122 insertions(+), 3 deletions(-) create mode 100644 infrastructure/terraform/modules/cloudfront-api/main.tf create mode 100644 infrastructure/terraform/modules/cloudfront-api/outputs.tf create mode 100644 infrastructure/terraform/modules/cloudfront-api/variables.tf diff --git a/infrastructure/terraform/lambda/engine/variables.tf b/infrastructure/terraform/lambda/engine/variables.tf index bf0a42a2..585bce2a 100644 --- a/infrastructure/terraform/lambda/engine/variables.tf +++ b/infrastructure/terraform/lambda/engine/variables.tf @@ -81,4 +81,8 @@ locals { output "resolved_image_uri" { value = local.image_uri +} + +variable "domain_name" { + description = "Full domain name for API" } \ No newline at end of file diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index 1d5224ea..ad22a9b6 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -63,6 +63,8 @@ module "fastapi" { artifact_bucket = data.terraform_remote_state.shared.outputs.ara_fast_api_state_bucket requirements_file = "${path.root}/../../../../backend/app/requirements/requirements.txt" + domain_name = var.domain_name + # domain_name = "api.${var.domain_name}" # certificate_arn = data.aws_ssm_parameter.certificate_arn.value # route53_zone_id = data.aws_route53_zone.this.zone_id @@ -131,4 +133,11 @@ resource "aws_iam_role_policy_attachment" "fastapi_sqs_send" { resource "aws_iam_role_policy_attachment" "fastapi_s3_read_and_write" { role = module.fastapi.role_name policy_arn = data.terraform_remote_state.shared.outputs.fast_api_s3_read_and_write_arn +} + +module "fastapi_cdn" { + source = "../../modules/cloudfront-api" + + domain_name = var.domain_name + api_domain_name = module.fastapi.api_endpoint } \ No newline at end of file diff --git a/infrastructure/terraform/lambda/fast-api/variables.tf b/infrastructure/terraform/lambda/fast-api/variables.tf index d329e0ca..a3157590 100644 --- a/infrastructure/terraform/lambda/fast-api/variables.tf +++ b/infrastructure/terraform/lambda/fast-api/variables.tf @@ -29,9 +29,9 @@ variable "secret_key" { sensitive = true } -# variable "domain_name" { -# type = string -# } +variable "domain_name" { + type = string +} variable "epc_auth_token" { type = string diff --git a/infrastructure/terraform/modules/cloudfront-api/main.tf b/infrastructure/terraform/modules/cloudfront-api/main.tf new file mode 100644 index 00000000..00139de3 --- /dev/null +++ b/infrastructure/terraform/modules/cloudfront-api/main.tf @@ -0,0 +1,82 @@ +############################################ +# ACM certificate +############################################ +resource "aws_acm_certificate" "this" { + domain_name = var.domain_name + validation_method = "DNS" + + lifecycle { + create_before_destroy = true + } +} + +############################################ +# CloudFront distribution +############################################ +resource "aws_cloudfront_distribution" "this" { + + enabled = true + + aliases = [var.domain_name] + + origin { + domain_name = var.api_domain_name + origin_id = "api-gateway" + + custom_origin_config { + http_port = 80 + https_port = 443 + origin_protocol_policy = "https-only" + origin_ssl_protocols = ["TLSv1.2"] + } + } + + default_cache_behavior { + + target_origin_id = "api-gateway" + + viewer_protocol_policy = "redirect-to-https" + compress = true + + allowed_methods = [ + "GET", + "HEAD", + "OPTIONS", + "PUT", + "POST", + "PATCH", + "DELETE" + ] + + cached_methods = [ + "GET", + "HEAD" + ] + + forwarded_values { + query_string = true + headers = ["*"] + + cookies { + forward = "all" + } + } + + min_ttl = 0 + default_ttl = 0 + max_ttl = 0 + } + + price_class = "PriceClass_100" + + restrictions { + geo_restriction { + restriction_type = "none" + } + } + + viewer_certificate { + acm_certificate_arn = aws_acm_certificate.this.arn + ssl_support_method = "sni-only" + } +} \ No newline at end of file diff --git a/infrastructure/terraform/modules/cloudfront-api/outputs.tf b/infrastructure/terraform/modules/cloudfront-api/outputs.tf new file mode 100644 index 00000000..f7c7e907 --- /dev/null +++ b/infrastructure/terraform/modules/cloudfront-api/outputs.tf @@ -0,0 +1,7 @@ +output "cloudfront_domain_name" { + value = aws_cloudfront_distribution.this.domain_name +} + +output "certificate_validation_records" { + value = aws_acm_certificate.this.domain_validation_options +} \ No newline at end of file diff --git a/infrastructure/terraform/modules/cloudfront-api/variables.tf b/infrastructure/terraform/modules/cloudfront-api/variables.tf new file mode 100644 index 00000000..b058194f --- /dev/null +++ b/infrastructure/terraform/modules/cloudfront-api/variables.tf @@ -0,0 +1,9 @@ +variable "domain_name" { + description = "Public domain name for the API (e.g. api.dev.domna.homes)" + type = string +} + +variable "api_domain_name" { + description = "API Gateway domain (execute-api)" + type = string +} \ No newline at end of file diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf index 9ced7c8b..2d7af141 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf @@ -6,6 +6,14 @@ output "api_endpoint" { value = aws_apigatewayv2_stage.this.invoke_url } +output "cloudfront_domain" { + value = aws_cloudfront_distribution.api.domain_name +} + +output "certificate_validation_records" { + value = aws_acm_certificate.this.domain_validation_options +} + # output "custom_domain_endpoint" { # value = var.domain_name != null ? "https://${var.domain_name}" : null # } \ No newline at end of file From 6e05bd235250428627d93eab0adbc0269dc96de4 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 12 Mar 2026 17:31:59 +0000 Subject: [PATCH 093/124] delete unused stuff --- .../terraform/lambda/engine/variables.tf | 4 --- .../terraform/lambda/fast-api/main.tf | 6 +--- .../modules/lambda_with_api_gateway/main.tf | 34 ------------------- 3 files changed, 1 insertion(+), 43 deletions(-) diff --git a/infrastructure/terraform/lambda/engine/variables.tf b/infrastructure/terraform/lambda/engine/variables.tf index 585bce2a..bf0a42a2 100644 --- a/infrastructure/terraform/lambda/engine/variables.tf +++ b/infrastructure/terraform/lambda/engine/variables.tf @@ -81,8 +81,4 @@ locals { output "resolved_image_uri" { value = local.image_uri -} - -variable "domain_name" { - description = "Full domain name for API" } \ No newline at end of file diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index ad22a9b6..84880188 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -63,11 +63,7 @@ module "fastapi" { artifact_bucket = data.terraform_remote_state.shared.outputs.ara_fast_api_state_bucket requirements_file = "${path.root}/../../../../backend/app/requirements/requirements.txt" - domain_name = var.domain_name - - # domain_name = "api.${var.domain_name}" - # certificate_arn = data.aws_ssm_parameter.certificate_arn.value - # route53_zone_id = data.aws_route53_zone.this.zone_id + domain_name = "api.${var.domain_name}" environment = { ENVIRONMENT = var.stage diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf index f33f8d5b..b1ee3b75 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf @@ -90,37 +90,3 @@ resource "aws_lambda_permission" "apigw_invoke" { principal = "apigateway.amazonaws.com" source_arn = "${aws_apigatewayv2_api.this.execution_arn}/*/*" } - -############################################ -# Custom domain -############################################ -# resource "aws_apigatewayv2_domain_name" "this" { -# count = var.domain_name != null ? 1 : 0 -# domain_name = var.domain_name - -# domain_name_configuration { -# certificate_arn = var.certificate_arn -# endpoint_type = "REGIONAL" -# security_policy = "TLS_1_2" -# } -# } - -# resource "aws_apigatewayv2_api_mapping" "this" { -# count = var.domain_name != null ? 1 : 0 -# api_id = aws_apigatewayv2_api.this.id -# domain_name = aws_apigatewayv2_domain_name.this[0].id -# stage = aws_apigatewayv2_stage.this.id -# } - -# resource "aws_route53_record" "this" { -# count = var.domain_name != null ? 1 : 0 -# name = aws_apigatewayv2_domain_name.this[0].domain_name -# type = "A" -# zone_id = var.route53_zone_id - -# alias { -# name = aws_apigatewayv2_domain_name.this[0].domain_name_configuration[0].target_domain_name -# zone_id = aws_apigatewayv2_domain_name.this[0].domain_name_configuration[0].hosted_zone_id -# evaluate_target_health = false -# } -# } \ No newline at end of file From aac9b784f38972771d39e92327998672f87aebed Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 12 Mar 2026 17:37:12 +0000 Subject: [PATCH 094/124] use new domain from github secrets --- .github/workflows/deploy_terraform.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index c2ecc399..98fd5324 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -342,7 +342,7 @@ jobs: TF_VAR_db_port: ${{ secrets.DEV_DB_PORT }} TF_VAR_api_key: ${{ secrets.FASTAPI_API_KEY }} TF_VAR_secret_key: ${{ secrets.NEXTAUTH_SECRET }} - TF_VAR_domain_name: ${{ secrets.DEV_DOMAIN_NAME }} + TF_VAR_domain_name: ${{ secrets.ARA_DEV_DOMAIN_NAME }} TF_VAR_epc_auth_token: ${{ secrets.DEV_EPC_AUTH_TOKEN }} TF_VAR_google_solar_api_key: ${{ secrets.DEV_GOOGLE_SOLAR_API_KEY }} From b7bee7486c5611b5b95bafd702018569f88976a5 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 13 Mar 2026 09:51:48 +0000 Subject: [PATCH 095/124] deploy cdn as its own job, depending on fastapi --- .github/workflows/deploy_terraform.yml | 17 +++ infrastructure/terraform/cdn/main.tf | 54 ++++++++ infrastructure/terraform/cdn/outputs.tf | 3 + infrastructure/terraform/cdn/variables.tf | 7 + .../terraform/lambda/fast-api/main.tf | 7 - .../terraform/modules/cloudfront-api/main.tf | 82 ----------- .../modules/cloudfront-api/outputs.tf | 7 - .../modules/cloudfront-api/variables.tf | 9 -- .../terraform/modules/cloudfront/main.tf | 129 ++++++++++++++---- .../terraform/modules/cloudfront/variables.tf | 33 ++--- infrastructure/terraform/shared/main.tf | 28 ++-- 11 files changed, 216 insertions(+), 160 deletions(-) create mode 100644 infrastructure/terraform/cdn/main.tf create mode 100644 infrastructure/terraform/cdn/outputs.tf create mode 100644 infrastructure/terraform/cdn/variables.tf delete mode 100644 infrastructure/terraform/modules/cloudfront-api/main.tf delete mode 100644 infrastructure/terraform/modules/cloudfront-api/outputs.tf delete mode 100644 infrastructure/terraform/modules/cloudfront-api/variables.tf diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index 98fd5324..8e2c484d 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -346,3 +346,20 @@ jobs: TF_VAR_epc_auth_token: ${{ secrets.DEV_EPC_AUTH_TOKEN }} TF_VAR_google_solar_api_key: ${{ secrets.DEV_GOOGLE_SOLAR_API_KEY }} + # ============================================================ + # Deploy Cloudfront CDN + # ============================================================ + cloudfront_cdn: + needs: [determine_stage, fast_api_lambda] + uses: ./.github/workflows/_deploy_lambda.yml + with: + lambda_name: ara_cdn + lambda_path: infrastructure/terraform/cdn + stage: ${{ needs.determine_stage.outputs.stage }} + terraform_apply: ${{ needs.determine_stage.outputs.terraform_apply }} + secrets: + AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} + AWS_REGION: ${{ secrets.DEV_AWS_REGION }} + TF_VAR_domain_name: ${{ secrets.ARA_DEV_DOMAIN_NAME }} + diff --git a/infrastructure/terraform/cdn/main.tf b/infrastructure/terraform/cdn/main.tf new file mode 100644 index 00000000..29abe6e4 --- /dev/null +++ b/infrastructure/terraform/cdn/main.tf @@ -0,0 +1,54 @@ +############################################ +# Load Shared Terraform State +############################################ +data "terraform_remote_state" "shared" { + backend = "s3" + config = { + bucket = "assessment-model-terraform-state" + key = "env:/${var.stage}/terraform.tfstate" + region = "eu-west-2" + } +} + +############################################ +# Load FastAPI Terraform State +############################################ +data "terraform_remote_state" "fast_api" { + backend = "s3" + config = { + bucket = "assessment-model-terraform-state" + key = "env:/${var.stage}/terraform.tfstate" + region = "eu-west-2" + } +} + +############################################ +# CloudFront for API +############################################ +module "cdn" { + source = "../modules/cloudfront" + + aliases = ["domna.homes", "api.dev.domna.homes"] + + origins = [ + # ---- S3 ---- + { + origin_type = "s3" + origin_domain_name = data.terraform_remote_state.shared.outputs.retrofit_datalake_bucket_domain_name + origin_id = "s3-origin" + bucket_id = data.terraform_remote_state.shared.outputs.retrofit_datalake_bucket_id + bucket_arn = data.terraform_remote_state.shared.outputs.retrofit_datalake_bucket_arn + }, + + # ---- API Gateway ---- + { + origin_type = "api" + origin_domain_name = replace( + data.terraform_remote_state.fast_api.outputs.api_endpoint, + "https://", + "" + ) + origin_id = "api-origin" + } + ] +} \ No newline at end of file diff --git a/infrastructure/terraform/cdn/outputs.tf b/infrastructure/terraform/cdn/outputs.tf new file mode 100644 index 00000000..7c684377 --- /dev/null +++ b/infrastructure/terraform/cdn/outputs.tf @@ -0,0 +1,3 @@ +output "cloudfront_domain_name" { + value = module.api_cdn.cloudfront_domain_name +} \ No newline at end of file diff --git a/infrastructure/terraform/cdn/variables.tf b/infrastructure/terraform/cdn/variables.tf new file mode 100644 index 00000000..6fe0073b --- /dev/null +++ b/infrastructure/terraform/cdn/variables.tf @@ -0,0 +1,7 @@ +variable "stage" { + type = string +} + +variable "domain_name" { + type = string +} \ No newline at end of file diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index 84880188..5e8d2b3b 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -129,11 +129,4 @@ resource "aws_iam_role_policy_attachment" "fastapi_sqs_send" { resource "aws_iam_role_policy_attachment" "fastapi_s3_read_and_write" { role = module.fastapi.role_name policy_arn = data.terraform_remote_state.shared.outputs.fast_api_s3_read_and_write_arn -} - -module "fastapi_cdn" { - source = "../../modules/cloudfront-api" - - domain_name = var.domain_name - api_domain_name = module.fastapi.api_endpoint } \ No newline at end of file diff --git a/infrastructure/terraform/modules/cloudfront-api/main.tf b/infrastructure/terraform/modules/cloudfront-api/main.tf deleted file mode 100644 index 00139de3..00000000 --- a/infrastructure/terraform/modules/cloudfront-api/main.tf +++ /dev/null @@ -1,82 +0,0 @@ -############################################ -# ACM certificate -############################################ -resource "aws_acm_certificate" "this" { - domain_name = var.domain_name - validation_method = "DNS" - - lifecycle { - create_before_destroy = true - } -} - -############################################ -# CloudFront distribution -############################################ -resource "aws_cloudfront_distribution" "this" { - - enabled = true - - aliases = [var.domain_name] - - origin { - domain_name = var.api_domain_name - origin_id = "api-gateway" - - custom_origin_config { - http_port = 80 - https_port = 443 - origin_protocol_policy = "https-only" - origin_ssl_protocols = ["TLSv1.2"] - } - } - - default_cache_behavior { - - target_origin_id = "api-gateway" - - viewer_protocol_policy = "redirect-to-https" - compress = true - - allowed_methods = [ - "GET", - "HEAD", - "OPTIONS", - "PUT", - "POST", - "PATCH", - "DELETE" - ] - - cached_methods = [ - "GET", - "HEAD" - ] - - forwarded_values { - query_string = true - headers = ["*"] - - cookies { - forward = "all" - } - } - - min_ttl = 0 - default_ttl = 0 - max_ttl = 0 - } - - price_class = "PriceClass_100" - - restrictions { - geo_restriction { - restriction_type = "none" - } - } - - viewer_certificate { - acm_certificate_arn = aws_acm_certificate.this.arn - ssl_support_method = "sni-only" - } -} \ No newline at end of file diff --git a/infrastructure/terraform/modules/cloudfront-api/outputs.tf b/infrastructure/terraform/modules/cloudfront-api/outputs.tf deleted file mode 100644 index f7c7e907..00000000 --- a/infrastructure/terraform/modules/cloudfront-api/outputs.tf +++ /dev/null @@ -1,7 +0,0 @@ -output "cloudfront_domain_name" { - value = aws_cloudfront_distribution.this.domain_name -} - -output "certificate_validation_records" { - value = aws_acm_certificate.this.domain_validation_options -} \ No newline at end of file diff --git a/infrastructure/terraform/modules/cloudfront-api/variables.tf b/infrastructure/terraform/modules/cloudfront-api/variables.tf deleted file mode 100644 index b058194f..00000000 --- a/infrastructure/terraform/modules/cloudfront-api/variables.tf +++ /dev/null @@ -1,9 +0,0 @@ -variable "domain_name" { - description = "Public domain name for the API (e.g. api.dev.domna.homes)" - type = string -} - -variable "api_domain_name" { - description = "API Gateway domain (execute-api)" - type = string -} \ No newline at end of file diff --git a/infrastructure/terraform/modules/cloudfront/main.tf b/infrastructure/terraform/modules/cloudfront/main.tf index 281ff09f..6fa1331e 100644 --- a/infrastructure/terraform/modules/cloudfront/main.tf +++ b/infrastructure/terraform/modules/cloudfront/main.tf @@ -1,65 +1,146 @@ -resource "aws_cloudfront_distribution" "s3_distribution" { - origin { - domain_name = var.bucket_domain_name - origin_id = "S3-${var.bucket_name}" +############################################ +# CloudFront Distribution +############################################ - s3_origin_config { - origin_access_identity = aws_cloudfront_origin_access_identity.oai.cloudfront_access_identity_path +resource "aws_cloudfront_distribution" "this" { + + ########################################## + # Origins + ########################################## + + dynamic "origin" { + for_each = { for o in var.origins : o.origin_id => o } + + content { + domain_name = origin.value.origin_domain_name + origin_id = origin.value.origin_id + + ###################################### + # S3 Origin + ###################################### + dynamic "s3_origin_config" { + for_each = origin.value.origin_type == "s3" ? [1] : [] + + content { + origin_access_identity = + aws_cloudfront_origin_access_identity.oai[origin.key] + .cloudfront_access_identity_path + } + } + + ###################################### + # API Gateway Origin + ###################################### + dynamic "custom_origin_config" { + for_each = origin.value.origin_type == "api" ? [1] : [] + + content { + http_port = 80 + https_port = 443 + origin_protocol_policy = "https-only" + origin_ssl_protocols = ["TLSv1.2"] + } + } } } enabled = true + aliases = var.aliases + + ########################################## + # Default Cache Behavior + ########################################## default_cache_behavior { - allowed_methods = ["GET", "HEAD"] - cached_methods = ["GET", "HEAD"] - target_origin_id = "S3-${var.bucket_name}" + target_origin_id = var.origins[0].origin_id + viewer_protocol_policy = "redirect-to-https" - compress = true + + allowed_methods = [ + "GET", + "HEAD" + ] + + cached_methods = [ + "GET", + "HEAD" + ] forwarded_values { - query_string = false + query_string = true + headers = ["*"] + cookies { - forward = "none" + forward = "all" } } - min_ttl = 0 - default_ttl = 86400 - max_ttl = 31536000 + compress = true + min_ttl = 0 + default_ttl = 3600 + max_ttl = 86400 } price_class = "PriceClass_All" + ########################################## + # Geo Restrictions + ########################################## + restrictions { geo_restriction { restriction_type = "none" } } + ########################################## + # SSL Certificate + ########################################## + viewer_certificate { - cloudfront_default_certificate = true + acm_certificate_arn = var.acm_certificate_arn + ssl_support_method = "sni-only" + cloudfront_default_certificate = var.acm_certificate_arn == null } } +############################################ +# Origin Access Identities (S3 only) +############################################ + resource "aws_cloudfront_origin_access_identity" "oai" { - comment = "OAI for ${var.bucket_name}" + for_each = { + for o in var.origins : o.origin_id => o + if o.origin_type == "s3" + } + + comment = "OAI for ${each.key}" } +############################################ +# S3 Bucket Policy (S3 only) +############################################ + resource "aws_s3_bucket_policy" "bucket_policy" { - bucket = var.bucket_id + for_each = { + for o in var.origins : o.origin_id => o + if o.origin_type == "s3" + } + + bucket = each.value.bucket_id policy = jsonencode({ - Version = "2012-10-17" + Version = "2012-10-17" Statement = [ { - Effect = "Allow" + Effect = "Allow" Principal = { - AWS = "arn:aws:iam::cloudfront:user/CloudFront Origin Access Identity ${aws_cloudfront_origin_access_identity.oai.id}" + AWS = aws_cloudfront_origin_access_identity.oai[each.key] + .iam_arn } Action = "s3:GetObject" - Resource = "${var.bucket_arn}/*" - }, + Resource = "${each.value.bucket_arn}/*" + } ] }) -} +} \ No newline at end of file diff --git a/infrastructure/terraform/modules/cloudfront/variables.tf b/infrastructure/terraform/modules/cloudfront/variables.tf index 88f770a8..92ba2347 100644 --- a/infrastructure/terraform/modules/cloudfront/variables.tf +++ b/infrastructure/terraform/modules/cloudfront/variables.tf @@ -1,24 +1,19 @@ -variable "bucket_name" { - description = "The name of the bucket" - type = string +variable "origins" { + type = list(object({ + origin_type = string # "s3" or "api" + origin_domain_name = string + origin_id = string + + bucket_id = optional(string) + bucket_arn = optional(string) + })) } -variable "stage" { - description = "The deployment stage" - type = string +variable "aliases" { + type = list(string) } -variable "bucket_id" { - description = "The ID of the S3 bucket" - type = string -} - -variable "bucket_arn" { - description = "The ARN of the S3 bucket" - type = string -} - -variable "bucket_domain_name" { - description = "The regional domain name of the S3 bucket" - type = string +variable "acm_certificate_arn" { + type = string + default = null } \ No newline at end of file diff --git a/infrastructure/terraform/shared/main.tf b/infrastructure/terraform/shared/main.tf index 0a6dfe3f..1de2031f 100644 --- a/infrastructure/terraform/shared/main.tf +++ b/infrastructure/terraform/shared/main.tf @@ -127,6 +127,22 @@ module "s3" { allowed_origins = var.allowed_origins } +output "retrofit_datalake_bucket_id" { + value = module.s3.bucket_id +} + +output "retrofit_datalake_bucket_arn" { + value = module.s3.bucket_arn +} + +output "retrofit_datalake_bucket_domain_name" { + value = module.s3.bucket_domain_name +} + +output "retrofit_datalake_bucket_name" { + value = module.s3.bucket_name +} + module "model_directory" { source = "../modules/s3" bucketname = "retrofit-model-directory-${var.stage}" @@ -311,18 +327,6 @@ module "sap_baseline_ecr" { source = "../modules/ecr" } -############################################## -# CDN - Cloudfront -############################################## -module "cloudfront_distribution" { - source = "../modules/cloudfront" - bucket_name = module.s3.bucket_name - bucket_id = module.s3.bucket_id - bucket_arn = module.s3.bucket_arn - bucket_domain_name = module.s3.bucket_domain_name - stage = var.stage -} - ################################################ # SES - Email sending ################################################ From 33406ff67881d6f406d1c01eb3b2977067abdff6 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 13 Mar 2026 09:53:40 +0000 Subject: [PATCH 096/124] cdn depends on shared --- .github/workflows/deploy_terraform.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index 8e2c484d..506f11f6 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -350,7 +350,7 @@ jobs: # Deploy Cloudfront CDN # ============================================================ cloudfront_cdn: - needs: [determine_stage, fast_api_lambda] + needs: [determine_stage, shared_terraform, fast_api_lambda] uses: ./.github/workflows/_deploy_lambda.yml with: lambda_name: ara_cdn From ddcfa75a03e4283bb51b324c8aeede06ea3874dd Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 13 Mar 2026 11:16:41 +0000 Subject: [PATCH 097/124] address PR --- .github/workflows/deploy_terraform.yml | 1 - infrastructure/terraform/cdn/main.tf | 3 ++- infrastructure/terraform/cdn/variables.tf | 4 ---- infrastructure/terraform/lambda/fast-api/main.tf | 8 -------- infrastructure/terraform/lambda/fast-api/outputs.tf | 7 +++++++ infrastructure/terraform/modules/cloudfront/main.tf | 4 +--- infrastructure/terraform/modules/cloudfront/variables.tf | 7 +------ 7 files changed, 11 insertions(+), 23 deletions(-) create mode 100644 infrastructure/terraform/lambda/fast-api/outputs.tf diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index 506f11f6..1d84505b 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -361,5 +361,4 @@ jobs: AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} AWS_REGION: ${{ secrets.DEV_AWS_REGION }} - TF_VAR_domain_name: ${{ secrets.ARA_DEV_DOMAIN_NAME }} diff --git a/infrastructure/terraform/cdn/main.tf b/infrastructure/terraform/cdn/main.tf index 29abe6e4..daa3b0f1 100644 --- a/infrastructure/terraform/cdn/main.tf +++ b/infrastructure/terraform/cdn/main.tf @@ -28,7 +28,8 @@ data "terraform_remote_state" "fast_api" { module "cdn" { source = "../modules/cloudfront" - aliases = ["domna.homes", "api.dev.domna.homes"] + # Comment out temporarily just to see what happens + # aliases = [data.terraform_remote_state.fast_api.outputs.domain_name] origins = [ # ---- S3 ---- diff --git a/infrastructure/terraform/cdn/variables.tf b/infrastructure/terraform/cdn/variables.tf index 6fe0073b..423f0b0f 100644 --- a/infrastructure/terraform/cdn/variables.tf +++ b/infrastructure/terraform/cdn/variables.tf @@ -1,7 +1,3 @@ variable "stage" { type = string -} - -variable "domain_name" { - type = string } \ No newline at end of file diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index 5e8d2b3b..f71b6f60 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -39,14 +39,6 @@ locals { db_credentials = jsondecode(data.aws_secretsmanager_secret_version.db_credentials.secret_string) } -# data "aws_ssm_parameter" "certificate_arn" { -# name = "/ssl_certificate_arn" -# } - -# data "aws_route53_zone" "this" { -# name = var.domain_name -# } - ############################################ # FastAPI Lambda + API Gateway ############################################ diff --git a/infrastructure/terraform/lambda/fast-api/outputs.tf b/infrastructure/terraform/lambda/fast-api/outputs.tf new file mode 100644 index 00000000..d3d9dbaa --- /dev/null +++ b/infrastructure/terraform/lambda/fast-api/outputs.tf @@ -0,0 +1,7 @@ +output "domain_name" { + value = module.fastapi.domain_name +} + +output "api_endpoint" { + value = module.fastapi.api_endpoint +} \ No newline at end of file diff --git a/infrastructure/terraform/modules/cloudfront/main.tf b/infrastructure/terraform/modules/cloudfront/main.tf index 6fa1331e..02b64606 100644 --- a/infrastructure/terraform/modules/cloudfront/main.tf +++ b/infrastructure/terraform/modules/cloudfront/main.tf @@ -98,9 +98,7 @@ resource "aws_cloudfront_distribution" "this" { ########################################## viewer_certificate { - acm_certificate_arn = var.acm_certificate_arn - ssl_support_method = "sni-only" - cloudfront_default_certificate = var.acm_certificate_arn == null + cloudfront_default_certificate = true } } diff --git a/infrastructure/terraform/modules/cloudfront/variables.tf b/infrastructure/terraform/modules/cloudfront/variables.tf index 92ba2347..feff2faa 100644 --- a/infrastructure/terraform/modules/cloudfront/variables.tf +++ b/infrastructure/terraform/modules/cloudfront/variables.tf @@ -3,7 +3,7 @@ variable "origins" { origin_type = string # "s3" or "api" origin_domain_name = string origin_id = string - + bucket_id = optional(string) bucket_arn = optional(string) })) @@ -11,9 +11,4 @@ variable "origins" { variable "aliases" { type = list(string) -} - -variable "acm_certificate_arn" { - type = string - default = null } \ No newline at end of file From b96b71a05a6e22ddb0044f30263bde4f51858aef Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 13 Mar 2026 11:59:59 +0000 Subject: [PATCH 098/124] fix incorrect variables and references --- infrastructure/terraform/cdn/main.tf | 2 +- infrastructure/terraform/cdn/outputs.tf | 3 --- .../modules/lambda_with_api_gateway/outputs.tf | 14 +------------- 3 files changed, 2 insertions(+), 17 deletions(-) delete mode 100644 infrastructure/terraform/cdn/outputs.tf diff --git a/infrastructure/terraform/cdn/main.tf b/infrastructure/terraform/cdn/main.tf index daa3b0f1..839ea28b 100644 --- a/infrastructure/terraform/cdn/main.tf +++ b/infrastructure/terraform/cdn/main.tf @@ -16,7 +16,7 @@ data "terraform_remote_state" "shared" { data "terraform_remote_state" "fast_api" { backend = "s3" config = { - bucket = "assessment-model-terraform-state" + bucket = "ara-fast-api-terraform-state" key = "env:/${var.stage}/terraform.tfstate" region = "eu-west-2" } diff --git a/infrastructure/terraform/cdn/outputs.tf b/infrastructure/terraform/cdn/outputs.tf deleted file mode 100644 index 7c684377..00000000 --- a/infrastructure/terraform/cdn/outputs.tf +++ /dev/null @@ -1,3 +0,0 @@ -output "cloudfront_domain_name" { - value = module.api_cdn.cloudfront_domain_name -} \ No newline at end of file diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf index 2d7af141..c44ddc0d 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf @@ -4,16 +4,4 @@ output "role_name" { output "api_endpoint" { value = aws_apigatewayv2_stage.this.invoke_url -} - -output "cloudfront_domain" { - value = aws_cloudfront_distribution.api.domain_name -} - -output "certificate_validation_records" { - value = aws_acm_certificate.this.domain_validation_options -} - -# output "custom_domain_endpoint" { -# value = var.domain_name != null ? "https://${var.domain_name}" : null -# } \ No newline at end of file +} \ No newline at end of file From 4e6dd546ce8f4aca1c8ad27ce16ecb753fb456a5 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 13 Mar 2026 13:38:11 +0000 Subject: [PATCH 099/124] make sure domain_name is exported from lambda_with_api_gateway for use by fast-api --- .../terraform/modules/lambda_with_api_gateway/outputs.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf index c44ddc0d..fad4f66c 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf @@ -4,4 +4,8 @@ output "role_name" { output "api_endpoint" { value = aws_apigatewayv2_stage.this.invoke_url +} + +output "domain_name" { + value = var.domain_name } \ No newline at end of file From 53bbb57a679d46062183e87487841b0411f49946 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 13 Mar 2026 14:01:43 +0000 Subject: [PATCH 100/124] fix incorrect terraform syntax --- infrastructure/terraform/modules/cloudfront/main.tf | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/infrastructure/terraform/modules/cloudfront/main.tf b/infrastructure/terraform/modules/cloudfront/main.tf index 02b64606..1ebe0578 100644 --- a/infrastructure/terraform/modules/cloudfront/main.tf +++ b/infrastructure/terraform/modules/cloudfront/main.tf @@ -22,9 +22,7 @@ resource "aws_cloudfront_distribution" "this" { for_each = origin.value.origin_type == "s3" ? [1] : [] content { - origin_access_identity = - aws_cloudfront_origin_access_identity.oai[origin.key] - .cloudfront_access_identity_path + origin_access_identity = aws_cloudfront_origin_access_identity.oai[origin.key].cloudfront_access_identity_path } } From e78900f0b6ecf3161cdb321cc995f5b5dc2cbd72 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 13 Mar 2026 14:13:14 +0000 Subject: [PATCH 101/124] correct more terraform syntax --- infrastructure/terraform/modules/cloudfront/main.tf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/infrastructure/terraform/modules/cloudfront/main.tf b/infrastructure/terraform/modules/cloudfront/main.tf index 1ebe0578..d73edadc 100644 --- a/infrastructure/terraform/modules/cloudfront/main.tf +++ b/infrastructure/terraform/modules/cloudfront/main.tf @@ -131,8 +131,7 @@ resource "aws_s3_bucket_policy" "bucket_policy" { { Effect = "Allow" Principal = { - AWS = aws_cloudfront_origin_access_identity.oai[each.key] - .iam_arn + AWS = aws_cloudfront_origin_access_identity.oai[each.key].iam_arn } Action = "s3:GetObject" Resource = "${each.value.bucket_arn}/*" From 3f10af0be5b297109db600a7d200e3ea3605a450 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 13 Mar 2026 14:35:33 +0000 Subject: [PATCH 102/124] dont try to use _deploy_lambda for cdn --- .github/workflows/deploy_terraform.yml | 42 ++++++++++++++++++++------ 1 file changed, 32 insertions(+), 10 deletions(-) diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index 1d84505b..ec83479d 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -351,14 +351,36 @@ jobs: # ============================================================ cloudfront_cdn: needs: [determine_stage, shared_terraform, fast_api_lambda] - uses: ./.github/workflows/_deploy_lambda.yml - with: - lambda_name: ara_cdn - lambda_path: infrastructure/terraform/cdn - stage: ${{ needs.determine_stage.outputs.stage }} - terraform_apply: ${{ needs.determine_stage.outputs.terraform_apply }} - secrets: - AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} - AWS_REGION: ${{ secrets.DEV_AWS_REGION }} + runs-on: ubuntu-latest + env: + STAGE: ${{ needs.determine_stage.outputs.stage }} + TERRAFORM_APPLY: ${{ needs.determine_stage.outputs.terraform_apply }} + + steps: + - uses: actions/checkout@v4 + + - uses: aws-actions/configure-aws-credentials@v4 + with: + aws-access-key-id: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} + aws-region: ${{ secrets.DEV_AWS_REGION }} + + - uses: hashicorp/setup-terraform@v3 + + - name: Terraform Init + working-directory: infrastructure/terraform/cdn + run: terraform init -reconfigure + + - name: Terraform Workspace + working-directory: infrastructure/terraform/cdn + run: terraform workspace select ${STAGE} || terraform workspace new ${STAGE} + + - name: Terraform Plan + working-directory: infrastructure/terraform/cdn + run: terraform plan -var-file=${STAGE}.tfvars -out=tfplan + + - name: Terraform Apply + if: env.TERRAFORM_APPLY == 'true' + working-directory: infrastructure/terraform/cdn + run: terraform apply -auto-approve tfplan From 20cc5a3059f5a7b0e29bcb62de08fbbf6cda1376 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 13 Mar 2026 15:00:46 +0000 Subject: [PATCH 103/124] dont try to use shared/.tfvars when deploying cloudfront cdn --- .github/workflows/deploy_terraform.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index ec83479d..501fe30f 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -374,13 +374,18 @@ jobs: - name: Terraform Workspace working-directory: infrastructure/terraform/cdn - run: terraform workspace select ${STAGE} || terraform workspace new ${STAGE} + run: | + terraform workspace select $STAGE \ + || terraform workspace new $STAGE - name: Terraform Plan working-directory: infrastructure/terraform/cdn - run: terraform plan -var-file=${STAGE}.tfvars -out=tfplan + run: | + terraform plan \ + -var="stage=${STAGE}" \ + -out=tfplan - name: Terraform Apply if: env.TERRAFORM_APPLY == 'true' working-directory: infrastructure/terraform/cdn - run: terraform apply -auto-approve tfplan + run: terraform apply -auto-approve tfplan \ No newline at end of file From 1056dda939564430e77cbdd2e517ad071ae0691d Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 13 Mar 2026 15:17:18 +0000 Subject: [PATCH 104/124] set aliases --- infrastructure/terraform/cdn/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/cdn/main.tf b/infrastructure/terraform/cdn/main.tf index 839ea28b..58824b3a 100644 --- a/infrastructure/terraform/cdn/main.tf +++ b/infrastructure/terraform/cdn/main.tf @@ -29,7 +29,7 @@ module "cdn" { source = "../modules/cloudfront" # Comment out temporarily just to see what happens - # aliases = [data.terraform_remote_state.fast_api.outputs.domain_name] + aliases = [data.terraform_remote_state.fast_api.outputs.domain_name] origins = [ # ---- S3 ---- From 928e417373517dca015b09f30d72adb50df27e8b Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 13 Mar 2026 15:18:35 +0000 Subject: [PATCH 105/124] delete comment --- infrastructure/terraform/cdn/main.tf | 1 - 1 file changed, 1 deletion(-) diff --git a/infrastructure/terraform/cdn/main.tf b/infrastructure/terraform/cdn/main.tf index 58824b3a..d4acb025 100644 --- a/infrastructure/terraform/cdn/main.tf +++ b/infrastructure/terraform/cdn/main.tf @@ -28,7 +28,6 @@ data "terraform_remote_state" "fast_api" { module "cdn" { source = "../modules/cloudfront" - # Comment out temporarily just to see what happens aliases = [data.terraform_remote_state.fast_api.outputs.domain_name] origins = [ From 4921217b78498ab34004de50b0f54c61b2cb29dc Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 13 Mar 2026 15:20:33 +0000 Subject: [PATCH 106/124] empty aliases --- infrastructure/terraform/cdn/main.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/infrastructure/terraform/cdn/main.tf b/infrastructure/terraform/cdn/main.tf index d4acb025..2eca76e7 100644 --- a/infrastructure/terraform/cdn/main.tf +++ b/infrastructure/terraform/cdn/main.tf @@ -28,7 +28,8 @@ data "terraform_remote_state" "fast_api" { module "cdn" { source = "../modules/cloudfront" - aliases = [data.terraform_remote_state.fast_api.outputs.domain_name] + aliases = [] +# aliases = [data.terraform_remote_state.fast_api.outputs.domain_name] origins = [ # ---- S3 ---- From 1e1bd7ead2b8724cec22b682fc12a89dc53c4899 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 13 Mar 2026 15:42:57 +0000 Subject: [PATCH 107/124] use api_endpoint rather than invoke_url in cdn deployment --- infrastructure/terraform/cdn/main.tf | 6 +----- .../terraform/modules/lambda_with_api_gateway/outputs.tf | 8 ++++---- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/infrastructure/terraform/cdn/main.tf b/infrastructure/terraform/cdn/main.tf index 2eca76e7..ce1e20e5 100644 --- a/infrastructure/terraform/cdn/main.tf +++ b/infrastructure/terraform/cdn/main.tf @@ -44,11 +44,7 @@ module "cdn" { # ---- API Gateway ---- { origin_type = "api" - origin_domain_name = replace( - data.terraform_remote_state.fast_api.outputs.api_endpoint, - "https://", - "" - ) + origin_domain_name = data.terraform_remote_state.fast_api.outputs.api_endpoint origin_id = "api-origin" } ] diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf index fad4f66c..e3b291a7 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf @@ -2,10 +2,10 @@ output "role_name" { value = module.role.role_name } -output "api_endpoint" { - value = aws_apigatewayv2_stage.this.invoke_url -} - output "domain_name" { value = var.domain_name +} + +output "api_endpoint" { + value = aws_apigatewayv2_stage.this.api_endpoint } \ No newline at end of file From 23df9442c9868789aa9a7cb117eaa1df03de7d23 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 16 Mar 2026 09:39:17 +0000 Subject: [PATCH 108/124] revert to using invoke_url but correct the replace method --- infrastructure/terraform/cdn/main.tf | 2 +- infrastructure/terraform/lambda/fast-api/outputs.tf | 4 ++-- .../terraform/modules/lambda_with_api_gateway/outputs.tf | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/infrastructure/terraform/cdn/main.tf b/infrastructure/terraform/cdn/main.tf index ce1e20e5..7ef58e19 100644 --- a/infrastructure/terraform/cdn/main.tf +++ b/infrastructure/terraform/cdn/main.tf @@ -44,7 +44,7 @@ module "cdn" { # ---- API Gateway ---- { origin_type = "api" - origin_domain_name = data.terraform_remote_state.fast_api.outputs.api_endpoint + origin_domain_name = replace(data.terraform_remote_state.fast_api.outputs.invoke_url, "/^https?://([^/]*).*/", "$1") origin_id = "api-origin" } ] diff --git a/infrastructure/terraform/lambda/fast-api/outputs.tf b/infrastructure/terraform/lambda/fast-api/outputs.tf index d3d9dbaa..c9fc6f86 100644 --- a/infrastructure/terraform/lambda/fast-api/outputs.tf +++ b/infrastructure/terraform/lambda/fast-api/outputs.tf @@ -2,6 +2,6 @@ output "domain_name" { value = module.fastapi.domain_name } -output "api_endpoint" { - value = module.fastapi.api_endpoint +output "invoke_url" { + value = module.fastapi.invoke_url } \ No newline at end of file diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf index e3b291a7..eae0f7d7 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf @@ -6,6 +6,6 @@ output "domain_name" { value = var.domain_name } -output "api_endpoint" { - value = aws_apigatewayv2_stage.this.api_endpoint +output "invoke_url" { + value = aws_apigatewayv2_stage.this.invoke_url } \ No newline at end of file From 976fd0b3767c4701da5c4cccf4d61e8b5a55dea1 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 16 Mar 2026 12:11:15 +0000 Subject: [PATCH 109/124] set caching behaviour based on request origin - api v s3 --- .../terraform/modules/cloudfront/main.tf | 47 ++++++++++++++----- 1 file changed, 35 insertions(+), 12 deletions(-) diff --git a/infrastructure/terraform/modules/cloudfront/main.tf b/infrastructure/terraform/modules/cloudfront/main.tf index d73edadc..1b68b891 100644 --- a/infrastructure/terraform/modules/cloudfront/main.tf +++ b/infrastructure/terraform/modules/cloudfront/main.tf @@ -46,23 +46,47 @@ resource "aws_cloudfront_distribution" "this" { aliases = var.aliases ########################################## - # Default Cache Behavior + # Default Cache Behavior (S3) ########################################## default_cache_behavior { - target_origin_id = var.origins[0].origin_id + target_origin_id = "s3-origin" + + viewer_protocol_policy = "redirect-to-https" + + allowed_methods = ["GET", "HEAD"] + cached_methods = ["GET", "HEAD"] + + forwarded_values { + query_string = false + + cookies { + forward = "none" + } + } + + compress = true + min_ttl = 0 + default_ttl = 3600 + max_ttl = 86400 + } + + ########################################## + # API Behavior + ########################################## + + ordered_cache_behavior { + path_pattern = "/v1/*" + target_origin_id = "api-origin" viewer_protocol_policy = "redirect-to-https" allowed_methods = [ - "GET", - "HEAD" + "GET","HEAD","OPTIONS", + "PUT","POST","PATCH","DELETE" ] - cached_methods = [ - "GET", - "HEAD" - ] + cached_methods = ["GET","HEAD"] forwarded_values { query_string = true @@ -73,10 +97,9 @@ resource "aws_cloudfront_distribution" "this" { } } - compress = true - min_ttl = 0 - default_ttl = 3600 - max_ttl = 86400 + min_ttl = 0 + default_ttl = 0 + max_ttl = 0 } price_class = "PriceClass_All" From ce68470f25195c1d6ed988cc4442e39bfa99bcb4 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 16 Mar 2026 15:11:59 +0000 Subject: [PATCH 110/124] Replace forwarded_values with cache_policy and origin_request_policy for API origin --- .../terraform/modules/cloudfront/main.tf | 56 ++++++++++++++----- 1 file changed, 42 insertions(+), 14 deletions(-) diff --git a/infrastructure/terraform/modules/cloudfront/main.tf b/infrastructure/terraform/modules/cloudfront/main.tf index 1b68b891..11f086fd 100644 --- a/infrastructure/terraform/modules/cloudfront/main.tf +++ b/infrastructure/terraform/modules/cloudfront/main.tf @@ -1,3 +1,41 @@ +resource "aws_cloudfront_cache_policy" "api" { + name = "api-no-cache" + + default_ttl = 0 + max_ttl = 0 + min_ttl = 0 + + parameters_in_cache_key_and_forwarded_to_origin { + cookies_config { + cookie_behavior = "none" + } + + headers_config { + header_behavior = "none" + } + + query_strings_config { + query_string_behavior = "all" + } + } +} + +resource "aws_cloudfront_origin_request_policy" "api" { + name = "api-forward-all" + + headers_config { + header_behavior = "allViewer" + } + + query_strings_config { + query_string_behavior = "all" + } + + cookies_config { + cookie_behavior = "all" + } +} + ############################################ # CloudFront Distribution ############################################ @@ -81,21 +119,11 @@ resource "aws_cloudfront_distribution" "this" { viewer_protocol_policy = "redirect-to-https" - allowed_methods = [ - "GET","HEAD","OPTIONS", - "PUT","POST","PATCH","DELETE" - ] + allowed_methods = ["GET","HEAD","OPTIONS","PUT","POST","PATCH","DELETE"] + cached_methods = ["GET","HEAD"] - cached_methods = ["GET","HEAD"] - - forwarded_values { - query_string = true - headers = ["*"] - - cookies { - forward = "all" - } - } + cache_policy_id = aws_cloudfront_cache_policy.api.id + origin_request_policy_id = aws_cloudfront_origin_request_policy.api.id min_ttl = 0 default_ttl = 0 From 98ad7d1d7c2d2c27ca1d1efcb63b2f2dfd3af270 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 16 Mar 2026 16:06:20 +0000 Subject: [PATCH 111/124] disable query string behaviour caching as caching time is set to 0 --- infrastructure/terraform/modules/cloudfront/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/modules/cloudfront/main.tf b/infrastructure/terraform/modules/cloudfront/main.tf index 11f086fd..3b5fe549 100644 --- a/infrastructure/terraform/modules/cloudfront/main.tf +++ b/infrastructure/terraform/modules/cloudfront/main.tf @@ -15,7 +15,7 @@ resource "aws_cloudfront_cache_policy" "api" { } query_strings_config { - query_string_behavior = "all" + query_string_behavior = "none" } } } From 867cebc9f220ae99834821f73aeb47299553cd66 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 17 Mar 2026 09:16:21 +0000 Subject: [PATCH 112/124] add cloudwatch logging to api gateway deployment --- .../modules/lambda_with_api_gateway/main.tf | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf index b1ee3b75..bef4a16c 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf @@ -6,6 +6,14 @@ module "role" { name = "${var.name}-lambda-${var.stage}" } +############################################ +# Cloudwatch log group +############################################ +resource "aws_cloudwatch_log_group" "api_logs" { + name = "/aws/apigateway/${var.name}-${var.stage}" + retention_in_days = 14 +} + ############################################ # Install python packages ############################################ @@ -68,6 +76,19 @@ resource "aws_apigatewayv2_stage" "this" { api_id = aws_apigatewayv2_api.this.id name = "$default" auto_deploy = true + + access_log_settings { + destination_arn = aws_cloudwatch_log_group.api_logs.arn + + format = jsonencode({ + requestId = "$context.requestId" + domainName = "$context.domainName" + path = "$context.path" + status = "$context.status" + sourceIp = "$context.identity.sourceIp" + userAgent = "$context.identity.userAgent" + }) + } } resource "aws_apigatewayv2_integration" "this" { From c91193ed2287f3dfbaafbe97e4ad4e89418addff Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 17 Mar 2026 09:42:16 +0000 Subject: [PATCH 113/124] use managed cloudfront caching and forwarding policies instead of defining our own --- .../terraform/modules/cloudfront/main.tf | 46 +++---------------- 1 file changed, 6 insertions(+), 40 deletions(-) diff --git a/infrastructure/terraform/modules/cloudfront/main.tf b/infrastructure/terraform/modules/cloudfront/main.tf index 3b5fe549..261352a8 100644 --- a/infrastructure/terraform/modules/cloudfront/main.tf +++ b/infrastructure/terraform/modules/cloudfront/main.tf @@ -1,39 +1,9 @@ -resource "aws_cloudfront_cache_policy" "api" { - name = "api-no-cache" - - default_ttl = 0 - max_ttl = 0 - min_ttl = 0 - - parameters_in_cache_key_and_forwarded_to_origin { - cookies_config { - cookie_behavior = "none" - } - - headers_config { - header_behavior = "none" - } - - query_strings_config { - query_string_behavior = "none" - } - } +data "aws_cloudfront_cache_policy" "caching_disabled" { + name = "Managed-CachingDisabled" } -resource "aws_cloudfront_origin_request_policy" "api" { - name = "api-forward-all" - - headers_config { - header_behavior = "allViewer" - } - - query_strings_config { - query_string_behavior = "all" - } - - cookies_config { - cookie_behavior = "all" - } +data "aws_cloudfront_origin_request_policy" "all_viewer_except_host_header" { + name = "Managed-AllViewerExceptHostHeader" } ############################################ @@ -122,12 +92,8 @@ resource "aws_cloudfront_distribution" "this" { allowed_methods = ["GET","HEAD","OPTIONS","PUT","POST","PATCH","DELETE"] cached_methods = ["GET","HEAD"] - cache_policy_id = aws_cloudfront_cache_policy.api.id - origin_request_policy_id = aws_cloudfront_origin_request_policy.api.id - - min_ttl = 0 - default_ttl = 0 - max_ttl = 0 + cache_policy_id = data.aws_cloudfront_cache_policy.caching_disabled.id + origin_request_policy_id = data.aws_cloudfront_origin_request_policy.all_viewer_except_host_header.id } price_class = "PriceClass_All" From e9f37e79597bc81362ade200244203ce619851a5 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 17 Mar 2026 11:37:37 +0000 Subject: [PATCH 114/124] add certificate for cdn --- .github/workflows/deploy_terraform.yml | 47 ++++++++++++++++++- infrastructure/terraform/cdn/main.tf | 19 ++++++-- .../terraform/cdn_certificate/main.tf | 28 +++++++++++ .../terraform/cdn_certificate/outputs.tf | 3 ++ .../terraform/cdn_certificate/provider.tf | 17 +++++++ .../terraform/cdn_certificate/variables.tf | 3 ++ .../terraform/modules/acm_certificate/main.tf | 11 +++++ .../modules/acm_certificate/outputs.tf | 7 +++ .../modules/acm_certificate/variables.tf | 16 +++++++ .../terraform/modules/cloudfront/main.tf | 9 +++- .../terraform/modules/cloudfront/variables.tf | 6 +++ infrastructure/terraform/shared/main.tf | 11 +++++ 12 files changed, 172 insertions(+), 5 deletions(-) create mode 100644 infrastructure/terraform/cdn_certificate/main.tf create mode 100644 infrastructure/terraform/cdn_certificate/outputs.tf create mode 100644 infrastructure/terraform/cdn_certificate/provider.tf create mode 100644 infrastructure/terraform/cdn_certificate/variables.tf create mode 100644 infrastructure/terraform/modules/acm_certificate/main.tf create mode 100644 infrastructure/terraform/modules/acm_certificate/outputs.tf create mode 100644 infrastructure/terraform/modules/acm_certificate/variables.tf diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index 501fe30f..733f7064 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -346,11 +346,56 @@ jobs: TF_VAR_epc_auth_token: ${{ secrets.DEV_EPC_AUTH_TOKEN }} TF_VAR_google_solar_api_key: ${{ secrets.DEV_GOOGLE_SOLAR_API_KEY }} + # ============================================================ + # Deploy ACM Certificate for Cloudfront + # ============================================================ + cloudfront_acm: + needs: [determine_stage, fast_api_lambda] + runs-on: ubuntu-latest + + env: + STAGE: ${{ needs.determine_stage.outputs.stage }} + TERRAFORM_APPLY: ${{ needs.determine_stage.outputs.terraform_apply }} + + steps: + - uses: actions/checkout@v4 + + - uses: aws-actions/configure-aws-credentials@v4 + with: + aws-access-key-id: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} + aws-region: ${{ secrets.DEV_AWS_REGION }} + + - uses: hashicorp/setup-terraform@v3 + + - name: Terraform Init + working-directory: infrastructure/terraform/cdn_certificate + run: terraform init -reconfigure + + - name: Terraform Workspace + working-directory: infrastructure/terraform/cdn_certificate + run: | + terraform workspace select $STAGE \ + || terraform workspace new $STAGE + + - name: Terraform Plan + working-directory: infrastructure/terraform/cdn_certificate + run: | + terraform plan \ + -var="stage=${STAGE}" \ + -out=tfplan + + - name: Terraform Apply + if: env.TERRAFORM_APPLY == 'true' + working-directory: infrastructure/terraform/cdn_certificate + run: terraform apply -auto-approve tfplan + + # ============================================================ # Deploy Cloudfront CDN # ============================================================ cloudfront_cdn: - needs: [determine_stage, shared_terraform, fast_api_lambda] + needs: [determine_stage, shared_terraform, cloudfront_acm] runs-on: ubuntu-latest env: diff --git a/infrastructure/terraform/cdn/main.tf b/infrastructure/terraform/cdn/main.tf index 7ef58e19..7e4c7cd7 100644 --- a/infrastructure/terraform/cdn/main.tf +++ b/infrastructure/terraform/cdn/main.tf @@ -16,7 +16,19 @@ data "terraform_remote_state" "shared" { data "terraform_remote_state" "fast_api" { backend = "s3" config = { - bucket = "ara-fast-api-terraform-state" + bucket = data.terraform_remote_state.shared.ara_fast_api_state_bucket + key = "env:/${var.stage}/terraform.tfstate" + region = "eu-west-2" + } +} + +############################################ +# Load CDN Certificate Terraform State +############################################ +data "terraform_remote_state" "cdn_certificate" { + backend = "s3" + config = { + bucket = data.terraform_remote_state.shared.cdn_certificate_state_bucket key = "env:/${var.stage}/terraform.tfstate" region = "eu-west-2" } @@ -28,8 +40,9 @@ data "terraform_remote_state" "fast_api" { module "cdn" { source = "../modules/cloudfront" - aliases = [] -# aliases = [data.terraform_remote_state.fast_api.outputs.domain_name] + aliases = [data.terraform_remote_state.fast_api.outputs.domain_name] + + acm_certificate_arn = data.terraform_remote_state.cdn_certificate.outputs.certificate_arn origins = [ # ---- S3 ---- diff --git a/infrastructure/terraform/cdn_certificate/main.tf b/infrastructure/terraform/cdn_certificate/main.tf new file mode 100644 index 00000000..5c0c178c --- /dev/null +++ b/infrastructure/terraform/cdn_certificate/main.tf @@ -0,0 +1,28 @@ +############################################ +# Load FastAPI Terraform State +############################################ +data "terraform_remote_state" "fast_api" { + backend = "s3" + config = { + bucket = "ara-fast-api-terraform-state" + key = "env:/${var.stage}/terraform.tfstate" + region = "eu-west-2" + } +} + +############################################ +# Define Certificate +############################################ +module "cdn_certificate" { + source = "../modules/acm_certificate" + + providers = { + aws = aws.us_east_1 + } + + domain_name = data.terraform_remote_state.fast_api.outputs.domain_name + + tags = { + Environment = var.stage + } +} \ No newline at end of file diff --git a/infrastructure/terraform/cdn_certificate/outputs.tf b/infrastructure/terraform/cdn_certificate/outputs.tf new file mode 100644 index 00000000..e72c6e13 --- /dev/null +++ b/infrastructure/terraform/cdn_certificate/outputs.tf @@ -0,0 +1,3 @@ +output "certificate_arn" { + value = module.cdn_certificate.certificate_arn +} \ No newline at end of file diff --git a/infrastructure/terraform/cdn_certificate/provider.tf b/infrastructure/terraform/cdn_certificate/provider.tf new file mode 100644 index 00000000..84d88438 --- /dev/null +++ b/infrastructure/terraform/cdn_certificate/provider.tf @@ -0,0 +1,17 @@ +terraform { + required_providers { + aws = { + source = "hashicorp/aws" + version = ">= 5.0" + } + } +} + +provider "aws" { + region = var.region +} + +provider "aws" { + alias = "us_east_1" + region = "us-east-1" +} \ No newline at end of file diff --git a/infrastructure/terraform/cdn_certificate/variables.tf b/infrastructure/terraform/cdn_certificate/variables.tf new file mode 100644 index 00000000..423f0b0f --- /dev/null +++ b/infrastructure/terraform/cdn_certificate/variables.tf @@ -0,0 +1,3 @@ +variable "stage" { + type = string +} \ No newline at end of file diff --git a/infrastructure/terraform/modules/acm_certificate/main.tf b/infrastructure/terraform/modules/acm_certificate/main.tf new file mode 100644 index 00000000..13d39556 --- /dev/null +++ b/infrastructure/terraform/modules/acm_certificate/main.tf @@ -0,0 +1,11 @@ +resource "aws_acm_certificate" "this" { + domain_name = var.domain_name + subject_alternative_names = var.subject_alternative_names + validation_method = "DNS" + + lifecycle { + create_before_destroy = true + } + + tags = var.tags +} \ No newline at end of file diff --git a/infrastructure/terraform/modules/acm_certificate/outputs.tf b/infrastructure/terraform/modules/acm_certificate/outputs.tf new file mode 100644 index 00000000..990a6db9 --- /dev/null +++ b/infrastructure/terraform/modules/acm_certificate/outputs.tf @@ -0,0 +1,7 @@ +output "certificate_arn" { + value = aws_acm_certificate.this.arn +} + +output "domain_validation_options" { + value = aws_acm_certificate.this.domain_validation_options +} \ No newline at end of file diff --git a/infrastructure/terraform/modules/acm_certificate/variables.tf b/infrastructure/terraform/modules/acm_certificate/variables.tf new file mode 100644 index 00000000..bd30501f --- /dev/null +++ b/infrastructure/terraform/modules/acm_certificate/variables.tf @@ -0,0 +1,16 @@ +variable "domain_name" { + description = "Primary domain name for the certificate" + type = string +} + +variable "subject_alternative_names" { + description = "Additional domains for the certificate" + type = list(string) + default = [] +} + +variable "tags" { + description = "Tags to apply to the certificate" + type = map(string) + default = {} +} \ No newline at end of file diff --git a/infrastructure/terraform/modules/cloudfront/main.tf b/infrastructure/terraform/modules/cloudfront/main.tf index 261352a8..03082604 100644 --- a/infrastructure/terraform/modules/cloudfront/main.tf +++ b/infrastructure/terraform/modules/cloudfront/main.tf @@ -1,3 +1,6 @@ +############################################# +# Use Managed Caching and Forwarding Policies +############################################# data "aws_cloudfront_cache_policy" "caching_disabled" { name = "Managed-CachingDisabled" } @@ -113,7 +116,11 @@ resource "aws_cloudfront_distribution" "this" { ########################################## viewer_certificate { - cloudfront_default_certificate = true + acm_certificate_arn = var.acm_certificate_arn + ssl_support_method = var.acm_certificate_arn != null ? "sni-only" : null + minimum_protocol_version = var.acm_certificate_arn != null ? "TLSv1.2_2021" : null + + cloudfront_default_certificate = var.acm_certificate_arn == null } } diff --git a/infrastructure/terraform/modules/cloudfront/variables.tf b/infrastructure/terraform/modules/cloudfront/variables.tf index feff2faa..4721d3d1 100644 --- a/infrastructure/terraform/modules/cloudfront/variables.tf +++ b/infrastructure/terraform/modules/cloudfront/variables.tf @@ -11,4 +11,10 @@ variable "origins" { variable "aliases" { type = list(string) +} + +variable "acm_certificate_arn" { + description = "ACM certificate ARN for custom aliases" + type = string + default = null } \ No newline at end of file diff --git a/infrastructure/terraform/shared/main.tf b/infrastructure/terraform/shared/main.tf index 1de2031f..486f79ca 100644 --- a/infrastructure/terraform/shared/main.tf +++ b/infrastructure/terraform/shared/main.tf @@ -562,4 +562,15 @@ output "fast_api_s3_read_and_write_arn" { value = module.fast_api_s3_read_and_write.policy_arn } +################################################ +# CDN Certificate +################################################ +module "cdn_certificate_state_bucket" { + source = "../modules/tf_state_bucket" + bucket_name = "cdn-certificate-terraform-state" +} + +output "cdn_certificate_state_bucket" { + value = module.cdn_certificate_state_bucket.bucket_name +} From 3d0a37cf22bb17eab3d0352e6cbbe90ee8dbafc1 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 17 Mar 2026 11:47:56 +0000 Subject: [PATCH 115/124] certificate depends on shared because of tfstate bucket --- .github/workflows/deploy_terraform.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index 733f7064..e41534e6 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -350,7 +350,7 @@ jobs: # Deploy ACM Certificate for Cloudfront # ============================================================ cloudfront_acm: - needs: [determine_stage, fast_api_lambda] + needs: [determine_stage, shared_terraform, fast_api_lambda] runs-on: ubuntu-latest env: @@ -395,7 +395,7 @@ jobs: # Deploy Cloudfront CDN # ============================================================ cloudfront_cdn: - needs: [determine_stage, shared_terraform, cloudfront_acm] + needs: [determine_stage, cloudfront_acm] runs-on: ubuntu-latest env: From f84a5cd762b02144e9c31d6e778105556d183030 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 17 Mar 2026 12:00:43 +0000 Subject: [PATCH 116/124] hardcode state bucket names --- infrastructure/terraform/cdn/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/terraform/cdn/main.tf b/infrastructure/terraform/cdn/main.tf index 7e4c7cd7..56b2f52b 100644 --- a/infrastructure/terraform/cdn/main.tf +++ b/infrastructure/terraform/cdn/main.tf @@ -16,7 +16,7 @@ data "terraform_remote_state" "shared" { data "terraform_remote_state" "fast_api" { backend = "s3" config = { - bucket = data.terraform_remote_state.shared.ara_fast_api_state_bucket + bucket = "ara-fast-api-terraform-state" key = "env:/${var.stage}/terraform.tfstate" region = "eu-west-2" } @@ -28,7 +28,7 @@ data "terraform_remote_state" "fast_api" { data "terraform_remote_state" "cdn_certificate" { backend = "s3" config = { - bucket = data.terraform_remote_state.shared.cdn_certificate_state_bucket + bucket = "cdn-certificate-terraform-state" key = "env:/${var.stage}/terraform.tfstate" region = "eu-west-2" } From 4b405202886af3308c63c754d2e0088073fe25ad Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 17 Mar 2026 12:23:19 +0000 Subject: [PATCH 117/124] make sure cdn certificate state is stored --- infrastructure/terraform/cdn_certificate/provider.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/infrastructure/terraform/cdn_certificate/provider.tf b/infrastructure/terraform/cdn_certificate/provider.tf index 84d88438..38b01d82 100644 --- a/infrastructure/terraform/cdn_certificate/provider.tf +++ b/infrastructure/terraform/cdn_certificate/provider.tf @@ -5,6 +5,12 @@ terraform { version = ">= 5.0" } } + + backend "s3" { + bucket = "cdn-certificate-terraform-state" + key = "terraform.tfstate" + region = "eu-west-2" + } } provider "aws" { From 3aefba7ba7b33e6e312f0ba326cc686d1bfa16c6 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 17 Mar 2026 17:02:52 +0000 Subject: [PATCH 118/124] do not recreate certificate every deploy --- infrastructure/terraform/modules/acm_certificate/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/modules/acm_certificate/main.tf b/infrastructure/terraform/modules/acm_certificate/main.tf index 13d39556..9f813a77 100644 --- a/infrastructure/terraform/modules/acm_certificate/main.tf +++ b/infrastructure/terraform/modules/acm_certificate/main.tf @@ -4,7 +4,7 @@ resource "aws_acm_certificate" "this" { validation_method = "DNS" lifecycle { - create_before_destroy = true + create_before_destroy = false } tags = var.tags From 63c0f845230bf013921cffde71ba5522e46c7107 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 17 Mar 2026 17:08:59 +0000 Subject: [PATCH 119/124] update gitignore to ignore terraform outputs --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 68e66052..15050bdd 100644 --- a/.gitignore +++ b/.gitignore @@ -246,7 +246,7 @@ etl/epc/local_data/* /backend/condition/sample_data/peabody/* *.DS_Store -infrastructure/terraform/.terraform* +**/.terraform* # Don't commit packages up serverless packages .serverless From 7544700618d6a64e55d3414aa1522295f75d8aca Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 18 Mar 2026 14:13:38 +0000 Subject: [PATCH 120/124] always run pip install --- .../terraform/modules/lambda_with_api_gateway/main.tf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf index bef4a16c..d2a5b0b2 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf @@ -20,11 +20,14 @@ resource "aws_cloudwatch_log_group" "api_logs" { resource "null_resource" "pip_install" { count = var.requirements_file != null ? 1 : 0 + triggers = { + always_run = timestamp() + } + provisioner "local-exec" { command = "pip install -r ${var.requirements_file} -t ${var.source_dir} --platform manylinux2014_x86_64 --implementation cp --python-version 3.11 --only-binary=:all: --upgrade" } } - ############################################ # Zip the source code ############################################ From 7821666f832848560ba705531eac832c5b0e034f Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 18 Mar 2026 14:53:44 +0000 Subject: [PATCH 121/124] add empty line back in --- infrastructure/terraform/modules/lambda_with_api_gateway/main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf index d2a5b0b2..99d12efa 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/main.tf @@ -28,6 +28,7 @@ resource "null_resource" "pip_install" { command = "pip install -r ${var.requirements_file} -t ${var.source_dir} --platform manylinux2014_x86_64 --implementation cp --python-version 3.11 --only-binary=:all: --upgrade" } } + ############################################ # Zip the source code ############################################ From 50696c9ef4aba7f171cfdc9babc232342bb2748e Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 19 Mar 2026 08:36:51 +0000 Subject: [PATCH 122/124] save cloudfront tfstate --- infrastructure/terraform/cdn/provider.tf | 14 ++++++++++++++ infrastructure/terraform/shared/main.tf | 11 +++++++++++ 2 files changed, 25 insertions(+) create mode 100644 infrastructure/terraform/cdn/provider.tf diff --git a/infrastructure/terraform/cdn/provider.tf b/infrastructure/terraform/cdn/provider.tf new file mode 100644 index 00000000..75e4e4a8 --- /dev/null +++ b/infrastructure/terraform/cdn/provider.tf @@ -0,0 +1,14 @@ +terraform { + required_providers { + aws = { + source = "hashicorp/aws" + version = ">= 5.0" + } + } + + backend "s3" { + bucket = "cdn-terraform-state" + key = "terraform.tfstate" + region = "eu-west-2" + } +} \ No newline at end of file diff --git a/infrastructure/terraform/shared/main.tf b/infrastructure/terraform/shared/main.tf index 486f79ca..303e6724 100644 --- a/infrastructure/terraform/shared/main.tf +++ b/infrastructure/terraform/shared/main.tf @@ -574,3 +574,14 @@ output "cdn_certificate_state_bucket" { value = module.cdn_certificate_state_bucket.bucket_name } +################################################ +# CDN +################################################ +module "cdn_state_bucket" { + source = "../modules/tf_state_bucket" + bucket_name = "cdn-terraform-state" +} + +output "cdn_state_bucket" { + value = module.cdn_state_bucket.bucket_name +} From c84e80935d23eba3b020885e91d5ca162a02e56b Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 19 Mar 2026 09:40:43 +0000 Subject: [PATCH 123/124] unique cdn state bucket name --- infrastructure/terraform/cdn/provider.tf | 2 +- infrastructure/terraform/shared/main.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/terraform/cdn/provider.tf b/infrastructure/terraform/cdn/provider.tf index 75e4e4a8..186adc10 100644 --- a/infrastructure/terraform/cdn/provider.tf +++ b/infrastructure/terraform/cdn/provider.tf @@ -7,7 +7,7 @@ terraform { } backend "s3" { - bucket = "cdn-terraform-state" + bucket = "ara-cdn-terraform-state" key = "terraform.tfstate" region = "eu-west-2" } diff --git a/infrastructure/terraform/shared/main.tf b/infrastructure/terraform/shared/main.tf index 303e6724..c5c96918 100644 --- a/infrastructure/terraform/shared/main.tf +++ b/infrastructure/terraform/shared/main.tf @@ -579,7 +579,7 @@ output "cdn_certificate_state_bucket" { ################################################ module "cdn_state_bucket" { source = "../modules/tf_state_bucket" - bucket_name = "cdn-terraform-state" + bucket_name = "ara-cdn-terraform-state" } output "cdn_state_bucket" { From f4f8960a1830e4e2c4c752e22ded51995c801d8f Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Thu, 19 Mar 2026 10:06:01 +0000 Subject: [PATCH 124/124] Adding ecrs for heat baseline and carbon baseline --- .idea/Model.iml | 1 + infrastructure/terraform/shared/main.tf | 94 ++++++++++++++----------- 2 files changed, 53 insertions(+), 42 deletions(-) diff --git a/.idea/Model.iml b/.idea/Model.iml index 1e51ede4..4d94187d 100644 --- a/.idea/Model.iml +++ b/.idea/Model.iml @@ -6,6 +6,7 @@ + diff --git a/infrastructure/terraform/shared/main.tf b/infrastructure/terraform/shared/main.tf index c5c96918..fdc7f203 100644 --- a/infrastructure/terraform/shared/main.tf +++ b/infrastructure/terraform/shared/main.tf @@ -6,16 +6,16 @@ terraform { } } backend "s3" { - bucket = "assessment-model-terraform-state" - region = "eu-west-2" - key = "terraform.tfstate" + bucket = "assessment-model-terraform-state" + region = "eu-west-2" + key = "terraform.tfstate" } required_version = ">= 1.2.0" } provider "aws" { - region = var.region + region = var.region } # Additional provider for resources that need to be in us-east-1, specifically the SSL certificate @@ -47,30 +47,30 @@ resource "aws_security_group" "allow_db" { ingress { # TLS (change to whatever ports you need) - from_port = 5432 - to_port = 5432 - protocol = "tcp" + from_port = 5432 + to_port = 5432 + protocol = "tcp" cidr_blocks = ["0.0.0.0/0"] } egress { - from_port = 0 - to_port = 0 - protocol = "-1" + from_port = 0 + to_port = 0 + protocol = "-1" cidr_blocks = ["0.0.0.0/0"] } } resource "aws_db_instance" "default" { - allocated_storage = var.allocated_storage - engine = "postgres" - engine_version = "14.17" - instance_class = var.instance_class - db_name = var.database_name - username = jsondecode(data.aws_secretsmanager_secret_version.db_credentials.secret_string)["db_assessment_model_username"] - password = jsondecode(data.aws_secretsmanager_secret_version.db_credentials.secret_string)["db_assessment_model_password"] - parameter_group_name = "default.postgres14" - skip_final_snapshot = true + allocated_storage = var.allocated_storage + engine = "postgres" + engine_version = "14.17" + instance_class = var.instance_class + db_name = var.database_name + username = jsondecode(data.aws_secretsmanager_secret_version.db_credentials.secret_string)["db_assessment_model_username"] + password = jsondecode(data.aws_secretsmanager_secret_version.db_credentials.secret_string)["db_assessment_model_password"] + parameter_group_name = "default.postgres14" + skip_final_snapshot = true vpc_security_group_ids = [aws_security_group.allow_db.id] lifecycle { prevent_destroy = true @@ -87,7 +87,7 @@ resource "aws_db_instance" "default" { storage_type = "gp3" # Automated backups configuration - backup_retention_period = 14 + backup_retention_period = 14 backup_window = "03:00-04:00" maintenance_window = "Sun:02:00-Sun:02:30" copy_tags_to_snapshot = true @@ -103,7 +103,7 @@ module "s3_presignable_bucket" { } output "retrofit_plan_trigger_bucket_name" { - value = module.s3_presignable_bucket.bucket_name + value = module.s3_presignable_bucket.bucket_name description = "Name of the retrofit plan trigger bucket" } @@ -156,7 +156,7 @@ module "retrofit_sap_predictions" { } output "retrofit_sap_predictions_bucket_name" { - value = module.retrofit_sap_predictions.bucket_name + value = module.retrofit_sap_predictions.bucket_name description = "Name of the retrofit SAP predictions bucket" } @@ -167,7 +167,7 @@ module "retrofit_sap_data" { } output "retrofit_sap_data_bucket_name" { - value = module.retrofit_sap_data.bucket_name + value = module.retrofit_sap_data.bucket_name description = "Name of the retrofit SAP data bucket" } @@ -178,7 +178,7 @@ module "retrofit_carbon_predictions" { } output "retrofit_carbon_predictions_bucket_name" { - value = module.retrofit_carbon_predictions.bucket_name + value = module.retrofit_carbon_predictions.bucket_name description = "Name of the retrofit carbon predictions bucket" } @@ -189,7 +189,7 @@ module "retrofit_heat_predictions" { } output "retrofit_heat_predictions_bucket_name" { - value = module.retrofit_heat_predictions.bucket_name + value = module.retrofit_heat_predictions.bucket_name description = "Name of the retrofit heat predictions bucket" } @@ -218,7 +218,7 @@ module "retrofit_heating_kwh_predictions" { } output "retrofit_heating_kwh_predictions_bucket_name" { - value = module.retrofit_heating_kwh_predictions.bucket_name + value = module.retrofit_heating_kwh_predictions.bucket_name description = "Name of the retrofit heating kWh predictions bucket" } @@ -229,7 +229,7 @@ module "retrofit_hotwater_kwh_predictions" { } output "retrofit_hotwater_kwh_predictions_bucket_name" { - value = module.retrofit_hotwater_kwh_predictions.bucket_name + value = module.retrofit_hotwater_kwh_predictions.bucket_name description = "Name of the retrofit hotwater kWh predictions bucket" } @@ -248,7 +248,7 @@ module "retrofit_energy_assessments" { } output "retrofit_energy_assessments_bucket_name" { - value = module.retrofit_energy_assessments.bucket_name + value = module.retrofit_energy_assessments.bucket_name description = "Name of the retrofit energy assessments bucket" } @@ -327,6 +327,16 @@ module "sap_baseline_ecr" { source = "../modules/ecr" } +module "heat_baseline_ecr" { + ecr_name = "heat-baseline-prediction-${var.stage}" + source = "../modules/ecr" +} + +module "carbon_baseline_ecr" { + ecr_name = "carbon-baseline-prediction-${var.stage}" + source = "../modules/ecr" +} + ################################################ # SES - Email sending ################################################ @@ -352,7 +362,7 @@ module "address2uprn_state_bucket" { module "address2uprn_registry" { source = "../modules/container_registry" name = "address2uprn" - stage = var.stage + stage = var.stage } @@ -383,14 +393,14 @@ module "condition_etl_state_bucket" { module "condition_etl_registry" { source = "../modules/container_registry" name = "condition-etl" - stage = var.stage + stage = var.stage } # Condition Data S3 Bucket to store initial data module "condition_data_bucket" { - source = "../modules/s3" - bucketname = "condition-data-${var.stage}" + source = "../modules/s3" + bucketname = "condition-data-${var.stage}" allowed_origins = var.allowed_origins } @@ -421,7 +431,7 @@ module "postcode_splitter_state_bucket" { module "postcode_splitter_registry" { source = "../modules/container_registry" name = "postcode_splitter" - stage = var.stage + stage = var.stage } @@ -452,7 +462,7 @@ module "categorisation_state_bucket" { module "categorisation_registry" { source = "../modules/container_registry" name = "categorisation" - stage = var.stage + stage = var.stage } @@ -468,7 +478,7 @@ module "ordnance_state_bucket" { module "ordnance_registry" { source = "../modules/container_registry" name = "ordnance" - stage = var.stage + stage = var.stage } @@ -499,7 +509,7 @@ module "engine_state_bucket" { module "engine_registry" { source = "../modules/container_registry" name = "engine" - stage = var.stage + stage = var.stage } # S3 policy for Engine to read and write from various S3 buckets @@ -508,7 +518,7 @@ module "engine_s3_read_and_write" { policy_name = "EngineReadandWriteS3" policy_description = "Allow Engine Lambda to read from and write to various S3 buckets" - bucket_arns = [ + bucket_arns = [ "arn:aws:s3:::${module.s3_presignable_bucket.bucket_name}", "arn:aws:s3:::${module.retrofit_sap_data.bucket_name}", "arn:aws:s3:::${module.retrofit_sap_predictions.bucket_name}", @@ -518,8 +528,8 @@ module "engine_s3_read_and_write" { "arn:aws:s3:::${module.retrofit_hotwater_kwh_predictions.bucket_name}", "arn:aws:s3:::${module.retrofit_energy_assessments.bucket_name}" ] - actions = ["s3:*"] - resource_paths = ["/*"] + actions = ["s3:*"] + resource_paths = ["/*"] } output "engine_s3_read_and_write_arn" { @@ -544,7 +554,7 @@ module "fast_api_s3_read_and_write" { policy_name = "FastAPIReadandWriteS3" policy_description = "Allow FastAPI Lambda to read from and write to various S3 buckets" - bucket_arns = [ + bucket_arns = [ "arn:aws:s3:::${module.s3_presignable_bucket.bucket_name}", "arn:aws:s3:::${module.retrofit_sap_data.bucket_name}", "arn:aws:s3:::${module.retrofit_sap_predictions.bucket_name}", @@ -554,8 +564,8 @@ module "fast_api_s3_read_and_write" { "arn:aws:s3:::${module.retrofit_hotwater_kwh_predictions.bucket_name}", "arn:aws:s3:::${module.retrofit_energy_assessments.bucket_name}" ] - actions = ["s3:GetObject", "s3:ListBucket"] - resource_paths = ["/*"] + actions = ["s3:GetObject", "s3:ListBucket"] + resource_paths = ["/*"] } output "fast_api_s3_read_and_write_arn" {