diff --git a/.assets-revision b/.assets-revision index 35808cfa..70b41c7b 100644 --- a/.assets-revision +++ b/.assets-revision @@ -1,8 +1 @@ -# Hugging Face dataset holding webharbor's heavy static assets -# (instance_seed/*.db, static/images/, static/external_cache/). -# -# fetch_assets.sh uses the `hf download` CLI. The pin below -# is a git revision (branch name like `main`, a tag, or a specific commit -# sha). Override at runtime with the ASSETS_REVISION env var. -repo: ChilleD/WebHarbor -revision: 8d8e4069588ef55594622fee1ab9fa51c2011d07 +d86ec0bfcbb98f92efbe6b6b4440f9dcc6cceb69 diff --git a/AGENTS.md b/AGENTS.md index 8f6e45b8..14e45939 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -4,7 +4,7 @@ A coding agent (Claude Code, Cursor, Aider, Codex, ...) is reading this. Read on ## What it is -19 Flask mirror websites (Amazon, GitHub, BBC News, ...) packaged into one Docker image, plus a control plane on `:8101` for resetting per-site state. Used as a deterministic offline environment for web-agent benchmarks. ~3 GB image. +20 Flask mirror websites (Amazon, GitHub, BBC News, ...) packaged into one Docker image, plus a control plane on `:8101` for resetting per-site state. Used as a deterministic offline environment for web-agent benchmarks. ~3 GB image. Two repos: - **code** (this one) — Flask apps, control plane, scripts. @@ -48,17 +48,17 @@ Inside the image, sites live at `/opt/WebSyn//`. The path predates the ren # fresh clone ./scripts/fetch_assets.sh # pulls assets from HF ./scripts/build.sh # docker build -t webharbor:dev . -docker run -d -p 8101:8101 -p 40000-40018:40000-40018 webharbor:dev +docker run -d -p 8101:8101 -p 40000-40019:40000-40019 webharbor:dev ``` Or use the published image directly: ```bash -docker run -d -p 8101:8101 -p 40000-40018:40000-40018 \ +docker run -d -p 8101:8101 -p 40000-40019:40000-40019 \ battalion7244/webharbor:latest ``` -Sites are on `40000`-`40018` in the order declared by `SITES=( ... )` in `websyn_start.sh`. Control plane: +Sites are on `40000`-`40019` in the order declared by `SITES=( ... )` in `websyn_start.sh`. Control plane: | Method | Path | Purpose | |--------|---------------------|-------------------------------------------| @@ -136,13 +136,13 @@ python3 -m py_compile sites//app.py # 3. run on alt ports (don't collide with anything you already have running) docker run -d --rm --name wh-test \ - -p 8201:8101 -p 41000-41018:40000-40018 webharbor:dev + -p 8201:8101 -p 41000-41019:40000-40019 webharbor:dev # 4. control plane healthy, all sites alive curl -s http://localhost:8201/health | python3 -m json.tool | head # 5. every site renders 200 -for p in $(seq 41000 41018); do +for p in $(seq 41000 41019); do curl -so /dev/null -w "$p:%{http_code}\n" http://localhost:$p/ done diff --git a/CLAUDE.md b/CLAUDE.md index 3f6b490e..5dcf2283 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -16,4 +16,4 @@ The full agent guide is loaded above via `@AGENTS.md`. The notes below apply onl ## Existing containers -If a container is already running on `:8101` / `:40000-40018`, treat it as the user's working environment — don't `docker stop` or `docker rm` it without explicit confirmation. Spin up your test container under a different name on alt ports (`:8201`, `:41000-41018`). +If a container is already running on `:8101` / `:40000-40019`, treat it as the user's working environment — don't `docker stop` or `docker rm` it without explicit confirmation. Spin up your test container under a different name on alt ports (`:8201`, `:41000-41019`). diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 07a7248b..6dce56be 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -24,7 +24,7 @@ git clone https://github.com//webharbor && cd webharbor ./scripts/fetch_assets.sh # pull current assets ./scripts/new_site.py mywebsite # OR edit an existing site ./scripts/build.sh && docker run -d --rm \ - -p 8101:8101 -p 40000-40018:40000-40018 webharbor:dev + -p 8101:8101 -p 40000-40019:40000-40019 webharbor:dev # iterate locally... ./scripts/extract_assets.sh ../webharbor-static-pr/ # split assets out diff --git a/Dockerfile b/Dockerfile index 24105b6a..65173076 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # WebHarbor — slim, self-contained image. -# 19 Flask mirror sites + control plane on :8101. +# 20 Flask mirror sites + control plane on :8101. FROM python:3.12-slim-bookworm @@ -35,11 +35,14 @@ RUN cd /opt/WebSyn/ikea && PYTHONHASHSEED=0 python seed_data.py && rm -rf instan RUN cd /opt/WebSyn/phys_org && PYTHONHASHSEED=0 python migrate_seed.py && rm -rf instance RUN cd /opt/WebSyn/target && PYTHONHASHSEED=0 python migrate_seed.py && rm -rf instance +# Rebuild Compass's source-backed catalog and benchmark state from tracked data. +RUN cd /opt/WebSyn/compass && python migrate_seed.py && rm -rf instance + COPY websyn_start.sh /opt/websyn_start.sh COPY control_server.py /opt/control_server.py COPY site_runner.py /opt/site_runner.py RUN chmod +x /opt/websyn_start.sh -EXPOSE 8101 40000-40018 +EXPOSE 8101 40000-40019 CMD ["/opt/websyn_start.sh"] diff --git a/README.md b/README.md index acf7bf0e..3877eeaf 100644 --- a/README.md +++ b/README.md @@ -36,17 +36,17 @@ WebHarbor takes a different approach. We leverage coding agent (e.g., Claude Cod - **Deep features unlocked** — carts, checkouts, accounts, all fully testable - **Evolving** — harder tasks drive richer mirrors; the environment grows with agents - **RL-ready** — sub-second database resets between rollouts -- **Community-driven** — 19 sites today, scaling to 100+ together +- **Community-driven** — 20 sites today, scaling to 100+ together ## 🚀 Quickstart One command to run all web environments: ```bash -docker run -p 8101:8101 -p 40000-40018:40000-40018 battalion7244/webharbor:latest +docker run -p 8101:8101 -p 40000-40019:40000-40019 battalion7244/webharbor:latest ``` -Then point your agent at `http://localhost:40000` through `http://localhost:40018` to explore 19 local mirrors of webvoyager sites: `Allrecipes, Amazon, Apple, ArXiv, BBC News, Booking, GitHub, Google Flights, Google Maps, Google Search, Hugging Face, Wolfram Alpha, Cambridge Dictionary, Coursera, ESPN, Merriam-Webster, IKEA, Phys.org, and Target`. +Then point your agent at `http://localhost:40000` through `http://localhost:40019` to explore 20 local mirrors of webvoyager sites: `Allrecipes, Amazon, Apple, ArXiv, BBC News, Booking, GitHub, Google Flights, Google Maps, Google Search, Hugging Face, Wolfram Alpha, Cambridge Dictionary, Coursera, ESPN, Merriam-Webster, IKEA, Phys.org, Target, and Compass`. For sub-second reset between rollouts, expose the control plane and call `/reset/`: @@ -65,7 +65,7 @@ git clone https://github.com/aiming-lab/WebHarbor && cd WebHarbor ## 🤝 Contribute -We have built 18 high-quality mirrors covering the [WebVoyager](https://github.com/MinorJerry/WebVoyager) benchmark. The next goal is **100+ sites**, covering everything in [Online-Mind2Web](https://huggingface.co/datasets/osunlp/Online-Mind2Web). We are inviting the community to build this together. +We have built 19 high-quality mirrors covering the [WebVoyager](https://github.com/MinorJerry/WebVoyager) benchmark. The next goal is **100+ sites**, covering everything in [Online-Mind2Web](https://huggingface.co/datasets/osunlp/Online-Mind2Web). We are inviting the community to build this together. There are two ways to join the author list: diff --git a/agent_demo/README.md b/agent_demo/README.md index 2b775eac..a8a1a5c2 100644 --- a/agent_demo/README.md +++ b/agent_demo/README.md @@ -19,7 +19,7 @@ export OPENAI_BASE_URL=https://api.openai.com/v1 # or your Azure / vLLM endpoi ## Run a task -WebHarbor must already be running locally (`docker run -p 8101:8101 -p 40000-40018:40000-40018 battalion7244/webharbor:latest`). +WebHarbor must already be running locally (`docker run -p 8101:8101 -p 40000-40019:40000-40019 battalion7244/webharbor:latest`). Run a single task from a site's `tasks.jsonl`: diff --git a/control_server.py b/control_server.py index af39b036..871752c0 100644 --- a/control_server.py +++ b/control_server.py @@ -26,7 +26,7 @@ 'allrecipes', 'amazon', 'apple', 'arxiv', 'bbc_news', 'booking', 'github', 'google_flights', 'google_map', 'google_search', 'huggingface', 'wolfram_alpha', 'cambridge_dictionary', - 'coursera', 'espn', 'merriam_webster', 'ikea', 'phys_org', 'target', + 'coursera', 'espn', 'merriam_webster', 'ikea', 'phys_org', 'target', 'compass', ] BASE_PORT = 40000 WEBSYN_DIR = '/opt/WebSyn' diff --git a/sites/compass/README.md b/sites/compass/README.md new file mode 100644 index 00000000..311a304e --- /dev/null +++ b/sites/compass/README.md @@ -0,0 +1,53 @@ +> **Current UI follow-up:** [Sell and all 24 regional guide landings](docs/sell-guides-review.md). Human experience and disclosed scope are accepted; [maintainer handoff and remaining work](docs/maintainer-handoff.md) record the Ready request and outstanding refreshed task17 verdict. Earlier evidence retains its recorded versions. + +# Compass + +An offline Compass mirror contributed in [WebHarbor #25](https://github.com/aiming-lab/WebHarbor/pull/25), with browsing, accounts, saved homes, saved searches, collections, tour requests, and inquiries. Compass uses port **40019** in the current 20-site registry. + +## Data and assets + +- `listings_clean.json` preserves the contributor's 524 source records and listing IDs. The environment includes the 497 records with an available local gallery. +- `source_data.json` contains 312 public Compass detail snapshots checked on September 6, 2026. Of these, 295 have local galleries and appear in the environment. Each record includes its original listing ID, source URL, retrieval time, and HTML SHA-256. +- Detail facts are accepted only when the public page's listing ID matches the original transaction. A URL that now resolves to a different sale or rental is not used to enrich the old record. Unmatched records retain only the contributor's basic snapshot; unknown property details and agent information stay absent. +- Property type, year, MLS number, amenities, agent contact information, and availability are never generated. A missing amenity is unknown, rather than false. Historical rentals retain monthly price formatting. Missing prices are displayed as “Price upon request.” +- `gallery_sources.json` records the additional original-source gallery images. `visual_sources.json` records the official homepage, Sell, Concierge and directory media/font assets. Local files are distributed through the pinned Hugging Face asset archive, not downloaded by the running site. +- Only benchmark accounts, their preferences, saved homes, collections, searches, and tour requests are synthetic. Forms save state locally; they do not contact real agents. + +The contributor's generation of property years, MLS numbers, amenities, and agent sales statistics has been removed. Published listing details take precedence over assessor records when those sources disagree; they are not silently combined. + +`migrate_seed.py` rebuilds `instance_seed/compass.db` from the tracked catalog and available local images. It writes tables and indexes in a stable order for byte-reproducible seeds within the same SQLite runtime and never modifies the live `instance/compass.db`. Both asset fetch and the Docker build apply this migration. Different SQLite versions can encode equivalent rows differently; reset comparisons use the seed rebuilt inside the same runtime. + +## Local use + +From the repository root, install the site's requirements and fetch its pinned assets: + +```bash +python -m pip install -r sites/compass/requirements.txt huggingface_hub +./scripts/fetch_assets.sh compass +mkdir -p sites/compass/instance +cp sites/compass/instance_seed/compass.db sites/compass/instance/compass.db +PORT=40019 python sites/compass/app.py +``` + +The default database can be overridden with `COMPASS_DATABASE_PATH`. `COMPASS_SKIP_SEED=1` is reserved for isolated tests. The full environment should be started with the repository's Docker and control-plane workflow so that reset restores the complete seed. + +Benchmark logins use password `webharbor123`: `alice.j@test.com`, `bob.smith@test.com`, `carol.lee@test.com`, and `david.kim@test.com`. Tour dates remain valid independently of wall-clock time because benchmark requests use fixed dates. + +```bash +python -m pip install pytest +python -m pytest sites/compass/tests -q +``` + +Tests cover invalid input without partial writes, object ownership, CSRF, local redirects, saved-search and collection round trips, rental formatting, price-per-area sorting, source transaction identity, and reproducible seed layout. They are regression tests, not recorded agent trajectories. + +## Interface scope + +The homepage hero, official typography, navigation, listing cards, responsive layout, photo wall, gallery, and filter controls follow the public site. Personalized recommendations are replaced with a stable catalog selection. Search cards do not add property years, MLS numbers, or agent identities; detail questions still require obtaining the relevant information. + +Sell at `/sell/` reproduces the source marketing sequence, both carousels and two local inquiry forms. All 24 directory entries lead to local regional guide landings, with 401 original community cards; individual articles and nearby searches remain explicit external links. See the [source/before/after comparison and scope](docs/sell-guides-review.md). + +The mirror provides a list view. Live maps, street view, mortgage preapproval, property-history feeds, and external messaging are not implemented. These are functional scope limits, not measures to prevent answer leakage. Unknown facts are identified rather than filled with plausible values. The displayed catalog is a snapshot and can include sold or rented homes. + +In this fixed snapshot, the **For sale** filter includes Pending / Contract Signed listings in the sale category; their published status remains in property details. It is not an active-only filter. A named search area includes records whose address city or catalog market matches that area, so New York can include Brooklyn and Manhattan addresses. + +The revised task set preserves the original IDs and omits `Compass--8` and `Compass--9`, which depended on generated agent sales volumes or unsupported open-house schedules. Remaining tasks use source-backed detail facts or explicit local account changes. diff --git a/sites/compass/_health.py b/sites/compass/_health.py new file mode 100644 index 00000000..e598472e --- /dev/null +++ b/sites/compass/_health.py @@ -0,0 +1,36 @@ +"""compass mirror health check.""" +from healthcheck import random_user + + +def run(p): + p.assert_get('home', '/', must_contain='Compass') + p.assert_get('search New York', '/search?q=New York', must_contain='New York') + p.assert_get('city for-sale', '/homes-for-sale/new-york-ny/', + must_contain='Homes') + p.assert_get('agents directory', '/agents', must_contain='Agent') + p.assert_get('open houses', '/open-houses', must_contain='Open') + + user = random_user() + html = p.assert_get('register page', '/register') + token = p.csrf(html) + if not token: + p.check('register csrf', False, 'no csrf'); return + p.assert_post('register submit', '/register', { + 'csrf_token': token, + 'name': f"{user['first_name']} {user['last_name']}", + 'email': user['email'], + 'password': user['password'], + 'confirm': user['password'], + }, accept_status=(200, 302, 303)) + + p.get('/logout') + html = p.assert_get('login page', '/login') + token = p.csrf(html) + if not token: + p.check('login csrf', False, 'no csrf'); return + p.assert_post('login submit', '/login', { + 'csrf_token': token, + 'email': user['email'], + 'password': user['password'], + }, accept_status=(200, 302, 303)) + p.assert_get('account', '/account', accept_status=(200, 302)) diff --git a/sites/compass/app.py b/sites/compass/app.py new file mode 100644 index 00000000..b0d18701 --- /dev/null +++ b/sites/compass/app.py @@ -0,0 +1,1212 @@ +"""Compass.com mirror — Flask app with real-estate browse + account features.""" +import json +import math +import os +import re +import secrets +import sys +import math +from datetime import date, datetime, timedelta +from functools import wraps +from urllib.parse import urlsplit + +from flask import (Flask, abort, flash, jsonify, redirect, render_template, + request, session, url_for) +from flask_bcrypt import Bcrypt +from flask_login import (LoginManager, UserMixin, current_user, login_required, + login_user, logout_user) +from flask_sqlalchemy import SQLAlchemy +from flask_wtf.csrf import CSRFProtect, generate_csrf +from sqlalchemy import or_, func +from email_validator import validate_email, EmailNotValidError + + +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) + +# seed_data imports these models by module name, including when launched as a script. +if __name__ == "__main__": + sys.modules["app"] = sys.modules[__name__] + +app = Flask(__name__, instance_path=os.path.join(BASE_DIR, "instance")) +app.config["SECRET_KEY"] = "compass-mirror-secret-key-not-for-prod" +app.config["SQLALCHEMY_DATABASE_URI"] = ( + "sqlite:///" + os.environ.get("COMPASS_DATABASE_PATH", os.path.join(BASE_DIR, "instance", "compass.db")) +) +app.config["SQLALCHEMY_TRACK_MODIFICATIONS"] = False +app.config["WTF_CSRF_TIME_LIMIT"] = None + +os.makedirs(os.path.join(BASE_DIR, "instance"), exist_ok=True) + +db = SQLAlchemy(app) +bcrypt = Bcrypt(app) +login_manager = LoginManager(app) +login_manager.login_view = "login" +login_manager.login_message = "Sign in to save homes, schedule tours, or contact an agent." +login_manager.login_message_category = "info" +csrf = CSRFProtect(app) + + +# ─── Models ──────────────────────────────────────────────────────────────────── + + +class User(db.Model, UserMixin): + __tablename__ = "users" + id = db.Column(db.Integer, primary_key=True) + email = db.Column(db.String(120), unique=True, nullable=False, index=True) + password_hash = db.Column(db.String(255), nullable=False) + name = db.Column(db.String(120), nullable=False) + phone = db.Column(db.String(40), default="") + city = db.Column(db.String(80), default="") + state = db.Column(db.String(40), default="") + budget_min = db.Column(db.Integer, default=0) + budget_max = db.Column(db.Integer, default=0) + beds_min = db.Column(db.Integer, default=0) + preferred_property_types = db.Column(db.Text, default="[]") + move_timeline = db.Column(db.String(40), default="") + has_agent = db.Column(db.Boolean, default=False) + receive_alerts = db.Column(db.Boolean, default=True) + agent_id = db.Column(db.Integer, db.ForeignKey("agents.id")) + created_at = db.Column(db.DateTime, default=datetime.utcnow) + + saved_homes = db.relationship("SavedHome", backref="user", lazy=True, + cascade="all, delete-orphan") + saved_searches = db.relationship("SavedSearch", backref="user", lazy=True, + cascade="all, delete-orphan") + tours = db.relationship("Tour", backref="user", lazy=True, + cascade="all, delete-orphan") + inquiries = db.relationship("Inquiry", backref="user", lazy=True, + cascade="all, delete-orphan") + collections = db.relationship("Collection", backref="user", lazy=True, + cascade="all, delete-orphan") + + def set_password(self, pw): + self.password_hash = bcrypt.generate_password_hash(pw).decode("utf-8") + + def check_password(self, pw): + # Support both bcrypt hashes (live registrations) and the + # deterministic pbkdf2 hashes used for benchmark-seed users so the + # seed DB stays byte-identical. + from werkzeug.security import check_password_hash as wz_check + try: + if (self.password_hash or "").startswith("pbkdf2:"): + return wz_check(self.password_hash, pw) + return bcrypt.check_password_hash(self.password_hash, pw) + except Exception: + return False + + def get_property_types(self): + try: + return json.loads(self.preferred_property_types or "[]") + except Exception: + return [] + + +class NeighborhoodGuide(db.Model): + __tablename__ = "neighborhood_guides" + slug = db.Column(db.String(80), primary_key=True) + position = db.Column(db.Integer, nullable=False) + directory_json = db.Column(db.Text, nullable=False) + content_json = db.Column(db.Text, nullable=False) + + +class SellerInquiry(db.Model): + __tablename__ = "seller_inquiries" + id = db.Column(db.Integer, primary_key=True) + reference = db.Column(db.String(32), unique=True, nullable=False) + name = db.Column(db.String(120), nullable=False) + email = db.Column(db.String(254), nullable=False) + phone = db.Column(db.String(40), nullable=False) + zip_code = db.Column(db.String(10), nullable=False) + created_at = db.Column(db.DateTime, default=datetime.utcnow, nullable=False) + + +class Agent(db.Model): + __tablename__ = "agents" + id = db.Column(db.Integer, primary_key=True) + slug = db.Column(db.String(120), unique=True, nullable=False, index=True) + name = db.Column(db.String(120), nullable=False) + title = db.Column(db.String(120), default="Real Estate Agent") + photo = db.Column(db.String(250), default="") + bio = db.Column(db.Text, default="") + email = db.Column(db.String(120), default="") + phone = db.Column(db.String(40), default="") + license_number = db.Column(db.String(60), default="") + city = db.Column(db.String(80), default="") + state = db.Column(db.String(40), default="") + years_experience = db.Column(db.Integer) + sales_volume_usd = db.Column(db.BigInteger) + transactions_count = db.Column(db.Integer) + languages = db.Column(db.Text, default="[]") + specialties = db.Column(db.Text, default="[]") + is_top_agent = db.Column(db.Boolean, default=False) + + listings = db.relationship("Listing", backref="agent", lazy=True) + + def get_languages(self): + try: + return json.loads(self.languages or "[]") + except Exception: + return [] + + def get_specialties(self): + try: + return json.loads(self.specialties or "[]") + except Exception: + return [] + + def sales_volume_display(self): + if self.sales_volume_usd is None: + return "Not available" + v = self.sales_volume_usd or 0 + if v >= 1_000_000_000: + return f"${v/1_000_000_000:.1f}B" + if v >= 1_000_000: + return f"${v/1_000_000:.0f}M" + if v >= 1_000: + return f"${v/1_000:.0f}K" + return f"${v}" + + +class City(db.Model): + __tablename__ = "cities" + id = db.Column(db.Integer, primary_key=True) + slug = db.Column(db.String(80), unique=True, nullable=False, index=True) + name = db.Column(db.String(80), nullable=False) + state = db.Column(db.String(40), nullable=False) + hero_image = db.Column(db.String(250), default="") + blurb = db.Column(db.Text, default="") + is_featured = db.Column(db.Boolean, default=False) + + +class Listing(db.Model): + __tablename__ = "listings" + id = db.Column(db.Integer, primary_key=True) + listing_id_sha = db.Column(db.String(40), unique=True, index=True) + market_city = db.Column(db.String(80), index=True) + source_url = db.Column(db.Text, default="") + source_retrieved_at = db.Column(db.String(40), default="") + source_html_sha256 = db.Column(db.String(64), default="") + property_facts_json = db.Column(db.Text, default="{}") + regional_facts_json = db.Column(db.Text, default="{}") + slug = db.Column(db.String(200), unique=True, nullable=False, index=True) + address = db.Column(db.String(200), nullable=False) + unit = db.Column(db.String(60), default="") + neighborhood = db.Column(db.String(80), default="") + city = db.Column(db.String(80), index=True) + state = db.Column(db.String(40), index=True) + zip = db.Column(db.String(20), default="") + latitude = db.Column(db.Float) + longitude = db.Column(db.Float) + + status = db.Column(db.String(20), default="for-sale", index=True) + is_rental = db.Column(db.Boolean, default=False) + price = db.Column(db.Integer) + beds = db.Column(db.Integer) + baths_full = db.Column(db.Integer) + baths_half = db.Column(db.Integer) + baths_total = db.Column(db.Float) + sqft = db.Column(db.Integer) + lot_sqft = db.Column(db.Integer) + year_built = db.Column(db.Integer) + property_type = db.Column(db.String(40), default="", index=True) + + description = db.Column(db.Text, default="") + features = db.Column(db.Text, default="[]") + hero_image = db.Column(db.String(250), default="") + gallery_images = db.Column(db.Text, default="[]") + + mls_number = db.Column(db.String(40), default="") + hoa_fee_usd_month = db.Column(db.Integer) + days_on_compass = db.Column(db.Integer) + listed_at = db.Column(db.DateTime) + + is_open_house = db.Column(db.Boolean, default=False, index=True) + open_house_date = db.Column(db.String(20), default="") + open_house_time = db.Column(db.String(40), default="") + + is_new = db.Column(db.Boolean, default=False) + is_compass_exclusive = db.Column(db.Boolean, default=False) + is_luxury = db.Column(db.Boolean, default=False) + is_pending = db.Column(db.Boolean, default=False) + + # Missing source evidence is unknown, not a negative amenity assertion. + has_parking = db.Column(db.Boolean) + has_pool = db.Column(db.Boolean) + has_doorman = db.Column(db.Boolean) + has_elevator = db.Column(db.Boolean) + has_garage = db.Column(db.Boolean) + has_waterfront = db.Column(db.Boolean) + pets_allowed = db.Column(db.Boolean) + furnished = db.Column(db.Boolean) + + agent_id = db.Column(db.Integer, db.ForeignKey("agents.id")) + + saved_by = db.relationship("SavedHome", backref="listing", lazy=True, + cascade="all, delete-orphan") + tours = db.relationship("Tour", backref="listing", lazy=True, + cascade="all, delete-orphan") + inquiries = db.relationship("Inquiry", backref="listing", lazy=True, + cascade="all, delete-orphan") + + def get_features(self): + try: + return json.loads(self.features or "[]") + except Exception: + return [] + + def get_gallery(self): + try: + g = json.loads(self.gallery_images or "[]") + return g if isinstance(g, list) else [] + except Exception: + return [] + + @property + def baths(self): + if self.baths_total is not None: + return self.baths_total + if self.baths_full is None and self.baths_half is None: + return None + return (self.baths_full or 0) + 0.5 * (self.baths_half or 0) + + def get_property_facts(self): + return json.loads(self.property_facts_json or "{}") + + def get_regional_facts(self): + return json.loads(self.regional_facts_json or "{}") + + def price_display(self): + if not self.price: + return "Price upon request" + if self.is_rental or self.status == "for-rent": + return f"${self.price:,}/mo" + return f"${self.price:,}" + + def price_per_sqft(self): + if not self.sqft or not self.price or self.is_rental or self.status == "for-rent": + return 0 + return math.floor(self.price / self.sqft + 0.5) + + +class SavedHome(db.Model): + __tablename__ = "saved_homes" + id = db.Column(db.Integer, primary_key=True) + user_id = db.Column(db.Integer, db.ForeignKey("users.id"), nullable=False) + listing_id = db.Column(db.Integer, db.ForeignKey("listings.id"), nullable=False) + note = db.Column(db.Text, default="") + saved_at = db.Column(db.DateTime, default=datetime.utcnow) + __table_args__ = (db.UniqueConstraint("user_id", "listing_id"),) + + +class SavedSearch(db.Model): + __tablename__ = "saved_searches" + id = db.Column(db.Integer, primary_key=True) + user_id = db.Column(db.Integer, db.ForeignKey("users.id"), nullable=False) + name = db.Column(db.String(120), nullable=False) + criteria_json = db.Column(db.Text, nullable=False, default="{}") + notify = db.Column(db.Boolean, default=True) + created_at = db.Column(db.DateTime, default=datetime.utcnow) + + def get_criteria(self): + try: + return json.loads(self.criteria_json or "{}") + except Exception: + return {} + + +class Tour(db.Model): + __tablename__ = "tours" + id = db.Column(db.Integer, primary_key=True) + user_id = db.Column(db.Integer, db.ForeignKey("users.id"), nullable=False) + listing_id = db.Column(db.Integer, db.ForeignKey("listings.id"), nullable=False) + requested_date = db.Column(db.String(20), default="") + requested_time = db.Column(db.String(40), default="") + tour_type = db.Column(db.String(40), default="in-person") + contact_phone = db.Column(db.String(40), default="") + notes = db.Column(db.Text, default="") + status = db.Column(db.String(20), default="requested") + requested_at = db.Column(db.DateTime, default=datetime.utcnow) + + +class Inquiry(db.Model): + __tablename__ = "inquiries" + id = db.Column(db.Integer, primary_key=True) + user_id = db.Column(db.Integer, db.ForeignKey("users.id")) + listing_id = db.Column(db.Integer, db.ForeignKey("listings.id"), nullable=False) + agent_id = db.Column(db.Integer, db.ForeignKey("agents.id")) + name = db.Column(db.String(120), default="") + email = db.Column(db.String(120), default="") + phone = db.Column(db.String(40), default="") + subject = db.Column(db.String(160), default="") + message = db.Column(db.Text, default="") + sent_at = db.Column(db.DateTime, default=datetime.utcnow) + + +class Collection(db.Model): + __tablename__ = "collections" + id = db.Column(db.Integer, primary_key=True) + user_id = db.Column(db.Integer, db.ForeignKey("users.id"), nullable=False) + name = db.Column(db.String(120), nullable=False) + description = db.Column(db.Text, default="") + listing_ids_json = db.Column(db.Text, default="[]") + share_token = db.Column(db.String(20), default="") + created_at = db.Column(db.DateTime, default=datetime.utcnow) + + def get_listing_ids(self): + try: + return json.loads(self.listing_ids_json or "[]") + except Exception: + return [] + + def set_listing_ids(self, ids): + self.listing_ids_json = json.dumps(list(ids)) + + def get_listings(self): + ids = self.get_listing_ids() + if not ids: + return [] + rows = Listing.query.filter(Listing.id.in_(ids)).all() + by_id = {r.id: r for r in rows} + return [by_id[i] for i in ids if i in by_id] + + +# ─── Login loader ────────────────────────────────────────────────────────────── + + +@login_manager.user_loader +def load_user(uid): + return User.query.get(int(uid)) + + +@app.context_processor +def inject_globals(): + saved_count = 0 + if current_user.is_authenticated: + saved_count = SavedHome.query.filter_by(user_id=current_user.id).count() + return { + "now": datetime.utcnow(), + "csrf_token": generate_csrf, + "FEATURED_CITIES": _featured_cities(), + "saved_count": saved_count, + } + + +def _featured_cities(): + return City.query.filter_by(is_featured=True).order_by(City.name).all() + + +# ─── Helpers ─────────────────────────────────────────────────────────────────── + +PROPERTY_TYPES = {"Single Family", "Condo", "Co-op", "Townhouse", "Multi-Family", "Apartment", "Land"} +SEARCH_FIELDS = ("q", "city", "status", "property_type", "price_min", "price_max", "beds", "baths", "sqft_min", "year_built_min", "pool", "garage", "waterfront", "doorman", "open_house", "new", "compass_exclusive", "sort") +TOUR_TIMES = ["9:00 AM", "10:00 AM", "11:00 AM", "12:00 PM", "1:00 PM", "2:00 PM", "3:00 PM", "4:00 PM", "5:00 PM"] + + +def local_return_url(value, fallback): + """Only return to a path on this mirror after an account action.""" + if not value or "\\" in value or any(ord(c) < 32 for c in value): + return fallback + try: + target = urlsplit(value) + origin = urlsplit(request.host_url) + if target.scheme or target.netloc: + if (target.scheme, target.netloc) != (origin.scheme, origin.netloc): + return fallback + if not target.path.startswith("/") or target.path.startswith("//"): + return fallback + return target.path + ("?" + target.query if target.query else "") + except ValueError: + return fallback + + +def valid_email(value): + try: + validate_email(value, check_deliverability=False) + return len(value) <= 120 + except EmailNotValidError: + return False + + +def valid_password(value): + return len(value) >= 6 and len(value.encode("utf-8")) <= 72 + + +def _tokens(s: str): + if not s: + return [] + return [t for t in re.split(r"[^a-z0-9]+", s.lower()) if t and len(t) > 1] + + +def _listing_corpus(L) -> str: + parts = [ + L.address, L.unit or "", L.neighborhood or "", L.city or "", L.state or "", + L.zip or "", L.property_type or "", L.status or "", + L.description or "", " ".join(L.get_features()), + ] + if L.agent: + parts.append(L.agent.name) + parts.append(" ".join(L.agent.get_specialties())) + return " ".join(parts).lower() + + +def search_listings(query: str, base_query=None): + """Token-overlap scored search. Returns list of (Listing, score).""" + q = (query or "").strip() + if base_query is None: + base_query = Listing.query + if q and City.query.filter(func.lower(City.name) == q.lower()).first(): + return [(listing, 0) for listing in base_query.filter(or_(func.lower(Listing.city) == q.lower(), func.lower(Listing.market_city) == q.lower())).all()] + listings = base_query.all() + if not q: + return [(L, 0) for L in listings] + qtoks = _tokens(q) + if not qtoks: + return [(L, 0) for L in listings] + qset = set(qtoks) + scored = [] + for L in listings: + corpus = _listing_corpus(L) + ctoks = _tokens(corpus) + cset = set(ctoks) + overlap = qset & cset + if not overlap: + continue + tf = sum(ctoks.count(t) for t in overlap) + boost = 0 + ql = q.lower() + if L.city and L.city.lower() in ql: boost += 5 + if L.state and L.state.lower() in ql: boost += 5 + if L.neighborhood and L.neighborhood.lower() in ql: boost += 4 + if L.zip and L.zip in q: boost += 5 + score = len(overlap) * 3 + tf + boost + scored.append((L, score)) + scored.sort(key=lambda x: (-x[1], -(x[0].price or 0))) + return scored + + +def filter_listings(qs, args): + city = (args.get("city") or "").strip() + if city: + qs = qs.filter(or_(func.lower(Listing.city) == city.lower(), func.lower(Listing.market_city) == city.lower())) + status = args.get("status") + if status: + qs = qs.filter(Listing.status == status) + pt = args.get("type") or args.get("property_type") + if pt: + qs = qs.filter(Listing.property_type == pt) + pmin = args.get("price_min") + pmax = args.get("price_max") + if pmin and pmin.isdigit(): + qs = qs.filter(Listing.price >= int(pmin)) + if pmax and pmax.isdigit(): + qs = qs.filter(Listing.price <= int(pmax)) + beds = args.get("beds") + if beds and beds.isdigit(): + qs = qs.filter(Listing.beds >= int(beds)) + baths = args.get("baths") + if baths and re.fullmatch(r"\d+(?:\.\d+)?", baths): + qs = qs.filter(func.coalesce(Listing.baths_total, func.coalesce(Listing.baths_full, 0) + 0.5 * func.coalesce(Listing.baths_half, 0)) >= float(baths)) + sqft_min = args.get("sqft_min") + if sqft_min and sqft_min.isdigit(): + qs = qs.filter(Listing.sqft >= int(sqft_min)) + year_built = args.get("year_built_min") + if year_built and year_built.isdigit(): + qs = qs.filter(Listing.year_built >= int(year_built)) + if args.get("pool"): + qs = qs.filter(Listing.has_pool == True) + if args.get("garage"): + qs = qs.filter(Listing.has_garage == True) + if args.get("waterfront"): + qs = qs.filter(Listing.has_waterfront == True) + if args.get("doorman"): + qs = qs.filter(Listing.has_doorman == True) + if args.get("open_house"): + qs = qs.filter(Listing.is_open_house == True) + if args.get("new"): + qs = qs.filter(Listing.is_new == True) + if args.get("compass_exclusive"): + qs = qs.filter(Listing.is_compass_exclusive == True) + return qs + + +def sort_listings(items, key: str): + is_pair = items and isinstance(items[0], tuple) + + def L(x): return x[0] if is_pair else x + + if key == "price_asc": + items.sort(key=lambda x: (L(x).price is None, L(x).price or 0)) + elif key == "price_desc": + items.sort(key=lambda x: -(L(x).price or 0)) + elif key == "newest": + items.sort(key=lambda x: L(x).days_on_compass if L(x).days_on_compass is not None else 9999) + elif key == "sqft_desc": + items.sort(key=lambda x: -(L(x).sqft or 0)) + elif key == "beds_desc": + items.sort(key=lambda x: -(L(x).beds or 0)) + elif key == "ppsf_asc": + items.sort(key=lambda x: L(x).price / L(x).sqft if L(x).price_per_sqft() else float("inf")) + elif key == "ppsf_desc": + items.sort(key=lambda x: -L(x).price / L(x).sqft if L(x).price_per_sqft() else float("inf")) + return items + + +def city_state_slug(slug: str): + m = re.match(r"^(.*)-([a-z]{2})$", slug.lower()) + if not m: + return None, None + city = m.group(1).replace("-", " ").title() + state = m.group(2).upper() + return city, state + + +# ─── Public browse ───────────────────────────────────────────────────────────── + + +@app.route("/") +def index(): + # Curated mixes — explicitly NOT sorted by price/recency so the homepage + # doesn't trivially surface the top luxury / cheapest listing / freshest + # listing of any market (those should require navigating into the + # relevant section). + featured = (Listing.query.filter_by(is_compass_exclusive=True) + .order_by(Listing.id).limit(6).all()) + return render_template("index.html", featured=featured) + + +@app.route("/private-exclusives/") +def private_exclusives(): + listings = Listing.query.filter( + func.json_extract(Listing.property_facts_json, "$.Status").in_( + ["Active (Private)", "Contingent (Private)", "Pending (Private)"]) + ).order_by(Listing.id).all() + return render_template("listing_collection.html", title="Compass Private Exclusives", + intro="Homes with a private marketing status in our fixed listing snapshot.", + listings=listings) + + +@app.route("/coming-soon/") +@app.route("/coming-soon/listings/") +def coming_soon(): + listings = Listing.query.filter( + func.json_extract(Listing.property_facts_json, "$.Status") == "Coming Soon" + ).order_by(Listing.id).all() + return render_template("listing_collection.html", title="Compass Coming Soon", + intro="Homes recorded as Coming Soon in our fixed listing snapshot.", + listings=listings) + + +@app.route("/sitemap//") +def market(state): + state = state.upper() + if not re.fullmatch(r"[A-Z]{2}", state): + abort(404) + listings = Listing.query.filter_by(state=state, status="for-sale").order_by(Listing.id).all() + return render_template("listing_collection.html", title=f"{state} Real Estate", + intro="Browse homes for sale from our fixed listing snapshot.", + listings=listings) + + +@app.route("/neighborhood-guides/") +@app.route("/neighborhood-guides//") +def neighborhoods(region=None): + if region is None: + directory = [json.loads(guide.directory_json) for guide in + NeighborhoodGuide.query.order_by(NeighborhoodGuide.position).all()] + return render_template("neighborhoods.html", directory=directory) + guide = db.session.get(NeighborhoodGuide, region) + if guide is None: + abort(404) + return render_template("neighborhood_region.html", guide=json.loads(guide.content_json)) + + +@app.route("/concierge/") +def concierge(): + return render_template("concierge.html") + + +@app.route("/sell/", methods=["GET", "POST"]) +def sell(): + values = {} + errors = [] + if request.method == "POST": + values = {field: request.form.get(field, "").strip() + for field in ("name", "email", "phone", "zip_code")} + if not 1 <= len(values["name"]) <= 120: + errors.append("Enter a name of up to 120 characters.") + try: + values["email"] = validate_email(values["email"], check_deliverability=False).normalized + except EmailNotValidError: + errors.append("Enter a valid email address.") + phone = values["phone"] + if (len(phone) > 40 or not re.fullmatch(r"[+\d() .-]+", phone) + or not 7 <= len(re.sub(r"\D", "", phone)) <= 15): + errors.append("Enter a valid phone number.") + if not re.fullmatch(r"[0-9]{5}(?:-[0-9]{4})?", values["zip_code"]): + errors.append("Enter a five-digit ZIP code or ZIP+4.") + if not errors: + inquiry = SellerInquiry(reference=secrets.token_hex(12), **values) + db.session.add(inquiry) + db.session.commit() + session["seller_inquiry_reference"] = inquiry.reference + return redirect(url_for("sell", _anchor="lead-form")) + reference = session.get("seller_inquiry_reference") + confirmation = SellerInquiry.query.filter_by(reference=reference).first() if reference else None + return render_template("sell.html", seller_values=values, seller_errors=errors, + seller_confirmation=confirmation), 422 if errors else 200 + + +@app.route("/homes-for-sale") +def homes_for_sale_index(): + cities = City.query.order_by(City.name).all() + return render_template("homes_for_sale.html", cities=cities, + status_label="For Sale", status="for-sale") + + +@app.route("/homes-for-rent") +def homes_for_rent_index(): + cities = City.query.order_by(City.name).all() + return render_template("homes_for_sale.html", cities=cities, + status_label="For Rent", status="for-rent") + + +@app.route("/homes-for-sale//") +def city_for_sale(city_state): + return _city_listing_page(city_state, status="for-sale") + + +@app.route("/homes-for-rent//") +def city_for_rent(city_state): + return _city_listing_page(city_state, status="for-rent") + + +def _city_listing_page(city_state, status): + city, state = city_state_slug(city_state) + if not city: + abort(404) + qs = Listing.query.filter_by(state=state, status=status).filter(or_(Listing.city == city, Listing.market_city == city)) + qs = filter_listings(qs, request.args) + listings = qs.all() + sort = request.args.get("sort", "newest") + sort_listings(listings, sort) + city_row = City.query.filter_by(slug=city_state).first() + return render_template( + "city.html", + city_name=city, state=state, + city_slug=city_state, + city_row=city_row, + status=status, + status_label="For Sale" if status == "for-sale" else "For Rent", + listings=listings, + sort=sort, + active_filters=dict(request.args), + page_title=f"{city} {state} {('Homes For Sale' if status=='for-sale' else 'Homes For Rent')}", + ) + + +@app.route("/listing/") +def listing_detail(slug): + L = Listing.query.filter_by(slug=slug).first() + if not L: + abort(404) + similar = (Listing.query + .filter(Listing.id != L.id, Listing.city == L.city, + Listing.status == L.status) + .order_by(func.abs(Listing.price - L.price)).limit(4).all()) + is_saved = False + if current_user.is_authenticated: + is_saved = (SavedHome.query + .filter_by(user_id=current_user.id, listing_id=L.id).first() + is not None) + return render_template("listing_detail.html", listing=L, similar=similar, + is_saved=is_saved, collections=Collection.query.filter_by(user_id=current_user.id).order_by(Collection.name).all() if current_user.is_authenticated else []) + + +@app.route("/agents") +def agents_index(): + city = request.args.get("city", "") + qs = Agent.query + if city: + qs = qs.filter(Agent.city.ilike(f"%{city}%")) + agents = qs.order_by(Agent.name).all() + return render_template("agents.html", agents=agents, filter_city=city, + all_cities=sorted(set(a.city for a in Agent.query.all() if a.city))) + + +@app.route("/agents/") +def agent_detail(slug): + a = Agent.query.filter_by(slug=slug).first() + if not a: + abort(404) + listings = (Listing.query.filter_by(agent_id=a.id) + .order_by(Listing.price.desc()).all()) + return render_template("agent_detail.html", agent=a, listings=listings) + + +@app.route("/search") +def search(): + q = request.args.get("q", "").strip() + base = Listing.query + base = filter_listings(base, request.args) + results = search_listings(q, base_query=base) + sort = request.args.get("sort", "") + if sort: + sort_listings(results, sort) + listings = [L for L, _ in results] + return render_template("search.html", q=q, listings=listings, + result_count=len(listings), + active_filters=dict(request.args), + sort=sort) + + +@app.route("/open-houses") +def open_houses(): + city = request.args.get("city", "") + qs = Listing.query.filter(Listing.is_open_house == True) + if city: + qs = qs.filter(Listing.city.ilike(f"%{city}%")) + listings = qs.order_by(Listing.open_house_date).all() + all_cities = sorted(set(c[0] for c in db.session.query(Listing.city) + .filter(Listing.is_open_house == True).distinct())) + return render_template("open_houses.html", listings=listings, + filter_city=city, all_cities=all_cities) + + +@app.route("/new-listings") +def new_listings(): + listings = (Listing.query.filter_by(is_new=True) + .order_by(Listing.days_on_compass.asc()).all()) + return render_template("new_listings.html", listings=listings) + + +@app.route("/luxury") +def luxury(): + listings = (Listing.query.filter_by(is_luxury=True, status="for-sale") + .order_by(Listing.price.desc()).all()) + return render_template("luxury.html", listings=listings) + + +@app.route("/about") +def about(): + return render_template("about.html") + + +@app.route("/help") +def help_page(): + return render_template("help.html") + + +# ─── Auth ───────────────────────────────────────────────────────────────────── + + +@app.route("/login", methods=["GET", "POST"]) +def login(): + if current_user.is_authenticated: + return redirect(url_for("account")) + error = None + if request.method == "POST": + email = (request.form.get("email") or "").strip().lower() + pw = request.form.get("password") or "" + u = User.query.filter_by(email=email).first() + if not u or not u.check_password(pw): + error = "Invalid email or password." + else: + login_user(u, remember=bool(request.form.get("remember"))) + return redirect(local_return_url(request.args.get("next"), url_for("account"))) + return render_template("login.html", error=error) + + +@app.route("/register", methods=["GET", "POST"]) +def register(): + if current_user.is_authenticated: + return redirect(url_for("account")) + error = None + if request.method == "POST": + name = (request.form.get("name") or "").strip() + email = (request.form.get("email") or "").strip().lower() + pw = request.form.get("password") or "" + pw2 = request.form.get("confirm") or "" + if not name or not email or not pw: + error = "Name, email and password are required." + elif len(name) > 120 or not valid_email(email): + error = "Enter a valid name and email address." + elif not valid_password(pw): + error = "Password must contain at least 6 characters and at most 72 UTF-8 bytes." + elif pw != pw2: + error = "Passwords do not match." + elif User.query.filter_by(email=email).first(): + error = "An account with this email already exists." + else: + u = User(name=name, email=email) + u.set_password(pw) + db.session.add(u) + db.session.commit() + login_user(u) + return redirect(url_for("account")) + return render_template("register.html", error=error) + + +@app.route("/logout", methods=["POST"]) +def logout(): + logout_user() + return redirect(url_for("index")) + + +# ─── Account ─────────────────────────────────────────────────────────────────── + + +@app.route("/account") +@login_required +def account(): + saved = (SavedHome.query.filter_by(user_id=current_user.id) + .order_by(SavedHome.saved_at.desc()).limit(4).all()) + tours = (Tour.query.filter_by(user_id=current_user.id) + .order_by(Tour.requested_at.desc()).limit(3).all()) + inquiries = (Inquiry.query.filter_by(user_id=current_user.id) + .order_by(Inquiry.sent_at.desc()).limit(3).all()) + return render_template("account.html", user=current_user, + saved=saved, tours=tours, inquiries=inquiries) + + +@app.route("/account/edit", methods=["GET", "POST"]) +@login_required +def account_edit(): + if request.method == "POST": + current_user.name = (request.form.get("name") or "").strip() or current_user.name + current_user.phone = (request.form.get("phone") or "").strip() + current_user.city = (request.form.get("city") or "").strip() + current_user.state = (request.form.get("state") or "").strip() + db.session.commit() + flash("Profile updated.", "success") + return redirect(url_for("account")) + return render_template("account_edit.html", user=current_user) + + +@app.route("/account/change-password", methods=["GET", "POST"]) +@login_required +def change_password(): + error = None + if request.method == "POST": + cur = request.form.get("current") or "" + new = request.form.get("new") or "" + new2 = request.form.get("confirm") or "" + if not current_user.check_password(cur): + error = "Current password is incorrect." + elif new != new2: + error = "New passwords do not match." + elif not valid_password(new): + error = "Password must contain at least 6 characters and at most 72 UTF-8 bytes." + else: + current_user.set_password(new) + db.session.commit() + flash("Password updated.", "success") + return redirect(url_for("account")) + return render_template("change_password.html", error=error) + + +@app.route("/account/preferences", methods=["GET", "POST"]) +@login_required +def preferences(): + if request.method == "POST": + try: + budget_min = int(request.form.get("budget_min") or 0) + budget_max = int(request.form.get("budget_max") or 0) + beds_min = int(request.form.get("beds_min") or 0) + if min(budget_min, budget_max, beds_min) < 0 or max(budget_min, budget_max) > 10**12 or beds_min > 100: + raise ValueError + if budget_max and budget_max < budget_min: + raise ValueError + except ValueError: + flash("Enter valid nonnegative budgets and bedrooms; maximum budget must be at least the minimum.", "warning") + return render_template("preferences.html", user=current_user), 400 + types = request.form.getlist("property_types") + timeline = request.form.get("move_timeline") or "" + if not set(types) <= PROPERTY_TYPES or timeline not in {"", "0-3mo", "3-6mo", "6-12mo", "12mo+"}: + flash("Choose one of the available property types and move timelines.", "warning") + return render_template("preferences.html", user=current_user), 400 + current_user.budget_min = budget_min + current_user.budget_max = budget_max + current_user.beds_min = beds_min + current_user.preferred_property_types = json.dumps(types) + current_user.move_timeline = timeline + current_user.has_agent = bool(request.form.get("has_agent")) + current_user.receive_alerts = bool(request.form.get("receive_alerts")) + db.session.commit() + flash("Preferences updated.", "success") + return redirect(url_for("preferences")) + return render_template("preferences.html", user=current_user) + + +# ─── Saved homes / searches / collections / tours / inquiries ────────────────── + + +@app.route("/saved") +@login_required +def saved_list(): + rows = (SavedHome.query.filter_by(user_id=current_user.id) + .order_by(SavedHome.saved_at.desc()).all()) + return render_template("saved.html", saved=rows) + + +@app.route("/save/", methods=["POST"]) +@login_required +def save_home(listing_id): + L = Listing.query.get_or_404(listing_id) + existing = SavedHome.query.filter_by(user_id=current_user.id, + listing_id=L.id).first() + if not existing: + db.session.add(SavedHome(user_id=current_user.id, listing_id=L.id)) + db.session.commit() + flash(f"Saved {L.address}.", "success") + return redirect(local_return_url(request.referrer, url_for("listing_detail", slug=L.slug))) + + +@app.route("/unsave/", methods=["POST"]) +@login_required +def unsave_home(listing_id): + row = SavedHome.query.filter_by(user_id=current_user.id, + listing_id=listing_id).first() + if row: + db.session.delete(row) + db.session.commit() + flash("Removed from saved homes.", "info") + return redirect(local_return_url(request.referrer, url_for("saved_list"))) + + +@app.route("/saved-searches", methods=["GET", "POST"]) +@login_required +def saved_searches(): + if request.method == "POST": + name = (request.form.get("name") or "").strip() + criteria = {key: request.form.get(key, "").strip() for key in SEARCH_FIELDS if request.form.get(key, "").strip()} + if name: + ss = SavedSearch(user_id=current_user.id, name=name, + criteria_json=json.dumps(criteria)) + db.session.add(ss) + db.session.commit() + flash(f'Saved search "{name}".', "success") + return redirect(url_for("saved_searches")) + rows = (SavedSearch.query.filter_by(user_id=current_user.id) + .order_by(SavedSearch.created_at.desc()).all()) + return render_template("saved_searches.html", searches=rows) + + +@app.route("/saved-searches//delete", methods=["POST"]) +@login_required +def delete_saved_search(ssid): + row = SavedSearch.query.filter_by(id=ssid, user_id=current_user.id).first_or_404() + db.session.delete(row) + db.session.commit() + flash("Saved search deleted.", "info") + return redirect(url_for("saved_searches")) + + +@app.route("/collections") +@login_required +def collections_index(): + rows = (Collection.query.filter_by(user_id=current_user.id) + .order_by(Collection.created_at.desc()).all()) + return render_template("collections.html", collections=rows) + + +@app.route("/collections/new", methods=["GET", "POST"]) +@login_required +def collection_new(): + if request.method == "POST": + name = (request.form.get("name") or "").strip() + if not name: + flash("Collection name required.", "warning") + return redirect(url_for("collection_new")) + c = Collection(user_id=current_user.id, name=name, + description=(request.form.get("description") or "").strip(), + share_token=secrets.token_urlsafe(8)) + db.session.add(c) + db.session.commit() + return redirect(url_for("collection_detail", cid=c.id)) + return render_template("collection_new.html") + + +@app.route("/collections/") +@login_required +def collection_detail(cid): + c = Collection.query.filter_by(id=cid, user_id=current_user.id).first_or_404() + return render_template("collection_detail.html", collection=c, + listings=c.get_listings()) + + +@app.route("/collections//add/", methods=["POST"]) +@login_required +def collection_add(cid, listing_id): + c = Collection.query.filter_by(id=cid, user_id=current_user.id).first_or_404() + L = Listing.query.get_or_404(listing_id) + ids = c.get_listing_ids() + if L.id not in ids: + ids.append(L.id) + c.set_listing_ids(ids) + db.session.commit() + flash(f'Added {L.address} to "{c.name}".', "success") + return redirect(local_return_url(request.referrer, url_for("collection_detail", cid=c.id))) + + +@app.route("/listing//add-to-collection", methods=["POST"]) +@login_required +def listing_add_to_collection(listing_id): + cid = request.form.get("collection_id", type=int) + if cid is None: + abort(400) + return collection_add(cid, listing_id) + + +@app.route("/collections//remove/", methods=["POST"]) +@login_required +def collection_remove(cid, listing_id): + c = Collection.query.filter_by(id=cid, user_id=current_user.id).first_or_404() + ids = c.get_listing_ids() + if listing_id in ids: + ids.remove(listing_id) + c.set_listing_ids(ids) + db.session.commit() + return redirect(url_for("collection_detail", cid=c.id)) + + +@app.route("/collections//delete", methods=["POST"]) +@login_required +def collection_delete(cid): + c = Collection.query.filter_by(id=cid, user_id=current_user.id).first_or_404() + db.session.delete(c) + db.session.commit() + flash("Collection deleted.", "info") + return redirect(url_for("collections_index")) + + +@app.route("/collections/share/") +def collection_share(token): + c = Collection.query.filter_by(share_token=token).first_or_404() + return render_template("collection_share.html", collection=c, + listings=c.get_listings()) + + +@app.route("/tours", methods=["GET"]) +@login_required +def tours_list(): + rows = (Tour.query.filter_by(user_id=current_user.id) + .order_by(Tour.requested_at.desc()).all()) + return render_template("tours.html", tours=rows) + + +@app.route("/tour/", methods=["GET", "POST"]) +@login_required +def tour_request(listing_id): + L = Listing.query.get_or_404(listing_id) + if request.method == "POST": + tour_date = (request.form.get("date") or "").strip() + tour_time = (request.form.get("time") or "").strip() + tour_type = (request.form.get("tour_type") or "in-person").strip() + try: + if date.fromisoformat(tour_date).isoformat() != tour_date: + raise ValueError + if tour_time not in TOUR_TIMES or tour_type not in {"in-person", "video"}: + raise ValueError + except ValueError: + flash("Choose a valid date, time and tour type.", "warning") + return render_template("tour_request.html", listing=L), 400 + t = Tour( + user_id=current_user.id, listing_id=L.id, + requested_date=tour_date, + requested_time=tour_time, + tour_type=tour_type, + contact_phone=(request.form.get("phone") or current_user.phone), + notes=(request.form.get("notes") or "").strip(), + status="requested", + ) + db.session.add(t) + db.session.commit() + flash(f"Tour requested for {L.address} on {t.requested_date}.", "success") + return redirect(url_for("tours_list")) + return render_template("tour_request.html", listing=L) + + +@app.route("/tour//cancel", methods=["POST"]) +@login_required +def tour_cancel(tour_id): + t = Tour.query.filter_by(id=tour_id, user_id=current_user.id).first_or_404() + t.status = "cancelled" + db.session.commit() + flash("Tour cancelled.", "info") + return redirect(url_for("tours_list")) + + +@app.route("/inquiries", methods=["GET"]) +@login_required +def inquiries_list(): + rows = (Inquiry.query.filter_by(user_id=current_user.id) + .order_by(Inquiry.sent_at.desc()).all()) + return render_template("inquiries.html", inquiries=rows) + + +@app.route("/inquiry/", methods=["GET", "POST"]) +def inquiry_send(listing_id): + L = Listing.query.get_or_404(listing_id) + if request.method == "POST": + uid = current_user.id if current_user.is_authenticated else None + name = (request.form.get("name") or (current_user.name if uid else "")).strip() + email = (request.form.get("email") or (current_user.email if uid else "")).strip().lower() + message = (request.form.get("message") or "").strip() + if not name or len(name) > 120 or not valid_email(email) or not message or len(message) > 10000: + flash("Enter your name, a valid email address and a message (up to 10,000 characters).", "warning") + return render_template("inquiry_send.html", listing=L), 400 + i = Inquiry( + user_id=uid, listing_id=L.id, agent_id=L.agent_id, + name=name, + email=email, + phone=(request.form.get("phone") or ""), + subject=(request.form.get("subject") or + f"Inquiry about {L.address}"), + message=message, + ) + db.session.add(i) + db.session.commit() + flash("Your message has been sent.", + "success") + if uid: + return redirect(url_for("inquiries_list")) + return redirect(url_for("listing_detail", slug=L.slug)) + return render_template("inquiry_send.html", listing=L) + + +# ─── Misc ────────────────────────────────────────────────────────────────────── + + +@app.route("/_health") +def health(): + return {"ok": True, "site": "compass", + "listings": Listing.query.count(), + "users": User.query.count()} + + +@app.errorhandler(404) +def not_found(e): + return render_template("404.html"), 404 + + +@app.errorhandler(500) +def server_error(e): + return render_template("500.html"), 500 + + +# ─── Boot ────────────────────────────────────────────────────────────────────── + + +from seed_data import seed_database, seed_benchmark_users, seed_neighborhood_guides # noqa: E402 + +with app.app_context(): + db.create_all() + if os.environ.get("COMPASS_SKIP_SEED") != "1": + seed_database() + seed_benchmark_users() + seed_neighborhood_guides() + + +if __name__ == "__main__": + port = int(os.environ.get("PORT", 5000)) + app.run(host="0.0.0.0", port=port, debug=False) diff --git a/sites/compass/docs/environment-validation.json b/sites/compass/docs/environment-validation.json new file mode 100644 index 00000000..452658f4 --- /dev/null +++ b/sites/compass/docs/environment-validation.json @@ -0,0 +1,495 @@ +{ + "checked_at": "2026-09-06T12:19:40.426071+00:00", + "code_sha": "3cdc0b66d72b8a789b89583176c668081de36852", + "base_sha": "90afddb6d4af382935ded9a385f2eead604188cf", + "asset_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "image": "sha256:beecc26599f47c15498c7a3b3dd3e055a02f4e46a0b5cfff33a276fbbbea68fc", + "homepages": [ + { + "port": 40000, + "status": 200, + "bytes": 40839 + }, + { + "port": 40001, + "status": 200, + "bytes": 36820 + }, + { + "port": 40002, + "status": 200, + "bytes": 16340 + }, + { + "port": 40003, + "status": 200, + "bytes": 25664 + }, + { + "port": 40004, + "status": 200, + "bytes": 55466 + }, + { + "port": 40005, + "status": 200, + "bytes": 37652 + }, + { + "port": 40006, + "status": 200, + "bytes": 35063 + }, + { + "port": 40007, + "status": 200, + "bytes": 30851 + }, + { + "port": 40008, + "status": 200, + "bytes": 30566 + }, + { + "port": 40009, + "status": 200, + "bytes": 4441 + }, + { + "port": 40010, + "status": 200, + "bytes": 22558 + }, + { + "port": 40011, + "status": 200, + "bytes": 18288 + }, + { + "port": 40012, + "status": 200, + "bytes": 9516 + }, + { + "port": 40013, + "status": 200, + "bytes": 35823 + }, + { + "port": 40014, + "status": 200, + "bytes": 37269 + }, + { + "port": 40015, + "status": 200, + "bytes": 8796 + }, + { + "port": 40016, + "status": 200, + "bytes": 19544 + }, + { + "port": 40017, + "status": 200, + "bytes": 22540 + }, + { + "port": 40018, + "status": 200, + "bytes": 31253 + }, + { + "port": 40019, + "status": 200, + "bytes": 11839 + } + ], + "reset_all": { + "seconds": 1.672393583999792, + "response": { + "ok": true, + "sites": { + "allrecipes": { + "pid": 2847, + "ready": true, + "site": "allrecipes" + }, + "amazon": { + "pid": 2851, + "ready": true, + "site": "amazon" + }, + "apple": { + "pid": 2852, + "ready": true, + "site": "apple" + }, + "arxiv": { + "pid": 2863, + "ready": true, + "site": "arxiv" + }, + "bbc_news": { + "pid": 2855, + "ready": true, + "site": "bbc_news" + }, + "booking": { + "pid": 2850, + "ready": true, + "site": "booking" + }, + "cambridge_dictionary": { + "pid": 2859, + "ready": true, + "site": "cambridge_dictionary" + }, + "compass": { + "pid": 2864, + "ready": true, + "site": "compass" + }, + "coursera": { + "pid": 2854, + "ready": true, + "site": "coursera" + }, + "espn": { + "pid": 2853, + "ready": true, + "site": "espn" + }, + "github": { + "pid": 2870, + "ready": true, + "site": "github" + }, + "google_flights": { + "pid": 2886, + "ready": true, + "site": "google_flights" + }, + "google_map": { + "pid": 2862, + "ready": true, + "site": "google_map" + }, + "google_search": { + "pid": 2856, + "ready": true, + "site": "google_search" + }, + "huggingface": { + "pid": 2857, + "ready": true, + "site": "huggingface" + }, + "ikea": { + "pid": 2858, + "ready": true, + "site": "ikea" + }, + "merriam_webster": { + "pid": 2860, + "ready": true, + "site": "merriam_webster" + }, + "phys_org": { + "pid": 2861, + "ready": true, + "site": "phys_org" + }, + "target": { + "pid": 2865, + "ready": true, + "site": "target" + }, + "wolfram_alpha": { + "pid": 2849, + "ready": true, + "site": "wolfram_alpha" + } + } + }, + "files": [ + { + "site": "allrecipes", + "file": "allrecipes.db", + "seed_sha256": "f7fb72df1725b5a581272f84039322b1568cb810e5eb0feaf3d17685c79e18e3", + "live_sha256": "f7fb72df1725b5a581272f84039322b1568cb810e5eb0feaf3d17685c79e18e3", + "byte_equal": true + }, + { + "site": "amazon", + "file": "amazon_store.db", + "seed_sha256": "0e59f07bb5712272a51b34bd317edb0ffa1a73afba4bff37e261776f8ad54bfd", + "live_sha256": "0e59f07bb5712272a51b34bd317edb0ffa1a73afba4bff37e261776f8ad54bfd", + "byte_equal": true + }, + { + "site": "apple", + "file": "apple_store.db", + "seed_sha256": "2779d9f785ffb791f44d09a9325e7ef3ee0a4549af2dd02c6e2583aebeb7d701", + "live_sha256": "2779d9f785ffb791f44d09a9325e7ef3ee0a4549af2dd02c6e2583aebeb7d701", + "byte_equal": true + }, + { + "site": "arxiv", + "file": "arxiv.db", + "seed_sha256": "8200977bb46d485054158870fb80d832bcc69f0f75b9a884f11ee0a9bf99591b", + "live_sha256": "8200977bb46d485054158870fb80d832bcc69f0f75b9a884f11ee0a9bf99591b", + "byte_equal": true + }, + { + "site": "bbc_news", + "file": "bbc_news.db", + "seed_sha256": "01e0bb0458b7924b63d278dfea484bc618667e7f2d1af75297de6b5126c85bfa", + "live_sha256": "01e0bb0458b7924b63d278dfea484bc618667e7f2d1af75297de6b5126c85bfa", + "byte_equal": true + }, + { + "site": "booking", + "file": "booking.db", + "seed_sha256": "1e8d36b71965e647c79e752656964aa54aacead4fd07a17ec6269aeddae7def3", + "live_sha256": "1e8d36b71965e647c79e752656964aa54aacead4fd07a17ec6269aeddae7def3", + "byte_equal": true + }, + { + "site": "cambridge_dictionary", + "file": "cambridge.db", + "seed_sha256": "efcc24df62fe8ee51377e3e86df516d4e6c64bf4d8e9bfaa021799b20e4290f7", + "live_sha256": "efcc24df62fe8ee51377e3e86df516d4e6c64bf4d8e9bfaa021799b20e4290f7", + "byte_equal": true + }, + { + "site": "cambridge_dictionary", + "file": "cambridge.db.bak.harden", + "seed_sha256": "5a0ae0688d20d7c90d910799044c860c6f1ec4f2c274e6458ee49e54fd94821d", + "live_sha256": "5a0ae0688d20d7c90d910799044c860c6f1ec4f2c274e6458ee49e54fd94821d", + "byte_equal": true + }, + { + "site": "compass", + "file": "compass.db", + "seed_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "live_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "byte_equal": true + }, + { + "site": "coursera", + "file": "coursera.db", + "seed_sha256": "76746607f533cf02eb3adb42d8d113242992ce3c3509c9531b8c83fb208a178c", + "live_sha256": "76746607f533cf02eb3adb42d8d113242992ce3c3509c9531b8c83fb208a178c", + "byte_equal": true + }, + { + "site": "espn", + "file": "espn.db", + "seed_sha256": "8ad86c752bca2ea1af41b691e5f9abf100d6298e87f3f9a0c4b90647f434aa46", + "live_sha256": "8ad86c752bca2ea1af41b691e5f9abf100d6298e87f3f9a0c4b90647f434aa46", + "byte_equal": true + }, + { + "site": "github", + "file": "github_mirror.db", + "seed_sha256": "2b3cce7f3cda760a32301809ff3710632246b726e76552849d51630b54632d4c", + "live_sha256": "2b3cce7f3cda760a32301809ff3710632246b726e76552849d51630b54632d4c", + "byte_equal": true + }, + { + "site": "google_flights", + "file": "google_flights.db", + "seed_sha256": "846d9b649dcc6110e599d653d8f14c1e893fde8dcc1b0c03d6e13a8e4ace78c7", + "live_sha256": "846d9b649dcc6110e599d653d8f14c1e893fde8dcc1b0c03d6e13a8e4ace78c7", + "byte_equal": true + }, + { + "site": "google_map", + "file": "gmaps.db", + "seed_sha256": "0e47e42cf76b084883e1f440b642b49418057b53b6f07a0511f313ab814d2f96", + "live_sha256": "0e47e42cf76b084883e1f440b642b49418057b53b6f07a0511f313ab814d2f96", + "byte_equal": true + }, + { + "site": "google_search", + "file": "google_search.db", + "seed_sha256": "1850ec7f0f8a600dc738aa5883068f23a74df3f65d5a9955a72cee63560b4ca2", + "live_sha256": "1850ec7f0f8a600dc738aa5883068f23a74df3f65d5a9955a72cee63560b4ca2", + "byte_equal": true + }, + { + "site": "huggingface", + "file": "hf.db", + "seed_sha256": "3c1179c08c7ce9e9edff585a53f8cfcf61e5aaaaa4c031f8993e070f1d3ac87d", + "live_sha256": "3c1179c08c7ce9e9edff585a53f8cfcf61e5aaaaa4c031f8993e070f1d3ac87d", + "byte_equal": true + }, + { + "site": "ikea", + "file": "ikea.db", + "seed_sha256": "334a83f7d24b04d001f2df775151b174c33c40c03b7e0d23113c6c1f0ef7f515", + "live_sha256": "334a83f7d24b04d001f2df775151b174c33c40c03b7e0d23113c6c1f0ef7f515", + "byte_equal": true + }, + { + "site": "merriam_webster", + "file": "merriam_webster.db", + "seed_sha256": "ff6dff56dd646ff1ace0729170c9a25962aea7b75f2a473bf8bbac7a89d25668", + "live_sha256": "ff6dff56dd646ff1ace0729170c9a25962aea7b75f2a473bf8bbac7a89d25668", + "byte_equal": true + }, + { + "site": "phys_org", + "file": ".gitkeep", + "seed_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "live_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "byte_equal": true + }, + { + "site": "phys_org", + "file": "phys_org.db", + "seed_sha256": "494716e1a3e6b8db011ba51da3d602de91179becb7e6ed9a9c8e6c9ef912e7fa", + "live_sha256": "494716e1a3e6b8db011ba51da3d602de91179becb7e6ed9a9c8e6c9ef912e7fa", + "byte_equal": true + }, + { + "site": "target", + "file": "._target.db", + "seed_sha256": "53ba45c57284eb9de60ee45bae1d664f5713b95e8e427e289e361e18c1ebc3b0", + "live_sha256": "53ba45c57284eb9de60ee45bae1d664f5713b95e8e427e289e361e18c1ebc3b0", + "byte_equal": true + }, + { + "site": "target", + "file": "target.db", + "seed_sha256": "cb9665e278b4fe24cb9dfd2f60316c26ae6af3d49553f392c2821c2088a6cd57", + "live_sha256": "cb9665e278b4fe24cb9dfd2f60316c26ae6af3d49553f392c2821c2088a6cd57", + "byte_equal": true + }, + { + "site": "wolfram_alpha", + "file": "wolfram_alpha.db", + "seed_sha256": "e3ca295cf4e0609f09309dd4b2cbb990dc4c39a1b856a9213019bda13343da37", + "live_sha256": "e3ca295cf4e0609f09309dd4b2cbb990dc4c39a1b856a9213019bda13343da37", + "byte_equal": true + } + ] + }, + "sites": { + "allrecipes": { + "alive": true, + "pid": 2847, + "port": 40000 + }, + "amazon": { + "alive": true, + "pid": 2851, + "port": 40001 + }, + "apple": { + "alive": true, + "pid": 2852, + "port": 40002 + }, + "arxiv": { + "alive": true, + "pid": 2863, + "port": 40003 + }, + "bbc_news": { + "alive": true, + "pid": 2855, + "port": 40004 + }, + "booking": { + "alive": true, + "pid": 2850, + "port": 40005 + }, + "cambridge_dictionary": { + "alive": true, + "pid": 2859, + "port": 40012 + }, + "compass": { + "alive": true, + "pid": 2864, + "port": 40019 + }, + "coursera": { + "alive": true, + "pid": 2854, + "port": 40013 + }, + "espn": { + "alive": true, + "pid": 2853, + "port": 40014 + }, + "github": { + "alive": true, + "pid": 2870, + "port": 40006 + }, + "google_flights": { + "alive": true, + "pid": 2886, + "port": 40007 + }, + "google_map": { + "alive": true, + "pid": 2862, + "port": 40008 + }, + "google_search": { + "alive": true, + "pid": 2856, + "port": 40009 + }, + "huggingface": { + "alive": true, + "pid": 2857, + "port": 40010 + }, + "ikea": { + "alive": true, + "pid": 2858, + "port": 40016 + }, + "merriam_webster": { + "alive": true, + "pid": 2860, + "port": 40015 + }, + "phys_org": { + "alive": true, + "pid": 2861, + "port": 40017 + }, + "target": { + "alive": true, + "pid": 2865, + "port": 40018 + }, + "wolfram_alpha": { + "alive": true, + "pid": 2849, + "port": 40011 + } + }, + "current_port_regression": { + "run_set": "guided-003-durable", + "task_count": 16, + "results": "validation.json", + "all_before_after_reset_snapshots_retained": true + }, + "historical_build_check": { + "code_sha": "3cdc0b66d72b8a789b89583176c668081de36852", + "checked_at": "2026-09-06T11:29:17.149583+00:00", + "reset_seconds": 2.9569199589896016, + "raw_bundle_status": "Lost in host reboot; structured report survived in Git." + }, + "build_reuse_note": "Existing image from 3cdc0b6 restarted after host reboot. Later app runtime/UI/data files unchanged; scorer changes ran offline. Standalone requirements now add email-validator 2.2.0 already present in this Docker image." +} diff --git a/sites/compass/docs/homepage-review.md b/sites/compass/docs/homepage-review.md new file mode 100644 index 00000000..58d8f799 --- /dev/null +++ b/sites/compass/docs/homepage-review.md @@ -0,0 +1,136 @@ +> Subsequent [Concierge/directory follow-up](landing-review.md) uses application `25b8b33` and a newer asset pin. Homepage evidence below retains its named historical versions. + +# Homepage and navigation reconstruction + +Current application commit `82b591593ab739465b9bf8a0216dd2d174105599` adds a source-measured tablet correction to the reconstruction below. Asset revision is now `5b66b757121ab34ee8199824a0b5a856e0612336`. This follow-up corrects the 768–1023px layout and shared neighborhood image shading/captions. The original 390px task 17 execution stays frozen at `9741284`; current UI checks and reuse scope are separately recorded below. + +Application commit `9741284932adbcb309cf30f0c1de1dfc93ca6063` replaces the incomplete homepage/navigation in candidate `e55721b`. The earlier Sell follow-up did not resolve the overall source structure. This correction follows the public Compass homepage observed on September 6, 2026; screenshots record URL, time, viewport and scroll position in [the evidence manifest](homepage-validation.json). + +## Tablet follow-up and final responsive checks + +The actual 815 × 833 owner viewport exposed defects missed by the earlier overflow-only check. The source uses a 500px hero, two 371.5px card columns with 24px gaps, a promotion in the first row’s right slot, two stacked 300px Concierge photos, two neighborhood columns, collapsed city/market links and three equal footer columns. These structures are now reproduced. The original tablet Concierge photo is cached locally. Shared neighborhood overlays now use the measured 60% black and captions start 40px from the top. + +At 815px, the candidate’s Concierge section starts at y=2058.48 versus source y=2054.03; its section height matches at 875.39px. Dynamic listing content and minor text/icon differences remain. This is measured UI review, not human acceptance. + +These comparisons use the same viewport, loaded fonts, closed navigation and matched scroll positions. **Before in this section is 9741284**, which had already improved desktop/mobile; after is 82b5915. Older comparisons below retain their explicitly named historical versions. + +### Tablet hero + +| Original | Before (9741284) | After (82b5915) | +|---|---|---| +|![source](visual-review/home/source-tablet-closed-top-815.jpg)|![before](visual-review/home/before-tablet-top-815.jpg)|![after](visual-review/home/owner-final-tablet-top-815.jpg)| + +### Tablet services + +| Original | Before (9741284) | After (82b5915) | +|---|---|---| +|![source](visual-review/home/source-tablet-closed-services-815.jpg)|![before](visual-review/home/before-tablet-services-815.jpg)|![after](visual-review/home/owner-final-tablet-services-815.jpg)| + +### Tablet neighborhoods + +| Original | Before (9741284) | After (82b5915) | +|---|---|---| +|![source](visual-review/home/source-tablet-neighborhoods-815.jpg)|![before](visual-review/home/before-tablet-neighborhoods-815.jpg)|![after](visual-review/home/owner-final-tablet-neighborhoods-815.jpg)| + +### Tablet city and market directory + +| Original | Before (9741284) | After (82b5915) | +|---|---|---| +|![source](visual-review/home/source-tablet-markets-matched-815.jpg)|![before](visual-review/home/before-tablet-markets-815.jpg)|![after](visual-review/home/owner-final-tablet-markets-matched-815.jpg)| + +### Final navigation and adjacent-width checks + +| State | Evidence | +|---|---| +| Original tablet menu | ![source menu](visual-review/home/source-tablet-top-815.jpg) | +| Candidate tablet menu | ![menu](visual-review/home/final-tablet-menu-815.jpg) | +| Cities expanded | ![cities](visual-review/home/final-tablet-cities-open-815.jpg) | +| City destination | ![destination](visual-review/home/final-tablet-city-destination-815.jpg) | +| Final desktop services | ![desktop](visual-review/home/final-home-services-1440.jpg) | +| Final mobile neighborhood shading | ![mobile](visual-review/home/final-home-neighborhoods-390.jpg) | + +- Current real-browser measurements at 390, 768, 815, 1024 and 1440px showed loaded fonts and no horizontal overflow. Cards were one/two/two/three/three columns; hero heights were 380/500/500/600/600px. The tablet city disclosure revealed 20 links; the Manhattan link opened its local listing page. The menu opened and closed with working controls. +- Incremental image `wh-review025:82b5915` (`sha256:ed41f1ac4d0ad42374eb25e3363a5ff5b1c7057c0d0a10a4cb1fda97fa0b281f`) contains five matching changed runtime files. All 20 homepages returned 200; Compass reset took 0.357s and restored the seed byte-for-byte. No repeated full clean fetch or reset-all test. +- The 168 tests at `9741284` are reused: app handlers, tasks, JS, account/footer controls and verifiers are unchanged (25 protected paths checked). The frozen 390px task 17 path uses homepage/footer, Luxury, search and details. Tablet geometry and its new photo do not apply at 390px; shared neighborhood shading/caption changes affect a section outside that execution. No task 17 screenshot or environment identity was rewritten. Its independent frozen-execution review remains pending; it does not certify this UI. +- Twenty additional viewport images and their dimensions, timestamps, scroll positions, hashes and version identities are recorded under `tablet_followup` in the evidence manifest. + +## What changed + +- Restored the source hero at 600px desktop / 380px mobile, using the original desktop, tablet and mobile photography and Compass typography. +- Replaced the six-card grid/mobile horizontal strip with five property cards plus a promotion on desktop, and three cards plus the promotion vertically on mobile. Gallery arrows now change the local property photo. +- Added the mortgage banner and Concierge before/after block, including separate stacked mobile images. Replaced generic city tiles and the extra Luxury block with the six original neighborhood banners. +- Restored all three header dropdown groups and the 315px mobile drawer, including local Coming Soon and Private Exclusives catalogs based on recorded source status. Coming Soon is not inferred from the New Listings flag. +- Restored popular-city/market and footer link groups, mobile disclosure controls, and a working mobile sign-out action. Existing local authentication, account writes, search and property data remain functional. + +## Deliberate differences and remaining limits + +The catalog is a fixed real-data snapshot rather than live personalized recommendations. No live private-inventory count, target-specific answer fields, or generated property facts were added. Local authentication uses synthetic accounts. The footer identifies the mirror rather than asserting Compass brokerage or financial credentials. + +This is **not a complete compass.com replica**. Current Developments, recruitment, mortgage and corporate services open their original sites. The local Concierge page is informational; regional entries expose available snapshot listings and link to the original guides. They do not replicate every source landing page or service. The live map and previously documented listing/agent coverage limits remain. These limits are disclosed for review, not treated as human acceptance. + +## Original / before / after + +All images below are actual viewport captures with verified dimensions. The original's dynamic properties differ from the local snapshot. Scroll positions are matched for the six comparisons. Click an image to inspect its full resolution. + +### Desktop hero + +| Original | Before | After | +|---|---|---| +|![source](visual-review/home/source-home-top-1440.jpg)|![before](visual-review/home/before-home-top-1440.jpg)|![after](visual-review/home/after-home-top-1440.jpg)| + +### Desktop property cards + +| Original | Before | After | +|---|---|---| +|![source](visual-review/home/source-home-listings-1440.jpg)|![before](visual-review/home/before-home-listings-1440.jpg)|![after](visual-review/home/after-home-listings-1440.jpg)| + +### Desktop services / neighborhoods + +| Original | Before | After | +|---|---|---| +|![source](visual-review/home/source-home-services-1440.jpg)|![before](visual-review/home/before-home-services-1440.jpg)|![after](visual-review/home/after-home-services-1440.jpg)| + +### Mobile hero + +| Original | Before | After | +|---|---|---| +|![source](visual-review/home/source-home-top-390.jpg)|![before](visual-review/home/before-home-top-390.jpg)|![after](visual-review/home/after-home-top-390.jpg)| + +### Mobile menu + +| Original | Before | After | +|---|---|---| +|![source](visual-review/home/source-menu-390.jpg)|![before](visual-review/home/before-menu-390.jpg)|![after](visual-review/home/after-menu-390.jpg)| + +### Mobile services + +| Original | Before | After | +|---|---|---| +|![source](visual-review/home/source-home-services-390.jpg)|![before](visual-review/home/before-home-services-390.jpg)|![after](visual-review/home/after-home-services-390.jpg)| + +### Expanded navigation and lower-page coverage + +The missing Development/Agents groups had no equivalent expanded state in the old page. Their before-state is shown in the homepage and mobile-menu comparisons above. + +| State | Original | After | +|---|---|---| +| menu-exclusives-1440 | ![original](visual-review/home/source-menu-exclusives-1440.jpg) | ![after](visual-review/home/after-menu-exclusives-1440.jpg) | +| menu-development-1440 | ![original](visual-review/home/source-menu-development-1440.jpg) | ![after](visual-review/home/after-menu-development-1440.jpg) | +| menu-agents-1440 | ![original](visual-review/home/source-menu-agents-1440.jpg) | ![after](visual-review/home/after-menu-agents-1440.jpg) | +| home-concierge-390 | ![original](visual-review/home/source-home-concierge-390.jpg) | ![after](visual-review/home/after-home-concierge-390.jpg) | +| home-neighborhoods-390 | ![original](visual-review/home/source-home-neighborhoods-390.jpg) | ![after](visual-review/home/after-home-neighborhoods-390.jpg) | +| home-markets-1440 | ![original](visual-review/home/source-home-markets-1440.jpg) | ![after](visual-review/home/after-home-markets-1440.jpg) | +| home-footer-1440 | ![original](visual-review/home/source-home-footer-1440.jpg) | ![after](visual-review/home/after-home-footer-1440.jpg) | + +## Verification and evidence reuse + +- **168 tests passed**: 44 application/source checks and 124 verifier regressions. Added behavioral coverage for source-status catalog classification and read-only marketing routes. +- **91 local homepage links/assets returned HTTP 200**. Real-browser checks covered 1440px/390px layouts, a 768px overflow check, all three dropdown groups, Escape closing, mobile drawer, city/footer disclosures, property-gallery controls, and synthetic-account login/logout. +- Incremental image `wh-review025:9741284` (`sha256:cb7ec326ec839124a3b374efe62882c91e398f5b8436dd393f8fba2c9f7774b8`), built on the verified prior 20-site image; 29 changed runtime files match checkout and image. All 20 site homepages returned HTTP 200. Compass reset completed in 0.365s and restored the seed byte-for-byte. This is an incremental build check, not a repeated clean full asset-fetch build or reset-all test. +- Task **Compass--17** was freshly executed from the new mobile footer through Luxury, search/filtering and property details: **8 real steps / 16 screenshots**, deterministic PASS, before/after DB byte-identical. [Complete trajectory](visual-review/home/task17/trajectory.json), [observations](visual-review/home/task17/observations), [state hashes](visual-review/home/task17/state-manifest.json), [verifier result](visual-review/home/task17/verifier-result.json). Its refreshed independent review is pending. +- The earlier 16-task, 268-screenshot packet and Claude verdict stay frozen at their original versions. The other 15 task definitions, data, detail/account handlers and graders are unchanged; the shared entry points were rechecked. This follow-up does **not** claim sixteen new executions or a Claude verdict for the new UI. +- Human visual acceptance remains pending; the PR stays Draft. Passing tasks or tests is not a visual acceptance result. + +## Asset pin + +[HF asset PR #53](https://huggingface.co/datasets/ChilleD/WebHarbor/discussions/53), current immutable revision `5b66b757121ab34ee8199824a0b5a856e0612336`. `compass.tar.gz`: 184,324,763 bytes, SHA-256 `903b9bbb6018d4a08a22e24510499769cd7f0956f983b047de3e9bcc4a7eb6b2`. One tablet photograph was added to e063074; all 2,429 prior files, including the seed, are byte-identical. The other 19 site archives are unchanged. The earlier homepage phase added 16 assets to `421ca6`. Source URLs/hashes are in [visual_sources.json](../visual_sources.json). diff --git a/sites/compass/docs/homepage-validation.json b/sites/compass/docs/homepage-validation.json new file mode 100644 index 00000000..eebca686 --- /dev/null +++ b/sites/compass/docs/homepage-validation.json @@ -0,0 +1,1883 @@ +{ + "at": "2026-09-06T15:47:28.128027+00:00", + "application_commit": "9741284932adbcb309cf30f0c1de1dfc93ca6063", + "previous_candidate": "e55721b5eb9bd814910dcb3895a665558d730276", + "asset_revision": "e06307429dca76a8a7240d507ab69be9e5b84060", + "archive": { + "archive_sha256": "efb06acf7d9780eaa60349e3586b4de95ab2ae16c64d2c75da0ec771635e387c", + "archive_bytes": 184252671, + "asset_base_revision": "421ca6a529b88bdd214ecf6308d124798ab1e20b", + "unchanged_prior_files": 2413, + "added_files": 16, + "preserved_compressed_prefix_bytes": 182822930, + "seed_sha256": "caa262ea5752016618c56e9bf01842257523cf8dae3ea25c57f719d61d7ce40f" + }, + "runtime": { + "at": "2026-09-06T15:44:04.392088+00:00", + "source_commit": "9741284932adbcb309cf30f0c1de1dfc93ca6063", + "build": "incremental Docker overlay on previously built 20-site image", + "base_image": "sha256:1ff949307c1e0fbe1200a9ee0e92bc38bc8d48b6fa4aec0a4c3226d230eed0d5", + "candidate_image": "sha256:cb7ec326ec839124a3b374efe62882c91e398f5b8436dd393f8fba2c9f7774b8", + "runtime_files": { + "app.py": "9a3fcd5499e360084637a17a8e5ba0ff09295a09076e1935ca73480a24b9fb26", + "static/css/home.css": "49d8e24ec1a8be39fefb96511e41886dd904f6b66e3b7cccc48b16ed23d7089e", + "static/css/navigation.css": "eebbb1a847565806c08ca6a712690462a3696704e0c9ac9c8ecdce741d725d86", + "static/external_cache/home-appstore.png": "dd0eb8e5c9fc20fe3924d14409c42036d0cf92e6f8b25f468dae187584e831ad", + "static/external_cache/home-concierge-after.jpg": "a4b5fa03c7e16cfd9eaaa7fb1cc1d998e4be1c1aca4e477e011f58ffef3be7ed", + "static/external_cache/home-concierge-before.jpg": "c4eee7f983eb190a04971a62c89a12f8c80f31fbc34449345b24203861465cfd", + "static/external_cache/home-concierge-desktop.jpg": "5c71734dcc1f2a33a5d7a6ddcb53ab9a2cafc0dfb5c4b09cfb526ef714a8d9a6", + "static/external_cache/home-hero-desktop.jpg": "fc3f83a2d774cce82f59de5edce9bf5f1cabf983e54c79488ed56e3bdce685d6", + "static/external_cache/home-hero-mobile.jpg": "fac9caa5ee811fa38cb4fffc37b70da6b94ea45ef9c15ea31bb15e88b56678e2", + "static/external_cache/home-hero-tablet.jpg": "07af38d47be7456623936b01e85493b80ead3c0c11b5fc744f1ef342252c773b", + "static/external_cache/home-mortgage.png": "f5a508ada211c8395caf612733e85dab54166543aa9c84197ff612b35aa15971", + "static/external_cache/home-neighborhood-boston.jpg": "108f1cd5c42c610151290d92ca6a61cf2b59f69380bfc17c82f6ef8a08d59d1e", + "static/external_cache/home-neighborhood-dc.jpg": "7b857c0e299ad9bcfc52bcab7f13b7f01f7400d7688a9648eda967708e6a6ca5", + "static/external_cache/home-neighborhood-hamptons.jpg": "dde78ae24f4cee1be8c3fb79dd8686dbf2fe007c3c2958031f78f9ba3e77c543", + "static/external_cache/home-neighborhood-la.jpg": "7080319f60a36237d08c37d2481afd01048812c99734a19e7c8bbf43d4fe259a", + "static/external_cache/home-neighborhood-miami.jpg": "0b7e26371289120e63d0a5d8040cc4fb468a6afda833c9989a1129a8582a9390", + "static/external_cache/home-neighborhood-nyc.jpg": "1b8283369c25853ba2f9ff0b4bdf0a65732cf152b0431c5e2ef0fe12ba3beb99", + "static/external_cache/home-playstore.png": "c616230f5c421976b54e3e74ff2ca6dfae14b33c3cf0f261df196538881fbd59", + "static/external_cache/home-private-exclusives.svg": "6dace1a24cc63504e47ce06938368d1d70e34c66f5243f73ded9365011837f95", + "static/js/compass.js": "ab736909c1fc6cff1ead1b3c5759a02c041a924d809d3ef9c1e5b3511fef435d", + "templates/_footer.html": "1fad5c09187442ccec2dbef355da40b3e753ab3769849ea751b9db7373667a10", + "templates/_home_card.html": "a6da374c43e170d8be158c5839f687ff220b8a2d115c113b655118e7580afd81", + "templates/_navigation.html": "63c8ddfb653fb9837a94f4baecfd2bda0f0a6018d747d06e9a5c9ab07acc0923", + "templates/base.html": "e2172cbecb85e353d3a9ba8b6fae36f507a4499e9e521616090431714d5f9266", + "templates/concierge.html": "77e487ef472f49bded20935f2fd9e16ca84920badc50a4045c5432faa2fd76bd", + "templates/index.html": "852aa74f5378e155e00fb9baaaf2fcfc17822ab3c798b7daa2b22adc862cc511", + "templates/listing_collection.html": "58ad7305d69432be4ca58c11a75d98bc3207bd020752669e0996107ad2fbfbc1", + "templates/neighborhoods.html": "50f724134782d8a80988696f43a54a137b89d194f5f053fdc1abacbcf8992748", + "templates/sell.html": "c52249ea03712f4fe45939f6d2f9ffbcd268648a4df89d8a76ffe213af764c3c" + }, + "test_container_files_match": true, + "health": { + "ok": true, + "sites": { + "allrecipes": { + "alive": true, + "pid": 49, + "port": 40000 + }, + "amazon": { + "alive": true, + "pid": 50, + "port": 40001 + }, + "apple": { + "alive": true, + "pid": 51, + "port": 40002 + }, + "arxiv": { + "alive": true, + "pid": 52, + "port": 40003 + }, + "bbc_news": { + "alive": true, + "pid": 53, + "port": 40004 + }, + "booking": { + "alive": true, + "pid": 54, + "port": 40005 + }, + "cambridge_dictionary": { + "alive": true, + "pid": 61, + "port": 40012 + }, + "compass": { + "alive": true, + "pid": 68, + "port": 40019 + }, + "coursera": { + "alive": true, + "pid": 62, + "port": 40013 + }, + "espn": { + "alive": true, + "pid": 63, + "port": 40014 + }, + "github": { + "alive": true, + "pid": 55, + "port": 40006 + }, + "google_flights": { + "alive": true, + "pid": 56, + "port": 40007 + }, + "google_map": { + "alive": true, + "pid": 57, + "port": 40008 + }, + "google_search": { + "alive": true, + "pid": 58, + "port": 40009 + }, + "huggingface": { + "alive": true, + "pid": 59, + "port": 40010 + }, + "ikea": { + "alive": true, + "pid": 65, + "port": 40016 + }, + "merriam_webster": { + "alive": true, + "pid": 64, + "port": 40015 + }, + "phys_org": { + "alive": true, + "pid": 66, + "port": 40017 + }, + "target": { + "alive": true, + "pid": 67, + "port": 40018 + }, + "wolfram_alpha": { + "alive": true, + "pid": 60, + "port": 40011 + } + } + }, + "homepages": [ + { + "port": 40000, + "status": 200 + }, + { + "port": 40001, + "status": 200 + }, + { + "port": 40002, + "status": 200 + }, + { + "port": 40003, + "status": 200 + }, + { + "port": 40004, + "status": 200 + }, + { + "port": 40005, + "status": 200 + }, + { + "port": 40006, + "status": 200 + }, + { + "port": 40007, + "status": 200 + }, + { + "port": 40008, + "status": 200 + }, + { + "port": 40009, + "status": 200 + }, + { + "port": 40010, + "status": 200 + }, + { + "port": 40011, + "status": 200 + }, + { + "port": 40012, + "status": 200 + }, + { + "port": 40013, + "status": 200 + }, + { + "port": 40014, + "status": 200 + }, + { + "port": 40015, + "status": 200 + }, + { + "port": 40016, + "status": 200 + }, + { + "port": 40017, + "status": 200 + }, + { + "port": 40018, + "status": 200 + }, + { + "port": 40019, + "status": 200 + } + ], + "reset_compass": { + "pid": 203, + "ready": true, + "site": "compass" + }, + "reset_seconds": 0.3651598340002238, + "live_seed_byte_equal": true, + "runtime_seed_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979" + }, + "tests": { + "app_and_source": 44, + "verifier_regressions": 124, + "total": 168, + "result": "PASS" + }, + "local_home_links_and_assets": [ + { + "path": "/", + "status": 200 + }, + { + "path": "/about", + "status": 200 + }, + { + "path": "/agents", + "status": 200 + }, + { + "path": "/coming-soon/listings/", + "status": 200 + }, + { + "path": "/concierge/", + "status": 200 + }, + { + "path": "/help", + "status": 200 + }, + { + "path": "/homes-for-rent", + "status": 200 + }, + { + "path": "/homes-for-sale", + "status": 200 + }, + { + "path": "/homes-for-sale/beverly-hills-ca/", + "status": 200 + }, + { + "path": "/homes-for-sale/brooklyn-ny/", + "status": 200 + }, + { + "path": "/homes-for-sale/chicago-il/", + "status": 200 + }, + { + "path": "/homes-for-sale/los-angeles-ca/", + "status": 200 + }, + { + "path": "/homes-for-sale/manhattan-ny/", + "status": 200 + }, + { + "path": "/homes-for-sale/miami-fl/", + "status": 200 + }, + { + "path": "/homes-for-sale/naples-fl/", + "status": 200 + }, + { + "path": "/homes-for-sale/oakland-ca/", + "status": 200 + }, + { + "path": "/homes-for-sale/pasadena-ca/", + "status": 200 + }, + { + "path": "/homes-for-sale/philadelphia-pa/", + "status": 200 + }, + { + "path": "/homes-for-sale/port-st-lucie-fl/", + "status": 200 + }, + { + "path": "/homes-for-sale/queens-ny/", + "status": 200 + }, + { + "path": "/homes-for-sale/sacramento-ca/", + "status": 200 + }, + { + "path": "/homes-for-sale/san-antonio-tx/", + "status": 200 + }, + { + "path": "/homes-for-sale/san-diego-ca/", + "status": 200 + }, + { + "path": "/homes-for-sale/san-francisco-ca/", + "status": 200 + }, + { + "path": "/homes-for-sale/san-jose-ca/", + "status": 200 + }, + { + "path": "/homes-for-sale/santa-rosa-ca/", + "status": 200 + }, + { + "path": "/homes-for-sale/seattle-wa/", + "status": 200 + }, + { + "path": "/homes-for-sale/washington-dc/", + "status": 200 + }, + { + "path": "/listing/1718-occidental-boulevard-los-angeles-ca-11068225", + "status": 200 + }, + { + "path": "/listing/1915-malcolm-avenue-unit-301-los-angeles-ca-15997937", + "status": 200 + }, + { + "path": "/listing/425-west-24th-street-unit-1f-new-york-ny-47919969", + "status": 200 + }, + { + "path": "/listing/8550-ridpath-drive-los-angeles-ca-87131737", + "status": 200 + }, + { + "path": "/listing/undisclosed-address-los-angeles-ca-12555729", + "status": 200 + }, + { + "path": "/login", + "status": 200 + }, + { + "path": "/luxury", + "status": 200 + }, + { + "path": "/neighborhood-guides/", + "status": 200 + }, + { + "path": "/neighborhood-guides/boston/", + "status": 200 + }, + { + "path": "/neighborhood-guides/dc/", + "status": 200 + }, + { + "path": "/neighborhood-guides/hamptons/", + "status": 200 + }, + { + "path": "/neighborhood-guides/la/", + "status": 200 + }, + { + "path": "/neighborhood-guides/miami/", + "status": 200 + }, + { + "path": "/neighborhood-guides/nyc/", + "status": 200 + }, + { + "path": "/private-exclusives/", + "status": 200 + }, + { + "path": "/register", + "status": 200 + }, + { + "path": "/search?compass_exclusive=1", + "status": 200 + }, + { + "path": "/search?status=sold", + "status": 200 + }, + { + "path": "/sell/", + "status": 200 + }, + { + "path": "/sell/?origin=sellTab", + "status": 200 + }, + { + "path": "/sitemap/az/", + "status": 200 + }, + { + "path": "/sitemap/ca/", + "status": 200 + }, + { + "path": "/sitemap/co/", + "status": 200 + }, + { + "path": "/sitemap/ct/", + "status": 200 + }, + { + "path": "/sitemap/dc/", + "status": 200 + }, + { + "path": "/sitemap/fl/", + "status": 200 + }, + { + "path": "/sitemap/ga/", + "status": 200 + }, + { + "path": "/sitemap/il/", + "status": 200 + }, + { + "path": "/sitemap/la/", + "status": 200 + }, + { + "path": "/sitemap/ma/", + "status": 200 + }, + { + "path": "/sitemap/md/", + "status": 200 + }, + { + "path": "/sitemap/ms/", + "status": 200 + }, + { + "path": "/sitemap/nj/", + "status": 200 + }, + { + "path": "/sitemap/ny/", + "status": 200 + }, + { + "path": "/sitemap/pa/", + "status": 200 + }, + { + "path": "/sitemap/tn/", + "status": 200 + }, + { + "path": "/sitemap/tx/", + "status": 200 + }, + { + "path": "/sitemap/va/", + "status": 200 + }, + { + "path": "/sitemap/wa/", + "status": 200 + }, + { + "path": "/static/css/compass.css", + "status": 200 + }, + { + "path": "/static/css/home.css", + "status": 200 + }, + { + "path": "/static/css/navigation.css", + "status": 200 + }, + { + "path": "/static/external_cache/home-appstore.png", + "status": 200 + }, + { + "path": "/static/external_cache/home-concierge-after.jpg", + "status": 200 + }, + { + "path": "/static/external_cache/home-concierge-before.jpg", + "status": 200 + }, + { + "path": "/static/external_cache/home-concierge-desktop.jpg", + "status": 200 + }, + { + "path": "/static/external_cache/home-hero-desktop.jpg", + "status": 200 + }, + { + "path": "/static/external_cache/home-mortgage.png", + "status": 200 + }, + { + "path": "/static/external_cache/home-neighborhood-boston.jpg", + "status": 200 + }, + { + "path": "/static/external_cache/home-neighborhood-dc.jpg", + "status": 200 + }, + { + "path": "/static/external_cache/home-neighborhood-hamptons.jpg", + "status": 200 + }, + { + "path": "/static/external_cache/home-neighborhood-la.jpg", + "status": 200 + }, + { + "path": "/static/external_cache/home-neighborhood-miami.jpg", + "status": 200 + }, + { + "path": "/static/external_cache/home-neighborhood-nyc.jpg", + "status": 200 + }, + { + "path": "/static/external_cache/home-playstore.png", + "status": 200 + }, + { + "path": "/static/external_cache/home-private-exclusives.svg", + "status": 200 + }, + { + "path": "/static/icons/compass_logo.svg", + "status": 200 + }, + { + "path": "/static/images/listings/2077841444615997937/hero.webp", + "status": 200 + }, + { + "path": "/static/images/listings/2090750718311068225/hero.webp", + "status": 200 + }, + { + "path": "/static/images/listings/2092310202112555729/hero.webp", + "status": 200 + }, + { + "path": "/static/images/listings/2092966052787131737/hero.webp", + "status": 200 + }, + { + "path": "/static/images/listings/2103184068747919969/hero.webp", + "status": 200 + }, + { + "path": "/static/js/compass.js", + "status": 200 + } + ], + "protected_inputs": [ + { + "path": "sites/compass/tasks.jsonl", + "sha256": "e0c2d0b758eb3d1bed09fa2beb0821bb5d0163ceea059017b5bfdf6adcc29cdf" + }, + { + "path": "sites/compass/source_data.json", + "sha256": "5b5eed3757d49fa1bd5ad93a12b40271eb2a98397eba88e03194cc40a34333a1" + }, + { + "path": "sites/compass/listings_clean.json", + "sha256": "67eab5fa1d8eeac7482cb8892e198727142ddda4f98dc259ffd84b5ee94b17ca" + }, + { + "path": "sites/compass/gallery_sources.json", + "sha256": "2894f3707956c8d921db2b9ef686cdb3fca135bac1989c22745a6e7d75d580f4" + }, + { + "path": "sites/compass/verify/test_verifiers.py", + "sha256": "8e66ad3d6c4aedcef32d5fd0408e0c5e92f460d98e276ce8e06704d0ac753284" + }, + { + "path": "sites/compass/verify/verify_0.py", + "sha256": "e15845424af0b4818b34574083c8429069a11e8f17d955f238995524ed04f027" + }, + { + "path": "sites/compass/verify/verify_1.py", + "sha256": "06267ab38617d947c17962b31a139b8c7405e96dbf4ce72810021b98b2bddcc4" + }, + { + "path": "sites/compass/verify/verify_10.py", + "sha256": "56e5921d51cafd8ae8a3f2ee7df911ed4120cac7ac6d2e404119882df28bec1a" + }, + { + "path": "sites/compass/verify/verify_11.py", + "sha256": "73c9ae435a92e89f8e95f0ccc272c61361ecd34219b4322eb432b77753aea5b1" + }, + { + "path": "sites/compass/verify/verify_12.py", + "sha256": "9290820050be2e9270b77c6eb2032c95df2d1295787523b0b154dd1c1c7c6b55" + }, + { + "path": "sites/compass/verify/verify_13.py", + "sha256": "c2da8396b73dc62d97a32ff3d834f396310f0fd1bd07e2de29dee4df7686be9c" + }, + { + "path": "sites/compass/verify/verify_14.py", + "sha256": "ad6142516d21c51d5eb3bb2a588341bd4195b25b28c38d101c1f3d4111d78eaa" + }, + { + "path": "sites/compass/verify/verify_15.py", + "sha256": "1801ed6b1c535c28cf40d266de8d48e9413d03f1856c534dbfcd926a8eb87467" + }, + { + "path": "sites/compass/verify/verify_16.py", + "sha256": "2686433661b7daa4085cc042643242ffd49e1202b187a10ea9ad72f7dbab7045" + }, + { + "path": "sites/compass/verify/verify_17.py", + "sha256": "a4fe40522a34be33dbb9d2d939f86ac1b98657e5ae8537e3414237dd7433408f" + }, + { + "path": "sites/compass/verify/verify_2.py", + "sha256": "d32d791ba62e92869a8bf532cd55fd727a7419f4b3bda083f1074b428f11bf0f" + }, + { + "path": "sites/compass/verify/verify_3.py", + "sha256": "55a58ab16602b8f1a018d8d1af4d1f66afae4f7b40e42859d4152e1347ce5aa7" + }, + { + "path": "sites/compass/verify/verify_4.py", + "sha256": "0384175f158ab24aeeda7a777ebc9008c63244c789356b54acb806c9a034a361" + }, + { + "path": "sites/compass/verify/verify_5.py", + "sha256": "3846905f0d4e78681d15a2c4691d09ba90bf5dec8d41a6f4aa3360748db7b322" + }, + { + "path": "sites/compass/verify/verify_6.py", + "sha256": "95530e261faee14dbc60b494a640f1dd1c001dc66f523c04356376b22deb1d20" + }, + { + "path": "sites/compass/verify/verify_7.py", + "sha256": "174ae34dd129855688ead1ea7d7d07c3380c423edbde48d22957ae6b2df71910" + }, + { + "path": "sites/compass/verify/verify_lib.py", + "sha256": "78b0afaf0df5620fd7b0ae5f3c900fe845b1a24e005787a8ed4bb3f58c452476" + }, + { + "path": "sites/compass/verify/facts.json", + "sha256": "01ef9bb18373cd7009325b37175430f302270f85eedeb24a63609cf3912092b7" + } + ], + "screenshots": [ + { + "path": "visual-review/home/after-home-concierge-390.jpg", + "sha256": "48ef108e02079cceb744a78b3d2d1ad7b3f1836b884a37bf56ef06bc3ac72bdb", + "bytes": 62765, + "width": 390, + "height": 844, + "at": "2026-09-06T15:36:53.860Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 2785, + "url": "http://localhost:42019/", + "viewport": { + "height": 844, + "width": 390 + } + }, + { + "path": "visual-review/home/after-home-footer-1440.jpg", + "sha256": "21f306459cf3f09f54c0444daf8cb17dca8b09aaacad5f60ff6809f23d4abc24", + "bytes": 61173, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:37:09.946Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 3420, + "url": "http://localhost:42019/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/after-home-listings-1440.jpg", + "sha256": "799758a13dc519779ede7e249eee874ff2875ff46e436d425138d33e7f763965", + "bytes": 187644, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:37:08.680Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 900, + "url": "http://localhost:42019/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/after-home-markets-1440.jpg", + "sha256": "f1782c97dcbf130538110ff5ff91d5574c6a7cbd803d13d61a85fe5f0694525f", + "bytes": 103068, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:37:09.512Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 2520, + "url": "http://localhost:42019/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/after-home-neighborhoods-390.jpg", + "sha256": "0de10b62575e8378b6dd25efb7338179ee8078197e75b397ce35d9a0393bd419", + "bytes": 48498, + "width": 390, + "height": 844, + "at": "2026-09-06T15:36:54.271Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 3629, + "url": "http://localhost:42019/", + "viewport": { + "height": 844, + "width": 390 + } + }, + { + "path": "visual-review/home/after-home-services-1440.jpg", + "sha256": "20c4005e638249279f8e4f011b8049af4e9c243a3aee2eee4e83b58adb9c5a1a", + "bytes": 147260, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:37:09.121Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 1620, + "url": "http://localhost:42019/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/after-home-services-390.jpg", + "sha256": "887f8bc5f4811edc12836e6ccd51415071d543c12aeb5e740ed00c7dcc28b823", + "bytes": 46594, + "width": 390, + "height": 844, + "at": "2026-09-06T15:36:27.892Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 1941, + "url": "http://localhost:42019/", + "viewport": { + "height": 844, + "width": 390 + } + }, + { + "path": "visual-review/home/after-home-top-1440.jpg", + "sha256": "900af674062ec4f9088e7e1fb32bc7910f8c085cd12efa6ca128b2a26ce71bc9", + "bytes": 218161, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:47:13.625Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/after-home-top-390.jpg", + "sha256": "e74eea08e51a21cedc9f76536888d7d81d3eeb145f5b587a2e71b95d8e17dd1f", + "bytes": 70125, + "width": 390, + "height": 844, + "at": "2026-09-06T15:35:06.012Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/", + "viewport": { + "height": 844, + "width": 390 + } + }, + { + "path": "visual-review/home/after-menu-390.jpg", + "sha256": "1a70e105f6c7205483857eaf7864f78eb20018a99fb83ef90d3fd7f56e82552f", + "bytes": 31234, + "width": 390, + "height": 844, + "at": "2026-09-06T15:32:46.388Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/", + "viewport": { + "height": 844, + "width": 390 + } + }, + { + "path": "visual-review/home/after-menu-agents-1440.jpg", + "sha256": "c469f59f70e8c392925ec9b3baad49e22a48dfcf721818dc2d0f3b4996dd12c4", + "bytes": 214509, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:26:31.488Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/after-menu-development-1440.jpg", + "sha256": "8524f301223a57bda7287d55896a6d6668f21f10fbffa025f05b39e6b512279b", + "bytes": 214982, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:26:31.090Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/after-menu-exclusives-1440.jpg", + "sha256": "f3a7024913bfb74d9b0fdbbe00f36098ac3d204555da5ded9343d0248fd31fb3", + "bytes": 217068, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:26:30.622Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/before-home-listings-1440.jpg", + "sha256": "a39c1fe2cd1ad85123469c7624a77766ab030891f64d87c7ff1a03fb93d459c5", + "bytes": 193739, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:13:18.469Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 900, + "url": "http://localhost:40019/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/before-home-services-1440.jpg", + "sha256": "3390e90a46cb19866c31cbede4c58f2b12fa15b78a065a0cc438effa739d0db0", + "bytes": 183119, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:13:18.832Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 1620, + "url": "http://localhost:40019/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/before-home-services-390.jpg", + "sha256": "e638f89f6373d15a4c1e427cd57af06eaa18361fa37ffe57cc689defda242d55", + "bytes": 41830, + "width": 390, + "height": 844, + "at": "2026-09-06T15:39:57.097Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 1941, + "url": "http://localhost:40019/", + "viewport": { + "height": 844, + "width": 390 + } + }, + { + "path": "visual-review/home/before-home-top-1440.jpg", + "sha256": "c951620a1f91683c3ffb8f7a11a7ce7e15b9b70469f2258f008068c6e7f5b588", + "bytes": 269507, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:13:18.058Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/before-home-top-390.jpg", + "sha256": "1c4c80202f45fac7a6dc534829d5eaa8a6d4415a90dd651783faed7b98ea5e42", + "bytes": 73938, + "width": 390, + "height": 844, + "at": "2026-09-06T15:13:32.477Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/", + "viewport": { + "height": 844, + "width": 390 + } + }, + { + "path": "visual-review/home/before-menu-390.jpg", + "sha256": "d6886fc0a668e64723395a82d34f5d221180f865df8ad6ee39905addfad58d51", + "bytes": 28212, + "width": 390, + "height": 844, + "at": "2026-09-06T15:13:32.962Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/", + "viewport": { + "height": 844, + "width": 390 + } + }, + { + "path": "visual-review/home/source-home-concierge-390.jpg", + "sha256": "860acc40b12db58e28bae3941a90c50111d53522cad2727839dbb7f38074e2ff", + "bytes": 54135, + "width": 390, + "height": 844, + "at": "2026-09-06T15:39:45.767Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 2785, + "url": "https://www.compass.com/", + "viewport": { + "height": 844, + "width": 390 + } + }, + { + "path": "visual-review/home/source-home-footer-1440.jpg", + "sha256": "8deb990fd8e76cdfdc8e60452666115b22fcbc4be594a1f754c9fcb8300e1bbe", + "bytes": 176597, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:09:20.728Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 3420, + "url": "https://www.compass.com/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/source-home-listings-1440.jpg", + "sha256": "139191f4704345221579c625e97845e5837fec027338f75bf2baf6750dac9d10", + "bytes": 156549, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:08:24.364Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 900, + "url": "https://www.compass.com/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/source-home-markets-1440.jpg", + "sha256": "294538fe1698eedc0648a7d511431dd56e7ca6c5cdd2fb8f04df7eb0220ba7fa", + "bytes": 92579, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:09:20.039Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 2520, + "url": "https://www.compass.com/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/source-home-neighborhoods-390.jpg", + "sha256": "8acece8908d4f96851e4408440774f0bffa31eab08885d3e38fc0a09359b3096", + "bytes": 44314, + "width": 390, + "height": 844, + "at": "2026-09-06T15:39:46.081Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 3629, + "url": "https://www.compass.com/", + "viewport": { + "height": 844, + "width": 390 + } + }, + { + "path": "visual-review/home/source-home-services-1440.jpg", + "sha256": "72dab5711d03c774f0f370f5354640c4ee18453a606c47980d7186d1eccbdf29", + "bytes": 137014, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:08:24.887Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 1620, + "url": "https://www.compass.com/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/source-home-services-390.jpg", + "sha256": "24213cbcbf95864541d4b2dc29de5b267a54b8a57cee810834927397360c855e", + "bytes": 47266, + "width": 390, + "height": 844, + "at": "2026-09-06T15:39:45.284Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 1941, + "url": "https://www.compass.com/", + "viewport": { + "height": 844, + "width": 390 + } + }, + { + "path": "visual-review/home/source-home-top-1440.jpg", + "sha256": "d260269a9fd6ddad3b313d793ed24c504086f507d8bd5a3b1ff18c3d143a293b", + "bytes": 206157, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:08:13.279Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/source-home-top-390.jpg", + "sha256": "70c6ce12b947f0721d6136d7ac3ff7ee6195e050c3a697d2f230c31076db63e4", + "bytes": 63413, + "width": 390, + "height": 844, + "at": "2026-09-06T15:10:27.553Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/", + "viewport": { + "height": 844, + "width": 390 + } + }, + { + "path": "visual-review/home/source-menu-390.jpg", + "sha256": "bde5675d86f2ff825d45c3b8d2e8298075f7da0e88163277d61d6cbe1b13255d", + "bytes": 29170, + "width": 390, + "height": 844, + "at": "2026-09-06T15:10:28.022Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/", + "viewport": { + "height": 844, + "width": 390 + } + }, + { + "path": "visual-review/home/source-menu-agents-1440.jpg", + "sha256": "b754624d50515f1dc9e7f2fe0712bd403528d39ce13fa4c377c9f9af3c58b969", + "bytes": 204497, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:07:57.817Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/source-menu-development-1440.jpg", + "sha256": "92684d66367769195929f8586fca13498bb50b02112f2e75de2adf16bb5d5b2f", + "bytes": 204135, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:07:57.324Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/source-menu-exclusives-1440.jpg", + "sha256": "80afadcd13d3f644ec20041eb4df4bd985fed7bc58703921944504389c297599", + "bytes": 206784, + "width": 1440, + "height": 900, + "at": "2026-09-06T15:07:56.788Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/", + "viewport": { + "height": 900, + "width": 1440 + } + } + ], + "fresh_task17": { + "run_id": "guided-006-home-nav", + "steps": 8, + "screenshots": 16, + "trajectory_sha256": "bb0dba03a7fc568c5604114fe49e90c67ba874e0c99070e65657b50967e3d568", + "before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "after_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "result": { + "task_id": "Compass--17", + "pass": true, + "reason": "All applicable checks passed", + "evidence": [ + { + "check": "task_identity", + "pass": true, + "detail": "" + }, + { + "check": "local_ui_evidence", + "pass": true, + "detail": "" + }, + { + "check": "final_answer", + "pass": true, + "detail": "" + }, + { + "check": "completed_run", + "pass": true, + "detail": "" + }, + { + "check": "step_screenshot_package", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_users", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_searches", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_listings", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_collections", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_homes", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_cities", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_tours", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_inquiries", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_agents", + "pass": true, + "detail": "" + }, + { + "check": "answer_target_address", + "pass": true, + "detail": "" + }, + { + "check": "target_property_details", + "pass": true, + "detail": "" + }, + { + "check": "answer_agent_name", + "pass": true, + "detail": "" + }, + { + "check": "answer_year_built", + "pass": true, + "detail": "" + } + ] + } + }, + "evidence_limits": [ + "Viewport screenshots only; stitched exports rejected.", + "Original dynamic recommendations differ from the fixed local catalog.", + "Current human visual acceptance and refreshed Claude review are pending.", + "The prior 16-task/268-screenshot packet is retained at its older code/asset version; this is not a new 16-task replay.", + "Current Developments and corporate/financial services remain external. Local Concierge and neighborhood pages are limited introductions/catalog entry points, not complete source landing-page replicas." + ], + "tablet_followup": { + "application_commit": "82b591593ab739465b9bf8a0216dd2d174105599", + "previous_application_commit": "9741284932adbcb309cf30f0c1de1dfc93ca6063", + "asset_revision": "5b66b757121ab34ee8199824a0b5a856e0612336", + "archive": { + "archive_sha256": "903b9bbb6018d4a08a22e24510499769cd7f0956f983b047de3e9bcc4a7eb6b2", + "archive_bytes": 184324763, + "asset_base_revision": "e06307429dca76a8a7240d507ab69be9e5b84060", + "unchanged_prior_files": 2429, + "added_files": 1, + "preserved_compressed_prefix_bytes": 184242644, + "seed_sha256": "caa262ea5752016618c56e9bf01842257523cf8dae3ea25c57f719d61d7ce40f" + }, + "runtime": { + "source_commit": "82b591593ab739465b9bf8a0216dd2d174105599", + "base_image": "sha256:cb7ec326ec839124a3b374efe62882c91e398f5b8436dd393f8fba2c9f7774b8", + "image_tag": "wh-review025:82b5915", + "image_id": "sha256:ed41f1ac4d0ad42374eb25e3363a5ff5b1c7057c0d0a10a4cb1fda97fa0b281f", + "asset_revision": "5b66b757121ab34ee8199824a0b5a856e0612336", + "files": { + "static/css/home.css": "5278aa5b3239962d6c7c93ed69f38534cd46f31f07360d63ad736cf8bd746200", + "static/css/navigation.css": "cfd5ae69c323e2a7c538f226dfd1557114c63463b18e99e7a941373bf630dee2", + "templates/index.html": "5cb30362f336b4cca3cee62fd1682f012adb876b2f50555cb12bbf44d6860761", + "visual_sources.json": "85416d0aa2768552c83e0587e9ac307465623174cb2136c60c8594c30b3c9b62", + "static/external_cache/home-concierge-before-tablet.jpg": "5ec4ffedd30565b4f2ae1ae5df19f4d49dc3e2ae0337f1a1b14bb2be335c59cf" + }, + "at": "2026-09-07T01:24:42.193301+00:00", + "runtime_files_match": true, + "homepage_http": { + "40000": 200, + "40001": 200, + "40002": 200, + "40003": 200, + "40004": 200, + "40005": 200, + "40006": 200, + "40007": 200, + "40008": 200, + "40009": 200, + "40010": 200, + "40011": 200, + "40012": 200, + "40013": 200, + "40014": 200, + "40015": 200, + "40016": 200, + "40017": 200, + "40018": 200, + "40019": 200 + }, + "compass_reset_seconds": 0.3567477079996024, + "reset": { + "pid": 204, + "ready": true, + "site": "compass" + }, + "seed_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "seed_byte_equal": true, + "build_type": "incremental on9741284; no full clean fetch or reset-all repeat" + }, + "breakpoints": [ + { + "cards": "358px", + "cityList": "none", + "cityToggle": "flex", + "conciergeLayout": "block", + "fonts": "loaded", + "footer": "1fr 1fr 2fr", + "headerMenuVisible": "block", + "hero": 380, + "heroImage": "http://localhost:42019/static/external_cache/home-hero-mobile.jpg", + "neighborhood": "358px", + "overflow": false, + "viewport": { + "height": 844, + "width": 390 + } + }, + { + "cards": "348px 348px", + "cityList": "none", + "cityToggle": "flex", + "conciergeLayout": "block", + "fonts": "loaded", + "footer": "224px 224px 224px", + "headerMenuVisible": "block", + "hero": 500, + "heroImage": "http://localhost:42019/static/external_cache/home-hero-tablet.jpg", + "neighborhood": "348px 348px", + "overflow": false, + "viewport": { + "height": 900, + "width": 768 + } + }, + { + "cards": "309.328px 309.336px 309.336px", + "cityList": "grid", + "cityToggle": "none", + "conciergeLayout": "grid", + "fonts": "loaded", + "footer": "232px 232px 464px", + "headerMenuVisible": "block", + "hero": 600, + "heroImage": "http://localhost:42019/static/external_cache/home-hero-tablet.jpg", + "neighborhood": "309.328px 309.336px 309.336px", + "overflow": false, + "viewport": { + "height": 900, + "width": 1024 + } + }, + { + "cards": "358px 358px 358px", + "cityList": "grid", + "cityToggle": "none", + "conciergeLayout": "grid", + "fonts": "loaded", + "footer": "268.5px 268.5px 537px", + "headerMenuVisible": "none", + "hero": 600, + "heroImage": "http://localhost:42019/static/external_cache/home-hero-desktop.jpg", + "neighborhood": "358px 358px 358px", + "overflow": false, + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "cards": "371.5px 371.5px", + "cityList": "none", + "cityToggle": "flex", + "conciergeLayout": "block", + "fonts": "loaded", + "footer": "239.664px 239.664px 239.672px", + "headerMenuVisible": "block", + "hero": 500, + "heroImage": "http://localhost:42019/static/external_cache/home-hero-tablet.jpg", + "neighborhood": "371.5px 371.5px", + "overflow": false, + "viewport": { + "height": 833, + "width": 815 + } + } + ], + "interaction_checks": { + "application_commit": "82b591593ab739465b9bf8a0216dd2d174105599", + "viewport": { + "width": 815, + "height": 833 + }, + "city_expansion": { + "display": "grid", + "expanded": "true", + "links": 20, + "overflow": false + }, + "city_destination": "http://localhost:42019/homes-for-sale/manhattan-ny/", + "city_heading": "Manhattan, NY Homes For Sale", + "menu": "Opened and closed using actual buttons; visible group links and screenshots retained", + "kind": "guided browser UI smoke, not a benchmark trajectory" + }, + "evidence_reuse": { + "from_application_commit": "9741284932adbcb309cf30f0c1de1dfc93ca6063", + "current_application_commit": "82b591593ab739465b9bf8a0216dd2d174105599", + "unchanged_paths": [ + "sites/compass/app.py", + "sites/compass/tasks.jsonl", + "sites/compass/static/js/compass.js", + "sites/compass/templates/_footer.html", + "sites/compass/templates/base.html", + "sites/compass/verify/README.md", + "sites/compass/verify/facts.json", + "sites/compass/verify/test_verifiers.py", + "sites/compass/verify/verify_0.py", + "sites/compass/verify/verify_1.py", + "sites/compass/verify/verify_10.py", + "sites/compass/verify/verify_11.py", + "sites/compass/verify/verify_12.py", + "sites/compass/verify/verify_13.py", + "sites/compass/verify/verify_14.py", + "sites/compass/verify/verify_15.py", + "sites/compass/verify/verify_16.py", + "sites/compass/verify/verify_17.py", + "sites/compass/verify/verify_2.py", + "sites/compass/verify/verify_3.py", + "sites/compass/verify/verify_4.py", + "sites/compass/verify/verify_5.py", + "sites/compass/verify/verify_6.py", + "sites/compass/verify/verify_7.py", + "sites/compass/verify/verify_lib.py" + ], + "changes": "Tablet geometry, responsive photo selection, shared neighborhood image shading/label placement only. The 390px task17 path visits homepage/footer, Luxury, search and detail. Its clicked controls, visible answer fields, routes, JS, data, tasks and grading are unchanged; its frozen version remains9741284, not relabeled as this candidate. The changed neighborhoods were outside that path. Browser checks separately cover current315px menu,815px cities and390/768/1024/1440 layouts.", + "tests_reused": "168 tests at9741284; no new backend, task or verifier change.", + "original_16": "16 guided-003 packets remain at recorded older versions; hashes previously verified." + }, + "screenshots": [ + { + "path": "visual-review/home/before-tablet-markets-815.jpg", + "sha256": "ed8026d70bdc3e1a4c1ea15cdbe73b5104641025609c1d4b15f9433d248ab489", + "bytes": 43235, + "width": 815, + "height": 833, + "application_commit": "9741284932adbcb309cf30f0c1de1dfc93ca6063", + "at": "2026-09-06T16:06:06.047Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 3617, + "url": "http://localhost:40019/", + "viewport": { + "height": 833, + "width": 815 + } + }, + { + "path": "visual-review/home/before-tablet-neighborhoods-815.jpg", + "sha256": "5491c8c0232a51a45eec72e48a6384a51408f68535b134e96721708872f14a39", + "bytes": 73230, + "width": 815, + "height": 833, + "application_commit": "9741284932adbcb309cf30f0c1de1dfc93ca6063", + "at": "2026-09-06T16:04:39.616Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 2832, + "url": "http://localhost:40019/", + "viewport": { + "height": 833, + "width": 815 + } + }, + { + "path": "visual-review/home/before-tablet-services-815.jpg", + "sha256": "a4f24aa287c59a86fc07d2987e33c56b8413f913f07a3c3c28708381e1b6168d", + "bytes": 102880, + "width": 815, + "height": 833, + "application_commit": "9741284932adbcb309cf30f0c1de1dfc93ca6063", + "at": "2026-09-06T16:00:36.802Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 1999, + "url": "http://localhost:40019/", + "viewport": { + "height": 833, + "width": 815 + } + }, + { + "path": "visual-review/home/before-tablet-top-815.jpg", + "sha256": "abcdd45b5a94a0f3683af6286c165cb525c2b909638738cd1634e7309cd93051", + "bytes": 122624, + "width": 815, + "height": 833, + "application_commit": "9741284932adbcb309cf30f0c1de1dfc93ca6063", + "at": "2026-09-06T16:00:21.712Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/", + "viewport": { + "height": 833, + "width": 815 + } + }, + { + "path": "visual-review/home/final-home-neighborhoods-390.jpg", + "sha256": "334a6378ea08645f14bcefb9fb43fdc75c2be016a3b576ccd8fa20c8fda3e65c", + "bytes": 44436, + "width": 390, + "height": 844, + "application_commit": "82b591593ab739465b9bf8a0216dd2d174105599", + "at": "2026-09-07T01:24:01.882Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 3629, + "url": "http://localhost:42019/", + "viewport": { + "height": 844, + "width": 390 + } + }, + { + "path": "visual-review/home/final-home-services-1440.jpg", + "sha256": "9adc22c939a639a4e804b28dcd5cc6ce3b83e7cfb59d34aa3c9ab2db7bd8bc35", + "bytes": 137389, + "width": 1440, + "height": 900, + "application_commit": "82b591593ab739465b9bf8a0216dd2d174105599", + "at": "2026-09-07T01:25:23.424Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 1620, + "url": "http://localhost:42019/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/final-home-top-1440.jpg", + "sha256": "900af674062ec4f9088e7e1fb32bc7910f8c085cd12efa6ca128b2a26ce71bc9", + "bytes": 218161, + "width": 1440, + "height": 900, + "application_commit": "82b591593ab739465b9bf8a0216dd2d174105599", + "at": "2026-09-07T01:25:04.318Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "path": "visual-review/home/final-home-top-390.jpg", + "sha256": "e74eea08e51a21cedc9f76536888d7d81d3eeb145f5b587a2e71b95d8e17dd1f", + "bytes": 70125, + "width": 390, + "height": 844, + "application_commit": "82b591593ab739465b9bf8a0216dd2d174105599", + "at": "2026-09-07T01:23:56.684Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/", + "viewport": { + "height": 844, + "width": 390 + } + }, + { + "path": "visual-review/home/final-tablet-cities-open-815.jpg", + "sha256": "d9dee85466ab9cf4cd04ddcf4da02f1f40d600bd45b3fdcc39c8151ea00ed037", + "bytes": 67800, + "width": 815, + "height": 833, + "application_commit": "82b591593ab739465b9bf8a0216dd2d174105599", + "at": "2026-09-07T01:22:36.964Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 3169, + "url": "http://localhost:42019/", + "viewport": { + "height": 833, + "width": 815 + } + }, + { + "path": "visual-review/home/final-tablet-city-destination-815.jpg", + "sha256": "95ac1f3a5b367655a343849f7685db0fb8a556cf1628308c6eafa07afc50eaed", + "bytes": 80205, + "width": 815, + "height": 833, + "application_commit": "82b591593ab739465b9bf8a0216dd2d174105599", + "at": "2026-09-07T01:22:46.027Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/homes-for-sale/manhattan-ny/", + "viewport": { + "height": 833, + "width": 815 + } + }, + { + "path": "visual-review/home/final-tablet-menu-815.jpg", + "sha256": "6076d1d3a6b6eb8229a1ceeb78ceea6a1b879dc3043b6ad773fa6b7eea43b1d7", + "bytes": 71671, + "width": 815, + "height": 833, + "application_commit": "82b591593ab739465b9bf8a0216dd2d174105599", + "at": "2026-09-07T01:23:20.355Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/", + "viewport": { + "height": 833, + "width": 815 + } + }, + { + "path": "visual-review/home/owner-final-tablet-markets-matched-815.jpg", + "sha256": "e2a16db7da647f2b032b4d230d428654b131d966e15132f3d74ae48286213399", + "bytes": 56100, + "width": 815, + "height": 833, + "application_commit": "82b591593ab739465b9bf8a0216dd2d174105599", + "at": "2026-09-07T01:27:21.755Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 3617, + "url": "http://localhost:40019/", + "viewport": { + "height": 833, + "width": 815 + } + }, + { + "path": "visual-review/home/owner-final-tablet-neighborhoods-815.jpg", + "sha256": "d4d3ec7e7ba4fd6844dc52db759975c39543e636261adecab4cac9bf9a085d34", + "bytes": 84280, + "width": 815, + "height": 833, + "application_commit": "82b591593ab739465b9bf8a0216dd2d174105599", + "at": "2026-09-07T01:26:12.108Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 2832, + "url": "http://localhost:40019/", + "viewport": { + "height": 833, + "width": 815 + } + }, + { + "path": "visual-review/home/owner-final-tablet-services-815.jpg", + "sha256": "77880760dddcdcecaae22642df01bee2ddf200d46e2c39c90595841d6d0daa4b", + "bytes": 83034, + "width": 815, + "height": 833, + "application_commit": "82b591593ab739465b9bf8a0216dd2d174105599", + "at": "2026-09-07T01:25:45.665Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 1999, + "url": "http://localhost:40019/", + "viewport": { + "height": 833, + "width": 815 + } + }, + { + "path": "visual-review/home/owner-final-tablet-top-815.jpg", + "sha256": "c525a9f97f5111f321e413850c66851723640829829b5d060e0c2b13758022a4", + "bytes": 131049, + "width": 815, + "height": 833, + "application_commit": "82b591593ab739465b9bf8a0216dd2d174105599", + "at": "2026-09-07T01:25:31.094Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/", + "viewport": { + "height": 833, + "width": 815 + } + }, + { + "path": "visual-review/home/source-tablet-closed-services-815.jpg", + "sha256": "8ce37c852fbefb8f8744a4b4a575c67bb18ff75c3b9465bb2e46cf4c3a7a6328", + "bytes": 83410, + "width": 815, + "height": 833, + "application_commit": "live source", + "at": "2026-09-06T16:02:57.431Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 1999, + "url": "https://www.compass.com/", + "viewport": { + "height": 833, + "width": 815 + } + }, + { + "path": "visual-review/home/source-tablet-closed-top-815.jpg", + "sha256": "df086139b32d75e8d088b51e972d3e8cb833b307e304924453b68c42e3cbcdd3", + "bytes": 134978, + "width": 815, + "height": 833, + "application_commit": "live source", + "at": "2026-09-06T16:02:45.059Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/", + "viewport": { + "height": 833, + "width": 815 + } + }, + { + "path": "visual-review/home/source-tablet-markets-matched-815.jpg", + "sha256": "b22412c1c1d90f052737aed11b688d796aa6c59d7e2c3baba0e48eb7e499d8a7", + "bytes": 44395, + "width": 815, + "height": 833, + "application_commit": "live source", + "at": "2026-09-07T01:27:21.692Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 3617, + "url": "https://www.compass.com/", + "viewport": { + "height": 833, + "width": 815 + } + }, + { + "path": "visual-review/home/source-tablet-neighborhoods-815.jpg", + "sha256": "52d5d5c62c5cd374544df4dc625602fc1bfe797af4b437a66396522153bde5bb", + "bytes": 85931, + "width": 815, + "height": 833, + "application_commit": "live source", + "at": "2026-09-06T16:04:39.358Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 2832, + "url": "https://www.compass.com/", + "viewport": { + "height": 833, + "width": 815 + } + }, + { + "path": "visual-review/home/source-tablet-top-815.jpg", + "sha256": "59e496e0637e6edc5047a3dbcb9e2a52754b48f3f1328043516db2f2f00c1a36", + "bytes": 70368, + "width": 815, + "height": 833, + "application_commit": "live source", + "at": "2026-09-06T16:00:21.559Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/", + "viewport": { + "height": 833, + "width": 815 + } + } + ], + "limits": "Source dynamic listing content differs. Human visual acceptance remains pending. Original prior32 screenshots and frozen task17 packet remain bound to9741284; no new benchmark execution claimed." + } +} diff --git a/sites/compass/docs/landing-review.md b/sites/compass/docs/landing-review.md new file mode 100644 index 00000000..5b8eb764 --- /dev/null +++ b/sites/compass/docs/landing-review.md @@ -0,0 +1,58 @@ +> This historical 25b8b33 report covers Concierge and the directory index. The later Sell and all24regional-landing implementation is documented in [sell-guides-review.md](sell-guides-review.md). + +# Concierge and neighborhood directory follow-up + +Original contribution: [#25](https://github.com/aiming-lab/WebHarbor/pull/25), **sarendis56 (Peichun Hua)**. Companion review: [#84](https://github.com/aiming-lab/WebHarbor/pull/84). + +Application `25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf` replaces the one-panel Concierge placeholder and six equal-image directory with source-referenced landing pages. It follows the earlier [homepage/navigation reconstruction](homepage-review.md). **Human acceptance and the refreshed independent task17 verdict remain pending; this is still Draft.** + +## Changes and source evidence + +- [Concierge](https://www.compass.com/concierge/): original local MP4 hero, wordmark, measured typography and breakpoints; three marketing phases; four service pillars; all eight source cases with working previous/next controls; original paired before/after photographs; covered services, source-attributed statistics, process, film poster and FAQs. The reading chapter bar replaces the main navigation and its anchors leave the source-measured 120px space. +- [Neighborhood Guides](https://www.compass.com/neighborhood-guides/): all 24 source regions, original photographs/coordinates and city illustration, source ordering and unequal grid spans. The 1170px desktop layout uses a 549×262.5px first tile and 262.5px adjacent tiles with 24px gaps; the 815px view uses two columns, and 390px uses one. The source semibold serif face is now local. +- Fonts, computed styles, section dimensions and responsive behavior were read from the public pages on September 7, 2026. CSS is scoped to the relevant pages; no source scripts or tracking are imported. Media provenance/hashes are in [visual_sources.json](../visual_sources.json). + +At 1440×900 with the Jo Ann case selected, the source/candidate section heights were 630/630px for the hero, 514/514px for the marketing phases, 184.25/184.25px for the pillars, 738.06/738.16px for stories, 569.25/569.25px for covered services and 284/284px for statistics. FAQ text differs where the source contact form is replaced with the explicit service choices below. These measurements and screenshot review are not a claim of complete Compass parity or a human-approved baseline. + +## Original / before / after + +Before is application `82b5915` with HF `5b66b75`; after is `25b8b33` with HF `b09ad95`. All top comparisons use scroll 0, matching viewports and loaded fonts. The official hero is an autoplay video, so its frame varies. Source and after directory captures move the pointer to the heading, away from zoom-on-hover tiles. + +| Page / viewport | Original | Before | After | +|---|---|---|---| +| Concierge · 1440px | ![source-screen-concierge-top-1440](visual-review/landing/source-screen-concierge-top-1440.jpg) | ![before-concierge-top-1440](visual-review/landing/before-concierge-top-1440.jpg) | ![verified-concierge-top-1440](visual-review/landing/verified-concierge-top-1440.jpg) | +| Concierge · 815px | ![source-screen-concierge-top-815](visual-review/landing/source-screen-concierge-top-815.jpg) | ![before-concierge-top-815](visual-review/landing/before-concierge-top-815.jpg) | ![verified-concierge-top-815](visual-review/landing/verified-concierge-top-815.jpg) | +| Concierge · 390px | ![source-screen-concierge-top-390](visual-review/landing/source-screen-concierge-top-390.jpg) | ![before-concierge-top-390](visual-review/landing/before-concierge-top-390.jpg) | ![verified-concierge-top-390](visual-review/landing/verified-concierge-top-390.jpg) | +| Guides · 1440px | ![source-verified-guides-top-1440](visual-review/landing/source-verified-guides-top-1440.jpg) | ![before-guides-top-1440](visual-review/landing/before-guides-top-1440.jpg) | ![verified-guides-top-1440](visual-review/landing/verified-guides-top-1440.jpg) | +| Guides · 815px | ![source-verified-guides-top-815](visual-review/landing/source-verified-guides-top-815.jpg) | ![before-guides-top-815](visual-review/landing/before-guides-top-815.jpg) | ![verified-guides-top-815](visual-review/landing/verified-guides-top-815.jpg) | +| Guides · 390px | ![source-verified-guides-top-390](visual-review/landing/source-verified-guides-top-390.jpg) | ![before-guides-top-390](visual-review/landing/before-guides-top-390.jpg) | ![verified-guides-top-390](visual-review/landing/verified-guides-top-390.jpg) | + +## Additional section and interaction comparisons + +These sections were absent from the previous one-panel page. The same Jo Ann case is selected in the source and candidate. Chapter-scroll offsets match within 0.5px: stories 1780/1780, services 2578/2578, video 4490.5/4491, FAQ 5664.5/5665. UI QA screenshots are separate from benchmark task executions. + +| Section | Original | After | +|---|---|---| +| Stories | ![source-final-concierge-stories-1440](visual-review/landing/source-final-concierge-stories-1440.jpg) | ![verified-concierge-stories-1440](visual-review/landing/verified-concierge-stories-1440.jpg) | +| Services | ![source-final-concierge-services-1440](visual-review/landing/source-final-concierge-services-1440.jpg) | ![verified-concierge-services-1440](visual-review/landing/verified-concierge-services-1440.jpg) | +| Video | ![source-final-concierge-video-1440](visual-review/landing/source-final-concierge-video-1440.jpg) | ![verified-concierge-video-1440](visual-review/landing/verified-concierge-video-1440.jpg) | +| Faq | ![source-final-concierge-faq-1440](visual-review/landing/source-final-concierge-faq-1440.jpg) | ![verified-concierge-faq-1440](visual-review/landing/verified-concierge-faq-1440.jpg) | + +## Intentional boundaries and remaining work + +Concierge's lead/financing form is replaced by **Find an Agent** (the existing local directory) and **Contact Compass online ↗**. No contact details are collected locally and no fake success message is shown. Three case videos and the main film have explicit YouTube links; paired case photographs and the hero MP4 work locally. The YouTube case cards therefore differ from the online embedded previews. + +The directory index is reproduced, but full regional/neighborhood editorial pages are not. The six existing regional links still show local listing snapshots with a link to the original guide; the other 18 links explicitly open Compass. Previously disclosed Sell, live-map, agent-service and external workflow limits remain. These functional boundaries are not answer-leak safeguards. + +Benchmark differences are preserved separately: no detail answers are added to search cards, no external facts are invented, authentication/accounts stay local and the seed remains unchanged. + +## Validation and evidence reuse + +- 168 application/source/verifier tests passed during this repair (44 application/source, 124 verifier). Subsequent typography, chapter positioning and explicit-link refinements were checked in the browser and by the local URL sweep. Tests alone do not establish visual quality. +- A fresh container from `wh-review025:25b8b33` (`sha256:00e81abe6ab152954199d338ca65b42b60c8457a2e866b3941b2a1bef63712aa`) matched all 47 changed file hashes. All 20 site homepages and 69 local routes/media URLs returned 200. Compass reset took 0.722s and restored the runtime seed byte-for-byte. This is an incremental image on the verified prior image; no new full clean-fetch/reset-all claim is made. +- The final browser run visited all eight case states, verified one visible case at a time and wrap to Julia, exercised mobile next/previous, and opened the local agent CTA. Desktop, tablet and mobile screenshots showed loaded fonts and no horizontal overflow. The existing NYC local guide destination was also opened during the preview. +- HF [PR #53](https://huggingface.co/datasets/ChilleD/WebHarbor/discussions/53) now pins `b09ad95ac9428d5f98e1dc6206f1fa5f87aec671`. Archive: **192,209,798 bytes**, SHA-256 `ced1411f5d86992ee07a55b98c3b8660ec548f204e0602c1a90d0fe0436f4b98`. It adds 38 original media/font/SVG files; all 2,430 prior files including seed and the other 19 site archives are unchanged. Neither public PR was merged. +- 63 protected files are byte-identical to `82b5915`; AST comparison found only the `neighborhoods` handler changed (loading the directory data). Existing task handlers, templates, facts, tasks, core JS and verifiers are unchanged. The base-template changes apply only to Concierge and neighborhood pages. +- The original 16 frozen trajectories and the `9741284` task17 packet retain their original code/assets and verdict identities. This change does not add a new benchmark run or claim their independent verdict covers the new pages. The fresh task17 independent verdict remains pending. + +[Machine-readable validation](landing-validation.json) includes all 26 unaltered viewport images' hashes, timestamps, URLs, dimensions, scroll positions, source/asset identities, runtime checks and the reuse inventory. Deep after images were captured in a preview overlay whose 47 files were independently hash-matched to the final image; final top images came from the rebuilt image. Private workflow documents and raw databases are not included. diff --git a/sites/compass/docs/landing-validation.json b/sites/compass/docs/landing-validation.json new file mode 100644 index 00000000..418b05ee --- /dev/null +++ b/sites/compass/docs/landing-validation.json @@ -0,0 +1,1142 @@ +{ + "application_commit": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "asset_revision": "b09ad95ac9428d5f98e1dc6206f1fa5f87aec671", + "asset_archive": { + "archive_sha256": "ced1411f5d86992ee07a55b98c3b8660ec548f204e0602c1a90d0fe0436f4b98", + "archive_bytes": 192209798, + "asset_base_revision": "5b66b757121ab34ee8199824a0b5a856e0612336", + "unchanged_prior_files": 2430, + "added_files": 38, + "preserved_compressed_prefix_bytes": 184310277, + "seed_sha256": "caa262ea5752016618c56e9bf01842257523cf8dae3ea25c57f719d61d7ce40f" + }, + "runtime": { + "source_commit": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "asset_revision": "b09ad95ac9428d5f98e1dc6206f1fa5f87aec671", + "base_image": "sha256:ed41f1ac4d0ad42374eb25e3363a5ff5b1c7057c0d0a10a4cb1fda97fa0b281f", + "image_tag": "wh-review025:25b8b33", + "files": { + "app.py": "408f39b909160312bc6c931d5dd8c3e1796b4933cb0eb9037558a62055d63d9d", + "templates/base.html": "a1b7539dad37982890af517cc3d8a6917ad3dd02485428afee39c24291621898", + "templates/concierge.html": "cebc6c030c7e16077712ddbc3d45536039976121253d98a6e91999d54a2812e2", + "templates/neighborhoods.html": "52360c6d755f70caef11df6963992f4cb4ca02f2908b5897a2d5b426ea14a78c", + "static/css/concierge.css": "183fbd6718789f21e4809c9b96479f98eeab1fb7fa71a5e498def52207005cd0", + "static/css/neighborhoods.css": "2753e5dc2e3d6bb24802186c318f58b3fb4120517c38f2c0d9271175ecc1f2b0", + "static/js/concierge.js": "3b2fe7e8cb4376f35afd6b3947701e98f05af35c06f6e1bf2f7766392285e0e1", + "neighborhood_regions.json": "8b5e8f4842153af355d268d15f3d99de05f3e2920eb87e1ce770225caed7fb78", + "visual_sources.json": "d16309be83d18071bb50543d4387a4388e14848d9392fc689f28abb71ca6ccaf", + "static/external_cache/concierge-living-room---before.jpg": "21c68a9b84d2530205fe69a96149a08fd201faa782b7ecd0895b68b90e1fabcb", + "static/external_cache/concierge-living-room---after.jpg": "ef15c23b25e5f8dfbaafcd055203fc211335c30890047153c9776023d3373462", + "static/external_cache/concierge-d85-2822-edit.jpg": "9fa1baca03f264f07659c25baeeb29e9dc59136c3eb4730963d01c008cf37016", + "static/external_cache/concierge-after-1.jpg": "bb82dd7e331a4c5c540bf7cb30e05cfc882c611f5a471d77845491fe253a2b6b", + "static/external_cache/concierge-before-1.jpg": "1c97cfa7f48fcc373d22a6d76b004fe2a90412e3e6367fa99fd30deb6ed52b70", + "static/external_cache/concierge-scott-before.jpg": "89aae7f20a32186a0b29f2e80f7f41432a9ff8043f7ee83f468bc4646e53f89c", + "static/external_cache/concierge-scott-after.jpg": "353f6c6a500119c082beead61e6a24bd2881c6b66561d68ecded0dfff9c27988", + "static/external_cache/concierge-sarah-before.jpg": "d1846a05e52ce0b9be838a1a4d2eccc8a012c30b2698803c9e6e1b76cac634d6", + "static/external_cache/concierge-copy-of-17---kelly-resnick.jpg": "b88f844f98ae129898842fb73558664a5739c0f019b3ec293d7b72bd3e792af5", + "static/external_cache/concierge-fpoconcierge-1.jpg": "69ef7cca7e11a506a3a41bfda7e064424faa0e49eecb1e5ff37900d09c4324c3", + "static/external_cache/concierge-concierge-thumb-new.jpg": "012c43b951659f83400edadfa0719489d4ad8909bc257a871a3f2e5191571716", + "static/external_cache/concierge-concierge-hero.mp4": "fa5c240da390be941ac677125dca5c5920124a59667d68b2f27c4e2bd522f0af", + "static/external_cache/guide-nyc-geo.webp": "9af5ab01d21de10e4361777f92a5e15af4b590bb1d1b0e35b368383d60d29387", + "static/external_cache/guide-boston-geo.webp": "9dc00470f1fa1dd5204d4892d8ed5cc2e65800883937ce8a6370ae3f38834acc", + "static/external_cache/guide-miami-geo.webp": "8499d68cb8dcb013c94a0794a320d4a3a143934be24c3ea8c5e7360a922a67ba", + "static/external_cache/guide-aspen-geo.webp": "c27615db24d623a0f961f541e5015aed9a053f45e7638e5493faca08150dd60c", + "static/external_cache/guide-dc-geo.webp": "14f6baa084c34a63e250988f414d29481057bd8551a8b42efb529e6874b79a70", + "static/external_cache/guide-santabarbara-geo.webp": "ee9db1661e869408d97536ecb80b22763eb20645cb4a2f65c9e7fb65e211e2b7", + "static/external_cache/guide-hamptons-geo.webp": "6f1201d68a7884a6f35302d885ae4a3ba21eaa22a9c0f7074867b0e177689c3a", + "static/external_cache/guide-la-geo.webp": "8401351e795b342dd2520cbeda2ea7fca25025f1d65580bc751191439358229d", + "static/external_cache/guide-sf---geo--1-.webp": "e74af27dd27e610abe2eb4b73c69f698a3fed49ddc27b37b2e663e5fc0642a68", + "static/external_cache/guide-westchester-market-mosaic-tile.webp": "197d2f64b266da9a1ba00c978ba8b1c6bfaa1f4a9c086ff57cc07c8c2255d334", + "static/external_cache/guide-naplesneighborhoodguidebanner.webp": "2dc1c514d16c07d066e8f07195b4717a28a8e6a439dbff4a14f094d659a2b767", + "static/external_cache/guide-chicago-thumbnail.webp": "4c48eb693b4601ed9f589eda0d3480549d72b8d30597ca191784ecdacbe00cd9", + "static/external_cache/guide-greenwich-thumbnail-geo.webp": "302aee42e79a99143e4c70775d1812d0ef13b2349e5e5237842f4472fa5a7f26", + "static/external_cache/guide-philadelphia-geo-mosaic.webp": "bc72a29c2b4fba6134de86d339bf03739002c99990764b4484d3c2a2237c7548", + "static/external_cache/guide-ca---san-diego---la-jolla---112.webp": "1b2b84695358526d2d7cd15186b1a87876f42ac98166d4977d8072c534b01f26", + "static/external_cache/guide-austion-geo-tile.webp": "32bb540ad31850faba6b3da966ffe4eced4979957481cb9ebd7eaf8f5c6ba27b", + "static/external_cache/guide-atlanta-geo-tile.webp": "1b48d130b01787d1261877e8def272306a616394e561b79a578a56be19761d39", + "static/external_cache/guide-seattle-geomosaic-tile.webp": "3414b0a399daf631a3b7d09312847442ebe321c95919c1f20f1e69724c7f5f89", + "static/external_cache/guide-houston-geo-mosaic.webp": "ad336283a4805bec1d1b247a48ca9df4a20e49f8c766948bea8d240e03566c92", + "static/external_cache/guide-dallas-market-module--mosaic-grid-markets-.webp": "6968682946fcef860da5d01c3ed44a4d49e527f0f0a7312307e526cbe69c0f9c", + "static/external_cache/guide-nc---charlotte---marketing-imagery---6.webp": "5ed4dd3e4ea2d9f76fc9ffe0ac49cd15ee80aa1d92da09b111fdcdd5cf114285", + "static/external_cache/guide-nc---raleigh---marketing-image---14.webp": "426a27509d4492eaff8ec037934f51857bd79b8df46f55c37cfd32651ba0ea0f", + "static/external_cache/guide-compass-web-3.webp": "6590f6f14c71b4e050538e8b5338b5a94adc2f8dbed550514fb994f911ca0dee", + "static/external_cache/guide-in---indianapolis---marketing-image---4.webp": "b05c5473056d9c129437b47bd05c95a84a20daa02bfcf32b0bea524b721224d5", + "static/external_cache/guide-cityscape.svg": "16d0a9154def1c0e29334f1dbb5a0346bdc40204e23c1d3b45cb79545f616679", + "static/external_cache/CompassSerif-SemiBold.woff2": "679d2332d6adf0eea88f09b2dfbc63bf6534497da03a9292f1031ebb652d9217" + }, + "image_id": "sha256:00e81abe6ab152954199d338ca65b42b60c8457a2e866b3941b2a1bef63712aa", + "at": "2026-09-07T04:21:35.276093+00:00", + "container": "wh-review025-landing-built", + "runtime_files_match": true, + "homepage_http": { + "40000": 200, + "40001": 200, + "40002": 200, + "40003": 200, + "40004": 200, + "40005": 200, + "40006": 200, + "40007": 200, + "40008": 200, + "40009": 200, + "40010": 200, + "40011": 200, + "40012": 200, + "40013": 200, + "40014": 200, + "40015": 200, + "40016": 200, + "40017": 200, + "40018": 200, + "40019": 200 + }, + "local_HTTP": [ + { + "path": "/", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/about", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/about", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/agents", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/agents", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/coming-soon/listings/", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/coming-soon/listings/", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/concierge/", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/concierge/", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/help", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/help", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/homes-for-rent", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/homes-for-rent", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/homes-for-sale", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/homes-for-sale", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/login", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/login", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/luxury", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/luxury", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/neighborhood-guides/", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/neighborhood-guides/", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/neighborhood-guides/boston/", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/neighborhood-guides/boston/", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/neighborhood-guides/dc/", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/neighborhood-guides/dc/", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/neighborhood-guides/hamptons/", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/neighborhood-guides/hamptons/", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/neighborhood-guides/la/", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/neighborhood-guides/la/", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/neighborhood-guides/miami/", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/neighborhood-guides/miami/", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/neighborhood-guides/nyc/", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/neighborhood-guides/nyc/", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/private-exclusives/", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/private-exclusives/", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/register", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/register", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/search?compass_exclusive=1", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/search?compass_exclusive=1", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/search?status=sold", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/search?status=sold", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/sell/", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/sell/", + "content_type": "text/html; charset=utf-8" + }, + { + "path": "/static/css/compass.css", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/css/compass.css", + "content_type": "text/css; charset=utf-8" + }, + { + "path": "/static/css/concierge.css", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/css/concierge.css", + "content_type": "text/css; charset=utf-8" + }, + { + "path": "/static/css/navigation.css", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/css/navigation.css", + "content_type": "text/css; charset=utf-8" + }, + { + "path": "/static/css/neighborhoods.css", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/css/neighborhoods.css", + "content_type": "text/css; charset=utf-8" + }, + { + "path": "/static/external_cache/CompassSerif-SemiBold.woff2", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/CompassSerif-SemiBold.woff2", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/concierge-after-1.jpg", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/concierge-after-1.jpg", + "content_type": "image/jpeg" + }, + { + "path": "/static/external_cache/concierge-before-1.jpg", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/concierge-before-1.jpg", + "content_type": "image/jpeg" + }, + { + "path": "/static/external_cache/concierge-concierge-hero.mp4", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/concierge-concierge-hero.mp4", + "content_type": "video/mp4" + }, + { + "path": "/static/external_cache/concierge-concierge-thumb-new.jpg", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/concierge-concierge-thumb-new.jpg", + "content_type": "image/jpeg" + }, + { + "path": "/static/external_cache/concierge-copy-of-17---kelly-resnick.jpg", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/concierge-copy-of-17---kelly-resnick.jpg", + "content_type": "image/jpeg" + }, + { + "path": "/static/external_cache/concierge-d85-2822-edit.jpg", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/concierge-d85-2822-edit.jpg", + "content_type": "image/jpeg" + }, + { + "path": "/static/external_cache/concierge-fpoconcierge-1.jpg", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/concierge-fpoconcierge-1.jpg", + "content_type": "image/jpeg" + }, + { + "path": "/static/external_cache/concierge-living-room---after.jpg", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/concierge-living-room---after.jpg", + "content_type": "image/jpeg" + }, + { + "path": "/static/external_cache/concierge-living-room---before.jpg", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/concierge-living-room---before.jpg", + "content_type": "image/jpeg" + }, + { + "path": "/static/external_cache/concierge-sarah-before.jpg", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/concierge-sarah-before.jpg", + "content_type": "image/jpeg" + }, + { + "path": "/static/external_cache/concierge-scott-after.jpg", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/concierge-scott-after.jpg", + "content_type": "image/jpeg" + }, + { + "path": "/static/external_cache/concierge-scott-before.jpg", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/concierge-scott-before.jpg", + "content_type": "image/jpeg" + }, + { + "path": "/static/external_cache/guide-aspen-geo.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-aspen-geo.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-atlanta-geo-tile.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-atlanta-geo-tile.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-austion-geo-tile.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-austion-geo-tile.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-boston-geo.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-boston-geo.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-ca---san-diego---la-jolla---112.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-ca---san-diego---la-jolla---112.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-chicago-thumbnail.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-chicago-thumbnail.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-cityscape.svg", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-cityscape.svg", + "content_type": "image/svg+xml; charset=utf-8" + }, + { + "path": "/static/external_cache/guide-compass-web-3.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-compass-web-3.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-dallas-market-module--mosaic-grid-markets-.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-dallas-market-module--mosaic-grid-markets-.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-dc-geo.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-dc-geo.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-greenwich-thumbnail-geo.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-greenwich-thumbnail-geo.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-hamptons-geo.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-hamptons-geo.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-houston-geo-mosaic.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-houston-geo-mosaic.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-in---indianapolis---marketing-image---4.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-in---indianapolis---marketing-image---4.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-la-geo.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-la-geo.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-miami-geo.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-miami-geo.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-naplesneighborhoodguidebanner.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-naplesneighborhoodguidebanner.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-nc---charlotte---marketing-imagery---6.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-nc---charlotte---marketing-imagery---6.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-nc---raleigh---marketing-image---14.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-nc---raleigh---marketing-image---14.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-nyc-geo.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-nyc-geo.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-philadelphia-geo-mosaic.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-philadelphia-geo-mosaic.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-santabarbara-geo.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-santabarbara-geo.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-seattle-geomosaic-tile.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-seattle-geomosaic-tile.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-sf---geo--1-.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-sf---geo--1-.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/guide-westchester-market-mosaic-tile.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/guide-westchester-market-mosaic-tile.webp", + "content_type": "application/octet-stream" + }, + { + "path": "/static/external_cache/home-appstore.png", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/home-appstore.png", + "content_type": "image/png" + }, + { + "path": "/static/external_cache/home-playstore.png", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/external_cache/home-playstore.png", + "content_type": "image/png" + }, + { + "path": "/static/icons/compass_logo.svg", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/icons/compass_logo.svg", + "content_type": "image/svg+xml; charset=utf-8" + }, + { + "path": "/static/js/compass.js", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/js/compass.js", + "content_type": "text/javascript; charset=utf-8" + }, + { + "path": "/static/js/concierge.js", + "status": 200, + "resolved_url": "http://127.0.0.1:44019/static/js/concierge.js", + "content_type": "text/javascript; charset=utf-8" + } + ], + "compass_reset_seconds": 0.7217642920004437, + "reset": { + "pid": 339, + "ready": true, + "site": "compass" + }, + "seed_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "seed_byte_equal": true, + "build_type": "Incremental on verified 82b5915; fresh final-image container. No repeated full clean asset fetch or reset-all." + }, + "browser_checks": { + "application": "25b8b33", + "runtime": "wh-review025-landing-built", + "at": "2026-09-07T04:23:56.926Z", + "viewports": [ + 1440, + 815, + 390 + ], + "desktopCarousel": [ + { + "label": "Success story 1 of 8", + "name": "Julia, Seller | Oakland", + "overflow": false, + "visible": 1 + }, + { + "label": "Success story 2 of 8", + "name": "Jo Ann, Seller | San Francisco Bay Area", + "overflow": false, + "visible": 1 + }, + { + "label": "Success story 3 of 8", + "name": "Bill & Jill, Sellers | New York City", + "overflow": false, + "visible": 1 + }, + { + "label": "Success story 4 of 8", + "name": "Kristen Jock & Khashif Khan, Agents | Brooklyn", + "overflow": false, + "visible": 1 + }, + { + "label": "Success story 5 of 8", + "name": "Koji, Seller | San Francisco Bay Area", + "overflow": false, + "visible": 1 + }, + { + "label": "Success story 6 of 8", + "name": "Christina, Seller | San Francisco Bay Area", + "overflow": false, + "visible": 1 + }, + { + "label": "Success story 7 of 8", + "name": "Scott Perret, Agent | Seattle", + "overflow": false, + "visible": 1 + }, + { + "label": "Success story 8 of 8", + "name": "Sarah, Seller | Oakland", + "overflow": false, + "visible": 1 + } + ], + "mobileCarousel": { + "next": "Jo Ann, Seller | San Francisco Bay Area", + "visible": 1, + "overflow": false, + "previousClicked": true + }, + "externalServiceSubmissions": 0, + "kind": "UI QA, not benchmark trajectories", + "desktop_wrap_return": "Julia, Seller | Oakland", + "local_agent_CTA": { + "destination": "/agents", + "heading": "Find an Agent" + } + }, + "regression_tests": { + "at": "2026-09-07T04:09:50.115629+00:00", + "command": "python -m pytest sites/compass/tests sites/compass/verify/test_verifiers.py -q", + "passed": 168, + "warnings": 172, + "seconds": 44.81, + "scope": "Application/source regressions and verifier adversarial tests. Subsequent CSS/font/template presentation changes are checked in the browser separately." + }, + "reuse": { + "from_application_commit": "82b591593ab739465b9bf8a0216dd2d174105599", + "current_application_commit": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "unchanged_paths": { + "sites/compass/tasks.jsonl": "e0c2d0b758eb3d1bed09fa2beb0821bb5d0163ceea059017b5bfdf6adcc29cdf", + "sites/compass/static/js/compass.js": "ab736909c1fc6cff1ead1b3c5759a02c041a924d809d3ef9c1e5b3511fef435d", + "sites/compass/static/css/compass.css": "df6b876250eb10908a2eead8df21ded0d1d3427298084907019be0881d6ba499", + "sites/compass/static/css/home.css": "5278aa5b3239962d6c7c93ed69f38534cd46f31f07360d63ad736cf8bd746200", + "sites/compass/static/css/navigation.css": "cfd5ae69c323e2a7c538f226dfd1557114c63463b18e99e7a941373bf630dee2", + "sites/compass/templates/index.html": "5cb30362f336b4cca3cee62fd1682f012adb876b2f50555cb12bbf44d6860761", + "sites/compass/templates/_footer.html": "1fad5c09187442ccec2dbef355da40b3e753ab3769849ea751b9db7373667a10", + "sites/compass/verify/verify_10.py": "56e5921d51cafd8ae8a3f2ee7df911ed4120cac7ac6d2e404119882df28bec1a", + "sites/compass/verify/verify_14.py": "ad6142516d21c51d5eb3bb2a588341bd4195b25b28c38d101c1f3d4111d78eaa", + "sites/compass/verify/verify_15.py": "1801ed6b1c535c28cf40d266de8d48e9413d03f1856c534dbfcd926a8eb87467", + "sites/compass/verify/verify_11.py": "73c9ae435a92e89f8e95f0ccc272c61361ecd34219b4322eb432b77753aea5b1", + "sites/compass/verify/verify_0.py": "e15845424af0b4818b34574083c8429069a11e8f17d955f238995524ed04f027", + "sites/compass/verify/verify_4.py": "0384175f158ab24aeeda7a777ebc9008c63244c789356b54acb806c9a034a361", + "sites/compass/verify/verify_5.py": "3846905f0d4e78681d15a2c4691d09ba90bf5dec8d41a6f4aa3360748db7b322", + "sites/compass/verify/verify_1.py": "06267ab38617d947c17962b31a139b8c7405e96dbf4ce72810021b98b2bddcc4", + "sites/compass/verify/README.md": "f845da9a1289392b4cee72fc2d425883d2a07b568ec404aecb707086ab4a8115", + "sites/compass/verify/verify_6.py": "95530e261faee14dbc60b494a640f1dd1c001dc66f523c04356376b22deb1d20", + "sites/compass/verify/verify_2.py": "d32d791ba62e92869a8bf532cd55fd727a7419f4b3bda083f1074b428f11bf0f", + "sites/compass/verify/verify_lib.py": "78b0afaf0df5620fd7b0ae5f3c900fe845b1a24e005787a8ed4bb3f58c452476", + "sites/compass/verify/test_verifiers.py": "8e66ad3d6c4aedcef32d5fd0408e0c5e92f460d98e276ce8e06704d0ac753284", + "sites/compass/verify/verify_3.py": "55a58ab16602b8f1a018d8d1af4d1f66afae4f7b40e42859d4152e1347ce5aa7", + "sites/compass/verify/verify_7.py": "174ae34dd129855688ead1ea7d7d07c3380c423edbde48d22957ae6b2df71910", + "sites/compass/verify/facts.json": "01ef9bb18373cd7009325b37175430f302270f85eedeb24a63609cf3912092b7", + "sites/compass/verify/verify_16.py": "2686433661b7daa4085cc042643242ffd49e1202b187a10ea9ad72f7dbab7045", + "sites/compass/verify/verify_12.py": "9290820050be2e9270b77c6eb2032c95df2d1295787523b0b154dd1c1c7c6b55", + "sites/compass/verify/verify_13.py": "c2da8396b73dc62d97a32ff3d834f396310f0fd1bd07e2de29dee4df7686be9c", + "sites/compass/verify/verify_17.py": "a4fe40522a34be33dbb9d2d939f86ac1b98657e5ae8537e3414237dd7433408f", + "sites/compass/templates/saved_searches.html": "ed635830b21278c447821ce2fb6ba2e617002e8992b7f2acc620d76b59059e0e", + "sites/compass/templates/new_listings.html": "46d13812b192bfef01a5384e15842404fb92d327acbf0916e893fe5f1a2eccfb", + "sites/compass/templates/sell.html": "c52249ea03712f4fe45939f6d2f9ffbcd268648a4df89d8a76ffe213af764c3c", + "sites/compass/templates/preferences.html": "f97d3874a65ce2a344392ad76a55dbe7a1b31f338c15ac072403ad667d83da2c", + "sites/compass/templates/_filters.html": "8d373c1ad74a806e19917495361a361fa4a1b2f50911c87d4b25f3ffbeb730a9", + "sites/compass/templates/help.html": "208839f85d0249182098d1381ff1ab10d65b6abe8fb5481fcde42f7ad6cf5e45", + "sites/compass/templates/luxury.html": "495603b0fd7f1a07317c573da44375d95b002d480c20650f475c3f58a232645c", + "sites/compass/templates/about.html": "8d6722e5c5d0620f9100025f53e92e04613196095b3827f1495c7af136d833c6", + "sites/compass/templates/collection_new.html": "5229da313876a9de59a245974a7937b786e733c88a26ba70bfd67e577ad5a9c9", + "sites/compass/templates/_navigation.html": "63c8ddfb653fb9837a94f4baecfd2bda0f0a6018d747d06e9a5c9ab07acc0923", + "sites/compass/templates/register.html": "17ec70ef8ab1c4e3891e73755b2b6e5de6ab5eeb3969583e0ab5f371dba16940", + "sites/compass/templates/500.html": "9291a793706ace8c95ed82ae0abfadcb073a2b8b645b07eb5b46b5afd0f034e3", + "sites/compass/templates/404.html": "e07690541b7aa266b462b8ce5a1ccf5b7196fd2a6600e4547cad86ac4b75b2ca", + "sites/compass/templates/login.html": "9b7f6ce50877e7297f41250f93c630b9d01bee88977fd54f91c1c74b1977d8e6", + "sites/compass/templates/collection_share.html": "3d91f33cd30b2f3daa54de2be39fc1ffadb299c65e5af3f8e2b0434411b4232c", + "sites/compass/templates/inquiry_send.html": "331307a8065db0e731bb2bcaa1307c90d82d3bbef9ac8a658f3732230584725e", + "sites/compass/templates/open_houses.html": "91ece406f0cb5dcc99239af7b32348b18737a62e4a8c5604dedff1fe03d3d3f7", + "sites/compass/templates/account.html": "df1ff7bec4d1e4e6d27f58aa4db9999dc4b7f487a86696a2082d7cb16e493ef3", + "sites/compass/templates/inquiries.html": "6c3a0b9813a7cbff20a7a1a5c19b82c057b24022d49a6a286566953aea4a18d0", + "sites/compass/templates/listing_detail.html": "89cee61d75487fa9ed8c9225a2bc0339082a16d796bc709c2c06b27a5b84eedb", + "sites/compass/templates/agents.html": "db188b0fe18337423334f5f76155ce72a4ce00e556b227b67f706a3501eaab37", + "sites/compass/templates/agent_detail.html": "3a37d7c836ccca4bd8340fa8dfb287437fb68cdbfe96d39891047e67bb9fdfc9", + "sites/compass/templates/saved.html": "34c22814d9a6e4c12745c7157706b65bf727a58a53c4d22e0ff503fca24b79a3", + "sites/compass/templates/_card.html": "9870e0ab1be4e9ed215367395da93cf5bde75eca571cd59e707c2279a5e80c1d", + "sites/compass/templates/change_password.html": "c6d608044f24a36c32f147f9c27224c81cf0a036af4ea626e2881c045bd4b2b9", + "sites/compass/templates/listing_collection.html": "58ad7305d69432be4ca58c11a75d98bc3207bd020752669e0996107ad2fbfbc1", + "sites/compass/templates/city.html": "1f75da786fc70115c842fa7a5d92a0fc612716f5de06d5f37030cdc920f346e8", + "sites/compass/templates/homes_for_sale.html": "c036c85a4418cb2b4ffd22803e6870ddd15865bd66ecac220b6a78b7beec0a6b", + "sites/compass/templates/search.html": "c39a0260431cff58614ec48ae6fe245cd53f7e742c770e3abb321ddf21ced1ba", + "sites/compass/templates/tour_request.html": "28e5e1b6a57271942d98743f0235f97db8175c0ae996b75b162941429e94d9b4", + "sites/compass/templates/collections.html": "273c69f7bd33a6e04daf0b71ff4a198e0a7be4f515b068aeb5c281fe2729f301", + "sites/compass/templates/collection_detail.html": "c0aeae49e443153aeb4086d59b07fcbe88a38f521981dd663c2ba03c56e9ca7a", + "sites/compass/templates/account_edit.html": "d923e6b266fed181c8cb25e15ac3a89c9ae1e95b3c8258abe4d84d829d3cc51a", + "sites/compass/templates/tours.html": "09dec1c0c4bf3aa86b3501734530c120876359efcf0cf71b130049599a2faa5c", + "sites/compass/templates/_home_card.html": "a6da374c43e170d8be158c5839f687ff220b8a2d115c113b655118e7580afd81", + "sites/compass/templates/_account_nav.html": "b562f84a9ac7bac270a1914c37058ab810cfa7afed2131e8a5a23e3a563ede12" + }, + "changed_app_definitions": [ + "neighborhoods" + ], + "base_template_change": "Only Concierge/neighborhood page CSS/JS includes and hiding the search box on these two endpoints. Existing task endpoints retain their rendered controls.", + "data": "Existing 2430 asset files and seed byte-identical; 38 new public media/font/SVG files.", + "evidence_scope": "Original16 frozen runs and the 9741284 task17 packet retain their old code/assets. This landing-page delta changes no task routes, requested facts or grading. UI QA is separate from trajectories; no old run is relabeled as this candidate." + }, + "screenshots": [ + { + "at": "2026-09-07T04:28:49.607Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/concierge/", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/landing/source-screen-concierge-top-1440.jpg", + "kind": "source", + "sha256": "813e76586027caca17f56ce56c75e06db0498535f3e77242a2583e785c32a8a7", + "bytes": 121055, + "code_sha": null, + "asset_revision": null, + "post_scrollY": 0 + }, + { + "at": "2026-09-07T03:58:54.911Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/concierge/", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/landing/before-concierge-top-1440.jpg", + "kind": "before", + "sha256": "42ec907c8f1c20062bf44dc35178d1c1792aab648bd9d89f9ed485dfff29a803", + "bytes": 117150, + "code_sha": "82b591593ab739465b9bf8a0216dd2d174105599", + "asset_revision": "5b66b757121ab34ee8199824a0b5a856e0612336" + }, + { + "at": "2026-09-07T04:21:44.241Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:44019/concierge/", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/landing/verified-concierge-top-1440.jpg", + "kind": "after", + "sha256": "137cfaaf726c45d42d2b30d6dce1a7f900d42cda1530a02b9981f3319fd7f292", + "bytes": 130175, + "code_sha": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "asset_revision": "b09ad95ac9428d5f98e1dc6206f1fa5f87aec671", + "runtime": "fresh final image" + }, + { + "at": "2026-09-07T04:29:23.759Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/concierge/", + "viewport": { + "height": 900, + "width": 815 + }, + "file": "visual-review/landing/source-screen-concierge-top-815.jpg", + "kind": "source", + "sha256": "89aff26d6549bcd646f20837c74935a038a490ab4f7cb96258351333cfba40c1", + "bytes": 72573, + "code_sha": null, + "asset_revision": null, + "post_scrollY": 0, + "capture_method": "screenshot between matching DOM measurements; no DOM snapshot export" + }, + { + "at": "2026-09-07T04:03:00.142Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/concierge/", + "viewport": { + "height": 900, + "width": 815 + }, + "file": "visual-review/landing/before-concierge-top-815.jpg", + "kind": "before", + "sha256": "0efef1699e9812087afaa486316f82524759c5d566481f9b4d7c19f70509f6d8", + "bytes": 89654, + "code_sha": "82b591593ab739465b9bf8a0216dd2d174105599", + "asset_revision": "5b66b757121ab34ee8199824a0b5a856e0612336" + }, + { + "at": "2026-09-07T04:22:29.763Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:44019/concierge/", + "viewport": { + "height": 900, + "width": 815 + }, + "file": "visual-review/landing/verified-concierge-top-815.jpg", + "kind": "after", + "sha256": "631ea242e77db11bb9c3d3f61ee5cd4b8d1de51ee94d4414e3e65fc4ace97fc0", + "bytes": 81682, + "code_sha": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "asset_revision": "b09ad95ac9428d5f98e1dc6206f1fa5f87aec671", + "runtime": "fresh final image" + }, + { + "at": "2026-09-07T04:29:44.303Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/concierge/", + "viewport": { + "height": 844, + "width": 390 + }, + "file": "visual-review/landing/source-screen-concierge-top-390.jpg", + "kind": "source", + "sha256": "e2228698069c82fad4d92f6688fde71864a6c5b6b35b1fe1cb49eec58157854b", + "bytes": 46928, + "code_sha": null, + "asset_revision": null, + "post_scrollY": 0, + "capture_method": "screenshot between matching DOM measurements; no DOM snapshot export" + }, + { + "at": "2026-09-07T04:02:26.425Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/concierge/", + "viewport": { + "height": 844, + "width": 390 + }, + "file": "visual-review/landing/before-concierge-top-390.jpg", + "kind": "before", + "sha256": "5988f8cd11843000eb56034adadf23f5e3daa210d3b24971030cfdfe6446f032", + "bytes": 52915, + "code_sha": "82b591593ab739465b9bf8a0216dd2d174105599", + "asset_revision": "5b66b757121ab34ee8199824a0b5a856e0612336" + }, + { + "at": "2026-09-07T04:23:17.767Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:44019/concierge/", + "viewport": { + "height": 844, + "width": 390 + }, + "file": "visual-review/landing/verified-concierge-top-390.jpg", + "kind": "after", + "sha256": "7eb32ac58f6de05eeb0771b452eec3f15ec7a3232e35c5322cc6f3d8c7d2e7b4", + "bytes": 48154, + "code_sha": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "asset_revision": "b09ad95ac9428d5f98e1dc6206f1fa5f87aec671", + "runtime": "fresh final image" + }, + { + "at": "2026-09-07T04:20:16.182Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/neighborhood-guides/", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/landing/source-verified-guides-top-1440.jpg", + "kind": "source", + "sha256": "e0d6c1c4fe788e38e2e5e6a0fc4a4f62df3ca0bed566bda0f710c99252a580a8", + "bytes": 125069, + "code_sha": null, + "asset_revision": null + }, + { + "at": "2026-09-07T03:59:29.072Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/neighborhood-guides/", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/landing/before-guides-top-1440.jpg", + "kind": "before", + "sha256": "6f8be5dbcd6568c2c258877a6d0254a93c16bf100244c945a38ca4ab2451699d", + "bytes": 205672, + "code_sha": "82b591593ab739465b9bf8a0216dd2d174105599", + "asset_revision": "5b66b757121ab34ee8199824a0b5a856e0612336" + }, + { + "at": "2026-09-07T04:21:44.909Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:44019/neighborhood-guides/", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/landing/verified-guides-top-1440.jpg", + "kind": "after", + "sha256": "63be78c10d9bae10fbf1d273e7f0c01dbc661509e3d6630d49bb68f4cc032e27", + "bytes": 126548, + "code_sha": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "asset_revision": "b09ad95ac9428d5f98e1dc6206f1fa5f87aec671", + "runtime": "fresh final image" + }, + { + "at": "2026-09-07T04:20:14.507Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/neighborhood-guides/", + "viewport": { + "height": 900, + "width": 815 + }, + "file": "visual-review/landing/source-verified-guides-top-815.jpg", + "kind": "source", + "sha256": "01d0f922b678ab47d2e78aa5d7fbd6f0b7169a7107601e237b01e2ed4c79e076", + "bytes": 74267, + "code_sha": null, + "asset_revision": null + }, + { + "at": "2026-09-07T04:03:33.047Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/neighborhood-guides/", + "viewport": { + "height": 900, + "width": 815 + }, + "file": "visual-review/landing/before-guides-top-815.jpg", + "kind": "before", + "sha256": "c6287d87ae0b826c2019cecc9b8c51e0916dee537f9da90ab28898f1316cbc65", + "bytes": 152323, + "code_sha": "82b591593ab739465b9bf8a0216dd2d174105599", + "asset_revision": "5b66b757121ab34ee8199824a0b5a856e0612336" + }, + { + "at": "2026-09-07T04:22:30.369Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:44019/neighborhood-guides/", + "viewport": { + "height": 900, + "width": 815 + }, + "file": "visual-review/landing/verified-guides-top-815.jpg", + "kind": "after", + "sha256": "f35c236cb2fe7b47c0044eb73a9044bc6ae8447bb2005ea76caa658de65ea35a", + "bytes": 74728, + "code_sha": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "asset_revision": "b09ad95ac9428d5f98e1dc6206f1fa5f87aec671", + "runtime": "fresh final image" + }, + { + "at": "2026-09-07T04:20:45.158Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/neighborhood-guides/", + "viewport": { + "height": 844, + "width": 390 + }, + "file": "visual-review/landing/source-verified-guides-top-390.jpg", + "kind": "source", + "sha256": "a1fb66bcfe54d83476c2acfb761a43b2e7577b26109ff8529a02227d12924bd4", + "bytes": 40723, + "code_sha": null, + "asset_revision": null + }, + { + "at": "2026-09-07T04:01:27.786Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/neighborhood-guides/", + "viewport": { + "height": 844, + "width": 390 + }, + "file": "visual-review/landing/before-guides-top-390.jpg", + "kind": "before", + "sha256": "db97804b4f1be326ed3c0406836baf7a6703ff301c51f4daca6590a6a4b18394", + "bytes": 70720, + "code_sha": "82b591593ab739465b9bf8a0216dd2d174105599", + "asset_revision": "5b66b757121ab34ee8199824a0b5a856e0612336" + }, + { + "at": "2026-09-07T04:23:18.990Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:44019/neighborhood-guides/", + "viewport": { + "height": 844, + "width": 390 + }, + "file": "visual-review/landing/verified-guides-top-390.jpg", + "kind": "after", + "sha256": "58128346aa1fc227634723c62f85607ee4d2c205413ebd961dc3faeae1276620", + "bytes": 40819, + "code_sha": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "asset_revision": "b09ad95ac9428d5f98e1dc6206f1fa5f87aec671", + "runtime": "fresh final image" + }, + { + "at": "2026-09-07T04:15:15.978Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 1780, + "url": "https://www.compass.com/concierge/", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/landing/source-final-concierge-stories-1440.jpg", + "kind": "source", + "sha256": "46ac1d36e0970c79ca77c1a06c3e6c749ed10389b7f35e080186e464b8cf5f8f", + "bytes": 126618, + "code_sha": null, + "asset_revision": null + }, + { + "at": "2026-09-07T04:18:19.856Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 1780, + "url": "http://localhost:44019/concierge/#stories", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/landing/verified-concierge-stories-1440.jpg", + "kind": "after", + "sha256": "4f2a4329430c6032b57d269d413ed5759e9ca33889feb738867451bae8c1366f", + "bytes": 123981, + "code_sha": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "asset_revision": "b09ad95ac9428d5f98e1dc6206f1fa5f87aec671", + "runtime": "preview overlay; 47 file hashes independently matched to final image" + }, + { + "at": "2026-09-07T04:16:00.234Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 2578, + "url": "https://www.compass.com/concierge/", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/landing/source-final-concierge-services-1440.jpg", + "kind": "source", + "sha256": "a36f130b3c1c56e8d9f6f693e92c21ea7d6b0786f44419d47b0c9c1ae485d699", + "bytes": 68693, + "code_sha": null, + "asset_revision": null + }, + { + "at": "2026-09-07T04:18:40.857Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 2578, + "url": "http://localhost:44019/concierge/#improvements", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/landing/verified-concierge-services-1440.jpg", + "kind": "after", + "sha256": "05425809106c3cdfa7f5e6d38bd8259f1d32addd319fc4986be3f2168f9e3621", + "bytes": 88302, + "code_sha": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "asset_revision": "b09ad95ac9428d5f98e1dc6206f1fa5f87aec671", + "runtime": "preview overlay; 47 file hashes independently matched to final image" + }, + { + "at": "2026-09-07T04:17:56.478Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 4490.5, + "url": "https://www.compass.com/concierge/", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/landing/source-final-concierge-video-1440.jpg", + "kind": "source", + "sha256": "178bcac45a445b341682a3714bdf8cc95ae0c3e600157bb1b2fda673dba5292e", + "bytes": 99058, + "code_sha": null, + "asset_revision": null + }, + { + "at": "2026-09-07T04:19:30.953Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 4491, + "url": "http://localhost:44019/concierge/#video", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/landing/verified-concierge-video-1440.jpg", + "kind": "after", + "sha256": "a6f4cfe059fc929f2b676bd37df715730c80da50520243202aaafac1c21f8195", + "bytes": 97767, + "code_sha": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "asset_revision": "b09ad95ac9428d5f98e1dc6206f1fa5f87aec671", + "runtime": "preview overlay; 47 file hashes independently matched to final image" + }, + { + "at": "2026-09-07T04:16:11.051Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 5664.5, + "url": "https://www.compass.com/concierge/", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/landing/source-final-concierge-faq-1440.jpg", + "kind": "source", + "sha256": "c3fb6b86293b20c6a44e7b98f85ad7ad1e7305e3c9d6bdeac7c2daf0d4c964c8", + "bytes": 167849, + "code_sha": null, + "asset_revision": null + }, + { + "at": "2026-09-07T04:19:16.654Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 5665, + "url": "http://localhost:44019/concierge/#faq", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/landing/verified-concierge-faq-1440.jpg", + "kind": "after", + "sha256": "a2cfa22ef61317091d76f94e402bb5837673c6d8f2936ddfb94f53c4becc6f43", + "bytes": 156080, + "code_sha": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "asset_revision": "b09ad95ac9428d5f98e1dc6206f1fa5f87aec671", + "runtime": "preview overlay; 47 file hashes independently matched to final image" + } + ], + "limitations": [ + "No human acceptance yet.", + "First/third/fifth story YouTube embeds and the film open YouTube explicitly; no external iframe or fabricated local playback.", + "Concierge contact/application opens Compass; local CTA opens the existing agent directory.", + "Only the 24-region index is reproduced. Six existing regional routes retain local listing snapshots; other regional guides open Compass.", + "Current Sell and other previously disclosed service limits remain.", + "No new benchmark trajectory or independent verdict was created for this UI delta." + ] +} diff --git a/sites/compass/docs/maintainer-handoff.md b/sites/compass/docs/maintainer-handoff.md new file mode 100644 index 00000000..cfbcd609 --- /dev/null +++ b/sites/compass/docs/maintainer-handoff.md @@ -0,0 +1,42 @@ +# Compass maintainer handoff + +Human experience and the disclosed implementation scope were accepted by **Zexu Jin on September 7, 2026**, with an explicit request to mark [Review PR #84](https://github.com/aiming-lab/WebHarbor/pull/84) Ready for review. Original contribution: [#25](https://github.com/aiming-lab/WebHarbor/pull/25), **sarendis56 (Peichun Hua)**. This transition changes documentation only. + +**Ready for maintainer review does not mean ready for immediate merge.** The original 16-task independent verdict is complete and reconciled; the refreshed task17 verdict remains outstanding. It is disclosed here and is not counted as PASS. The earlier execution versions and verdict are unchanged. + +## Candidate and checks + +| Item | Verified identity / result | +|---|---| +| Application | `7f6dc008603182c6ace79ad52e52f2f8b804ae4b` | +| Pre-handoff documentation | `4a80f3819f0c3b443a11663c5ec79a8862c3a234`; this document is the subsequent status-only update | +| Integration base | `90afddb6d4af382935ded9a385f2eead604188cf` | +| Registry | 20 sites; Compass40019, Target40018; control8101 | +| Asset PR | [HF #53](https://huggingface.co/datasets/ChilleD/WebHarbor/discussions/53), OPEN, no conflicts | +| Immutable HF revision | `d86ec0bfcbb98f92efbe6b6b4440f9dcc6cceb69` | +| Compass archive | 210,301,426 bytes; SHA-256 `077cfb2334cb40bf191b2e557c0becd6e28a1901e7ea80183216c1e9db1544aa` | +| Runtime seed | `86c648f437651974e169ab2ed4921b85b15bd2116008fdbb66dbf118d41b663d` | +| Final prepared image | `sha256:fc19412657658928bc3fc49ec46e9d610d9877872bae778060d2f84d4d32a3cf` (incremental build) | +| Fresh transition checks | 455 runtime payload hashes match; 20/20 site homepages200; 16 task/rubric/verifier contracts; 932 original execution files,39 task17 inputs and36 published images rehashed unchanged | +| Reused application checks | 178 tests PASS; 470 local route/media URLs200; real UI inquiry and byte-identical Compass reset0.75s; reset-all2.58s with23/23 seed files equal | +| Remote mergeability | GitHub MERGEABLE before this status-only update; no CI checks were reported. That is not a CI PASS or merge approval. | + +[Machine-readable transition checks](maintainer-validation.json) record exact identities and reuse boundaries. The previous full startup/reset checks ran on the `bff69b1e…` incremental image, followed by isolated shading/nearby-layout refinements with fresh browser and final payload checks. No new clean build of all20 sites is claimed. Owner experience data was not reset during this transition. + +## Review evidence + +- [Environment, source,16-task quality matrix, verifier negative cases and independent-review reconciliation](review-report.md). +- [Sell and24 regional guides:36 source/before/after and interaction captures](sell-guides-review.md), [validation and hashes](sell-guides-validation.json). +- [Homepage/navigation52 captures](homepage-review.md) and [Concierge/directory26 captures](landing-review.md), retaining their historical checkpoints. + +The existing independent review judged16 frozen guided/source-aware executions PASS and visually sampled4 of268 screenshots. The newer task17 execution at `9741284` / HF `e063074` has8 steps and16 screenshots, deterministic PASS, and unchanged before/after state; its independent result has not been received. No claim is made that the older verdict certifies subsequent UI changes or that the16 tasks were all rerun on the latest UI. + +Human acceptance applies to the current candidate and disclosed scope; it does not attest that every published image was individually inspected. Specific community articles and nearby searches open the source site; Sell films use local posters/external video links, and inquiry forms save only local state. The live map, real-agent communications and other stated service limits remain. Benchmark accounts, stable snapshots and withholding detail answers from search cards remain intentional. + +## Remaining maintainer actions + +1. Receive and reconcile the refreshed task17 independent result, or make an explicit acceptance decision on that outstanding coverage. It remains separate from the completed original16-task review. +2. Review and merge/resolve HF #53. If the merge changes the selected revision, update `.assets-revision` and verify all asset hashes against the tested candidate; any different asset bytes require affected validation. +3. Confirm the final GitHub base/head and asset pin, run the final integration build/asset/reset checks, and complete maintainer code review before merging #84. Then coordinate closure/supersession of original #25. + +`directly_mergeable_now: false`. Reviewer agents have not merged either PR. The public PR is opened for maintainer review at the owner's request while the outstanding independent follow-up stays visible. diff --git a/sites/compass/docs/maintainer-validation.json b/sites/compass/docs/maintainer-validation.json new file mode 100644 index 00000000..e4bbc53b --- /dev/null +++ b/sites/compass/docs/maintainer-validation.json @@ -0,0 +1,177 @@ +{ + "at": "2026-09-07T14:34:42.492269+00:00", + "application": "7f6dc008603182c6ace79ad52e52f2f8b804ae4b", + "pre_ready_head": "4a80f3819f0c3b443a11663c5ec79a8862c3a234", + "base": "90afddb6d4af382935ded9a385f2eead604188cf", + "asset_revision": "d86ec0bfcbb98f92efbe6b6b4440f9dcc6cceb69", + "documentation_only_since_tested_application": true, + "runtime_payload_files_verified": 455, + "current_homepage_http": { + "http://127.0.0.1:40000/": 200, + "http://127.0.0.1:40001/": 200, + "http://127.0.0.1:40002/": 200, + "http://127.0.0.1:40003/": 200, + "http://127.0.0.1:40004/": 200, + "http://127.0.0.1:40005/": 200, + "http://127.0.0.1:40006/": 200, + "http://127.0.0.1:40007/": 200, + "http://127.0.0.1:40008/": 200, + "http://127.0.0.1:40009/": 200, + "http://127.0.0.1:40010/": 200, + "http://127.0.0.1:40011/": 200, + "http://127.0.0.1:40012/": 200, + "http://127.0.0.1:40013/": 200, + "http://127.0.0.1:40014/": 200, + "http://127.0.0.1:40015/": 200, + "http://127.0.0.1:40016/": 200, + "http://127.0.0.1:40017/": 200, + "http://127.0.0.1:40018/": 200, + "http://127.0.0.1:40019/": 200 + }, + "task_contracts": 16, + "verifiers": 16, + "frozen_original_files_verified": 932, + "refreshed_task17_inputs_verified": 39, + "old_verdict_sha256": "342633f8e1a3f0a31cf5983912c196573a4c7336591d66d3c315938f1035f662", + "refreshed_task17_verdict": "PENDING", + "public_comparison_images_verified": 36, + "tests_reused": { + "command": "python -m pytest sites/compass/tests sites/compass/verify/test_verifiers.py -q", + "passed": 178, + "warnings": 229, + "seconds": 25.15, + "scope": "Application/source/verifier regression; not UI trajectories or visual acceptance." + }, + "reset_reuse": { + "source": "sell-guides-validation.json", + "compass_seconds": 0.7484999579974101, + "reset_all_seconds": 2.583104874996934, + "seed_files_equal": 23, + "scope": "Same application state logic and asset pin; no reset of owner experience data performed in this documentation-only transition." + }, + "original_pr": { + "headRefOid": "11b11cce5942be42cedc768f58e56db77e26696e", + "state": "OPEN", + "url": "https://github.com/aiming-lab/WebHarbor/pull/25" + }, + "review_pr": { + "baseRefOid": "90afddb6d4af382935ded9a385f2eead604188cf", + "headRefOid": "4a80f3819f0c3b443a11663c5ec79a8862c3a234", + "isDraft": true, + "mergeable": "MERGEABLE", + "state": "OPEN", + "statusCheckRollup": [], + "title": "Review: Compass environment, source-backed data and task verification", + "url": "https://github.com/aiming-lab/WebHarbor/pull/84" + }, + "owner_acceptance": { + "recorded_at": "2026-09-07T14:35:57.870857+00:00", + "owner": "Zexu Jin", + "application": "7f6dc008603182c6ace79ad52e52f2f8b804ae4b", + "reviewed_head": "4a80f3819f0c3b443a11663c5ec79a8862c3a234", + "scope": "Human experience and disclosed visual/functional scope accepted; explicit instruction to mark the public PR Ready. Not evidence that the refreshed independent task17 verdict exists.", + "per_image_review_attested": false + }, + "standards_sha256": { + "AGENTS.md": "89693486657c109a37786a9d4aa80d5defa284f817df5b437c4acb5a506d6c47", + "CONTRIBUTING.md": "cf51cc7b671efbc554b152002e06fe9cd13376cb7c3250cec06d38c03fb8745f", + ".claude/skills/review-env/SKILL.md": "58b92aaf9e9dfc5dd55dc4d54971e6346782338f2ea7be748950b8e1dccf8aec" + }, + "asset_remote_verification": { + "at": "2026-09-07T14:33:56.082543+00:00", + "revision": "d86ec0bfcbb98f92efbe6b6b4440f9dcc6cceb69", + "files": { + "allrecipes.tar.gz": { + "size": 85460995, + "sha256": "0aa156ef92bbae1ae308ddf93e0c7d275f7aec564f292bc26fa256f52af3377e" + }, + "amazon.tar.gz": { + "size": 65301024, + "sha256": "6ac024a80d5025c5ad74bc2a69f41b006504ca714614c5d4dada687a5b9708a4" + }, + "apple.tar.gz": { + "size": 575152701, + "sha256": "1b3c5da5a5be799e6984c7604bd2f04bb0e3a6254dc2117b946124fa17082df3" + }, + "arxiv.tar.gz": { + "size": 63601080, + "sha256": "ca8be5be41c9dfce7fa7ab50f6fd60ca883c6c88e0d6016ae16034fb40344813" + }, + "bbc_news.tar.gz": { + "size": 277319440, + "sha256": "1cfb0881f80fa47dc4345c3dbe7da239d210690398dbb6815dd90548fd3d0121" + }, + "booking.tar.gz": { + "size": 388218077, + "sha256": "1e45e7546b39632ff13dd0c1e75f078f9c7bb234d610a1e863aa57f82e6311dd" + }, + "cambridge_dictionary.tar.gz": { + "size": 7478689, + "sha256": "95f1589d9c93d3c006f02c1e737e2e9af0202ab3ccff6430d4065a2ed67bcec5" + }, + "compass.tar.gz": { + "size": 210301426, + "sha256": "077cfb2334cb40bf191b2e557c0becd6e28a1901e7ea80183216c1e9db1544aa" + }, + "coursera.tar.gz": { + "size": 95329524, + "sha256": "4afcd074a62d5d42f95e70902001fdba1528ba7e3fac6d54abc0ec00b65d50ab" + }, + "espn.tar.gz": { + "size": 36297354, + "sha256": "60b64a5ab1441133b44e86121fdbc8d43978413705819e96faf3dd02062a9c14" + }, + "github.tar.gz": { + "size": 71817970, + "sha256": "0160886ff1dfc60918fb55077f651e4c8ea4a478d0cbd8b3b99da8baf0a65464" + }, + "google_flights.tar.gz": { + "size": 217387533, + "sha256": "9851543f0c185e88a12c10989437e9df03832b062c33593392bd2ae76642f392" + }, + "google_map.tar.gz": { + "size": 255815091, + "sha256": "e775be26df2d00816839206bd315000a606af12445b22e65f26d7fca17686095" + }, + "google_search.tar.gz": { + "size": 382211687, + "sha256": "0f827a3515c86538cb6dacf6b7ff4b76cbce4dcd24d429b84e6c4e9ad5754a3a" + }, + "huggingface.tar.gz": { + "size": 116494321, + "sha256": "c5ab123468bdcfa1ec1ead1474f95a39f99861931fe62273714d44c6dd336382" + }, + "ikea.tar.gz": { + "size": 19058369, + "sha256": "531368c4967453dbbd842b1a66922113fe1719355958e383e4864c6d96bf7c3b" + }, + "merriam_webster.tar.gz": { + "size": 6073531, + "sha256": "4d52e0dafc4cd7e7644fd80cba884909c414201243220b22544b4fec1078933c" + }, + "phys_org.tar.gz": { + "size": 7811183, + "sha256": "b34d7af7334dccb7a0f2f7c670deaadf640adf82ff02e45e16b7ab9c2893af7f" + }, + "target.tar.gz": { + "size": 15776899, + "sha256": "f12c2bf1ec60344ddd8dda7289e38d2ec9ffc6612b3d459c2a2898a0e9da4ac1" + }, + "wolfram_alpha.tar.gz": { + "size": 43099656, + "sha256": "d210f83516e3d599a885c047542a332fff9c9bc38aef5ee2e6b262b305283a6f" + } + }, + "other_19_equal": true, + "discussion_status": "open", + "conflicting_files": [] + }, + "ready_for_review_requested": true, + "directly_mergeable_now": false, + "remaining": [ + "Refreshed task17 independent verdict and reconciliation", + "Maintainer HF asset merge/pin coordination", + "Maintainer final review and integration verification" + ], + "scope": "This status/documentation update changes no application, assets, task, rubric or verifier. Existing same-version mechanical/reset/test evidence is reused; current runtime, hashes, remote identity and public evidence were rechecked." +} diff --git a/sites/compass/docs/responsive-qa.json b/sites/compass/docs/responsive-qa.json new file mode 100644 index 00000000..487571bb --- /dev/null +++ b/sites/compass/docs/responsive-qa.json @@ -0,0 +1,229 @@ +{ + "checked_code": "3cdc0b66d72b8a789b89583176c668081de36852", + "checks": [ + { + "name": "home-390", + "url": "http://localhost:40019/", + "at": "2026-09-06T12:20:14.212Z", + "documentWidth": 390, + "viewport": { + "height": 844, + "width": 390 + }, + "visibleBrokenImages": [], + "screenshot": "visual-review/responsive/home-390.jpg", + "sha256": "b2ace88a6efc2cec5355aa60ca66de24b2ff9f21830b09aa5cf89455e7d984c7", + "task_template_scope": "Supplementary template/layout QA; not an agent task run or a human-approved regression baseline." + }, + { + "name": "list-390", + "url": "http://localhost:40019/search?status=for-sale&q=Miami", + "at": "2026-09-06T12:20:14.404Z", + "documentWidth": 390, + "viewport": { + "height": 844, + "width": 390 + }, + "visibleBrokenImages": [], + "screenshot": "visual-review/responsive/list-390.jpg", + "sha256": "b41ebff1f1a214ce25f201726a8d0196c721f1ea421076c79b64d240cc6100a6", + "task_template_scope": "Supplementary template/layout QA; not an agent task run or a human-approved regression baseline." + }, + { + "name": "filters-390", + "url": "http://localhost:40019/search?status=for-sale&q=Miami", + "at": "2026-09-06T12:20:14.819Z", + "documentWidth": 390, + "viewport": { + "height": 844, + "width": 390 + }, + "visibleBrokenImages": [], + "screenshot": "visual-review/responsive/filters-390.jpg", + "sha256": "42f5c5e91496bf62dcf1f92351b3323558bfa45e457fe33c8f98cfb0b49a715e", + "task_template_scope": "Supplementary template/layout QA; not an agent task run or a human-approved regression baseline." + }, + { + "name": "detail-two-photo-390", + "url": "http://localhost:40019/listing/17145-southwest-90th-avenue-miami-fl-57531361", + "at": "2026-09-06T12:20:15.367Z", + "documentWidth": 390, + "viewport": { + "height": 844, + "width": 390 + }, + "visibleBrokenImages": [], + "screenshot": "visual-review/responsive/detail-two-photo-390.jpg", + "sha256": "9246b16f688bc5a77822e3c78f75815760d58897ed056b10368b09b583a64900", + "task_template_scope": "Supplementary template/layout QA; not an agent task run or a human-approved regression baseline." + }, + { + "name": "photo-dialog-390", + "url": "http://localhost:40019/listing/17145-southwest-90th-avenue-miami-fl-57531361", + "at": "2026-09-06T12:20:20.568Z", + "documentWidth": 390, + "viewport": { + "height": 844, + "width": 390 + }, + "visibleBrokenImages": [], + "screenshot": "visual-review/responsive/photo-dialog-390.jpg", + "sha256": "766be90249f6fa4e67292a82acf1385ea897f6f1f04627110ef65fa6155322c0", + "task_template_scope": "Supplementary template/layout QA; not an agent task run or a human-approved regression baseline." + }, + { + "name": "share-dialog-390", + "url": "http://localhost:40019/listing/17145-southwest-90th-avenue-miami-fl-57531361", + "at": "2026-09-06T12:20:28.349Z", + "documentWidth": 390, + "viewport": { + "height": 844, + "width": 390 + }, + "visibleBrokenImages": [], + "screenshot": "visual-review/responsive/share-dialog-390.jpg", + "sha256": "8f6b23ca5283ad8b38f1bf9299d2797fac2cc93eaa5eeb5aeb1d93033a12c234", + "task_template_scope": "Supplementary template/layout QA; not an agent task run or a human-approved regression baseline." + }, + { + "name": "detail-two-photo-320", + "url": "http://localhost:40019/listing/17145-southwest-90th-avenue-miami-fl-57531361", + "at": "2026-09-06T12:20:47.437Z", + "documentWidth": 320, + "viewport": { + "height": 800, + "width": 320 + }, + "visibleBrokenImages": [], + "screenshot": "visual-review/responsive/detail-two-photo-320.jpg", + "sha256": "150d2b39e43ca1168d994873fdcdabf1e21223ebac1d7e956eaad8cc5efeb355", + "task_template_scope": "Supplementary template/layout QA; not an agent task run or a human-approved regression baseline." + }, + { + "name": "login-320", + "url": "http://localhost:40019/login?next=%2Ftour%2F89", + "at": "2026-09-06T12:20:47.638Z", + "documentWidth": 320, + "viewport": { + "height": 800, + "width": 320 + }, + "visibleBrokenImages": [], + "screenshot": "visual-review/responsive/login-320.jpg", + "sha256": "f93bd9c1162deb1a2b038565e2c2750026e81739a666d4b4ad1ab66f1019012f", + "task_template_scope": "Supplementary template/layout QA; not an agent task run or a human-approved regression baseline." + }, + { + "name": "tour-form-320", + "url": "http://localhost:40019/account", + "at": "2026-09-06T12:20:47.838Z", + "documentWidth": 320, + "viewport": { + "height": 800, + "width": 320 + }, + "visibleBrokenImages": [], + "screenshot": "visual-review/responsive/tour-form-320.jpg", + "sha256": "7e5bd7148e679ed912f69dcd4d5d794cf2e565f12879853636e14978219a0788", + "task_template_scope": "Supplementary template/layout QA; not an agent task run or a human-approved regression baseline." + }, + { + "name": "tours-table-320", + "url": "http://localhost:40019/tours", + "at": "2026-09-06T12:20:47.938Z", + "documentWidth": 320, + "viewport": { + "height": 800, + "width": 320 + }, + "visibleBrokenImages": [], + "screenshot": "visual-review/responsive/tours-table-320.jpg", + "sha256": "c4d289b746ee16771a5f2803a315fc128d3e7f60bd6d6359b2e98e7aed9fb15e", + "task_template_scope": "Supplementary template/layout QA; not an agent task run or a human-approved regression baseline." + }, + { + "name": "account-320", + "url": "http://localhost:40019/account", + "at": "2026-09-06T12:20:48.040Z", + "documentWidth": 320, + "viewport": { + "height": 800, + "width": 320 + }, + "visibleBrokenImages": [], + "screenshot": "visual-review/responsive/account-320.jpg", + "sha256": "7e5bd7148e679ed912f69dcd4d5d794cf2e565f12879853636e14978219a0788", + "task_template_scope": "Supplementary template/layout QA; not an agent task run or a human-approved regression baseline." + }, + { + "name": "profile-form-320", + "url": "http://localhost:40019/account/edit", + "at": "2026-09-06T12:20:48.234Z", + "documentWidth": 320, + "viewport": { + "height": 800, + "width": 320 + }, + "visibleBrokenImages": [], + "screenshot": "visual-review/responsive/profile-form-320.jpg", + "sha256": "41855535d6cea5a8d3eb14da387e41f127346b206464c47ba5f1e7af7eed655b", + "task_template_scope": "Supplementary template/layout QA; not an agent task run or a human-approved regression baseline." + }, + { + "name": "saved-searches-320", + "url": "http://localhost:40019/saved-searches", + "at": "2026-09-06T12:21:01.280Z", + "documentWidth": 320, + "viewport": { + "height": 800, + "width": 320 + }, + "visibleBrokenImages": [], + "screenshot": "visual-review/responsive/saved-searches-320.jpg", + "sha256": "affd2ae6f607c6a347f5b868520e079a84a4a2533fb09b48be01b77308b3dfdd", + "task_template_scope": "Supplementary template/layout QA; not an agent task run or a human-approved regression baseline." + }, + { + "name": "collections-320", + "url": "http://localhost:40019/collections", + "at": "2026-09-06T12:21:01.482Z", + "documentWidth": 320, + "viewport": { + "height": 800, + "width": 320 + }, + "visibleBrokenImages": [], + "screenshot": "visual-review/responsive/collections-320.jpg", + "sha256": "aedf17623b9ca13ed6d76af99a4a74768e0ab58f74a2fdc8c20e72924c8354cf", + "task_template_scope": "Supplementary template/layout QA; not an agent task run or a human-approved regression baseline." + }, + { + "name": "home-768", + "url": "http://localhost:40019/", + "at": "2026-09-06T12:21:01.784Z", + "documentWidth": 768, + "viewport": { + "height": 1024, + "width": 768 + }, + "visibleBrokenImages": [], + "screenshot": "visual-review/responsive/home-768.jpg", + "sha256": "94b67f95bac545f77d9995fc7ebc2796b4d1a4bf207eff2b205e4b57d9028192", + "task_template_scope": "Supplementary template/layout QA; not an agent task run or a human-approved regression baseline." + }, + { + "name": "list-768", + "url": "http://localhost:40019/search?status=for-sale&q=Miami", + "at": "2026-09-06T12:21:01.984Z", + "documentWidth": 768, + "viewport": { + "height": 1024, + "width": 768 + }, + "visibleBrokenImages": [], + "screenshot": "visual-review/responsive/list-768.jpg", + "sha256": "ff33ccb4c1db520a4c270ab3cac6289a6dd9b62d3e78e1f359fe0ffd472f8660", + "task_template_scope": "Supplementary template/layout QA; not an agent task run or a human-approved regression baseline." + } + ] +} diff --git a/sites/compass/docs/review-report.md b/sites/compass/docs/review-report.md new file mode 100644 index 00000000..85894f2a --- /dev/null +++ b/sites/compass/docs/review-report.md @@ -0,0 +1,105 @@ +> **Current candidate:** [Sell and all24regional-guide reconstruction, versions and validation](sell-guides-review.md). The historical task runs and independent verdict below retain their original identities. Human acceptance is recorded; the [maintainer handoff](maintainer-handoff.md) records the Ready request and outstanding refreshed task17 verdict. + +# Compass contribution review + +Reviewer takeover of [original PR #25](https://github.com/aiming-lab/WebHarbor/pull/25), contributed by **sarendis56 (Peichun Hua)**. The original commits remain in this branch. This PR contains source/UI fixes and reviewer-authored grading contracts. Human experience and disclosed scope are accepted; the owner requested Ready for maintainer review. The original16-run independent review is complete and reconciled, while the later task17 verdict remains outstanding. The [handoff](maintainer-handoff.md) distinguishes review readiness from merge approval. + +## Current application and integration + +The original Sell omission was first addressed by a limited introduction at `a5e25af`. Subsequent homepage, Concierge and directory work is preserved in the historical reports. The current [Sell/regional-guide report](sell-guides-review.md) supersedes their Sell and regional-link limitations, provides 36 comparison/state screenshots, and is the canonical source for current application/asset/image/seed identities and validation. + +The integration base remains `90afddb6d4af382935ded9a385f2eead604188cf`: 20 sites, Compass `40019`, Target `40018`, control `8101`. [HF #53](https://huggingface.co/datasets/ChilleD/WebHarbor/discussions/53) remains open. The following task-execution and reconciliation evidence is historical and version-bound. + + +The retained 16 complete UI runs were newly executed on **40019** after a host reboot removed the earlier temporary raw bundles. Their checkout was `b84eaf60bf02a30a45da643b62c92b343e70f426`, using the retained `3cdc0b6` image. The final parser-only verifier fix runs offline against the frozen snapshots; app/UI/data files were byte-identical at that reconciliation point. The later Sell application/UI delta is documented separately above. The standalone dependency list now includes `email-validator==2.2.0`, already installed by the Dockerfile. Historical summaries are retained as history, not substituted for missing originals. + +## Environment and functional checks + +The pre-Sell baseline passed 20/20 startup and homepage checks; reset-all takes 1.672 seconds and restores 23/23 files byte-for-byte. All 16 fresh task runs use 40019, with terminal state captured before reset. Full Docker build, all-site startup/HTTP sweep, and per-file reset results are in [environment-validation.json](environment-validation.json). The post-reboot 20-site sweep supersedes the earlier startup/reset checks; the existing image build is reused. The Compass runtime seed is `4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979`; all 16 task resets restore it byte-for-byte. + +The historical task-run archive seed (`caa262ea5752016618c56e9bf01842257523cf8dae3ea25c57f719d61d7ce40f`) uses SQLite 3.53.1 encoding. Docker SQLite 3.40.1 rebuilds logically identical schema/rows with different bytes. Repeated rebuilds within Docker match exactly; reset compares the live DB with that runtime's seed, not a different platform's byte encoding. + +**166 regression tests passed** in a fresh local environment (42 application/source cases and 124 verifier cases). They cover invalid registration, atomic preferences, malformed tour/inquiry input, CSRF, local redirects, object ownership, collection membership, saved-search round trips, rental formatting, exact price-per-area ordering, transaction identity and reproducible seeding. Real UI runs separately cover registration, login, profile edits, saved homes, tours, collections, saved searches and inquiries. Additional browser checks cover invalid credentials/required fields and saving/removing a home with reload persistence. + +No forms contact external agents: writes remain in the local SQLite benchmark state. Synthetic fixture tests are separate from the recorded UI executions. + +## Visual and source quality + +[18 original/before/after screenshots](visual-review.md) cover home desktop/mobile, detail desktop/mobile, two-photo detail and the Miami list. They are unaltered browser captures with URLs, times, dimensions and hashes. Main repairs include official local fonts/hero, measured header and search proportions, cards, full/short galleries, share/photo dialogs, mobile property actions and narrow account tables. + +[16 fresh supplementary layout checks](responsive-qa.json) cover home/list/filter/photo/share states at **390px**, detail/login/tour/account/profile/search/collection templates at **320px**, and home/list at **768px**. Actual screenshots are retained with hashes; no document-level overflow or broken visible images was observed. Long account tables scroll within their labeled region. Earlier broader QA remains historical because its temporary raw captures were lost. Keyboard activation of a wrapped collection link is used by the guided runner; this does not certify every pointer interaction. + +Remaining differences are explicit: the list view omits the live map; the agent profile is a reduced source-backed contact/listings view; personalized recommendations, mortgage/property-history/school services and live communications are outside scope. Sell and regional landings now have the separately validated reconstruction above; individual community articles, external films and real-agent services retain the explicitly disclosed boundaries. Official mobile Aspen photos failed to load during capture, so that source image supports layout only. These omissions are not presented as answer-leak safeguards. The current candidate and disclosed scope were accepted on September 7, 2026; this is not a claim of individual approval of every historical screenshot. + +The 497 displayed listings retain original IDs and local galleries. Of 312 matching official transaction snapshots, 295 are displayed; **202 displayed records retain only contributor basic snapshots**. Unknown external facts stay absent instead of being generated. Source URL, retrieval time and HTML hash are in [source_data.json](../source_data.json); new image/font provenance is in `gallery_sources.json` and `visual_sources.json`. + +All requested external answer facts were checked against matched source snapshots, separately from DB/verifier consistency. Task 7 uses contributor-only 3305 Dolphin Drive as an explicitly named collection member; it does not ask for unverified property facts. Its generated share token and account state are synthetic. Detailed facts are not added to search cards to reveal task answers. + +## Task and grading audit + +There are **16 candidate tasks**, IDs 0–7 and 10–17. IDs 8/9 were retired because generated agent sales volumes and unsupported open-house schedules could not be substantiated. Task 1 now uses the available one-bedroom-or-more Condo set; task 10 saves a three-bedroom Condo search with actual results. The original IDs remain stable. + +The pool column is the unfiltered area's recorded catalog / qualifying set, independently checked against the seed. It is not the fully filtered UI count; after applying all filters, every displayed result should match. Natural pools range from 30–79 (Luxury 47), include multiple types and near misses. Named-object and account-write tasks use meaningful state changes/comparison instead of inventing distractors. Target position in a user-sorted result is not itself leakage: required detail facts and writes remain necessary. Task 13 provides the strongest comparison/disambiguation check; difficulty has not been calibrated with an independent model cohort. + +| Task | Grouped UI steps incl. done | Natural pool / qualifying | Contract / quality check | Recorded execution | Verifier | +|---|---:|---|---|---|---| +| 0 | 5 | 41 / 3 | Miami: compare exact price/area; year and MLS require details. | PASS | PASS | +| 1 | 5 | 40 / 4 | San Francisco: minimum-price comparison; year and MLS require details. | PASS | PASS | +| 2 | 7 | N/A: named object or account state | Two named homes: bind price/area/year to each, then compare ratios. | PASS | PASS | +| 3 | 6 | 79 / 7 | New York: Co-op/bedroom/price comparison; year and agent require details. | PASS | PASS | +| 4 | 9 | N/A: named object or account state | New account, save named home, confirm Saved Homes; read property type. | PASS | PASS | +| 5 | 6 | N/A: named object or account state | Change only Alice’s phone; confirm account and unchanged location. | PASS | PASS | +| 6 | 9 | N/A: named object or account state | One fixed-date Carol tour; confirm stored status and source year. | PASS | PASS | +| 7 | 16 | N/A: named object or account state | Exact two-home David collection; open its generated share page. | PASS | PASS | +| 10 | 8 | 30 / 4 | Alice search: preserve and reopen all four criteria. | PASS | PASS | +| 11 | 5 | 41 / 9 | Aspen: maximum-price Single Family; source year and MLS required. | PASS | PASS | +| 12 | 5 | N/A: named object or account state | Detail facts, then follow the actual linked agent profile for email. | PASS | PASS | +| 13 | 7 | 41 / 7 | Second-lowest exact ratio after year/status filters; distinguish similar homes. | PASS | PASS | +| 14 | 19 | 31 / 2 | Austin: type/beds/garage/price comparison, exact collection membership, MLS. | PASS | PASS | +| 15 | 8 | N/A: named object or account state | Compare Bob’s stored tour dates; preserve tours and add exact local inquiry. | PASS | PASS | +| 16 | 10 | N/A: named object or account state | Three named homes, compare recorded ratios regardless of status. | PASS | PASS | +| 17 | 9 | 47 / 4 | Luxury threshold + Condo/status + maximum price; read agent and year. | PASS | PASS | + +These executions are **guided/source-aware**: GPT-6 via Codex had inspected code, seed and expected facts. They establish actual UI feasibility and state effects, not independent discovery performance. Every run begins from the homepage after official reset, records real visible UI actions and before/after screenshots, captures terminal DB state before reset, and preserves the reset baseline. No direct DB/API mutation substitutes for task actions. + +[validation.json](validation.json) contains per-task original/export hashes, action mappings, screenshot hashes, before/after/reset hashes and deterministic results. **16/16 verifiers pass** against their own frozen snapshots. The 134 grouped UI steps include one preserved failed link lookup followed by a successful corrected lookup. A group may fill a form and submit it; it is not a claim of 134 primitive actions. Native exports map semantic operation labels to the actual click/press action without changing observations, final answers or DBs. Raw JPEGs and pixel-identical PNG exports are retained. Full-page capture was unavailable; viewport screenshots and complete DOM observations are retained. + +Initial scoring found genuine parser false negatives: a price-per-square-foot number and an appointment date were mistaken for construction years, and confirming the Tours page was mistaken for a confirmed appointment status. The fix adds 17 positive/negative cases, including contradictory or missing years, dates/areas used as decoys, negated status and false appointment confirmations. Two additional failures were native action-name packaging issues; the original and normalized hashes are both recorded. + +The **124-case current verifier suite** covers wrong answers/object associations, foreign-origin and missing-navigation replay, no-op write tasks, unrelated state mutations and legitimate alternative paths/wording. The earlier **111/111 ad-hoc adversarial matrix** survives only as a historical structured result; its raw constructed fixtures were lost and it was not rerun after the parser fix. It is not counted as new task execution. Screenshot format checks assume a trusted recorder; independent review must judge the actual executions. + +## Independent execution review and reconciliation + +The [independent Claude Code comment](https://github.com/aiming-lab/WebHarbor/pull/84#issuecomment-5559623084) reports **16/16 PASS, 0 FAIL**, agreeing with all 16 deterministic results. The reviewer reports using Claude Fable 5.1 (`claude-fable-5-1`) and freezing its first-pass verdict before reading the PR, verifier code/results or prior conclusions. + +- Reviewed candidate: `b66016dd16dfc7eb776f58d5490fc31caecac68c`; actual runtime image code and execution checkout are distinguished above. +- Input manifest SHA-256: `3125bf726ae7e8faa3020c070d5f08037b619f0474ab3c2c552a272e25be41fd`; all **618** listed inputs were rehashed during reconciliation, with no mismatch. +- Frozen verdict SHA-256: `342633f8e1a3f0a31cf5983912c196573a4c7336591d66d3c315938f1035f662`. The original verdict remains unchanged. +- The reviewer checked all task trajectories, decisive DOM observations and before/after state, but visually sampled only **4 of 268 screenshots**. Its comment's total of 258 is a counting error. This review does not certify human experience, source fidelity, visual quality, recorder integrity or verifier implementation; those require the separate evidence above. + +Reconciliation covered the following specific points: + +| Point | Evidence and resolution | +|---|---| +| Pending eligibility in tasks 3, 11 and 17 | The existing seed keeps Pending / Contract Signed in the `for-sale` category, preserves the published status in property facts, and marks `is_pending`. The local For sale filter tests that category without excluding pending listings. The tasks refer to this fixed local snapshot and do not request active-only listings. Recomputed selections match the recorded outcomes. This is a clarification of the existing filter, not a change to task acceptance. | +| Search area versus address city | The reviewer's claim that using `city` gives identical results is incorrect for New York: a literal `city='New York'` query has no qualifying Co-ops, while the actual UI search area includes seven via `city OR market_city`, including Brooklyn and Manhattan. Rechecking the real UI query preserves task 3's selection and PASS. The task asks for the New York search area, not an exact address-city string. | +| Inquiry message in task 15 | The task requires submitting a local inquiry, not displaying its message afterward. Independent row comparison confirms exactly one inquiry with the requested subject/message, user, listing and agent; all other tables, including existing tours, are unchanged. The inquiries page displays the subject only, as disclosed in the blind review. | + +No application, seed, asset, task, rubric or verifier change resulted from the independent-review reconciliation itself. The subsequent owner-reported Sell omission is a separate application/asset change, documented above. That reconciliation-only documentation update reused the frozen executions and verdict; the separate Sell follow-up has its own UI checks and does not expand Claude’s review scope. Human experience and visual scope were subsequently accepted; see the current maintainer handoff. + +## Reproduce + +```bash +./scripts/fetch_assets.sh +./scripts/build.sh compass-review:current +docker run -d --name compass-review \ + -p 127.0.0.1:8201:8101 -p 127.0.0.1:42000-42019:40000-40019 compass-review:current +curl -fsS http://127.0.0.1:8201/health +curl -fsS -X POST http://127.0.0.1:8201/reset/compass +python -m pytest sites/compass/tests sites/compass/verify/test_verifiers.py -q +# Run a task against http://localhost:42019/ and freeze its DB before reset. +python sites/compass/verify/verify_0.py --run_dir RUN \ + --initial_db BEFORE.db --after_db AFTER.db --no_llm +``` + +The HF candidate is immutable and publicly reachable but its PR is still open. Maintainers should merge/resolve the asset PR, update the pin if the merge produces a different commit, run the final build/asset/reset checks, then complete final integration review before merging this code PR. Original independent execution feedback is resolved; the refreshed task17 verdict remains outstanding as disclosed in the [maintainer handoff](maintainer-handoff.md). Human experience/scope is accepted. Maintainers perform the merges. diff --git a/sites/compass/docs/sell-guides-review.md b/sites/compass/docs/sell-guides-review.md new file mode 100644 index 00000000..ab4b2da3 --- /dev/null +++ b/sites/compass/docs/sell-guides-review.md @@ -0,0 +1,70 @@ +# Compass Sell and regional-guide reconstruction + +The previous Sell introduction and property-list substitutes did not reproduce the source page structure. This follow-up restores the Sell marketing sections and **24 regional guide landings with 401 community cards**, including their original media/order and responsive layouts. Original contribution: [#25](https://github.com/aiming-lab/WebHarbor/pull/25), **sarendis56 (Peichun Hua)**; reviewer takeover: [Review #84](https://github.com/aiming-lab/WebHarbor/pull/84). + +**Application `7f6dc008603182c6ace79ad52e52f2f8b804ae4b` · HF `d86ec0bfcbb98f92efbe6b6b4440f9dcc6cceb69` · Compass `40019` in the 20-site registry.** Human visual/scope acceptance was recorded on September 7, 2026, with an explicit Ready request. The refreshed independent task17 verdict remains outstanding; see the [maintainer handoff](maintainer-handoff.md). This does not claim complete Compass service parity. + +## Source / before / after + +Reference pages: [Compass Sell](https://www.compass.com/sell/) and [New York City guides](https://www.compass.com/neighborhood-guides/nyc/), captured September 7, 2026. “Before” is `25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf` with HF `b09ad95`. Candidate captures use the application above except the unchanged form states captured at `c25326d` and card-shading state at `83658f0`; each image retains its actual checkpoint in the manifest. + +All **36 images** are unaltered browser captures. [Validation, URLs, UTC timestamps, viewport/scroll state, pixel dimensions and SHA-256](sell-guides-validation.json) accompany them. Browser viewport sizes are 1440×900, 815×900 and 390×844 at default zoom. Fonts were loaded, no document overflow was observed, and top captures independently confirmed scroll zero before/after. Full-page dimensions differ from viewport height. Source videos can show a different frame; no dynamic regions were masked. + +Click a screenshot to inspect its full resolution. The long-page rows show the complete structural difference, not just the hero. + +| Page / state | Original | Before | After | +|---|---|---|---| +| sell · 1440px · top | ![source-sell-top-1440](visual-review/sell-guides/source-sell-top-1440.jpg) | ![before-sell-top-1440](visual-review/sell-guides/before-sell-top-1440.jpg) | ![final-sell-top-1440](visual-review/sell-guides/final-sell-top-1440.jpg) | +| sell · 815px · top | ![source-sell-top-815](visual-review/sell-guides/source-sell-top-815.jpg) | ![before-sell-top-815](visual-review/sell-guides/before-sell-top-815.jpg) | ![final-sell-top-815](visual-review/sell-guides/final-sell-top-815.jpg) | +| sell · 390px · top | ![source-sell-top-390](visual-review/sell-guides/source-sell-top-390.jpg) | ![before-sell-top-390](visual-review/sell-guides/before-sell-top-390.jpg) | ![final-sell-top-390](visual-review/sell-guides/final-sell-top-390.jpg) | +| region-nyc · 1440px · top | ![source-region-nyc-top-1440](visual-review/sell-guides/source-region-nyc-top-1440.jpg) | ![before-region-nyc-top-1440](visual-review/sell-guides/before-region-nyc-top-1440.jpg) | ![final-region-nyc-top-1440](visual-review/sell-guides/final-region-nyc-top-1440.jpg) | +| region-nyc · 815px · top | ![source-region-nyc-top-815](visual-review/sell-guides/source-region-nyc-top-815.jpg) | ![before-region-nyc-top-815](visual-review/sell-guides/before-region-nyc-top-815.jpg) | ![final-region-nyc-top-815](visual-review/sell-guides/final-region-nyc-top-815.jpg) | +| region-nyc · 390px · top | ![source-region-nyc-top-390](visual-review/sell-guides/source-region-nyc-top-390.jpg) | ![before-region-nyc-top-390](visual-review/sell-guides/before-region-nyc-top-390.jpg) | ![final-region-nyc-top-390](visual-review/sell-guides/final-region-nyc-top-390.jpg) | +| sell · 1440px · full page | ![source-sell-full-1440](visual-review/sell-guides/source-sell-full-1440.jpg) | ![before-sell-full-1440](visual-review/sell-guides/before-sell-full-1440.jpg) | ![final-sell-full-1440](visual-review/sell-guides/final-sell-full-1440.jpg) | +| region-nyc · 1440px · full page | ![source-region-nyc-full-1440](visual-review/sell-guides/source-region-nyc-full-1440.jpg) | ![before-region-nyc-full-1440](visual-review/sell-guides/before-region-nyc-full-1440.jpg) | ![final-region-nyc-full-1440](visual-review/sell-guides/final-region-nyc-full-1440.jpg) | +| Sell · 390px · full page | ![source-sell-full-390](visual-review/sell-guides/source-sell-full-390.jpg) | Not present in the previous implementation | ![final-sell-full-390](visual-review/sell-guides/final-sell-full-390.jpg) | +| Sell advantage · item 2 · 390px | ![source-sell-advantage-2-390](visual-review/sell-guides/source-sell-advantage-2-390.jpg) | Not present in the previous implementation | ![final-source-shading-advantage-2-390](visual-review/sell-guides/final-source-shading-advantage-2-390.jpg) | +| Sell comparison · item 6 · 390px | ![source-sell-comparison-6-390](visual-review/sell-guides/source-sell-comparison-6-390.jpg) | Not present in the previous implementation | ![final-sell-comparison-6-390](visual-review/sell-guides/final-sell-comparison-6-390.jpg) | +| NYC nearby · expanded · 1440px | ![source-region-nearby-expanded-1440](visual-review/sell-guides/source-region-nearby-expanded-1440.jpg) | Not present in the previous implementation | ![final-region-nearby-expanded-1440](visual-review/sell-guides/final-region-nearby-expanded-1440.jpg) | + +## What changed and what was measured + +| Area | Original / previous problem | Repair and evidence | +|---|---|---| +| Sell page skeleton | Previous page was a short introduction; source has two lead forms and a long marketing sequence. | Restored 13 sections: hero, lead form, advantage, strategy, choices, benefits, results, listing comparison, film, selling terms, second film, footer lead form and methodology. Original source media and resolved source CSS variables are local. | +| Sell interaction | Missing three-card advantage stack and six-state listing comparison. | Both controls work forward/backward and wrap; accessible current-state text and inactive-card visibility are updated. Desktop/mobile card proportions, static navigation and inactive RGB17/RGB67 overlays match observed source states. | +| Sell geometry | Typography, content width, imagery and section spacing diverged. | At 1440px, measured source/candidate marketing-section heights align: hero 659.33, advantage 1429.13, strategy 1376.38, choices 691, benefits 2377.55, results 908.19, comparison 1280, each film 1048.13 and terms 1509px. The local form is intentionally shorter because its notice describes local storage, not real-agent consent. | +| Regional guide landings | Six local regions showed property snapshots; the other 18 directory entries left the mirror. | All 24 directory links now lead to local source-derived regional landings; 401 community names/images/links preserve source order. Runtime HTTP reads these records from SQLite. | +| NYC desktop and mobile | Missing regional hero, community-card grid, source breakpoint behavior and nearby-home groups. | Source header/breadcrumb, 502.5px desktop hero, four-column card grid, 194px image height and mobile single-column layout reproduced. The original hides the hero below 648px; the candidate does too. | +| Nearby homes | An intermediate implementation incorrectly used three columns and compressed the page by about 600px. | Source groups are vertically stacked at every width. Source and candidate now both start at y=4978.43 and measure 1007.59px high at 1440px. Each group is 281.40px high initially; Show more expands five links to fifteen in the first NYC group. The extra local external-link notice accounts for about 32px of full-page height difference. | + +`neighborhood_guides.json` records the original page URL, retrieval time and HTML hash for each region. `visual_sources.json` records source media provenance. The JSON is an initialization input; request handlers read the seeded `neighborhood_guides` SQLite table. No source script or iframe is embedded. + +## Real form and reset checks + +The two Sell forms submit to the same local POST handler. Valid requests persist a `seller_inquiries` row and redirect to a session-bound confirmation; refresh does not duplicate the write. Name/email/phone/ZIP validation, CSRF and escaped retained input are covered. Invalid submissions return 422 without a partial row. The page explicitly says no email, call or text is sent to Compass. + +The browser submitted a synthetic inquiry in both the isolated host preview and the full Docker environment. The host row-level comparison found exactly one new seller inquiry and no other table changes. The Docker submission was captured before reset; Compass reset removed that row and restored the seed byte-for-byte in **0.75s**. Reset-all completed in **2.58s**, restored **23/23 seed files**, and left all **20 sites healthy**. These are UI QA executions, not new benchmark task runs. + +| Empty form | Persisted confirmation | After official reset | +|---|---|---| +| ![empty](visual-review/sell-guides/final-sell-form-empty-390.jpg) | ![saved](visual-review/sell-guides/final-sell-form-saved-390.jpg) | ![reset](visual-review/sell-guides/final-sell-form-reset-390.jpg) | + +[Mobile nearby-links expansion](visual-review/sell-guides/final-region-nearby-expanded-390.jpg) is also recorded. + +## Engineering, assets and task impact + +- **178 tests passed**: 54 application/source cases and 124 verifier cases. Meaningful new cases cover seller validation/CSRF/persistence and SQLite-backed regional reads. Subsequent isolated CSS/markup/shading refinements were checked in the browser and by final file hashes; they did not change the POST handler, task data or verifier code. +- A fresh full-20-site container from the incremental candidate returned **200 for all 20 homepages and 470 local routes/media URLs**. The final prepared image and QA/owner runtimes match all **455** payload hashes. Full startup/reset checks ran on image `bff69b1e…`; the final image `fc194126…` adds the isolated card shading and nearby-layout refinements, with fresh browser checks. This is an incremental build, not a fresh clean fetch/build of every site. +- [HF #53](https://huggingface.co/datasets/ChilleD/WebHarbor/discussions/53) contains a **210,301,426-byte** Compass archive, SHA-256 `077cfb2334cb40bf191b2e557c0becd6e28a1901e7ea80183216c1e9db1544aa`. It preserves **2,467 previous files**, adds **442 public media files**, and replaces the seed with an additive migration: the original **nine table rowsets are unchanged**, plus 24 guide rows and an empty seller-inquiry table. Total: 2,910 files. The other **19 archives are unchanged**. Remote immutable revision/size/hash were verified. +- New seed SHA-256: `86c648f437651974e169ab2ed4921b85b15bd2116008fdbb66dbf118d41b663d`. Repeated initialization and canonical boot preserve its bytes. Updating the owner runtime preserved the existing nine benchmark tables; the final layout-only update preserved all eleven current tables and left the other nineteen site processes untouched. +- The **16 task/rubric/verifier contracts remain unchanged**. The existing task handlers and benchmark rowsets are unchanged; detailed answer facts were not added to result cards. All **932 original execution files**, **39 refreshed task17 packet inputs** and the prior frozen Claude verdict were rehashed unchanged. Earlier runs retain their own code/asset versions; they are not relabeled as executions of this candidate. The [main report](review-report.md#task-and-grading-audit) contains the task-quality and negative-verifier audit. +- The earlier independent verdict was 16/16 PASS but visually sampled only four screenshots. The refreshed task17 packet requires all sixteen screenshots and still awaits its independent verdict. Neither verdict substitutes for source fidelity or human visual acceptance of these new pages. + +## Remaining boundaries and delivery status + +All 24 **regional landing pages** are local; individual community long-form articles and nearby property searches open their explicit Compass URLs. Sell films use local posters and external YouTube links, so autoplay/embedded frames differ. Seller inquiries remain local. Shared navigation glyph/link spacing and the benchmark footer are not pixel-identical. Concierge financing/contact services, live maps and other disclosed service limits in the earlier reports remain outside this implementation. + +Those service limits are separate from necessary benchmark differences: synthetic accounts, local state, stable catalog recommendations and withholding detailed answers from search cards remain in place. No missing service or visual defect is classified as an answer-leak safeguard. + +The source-led structural repairs and local validation are complete for this scope. **Human experience/scope is accepted and the PR is being handed to maintainers for review at the owner’s request. The refreshed independent task17 verdict remains outstanding.** Maintainers perform the eventual code and asset merges. diff --git a/sites/compass/docs/sell-guides-validation.json b/sites/compass/docs/sell-guides-validation.json new file mode 100644 index 00000000..9f022ae3 --- /dev/null +++ b/sites/compass/docs/sell-guides-validation.json @@ -0,0 +1,2278 @@ +{ + "application_checkpoint": "7f6dc008603182c6ace79ad52e52f2f8b804ae4b", + "before_application": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "integration_base": "90afddb6d4af382935ded9a385f2eead604188cf", + "generated_at": "2026-09-07T14:19:39.380546+00:00", + "status": "Historical validation at capture time; current human acceptance and Ready request are recorded in maintainer-handoff.md. Refreshed task17 verdict still pending.", + "assets": { + "archive_sha256": "077cfb2334cb40bf191b2e557c0becd6e28a1901e7ea80183216c1e9db1544aa", + "archive_bytes": 210301426, + "asset_base_revision": "b09ad95ac9428d5f98e1dc6206f1fa5f87aec671", + "unchanged_prior_files": 2467, + "replaced_seed": true, + "added_files": 442, + "total_files": 2910, + "seed_sha256": "86c648f437651974e169ab2ed4921b85b15bd2116008fdbb66dbf118d41b663d", + "revision": "d86ec0bfcbb98f92efbe6b6b4440f9dcc6cceb69", + "hf_pr": "https://huggingface.co/datasets/ChilleD/WebHarbor/discussions/53", + "remote_verified": true, + "other_19_archives_unchanged": true + }, + "tests": { + "command": "python -m pytest sites/compass/tests sites/compass/verify/test_verifiers.py -q", + "passed": 178, + "warnings": 229, + "seconds": 25.15, + "scope": "Application/source/verifier regression; not UI trajectories or visual acceptance." + }, + "seed": { + "old_sha256": "caa262ea5752016618c56e9bf01842257523cf8dae3ea25c57f719d61d7ce40f", + "new_sha256": "86c648f437651974e169ab2ed4921b85b15bd2116008fdbb66dbf118d41b663d", + "old_tables": { + "agents": { + "count": 250, + "sha256": "9c9003c415c0e3a0d118c6534ed13b422fbcd2a333d0e518532142a23465fcf5" + }, + "cities": { + "count": 11, + "sha256": "4705713f2e4e5fed542879a8c814da5b36cd34ba5fa8cfb9b01181b71a4af06f" + }, + "collections": { + "count": 4, + "sha256": "d10149d4110070ea36a7ff70911c768bb529261e43d87ca2f42494d14a2a46b9" + }, + "inquiries": { + "count": 0, + "sha256": "4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945" + }, + "listings": { + "count": 497, + "sha256": "0f6ce2628645f780a2497716fbb3d0fbaab4671d36fa0b6ef428d8a3974716dc" + }, + "saved_homes": { + "count": 12, + "sha256": "2e58ebb6c53cb8e56abaf68eb50aabb8ac372b2b88e4abfe99743873ed33daf7" + }, + "saved_searches": { + "count": 4, + "sha256": "faef3ad889ae070d7cf1e2cfdd50ca95537e654b8613664754fab30bfca7073d" + }, + "tours": { + "count": 7, + "sha256": "bd05e3787e31fc8457ef84d5927ee51e3ee233a4470435af74af9a46a5af302f" + }, + "users": { + "count": 4, + "sha256": "4bee1b099487ef66b1b9c6f4b9aab9be0ffe11596473134fcd97d912d73df918" + } + }, + "new_tables": { + "agents": { + "count": 250, + "sha256": "9c9003c415c0e3a0d118c6534ed13b422fbcd2a333d0e518532142a23465fcf5" + }, + "cities": { + "count": 11, + "sha256": "4705713f2e4e5fed542879a8c814da5b36cd34ba5fa8cfb9b01181b71a4af06f" + }, + "collections": { + "count": 4, + "sha256": "d10149d4110070ea36a7ff70911c768bb529261e43d87ca2f42494d14a2a46b9" + }, + "inquiries": { + "count": 0, + "sha256": "4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945" + }, + "listings": { + "count": 497, + "sha256": "0f6ce2628645f780a2497716fbb3d0fbaab4671d36fa0b6ef428d8a3974716dc" + }, + "neighborhood_guides": { + "count": 24, + "sha256": "68a5e4c7a74ea03e13011e7a8192d9e48d26fdddbd9cf3b553e0c92ba9780c2c" + }, + "saved_homes": { + "count": 12, + "sha256": "2e58ebb6c53cb8e56abaf68eb50aabb8ac372b2b88e4abfe99743873ed33daf7" + }, + "saved_searches": { + "count": 4, + "sha256": "faef3ad889ae070d7cf1e2cfdd50ca95537e654b8613664754fab30bfca7073d" + }, + "seller_inquiries": { + "count": 0, + "sha256": "4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945" + }, + "tours": { + "count": 7, + "sha256": "bd05e3787e31fc8457ef84d5927ee51e3ee233a4470435af74af9a46a5af302f" + }, + "users": { + "count": 4, + "sha256": "4bee1b099487ef66b1b9c6f4b9aab9be0ffe11596473134fcd97d912d73df918" + } + }, + "original_9_table_rowsets_preserved": true, + "added_empty_seller_inquiries": true, + "guide_regions": 24, + "community_cards": 401, + "repeated_boot_byte_equal": true, + "canonical_boot_byte_equal": true, + "sqlite_version": "3.40.1", + "scope": "Archive migration and repeated boot; container reset recorded separately below." + }, + "runtime": { + "full20_and_reset_base_image": "sha256:bff69b1e1bb4064f119348a712eaa849d518043b1625a197432f10063f729ed8", + "prepared_final_image": "sha256:fc19412657658928bc3fc49ec46e9d610d9877872bae778060d2f84d4d32a3cf", + "files": { + "app.py": "f2c06095e6e104d5b6fe38e5ae111d952fbaeba9be0fc3f95be9449c5c3ebdae", + "instance_seed/compass.db": "86c648f437651974e169ab2ed4921b85b15bd2116008fdbb66dbf118d41b663d", + "neighborhood_guides.json": "37e733338922fc88484754e353ef6d54c879553c5ec6e9181920d829ab1904c0", + "seed_data.py": "38fe8aeb886d4f0bfe81f4d568ebc220f10b06aef77afe0ce10fdad7361013c3", + "static/css/neighborhoods.css": "702522f9f521398032492ef6d0cdbc4a25a7ae90cd1a92b9c8acd063195ad6bc", + "static/css/sell.css": "5f28d45f457e883223b695ae1408db36919604605c5070a3a54c7f63269afcd1", + "static/external_cache/region-guide-007b403eb86a.webp": "1554de621d2d1859e73a396ace66e8779c5ea76c318969b97996b35c00aca912", + "static/external_cache/region-guide-008399a5e906.webp": "f560498a2bf34fb0232c2e4fb36fcbaaac7d152548d69f94692dc3d82b7297b9", + "static/external_cache/region-guide-00addedd860e.webp": "b1728ae8fe1767834f2a88baca6a5d9718a92a108a0b4bf074f936f8edfb315c", + "static/external_cache/region-guide-00b8c0a99067.webp": "f2b4798c829418db8fa5d6d8099685e2f910cebb8091baf50a887883c726f829", + "static/external_cache/region-guide-0186cbccea2a.webp": "3d49d4434e962b386c1c9fa20978cf633d6988cdee70d7b95564bfac33347f16", + "static/external_cache/region-guide-02e657616e4c.webp": "4b31744ac5f8b8e9acd6f5bfdf52e8fe98c8bd29e226c828d61f8cfc83b4d139", + "static/external_cache/region-guide-0309b51de403.webp": "57f7ef53e28501481e4c86f6472789b0ac0fa8c7a03b6e2c8ebc0e158f2b6993", + "static/external_cache/region-guide-0364ddc6d76d.webp": "de4bee099676ef94ab941ef8848c2b8b4519c23a99c6c7ee5424ae92f09a2e51", + "static/external_cache/region-guide-03a0224c7acc.webp": "99ae52f4bf9167555b93ac9cdd9288327318e87cc2675dab1beb1dc32ed3ed6f", + "static/external_cache/region-guide-049513bada27.webp": "2c39b0e82e06eb5295c5b64c46b3dfae599326af685a5223d40c02daf1b9a128", + "static/external_cache/region-guide-04a3ac4c25e7.webp": "10fb687fbd297d113377ef9112e011183088d028d4926a9bbf5925133c58ef0e", + "static/external_cache/region-guide-04c9ffd60d11.webp": "8557782046b3a428db7706a075e663ac943e0d25535a51dba53332a4efe9125d", + "static/external_cache/region-guide-0560f938d7ce.webp": "fcbf4f3d75a133dc2deb795c53f46068c121834b8dae0f8ad742c581cc09ec2a", + "static/external_cache/region-guide-05ae6c1643e9.webp": "ba9a1c4083f55eea0e36a290214d9cc92c8d39eb8a261f2933f1dc53832513c2", + "static/external_cache/region-guide-06e65f6c251e.webp": "6aa13c93f2f60d37238211c70c1146906877b83f6f7379acb6145c5019faaf84", + "static/external_cache/region-guide-070430fd48dd.webp": "c7a33050987546446e3eefe049c1542a8127045bacf0127af388d890c889739c", + "static/external_cache/region-guide-070c97916927.webp": "71fe91e97947442467ac66192f04f465ca703fabc3967da162d7b5e604b6170a", + "static/external_cache/region-guide-0771d08eed0e.webp": "497739d99c104a778da4aef49f4ce5cf6917e99b157cadae4c88388693a911ca", + "static/external_cache/region-guide-07846aa3eb69.webp": "9a7669e76a1c321dc57ba488b17d21b540d835bbc75664e0cbb6c0d15ee4bbb5", + "static/external_cache/region-guide-08c403dd6419.webp": "800c11136ef3507c0e5e92bc4fddb712de9bd4fcd024ada57404338c4433d37f", + "static/external_cache/region-guide-091b6c28663e.webp": "bc20cc118d3d92e172f0888f59adfb22ac553d46721e10a861b3e7b69eff751b", + "static/external_cache/region-guide-09a5a84d528d.webp": "60d530480d60a43dd14c7c6d775bbbe76353d21cbdcbdbac261c34697140333d", + "static/external_cache/region-guide-09babe3ef36b.webp": "b5ed1c7dc67d7d39a39c6358f78554e6e6be359eac4ebe236686961833df13f3", + "static/external_cache/region-guide-0a5e91e5fb39.webp": "927986cebf02353e0f91fde58e9810d5a80e350f4b53f5309f95906210261bab", + "static/external_cache/region-guide-0a906ffda4c6.webp": "f273bdffe555472072b2ae3b7832d851fa3c40594979560e85dd33c36963eb7e", + "static/external_cache/region-guide-0c8177c8d809.webp": "9bf114c818e95feff1c172a3e49934866006db77a95f4992fee678b243de297d", + "static/external_cache/region-guide-0d79f94a7b31.webp": "3470e9b5bd28fc158c5a386d3e5e7841e5dd9de60362d3d8498f5fd9ac8dda33", + "static/external_cache/region-guide-0dfecfb2853a.webp": "8a43040c7fc41ca3e5bcdf44b61e75a25fb760b81e541e0ada4af262a64d0cad", + "static/external_cache/region-guide-0eb3510f18d2.webp": "c05fafdf16815677dde1ca4a26d4d2cf7aaba0876b024cbf373051b1e6523d76", + "static/external_cache/region-guide-0ef04caf55d4.webp": "1e4fae8f9e22c384a11c7fa7940dea1012afed6133e7ededcdbc4cf8644c4d77", + "static/external_cache/region-guide-0f333f7eba4a.webp": "79350df908a3a20c7ec1546b55acee71ffe52eb7253f4abc8e4ef594cc019104", + "static/external_cache/region-guide-109677b512f0.webp": "a76bf4ff7663a7e4b5c8b2bba9641c393fc4fb4611c7502bbf75149816adcb91", + "static/external_cache/region-guide-1241dbdcf189.webp": "a7087b1a7779833cbae6779bafebd8227300554766308f313d36c266e09add0b", + "static/external_cache/region-guide-13002aa2ff67.webp": "dbdd7f0f5de70f0f870a9e9184bebfbd9e29a6de807ec6849f5bec6da147db26", + "static/external_cache/region-guide-134e48552a3a.webp": "feb6e6406576643679a4884b8ccc39cbc20e688c62ad31ad3e08859e9af7b3e7", + "static/external_cache/region-guide-14b45b97ff3c.webp": "00ca8cb69698a74f633d6fbb0adefea6867eb4d2f577ba6b585b30da8cb77a6f", + "static/external_cache/region-guide-14f797fc8a22.webp": "363af944f9d83aa86272099aab313b0be72a675dd52bfc84dabdb6b047a0587e", + "static/external_cache/region-guide-16d27b6f1544.webp": "1bd6510fb18dcba560fe67dee4979e7c6811684561b69803f0a951ab53268b72", + "static/external_cache/region-guide-17487ac94659.webp": "750f9e12e638d7a394bf71b53b35adaa47f3dbfd1545cff9be77d1b7a0823715", + "static/external_cache/region-guide-17758dbcaf73.webp": "d228de8ea24fd716e5b83fa14acf472c785ce476d04bd287205e9b7144997c29", + "static/external_cache/region-guide-1795138d9cf7.webp": "71278efb4b1f535d46a91ebbf493e27f95043c974b1514bae2dd0be6b6f7f811", + "static/external_cache/region-guide-17fd8b47babb.webp": "eae3b8082695ab9ead9a68fae0735fdd22f621705f7faf6ce3d9465c504452c6", + "static/external_cache/region-guide-186fadd059b2.webp": "4acc65deed215eefe5d9f6713aa06de93c1f6c975959cacf83bd2eb5ce124ef5", + "static/external_cache/region-guide-19c5f54a9804.webp": "4d2726a51b4b93a596f114a111a56c0efdcb7ce7edae6d982818715c7bd1cc97", + "static/external_cache/region-guide-1a8fd5b801a4.webp": "d8d37fee48ff18b51a1fd0c97b4e7ebaa76c9bdee257d8b1a38e181641cf815e", + "static/external_cache/region-guide-1ba2ced243ed.webp": "f368c2a8f623d67f70f8889b1518eedaa978476c4da39b2cd90edd8d36fbb5f9", + "static/external_cache/region-guide-1d72b8c56db0.webp": "9470049f3d237d23838785ee0827fc9c14b5ff00a131b6c0dc217d92014f69f2", + "static/external_cache/region-guide-1e75aec0f9ad.webp": "69c903862ddf8464ab31e68d11f599d45194de41d4c9f27605c72125125a6f24", + "static/external_cache/region-guide-1eafae4fc3e7.webp": "fdb9fc45c7d67c844303040d4966150b32d2c9dc6e48d79cfbd6190e70e8ec54", + "static/external_cache/region-guide-1f092bd1ce8c.webp": "85c7912f22b7607f762ed149f899cfb820cfe2d7944179ef7129b583fff93c9d", + "static/external_cache/region-guide-1f256c704ecc.webp": "a97b209b6c5429cd578ff70eaca98993accc511c9a65ace39d0092fdac26d901", + "static/external_cache/region-guide-1f5e1fb5cc9a.webp": "55809fdcbc7df59a5c8611e577250001d5bfe5560661f3bb57380af3c9a90759", + "static/external_cache/region-guide-1faae51882f6.webp": "82e4189a924a4b5a56efa8ebbd8669d9fca06af3f106097795164bc3dcc1d707", + "static/external_cache/region-guide-20f7493cb449.webp": "f3539abe6f5f3622cc7386ef8ec391bc3f9a7824771ace4094d014d3d2fce64c", + "static/external_cache/region-guide-217bd3b29b21.webp": "d54b45ab6b78b656042709f68bdedb2529bec0af70e8d706d4367d3c8ddbeb71", + "static/external_cache/region-guide-21a161da1ca6.webp": "357dbde21a99ab956358354d4f3bf37053e14d90c00112827eaebb41cc76b09a", + "static/external_cache/region-guide-2205b29bdbaa.webp": "af8af24b357b15a1378fb82b3208c5a1658fb3dd9edd6623527922bef75209e4", + "static/external_cache/region-guide-223ff9733004.webp": "8dcd578f5ddcfee31fbfe71e00fc29db46e99d3e04cf5009a57547353f8cc607", + "static/external_cache/region-guide-2288dc97b44f.webp": "636793d32bedc20f3b87470d05c4a765058fddd2b11d3361a9e93702f4989ca7", + "static/external_cache/region-guide-231c645d1f35.webp": "bb4f41f7ea6436b53c0a81b98f68b04e1fdfdb753042e8d599c875fa866df3a7", + "static/external_cache/region-guide-241736c27011.webp": "88f2c19c5b66e67bb83346b7c360b3d90b1e1d42ea44a8ea99e724122e988977", + "static/external_cache/region-guide-244186948090.webp": "717af0e9fe2febab8f091d5fac135b80fb8516587ac8e0f3122fe72851da494d", + "static/external_cache/region-guide-2470e57dbccc.webp": "194ab15e8a5a8929ee49faaa9f66976dd8b5d97d5b7d945d4a3fbadbbef2a1e4", + "static/external_cache/region-guide-25076e6fa21a.webp": "dad980e8f59c8cfbd63dffa67f220c642940a6375669c7065b6c56bd0b271150", + "static/external_cache/region-guide-25cceb424a4c.webp": "b18ddf25835ffc536a35efdd3746c8a05b500a1c97da5cee89e61f558243925c", + "static/external_cache/region-guide-2841e2fc14b6.webp": "533753ef1f1e6d79d565d58ee6d314ee7bfb1c43a4e6fdac349cc21d67587bcc", + "static/external_cache/region-guide-287c031cafc9.webp": "2f9daf2ccf927e647d768c9f497bea1ea88e9853c280447729fa643d3ce1d5e7", + "static/external_cache/region-guide-29e1110ec8ca.webp": "08382866c516d05bccf312915386e8187300a0468483acd0a88b5fdef673553a", + "static/external_cache/region-guide-2a40168f586f.webp": "9df0fc66deab6b2d05c47711f6d7d9606994cf923224b07828b860cf3c0db346", + "static/external_cache/region-guide-2b3123ae914e.webp": "47cb49810868033a73f8bb4e53f14d3119d295841e924f730eb52f85d03a8a82", + "static/external_cache/region-guide-2b8766ddea03.webp": "e90ae154903eeadd851460020836cfdbda72f57737089e8cabafd1dfae3a09db", + "static/external_cache/region-guide-2c512e541371.webp": "5c8414e25808541aaef8896c7137adc3060a03f7807e2733691a6fe909fefe31", + "static/external_cache/region-guide-2cd3bff77d5d.webp": "89531886d2c8205aad84c914b7c6d1191560ef358609e12462c019bd549ac7a2", + "static/external_cache/region-guide-2d1774d598b7.webp": "a068e863bce9a87fb61a247b9b0a804a2b0ded29dd2ea652c110f393d8f90887", + "static/external_cache/region-guide-2d95bada0c6d.webp": "2339d0d28a2b4619856fe082598944b74a83cc96b752d11af3495c305f63c671", + "static/external_cache/region-guide-2da1bd2c6d33.webp": "5fe21ff9c8df954588ec7df51f14437730d9b5ef080e858aa6025359e5422f41", + "static/external_cache/region-guide-2fac0d94e219.webp": "52b1e6ad61c130a44c63d642ebe058527636fe86b6f7ebb1b302714c9aadbade", + "static/external_cache/region-guide-2fb73b99fc30.webp": "c7dc72cc90676e8259de24b30796825e80fd46a60264bb312fff8253471a7855", + "static/external_cache/region-guide-300b17635f54.webp": "61c51c4e81e0f4a49c87d6cff725cbe3b99b5442829f4529dba2ab8076dbd1f1", + "static/external_cache/region-guide-30420e617bdc.webp": "e363dc2546dd856c5e97b2251eda04985ed93a00ffcaf0916b9499eb29e9921a", + "static/external_cache/region-guide-31e19c6fd393.webp": "b7ae696f968f6f9a4fe7658a89a16fbfcd14630ad267d76ad7b03e9a8d870337", + "static/external_cache/region-guide-3216720ef22f.webp": "1efdc74a100e7bc9507b6324506191cdf5e81ac38e3b5f84d88e236382dfe911", + "static/external_cache/region-guide-33d4a627c6a6.webp": "f309640523630bdc0396f891419b7f2a5e8d95946396125287b3bfaf422bd3e8", + "static/external_cache/region-guide-34bca67bdcee.webp": "82f16ca3a59c53cac2471e4fd08a21353c774d66555f49bb156d6def5c4ef5d9", + "static/external_cache/region-guide-34d4ba4e3ed2.webp": "e4756ebcc056d82952789265b99ba601b5e9516e093e08f4eb7c304f9ef104c9", + "static/external_cache/region-guide-355ca01b5eb3.webp": "f5094fc585c3aa0d63400d9eebc2ab76bf43cc580bc5c62bec56f1c95c6857f1", + "static/external_cache/region-guide-35921ff6d835.webp": "a75494e69a3125a25d0c5f3057546928b911d3bcb2b7b030b5fa4b139fb8ee69", + "static/external_cache/region-guide-3598c1239ced.webp": "d96b2321a1e0e9ef91ed284737fcf76d7da8824d6cb4573a0550a4fbe5436c36", + "static/external_cache/region-guide-35d9a7550e52.webp": "ef5bbaacdaa3066647066b2c118474edda341012a19a24be3a472215e46cd9bb", + "static/external_cache/region-guide-35ecf1f0f86c.webp": "67e31894e7ef4a99082c0107b40b4417c3c6e1bb7ce61cedb707d79f97832eac", + "static/external_cache/region-guide-3630000c37dc.webp": "72fe468760a402f5cc3f7e1ef9e4827b997e92b24626db93a29cbb47b2ac5e77", + "static/external_cache/region-guide-370fa090cbd2.webp": "695a78ea96ab1b95b57cbc7cc16acfba15768f7a04807ecb4007ecd3d398c1fe", + "static/external_cache/region-guide-37d7d153d1a9.webp": "bb772c609ca15ecbf91a9ae803e1846c52174299142f5347176d0afd64f3173c", + "static/external_cache/region-guide-3a47d3789bce.webp": "5b7bc87bf595a9c4b378e5782bdeeeed2b160279909b2170a6d69ad42b7e7b66", + "static/external_cache/region-guide-3a61c7ade1d0.webp": "84ba55f238940658d209d14676a77eae3e555d7cee8287d0c6ae3c61f402df86", + "static/external_cache/region-guide-3b8b61cfcdd2.webp": "e0870dbddaf10104d5600c1e6b5a8d55c25fe7702a950ee377384e36b6303b1e", + "static/external_cache/region-guide-3bf7a1699ab8.webp": "e1b58ceed81330a08b3b154bea74a4eb4847f77f76a019cd88e03c2ba4005f5b", + "static/external_cache/region-guide-3d09d6645109.webp": "39fea2bb1fe2ad8c02d020ad00746e77ab1bd303200ae3e15ecf85c99df357b2", + "static/external_cache/region-guide-3ee0cb81c0aa.webp": "4dbe50ff524e2703925ce0ef138f6a1213d31d2a9bf5fdb72e86aeb71d0f51a1", + "static/external_cache/region-guide-3ee32bb32400.webp": "8f373f1b2d939b768cc9487cfb37c1dd37369c24a113645322c4b6ab08586cf3", + "static/external_cache/region-guide-3f626ffb97fc.webp": "2130603ee048f65348fe525bc8be19f071dfde6abd39ecc1e0212333593c14a1", + "static/external_cache/region-guide-405b6a17ae9d.webp": "b03fcf0209fb914b218062d5a44d5a13ee5cca490bf97a0412365cb25e0fc77a", + "static/external_cache/region-guide-412b4727cbd5.webp": "f18e0c8d358530ee5233318beb22738e4d8c3015e8a1cf49b9379c84cbf86c07", + "static/external_cache/region-guide-4163c0483a59.webp": "84c82022c712944f58e6ba6484194a2bff71fbda6dd2c9604ee268de7781764e", + "static/external_cache/region-guide-420536ac6b6c.webp": "a21cec865a232339db2c49b0445dea20b6b8d573b596789bdd736b27d1125e51", + "static/external_cache/region-guide-4262ccd7a114.webp": "c4d3d6038269d10b3d8e94d77e5e35e541f7d320b87914ccff568c3bfd7944f1", + "static/external_cache/region-guide-42bc0596bce3.webp": "b60f3f82cd785224ba1d6fc97743972fa474ee5352ef3580b2789fe9a15fbede", + "static/external_cache/region-guide-4431f99e1165.webp": "63179354130aec82a750ee8cb9aea59b606a26890dacc40054fc4ad0086bb5a8", + "static/external_cache/region-guide-44baf9093f37.webp": "c25cf185a091dba8e10c6b7af93108a6c05a7e5ca2e7932f488763ccc568cda0", + "static/external_cache/region-guide-44c297a5bd64.webp": "b1c6f59da4756bae9284675477aa51c21b76521e6a8e92ef531199fbae8d3f27", + "static/external_cache/region-guide-44e852f3f7f1.webp": "9d216978d0073b98175a4edb8f625d550e8d3b1b274164eb1e15708b6e27c11c", + "static/external_cache/region-guide-4504c805d6b0.webp": "483a5b40347780074804ec1791417bfca2a9f28f11653f97bcc54c312d631c1c", + "static/external_cache/region-guide-46d7ef91a6ae.webp": "78aefd43d87dc7949b96c00aa25685d18f19103e78390978f24a5455478c4ad5", + "static/external_cache/region-guide-46d981096d81.webp": "9d6b5493915e6fea3ed42241aef492a4affd73d0d7f544b179eec710bd696231", + "static/external_cache/region-guide-4709990b22cb.webp": "873abae6def3292a2d4217c7cc8d84fc027e6a53cf8d474945e0813fa5decc32", + "static/external_cache/region-guide-477fcda1d645.webp": "bb844f0ce7a76bae0be301074527840819f67204bcb4bee126dbf1ffdb1ccd57", + "static/external_cache/region-guide-4788dec674ce.webp": "cc4f806db4b840ddb3ef9ea12e1ba615b9e2787cb1af7b9050f84c4685356398", + "static/external_cache/region-guide-47def130b05c.webp": "e207665450488ed06a2958d140dd77b7b8495fe7af24cf18755f7530920c97a3", + "static/external_cache/region-guide-496b023bc529.webp": "aa6fa92bd4b741acd78bb110d084c7f00378ef218b84426d81332100e7a2b6e3", + "static/external_cache/region-guide-4a43b679e71d.webp": "9171360ac87759ce18cf2b03c92b2e4564fc5c48b1dc6e7ce70a8175778c209b", + "static/external_cache/region-guide-4afb54757cfa.webp": "789353a842dcfba8a93d565cbb640c50de6f6fa10ec4df052d290d6494f1f49a", + "static/external_cache/region-guide-4b514a762f53.webp": "9723192ee11344f4d5ed3f82df3916f42824d59590c02f6df64e9295942c0b02", + "static/external_cache/region-guide-4e91707a768c.webp": "cecf00824dfef4d4c3eddec2a3bf74e3845f74ff5f3967edf20d0d5664073bcd", + "static/external_cache/region-guide-4eeeda761442.webp": "d0c45754c421316af74466728f98789398b25709e81e3ddead343c0b4bbae037", + "static/external_cache/region-guide-4f4f58571df1.webp": "b051782ae2f1be6db12b4a7604a2639dbb105882efcebeffb927a2ead580725d", + "static/external_cache/region-guide-50188c0ecb69.webp": "4e7810e34718085c5f329358b0b56bc6974407c923ffe2db3ca448e19bc7d8c1", + "static/external_cache/region-guide-51314e4385e2.webp": "8d8ef24119647a3b3e9a6174abc2549a6a570e0a094022913d480716700640f7", + "static/external_cache/region-guide-518a44bfa117.webp": "a97b93110d01b7db1bf64b8b0b40758ae03f97b74717b1381e987d1b59434cfc", + "static/external_cache/region-guide-528a84a5de65.webp": "32499b157f0f80eef58938e930e6d0f250137c645b098a902bedf8d990eca5f3", + "static/external_cache/region-guide-52b18e8ba7e7.webp": "4d68361ac9c961bee628cc5c1d1e403fab9c24a2a3c8e695d37524dd974615ac", + "static/external_cache/region-guide-531f584795fe.webp": "6c25428a2f6d2b52645856a4eb0d6fcced9b2389c0ce10d7e36ee6bf62f0bb35", + "static/external_cache/region-guide-54b45fc3db58.webp": "07e582bd124fcdffc8a5930551f4fd3b0667908266a611d690aa51fad567c908", + "static/external_cache/region-guide-55840c713c61.webp": "c3ace03bbc8bd27af0968cb4d189520c57664b0c265c6bbb2967b8e8b7426b27", + "static/external_cache/region-guide-5666e818b576.webp": "e83644d9e9e1c93ac80b9136a2af47d4339aecb1b10380c90c81f4c49874997d", + "static/external_cache/region-guide-56974d5dde09.webp": "1847ed92a94de6742a9ce1234d89aefc395811f58912b428d4adf0a4dd422687", + "static/external_cache/region-guide-57769852e3b6.webp": "80b7abec3723ff04a0927adb56cda7af3c22f8b3db64519769ae2a903cd5411e", + "static/external_cache/region-guide-5890dee18e21.webp": "0a6376062c67255e011d91cc6b977736cefac28144538f8cd382ea549f9fa8ad", + "static/external_cache/region-guide-5b7f74b5fb28.webp": "0051ce7ca4b8ec7457bbf54bd2b3283d814d5d386c46e9bffb9baebb5ba34c55", + "static/external_cache/region-guide-5de523bfed38.webp": "b2b70eee08d0de10630e4cac523a2cd6db4a35051381f8dd9145049047503316", + "static/external_cache/region-guide-5e30ac018875.webp": "2c4ccb1a27400f25644f75148676a8c94a116ceb7e743aad71c5e80dea067789", + "static/external_cache/region-guide-5edc80578abd.webp": "b3c4a59f8590e699e34ef20081fee0f602ea4183dd89c0d4262e871dd40f21bb", + "static/external_cache/region-guide-5ffe84c0038c.webp": "c2338d0f58d147944d154de91e89e888f1f44a8e813464d960c250525125d176", + "static/external_cache/region-guide-602d0f891aac.webp": "eee303dd88b1711ec2fc6f4503c934e92abc4cee3a5fde3e9d43266cfbe848c7", + "static/external_cache/region-guide-6368270722a1.webp": "f6edde4f09f803d1fbdb5c78f87e00cb26a8dd27e2ad59bd73c8980918ae6502", + "static/external_cache/region-guide-63852d0a58f8.webp": "ca4e1654dd6b3cc240a946a5935ad91b58d5f82b22c3366f9132d834a752cf79", + "static/external_cache/region-guide-642c7d4137cb.webp": "22bab2fbf1bbc0471686f79095c2181ca12fde6c2fec2f408be230e71bd6d8e0", + "static/external_cache/region-guide-64f1c1bfeba6.webp": "fff1b9c41d843aeb21fc12819d3d2cb75fdaab834361e1828afb01e2ba9dc2a7", + "static/external_cache/region-guide-654a235628e0.webp": "40ccbc4fde61c8100a52c37874d992d9502deed113bccf9d3222c351e9bdc2ac", + "static/external_cache/region-guide-6564b74a4e3e.webp": "c14e7457ee339e5fb03709ccb982416b0a328ca428adf8f3bf10b985ae573cd2", + "static/external_cache/region-guide-65de16807750.webp": "378fcdebb46491e47afcacfc78327fdc064df04e527b0695aea289a3c41d5eed", + "static/external_cache/region-guide-66266116d901.webp": "e8372ca033a0a1e4d4746f2c1357883a6bd553df4d20659de48fba32147f9791", + "static/external_cache/region-guide-6665ffbbdcb3.webp": "fc3588e9b3d21be3d8a3adda94d4e110e35aa3ce6724aa9530fcc9d2c63d2975", + "static/external_cache/region-guide-6715335adb85.webp": "1d3267b657af558e7c9a3d824fc671294216e7da0816df743d0dbce81f751007", + "static/external_cache/region-guide-6719709095b8.webp": "f4b1d65c8bca3979eda19ab89bc1109cbc68476213434bdf2b2627d5c2b09d59", + "static/external_cache/region-guide-67d43049ff3a.webp": "5e68e1202a80efdd56891d1fe6eecf1f3608f891cf37721defac5b22a0b2941d", + "static/external_cache/region-guide-69268f51c296.webp": "26f71ee7871c48cbfe73d1992e20d1f9e670340fbe0b3875582e65c52acec201", + "static/external_cache/region-guide-6974ae4936f9.webp": "3d064d71d89366b2d290188a3518e0a1f5f2f56a89dbe50e3e8addc63b0b52b1", + "static/external_cache/region-guide-6a4f31f06352.webp": "cabcf9ba229e061ce42781469e9134a0537d5ee54fdee74575cfdc45fe243090", + "static/external_cache/region-guide-6a52d201a9bf.webp": "ea34538b97a1e7f13a00a14e555d91e8391c45019a782343a644537b42b1d93f", + "static/external_cache/region-guide-6a88d81be80b.webp": "35711fdd7ab88e99418cf03aa812f46af3cf478148444ad56137f25d789f6d05", + "static/external_cache/region-guide-6bad18107b74.webp": "42c9e3e5ac28a4e6d4057339ac54f260ea874e80cfb891b8c9eca83d9289c5c3", + "static/external_cache/region-guide-6bbd64d55423.webp": "0359b3e4938d28b79b9a559ec48c7f298e0a2d48785a339b8a4f210d48da96fc", + "static/external_cache/region-guide-6c56b43ba9d0.webp": "61c5e9fb038ceb2252f82329564d5ce03fef685eb86afdc511d7df4bb1e65ed2", + "static/external_cache/region-guide-6dde367d85f1.webp": "6fb235dd730227cabbd0b961ea106b36c0f75c964762f1f0015caf64554ee9c5", + "static/external_cache/region-guide-6eb97cad6230.webp": "159ad127ddd337ffaedd93982b0c86d87f7f4a221f3c143db8cee1853a90d837", + "static/external_cache/region-guide-6fac7cbe01e0.webp": "341c08d18f6172a68d271bb5b1863397205f46f2813d20ce0666e080d205c363", + "static/external_cache/region-guide-700520058384.webp": "ff6c712e4e1db6d787b12491441dbb1b0808d9c25916153353122b9ec69b6cf0", + "static/external_cache/region-guide-7041d756689a.webp": "c6d11c272c7d420eaacc1c6a8bae5983d23d74c34a93e01a6be365cca2737bf1", + "static/external_cache/region-guide-70ad8df27afd.webp": "9b2fdefcc4605c72dd741f4c46cd89803d465e0a22bd45827b14a4cba9cd1c19", + "static/external_cache/region-guide-710adcd108c6.webp": "5ba37a5b808adf173d3061494be8b879ff234ba77a8306a32dc3346c7cadb529", + "static/external_cache/region-guide-72c527ff5159.webp": "86cd09d0b7fdd590a8101fec260dc1f9dd79023ad7c82b39cd5b782241f36b3a", + "static/external_cache/region-guide-72f7bced29c1.webp": "2c4363162dc5b6053bfc13c4bfd26005812eabff0d7da361cb08108270ccbdb7", + "static/external_cache/region-guide-73a562f3ebe5.webp": "ba3664c9867f7fa93f6723731de5ff9bd0a8f8bd16a45276938dd6d577aafeb1", + "static/external_cache/region-guide-74ed6b175fda.webp": "9c7c524c424e6977cf232ed462e0abec4bddb962b37f41e377fd4b9fe1f31a70", + "static/external_cache/region-guide-75a40502cfea.webp": "aff05e470bacf93c397decd6febe9d81a7273d0c322cfaea7793937006dc7fed", + "static/external_cache/region-guide-76240ee80ed0.webp": "794c9ca553fb2f3a6c317e9252eb61b77b653fc3eecafe29086e5a958f71e0d1", + "static/external_cache/region-guide-763449aa0a5b.webp": "cc4024b12f7755c6bba34bf85ea09a388685d27d5ac84521fdb3f524afc34e91", + "static/external_cache/region-guide-777b5ad3f4b2.webp": "387ae86ecfc0591855663c3bffa97232b0674c9677b468e26d9a1ffbf7d54d30", + "static/external_cache/region-guide-78938dc94326.webp": "07780e89f757931705d8dcf181b8fd3549167589fb2876b5ef0a713b0c5eeb69", + "static/external_cache/region-guide-78ed49ac8c9e.webp": "c864a6ebdab6cef0a0756b08640d96a30637f0a9493a7ef2d7c5277adbfa95c6", + "static/external_cache/region-guide-7a25621755fe.webp": "f050d53e8588d6cb2896c85fb0a2d93e7469b03b762a8ffc5eb27cc34e4470d9", + "static/external_cache/region-guide-7a9becf0c8ca.webp": "72cbc5b47e5bef7c00872f5b0d6509ea1f987dafd2d218938af4d9df895f45ec", + "static/external_cache/region-guide-7b64424775bd.webp": "cf653fb13537359a479dec7066412192816099113007221c8a7049ee853f6dcd", + "static/external_cache/region-guide-7ba06efa434d.webp": "cb51f9b493bca4bdda5c8585dabc4ffe2b24fba35dcc4cda8f01f92d2adb1187", + "static/external_cache/region-guide-7bc977c25cb6.webp": "65ce679ffa55b0a6f2718593780c8a1142b56851a0c94c01e58fbdfe6cf92fe5", + "static/external_cache/region-guide-7c86c057a207.webp": "357a2ca11f4ef723587d583fadbd31f2bebc361100254401ceefcde3294e699a", + "static/external_cache/region-guide-7d6c232a8833.webp": "7df3d6d7c2f704b56764a092a9387aab589071e55491956d089ed6fc9236c794", + "static/external_cache/region-guide-7deec9db7fb5.webp": "ec36dae3b01fc56ebc63dae7080f3e3239f3addb531066610e9e387684d20c20", + "static/external_cache/region-guide-7f05a4ded99c.webp": "6a1d9ef4d75e2dc7b836e9343f2f4c30d741962464a3096a5697f3342780930e", + "static/external_cache/region-guide-7f79be849f24.webp": "3b6804245ef2e1de92560edcc33aacc62bae57d96fb40afbc6e2c438eb7544dc", + "static/external_cache/region-guide-8029205a033b.webp": "6e6b9845c58ac1fdc90f44149eba32b1dabd09ca5e8e914627112426d61169f7", + "static/external_cache/region-guide-8057c65183d7.webp": "25787815181f157b367442fb2ec6f1007f8f34dbfdb678f13a69fb4fb780e116", + "static/external_cache/region-guide-8097d54bbf3d.webp": "293515bb8165d098421a156f14d65f7a3b66fe113516615a1bdbbc53280407da", + "static/external_cache/region-guide-80abad3abd72.webp": "75e127559aa698ff06b092a84b67fde0ea2e800783839b4096fb0ed5e741435b", + "static/external_cache/region-guide-80c4478696bd.webp": "fed4ed91031358bc4981a80dfbcc5459d2aa231f8af5233b921f720062cb63ed", + "static/external_cache/region-guide-81a960d72b93.webp": "ecf2dd2b6b5e64463d05f34328f5c5aaa2e0e0f80f7b9b5f31c3e20627ec30f0", + "static/external_cache/region-guide-8296c6a781fc.webp": "d7167ba2013848e9e03428cdaac731d7af893c1c469be0eb1b6169ac911eabd7", + "static/external_cache/region-guide-82addae9475f.webp": "b821f1a9a2de173b5a051393b75a92de94526e8d6de33005d4891949c1437d4e", + "static/external_cache/region-guide-82fa3089a68f.webp": "f172f58e808bbc14896db64d5151092d9af63ae972f5671f82733af969e6cebf", + "static/external_cache/region-guide-8336459a6857.webp": "66e91deb58609ecb35b2bf04e6b6d21016f020bb526b0544e6e33cdad9a034f0", + "static/external_cache/region-guide-857fdb7ea4ca.webp": "b8d3c07d44d36a09a4405c2edaaf0f9df1549d2f6b0b4fc5e760b136636fa8dd", + "static/external_cache/region-guide-85ddf40b6730.webp": "044c712e258b8316bce158b0b9b9ab2d95cec757d37c616c16678d85fea3e661", + "static/external_cache/region-guide-862a59d9075a.webp": "15f4ae897d6100327955151395c98d631cae74d27ef6b0d12277c4494a9adde2", + "static/external_cache/region-guide-8664d7c692a2.webp": "7b8fc205ce2405bf0702b04710e9a5b4164739707d7207dac750b423db9f0637", + "static/external_cache/region-guide-87c50f01975c.webp": "477ed655eae0792485954682ca1921ab614f1053e2cb75fb096419a686568ae9", + "static/external_cache/region-guide-885509215f55.webp": "a99414b6b6adc3be4302c968ce0c945d780d639ad7b96e8200e3b87882d61f9e", + "static/external_cache/region-guide-886aad9ac558.webp": "4e50c4850c62089a528eaf751a0e219c4cb18d60a11ec923c57679bbd5a09122", + "static/external_cache/region-guide-88885e7b7496.webp": "83517d9ab8f4e309dffebad7f81c730c4242d55e0faec3be9a5932b257b24b60", + "static/external_cache/region-guide-89e3a0b4d17c.webp": "f88f246119f51f4a7d10b8fed4c5a769a290e8821b6eda78c80a0bc4452b1ee1", + "static/external_cache/region-guide-8a0009658a7a.webp": "50bc33c8b2e1b60592d03392de7c2fdefee5c0c70daf950c95fbdb680e6f3ca7", + "static/external_cache/region-guide-8aa71c6a19c7.webp": "ec7b37bec9734263e911cbf5263bccb97583953cb2049853f02a43480a6af0fa", + "static/external_cache/region-guide-8af4ed3ccdd9.webp": "771b4602347437eee579ebb11e25649cdc94c558b8794afc1cbb48b8bd10c5c4", + "static/external_cache/region-guide-8b1feca638ce.webp": "9a2e21aa16e7e6a6f3fff220e606c74ae3fcf449c56a3ba469a37c5d17658d37", + "static/external_cache/region-guide-8b50a6f18948.webp": "c84db16eb06ab0ce356a1820d7062e21e5756dd30fb0966224497b361efa1c84", + "static/external_cache/region-guide-8b60b54b0247.webp": "a5d577efd38180b8da164218f0ffcadc8fb54e0a23d2c2544dd3f55bfce43855", + "static/external_cache/region-guide-8c95120a8721.webp": "072a7a956df264da7f7ef371483c7cf34011383f81c41cc89a066715c47fd4ab", + "static/external_cache/region-guide-8d2e72d35311.webp": "5330294edfd646d8e282e706b46ce593245f5073e8d0b6823084fb1f89fd13c1", + "static/external_cache/region-guide-8e180fd2ab5b.webp": "5b96ea97471a752f69ec8e256d8914e8de8a71ab864ee409407b3d5e46983d9e", + "static/external_cache/region-guide-910c3329153e.webp": "06d43d3c03a6dc78b572f6437a25901d0c7242bfd0470d2f2e58408249f65920", + "static/external_cache/region-guide-9110ce55fbf1.webp": "95c639c52b4ea00fb59074487d0fc1431d2955080eacf505753e42baa258b9d6", + "static/external_cache/region-guide-91934630df32.webp": "9be30a903036a81fe0bc400814ae3ecc21687c457113ff7bd16a18e787b18662", + "static/external_cache/region-guide-919cf50d99a3.webp": "bfb261bb392a47337e98d705a548ce77ac0b379bee35da9a3a6cb2948ce4b65d", + "static/external_cache/region-guide-92278c7a9f26.webp": "ce74413d59119dd34ab612076f474b0bbf057af1c480278b454d37a75eb58934", + "static/external_cache/region-guide-93141911ddff.webp": "29f341ed54d49cfa440f4a3366042565990b90540a9249312c2b8a58a9ad063f", + "static/external_cache/region-guide-942d0534b713.webp": "090858e4095a79394e3c52c61c98ea7ea50d654702c8f34dec34165bc2c15549", + "static/external_cache/region-guide-9465ef1b50c1.webp": "ae4ac9418837bacb57bcf4a9398506839bc14c19d8c8fb2f1804836d8247608b", + "static/external_cache/region-guide-9487a7ad67ff.webp": "a231afc68c95f8931acf708577e1543509e6045754af016732c5baabe2a2461c", + "static/external_cache/region-guide-949b72077588.webp": "384f1c729101744ca1b3f20f912af52ffd504f5a4bc57747225ffc6c9223b928", + "static/external_cache/region-guide-95cb7ca369e6.webp": "0e97bea2b23a3ca0995862ac41f29bc3eb1f7fec06b3cbb2e629a72c962fbcfc", + "static/external_cache/region-guide-970a377578e3.webp": "975665ef9575d4a4d009b4580a309d0def969792df1764df31f62165537f91c7", + "static/external_cache/region-guide-97c360738dfd.webp": "22e97bcd668ed35da820113ad8cdda786cc1a49df70be3871ca0478265ad9260", + "static/external_cache/region-guide-987706428130.webp": "816f5804b9d1f6a05031866b308d99e89b3832830de1b3aff7a71167b85654ea", + "static/external_cache/region-guide-98e8dd95d5e8.webp": "3859236b9ac4d3deb97018fa297b3fed103dbf8ea3b0289b4bc49c5178ade7eb", + "static/external_cache/region-guide-9a4c369ef13b.webp": "e9d552bdb10e3c78fc10e2726a9cf4e93a8e8e125589d55919268e51fd237c50", + "static/external_cache/region-guide-9adc7b61e48b.webp": "d092cd9b8d85ec25626feb00fdde673d4171501513e5191c1bfbfecceba9107a", + "static/external_cache/region-guide-9b6a74244296.webp": "914ca6bfd622666e20d63fae96b299cbe4fb5ef3e9a737fad38d3db514c0c2ed", + "static/external_cache/region-guide-9c146c694bae.webp": "a66107e57f27ddf09514c9ce853c9dd762b7f2117421f4f28648b4370be51470", + "static/external_cache/region-guide-9c2aead403d8.webp": "b951514c844129899660cabc2bd8f7fda0202480331ef6ade1dba417133029b8", + "static/external_cache/region-guide-9c409c22ecc6.webp": "6e965d86439d5e57080c75ab59b73fe88181942f8be230e415bd48dbab9a7a8c", + "static/external_cache/region-guide-9d0bc9a3dbb2.webp": "afa43fde7ba84e479cfc45c3021b4957134e71e05124c2959b6c3ceed50bc221", + "static/external_cache/region-guide-9d3567e4ad52.webp": "ab36fbba80a2ad641674097aecb3ea93f780818fc07d3e30851ee390387446c7", + "static/external_cache/region-guide-9d9e35225416.webp": "fb148aa6a32f2919e5a9a0297f89e3f17f1afeb776757779125bbc10dff7a177", + "static/external_cache/region-guide-9e31d4e42194.webp": "3c4cb0d675639a0663502f594b504d6a0906df01f67f3342ba4af6b3d642550a", + "static/external_cache/region-guide-9e9cd2033cf8.webp": "6fbc64e1618a0382162f3060f126b1e0647c395418010c5ee2b338b649ad594c", + "static/external_cache/region-guide-9f236126fe74.webp": "88abe515ca154f3a7bf92f6fe23cb607e1538d7470827d5e8afd4546171a6791", + "static/external_cache/region-guide-9f5229e432cd.webp": "b6832eb73578652ff734bb3ceb6da66fe7cef2a52f9787b949424802241c8f6f", + "static/external_cache/region-guide-9fbd18fc596c.webp": "389f206ac1d9ef27c68858dc7f4e096f29fa1e3e3c429aaaa942cb86178304b2", + "static/external_cache/region-guide-9fce604481df.webp": "fd0f33cfc2734e9dccd52cf639c232ca5fb7e581c9c60f4615ccafbfa9f287b8", + "static/external_cache/region-guide-a0daa337d884.webp": "820388ae5cb28a9d72bc634fce21509b4a3d47229e0bf52ecad62421e3002b3e", + "static/external_cache/region-guide-a0e2153bb946.webp": "b5d8477bc7361c2fa9d6e1d58715fcdffdd640841e2a89bc5c06b2ea37f1c918", + "static/external_cache/region-guide-a0eeb2c9485e.webp": "0de05dcd85529e446ea7e1dec9dd150ffc2d2c85c84ac465d5d45483965030d6", + "static/external_cache/region-guide-a12c2e714feb.webp": "5fadc01a1a89f7b6994d509a62418d68f6f7cd7d6163a7912532874f52334c7f", + "static/external_cache/region-guide-a1a8fa8cd0fb.webp": "ba2582304a423c114af0925ce0d9928534eb6e1a189003d004f05ba711a8e34e", + "static/external_cache/region-guide-a237c3ad6be8.webp": "fe961da311381b0021e1cae502fa93ffef59d2323981bc5ce9bc0f0646e483b3", + "static/external_cache/region-guide-a2df976413ce.webp": "2f4c3bd28c46b1e1d364f233222cd725145522b68d4eefc945cb9bb8c0744cc9", + "static/external_cache/region-guide-a32e7b4ef6ab.webp": "1c08fc3dd54587386d5765c66b7f083b9b667f9efd3af0957fe5dc142f1d3f7d", + "static/external_cache/region-guide-a35c15cba543.webp": "5755dad11b0f13659ff3db5fd53a4bd33c74f3d82a119ddf3f71c6ad0583e9ab", + "static/external_cache/region-guide-a396024d0848.webp": "4b12ebc50f161164fe7c110462f4e3090eface57a80bb46e1a9eb30c22fabe5c", + "static/external_cache/region-guide-a3a6b9027f89.webp": "e0cc7f7d48dc5378877b1c1f5d7b6adf37bc7c2b3cd807284854e440658550a1", + "static/external_cache/region-guide-a3a6fda14676.webp": "61b8d8098d9c344f7a6b2db4b474dd890e7bf1748d73315e9f1f42d98e0a9cf9", + "static/external_cache/region-guide-a5f5d1d932f6.webp": "c1c12c2245b5dd2ed93822c0d5a94ded7411f5c27eb1ef3781b21d4b828f188c", + "static/external_cache/region-guide-a666fef6c455.webp": "1cf89d09d695f2f9d15ac77a2ff1b6307bf15bf5eb7f40a3d4b4dc719004b1f4", + "static/external_cache/region-guide-a6790f1ca5c4.webp": "ce6425a39ddb86d229b2efaf76a19bcd7442f34837ba7ff533fd83ad6f8b53a8", + "static/external_cache/region-guide-a6d535451c96.webp": "279f8c982a5032155f7b2d9b2eab347a14779fa3d7e8f4306038b4f2404fa79f", + "static/external_cache/region-guide-a6ed30805bcb.webp": "3afcdc61925e2cd9e7183cac9d103ca9a6f0e2f87c024278e295e87018003a61", + "static/external_cache/region-guide-a71c5e496d17.webp": "0ad4c7d190a93e8f866aad09d86ad6206ae74974d0e2a816ae8cddc955c4bef2", + "static/external_cache/region-guide-a7fb4763de72.webp": "092de188042e88df63adb594fcc4268e9e5bdddce2bf62b2092a49d81fd681c6", + "static/external_cache/region-guide-a8f8efdbafc9.webp": "f8d69699706fdea69632d2f9812c0b43333676a576d21722e53b842ec6fc2ead", + "static/external_cache/region-guide-a952f8ca215e.webp": "5f1f3acf70e71a6a22b92da22e35f005c0b41f3d3407835df633b65ca1197634", + "static/external_cache/region-guide-a973cac781bc.webp": "0bf9914ce13f7b49cdcd251949d56a6a6bfdb717f03bed3633c2eb1ea70422cf", + "static/external_cache/region-guide-aa0869145ec2.webp": "9b5b3073b9a3c8d8bfbdc3feca7707b890f2448b3f00b736fb6192dcbc0c7593", + "static/external_cache/region-guide-aaf46e0831be.webp": "8eb61453c5f91dbf521fc46407cd8af290f271bc7e67c97f4738a3b58ad37a28", + "static/external_cache/region-guide-ab6f2bb5746c.webp": "4f922a691d0c32f42725d967e8ad48a09f5189e2f73d4adf44ba075150bf542f", + "static/external_cache/region-guide-ac1f395cc05e.webp": "a2f617feb3b126f21b41e437813167bf1f3a29693d26f3fe01670bfbc748bab7", + "static/external_cache/region-guide-ac63ba553121.webp": "4e6fab2dd465ccefa4e60dbf7bac045030327235c0011c32e8a15f2672d03bf0", + "static/external_cache/region-guide-ad047421bf01.webp": "32c3c236e573d1d3e2fc6976597f1cdec4925e0808575197324d5a6c9ea5418d", + "static/external_cache/region-guide-ad10bec48382.webp": "170b7cb040286c3faa5b2b208e459b4c6532d19ad8ffb6ebba5c48346a5c09f3", + "static/external_cache/region-guide-ae2d8eefd43d.webp": "a66b17978adc6aaa7b267b8f1213c5349d604c52ef9463df1e60fbe1e10d49b7", + "static/external_cache/region-guide-aef8435e1ce2.webp": "7464b6f807016fcfb3da1fe58713c83f3c7671054c10cda18184f9e65781208b", + "static/external_cache/region-guide-aefd1835491f.webp": "58e65e66c694463bc0442dff6f97c1103ea340d71ef7a0da581d5db1471ff81d", + "static/external_cache/region-guide-b062dc972145.webp": "e5dbf4c3ad37562c70895779c2f5440b08f7f8a7335bc399829bb7cca5d39c25", + "static/external_cache/region-guide-b1da4832d048.webp": "dae3a95813c3fb058e6284b269b7be0384c0e16cd7082a615cfd1df61762d14a", + "static/external_cache/region-guide-b1f074b80d87.webp": "ba8a778f51ff327b1e9b8201a41af48c50147188bb3cfff5401943c450886769", + "static/external_cache/region-guide-b2a4f97443fb.webp": "f4c1cf8451337f073d1ab27f3692de430cfc78665fb56227a7dc59bb07f661c0", + "static/external_cache/region-guide-b2c55942cee2.webp": "36d045a33077d9c4b3bfe7e2b25e80e4138f91672f7c8cc7999f0837cbcc18a7", + "static/external_cache/region-guide-b2ebe4f24735.webp": "a44cb0f6af358296e94568d138e57c3a6328b5ecf3361a5efba6719d31b25457", + "static/external_cache/region-guide-b2f4932d2a81.webp": "3a0851da62ed19b97f5baa382bb9864a28be42999ac89fc31f183f321b606519", + "static/external_cache/region-guide-b2facc1ff2e2.webp": "becacb8175b40290093f858ec501694a13cf203d0a0eb5a79d24a672663cc633", + "static/external_cache/region-guide-b3eadcbe9eb7.webp": "80463806226f9b3eef533137016eccbf6b2cb77f68d8fa48db93aa7bc78ff1cc", + "static/external_cache/region-guide-b5920ddfe980.webp": "ba3c0dd22777d59a3be3c9fae4faf1408a3bda2ee4a9a20d30fe01cc745603f1", + "static/external_cache/region-guide-b6f56795354a.webp": "18a1e9f2c84af3917049e5a005f3ff99e0e76b096e811ff1bc1c794a95b5a810", + "static/external_cache/region-guide-b7047eed072d.webp": "fbc7c36414a62528d766803bbf9f9f923a15a0c44986b08ab7697ac4697196ca", + "static/external_cache/region-guide-b7f08f56076d.webp": "8f06e38d1ef3fc16eff9aa2bc2dc16db7025a132c0f22ad7f7b09cf80cb06711", + "static/external_cache/region-guide-b8509e4c095a.webp": "f9614994d2cced17d3c0f942b513a290e1c82a6e1b58a99019cb6e55068e3d90", + "static/external_cache/region-guide-b8f572d2cc35.webp": "12bd6f25465d5fca8f2f592babf476c9600b425065850f6d739a075e0050f2ee", + "static/external_cache/region-guide-bb402ded3563.webp": "9b2adebe42389d7f219635d4851235dd58d8aa6ab8946358efb2a483fa627585", + "static/external_cache/region-guide-bb46b61127d6.webp": "d3149a921ed8aebcd99c2cad9c00de6cee18817a77496e6b60d76dcbbe805ac4", + "static/external_cache/region-guide-bb98e442f6d5.webp": "7183de17bd29753650f4f7c54b03dd7ad29329819fd26483a3cc18bd3d327445", + "static/external_cache/region-guide-bc212980668b.webp": "f00559d77b3b49ca49697b0c6009203472bb1111bc918732afca51d86cdd37a0", + "static/external_cache/region-guide-bc557e0eee06.webp": "e4def39bc3691968ba5c7c083f4cdc48a48d432455498aae8147f36508e9d307", + "static/external_cache/region-guide-bd263e4aa693.webp": "7007395f8e3ef10f011464119d7d3d7d53a01c2aca9e3ebec8d1c0d56b187d50", + "static/external_cache/region-guide-bdcfe30fb6c4.webp": "30176d2f86de0c008abee9d612045c1533b75e3850031b2c4c4f209011c309e0", + "static/external_cache/region-guide-bf36855bbcf2.webp": "b5f80f345254d18c1c73d48a99d3475e985025f6f8a713292c4402c466e6ae1d", + "static/external_cache/region-guide-c043462d8162.webp": "3f7a2dc1097f248885e5e27e7fd5fe032fc3f191f5f3666b831731b08a728585", + "static/external_cache/region-guide-c0c1ba11cefd.webp": "bf0f430ca456316e6c50ba5be276c3040f985dec4cb0a36f4cc5e18b338c1969", + "static/external_cache/region-guide-c13f3b6a71f4.webp": "9357fa72d9957dd19c04e194ae912365e7f316aff1ffdeeff0ed5a9164c6918b", + "static/external_cache/region-guide-c237452f7d24.webp": "a19a2491257cbee30630122296e4cf74fdf4bcab15463236fcd409a242791e44", + "static/external_cache/region-guide-c4eff4c044b0.webp": "5b795724ab7b48014a1a19d0f2fcf296904eb629d4f2310fdb348c43db416836", + "static/external_cache/region-guide-c51f414c0c42.webp": "df8bbaeb092ab1cbe18e65743007040f61896a8e22b96dd3d7912a6e9f6d6639", + "static/external_cache/region-guide-c53354f7b49d.webp": "662af08fae726c54b5a797a82956be938e2f3a34feb2caa1ecdb2c7312d08afb", + "static/external_cache/region-guide-c5a3947d5f39.webp": "8e77e31289bd20c818f81d75a0f023ecf37b74739dd801064c056eaeabe3072d", + "static/external_cache/region-guide-c6678f98b83c.webp": "a346c0c96a3268e289cf6422884287db146a13d8e4a91aae3fd3ffaa103fb794", + "static/external_cache/region-guide-c6c18097b0b7.webp": "465fd314d5e8921e7e268f9e76daf47f341f67fbbeb311676fc71fd059913880", + "static/external_cache/region-guide-c900ee7bf8ba.webp": "2ed2dfa33fc82fe5161d6d8e7b8e5a4aa01ff45802e12b2dc0870a2502834339", + "static/external_cache/region-guide-c987013fff52.webp": "058e65e229cae39d8ddbdb3ec46870c7e1f94dfd58e0ec842e8d535822cec2b9", + "static/external_cache/region-guide-c9ff77b32042.webp": "cef3e233d7bdd2dbcac81999f1d4f788f083e6a0d39d3cb4eb94dbb1188b5bdc", + "static/external_cache/region-guide-ca3d47747a38.webp": "73ae75c712bf5b9f47d4c02e5605aceec0cf26f36950676640a03853fa45890e", + "static/external_cache/region-guide-ca61ff1e4656.webp": "c4be36d3dec9c210f8f5fb752375d5de2bcc7eb7941208a9f34104956ee5f5a1", + "static/external_cache/region-guide-cade6b4753f3.webp": "b2dfb635733ccd60d66680073998ba4f7fca409037d883588624fabb684f2f66", + "static/external_cache/region-guide-cba1df076288.webp": "2fc6818c63db5add98de073564aae8e767db111ccd072f44716fd45620488bf6", + "static/external_cache/region-guide-cc0bdfa50d33.webp": "31360cf15183a37a413e3d45fa43fc001df79be2546cf14650054e9fffa7e1fd", + "static/external_cache/region-guide-ccbb36eecccc.webp": "d4ff146e6459caf003a4da1270be051c3bc2e7d10e77a776b4f73b3b26233c8a", + "static/external_cache/region-guide-cd8c36cf9af2.webp": "4bdb2a78fffb949a37390a9c4ae3622db3e60c154bdf2beb09f0b021cc2352bd", + "static/external_cache/region-guide-cdbfc5f3126b.webp": "47dd79b815a6af5944e325a425823bcef94cba73651f82b7ae2f6e301178858a", + "static/external_cache/region-guide-cdc7b05939c1.webp": "9f560a7b18542008c00c9b588f4304d864b44925e3202500ed362fec26f38ea5", + "static/external_cache/region-guide-cdd838273f8e.webp": "4201bd28850170c400ce4b2237cc9cf6b911c1642a5475739aafec4d8c8101f4", + "static/external_cache/region-guide-cf38c9f62d87.webp": "556329a116b36c7acc43dd65376384b3cdffb50b5ec93a1ed6c000f94ebdf2f3", + "static/external_cache/region-guide-d004de403827.webp": "9a65ae38136992360fffc6f61aef1f7917d2b8ea864237a80527ad4c43b7ce3c", + "static/external_cache/region-guide-d11eab911279.webp": "56a9cc0a36684f47edffd7481248654028b8e0684f018d2b71e6c60461b3b561", + "static/external_cache/region-guide-d121fc3206cf.webp": "48747268b623ca35ef0d96b352552e92a310103c5316c6ea212c34ab363b0801", + "static/external_cache/region-guide-d151e5254f0a.webp": "9cdf0c1c9292ab110040c7e720eafcac6f3cd5d8f391efd53ab7067c2583fe8c", + "static/external_cache/region-guide-d1ad3cb5ea03.webp": "d94728ec8338b8c230c761ef1bd5c31742d4dea7ba04c8020487cbfdd3583abd", + "static/external_cache/region-guide-d23a8056fa2a.webp": "4add12b2ec40272fe69946f8720fab4fa96512674f26bc9c3c2926d50b775a03", + "static/external_cache/region-guide-d33275c2f998.webp": "cd7f57e7861b2325af5993eb1e44ef19363a9c59099f8a8943858e22b12eed5f", + "static/external_cache/region-guide-d3bab2ef21bb.webp": "b11127a2ed84ffcbed7c153f0f419f7e370c6956104ced4c3838185103d4e91a", + "static/external_cache/region-guide-d3eaf37d3699.webp": "c532b1f12e6a8539fc66f698e6a672a0f578c327be20a362144134958fb846d2", + "static/external_cache/region-guide-d50102eac06e.webp": "1e431b4f770381e9737738ea2b48bc1fc49e7f998eede035b417bc07f9b18cbb", + "static/external_cache/region-guide-d61236b4f609.webp": "6e736a168127909b0e6c982bdb949d2623fcbc7ed8ef6e978eb1b9c3e8c1e118", + "static/external_cache/region-guide-d62efcfe6176.webp": "d167ee0141723d02f7ac326a42bac500a1005a6ee1d6f4bf5fce2c257ac7b618", + "static/external_cache/region-guide-d662b8d7dadf.webp": "e84fd33bf5070d06f74d96e17bb10f408f1af696848705bd233af7773cf5aac0", + "static/external_cache/region-guide-d69f1c2261f8.webp": "c9705572bc05b999228275591206d5eea1cbd9a2675d3aace3548ac7449e0ff4", + "static/external_cache/region-guide-d6c5644605b6.webp": "645f9831aa5e4461f904614e42f087432aeaf2157166fb04614413c4fd52a6aa", + "static/external_cache/region-guide-d84f5a5c6672.webp": "82ff2ede27389879d92e3b255437e29226a2f147914720f161eb07a1d2f811d4", + "static/external_cache/region-guide-d857d6eac6e2.webp": "a218c3e027a45b2ee32025c9da6d985cd174755fe63aa7578e42afc11903d313", + "static/external_cache/region-guide-d8919fcdcb90.webp": "40a1fd480960e679b0e24399b5179ab16a7b4c8450c041176931ec5bb5784f0a", + "static/external_cache/region-guide-d8be010d8c61.webp": "ac0c89a6ba3fcb120c7476de82427d11c05b8f543ca562afb374632d9e63f0a1", + "static/external_cache/region-guide-d9db805c8929.webp": "0da89dc9987cea1fa62ccd79e53912a3ce05bbeacac7652eb68723acb41a6794", + "static/external_cache/region-guide-db9ec537aa8c.webp": "44f57caf5d0f370628eb29ca45ee02d8fa0eb4a3fe85b5ca9780aa3c8655ca16", + "static/external_cache/region-guide-dbb45b57486f.webp": "c93737fba79b6943098515e4235a9551eaa86b17fbd96d4f31763306e79e6c2a", + "static/external_cache/region-guide-dc6d17f1a176.webp": "b501f525bf75b655a87985e887754055c1a9dede4a746efd47a6ce251f919e9f", + "static/external_cache/region-guide-dcef6be380b3.webp": "a220d34cfc645de19b905ca93c30d61b172f603314ab274fff2d0a38bef29c34", + "static/external_cache/region-guide-dd0b1ddd029e.webp": "9c40318ee0f65cb22a1b15d5988879d3f0b570961fdd866d0d2d54752d1a0c38", + "static/external_cache/region-guide-dd1391f3f230.webp": "ecce76a66fb7c362f4d3193be9eec97b428165a357c1b3f2964dfc31f7252622", + "static/external_cache/region-guide-dd69708d91cd.webp": "b2912fee3e4cf1ea69fb1120711f39a64b74b7f63b1f680258f66c30986b091f", + "static/external_cache/region-guide-ddd19c8879a2.webp": "a378b1444cf0e782cf034b50dd14137d2467abfb6d73af3fff18c08f4f0a3470", + "static/external_cache/region-guide-de09920e7cab.webp": "9ed0ddd8d9787b3e7a5d53650f49dfeb52a928933b41897b0173db601966d343", + "static/external_cache/region-guide-de18a9dfa8fc.webp": "093fed7995ec6ed97b2bd9b5d0e41befc0179fab22fbac2d68e6e92907e38df5", + "static/external_cache/region-guide-de33a7807c65.webp": "b34928cbba07a1f4e25cb19428c118241ae1ad95da0e272729ee94229c10cdf8", + "static/external_cache/region-guide-de56b5742322.webp": "04cbd9baaaaf6ef0f274e8c26bc705224c1c3da01cff0492a8d8e46533efd157", + "static/external_cache/region-guide-df790c9ad79d.webp": "c9c4a8b8eee41c14ca1a7e1aa6c865b378bdf5a385b05e9081d32a38ed6dee6d", + "static/external_cache/region-guide-df90a333b843.webp": "256a9b2ee9fcae80bbfadd58875065581f1092d68131a23591af236afe7a261e", + "static/external_cache/region-guide-e0122d471756.webp": "9a6210067f4af69944675ca28038efbf6888ba2b45c11d1448d7cfb899a605a3", + "static/external_cache/region-guide-e090724d3fa0.webp": "8e5736978fe1306504f9f726d5a0f03a733f8370f15959021fdcca23e23fe890", + "static/external_cache/region-guide-e0ac2a18d012.webp": "f021971a927cb8c1cbf8ea208e869f74c2496e346ac0b28f46339192bd4f90e6", + "static/external_cache/region-guide-e1910efa0cbb.webp": "ea29c82b193372171c5752f58e33dc66e5dc6eecdcdf604a7b6a895fb7b12c23", + "static/external_cache/region-guide-e1d72276b38b.webp": "2920089d819b7c38a76638d64280008ddbe5c35a97739b19a3b38797ec36c7ae", + "static/external_cache/region-guide-e28ee366f2ec.webp": "37701a5d2852330f3241c46d40f33dc14bb8fecbe57e1d0fb875c6b5af9b15b4", + "static/external_cache/region-guide-e2fb89b2d675.webp": "7f24b99faa20794ced2450842c58c5afa1a9e1c97ebf786c2792be4d2eb36e66", + "static/external_cache/region-guide-e367010375ca.webp": "ea3f101d1b24372627437d0f654dbeb353d7c4ec73b1a467340f5cdff8cf48c7", + "static/external_cache/region-guide-e39ff72168bc.webp": "2ae0188c978049d0554c8d9e9fc1878650e1c51a5474f4bd88ee6452b6f07330", + "static/external_cache/region-guide-e42fe00214c5.webp": "5a200d3c7c246023c6277e8f0502b8ca75c5ec3470c26a8fd38283dd5016214f", + "static/external_cache/region-guide-e464cb3aa685.webp": "34abd59f8923bf12205d1141704030dfaf968e8c340e0e2e22e2922542a61be3", + "static/external_cache/region-guide-e466aed440f9.webp": "2f0bc74d0d492f94adc882b3c3bb01c44332b105b569687b636fc0cb128c72e3", + "static/external_cache/region-guide-e5320fd66b2a.webp": "606fb9085a60cce6a1de6707ddcc9b0581334bc5dca73d1a0f328bffae139cb3", + "static/external_cache/region-guide-e594990d3bf7.webp": "662cecfc18bd0daa561b80042b835dbee62657fcd6f2de906539871a86d27aa7", + "static/external_cache/region-guide-e5aa32198e8b.webp": "9f27bd0bfddd6e8dcc0713df934b33d5fd50b5e50c9eee6e5d141dbe1dc2344f", + "static/external_cache/region-guide-e5e3b5f8a57b.webp": "d3557d79ae0191f79a8c8dc5f3c54f28f274dbb763e0c59e6ad599bd89e3ef47", + "static/external_cache/region-guide-e5eae43f3320.webp": "0f6787f830c82f433de33369179da7bb52e891e710904b7f2b671c0b84cb2b47", + "static/external_cache/region-guide-e6a2fb9aa6f0.webp": "b497975eca661e909c2dc30db6bffb818aab1f7caa49a59ffd6ac7a9b5c6ff8c", + "static/external_cache/region-guide-e6db3de4f01d.webp": "2e3e608a0a6cc5ceaf8330d31ce4b0106e70b01c8f8856735128b5682126cda8", + "static/external_cache/region-guide-e7577a2d9e62.webp": "f065a44c3399d16bbfcfa07a7e3e9a1e934f4fcc2abdee4cf44736fb2b07d65d", + "static/external_cache/region-guide-e7ea1d7ff48d.webp": "ce50330cc059bc2891ba1ff3d173961818dcc9fb9c8c06cf973b909eacca03a9", + "static/external_cache/region-guide-e807d7f03d56.webp": "9771c7fcd19f41b21b8d96c520e01829c57333313864e79771fd6cc9c3cf156d", + "static/external_cache/region-guide-e82115c0756f.webp": "5ed80708a24abddc4dc609e3d77696584d47698ddc73dfaaa789457d6df7c919", + "static/external_cache/region-guide-e87329fb5ac2.webp": "d3b3c930129708a897132dd39cb8ac034dc7cb6ed1190719ef831bf1be6eebc0", + "static/external_cache/region-guide-e91be90605de.webp": "43ab2f577ec86c671e78b6f20e2b982ef3157b3b0ec2c1f623dfb344ad17b914", + "static/external_cache/region-guide-e9475062df86.webp": "b42e90f9bca9d50e5d6752ca9c3c85fe5a67b681192c7450f6bb5763bf454875", + "static/external_cache/region-guide-e99c5b4788f1.webp": "f2dadeca611b35a0ee7189878961bbbaf5eda946a1fec1b9b7f8bc704aff50ef", + "static/external_cache/region-guide-e9b7c16bd890.webp": "515820b57fb9afafc93883c4e60a423b1e1fd838b0f35b7e15385b0192d9cc92", + "static/external_cache/region-guide-ea6cf5287a4c.webp": "33a8822a019142f17dc43dd24d8369ad13e9f8454a7cc07735960a07e4d6c9a8", + "static/external_cache/region-guide-ebb4f3080934.webp": "17b8806a9f928b62cbc8594c480f3eb7e016ba3cc2203918fc85c50b1a87b8cb", + "static/external_cache/region-guide-ec5f624d81d7.webp": "44192d5c8c3ef61a5987131117f40600de9f4960a6c52d3af4e0e8d5847ebdea", + "static/external_cache/region-guide-ec8cd467ce69.webp": "a506a4c9b82d48302b18d53b04937948e5bab6f9080f938ec3703e9dc4358013", + "static/external_cache/region-guide-ecd1c7cb4cee.webp": "61b636a9f4a441508322241e733035dd4f9e06df0f59ba8a326aec94f3678fad", + "static/external_cache/region-guide-eddc668623ef.webp": "a2f02d23f5c06612fe75482c25104aa8693bdb337f8dbd6f427bd9c2951b4781", + "static/external_cache/region-guide-ee299d7efc7c.webp": "297053adec5ea9e62841fac5ca89eb0e6a8a33d8eba0a4d3729ed9a391448f35", + "static/external_cache/region-guide-efd57f068938.webp": "e55eb706c5c5bda1408e73e2c671aabc80d5213eb0afec7ef7f9a881aa05ed1b", + "static/external_cache/region-guide-efe774b972a6.webp": "b26e083e6645770d8c688578634fdf7f05a320ae94df6164abdbd1b6b80d9fd2", + "static/external_cache/region-guide-f01d22a72075.webp": "2e0adabc94c97ba485c243f33a129b64dbd0acfe6cdb6ba0c80fcf5673f526b9", + "static/external_cache/region-guide-f18bd49503d9.webp": "65c81b0f468e9c0a360cbaa250733f86c469afd02fd1e08b89af6a23168c8648", + "static/external_cache/region-guide-f221f7da5cfc.webp": "fa76cc71a3e3b3c8062a344c6cd151d3078b8badf29e5c15048008c5d1cbbbfc", + "static/external_cache/region-guide-f334c4045dbd.webp": "e2dcc5b0c9ac6f0d1c477ffc1399b5bd8edb2c6ddb18f46a0b08c8b43ba38c44", + "static/external_cache/region-guide-f38431ac9c4b.webp": "e687ed75a68c62426288ea07ebc6363489fd49699e8fc4da6d53208f7195aba8", + "static/external_cache/region-guide-f39dc04f24bc.webp": "2c6c97127ae2878e6bde67c42324f8a4a86236d18a24612b4e2b8dda6a18ada4", + "static/external_cache/region-guide-f52118027891.webp": "a478af7082fae82ff7403bc86a46c6d69dda27dc137e27ccad5316be023a5f5e", + "static/external_cache/region-guide-f5523c723829.webp": "ad8a0f06cb08543c26b2f46544f42a410d4bfad96fab2b9314a18cdf01ab1aba", + "static/external_cache/region-guide-f6d0a1592de9.webp": "dd3cffd53322a32c16b7475f523ba1eb8f01c72641fa51bafd3e01d8ae3c4cb7", + "static/external_cache/region-guide-f81d90b4ddf0.webp": "f0d921052956534b3f346bf8bdf6ac2c823ff1cb7bd532f5dc23299a39162124", + "static/external_cache/region-guide-f82e76ad51a6.webp": "cdea0c873678d993ed646ce3fe38be1951e57573b328a6ba72af5110a8e3fe0d", + "static/external_cache/region-guide-f88b3269bb44.webp": "8efb94daac1daeeadd138b9d9f966c2dc9f402c9943f5eecdc29368d4d4b2cb3", + "static/external_cache/region-guide-f926ad97432b.webp": "356162dbcfa65ba9e15a1da185a1a4ed8d95f9f435b4aa7e4d6868df28ef5022", + "static/external_cache/region-guide-f966253ef06d.webp": "5f717510b029ebb922e567a2ec46edd79af9040bd2a6f5408453fecf3cabbcde", + "static/external_cache/region-guide-fa34ee48792e.webp": "dbb0bfa8a1c87ffa6055dacadd58891ff0c0ce067f4ee76e64547b9858985b1f", + "static/external_cache/region-guide-fb5e1b0dd842.webp": "e1a92b6b644399acb50d05ef604bf9b5e26f9a58597eb4dca5254041b64718e8", + "static/external_cache/region-guide-fc9f80ec31c1.webp": "928bb2b8074ba9d511dcb11bb0e6571fc605b19c623c6cb681ee2ee8ab294940", + "static/external_cache/region-guide-fd69a8837eb2.webp": "4cbd0ec739afcd54c522164eb7c743c8fab8edfe36d499d76c8c60f51d68e300", + "static/external_cache/region-guide-fd74ea4b39b2.webp": "909628326a4855c1a7043b4a3d3225baef20016a6f55a396a627e7013b7a0f18", + "static/external_cache/region-guide-fe2bbd2620c4.webp": "e6861449dc6ccd4c72434124d62019514b80c477afc2d51283c7309e7bd9c27b", + "static/external_cache/region-guide-fe4771ed73ee.webp": "85a2897f0230b7d410f4114929ec130987f06b81d951f519cf04a04140707408", + "static/external_cache/region-guide-fe620a1f6ecd.webp": "9a1b567914388582f08df24ef4dcf3c81257bf087bdb9fa302deb232f27e2b9a", + "static/external_cache/region-guide-ff1286a07d4e.webp": "129717abed5962658f15b567c9dd882ae6e251f4476bb117a89e64913e72343a", + "static/external_cache/region-guide-fffc0d20d378.webp": "db13302e5500bf310e8357851856227f5eb52311dd8eeb1019ee37d91d3e43a5", + "static/external_cache/sell-marketing-0e719566e50d.webp": "e7480aff3dcaee3363e77797fc240a474bdefeea3e472f9c42cb4f6ef79611f2", + "static/external_cache/sell-marketing-147f66ee4c76.webp": "0448e4e5c5cbcf26cdc8f9ee59b9be511d4b89dab807f38e5d23ff7f1f30dd9b", + "static/external_cache/sell-marketing-16d3847461f1.webp": "723c909ec7f49cae5ce00d57ef0f0d3c95a5f8eb249f75b2de57fef73b7d846e", + "static/external_cache/sell-marketing-1787f0e7cce9.webp": "1e7c5e95916cc2c4f9a2301379f3cba0175ecf5f4c15ec3037aeaf113d623d03", + "static/external_cache/sell-marketing-1e98bd95b7e9.webp": "62f8051e6f12ab9403cd94300d39034c4a990ddeec1e98b0101bd20786abbd9d", + "static/external_cache/sell-marketing-21d385ef2f47.webp": "cb2ee05b94974a9e2c6d9af8f416f1d291eb56f11efbaeba49afdf644de4d63e", + "static/external_cache/sell-marketing-27d1409f2668.webp": "74576e82d74d909a8ff0a2d6c34640890b54068510ebbb731d3d6df9c0b30bfd", + "static/external_cache/sell-marketing-31c3ca7a8bf0.webp": "a38b780c6a221a5c4e6696f27c06d1a20659412fe26073c20d6d3c8424eafe4d", + "static/external_cache/sell-marketing-44a09172713b.webp": "186abdd2b10cd9ca40ed7d55922105b15df8c99fd892ef371137ca47e6aeddbf", + "static/external_cache/sell-marketing-505fb4f9287a.webp": "aff285227566a790b56014624aaa1fe3783a297c51b683766aa4e42db2c40627", + "static/external_cache/sell-marketing-57eb2afb446b.webp": "6ff3200eb00e69394f151e214534f4a0e9d2eccdfaf90b71996b2dd20e903873", + "static/external_cache/sell-marketing-6a434ab3a9f5.webp": "4302ee725d263fea14f47d01a9f0c784f940e219e31c393abd8ffd2464415af0", + "static/external_cache/sell-marketing-6f87b9ec80cc.webp": "0b50b9bd8c8b6af71798295193b6f6c039d93d169768befcb93d155d358637ba", + "static/external_cache/sell-marketing-77591f5b1f69.webp": "d86785eefeb3ab9f1f78f964711e4892ba7193b8050bafa2b4e841a9f8761147", + "static/external_cache/sell-marketing-8c74116e5c37.webp": "f452dec5ed3229717b8c942f228238c3e6fd952b5475276ab80b2c52e56b88df", + "static/external_cache/sell-marketing-aab6aeb0c5ea.webp": "aa697c83693171f650c6958600311f9d94777ee10860a699ed3a3c91edfff2d6", + "static/external_cache/sell-marketing-b2001959fa63.webp": "d50f7c117c1a15aa3110ae5ac91df17956901e55672a6cc0b5ead976be021553", + "static/external_cache/sell-marketing-efdf5ce8cee4.webp": "b984a3a498941eb9d1195df9634f64f136855c8476182a79e07bc0657960d324", + "static/external_cache/sell-marketing-f74aab548ede.webp": "12d8bd46782bddc692e05e54a238127760d8d6f168318f84a7f18dabfef1a56b", + "static/external_cache/sell-marketing-fc7c490155d9.webp": "e621dccfb6427c1677894f1088f31dde391292fcec154abd14aa03ef26f0ef4f", + "static/js/neighborhoods.js": "72f6c9610c68e8575f534b13a52f9900d4e3536ea063f89ff1df44ca41147c61", + "static/js/sell.js": "6f85636fdb98be934650fbc2878df3049a472c7ff43d89de1eae1208c732a7df", + "templates/base.html": "f4f00c8ab9ddc6430bb2b72928eb4d384f2edf57e2ee8a6580a60e5fe67b4417", + "templates/neighborhood_region.html": "cc64b456fc4dd8aeaeb39c76ef695401511b421528c56529d8d07077de898ace", + "templates/neighborhoods.html": "907f9eadacac3b9445258300b20288cea35adde6a10db64d672b6f1ce0fdd491", + "templates/sell.html": "9cd674101e75b5d0f04f096124f16f5722b6cd4775a2fa8b7a3b41dfc7d8302d", + "visual_sources.json": "ce3a28eda092fab0bf49d38458b52a22cd45502def720f5934fce2e916f4ea56" + }, + "final_payload_matches_prepared_image_QA_and_owner": true, + "homepage_http": { + "49000": 200, + "49001": 200, + "49002": 200, + "49003": 200, + "49004": 200, + "49005": 200, + "49006": 200, + "49007": 200, + "49008": 200, + "49009": 200, + "49010": 200, + "49011": 200, + "49012": 200, + "49013": 200, + "49014": 200, + "49015": 200, + "49016": 200, + "49017": 200, + "49018": 200, + "49019": 200 + }, + "local_HTTP": { + "/": 200, + "/sell/": 200, + "/concierge/": 200, + "/neighborhood-guides/": 200, + "/neighborhood-guides/aspen/": 200, + "/neighborhood-guides/atlanta/": 200, + "/neighborhood-guides/austin/": 200, + "/neighborhood-guides/boston/": 200, + "/neighborhood-guides/charlotte/": 200, + "/neighborhood-guides/chicago/": 200, + "/neighborhood-guides/dallas/": 200, + "/neighborhood-guides/dc/": 200, + "/neighborhood-guides/durham_raleigh/": 200, + "/neighborhood-guides/greenwich_ct/": 200, + "/neighborhood-guides/hamptons/": 200, + "/neighborhood-guides/houston/": 200, + "/neighborhood-guides/indianapolis/": 200, + "/neighborhood-guides/la/": 200, + "/neighborhood-guides/lake_tahoe/": 200, + "/neighborhood-guides/miami/": 200, + "/neighborhood-guides/naples/": 200, + "/neighborhood-guides/nyc/": 200, + "/neighborhood-guides/philadelphia/": 200, + "/neighborhood-guides/san_diego/": 200, + "/neighborhood-guides/santa_barbara_montecito/": 200, + "/neighborhood-guides/seattle/": 200, + "/neighborhood-guides/sf/": 200, + "/neighborhood-guides/westchester_ny/": 200, + "/static/external_cache/sell-marketing-16d3847461f1.webp": 200, + "/static/external_cache/sell-marketing-fc7c490155d9.webp": 200, + "/static/external_cache/sell-marketing-505fb4f9287a.webp": 200, + "/static/external_cache/sell-marketing-44a09172713b.webp": 200, + "/static/external_cache/sell-marketing-147f66ee4c76.webp": 200, + "/static/external_cache/sell-marketing-1e98bd95b7e9.webp": 200, + "/static/external_cache/sell-marketing-6a434ab3a9f5.webp": 200, + "/static/external_cache/sell-marketing-6f87b9ec80cc.webp": 200, + "/static/external_cache/sell-marketing-f74aab548ede.webp": 200, + "/static/external_cache/sell-marketing-8c74116e5c37.webp": 200, + "/static/external_cache/sell-marketing-aab6aeb0c5ea.webp": 200, + "/static/external_cache/sell-marketing-b2001959fa63.webp": 200, + "/static/external_cache/sell-marketing-efdf5ce8cee4.webp": 200, + "/static/external_cache/sell-marketing-0e719566e50d.webp": 200, + "/static/external_cache/sell-marketing-31c3ca7a8bf0.webp": 200, + "/static/external_cache/sell-marketing-27d1409f2668.webp": 200, + "/static/external_cache/sell-marketing-77591f5b1f69.webp": 200, + "/static/external_cache/sell-marketing-1787f0e7cce9.webp": 200, + "/static/external_cache/sell-marketing-21d385ef2f47.webp": 200, + "/static/external_cache/sell-marketing-57eb2afb446b.webp": 200, + "/static/external_cache/region-guide-405b6a17ae9d.webp": 200, + "/static/external_cache/region-guide-ebb4f3080934.webp": 200, + "/static/external_cache/region-guide-09babe3ef36b.webp": 200, + "/static/external_cache/region-guide-9d0bc9a3dbb2.webp": 200, + "/static/external_cache/region-guide-a973cac781bc.webp": 200, + "/static/external_cache/region-guide-d84f5a5c6672.webp": 200, + "/static/external_cache/region-guide-8d2e72d35311.webp": 200, + "/static/external_cache/region-guide-9d3567e4ad52.webp": 200, + "/static/external_cache/region-guide-fd74ea4b39b2.webp": 200, + "/static/external_cache/region-guide-9b6a74244296.webp": 200, + "/static/external_cache/region-guide-091b6c28663e.webp": 200, + "/static/external_cache/region-guide-f01d22a72075.webp": 200, + "/static/external_cache/region-guide-91934630df32.webp": 200, + "/static/external_cache/region-guide-a0daa337d884.webp": 200, + "/static/external_cache/region-guide-c987013fff52.webp": 200, + "/static/external_cache/region-guide-34d4ba4e3ed2.webp": 200, + "/static/external_cache/region-guide-7ba06efa434d.webp": 200, + "/static/external_cache/region-guide-e7577a2d9e62.webp": 200, + "/static/external_cache/region-guide-cf38c9f62d87.webp": 200, + "/static/external_cache/region-guide-d121fc3206cf.webp": 200, + "/static/external_cache/region-guide-d62efcfe6176.webp": 200, + "/static/external_cache/region-guide-4e91707a768c.webp": 200, + "/static/external_cache/region-guide-6a52d201a9bf.webp": 200, + "/static/external_cache/region-guide-82addae9475f.webp": 200, + "/static/external_cache/region-guide-b7f08f56076d.webp": 200, + "/static/external_cache/region-guide-e6a2fb9aa6f0.webp": 200, + "/static/external_cache/region-guide-c13f3b6a71f4.webp": 200, + "/static/external_cache/region-guide-f5523c723829.webp": 200, + "/static/external_cache/region-guide-2da1bd2c6d33.webp": 200, + "/static/external_cache/region-guide-ea6cf5287a4c.webp": 200, + "/static/external_cache/region-guide-ae2d8eefd43d.webp": 200, + "/static/external_cache/region-guide-aa0869145ec2.webp": 200, + "/static/external_cache/region-guide-857fdb7ea4ca.webp": 200, + "/static/external_cache/region-guide-72f7bced29c1.webp": 200, + "/static/external_cache/region-guide-d1ad3cb5ea03.webp": 200, + "/static/external_cache/region-guide-0364ddc6d76d.webp": 200, + "/static/external_cache/region-guide-35d9a7550e52.webp": 200, + "/static/external_cache/region-guide-e91be90605de.webp": 200, + "/static/external_cache/region-guide-a6790f1ca5c4.webp": 200, + "/static/external_cache/region-guide-2470e57dbccc.webp": 200, + "/static/external_cache/region-guide-c043462d8162.webp": 200, + "/static/external_cache/region-guide-0eb3510f18d2.webp": 200, + "/static/external_cache/region-guide-c237452f7d24.webp": 200, + "/static/external_cache/region-guide-ad10bec48382.webp": 200, + "/static/external_cache/region-guide-412b4727cbd5.webp": 200, + "/static/external_cache/region-guide-ee299d7efc7c.webp": 200, + "/static/external_cache/region-guide-52b18e8ba7e7.webp": 200, + "/static/external_cache/region-guide-9c2aead403d8.webp": 200, + "/static/external_cache/region-guide-f81d90b4ddf0.webp": 200, + "/static/external_cache/region-guide-88885e7b7496.webp": 200, + "/static/external_cache/region-guide-1ba2ced243ed.webp": 200, + "/static/external_cache/region-guide-fa34ee48792e.webp": 200, + "/static/external_cache/region-guide-a32e7b4ef6ab.webp": 200, + "/static/external_cache/region-guide-9e31d4e42194.webp": 200, + "/static/external_cache/region-guide-223ff9733004.webp": 200, + "/static/external_cache/region-guide-370fa090cbd2.webp": 200, + "/static/external_cache/region-guide-bb46b61127d6.webp": 200, + "/static/external_cache/region-guide-1e75aec0f9ad.webp": 200, + "/static/external_cache/region-guide-efd57f068938.webp": 200, + "/static/external_cache/region-guide-46d981096d81.webp": 200, + "/static/external_cache/region-guide-d3eaf37d3699.webp": 200, + "/static/external_cache/region-guide-5ffe84c0038c.webp": 200, + "/static/external_cache/region-guide-76240ee80ed0.webp": 200, + "/static/external_cache/region-guide-ec8cd467ce69.webp": 200, + "/static/external_cache/region-guide-c9ff77b32042.webp": 200, + "/static/external_cache/region-guide-8e180fd2ab5b.webp": 200, + "/static/external_cache/region-guide-5de523bfed38.webp": 200, + "/static/external_cache/region-guide-186fadd059b2.webp": 200, + "/static/external_cache/region-guide-e9475062df86.webp": 200, + "/static/external_cache/region-guide-05ae6c1643e9.webp": 200, + "/static/external_cache/region-guide-9f236126fe74.webp": 200, + "/static/external_cache/region-guide-aefd1835491f.webp": 200, + "/static/external_cache/region-guide-d857d6eac6e2.webp": 200, + "/static/external_cache/region-guide-e39ff72168bc.webp": 200, + "/static/external_cache/region-guide-d61236b4f609.webp": 200, + "/static/external_cache/region-guide-8b50a6f18948.webp": 200, + "/static/external_cache/region-guide-d8919fcdcb90.webp": 200, + "/static/external_cache/region-guide-46d7ef91a6ae.webp": 200, + "/static/external_cache/region-guide-008399a5e906.webp": 200, + "/static/external_cache/region-guide-654a235628e0.webp": 200, + "/static/external_cache/region-guide-67d43049ff3a.webp": 200, + "/static/external_cache/region-guide-1f256c704ecc.webp": 200, + "/static/external_cache/region-guide-a7fb4763de72.webp": 200, + "/static/external_cache/region-guide-03a0224c7acc.webp": 200, + "/static/external_cache/region-guide-885509215f55.webp": 200, + "/static/external_cache/region-guide-3bf7a1699ab8.webp": 200, + "/static/external_cache/region-guide-d662b8d7dadf.webp": 200, + "/static/external_cache/region-guide-6fac7cbe01e0.webp": 200, + "/static/external_cache/region-guide-4163c0483a59.webp": 200, + "/static/external_cache/region-guide-886aad9ac558.webp": 200, + "/static/external_cache/region-guide-30420e617bdc.webp": 200, + "/static/external_cache/region-guide-109677b512f0.webp": 200, + "/static/external_cache/region-guide-cade6b4753f3.webp": 200, + "/static/external_cache/region-guide-16d27b6f1544.webp": 200, + "/static/external_cache/region-guide-e87329fb5ac2.webp": 200, + "/static/external_cache/region-guide-f39dc04f24bc.webp": 200, + "/static/external_cache/region-guide-2d95bada0c6d.webp": 200, + "/static/external_cache/region-guide-3630000c37dc.webp": 200, + "/static/external_cache/region-guide-1241dbdcf189.webp": 200, + "/static/external_cache/region-guide-e5eae43f3320.webp": 200, + "/static/external_cache/region-guide-f221f7da5cfc.webp": 200, + "/static/external_cache/region-guide-763449aa0a5b.webp": 200, + "/static/external_cache/region-guide-3d09d6645109.webp": 200, + "/static/external_cache/region-guide-241736c27011.webp": 200, + "/static/external_cache/region-guide-ca3d47747a38.webp": 200, + "/static/external_cache/region-guide-fffc0d20d378.webp": 200, + "/static/external_cache/region-guide-ddd19c8879a2.webp": 200, + "/static/external_cache/region-guide-7f79be849f24.webp": 200, + "/static/external_cache/region-guide-070430fd48dd.webp": 200, + "/static/external_cache/region-guide-9d9e35225416.webp": 200, + "/static/external_cache/region-guide-6c56b43ba9d0.webp": 200, + "/static/external_cache/region-guide-a6ed30805bcb.webp": 200, + "/static/external_cache/region-guide-1faae51882f6.webp": 200, + "/static/external_cache/region-guide-e367010375ca.webp": 200, + "/static/external_cache/region-guide-25cceb424a4c.webp": 200, + "/static/external_cache/region-guide-fd69a8837eb2.webp": 200, + "/static/external_cache/region-guide-69268f51c296.webp": 200, + "/static/external_cache/region-guide-c0c1ba11cefd.webp": 200, + "/static/external_cache/region-guide-19c5f54a9804.webp": 200, + "/static/external_cache/region-guide-7b64424775bd.webp": 200, + "/static/external_cache/region-guide-54b45fc3db58.webp": 200, + "/static/external_cache/region-guide-919cf50d99a3.webp": 200, + "/static/external_cache/region-guide-e0ac2a18d012.webp": 200, + "/static/external_cache/region-guide-ecd1c7cb4cee.webp": 200, + "/static/external_cache/region-guide-78938dc94326.webp": 200, + "/static/external_cache/region-guide-2841e2fc14b6.webp": 200, + "/static/external_cache/region-guide-c5a3947d5f39.webp": 200, + "/static/external_cache/region-guide-fc9f80ec31c1.webp": 200, + "/static/external_cache/region-guide-ad047421bf01.webp": 200, + "/static/external_cache/region-guide-9f5229e432cd.webp": 200, + "/static/external_cache/region-guide-fb5e1b0dd842.webp": 200, + "/static/external_cache/region-guide-fe4771ed73ee.webp": 200, + "/static/external_cache/region-guide-4f4f58571df1.webp": 200, + "/static/external_cache/region-guide-b2f4932d2a81.webp": 200, + "/static/external_cache/region-guide-f334c4045dbd.webp": 200, + "/static/external_cache/region-guide-7d6c232a8833.webp": 200, + "/static/external_cache/region-guide-29e1110ec8ca.webp": 200, + "/static/external_cache/region-guide-942d0534b713.webp": 200, + "/static/external_cache/region-guide-e2fb89b2d675.webp": 200, + "/static/external_cache/region-guide-df90a333b843.webp": 200, + "/static/external_cache/region-guide-bc557e0eee06.webp": 200, + "/static/external_cache/region-guide-e99c5b4788f1.webp": 200, + "/static/external_cache/region-guide-47def130b05c.webp": 200, + "/static/external_cache/region-guide-42bc0596bce3.webp": 200, + "/static/external_cache/region-guide-e1910efa0cbb.webp": 200, + "/static/external_cache/region-guide-e5aa32198e8b.webp": 200, + "/static/external_cache/region-guide-f52118027891.webp": 200, + "/static/external_cache/region-guide-642c7d4137cb.webp": 200, + "/static/external_cache/region-guide-57769852e3b6.webp": 200, + "/static/external_cache/region-guide-63852d0a58f8.webp": 200, + "/static/external_cache/region-guide-b7047eed072d.webp": 200, + "/static/external_cache/region-guide-bb402ded3563.webp": 200, + "/static/external_cache/region-guide-70ad8df27afd.webp": 200, + "/static/external_cache/region-guide-0f333f7eba4a.webp": 200, + "/static/external_cache/region-guide-ccbb36eecccc.webp": 200, + "/static/external_cache/region-guide-65de16807750.webp": 200, + "/static/external_cache/region-guide-20f7493cb449.webp": 200, + "/static/external_cache/region-guide-e5320fd66b2a.webp": 200, + "/static/external_cache/region-guide-287c031cafc9.webp": 200, + "/static/external_cache/region-guide-dcef6be380b3.webp": 200, + "/static/external_cache/region-guide-73a562f3ebe5.webp": 200, + "/static/external_cache/region-guide-95cb7ca369e6.webp": 200, + "/static/external_cache/region-guide-8336459a6857.webp": 200, + "/static/external_cache/region-guide-21a161da1ca6.webp": 200, + "/static/external_cache/region-guide-a2df976413ce.webp": 200, + "/static/external_cache/region-guide-56974d5dde09.webp": 200, + "/static/external_cache/region-guide-1a8fd5b801a4.webp": 200, + "/static/external_cache/region-guide-e466aed440f9.webp": 200, + "/static/external_cache/region-guide-07846aa3eb69.webp": 200, + "/static/external_cache/region-guide-3ee0cb81c0aa.webp": 200, + "/static/external_cache/region-guide-6a4f31f06352.webp": 200, + "/static/external_cache/region-guide-2b8766ddea03.webp": 200, + "/static/external_cache/region-guide-0d79f94a7b31.webp": 200, + "/static/external_cache/region-guide-d11eab911279.webp": 200, + "/static/external_cache/region-guide-3ee32bb32400.webp": 200, + "/static/external_cache/region-guide-d23a8056fa2a.webp": 200, + "/static/external_cache/region-guide-9c146c694bae.webp": 200, + "/static/external_cache/region-guide-dbb45b57486f.webp": 200, + "/static/external_cache/region-guide-531f584795fe.webp": 200, + "/static/external_cache/region-guide-602d0f891aac.webp": 200, + "/static/external_cache/region-guide-134e48552a3a.webp": 200, + "/static/external_cache/region-guide-7a25621755fe.webp": 200, + "/static/external_cache/region-guide-00b8c0a99067.webp": 200, + "/static/external_cache/region-guide-4788dec674ce.webp": 200, + "/static/external_cache/region-guide-a35c15cba543.webp": 200, + "/static/external_cache/region-guide-b5920ddfe980.webp": 200, + "/static/external_cache/region-guide-6974ae4936f9.webp": 200, + "/static/external_cache/region-guide-d004de403827.webp": 200, + "/static/external_cache/region-guide-a3a6b9027f89.webp": 200, + "/static/external_cache/region-guide-3598c1239ced.webp": 200, + "/static/external_cache/region-guide-44e852f3f7f1.webp": 200, + "/static/external_cache/region-guide-d6c5644605b6.webp": 200, + "/static/external_cache/region-guide-c4eff4c044b0.webp": 200, + "/static/external_cache/region-guide-4431f99e1165.webp": 200, + "/static/external_cache/region-guide-89e3a0b4d17c.webp": 200, + "/static/external_cache/region-guide-de09920e7cab.webp": 200, + "/static/external_cache/region-guide-007b403eb86a.webp": 200, + "/static/external_cache/region-guide-cc0bdfa50d33.webp": 200, + "/static/external_cache/region-guide-78ed49ac8c9e.webp": 200, + "/static/external_cache/region-guide-e82115c0756f.webp": 200, + "/static/external_cache/region-guide-c900ee7bf8ba.webp": 200, + "/static/external_cache/region-guide-aef8435e1ce2.webp": 200, + "/static/external_cache/region-guide-6719709095b8.webp": 200, + "/static/external_cache/region-guide-3a61c7ade1d0.webp": 200, + "/static/external_cache/region-guide-9fce604481df.webp": 200, + "/static/external_cache/region-guide-b1f074b80d87.webp": 200, + "/static/external_cache/region-guide-8af4ed3ccdd9.webp": 200, + "/static/external_cache/region-guide-b062dc972145.webp": 200, + "/static/external_cache/region-guide-d8be010d8c61.webp": 200, + "/static/external_cache/region-guide-eddc668623ef.webp": 200, + "/static/external_cache/region-guide-13002aa2ff67.webp": 200, + "/static/external_cache/region-guide-4b514a762f53.webp": 200, + "/static/external_cache/region-guide-f6d0a1592de9.webp": 200, + "/static/external_cache/region-guide-6bbd64d55423.webp": 200, + "/static/external_cache/region-guide-244186948090.webp": 200, + "/static/external_cache/region-guide-e28ee366f2ec.webp": 200, + "/static/external_cache/region-guide-82fa3089a68f.webp": 200, + "/static/external_cache/region-guide-b6f56795354a.webp": 200, + "/static/external_cache/region-guide-87c50f01975c.webp": 200, + "/static/external_cache/region-guide-2fac0d94e219.webp": 200, + "/static/external_cache/region-guide-e1d72276b38b.webp": 200, + "/static/external_cache/region-guide-1d72b8c56db0.webp": 200, + "/static/external_cache/region-guide-0309b51de403.webp": 200, + "/static/external_cache/region-guide-6715335adb85.webp": 200, + "/static/external_cache/region-guide-4504c805d6b0.webp": 200, + "/static/external_cache/region-guide-dc6d17f1a176.webp": 200, + "/static/external_cache/region-guide-910c3329153e.webp": 200, + "/static/external_cache/region-guide-300b17635f54.webp": 200, + "/static/external_cache/region-guide-f82e76ad51a6.webp": 200, + "/static/external_cache/region-guide-355ca01b5eb3.webp": 200, + "/static/external_cache/region-guide-a666fef6c455.webp": 200, + "/static/external_cache/region-guide-949b72077588.webp": 200, + "/static/external_cache/region-guide-06e65f6c251e.webp": 200, + "/static/external_cache/region-guide-50188c0ecb69.webp": 200, + "/static/external_cache/region-guide-2a40168f586f.webp": 200, + "/static/external_cache/region-guide-2fb73b99fc30.webp": 200, + "/static/external_cache/region-guide-710adcd108c6.webp": 200, + "/static/external_cache/region-guide-04a3ac4c25e7.webp": 200, + "/static/external_cache/region-guide-f966253ef06d.webp": 200, + "/static/external_cache/region-guide-80c4478696bd.webp": 200, + "/static/external_cache/region-guide-e7ea1d7ff48d.webp": 200, + "/static/external_cache/region-guide-3a47d3789bce.webp": 200, + "/static/external_cache/region-guide-02e657616e4c.webp": 200, + "/static/external_cache/region-guide-de18a9dfa8fc.webp": 200, + "/static/external_cache/region-guide-d69f1c2261f8.webp": 200, + "/static/external_cache/region-guide-17fd8b47babb.webp": 200, + "/static/external_cache/region-guide-e594990d3bf7.webp": 200, + "/static/external_cache/region-guide-049513bada27.webp": 200, + "/static/external_cache/region-guide-0186cbccea2a.webp": 200, + "/static/external_cache/region-guide-6a88d81be80b.webp": 200, + "/static/external_cache/region-guide-6bad18107b74.webp": 200, + "/static/external_cache/region-guide-528a84a5de65.webp": 200, + "/static/external_cache/region-guide-4a43b679e71d.webp": 200, + "/static/external_cache/region-guide-1eafae4fc3e7.webp": 200, + "/static/external_cache/region-guide-420536ac6b6c.webp": 200, + "/static/external_cache/region-guide-231c645d1f35.webp": 200, + "/static/external_cache/region-guide-db9ec537aa8c.webp": 200, + "/static/external_cache/region-guide-9110ce55fbf1.webp": 200, + "/static/external_cache/region-guide-d151e5254f0a.webp": 200, + "/static/external_cache/region-guide-1795138d9cf7.webp": 200, + "/static/external_cache/region-guide-4eeeda761442.webp": 200, + "/static/external_cache/region-guide-2288dc97b44f.webp": 200, + "/static/external_cache/region-guide-7deec9db7fb5.webp": 200, + "/static/external_cache/region-guide-cdbfc5f3126b.webp": 200, + "/static/external_cache/region-guide-e42fe00214c5.webp": 200, + "/static/external_cache/region-guide-b1da4832d048.webp": 200, + "/static/external_cache/region-guide-75a40502cfea.webp": 200, + "/static/external_cache/region-guide-09a5a84d528d.webp": 200, + "/static/external_cache/region-guide-4afb54757cfa.webp": 200, + "/static/external_cache/region-guide-e5e3b5f8a57b.webp": 200, + "/static/external_cache/region-guide-7bc977c25cb6.webp": 200, + "/static/external_cache/region-guide-fe2bbd2620c4.webp": 200, + "/static/external_cache/region-guide-37d7d153d1a9.webp": 200, + "/static/external_cache/region-guide-00addedd860e.webp": 200, + "/static/external_cache/region-guide-8097d54bbf3d.webp": 200, + "/static/external_cache/region-guide-8c95120a8721.webp": 200, + "/static/external_cache/region-guide-d50102eac06e.webp": 200, + "/static/external_cache/region-guide-97c360738dfd.webp": 200, + "/static/external_cache/region-guide-bd263e4aa693.webp": 200, + "/static/external_cache/region-guide-5666e818b576.webp": 200, + "/static/external_cache/region-guide-35ecf1f0f86c.webp": 200, + "/static/external_cache/region-guide-33d4a627c6a6.webp": 200, + "/static/external_cache/region-guide-0560f938d7ce.webp": 200, + "/static/external_cache/region-guide-4262ccd7a114.webp": 200, + "/static/external_cache/region-guide-e464cb3aa685.webp": 200, + "/static/external_cache/region-guide-17758dbcaf73.webp": 200, + "/static/external_cache/region-guide-b2a4f97443fb.webp": 200, + "/static/external_cache/region-guide-2c512e541371.webp": 200, + "/static/external_cache/region-guide-bc212980668b.webp": 200, + "/static/external_cache/region-guide-bf36855bbcf2.webp": 200, + "/static/external_cache/region-guide-6dde367d85f1.webp": 200, + "/static/external_cache/region-guide-2d1774d598b7.webp": 200, + "/static/external_cache/region-guide-efe774b972a6.webp": 200, + "/static/external_cache/region-guide-66266116d901.webp": 200, + "/static/external_cache/region-guide-b8f572d2cc35.webp": 200, + "/static/external_cache/region-guide-bdcfe30fb6c4.webp": 200, + "/static/external_cache/region-guide-e0122d471756.webp": 200, + "/static/external_cache/region-guide-cd8c36cf9af2.webp": 200, + "/static/external_cache/region-guide-8664d7c692a2.webp": 200, + "/static/external_cache/region-guide-0a906ffda4c6.webp": 200, + "/static/external_cache/region-guide-c6678f98b83c.webp": 200, + "/static/external_cache/region-guide-b8509e4c095a.webp": 200, + "/static/external_cache/region-guide-a71c5e496d17.webp": 200, + "/static/external_cache/region-guide-7c86c057a207.webp": 200, + "/static/external_cache/region-guide-f38431ac9c4b.webp": 200, + "/static/external_cache/region-guide-f18bd49503d9.webp": 200, + "/static/external_cache/region-guide-5b7f74b5fb28.webp": 200, + "/static/external_cache/region-guide-3b8b61cfcdd2.webp": 200, + "/static/external_cache/region-guide-aaf46e0831be.webp": 200, + "/static/external_cache/region-guide-de33a7807c65.webp": 200, + "/static/external_cache/region-guide-477fcda1d645.webp": 200, + "/static/external_cache/region-guide-31e19c6fd393.webp": 200, + "/static/external_cache/region-guide-51314e4385e2.webp": 200, + "/static/external_cache/region-guide-80abad3abd72.webp": 200, + "/static/external_cache/region-guide-b2ebe4f24735.webp": 200, + "/static/external_cache/region-guide-496b023bc529.webp": 200, + "/static/external_cache/region-guide-2205b29bdbaa.webp": 200, + "/static/external_cache/region-guide-dd1391f3f230.webp": 200, + "/static/external_cache/region-guide-b2c55942cee2.webp": 200, + "/static/external_cache/region-guide-a6d535451c96.webp": 200, + "/static/external_cache/region-guide-a12c2e714feb.webp": 200, + "/static/external_cache/region-guide-862a59d9075a.webp": 200, + "/static/external_cache/region-guide-98e8dd95d5e8.webp": 200, + "/static/external_cache/region-guide-0dfecfb2853a.webp": 200, + "/static/external_cache/region-guide-dd0b1ddd029e.webp": 200, + "/static/external_cache/region-guide-0771d08eed0e.webp": 200, + "/static/external_cache/region-guide-85ddf40b6730.webp": 200, + "/static/external_cache/region-guide-3f626ffb97fc.webp": 200, + "/static/external_cache/region-guide-6eb97cad6230.webp": 200, + "/static/external_cache/region-guide-ab6f2bb5746c.webp": 200, + "/static/external_cache/region-guide-5e30ac018875.webp": 200, + "/static/external_cache/region-guide-6564b74a4e3e.webp": 200, + "/static/external_cache/region-guide-217bd3b29b21.webp": 200, + "/static/external_cache/region-guide-ac63ba553121.webp": 200, + "/static/external_cache/region-guide-777b5ad3f4b2.webp": 200, + "/static/external_cache/region-guide-7a9becf0c8ca.webp": 200, + "/static/external_cache/region-guide-25076e6fa21a.webp": 200, + "/static/external_cache/region-guide-dd69708d91cd.webp": 200, + "/static/external_cache/region-guide-ff1286a07d4e.webp": 200, + "/static/external_cache/region-guide-a396024d0848.webp": 200, + "/static/external_cache/region-guide-81a960d72b93.webp": 200, + "/static/external_cache/region-guide-35921ff6d835.webp": 200, + "/static/external_cache/region-guide-2b3123ae914e.webp": 200, + "/static/external_cache/region-guide-9adc7b61e48b.webp": 200, + "/static/external_cache/region-guide-ac1f395cc05e.webp": 200, + "/static/external_cache/region-guide-cba1df076288.webp": 200, + "/static/external_cache/region-guide-4709990b22cb.webp": 200, + "/static/external_cache/region-guide-e807d7f03d56.webp": 200, + "/static/external_cache/region-guide-5edc80578abd.webp": 200, + "/static/external_cache/region-guide-6368270722a1.webp": 200, + "/static/external_cache/region-guide-518a44bfa117.webp": 200, + "/static/external_cache/region-guide-8b60b54b0247.webp": 200, + "/static/external_cache/region-guide-1f092bd1ce8c.webp": 200, + "/static/external_cache/region-guide-34bca67bdcee.webp": 200, + "/static/external_cache/region-guide-ca61ff1e4656.webp": 200, + "/static/external_cache/region-guide-cdd838273f8e.webp": 200, + "/static/external_cache/region-guide-8b1feca638ce.webp": 200, + "/static/external_cache/region-guide-c53354f7b49d.webp": 200, + "/static/external_cache/region-guide-55840c713c61.webp": 200, + "/static/external_cache/region-guide-17487ac94659.webp": 200, + "/static/external_cache/region-guide-7f05a4ded99c.webp": 200, + "/static/external_cache/region-guide-8296c6a781fc.webp": 200, + "/static/external_cache/region-guide-6665ffbbdcb3.webp": 200, + "/static/external_cache/region-guide-df790c9ad79d.webp": 200, + "/static/external_cache/region-guide-987706428130.webp": 200, + "/static/external_cache/region-guide-970a377578e3.webp": 200, + "/static/external_cache/region-guide-5890dee18e21.webp": 200, + "/static/external_cache/region-guide-44baf9093f37.webp": 200, + "/static/external_cache/region-guide-8aa71c6a19c7.webp": 200, + "/static/external_cache/region-guide-a8f8efdbafc9.webp": 200, + "/static/external_cache/region-guide-0a5e91e5fb39.webp": 200, + "/static/external_cache/region-guide-070c97916927.webp": 200, + "/static/external_cache/region-guide-44c297a5bd64.webp": 200, + "/static/external_cache/region-guide-64f1c1bfeba6.webp": 200, + "/static/external_cache/region-guide-a237c3ad6be8.webp": 200, + "/static/external_cache/region-guide-cdc7b05939c1.webp": 200, + "/static/external_cache/region-guide-c6c18097b0b7.webp": 200, + "/static/external_cache/region-guide-9465ef1b50c1.webp": 200, + "/static/external_cache/region-guide-c51f414c0c42.webp": 200, + "/static/external_cache/region-guide-a3a6fda14676.webp": 200, + "/static/external_cache/region-guide-08c403dd6419.webp": 200, + "/static/external_cache/region-guide-8a0009658a7a.webp": 200, + "/static/external_cache/region-guide-b3eadcbe9eb7.webp": 200, + "/static/external_cache/region-guide-9e9cd2033cf8.webp": 200, + "/static/external_cache/region-guide-0c8177c8d809.webp": 200, + "/static/external_cache/region-guide-74ed6b175fda.webp": 200, + "/static/external_cache/region-guide-9fbd18fc596c.webp": 200, + "/static/external_cache/region-guide-700520058384.webp": 200, + "/static/external_cache/region-guide-14b45b97ff3c.webp": 200, + "/static/external_cache/region-guide-fe620a1f6ecd.webp": 200, + "/static/external_cache/region-guide-a0eeb2c9485e.webp": 200, + "/static/external_cache/region-guide-92278c7a9f26.webp": 200, + "/static/external_cache/region-guide-8029205a033b.webp": 200, + "/static/external_cache/region-guide-04c9ffd60d11.webp": 200, + "/static/external_cache/region-guide-0ef04caf55d4.webp": 200, + "/static/external_cache/region-guide-f926ad97432b.webp": 200, + "/static/external_cache/region-guide-9a4c369ef13b.webp": 200, + "/static/external_cache/region-guide-e090724d3fa0.webp": 200, + "/static/external_cache/region-guide-ec5f624d81d7.webp": 200, + "/static/external_cache/region-guide-9c409c22ecc6.webp": 200, + "/static/external_cache/region-guide-a5f5d1d932f6.webp": 200, + "/static/external_cache/region-guide-bb98e442f6d5.webp": 200, + "/static/external_cache/region-guide-a0e2153bb946.webp": 200, + "/static/external_cache/region-guide-8057c65183d7.webp": 200, + "/static/external_cache/region-guide-de56b5742322.webp": 200, + "/static/external_cache/region-guide-7041d756689a.webp": 200, + "/static/external_cache/region-guide-b2facc1ff2e2.webp": 200, + "/static/external_cache/region-guide-14f797fc8a22.webp": 200, + "/static/external_cache/region-guide-a1a8fa8cd0fb.webp": 200, + "/static/external_cache/region-guide-2cd3bff77d5d.webp": 200, + "/static/external_cache/region-guide-f88b3269bb44.webp": 200, + "/static/external_cache/region-guide-a952f8ca215e.webp": 200, + "/static/external_cache/region-guide-93141911ddff.webp": 200, + "/static/external_cache/region-guide-e6db3de4f01d.webp": 200, + "/static/external_cache/region-guide-d3bab2ef21bb.webp": 200, + "/static/external_cache/region-guide-d9db805c8929.webp": 200, + "/static/external_cache/region-guide-3216720ef22f.webp": 200, + "/static/external_cache/region-guide-e9b7c16bd890.webp": 200, + "/static/external_cache/region-guide-d33275c2f998.webp": 200, + "/static/external_cache/region-guide-1f5e1fb5cc9a.webp": 200, + "/static/external_cache/region-guide-9487a7ad67ff.webp": 200, + "/static/external_cache/region-guide-72c527ff5159.webp": 200 + }, + "post_full_checks_delta": "Inactive stack-card RGB17/RGB67 shading plus source-measured nearby group CSS and semantic show-more wrapper; final browser checks follow both refinements.", + "owner_preserved_rows": 11, + "owner_db_before_sha256": "1a71d9a417c1b05d875ff771de405a55b13219215c7831ccfaceb25637f5267a", + "owner_db_after_sha256": "1a71d9a417c1b05d875ff771de405a55b13219215c7831ccfaceb25637f5267a", + "other_19_processes_unchanged": true, + "build_scope": "Incremental image over previously verified full20-site image; not a new clean build of all20sites." + }, + "reset": { + "at": "2026-09-07T13:39:17.684688+00:00", + "real_UI_dirty_rows": 1, + "reset_seller_rows": 0, + "compass_seconds": 0.7484999579974101, + "compass_reset": { + "pid": 955, + "ready": true, + "site": "compass" + }, + "compass_hashes": { + "instance": "86c648f437651974e169ab2ed4921b85b15bd2116008fdbb66dbf118d41b663d", + "instance_seed": "86c648f437651974e169ab2ed4921b85b15bd2116008fdbb66dbf118d41b663d" + }, + "reset_all_seconds": 2.583104874996934, + "reset_all": { + "ok": true, + "sites": { + "allrecipes": { + "pid": 1002, + "ready": true, + "site": "allrecipes" + }, + "amazon": { + "pid": 987, + "ready": true, + "site": "amazon" + }, + "apple": { + "pid": 999, + "ready": true, + "site": "apple" + }, + "arxiv": { + "pid": 994, + "ready": true, + "site": "arxiv" + }, + "bbc_news": { + "pid": 1006, + "ready": true, + "site": "bbc_news" + }, + "booking": { + "pid": 988, + "ready": true, + "site": "booking" + }, + "cambridge_dictionary": { + "pid": 1011, + "ready": true, + "site": "cambridge_dictionary" + }, + "compass": { + "pid": 1012, + "ready": true, + "site": "compass" + }, + "coursera": { + "pid": 998, + "ready": true, + "site": "coursera" + }, + "espn": { + "pid": 1001, + "ready": true, + "site": "espn" + }, + "github": { + "pid": 1014, + "ready": true, + "site": "github" + }, + "google_flights": { + "pid": 1024, + "ready": true, + "site": "google_flights" + }, + "google_map": { + "pid": 1008, + "ready": true, + "site": "google_map" + }, + "google_search": { + "pid": 993, + "ready": true, + "site": "google_search" + }, + "huggingface": { + "pid": 1004, + "ready": true, + "site": "huggingface" + }, + "ikea": { + "pid": 1000, + "ready": true, + "site": "ikea" + }, + "merriam_webster": { + "pid": 995, + "ready": true, + "site": "merriam_webster" + }, + "phys_org": { + "pid": 1009, + "ready": true, + "site": "phys_org" + }, + "target": { + "pid": 1015, + "ready": true, + "site": "target" + }, + "wolfram_alpha": { + "pid": 1007, + "ready": true, + "site": "wolfram_alpha" + } + } + }, + "all_seed_files_match": { + "target/instance_seed/target.db": true, + "target/instance_seed/._target.db": true, + "compass/instance_seed/compass.db": true, + "merriam_webster/instance_seed/merriam_webster.db": true, + "cambridge_dictionary/instance_seed/cambridge.db": true, + "cambridge_dictionary/instance_seed/cambridge.db.bak.harden": true, + "google_map/instance_seed/gmaps.db": true, + "google_flights/instance_seed/google_flights.db": true, + "wolfram_alpha/instance_seed/wolfram_alpha.db": true, + "espn/instance_seed/espn.db": true, + "booking/instance_seed/booking.db": true, + "ikea/instance_seed/ikea.db": true, + "allrecipes/instance_seed/allrecipes.db": true, + "bbc_news/instance_seed/bbc_news.db": true, + "amazon/instance_seed/amazon_store.db": true, + "huggingface/instance_seed/hf.db": true, + "google_search/instance_seed/google_search.db": true, + "apple/instance_seed/apple_store.db": true, + "github/instance_seed/github_mirror.db": true, + "coursera/instance_seed/coursera.db": true, + "arxiv/instance_seed/arxiv.db": true, + "phys_org/instance_seed/.gitkeep": true, + "phys_org/instance_seed/phys_org.db": true + }, + "all_20_alive": true + }, + "evidence_reuse": { + "at": "2026-09-07T14:16:14.683727+00:00", + "frozen_original_files_verified": 932, + "task17_inputs_verified": 39, + "old_verdict_unchanged": true, + "protected_paths_unchanged": 62, + "changed_previously_protected_pages": [ + "sites/compass/templates/sell.html" + ], + "named_code_changes": { + "sites/compass/app.py": { + "changed": [ + "neighborhoods", + "sell" + ], + "added": [ + "NeighborhoodGuide", + "SellerInquiry" + ] + }, + "sites/compass/seed_data.py": { + "changed": [], + "added": [ + "seed_neighborhood_guides" + ] + } + }, + "media_references_found_in_archive": 443, + "unresolved_cx_variables": 0, + "added_external_embedded_scripts": 0, + "current_visual_status": "Source/candidate browser comparison complete; human acceptance pending", + "current_runtime_status": "Final455payload hashes match prepared image and QA/owner runtimes; reset evidence recorded separately", + "run_reuse_scope": "Frozen runs retain previous identities. Existing task data rowsets/handlers and protected paths remain unchanged. No current-version trajectory claim." + }, + "captures": [ + { + "path": "visual-review/sell-guides/source-sell-top-1440.jpg", + "sha256": "33edd233959d06d696d2f6dbbd4bb9c7a7a789e168e73a77fcac9042b5f97388", + "bytes": 256965, + "pixel_dimensions": [ + 1440, + 900 + ], + "application_checkpoint": null, + "at": "2026-09-07T09:35:12.011Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/sell/", + "viewport": { + "height": 900, + "width": 1440 + }, + "post_scrollY": 0, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/before-sell-top-1440.jpg", + "sha256": "b96ea42bbfb143a7d0d60dfe3be01f96cffc1d7e5cb0d8f11c395c403c977f9b", + "bytes": 254203, + "pixel_dimensions": [ + 1440, + 900 + ], + "application_checkpoint": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "at": "2026-09-07T09:36:34.687Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/sell/", + "viewport": { + "height": 900, + "width": 1440 + }, + "post_scrollY": 0, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/final-sell-top-1440.jpg", + "sha256": "f85729677a128360b994e59b027d6a3eeb1711cac180dfeccbff67868e1dc445", + "bytes": 256743, + "pixel_dimensions": [ + 1440, + 900 + ], + "application_checkpoint": "7f6dc008603182c6ace79ad52e52f2f8b804ae4b", + "at": "2026-09-07T14:09:33.137Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://127.0.0.1:49019/sell/", + "viewport": { + "height": 900, + "width": 1440 + }, + "post_scrollY": 0, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/source-sell-top-815.jpg", + "sha256": "428b7e5d59e89f80a42d84586f3f2add3c5f491843e8ca972d4fcc55a833c844", + "bytes": 119973, + "pixel_dimensions": [ + 815, + 900 + ], + "application_checkpoint": null, + "at": "2026-09-07T09:35:23.361Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/sell/", + "viewport": { + "height": 900, + "width": 815 + }, + "post_scrollY": 0, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/before-sell-top-815.jpg", + "sha256": "f09a757850b380808565903e70e0a730021444ad3e6518dd72514f5aca8f6b44", + "bytes": 149420, + "pixel_dimensions": [ + 815, + 900 + ], + "application_checkpoint": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "at": "2026-09-07T09:37:12.206Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/sell/", + "viewport": { + "height": 900, + "width": 815 + }, + "post_scrollY": 0, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/final-sell-top-815.jpg", + "sha256": "475489007b0294258330e7469bf35a22f01b286b933e9643db69fee20c2d76f7", + "bytes": 119939, + "pixel_dimensions": [ + 815, + 900 + ], + "application_checkpoint": "7f6dc008603182c6ace79ad52e52f2f8b804ae4b", + "at": "2026-09-07T14:15:53.586Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://127.0.0.1:49019/sell/", + "viewport": { + "height": 900, + "width": 815 + }, + "post_scrollY": 0, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/source-sell-top-390.jpg", + "sha256": "ab168bcca3b5643454c1f439efc80b1e5eb58e5f6f3d4cc4849fd61ec0cdc4ee", + "bytes": 73438, + "pixel_dimensions": [ + 390, + 844 + ], + "application_checkpoint": null, + "at": "2026-09-07T09:35:39.183Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/sell/", + "viewport": { + "height": 844, + "width": 390 + }, + "post_scrollY": 0, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/before-sell-top-390.jpg", + "sha256": "f4f956d8dc6089625572e6cda2d86dec8ae3c47dca1f5a889b73f3795eb3e517", + "bytes": 69407, + "pixel_dimensions": [ + 390, + 844 + ], + "application_checkpoint": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "at": "2026-09-07T09:38:05.541Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/sell/", + "viewport": { + "height": 844, + "width": 390 + }, + "post_scrollY": 0, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/final-sell-top-390.jpg", + "sha256": "23f3e80be1923a53679b97725db79b7e96e3b212153bfe5bc8cd24f070a17476", + "bytes": 71788, + "pixel_dimensions": [ + 390, + 844 + ], + "application_checkpoint": "7f6dc008603182c6ace79ad52e52f2f8b804ae4b", + "at": "2026-09-07T14:17:49.968Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://127.0.0.1:49019/sell/", + "viewport": { + "height": 844, + "width": 390 + }, + "post_scrollY": 0, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/source-region-nyc-top-1440.jpg", + "sha256": "e24dffc1280b4ae48fc5352272223ead386e6e9b1f103132d3fbad57a8839200", + "bytes": 168489, + "pixel_dimensions": [ + 1440, + 900 + ], + "application_checkpoint": null, + "at": "2026-09-07T09:51:43.686Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/neighborhood-guides/nyc/", + "viewport": { + "height": 900, + "width": 1440 + }, + "post_scrollY": 0, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/before-region-nyc-top-1440.jpg", + "sha256": "d851914d8696e4c3b8ea9c3f3529d934be4bec70050de7c8f9b4c07cfe7de0a2", + "bytes": 171494, + "pixel_dimensions": [ + 1440, + 900 + ], + "application_checkpoint": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "at": "2026-09-07T09:44:20.424Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/neighborhood-guides/nyc/", + "viewport": { + "height": 900, + "width": 1440 + }, + "post_scrollY": 0, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/final-region-nyc-top-1440.jpg", + "sha256": "506e8e4a965a4246a61712609e2c083143ad17b155b8900439cd88f426679618", + "bytes": 168568, + "pixel_dimensions": [ + 1440, + 900 + ], + "application_checkpoint": "7f6dc008603182c6ace79ad52e52f2f8b804ae4b", + "at": "2026-09-07T13:53:02.932Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://127.0.0.1:49019/neighborhood-guides/nyc/", + "viewport": { + "height": 900, + "width": 1440 + }, + "post_scrollY": 0, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/source-region-nyc-top-815.jpg", + "sha256": "67fe406dec27d788d882b5cac217038f7d2398565b6176475ac6daa6d75631b6", + "bytes": 104762, + "pixel_dimensions": [ + 815, + 900 + ], + "application_checkpoint": null, + "at": "2026-09-07T09:53:03.063Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/neighborhood-guides/nyc/", + "viewport": { + "height": 900, + "width": 815 + }, + "post_scrollY": 0, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/before-region-nyc-top-815.jpg", + "sha256": "ff0233ab500ed8b68f05157cc6ec4484e7187fa4f33b46ad59fa1c5201d7609d", + "bytes": 127247, + "pixel_dimensions": [ + 815, + 900 + ], + "application_checkpoint": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "at": "2026-09-07T09:45:15.721Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/neighborhood-guides/nyc/", + "viewport": { + "height": 900, + "width": 815 + }, + "post_scrollY": 0, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/final-region-nyc-top-815.jpg", + "sha256": "4f46b9faa825c341897ae43c2e87b5cfaa41ae9fc5baff130fe7bb9881d20ed4", + "bytes": 104800, + "pixel_dimensions": [ + 815, + 900 + ], + "application_checkpoint": "7f6dc008603182c6ace79ad52e52f2f8b804ae4b", + "at": "2026-09-07T14:16:34.476Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://127.0.0.1:49019/neighborhood-guides/nyc/", + "viewport": { + "height": 900, + "width": 815 + }, + "post_scrollY": 0, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/source-region-nyc-top-390.jpg", + "sha256": "13ca40c34f488b500145cf60723579db5a6991fdc11c9c7276891a3aabc7074b", + "bytes": 40341, + "pixel_dimensions": [ + 390, + 844 + ], + "application_checkpoint": null, + "at": "2026-09-07T09:53:18.016Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/neighborhood-guides/nyc/", + "viewport": { + "height": 844, + "width": 390 + }, + "post_scrollY": 0, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/before-region-nyc-top-390.jpg", + "sha256": "5d545bd3170585f7ebc6e72d964893a42abe3e3ce8afe79095144f4ac7332d05", + "bytes": 66488, + "pixel_dimensions": [ + 390, + 844 + ], + "application_checkpoint": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "at": "2026-09-07T09:46:48.431Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/neighborhood-guides/nyc/", + "viewport": { + "height": 844, + "width": 390 + }, + "post_scrollY": 0, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/final-region-nyc-top-390.jpg", + "sha256": "f953a96ae4a07859e435c194ffdfc7bf25124b2ce35528ed4d2432bce63684e1", + "bytes": 40654, + "pixel_dimensions": [ + 390, + 844 + ], + "application_checkpoint": "7f6dc008603182c6ace79ad52e52f2f8b804ae4b", + "at": "2026-09-07T13:54:04.479Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://127.0.0.1:49019/neighborhood-guides/nyc/", + "viewport": { + "height": 844, + "width": 390 + }, + "post_scrollY": 0, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/source-sell-full-1440.jpg", + "sha256": "73db9e6bc48d2f395daac6cef2f34c0006c1181bf9613575a7b65eae9a5837e2", + "bytes": 1329836, + "pixel_dimensions": [ + 1440, + 15443 + ], + "application_checkpoint": null, + "at": "2026-09-07T09:35:12.218Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/sell/", + "viewport": { + "height": 900, + "width": 1440 + }, + "post_scrollY": 0, + "fullPage": true + }, + { + "path": "visual-review/sell-guides/before-sell-full-1440.jpg", + "sha256": "bc00424861bd1133738e11df13889d2b4eb0364e391f15ee32897bea54e3960d", + "bytes": 187685, + "pixel_dimensions": [ + 1440, + 2839 + ], + "application_checkpoint": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "at": "2026-09-07T09:36:34.859Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/sell/", + "viewport": { + "height": 900, + "width": 1440 + }, + "post_scrollY": 0, + "fullPage": true + }, + { + "path": "visual-review/sell-guides/final-sell-full-1440.jpg", + "sha256": "29e8311894b3e116eb30112661045b21504afe91bbfcdd1c4a58f46ed132374c", + "bytes": 1272577, + "pixel_dimensions": [ + 1440, + 15382 + ], + "application_checkpoint": "7f6dc008603182c6ace79ad52e52f2f8b804ae4b", + "at": "2026-09-07T14:09:33.234Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://127.0.0.1:49019/sell/", + "viewport": { + "height": 900, + "width": 1440 + }, + "post_scrollY": 0, + "fullPage": true + }, + { + "path": "visual-review/sell-guides/source-region-nyc-full-1440.jpg", + "sha256": "13b2d0f88232d672bdd029332cd1e257260150d80241f36d57ca6e79cfc961ff", + "bytes": 836102, + "pixel_dimensions": [ + 1440, + 7091 + ], + "application_checkpoint": null, + "at": "2026-09-07T09:51:43.993Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/neighborhood-guides/nyc/", + "viewport": { + "height": 900, + "width": 1440 + }, + "post_scrollY": 0, + "fullPage": true + }, + { + "path": "visual-review/sell-guides/before-region-nyc-full-1440.jpg", + "sha256": "e1a0178cd9f84b764701c3c9d45c2bfd093c72609bff7e93ff0822267a7f661d", + "bytes": 511802, + "pixel_dimensions": [ + 1440, + 5793 + ], + "application_checkpoint": "25b8b3375aeb5a3b2c5823f8ed6d52a05eddeccf", + "at": "2026-09-07T09:44:20.601Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/neighborhood-guides/nyc/", + "viewport": { + "height": 900, + "width": 1440 + }, + "post_scrollY": 0, + "fullPage": true + }, + { + "path": "visual-review/sell-guides/final-region-nyc-full-1440.jpg", + "sha256": "e843c18a60cf7307e4566f7b17e63109035ffb302dac55563d0110f6013d2ebb", + "bytes": 783227, + "pixel_dimensions": [ + 1440, + 7122 + ], + "application_checkpoint": "7f6dc008603182c6ace79ad52e52f2f8b804ae4b", + "at": "2026-09-07T13:53:03.034Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://127.0.0.1:49019/neighborhood-guides/nyc/", + "viewport": { + "height": 900, + "width": 1440 + }, + "post_scrollY": 0, + "fullPage": true + }, + { + "path": "visual-review/sell-guides/source-sell-full-390.jpg", + "sha256": "6cf40bea16b2d85f9872a65c8a7055e2468eb4bc97cb4af7655075338ce27a38", + "bytes": 593101, + "pixel_dimensions": [ + 390, + 14170 + ], + "application_checkpoint": null, + "at": "2026-09-07T09:35:39.269Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/sell/", + "viewport": { + "height": 844, + "width": 390 + }, + "post_scrollY": 0, + "fullPage": true + }, + { + "path": "visual-review/sell-guides/final-sell-full-390.jpg", + "sha256": "df514cf97e8b2a6d266782480646c64534d22d3b275f3493a3f1d4f587b37431", + "bytes": 535466, + "pixel_dimensions": [ + 390, + 13483 + ], + "application_checkpoint": "7f6dc008603182c6ace79ad52e52f2f8b804ae4b", + "at": "2026-09-07T14:17:50.028Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://127.0.0.1:49019/sell/", + "viewport": { + "height": 844, + "width": 390 + }, + "post_scrollY": 0, + "fullPage": true + }, + { + "path": "visual-review/sell-guides/source-sell-advantage-2-390.jpg", + "sha256": "be4f099296da61d16ccdc1c9a9a8bcab3074adfb8b9f280971e7bb43750e7884", + "bytes": 61346, + "pixel_dimensions": [ + 390, + 844 + ], + "application_checkpoint": null, + "at": "2026-09-07T13:23:26.812Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 1487, + "url": "https://www.compass.com/sell/", + "viewport": { + "height": 844, + "width": 390 + }, + "post_scrollY": 1487, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/final-source-shading-advantage-2-390.jpg", + "sha256": "52bed267850ed2950010ccedb2166ec36037bd0b02dbdaeb46d5af00839291a8", + "bytes": 61310, + "pixel_dimensions": [ + 390, + 844 + ], + "application_checkpoint": "83658f036ac2cc3fa85a38a19728f2627606eeed", + "at": "2026-09-07T13:43:42.910Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 1451, + "url": "http://127.0.0.1:49019/sell/#lead-form", + "viewport": { + "height": 844, + "width": 390 + }, + "post_scrollY": 1451, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/source-sell-comparison-6-390.jpg", + "sha256": "58594bdeb201f8a47b580b46f2948da93129dd651d49741c15e9b9fecb30f09a", + "bytes": 37936, + "pixel_dimensions": [ + 390, + 844 + ], + "application_checkpoint": null, + "at": "2026-09-07T13:22:18.464Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 8942, + "url": "https://www.compass.com/sell/", + "viewport": { + "height": 844, + "width": 390 + }, + "post_scrollY": 8942, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/final-sell-comparison-6-390.jpg", + "sha256": "ab413c645cab8afdb91bed2b3735ae4624965d39a79bd84e108059d37a2065c6", + "bytes": 37355, + "pixel_dimensions": [ + 390, + 844 + ], + "application_checkpoint": "7f6dc008603182c6ace79ad52e52f2f8b804ae4b", + "at": "2026-09-07T14:09:33.041Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 8906, + "url": "http://127.0.0.1:49019/sell/", + "viewport": { + "height": 844, + "width": 390 + }, + "post_scrollY": 8906, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/source-region-nearby-expanded-1440.jpg", + "sha256": "28f1ac8e46ba7e698bbd05911ed8f94b35e7b61e44fb0db83dbc8f4eadb28aeb", + "bytes": 51554, + "pixel_dimensions": [ + 1440, + 900 + ], + "application_checkpoint": null, + "at": "2026-09-07T13:53:42.910Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 4891, + "url": "https://www.compass.com/neighborhood-guides/nyc/", + "viewport": { + "height": 900, + "width": 1440 + }, + "post_scrollY": 4891, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/final-region-nearby-expanded-1440.jpg", + "sha256": "45022b5439e479fbbe2936e629b715d251780f35c3509433c59460c62786c7e8", + "bytes": 62723, + "pixel_dimensions": [ + 1440, + 900 + ], + "application_checkpoint": "7f6dc008603182c6ace79ad52e52f2f8b804ae4b", + "at": "2026-09-07T13:53:47.647Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 4832.5, + "url": "http://127.0.0.1:49019/neighborhood-guides/nyc/", + "viewport": { + "height": 900, + "width": 1440 + }, + "post_scrollY": 4832.5, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/final-region-nearby-expanded-390.jpg", + "sha256": "bc0bc57362c366ba4c566a19cb2361ad75a66aea7602d1af4d438ad1bc2cc018", + "bytes": 39485, + "pixel_dimensions": [ + 390, + 844 + ], + "application_checkpoint": "7f6dc008603182c6ace79ad52e52f2f8b804ae4b", + "at": "2026-09-07T13:54:51.678Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 16532, + "url": "http://127.0.0.1:49019/neighborhood-guides/nyc/", + "viewport": { + "height": 844, + "width": 390 + }, + "post_scrollY": 16532, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/final-sell-form-empty-390.jpg", + "sha256": "89530604fd9f5f6490e13b5a4074032429a5950bb6b65ac37a2daeb71f691ec8", + "bytes": 29544, + "pixel_dimensions": [ + 390, + 844 + ], + "application_checkpoint": "c25326dc62a77e9536a8f8178de31a69cd822900", + "at": "2026-09-07T13:37:16.860Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 603.5, + "url": "http://127.0.0.1:49019/sell/#lead-form", + "viewport": { + "height": 844, + "width": 390 + }, + "post_scrollY": 603.5, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/final-sell-form-saved-390.jpg", + "sha256": "cf388076d1acfc28902f888c049fcde9534fbeb6e25ffb1b498a8518513c54e6", + "bytes": 32121, + "pixel_dimensions": [ + 390, + 844 + ], + "application_checkpoint": "c25326dc62a77e9536a8f8178de31a69cd822900", + "at": "2026-09-07T13:37:35.189Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 603.5, + "url": "http://127.0.0.1:49019/sell/#lead-form", + "viewport": { + "height": 844, + "width": 390 + }, + "post_scrollY": 603.5, + "fullPage": false + }, + { + "path": "visual-review/sell-guides/final-sell-form-reset-390.jpg", + "sha256": "89530604fd9f5f6490e13b5a4074032429a5950bb6b65ac37a2daeb71f691ec8", + "bytes": 29544, + "pixel_dimensions": [ + 390, + 844 + ], + "application_checkpoint": "c25326dc62a77e9536a8f8178de31a69cd822900", + "at": "2026-09-07T13:40:24.557Z", + "fonts": "loaded", + "overflow": false, + "scrollY": 603.5, + "url": "http://127.0.0.1:49019/sell/#lead-form", + "viewport": { + "height": 844, + "width": 390 + }, + "post_scrollY": 603.5, + "fullPage": false + } + ], + "nearby_measurements": [ + { + "kind": "source", + "at": "2026-09-07T13:52:56.033Z", + "fullHeight": 7091, + "nearby": { + "bottom": 5986.625, + "height": 1008.1953125, + "left": 135, + "right": 1305, + "top": 4978.4296875, + "width": 1170, + "x": 135, + "y": 4978.4296875 + }, + "url": "https://www.compass.com/neighborhood-guides/nyc/", + "viewport": { + "height": 900, + "width": 1440 + } + }, + { + "kind": "candidate", + "at": "2026-09-07T13:53:02.920Z", + "fullHeight": 7122, + "nearby": { + "bottom": 5986.0234375, + "height": 1007.59375, + "left": 135, + "right": 1305, + "top": 4978.4296875, + "width": 1170, + "x": 135, + "y": 4978.4296875 + }, + "url": "http://127.0.0.1:49019/neighborhood-guides/nyc/", + "viewport": { + "height": 900, + "width": 1440 + } + } + ], + "nearby_controls": { + "expanded": { + "groups": [ + { + "expanded": "true", + "open": true, + "visible": 15 + }, + { + "expanded": "false", + "open": true, + "visible": 5 + }, + { + "expanded": "false", + "open": true, + "visible": 5 + } + ], + "overflow": 0, + "width": 390 + }, + "collapsedFirst": 5, + "scope": "Real browser Show more/Show less; source and candidate stacked groups measured separately." + }, + "sell_controls": [ + { + "at": "2026-09-07T12:22:08.384Z", + "kind": "advantage", + "status": "Driven by Strategy, 2 of 3", + "visible": 1 + }, + { + "at": "2026-09-07T12:22:08.699Z", + "kind": "advantage", + "status": "Backed by a 340K+ Agent Network, 3 of 3", + "visible": 1 + }, + { + "at": "2026-09-07T12:22:09.020Z", + "kind": "advantage", + "status": "Powered by Intelligent Tech, 1 of 3", + "visible": 1 + }, + { + "kind": "advantage-previous", + "status": "Backed by a 340K+ Agent Network, 3 of 3" + }, + { + "active": [ + "2\nEliminate Days on Market History Risk\n\nThe longer your home sits on the market, the more it can be seen as undesirable or overpriced, potentially reducing buyer interest and lowering the final sale price.\n\n2" + ], + "kind": "comparison", + "status": "Listing comparison 2 of 6" + }, + { + "active": [ + "3\nEliminate Price Drop History Risk\n\nDropping your home\u2019s price can cause buyers to second-guess its value and invite less competitive offers.\n\n3" + ], + "kind": "comparison", + "status": "Listing comparison 3 of 6" + }, + { + "active": [ + "4\nAvoid Missed Buyer Opportunities\n\nSome third-party sites block buyers\u2019 ability to reach out to the listing agent directly. These leads are sold to other agents who may be unfamiliar with your home and whose interests may not align with your selling goals.\n\n4" + ], + "kind": "comparison", + "status": "Listing comparison 4 of 6" + }, + { + "active": [ + "5\nAutomated Valuation\n\nAn algorithm doesn\u2019t know your home or your goals, which can lead to undervaluation. Rather than being carefully positioned, it\u2019s treated like inventory, often priced with a discount.\n\n5" + ], + "kind": "comparison", + "status": "Listing comparison 5 of 6" + }, + { + "active": [ + "6\nNo Negative Insights Added to Your Listing\n\nThird-party platforms can add their own assessments and data to a listing, which may not accurately reflect the true value or desirability of your property.\n\n6" + ], + "kind": "comparison", + "status": "Listing comparison 6 of 6" + }, + { + "active": [ + "1\nControl Your Pricing\n\nAutomated home valuations on third-party sites use outdated algorithms and incomplete data, often mispricing homes and shaping buyer expectations before you even list.\n\n1" + ], + "kind": "comparison", + "status": "Listing comparison 1 of 6" + } + ], + "measurements": [ + { + "height": 900, + "overflow": 0, + "sections": [ + { + "height": 659.328125, + "id": "sell-hero" + }, + { + "height": 816, + "id": "lead-form" + }, + { + "height": 1429.125, + "id": "sell-advantage" + }, + { + "height": 1376.3828125, + "id": "sell-strategy" + }, + { + "height": 691, + "id": "sell-choice" + }, + { + "height": 2377.546875, + "id": "sell-benefits" + }, + { + "height": 908.1875, + "id": "sell-results" + }, + { + "height": 1280, + "id": "sell-appearance" + }, + { + "height": 1048.125, + "id": "sell-film" + }, + { + "height": 1509, + "id": "sell-terms" + }, + { + "height": 1048.125, + "id": "sell-film-home" + }, + { + "height": 816, + "id": "footer-lead-form" + }, + { + "height": 281.8671875, + "id": "sell-methodology" + } + ], + "url": "http://127.0.0.1:49019/sell/", + "width": 1440 + }, + { + "cards": 60, + "height": 900, + "hero": { + "bottom": 701.6953125, + "height": 502.5, + "left": 0, + "right": 1440, + "top": 199.1953125, + "width": 1440, + "x": 0, + "y": 199.1953125 + }, + "overflow": 0, + "url": "http://127.0.0.1:49019/neighborhood-guides/nyc/", + "width": 1440 + }, + { + "height": 900, + "overflow": 0, + "url": "http://127.0.0.1:49019/neighborhood-guides/nyc/", + "width": 815 + }, + { + "height": 900, + "overflow": 0, + "url": "http://127.0.0.1:49019/sell/", + "width": 815 + }, + { + "height": 844, + "overflow": 0, + "url": "http://127.0.0.1:49019/sell/", + "width": 390 + }, + { + "firstCard": { + "bottom": 318.796875, + "height": 194, + "left": 24, + "right": 366, + "top": 124.796875, + "width": 342, + "x": 24, + "y": 124.796875 + }, + "height": 844, + "overflow": 0, + "url": "http://127.0.0.1:49019/neighborhood-guides/nyc/", + "width": 390 + } + ], + "boundaries": [ + "No human-approved visual baseline.", + "New UI checks are not benchmark task trajectories.", + "Community articles and nearby property searches remain explicit external links.", + "Seller forms persist locally; no real Compass contact.", + "Films use local static posters with external YouTube links." + ] +} diff --git a/sites/compass/docs/sell-review.md b/sites/compass/docs/sell-review.md new file mode 100644 index 00000000..04b9c008 --- /dev/null +++ b/sites/compass/docs/sell-review.md @@ -0,0 +1,41 @@ +> This historical first Sell follow-up is superseded by [the full Sell/regional reconstruction](sell-guides-review.md). Its captures and validation retain their original versions. + +# Sell navigation and landing-page follow-up + +Human inspection found a real omission: the top navigation and homepage Buy/Rent strip lacked **Sell**, and `/sell/` returned 404. The earlier seller-services scope note did not justify a missing primary entry. + +The follow-up adds Sell to desktop navigation, the mobile menu and the homepage strip, plus a local `/sell/` page. The hero follows the [original Sell page](https://www.compass.com/sell/) using its locally packaged image, Compass fonts, transparent preview window and responsive ordering. **Sell with Us** scrolls to a local introduction; **Find an Agent** opens the existing agent directory. Buy and Rent keep their existing search behavior. `/sell` redirects to `/sell/`. + +Application checkpoint: `a5e25af42b804bc56aeb49d5eb1c48c0a3a4b32c`; before: `7074f8dbd0c82088381657fd78b19ae400142248`. [HF PR #53](https://huggingface.co/datasets/ChilleD/WebHarbor/discussions/53) now supplies immutable revision `421ca6a529b88bdd214ecf6308d124798ab1e20b`. The 182,836,773-byte Compass archive has SHA-256 `2dce9cab8bb53cf27a100ca8e67b39743a7d8875384cc4993fb52b5e29460141`; all 2,412 prior files, including the seed, are byte-identical. The other 19 site archives also remain unchanged. + +## Original / before / after + +Unaltered, signed-out, top-of-page browser screenshots from September 6, 2026, at 100% browser zoom. Each row has the same actual pixel dimensions; metadata, URLs, times and SHA-256 values are in [sell-validation.json](sell-validation.json). A source timestamp marked `saved_at` is the file-save time, not a claimed exact browser capture time. Dynamic source recommendations differ from the fixed local catalog. + +| Page / viewport | Original | Before | After | +|---|---|---|---| +| Home desktop (1440×900) | ![Original Home desktop](visual-review/sell/source-home-desktop-final.jpg) | ![Before Home desktop](visual-review/sell/before-home-desktop.jpg) | ![After Home desktop](visual-review/sell/after-home-desktop-final.jpg) | +| Home mobile (390×844) | ![Original Home mobile](visual-review/sell/source-home-390.jpg) | ![Before Home mobile](visual-review/sell/before-home-390.jpg) | ![After Home mobile](visual-review/sell/after-home-390.jpg) | +| Sell desktop (1440×900) | ![Original Sell desktop](visual-review/sell/source-sell-1440.jpg) | ![Before Sell desktop](visual-review/sell/before-sell-desktop.jpg) | ![After Sell desktop](visual-review/sell/after-sell-desktop-final.jpg) | +| Sell mobile (390×844) | ![Original Sell mobile](visual-review/sell/source-sell-390.jpg) | ![Before Sell mobile](visual-review/sell/before-sell-390.jpg) | ![After Sell mobile](visual-review/sell/after-sell-390-final.jpg) | + +## Measured changes and remaining differences + +| Component | Source observation and implementation | +|---|---| +| Desktop hero | Source hero 659.33px high with a 1170px content width; candidate uses 660px / 1170px. The two-line heading uses Compass Serif 50px/65px; supporting copy uses Compass Sans 28px/42px. | +| Photo treatment | The preview is a transparent window onto the same full-width house photo. The candidate reproduces that structure and darkens the surrounding area; small differences remain in overlay strength and illustration facts' spacing/weight. | +| Mobile hero | At 390px: 32px/41.6px heading, 16px/25.6px copy, preview before CTA, and a 220×48px CTA. The section ends at approximately y=604 in both captures. | +| Local contact section | The source lead form is replaced by a clearly labeled agent-directory link. Contact copy, card spacing and lower-page content differ deliberately within the limited introduction-page scope. | +| Existing navigation | Sell is restored. New Development and the full online agent/service navigation remain outside the existing mirror scope; this is not a claim of complete site parity. | + +The local page includes a short three-phase overview, not the original seller lead collection, full marketing carousels, embedded videos or service workflow. The illustrated price/bed/bath values reproduce the source marketing graphic; they do not add a catalog record or task answer. Existing benchmark differences are preserved: no answer facts were added to search cards, and accounts and writes remain local/synthetic. + +## Verification and evidence reuse + +- Real browser checks cover desktop Sell navigation, keyboard activation of homepage Sell, mobile menu entry, the contact anchor and agent-directory destination. Sell layouts were inspected at 320, 390, 768 and 1440px; authenticated navigation/account states at 768 and 1100px. Published captures have verified pixel dimensions, loaded fonts and no document overflow; hero loading was checked visually and by its local HTTP response. +- Existing Buy/Miami and Rent/New York searches still submit the appropriate sale/rent query, and Alice login/account navigation still work. **42 application/source tests passed** with 156 existing SQLAlchemy deprecation warnings. The earlier 124 verifier tests were not rerun: verifier inputs and code remain byte-identical, with hashes in the validation file. +- An incremental Docker image was built on the previously verified 20-site image. All six changed runtime files match the checkout and test container. All 20 site homepages return 200; Compass reset takes 0.712s and restores the runtime seed byte-for-byte. This follow-up did not repeat a clean download and full base-image build or reset-all; the earlier unchanged-site evidence is retained. +- The owner environment at port 40019 received those exact files and a Compass-only process restart. Its live database hash is unchanged; the other 19 processes were untouched. + +The original 16 guided task runs and Claude's frozen verdict retain their original code/asset identities in [validation.json](validation.json). This change adds a read-only, task-independent page and navigation links; catalog, seed, task/rubric definitions, graders, and existing task handlers remain unchanged. Shared homepage/navigation entry points were rechecked above, so unchanged task-completion evidence is reused by impact, not described as newly executed. **Claude has not reviewed the new Sell page.** No human-approved screenshot baseline or calibrated similarity score is claimed. Human experience remains pending and the PR stays Draft. diff --git a/sites/compass/docs/sell-validation.json b/sites/compass/docs/sell-validation.json new file mode 100644 index 00000000..308fad17 --- /dev/null +++ b/sites/compass/docs/sell-validation.json @@ -0,0 +1,1034 @@ +{ + "recorded_at": "2026-09-06T14:57:10.629643+00:00", + "application_checkpoint": "a5e25af42b804bc56aeb49d5eb1c48c0a3a4b32c", + "before_checkpoint": "7074f8dbd0c82088381657fd78b19ae400142248", + "asset_revision": "421ca6a529b88bdd214ecf6308d124798ab1e20b", + "compass_archive": { + "bytes": 182836773, + "sha256": "2dce9cab8bb53cf27a100ca8e67b39743a7d8875384cc4993fb52b5e29460141", + "unchanged_prior_files": 2412, + "added_file": "compass/static/external_cache/hero-sell.webp", + "added_file_sha256": "b3950e791ccbf727e20b347f03d8775aba40bbfb52408d32f013323f0baa42a9", + "seed_sha256": "caa262ea5752016618c56e9bf01842257523cf8dae3ea25c57f719d61d7ce40f" + }, + "other_19_archives_equal": true, + "build": { + "at": "2026-09-06T14:52:47.373654+00:00", + "source_commit": "a5e25af42b804bc56aeb49d5eb1c48c0a3a4b32c", + "build": "incremental Docker overlay on previously built 20-site image", + "base_image": "sha256:beecc26599f47c15498c7a3b3dd3e055a02f4e46a0b5cfff33a276fbbbea68fc", + "candidate_image": "sha256:1ff949307c1e0fbe1200a9ee0e92bc38bc8d48b6fa4aec0a4c3226d230eed0d5", + "runtime_files": { + "app.py": "a71c9fdae1d30ba1fdb45fba36bc07a00c09aa8787be08685e36f17824b84b70", + "templates/base.html": "795e7081a0f93ecd27cdeba86c30a17b298f666f019ed1b6b34a1530dd1f1ff3", + "templates/index.html": "a473ab01dbfb8518cb8085ef7916572f9b28b902de7f1af8d65903091bf3103b", + "templates/sell.html": "4370ebcd1b57ef0ef24e187087ee46f74e235fa6a101ae2181b42176f3945929", + "static/css/compass.css": "df6b876250eb10908a2eead8df21ded0d1d3427298084907019be0881d6ba499", + "static/external_cache/hero-sell.webp": "b3950e791ccbf727e20b347f03d8775aba40bbfb52408d32f013323f0baa42a9" + }, + "test_container_files_match": true, + "health": { + "ok": true, + "sites": { + "allrecipes": { + "alive": true, + "pid": 49, + "port": 40000 + }, + "amazon": { + "alive": true, + "pid": 50, + "port": 40001 + }, + "apple": { + "alive": true, + "pid": 51, + "port": 40002 + }, + "arxiv": { + "alive": true, + "pid": 52, + "port": 40003 + }, + "bbc_news": { + "alive": true, + "pid": 53, + "port": 40004 + }, + "booking": { + "alive": true, + "pid": 54, + "port": 40005 + }, + "cambridge_dictionary": { + "alive": true, + "pid": 61, + "port": 40012 + }, + "compass": { + "alive": true, + "pid": 68, + "port": 40019 + }, + "coursera": { + "alive": true, + "pid": 62, + "port": 40013 + }, + "espn": { + "alive": true, + "pid": 63, + "port": 40014 + }, + "github": { + "alive": true, + "pid": 55, + "port": 40006 + }, + "google_flights": { + "alive": true, + "pid": 56, + "port": 40007 + }, + "google_map": { + "alive": true, + "pid": 57, + "port": 40008 + }, + "google_search": { + "alive": true, + "pid": 58, + "port": 40009 + }, + "huggingface": { + "alive": true, + "pid": 59, + "port": 40010 + }, + "ikea": { + "alive": true, + "pid": 65, + "port": 40016 + }, + "merriam_webster": { + "alive": true, + "pid": 64, + "port": 40015 + }, + "phys_org": { + "alive": true, + "pid": 66, + "port": 40017 + }, + "target": { + "alive": true, + "pid": 67, + "port": 40018 + }, + "wolfram_alpha": { + "alive": true, + "pid": 60, + "port": 40011 + } + } + }, + "homepages": [ + { + "port": 40000, + "status": 200 + }, + { + "port": 40001, + "status": 200 + }, + { + "port": 40002, + "status": 200 + }, + { + "port": 40003, + "status": 200 + }, + { + "port": 40004, + "status": 200 + }, + { + "port": 40005, + "status": 200 + }, + { + "port": 40006, + "status": 200 + }, + { + "port": 40007, + "status": 200 + }, + { + "port": 40008, + "status": 200 + }, + { + "port": 40009, + "status": 200 + }, + { + "port": 40010, + "status": 200 + }, + { + "port": 40011, + "status": 200 + }, + { + "port": 40012, + "status": 200 + }, + { + "port": 40013, + "status": 200 + }, + { + "port": 40014, + "status": 200 + }, + { + "port": 40015, + "status": 200 + }, + { + "port": 40016, + "status": 200 + }, + { + "port": 40017, + "status": 200 + }, + { + "port": 40018, + "status": 200 + }, + { + "port": 40019, + "status": 200 + } + ], + "reset_compass": { + "pid": 476, + "ready": true, + "site": "compass" + }, + "reset_seconds": 0.7117174590002833, + "live_seed_byte_equal": true, + "runtime_seed_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979" + }, + "owner_runtime": { + "at": "2026-09-06T14:53:42.098742+00:00", + "container": "wh-review025-current", + "base_image": "sha256:beecc26599f47c15498c7a3b3dd3e055a02f4e46a0b5cfff33a276fbbbea68fc", + "overlay_source_commit": "a5e25af42b804bc56aeb49d5eb1c48c0a3a4b32c", + "prepared_image": "wh-review025:a5e25af", + "files": { + "app.py": "a71c9fdae1d30ba1fdb45fba36bc07a00c09aa8787be08685e36f17824b84b70", + "templates/base.html": "795e7081a0f93ecd27cdeba86c30a17b298f666f019ed1b6b34a1530dd1f1ff3", + "templates/index.html": "a473ab01dbfb8518cb8085ef7916572f9b28b902de7f1af8d65903091bf3103b", + "templates/sell.html": "4370ebcd1b57ef0ef24e187087ee46f74e235fa6a101ae2181b42176f3945929", + "static/css/compass.css": "df6b876250eb10908a2eead8df21ded0d1d3427298084907019be0881d6ba499", + "static/external_cache/hero-sell.webp": "b3950e791ccbf727e20b347f03d8775aba40bbfb52408d32f013323f0baa42a9" + }, + "db_before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "db_after_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "db_preserved": true, + "other_19_processes_unchanged": true, + "restart": { + "note": "restart only, DB not reset", + "pid": 3350, + "ready": true, + "site": "compass" + }, + "HTTP": [ + { + "path": "/", + "status": 200, + "resolved_url": "http://127.0.0.1:40019/" + }, + { + "path": "/sell/", + "status": 200, + "resolved_url": "http://127.0.0.1:40019/sell/" + }, + { + "path": "/sell", + "status": 200, + "resolved_url": "http://127.0.0.1:40019/sell/" + }, + { + "path": "/sell/?origin=sellTab", + "status": 200, + "resolved_url": "http://127.0.0.1:40019/sell/?origin=sellTab" + }, + { + "path": "/static/external_cache/hero-sell.webp", + "status": 200, + "resolved_url": "http://127.0.0.1:40019/static/external_cache/hero-sell.webp" + } + ] + }, + "application_tests": { + "passed": 42, + "warnings": 156, + "seconds": 37.66, + "log_sha256": "060aaa68dc1be5fb5adf3ab70433c05d7fa34e7b94e1058bc845a3ea67e16670" + }, + "protected_inputs_byte_identical_to_before": [ + { + "path": "sites/compass/_health.py", + "sha256": "84170627c219bc24e6540f186869443fcf7ff23e86a8384cc8b0c486b08b7118" + }, + { + "path": "sites/compass/gallery_sources.json", + "sha256": "2894f3707956c8d921db2b9ef686cdb3fca135bac1989c22745a6e7d75d580f4" + }, + { + "path": "sites/compass/listings_clean.json", + "sha256": "67eab5fa1d8eeac7482cb8892e198727142ddda4f98dc259ffd84b5ee94b17ca" + }, + { + "path": "sites/compass/migrate_seed.py", + "sha256": "18d4baabcf2f4421b9ddcba6322550e34713156af807536e473f8c001b4e864d" + }, + { + "path": "sites/compass/scripts/normalize_sources.py", + "sha256": "2f072ee170b18fdb4617b4abe40cc443ca8dfd69e942d31c52ee6bedc0d6f649" + }, + { + "path": "sites/compass/seed_data.py", + "sha256": "664c9ca572176ca87ea8fa4bfa48298b138acc490d693d2f7ae3fe0463276d2a" + }, + { + "path": "sites/compass/source_data.json", + "sha256": "5b5eed3757d49fa1bd5ad93a12b40271eb2a98397eba88e03194cc40a34333a1" + }, + { + "path": "sites/compass/static/js/compass.js", + "sha256": "fd978705df3f9a3d4aeafdab97f6c725680b15f368d39ae4b08c183125599a88" + }, + { + "path": "sites/compass/tasks.jsonl", + "sha256": "e0c2d0b758eb3d1bed09fa2beb0821bb5d0163ceea059017b5bfdf6adcc29cdf" + }, + { + "path": "sites/compass/templates/404.html", + "sha256": "e07690541b7aa266b462b8ce5a1ccf5b7196fd2a6600e4547cad86ac4b75b2ca" + }, + { + "path": "sites/compass/templates/500.html", + "sha256": "9291a793706ace8c95ed82ae0abfadcb073a2b8b645b07eb5b46b5afd0f034e3" + }, + { + "path": "sites/compass/templates/_account_nav.html", + "sha256": "b562f84a9ac7bac270a1914c37058ab810cfa7afed2131e8a5a23e3a563ede12" + }, + { + "path": "sites/compass/templates/_card.html", + "sha256": "9870e0ab1be4e9ed215367395da93cf5bde75eca571cd59e707c2279a5e80c1d" + }, + { + "path": "sites/compass/templates/_filters.html", + "sha256": "8d373c1ad74a806e19917495361a361fa4a1b2f50911c87d4b25f3ffbeb730a9" + }, + { + "path": "sites/compass/templates/about.html", + "sha256": "8d6722e5c5d0620f9100025f53e92e04613196095b3827f1495c7af136d833c6" + }, + { + "path": "sites/compass/templates/account.html", + "sha256": "df1ff7bec4d1e4e6d27f58aa4db9999dc4b7f487a86696a2082d7cb16e493ef3" + }, + { + "path": "sites/compass/templates/account_edit.html", + "sha256": "d923e6b266fed181c8cb25e15ac3a89c9ae1e95b3c8258abe4d84d829d3cc51a" + }, + { + "path": "sites/compass/templates/agent_detail.html", + "sha256": "3a37d7c836ccca4bd8340fa8dfb287437fb68cdbfe96d39891047e67bb9fdfc9" + }, + { + "path": "sites/compass/templates/agents.html", + "sha256": "db188b0fe18337423334f5f76155ce72a4ce00e556b227b67f706a3501eaab37" + }, + { + "path": "sites/compass/templates/change_password.html", + "sha256": "c6d608044f24a36c32f147f9c27224c81cf0a036af4ea626e2881c045bd4b2b9" + }, + { + "path": "sites/compass/templates/city.html", + "sha256": "1f75da786fc70115c842fa7a5d92a0fc612716f5de06d5f37030cdc920f346e8" + }, + { + "path": "sites/compass/templates/collection_detail.html", + "sha256": "c0aeae49e443153aeb4086d59b07fcbe88a38f521981dd663c2ba03c56e9ca7a" + }, + { + "path": "sites/compass/templates/collection_new.html", + "sha256": "5229da313876a9de59a245974a7937b786e733c88a26ba70bfd67e577ad5a9c9" + }, + { + "path": "sites/compass/templates/collection_share.html", + "sha256": "3d91f33cd30b2f3daa54de2be39fc1ffadb299c65e5af3f8e2b0434411b4232c" + }, + { + "path": "sites/compass/templates/collections.html", + "sha256": "273c69f7bd33a6e04daf0b71ff4a198e0a7be4f515b068aeb5c281fe2729f301" + }, + { + "path": "sites/compass/templates/help.html", + "sha256": "208839f85d0249182098d1381ff1ab10d65b6abe8fb5481fcde42f7ad6cf5e45" + }, + { + "path": "sites/compass/templates/homes_for_sale.html", + "sha256": "c036c85a4418cb2b4ffd22803e6870ddd15865bd66ecac220b6a78b7beec0a6b" + }, + { + "path": "sites/compass/templates/inquiries.html", + "sha256": "6c3a0b9813a7cbff20a7a1a5c19b82c057b24022d49a6a286566953aea4a18d0" + }, + { + "path": "sites/compass/templates/inquiry_send.html", + "sha256": "331307a8065db0e731bb2bcaa1307c90d82d3bbef9ac8a658f3732230584725e" + }, + { + "path": "sites/compass/templates/listing_detail.html", + "sha256": "89cee61d75487fa9ed8c9225a2bc0339082a16d796bc709c2c06b27a5b84eedb" + }, + { + "path": "sites/compass/templates/login.html", + "sha256": "9b7f6ce50877e7297f41250f93c630b9d01bee88977fd54f91c1c74b1977d8e6" + }, + { + "path": "sites/compass/templates/luxury.html", + "sha256": "495603b0fd7f1a07317c573da44375d95b002d480c20650f475c3f58a232645c" + }, + { + "path": "sites/compass/templates/new_listings.html", + "sha256": "46d13812b192bfef01a5384e15842404fb92d327acbf0916e893fe5f1a2eccfb" + }, + { + "path": "sites/compass/templates/open_houses.html", + "sha256": "91ece406f0cb5dcc99239af7b32348b18737a62e4a8c5604dedff1fe03d3d3f7" + }, + { + "path": "sites/compass/templates/preferences.html", + "sha256": "f97d3874a65ce2a344392ad76a55dbe7a1b31f338c15ac072403ad667d83da2c" + }, + { + "path": "sites/compass/templates/register.html", + "sha256": "17ec70ef8ab1c4e3891e73755b2b6e5de6ab5eeb3969583e0ab5f371dba16940" + }, + { + "path": "sites/compass/templates/saved.html", + "sha256": "34c22814d9a6e4c12745c7157706b65bf727a58a53c4d22e0ff503fca24b79a3" + }, + { + "path": "sites/compass/templates/saved_searches.html", + "sha256": "ed635830b21278c447821ce2fb6ba2e617002e8992b7f2acc620d76b59059e0e" + }, + { + "path": "sites/compass/templates/search.html", + "sha256": "c39a0260431cff58614ec48ae6fe245cd53f7e742c770e3abb321ddf21ced1ba" + }, + { + "path": "sites/compass/templates/tour_request.html", + "sha256": "28e5e1b6a57271942d98743f0235f97db8175c0ae996b75b162941429e94d9b4" + }, + { + "path": "sites/compass/templates/tours.html", + "sha256": "09dec1c0c4bf3aa86b3501734530c120876359efcf0cf71b130049599a2faa5c" + }, + { + "path": "sites/compass/tests/test_app.py", + "sha256": "fdae3e0f991313c2a69614e5c6efef56e0e4b1f34df05d1d90dae67cf13dad88" + }, + { + "path": "sites/compass/tests/test_sources.py", + "sha256": "7d9cd63defe817e3815146ddea58d66b0e495a329219d22146c3b1cf46dda0a5" + }, + { + "path": "sites/compass/verify/facts.json", + "sha256": "01ef9bb18373cd7009325b37175430f302270f85eedeb24a63609cf3912092b7" + }, + { + "path": "sites/compass/verify/test_verifiers.py", + "sha256": "8e66ad3d6c4aedcef32d5fd0408e0c5e92f460d98e276ce8e06704d0ac753284" + }, + { + "path": "sites/compass/verify/verify_0.py", + "sha256": "e15845424af0b4818b34574083c8429069a11e8f17d955f238995524ed04f027" + }, + { + "path": "sites/compass/verify/verify_1.py", + "sha256": "06267ab38617d947c17962b31a139b8c7405e96dbf4ce72810021b98b2bddcc4" + }, + { + "path": "sites/compass/verify/verify_10.py", + "sha256": "56e5921d51cafd8ae8a3f2ee7df911ed4120cac7ac6d2e404119882df28bec1a" + }, + { + "path": "sites/compass/verify/verify_11.py", + "sha256": "73c9ae435a92e89f8e95f0ccc272c61361ecd34219b4322eb432b77753aea5b1" + }, + { + "path": "sites/compass/verify/verify_12.py", + "sha256": "9290820050be2e9270b77c6eb2032c95df2d1295787523b0b154dd1c1c7c6b55" + }, + { + "path": "sites/compass/verify/verify_13.py", + "sha256": "c2da8396b73dc62d97a32ff3d834f396310f0fd1bd07e2de29dee4df7686be9c" + }, + { + "path": "sites/compass/verify/verify_14.py", + "sha256": "ad6142516d21c51d5eb3bb2a588341bd4195b25b28c38d101c1f3d4111d78eaa" + }, + { + "path": "sites/compass/verify/verify_15.py", + "sha256": "1801ed6b1c535c28cf40d266de8d48e9413d03f1856c534dbfcd926a8eb87467" + }, + { + "path": "sites/compass/verify/verify_16.py", + "sha256": "2686433661b7daa4085cc042643242ffd49e1202b187a10ea9ad72f7dbab7045" + }, + { + "path": "sites/compass/verify/verify_17.py", + "sha256": "a4fe40522a34be33dbb9d2d939f86ac1b98657e5ae8537e3414237dd7433408f" + }, + { + "path": "sites/compass/verify/verify_2.py", + "sha256": "d32d791ba62e92869a8bf532cd55fd727a7419f4b3bda083f1074b428f11bf0f" + }, + { + "path": "sites/compass/verify/verify_3.py", + "sha256": "55a58ab16602b8f1a018d8d1af4d1f66afae4f7b40e42859d4152e1347ce5aa7" + }, + { + "path": "sites/compass/verify/verify_4.py", + "sha256": "0384175f158ab24aeeda7a777ebc9008c63244c789356b54acb806c9a034a361" + }, + { + "path": "sites/compass/verify/verify_5.py", + "sha256": "3846905f0d4e78681d15a2c4691d09ba90bf5dec8d41a6f4aa3360748db7b322" + }, + { + "path": "sites/compass/verify/verify_6.py", + "sha256": "95530e261faee14dbc60b494a640f1dd1c001dc66f523c04356376b22deb1d20" + }, + { + "path": "sites/compass/verify/verify_7.py", + "sha256": "174ae34dd129855688ead1ea7d7d07c3380c423edbde48d22957ae6b2df71910" + }, + { + "path": "sites/compass/verify/verify_lib.py", + "sha256": "78b0afaf0df5620fd7b0ae5f3c900fe845b1a24e005787a8ed4bb3f58c452476" + } + ], + "frozen_task_evidence": { + "candidate": "b66016dd16dfc7eb776f58d5490fc31caecac68c", + "asset_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "manifest_sha256": "3125bf726ae7e8faa3020c070d5f08037b619f0474ab3c2c552a272e25be41fd", + "verdict_sha256": "342633f8e1a3f0a31cf5983912c196573a4c7336591d66d3c315938f1035f662", + "scope": "Existing 16 task completions only. No new canonical task runs or Claude verdict generated for Sell. Existing task entry controls and login rechecked in real browser; data/contracts/graders and prior asset files unchanged." + }, + "images": [ + { + "name": "source-home-desktop-final", + "at": "2026-09-06T14:54:46.186Z", + "brokenImages": 148, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "https://www.compass.com/", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/sell/source-home-desktop-final.jpg", + "width": 1440, + "height": 900, + "sha256": "b0be73b984f7c6008e6fee6f0e95c60084ff239dfb25b74da6103249595b28a9", + "state": "signed out, top of page", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "before-home-desktop", + "at": "2026-09-06T14:35:27.165Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/sell/before-home-desktop.jpg", + "width": 1440, + "height": 900, + "sha256": "fa359a8b6ae983f0cfbd2604567371a4b8a059fd6e2dbe097c831adaafd3724a", + "state": "signed out, top of page", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "after-home-desktop-final", + "at": "2026-09-06T14:47:12.945Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/", + "viewport": { + "height": 900, + "width": 1440 + }, + "screenshot_dimensions": { + "width": 1440, + "height": 900 + }, + "capture_attempts": 1, + "file": "visual-review/sell/after-home-desktop-final.jpg", + "width": 1440, + "height": 900, + "sha256": "a544d8cbec9789851a2aab6974723e9220437da833d58a169797b868cd4812ee", + "state": "See named state and URL; authenticated captures use the synthetic Alice account", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "source-home-390", + "url": "https://www.compass.com/", + "saved_at": "2026-09-06T14:36:09.036057+00:00", + "time_basis": "file save time; exact capture time unavailable", + "viewport": { + "width": 390, + "height": 844 + }, + "scrollY": 0, + "file": "visual-review/sell/source-home-390.jpg", + "width": 390, + "height": 844, + "sha256": "33212d83134053ce8bf38ee583682898c6d84e559f68a71826117170d52400f9", + "state": "signed out, top of page", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "before-home-390", + "at": "2026-09-06T14:35:38.321Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/", + "viewport": { + "height": 844, + "width": 390 + }, + "file": "visual-review/sell/before-home-390.jpg", + "width": 390, + "height": 844, + "sha256": "b2ace88a6efc2cec5355aa60ca66de24b2ff9f21830b09aa5cf89455e7d984c7", + "state": "signed out, top of page", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "after-home-390", + "at": "2026-09-06T14:35:38.636Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/", + "viewport": { + "height": 844, + "width": 390 + }, + "file": "visual-review/sell/after-home-390.jpg", + "width": 390, + "height": 844, + "sha256": "773a8d636d219e2429a92d2fb8bb8b74c1aab242a76f3ff6319405846075daa5", + "state": "See named state and URL; authenticated captures use the synthetic Alice account", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "source-sell-1440", + "url": "https://www.compass.com/sell/", + "saved_at": "2026-09-06T14:24:39.355447+00:00", + "time_basis": "file save time; exact capture time unavailable", + "viewport": { + "width": 1440, + "height": 900 + }, + "scrollY": 0, + "file": "visual-review/sell/source-sell-1440.jpg", + "width": 1440, + "height": 900, + "sha256": "cf0b367d058ca0f94ca97643a82290759f9c02eb5f4560389b5748f8c1bf46e9", + "state": "signed out, top of page", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "before-sell-desktop", + "at": "2026-09-06T14:35:27.299Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/sell/", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/sell/before-sell-desktop.jpg", + "width": 1440, + "height": 900, + "sha256": "5f6eefb4a38d47ca5b4d6473192f84a916d5c3d75182108ea3e63adc45a34f59", + "state": "signed out, top of page", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "after-sell-desktop-final", + "at": "2026-09-06T14:47:12.476Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/sell/", + "viewport": { + "height": 900, + "width": 1440 + }, + "screenshot_dimensions": { + "width": 1440, + "height": 900 + }, + "capture_attempts": 1, + "file": "visual-review/sell/after-sell-desktop-final.jpg", + "width": 1440, + "height": 900, + "sha256": "728454a45e7e9466f71fea42caa5d758f31b71d4f5af8e93cf2d129b8d424ebc", + "state": "See named state and URL; authenticated captures use the synthetic Alice account", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "source-sell-390", + "url": "https://www.compass.com/sell/", + "saved_at": "2026-09-06T14:29:58.487674+00:00", + "time_basis": "file save time; exact capture time unavailable", + "viewport": { + "width": 390, + "height": 844 + }, + "scrollY": 0, + "file": "visual-review/sell/source-sell-390.jpg", + "width": 390, + "height": 844, + "sha256": "84872052fc617bb69c90c87379a0c48aa9b82fd0e7151a1934277eef6102a0a1", + "state": "signed out, top of page", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "before-sell-390", + "at": "2026-09-06T14:35:38.502Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:40019/sell/", + "viewport": { + "height": 844, + "width": 390 + }, + "file": "visual-review/sell/before-sell-390.jpg", + "width": 390, + "height": 844, + "sha256": "6950a612ae0f15206959d12ed0083d29983fe54ac578e03c77cc53eeb8f12237", + "state": "signed out, top of page", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "after-sell-390-final", + "at": "2026-09-06T14:37:32.278Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/sell/", + "viewport": { + "height": 844, + "width": 390 + }, + "file": "visual-review/sell/after-sell-390-final.jpg", + "width": 390, + "height": 844, + "sha256": "608e08a1f80f6b7ad2562add04fedd237dfe53b3b0dd15d514d0a974b42122a1", + "state": "See named state and URL; authenticated captures use the synthetic Alice account", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "after-menu-390", + "at": "2026-09-06T14:35:39.056Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/", + "viewport": { + "height": 844, + "width": 390 + }, + "file": "visual-review/sell/after-menu-390.jpg", + "width": 390, + "height": 844, + "sha256": "ba574d495f5e668067c6aadc67d7091ceedfb27bf079f62ab7a7dc4b76b5b3f4", + "state": "See named state and URL; authenticated captures use the synthetic Alice account", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "after-sell-320", + "at": "2026-09-06T14:37:32.617Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/sell/", + "viewport": { + "height": 780, + "width": 320 + }, + "file": "visual-review/sell/after-sell-320.jpg", + "width": 320, + "height": 780, + "sha256": "02cb663cbae90471b865244e7e485d0c84c20583b766c23115216a193c61374a", + "state": "See named state and URL; authenticated captures use the synthetic Alice account", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "after-sell-contact-320", + "at": "2026-09-06T14:37:35.795Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 428.5, + "url": "http://localhost:42019/sell/#sell-with-us", + "viewport": { + "height": 780, + "width": 320 + }, + "file": "visual-review/sell/after-sell-contact-320.jpg", + "width": 320, + "height": 780, + "sha256": "aeba872f3c0871b30046d50282d1da624252f143feeee9b61c44e0691b2191b9", + "state": "See named state and URL; authenticated captures use the synthetic Alice account", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "after-sell-tablet-final", + "at": "2026-09-06T14:42:26.004Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/sell/", + "viewport": { + "height": 1024, + "width": 768 + }, + "screenshot_dimensions": { + "width": 768, + "height": 1024 + }, + "capture_attempts": 1, + "file": "visual-review/sell/after-sell-tablet-final.jpg", + "width": 768, + "height": 1024, + "sha256": "c86075bd3575124edab4db7ceca02134bca1dad386df3862aabd98c4ed1423b4", + "state": "See named state and URL; authenticated captures use the synthetic Alice account", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "after-sell-contact-1440-final", + "at": "2026-09-06T14:37:39.537Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 528, + "url": "http://localhost:42019/sell/#sell-with-us", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/sell/after-sell-contact-1440-final.jpg", + "width": 1440, + "height": 900, + "sha256": "0158cf10849c4e386f311fc9e3b4ee040da9ba4a962b20a881977006c87f6b5b", + "state": "See named state and URL; authenticated captures use the synthetic Alice account", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "after-authenticated-nav-1100", + "at": "2026-09-06T14:38:57.045Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/account", + "viewport": { + "height": 900, + "width": 1100 + }, + "file": "visual-review/sell/after-authenticated-nav-1100.jpg", + "width": 1100, + "height": 900, + "sha256": "b740efbfb572f7d225eeb4d4ccabbff00d5023a2e58afa19564cb2c4a8ef516b", + "state": "See named state and URL; authenticated captures use the synthetic Alice account", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "after-account-768", + "at": "2026-09-06T14:38:57.164Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/account", + "viewport": { + "height": 1024, + "width": 768 + }, + "file": "visual-review/sell/after-account-768.jpg", + "width": 768, + "height": 1024, + "sha256": "2a4ca5338eaf9db17020284411bbc07e8da527bfb134ef347931d3806c3e93a0", + "state": "See named state and URL; authenticated captures use the synthetic Alice account", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "after-authenticated-sell-768", + "at": "2026-09-06T14:38:57.683Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/sell/", + "viewport": { + "height": 1024, + "width": 768 + }, + "file": "visual-review/sell/after-authenticated-sell-768.jpg", + "width": 768, + "height": 1024, + "sha256": "59d9ac4ae0ac55286792e8147515a3e4376cd9d9b92a98bbe99eb5f0de93c4cb", + "state": "See named state and URL; authenticated captures use the synthetic Alice account", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "after-agent-link-1440", + "at": "2026-09-06T14:35:26.942Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/agents", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/sell/after-agent-link-1440.jpg", + "width": 1440, + "height": 900, + "sha256": "521bf1623b6fdbf7f429008832be66fe9420aac9dfd40588c383451ff56fce17", + "state": "See named state and URL; authenticated captures use the synthetic Alice account", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "after-home-sell-keyboard", + "at": "2026-09-06T14:35:27.614Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/sell/?origin=sellTab", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/sell/after-home-sell-keyboard.jpg", + "width": 1440, + "height": 900, + "sha256": "5765dcf7fea5590900af11160aabe3675e71384a60e563ae0d9f5651d06526d1", + "state": "See named state and URL; authenticated captures use the synthetic Alice account", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "after-existing-buy-search", + "at": "2026-09-06T14:37:40.180Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/search?status=for-sale&q=Miami", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/sell/after-existing-buy-search.jpg", + "width": 1440, + "height": 900, + "sha256": "277bb8f19b1628bc445368242e8edbb16d3b664f083ff673f08087cbca81daf2", + "state": "See named state and URL; authenticated captures use the synthetic Alice account", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + }, + { + "name": "after-existing-rent-search", + "at": "2026-09-06T14:38:47.240Z", + "brokenImages": 0, + "fonts": "loaded", + "overflow": false, + "scrollY": 0, + "url": "http://localhost:42019/search?status=for-rent&q=New+York", + "viewport": { + "height": 900, + "width": 1440 + }, + "file": "visual-review/sell/after-existing-rent-search.jpg", + "width": 1440, + "height": 900, + "sha256": "2fcedd6796682fcc8ddf2c63df74b7b11421908d6274a000e4e699e1c8eacb2e", + "state": "See named state and URL; authenticated captures use the synthetic Alice account", + "zoom": "100% browser zoom", + "format": "unaltered browser JPEG" + } + ], + "human_visual_acceptance": "pending", + "pixel_similarity_score": null +} diff --git a/sites/compass/docs/validation.json b/sites/compass/docs/validation.json new file mode 100644 index 00000000..195143e2 --- /dev/null +++ b/sites/compass/docs/validation.json @@ -0,0 +1,5159 @@ +{ + "recorded_at": "2026-09-06T12:15:44.712523+00:00", + "run_set_sha256": "246936747ce86e61bb24b77dd975122b4d27cae122fd5321e2e559c7d4165109", + "runtime_code": "3cdc0b66d72b8a789b89583176c668081de36852", + "execution_checkout": "b84eaf60bf02a30a45da643b62c92b343e70f426", + "scorer_code": "79afdfc3c2d915b325d0336e5ac0396adc1a77ae", + "candidate_implementation_checkpoint": "afb2ee5ba3bd09d881e559ac6b171f1459526d20", + "assets_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "compass_archive_sha256": "df94bf02d1d9ffc5dd13a5f9d6ac8a262ab30a6f6d0b3b5fb7348da3b3f6d40a", + "pytest": { + "passed": 166, + "application_source_cases": 42, + "verifier_cases": 124, + "warnings": 156, + "seconds": 20.09, + "log_sha256": "8bafe0dbce4ecfb0c74d7ebf819c12fbb72d47e81397ec73fc4ed0175c420052" + }, + "runs": [ + { + "task_id": "Compass--0", + "recorded_steps_including_done": 5, + "mode": "guided/source-aware", + "run_id": "guided-003-durable", + "port": 40019, + "run_code_sha": "b84eaf60bf02a30a45da643b62c92b343e70f426", + "run_image_code_sha": "3cdc0b66d72b8a789b89583176c668081de36852", + "run_asset_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "original_trajectory_sha256": "7cdbbaf9a4cb0cb29ebbfd6acd46325adefd91cb5596a5860b21e99e56725ada", + "trajectory_sha256": "5ebd3470c9ce9069129cce326aa2d524311abfff122029622f1aac88e6e2ec36", + "native_action_export": [ + { + "step": 0, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 1, + "recorded_operation": "filter", + "native_action": "click" + }, + { + "step": 2, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 3, + "recorded_operation": "read_property_details", + "native_action": "click" + }, + { + "step": 4, + "recorded_operation": "done", + "native_action": "done" + } + ], + "before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "after_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "reset_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "failed_actions": [], + "scorer_sha": "79afdfc3c2d915b325d0336e5ac0396adc1a77ae", + "verifier": { + "task_id": "Compass--0", + "pass": true, + "reason": "All applicable checks passed", + "evidence": [ + { + "check": "task_identity", + "pass": true, + "detail": "" + }, + { + "check": "local_ui_evidence", + "pass": true, + "detail": "" + }, + { + "check": "final_answer", + "pass": true, + "detail": "" + }, + { + "check": "completed_run", + "pass": true, + "detail": "" + }, + { + "check": "step_screenshot_package", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_collections", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_users", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_homes", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_cities", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_inquiries", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_tours", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_agents", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_searches", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_listings", + "pass": true, + "detail": "" + }, + { + "check": "answer_target_address", + "pass": true, + "detail": "" + }, + { + "check": "target_property_details", + "pass": true, + "detail": "" + }, + { + "check": "answer_year_built", + "pass": true, + "detail": "" + }, + { + "check": "answer_mls_number", + "pass": true, + "detail": "" + } + ] + }, + "screenshots": 10, + "screenshot_files": [ + { + "file": "screenshots/step_000.png", + "sha256": "11262b19332559bf7878a479b1211021f75e36d230f5abc6e69b824c38863642" + }, + { + "file": "screenshots/step_001.png", + "sha256": "56a97a7b6afa57900be7315ea8dc1a329cf5ded4d83c1617a8b6ccb3c25ce9a5" + }, + { + "file": "screenshots/step_002.png", + "sha256": "56a97a7b6afa57900be7315ea8dc1a329cf5ded4d83c1617a8b6ccb3c25ce9a5" + }, + { + "file": "screenshots/step_003.png", + "sha256": "8c6365594b05c93ebac1fdf9587b8ac8c7822a54df772e833b78253aceb22ddc" + }, + { + "file": "screenshots/step_004.png", + "sha256": "8c6365594b05c93ebac1fdf9587b8ac8c7822a54df772e833b78253aceb22ddc" + }, + { + "file": "screenshots/step_005.png", + "sha256": "e9adcfd3c2a912e3c3101b8f3e725f90ac87275bebbc52a18dc08f6f005f2368" + }, + { + "file": "screenshots/step_006.png", + "sha256": "e9adcfd3c2a912e3c3101b8f3e725f90ac87275bebbc52a18dc08f6f005f2368" + }, + { + "file": "screenshots/step_007.png", + "sha256": "e8181ad8e3df8bfb43402981eb92b8fbc03cba4945eab6951ee64adb9416508e" + }, + { + "file": "screenshots/step_008.png", + "sha256": "e8181ad8e3df8bfb43402981eb92b8fbc03cba4945eab6951ee64adb9416508e" + }, + { + "file": "screenshots/step_009.png", + "sha256": "e8181ad8e3df8bfb43402981eb92b8fbc03cba4945eab6951ee64adb9416508e" + } + ] + }, + { + "task_id": "Compass--1", + "recorded_steps_including_done": 5, + "mode": "guided/source-aware", + "run_id": "guided-003-durable", + "port": 40019, + "run_code_sha": "b84eaf60bf02a30a45da643b62c92b343e70f426", + "run_image_code_sha": "3cdc0b66d72b8a789b89583176c668081de36852", + "run_asset_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "original_trajectory_sha256": "1a2a5622ecb7f23a53f58e4ae148b758b2e196d6293fbf63df2efcac0700fa0b", + "trajectory_sha256": "5b2cedd4d6ca1cadccd751f38ecda81fc56ab651748790f6efb06d6f30821b89", + "native_action_export": [ + { + "step": 0, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 1, + "recorded_operation": "filter", + "native_action": "click" + }, + { + "step": 2, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 3, + "recorded_operation": "read_property_details", + "native_action": "click" + }, + { + "step": 4, + "recorded_operation": "done", + "native_action": "done" + } + ], + "before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "after_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "reset_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "failed_actions": [], + "scorer_sha": "79afdfc3c2d915b325d0336e5ac0396adc1a77ae", + "verifier": { + "task_id": "Compass--1", + "pass": true, + "reason": "All applicable checks passed", + "evidence": [ + { + "check": "task_identity", + "pass": true, + "detail": "" + }, + { + "check": "local_ui_evidence", + "pass": true, + "detail": "" + }, + { + "check": "final_answer", + "pass": true, + "detail": "" + }, + { + "check": "completed_run", + "pass": true, + "detail": "" + }, + { + "check": "step_screenshot_package", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_searches", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_listings", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_agents", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_inquiries", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_homes", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_collections", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_cities", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_users", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_tours", + "pass": true, + "detail": "" + }, + { + "check": "answer_target_address", + "pass": true, + "detail": "" + }, + { + "check": "target_property_details", + "pass": true, + "detail": "" + }, + { + "check": "answer_price", + "pass": true, + "detail": "" + }, + { + "check": "answer_year_built", + "pass": true, + "detail": "" + }, + { + "check": "answer_mls_number", + "pass": true, + "detail": "" + } + ] + }, + "screenshots": 10, + "screenshot_files": [ + { + "file": "screenshots/step_000.png", + "sha256": "11262b19332559bf7878a479b1211021f75e36d230f5abc6e69b824c38863642" + }, + { + "file": "screenshots/step_001.png", + "sha256": "51ea4bec7c96535376d102760c901836a75a4cfcc6767e577a89781cb19d5b6a" + }, + { + "file": "screenshots/step_002.png", + "sha256": "51ea4bec7c96535376d102760c901836a75a4cfcc6767e577a89781cb19d5b6a" + }, + { + "file": "screenshots/step_003.png", + "sha256": "9c2b0ec12cf84f0fdb53bba0649cc8c79aea6a724a85de3d5f5ff7999f8288b8" + }, + { + "file": "screenshots/step_004.png", + "sha256": "9c2b0ec12cf84f0fdb53bba0649cc8c79aea6a724a85de3d5f5ff7999f8288b8" + }, + { + "file": "screenshots/step_005.png", + "sha256": "1c671353f03a0e5708a5f4c5d3847db78e7182146ccede43c23be9aaa324c9d5" + }, + { + "file": "screenshots/step_006.png", + "sha256": "1c671353f03a0e5708a5f4c5d3847db78e7182146ccede43c23be9aaa324c9d5" + }, + { + "file": "screenshots/step_007.png", + "sha256": "a894353cc0e9805b810557905626cc5f89a10b7113db74c0ee58a8a4795d3df7" + }, + { + "file": "screenshots/step_008.png", + "sha256": "a894353cc0e9805b810557905626cc5f89a10b7113db74c0ee58a8a4795d3df7" + }, + { + "file": "screenshots/step_009.png", + "sha256": "a894353cc0e9805b810557905626cc5f89a10b7113db74c0ee58a8a4795d3df7" + } + ] + }, + { + "task_id": "Compass--2", + "recorded_steps_including_done": 7, + "mode": "guided/source-aware", + "run_id": "guided-003-durable", + "port": 40019, + "run_code_sha": "b84eaf60bf02a30a45da643b62c92b343e70f426", + "run_image_code_sha": "3cdc0b66d72b8a789b89583176c668081de36852", + "run_asset_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "original_trajectory_sha256": "8810d4a51907f0dcc9e27623746a06ff55797ac2caefc1f1769556e647964e90", + "trajectory_sha256": "dd8cb5ddd108046def69f4a5ef92bbf834b08a263081420e3f0620c7b67e626a", + "native_action_export": [ + { + "step": 0, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 1, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 2, + "recorded_operation": "read_property_details", + "native_action": "click" + }, + { + "step": 3, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 4, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 5, + "recorded_operation": "read_property_details", + "native_action": "click" + }, + { + "step": 6, + "recorded_operation": "done", + "native_action": "done" + } + ], + "before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "after_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "reset_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "failed_actions": [], + "scorer_sha": "79afdfc3c2d915b325d0336e5ac0396adc1a77ae", + "verifier": { + "task_id": "Compass--2", + "pass": true, + "reason": "All applicable checks passed", + "evidence": [ + { + "check": "task_identity", + "pass": true, + "detail": "" + }, + { + "check": "local_ui_evidence", + "pass": true, + "detail": "" + }, + { + "check": "final_answer", + "pass": true, + "detail": "" + }, + { + "check": "completed_run", + "pass": true, + "detail": "" + }, + { + "check": "step_screenshot_package", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_homes", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_searches", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_users", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_inquiries", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_cities", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_collections", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_tours", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_agents", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_listings", + "pass": true, + "detail": "" + }, + { + "check": "answer_target_address", + "pass": true, + "detail": "" + }, + { + "check": "target_property_details", + "pass": true, + "detail": "" + }, + { + "check": "details_115", + "pass": true, + "detail": "" + }, + { + "check": "associated_facts_115", + "pass": true, + "detail": "" + }, + { + "check": "details_110", + "pass": true, + "detail": "" + }, + { + "check": "associated_facts_110", + "pass": true, + "detail": "" + }, + { + "check": "lower_ratio_selection", + "pass": true, + "detail": "" + } + ] + }, + "screenshots": 14, + "screenshot_files": [ + { + "file": "screenshots/step_000.png", + "sha256": "11262b19332559bf7878a479b1211021f75e36d230f5abc6e69b824c38863642" + }, + { + "file": "screenshots/step_001.png", + "sha256": "1035bb8bb0ca80b1d9aee21da6036f1aa817448aca1025e6b7cb6dff83b8c8e0" + }, + { + "file": "screenshots/step_002.png", + "sha256": "1035bb8bb0ca80b1d9aee21da6036f1aa817448aca1025e6b7cb6dff83b8c8e0" + }, + { + "file": "screenshots/step_003.png", + "sha256": "63c30978c5efb64c7d51afb933a5f29b37e26bb0ed5799a44e6b0b40c79642e3" + }, + { + "file": "screenshots/step_004.png", + "sha256": "63c30978c5efb64c7d51afb933a5f29b37e26bb0ed5799a44e6b0b40c79642e3" + }, + { + "file": "screenshots/step_005.png", + "sha256": "eef7fd2cf314f2e0b7aec8b56d185c651eb2d5ceb9dff543b30308280ca3528b" + }, + { + "file": "screenshots/step_006.png", + "sha256": "eef7fd2cf314f2e0b7aec8b56d185c651eb2d5ceb9dff543b30308280ca3528b" + }, + { + "file": "screenshots/step_007.png", + "sha256": "d5db062774377ac07cd6781f0aefb798e36496962c80390e2ea0f527c060560c" + }, + { + "file": "screenshots/step_008.png", + "sha256": "d5db062774377ac07cd6781f0aefb798e36496962c80390e2ea0f527c060560c" + }, + { + "file": "screenshots/step_009.png", + "sha256": "6c33f25fd602469ac622aef795e7ac693029639eca6b059b94e9cf9c1ff527fc" + }, + { + "file": "screenshots/step_010.png", + "sha256": "6c33f25fd602469ac622aef795e7ac693029639eca6b059b94e9cf9c1ff527fc" + }, + { + "file": "screenshots/step_011.png", + "sha256": "85452a6878fb5444ad2adb9cb518d3a4623ad534ad2b725706d8dbd47d3149c7" + }, + { + "file": "screenshots/step_012.png", + "sha256": "85452a6878fb5444ad2adb9cb518d3a4623ad534ad2b725706d8dbd47d3149c7" + }, + { + "file": "screenshots/step_013.png", + "sha256": "85452a6878fb5444ad2adb9cb518d3a4623ad534ad2b725706d8dbd47d3149c7" + } + ] + }, + { + "task_id": "Compass--3", + "recorded_steps_including_done": 6, + "mode": "guided/source-aware", + "run_id": "guided-003-durable", + "port": 40019, + "run_code_sha": "b84eaf60bf02a30a45da643b62c92b343e70f426", + "run_image_code_sha": "3cdc0b66d72b8a789b89583176c668081de36852", + "run_asset_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "original_trajectory_sha256": "cd01b1a8903940438f96568d08f9a068e442fd22982cea55ee6aeae99944eed3", + "trajectory_sha256": "b2814aedcca97c1faea699bdf0cb8d0274ecbfd17e1d7af76457a264f71e2629", + "native_action_export": [ + { + "step": 0, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 1, + "recorded_operation": "filter", + "native_action": "click" + }, + { + "step": 2, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 3, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 4, + "recorded_operation": "read_property_details", + "native_action": "click" + }, + { + "step": 5, + "recorded_operation": "done", + "native_action": "done" + } + ], + "before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "after_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "reset_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "failed_actions": [ + 2 + ], + "scorer_sha": "79afdfc3c2d915b325d0336e5ac0396adc1a77ae", + "verifier": { + "task_id": "Compass--3", + "pass": true, + "reason": "All applicable checks passed", + "evidence": [ + { + "check": "task_identity", + "pass": true, + "detail": "" + }, + { + "check": "local_ui_evidence", + "pass": true, + "detail": "" + }, + { + "check": "final_answer", + "pass": true, + "detail": "" + }, + { + "check": "completed_run", + "pass": true, + "detail": "" + }, + { + "check": "step_screenshot_package", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_cities", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_homes", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_searches", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_agents", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_users", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_inquiries", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_collections", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_listings", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_tours", + "pass": true, + "detail": "" + }, + { + "check": "answer_target_address", + "pass": true, + "detail": "" + }, + { + "check": "target_property_details", + "pass": true, + "detail": "" + }, + { + "check": "answer_year_built", + "pass": true, + "detail": "" + }, + { + "check": "answer_agent_name", + "pass": true, + "detail": "" + } + ] + }, + "screenshots": 12, + "screenshot_files": [ + { + "file": "screenshots/step_000.png", + "sha256": "11262b19332559bf7878a479b1211021f75e36d230f5abc6e69b824c38863642" + }, + { + "file": "screenshots/step_001.png", + "sha256": "1f85a31d9fafa9be2602ce4e8af2a9c12d8a1849fdbd6dddb08079c054d72a34" + }, + { + "file": "screenshots/step_002.png", + "sha256": "1f85a31d9fafa9be2602ce4e8af2a9c12d8a1849fdbd6dddb08079c054d72a34" + }, + { + "file": "screenshots/step_003.png", + "sha256": "afefbd23b68d7fa5d7bd9d264430acfbdf4268497fedbe7e035b706dc8180e79" + }, + { + "file": "screenshots/step_004.png", + "sha256": "afefbd23b68d7fa5d7bd9d264430acfbdf4268497fedbe7e035b706dc8180e79" + }, + { + "file": "screenshots/step_005.png", + "sha256": "afefbd23b68d7fa5d7bd9d264430acfbdf4268497fedbe7e035b706dc8180e79" + }, + { + "file": "screenshots/step_006.png", + "sha256": "afefbd23b68d7fa5d7bd9d264430acfbdf4268497fedbe7e035b706dc8180e79" + }, + { + "file": "screenshots/step_007.png", + "sha256": "4c63c949673b4a5361482882d351b39dbf9641d90d00df1fd0be27e96d0a2301" + }, + { + "file": "screenshots/step_008.png", + "sha256": "4c63c949673b4a5361482882d351b39dbf9641d90d00df1fd0be27e96d0a2301" + }, + { + "file": "screenshots/step_009.png", + "sha256": "ae424aea0520375e8668f230c35cf4353cf50c2fd32654e396b7040d065cb8cf" + }, + { + "file": "screenshots/step_010.png", + "sha256": "ae424aea0520375e8668f230c35cf4353cf50c2fd32654e396b7040d065cb8cf" + }, + { + "file": "screenshots/step_011.png", + "sha256": "ae424aea0520375e8668f230c35cf4353cf50c2fd32654e396b7040d065cb8cf" + } + ] + }, + { + "task_id": "Compass--4", + "recorded_steps_including_done": 9, + "mode": "guided/source-aware", + "run_id": "guided-003-durable", + "port": 40019, + "run_code_sha": "b84eaf60bf02a30a45da643b62c92b343e70f426", + "run_image_code_sha": "3cdc0b66d72b8a789b89583176c668081de36852", + "run_asset_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "original_trajectory_sha256": "ebdfa52d0732945fe7639b4a6b711845f23b0a51d5f04df3a6066f4e3120641a", + "trajectory_sha256": "1d548bbbd11034bba2053f7afd6d7d236530c4fab89aaadd1b557a75106524e3", + "native_action_export": [ + { + "step": 0, + "recorded_operation": "open_register", + "native_action": "click" + }, + { + "step": 1, + "recorded_operation": "register", + "native_action": "click" + }, + { + "step": 2, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 3, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 4, + "recorded_operation": "read_property_details", + "native_action": "click" + }, + { + "step": 5, + "recorded_operation": "save_home", + "native_action": "click" + }, + { + "step": 6, + "recorded_operation": "confirm_saved_homes", + "native_action": "click" + }, + { + "step": 7, + "recorded_operation": "reload_confirmation", + "native_action": "reload" + }, + { + "step": 8, + "recorded_operation": "done", + "native_action": "done" + } + ], + "before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "after_sha256": "0e2d3ef29b068514552fb8ec62a4ec857c937276f80d427421373bbc6cba6b3b", + "reset_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "failed_actions": [], + "scorer_sha": "79afdfc3c2d915b325d0336e5ac0396adc1a77ae", + "verifier": { + "task_id": "Compass--4", + "pass": true, + "reason": "All applicable checks passed", + "evidence": [ + { + "check": "task_identity", + "pass": true, + "detail": "" + }, + { + "check": "local_ui_evidence", + "pass": true, + "detail": "" + }, + { + "check": "final_answer", + "pass": true, + "detail": "" + }, + { + "check": "completed_run", + "pass": true, + "detail": "" + }, + { + "check": "step_screenshot_package", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_tours", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_listings", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_collections", + "pass": true, + "detail": "" + }, + { + "check": "preserve_users_1", + "pass": true, + "detail": "" + }, + { + "check": "preserve_users_2", + "pass": true, + "detail": "" + }, + { + "check": "preserve_users_3", + "pass": true, + "detail": "" + }, + { + "check": "preserve_users_4", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_searches", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_inquiries", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_cities", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_1", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_2", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_3", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_4", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_5", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_6", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_7", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_8", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_9", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_10", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_11", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_12", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_agents", + "pass": true, + "detail": "" + }, + { + "check": "target_account", + "pass": true, + "detail": "" + }, + { + "check": "one_registered_account", + "pass": true, + "detail": "" + }, + { + "check": "registered_password", + "pass": true, + "detail": "" + }, + { + "check": "registration_defaults", + "pass": true, + "detail": "" + }, + { + "check": "one_target_save", + "pass": true, + "detail": "" + }, + { + "check": "saved_homes_confirmation", + "pass": true, + "detail": "" + }, + { + "check": "answer_price", + "pass": true, + "detail": "" + }, + { + "check": "answer_property_type", + "pass": true, + "detail": "" + } + ] + }, + "screenshots": 18, + "screenshot_files": [ + { + "file": "screenshots/step_000.png", + "sha256": "11262b19332559bf7878a479b1211021f75e36d230f5abc6e69b824c38863642" + }, + { + "file": "screenshots/step_001.png", + "sha256": "9bbf1aa126236b25e4707cea0b23b5b5631e29eebe548c922298299925a1f5f1" + }, + { + "file": "screenshots/step_002.png", + "sha256": "9bbf1aa126236b25e4707cea0b23b5b5631e29eebe548c922298299925a1f5f1" + }, + { + "file": "screenshots/step_003.png", + "sha256": "3718c1c09eba9fbac3aa0c0c59d57de8b90a6fdefd88cfe9bc296e0b7df794b1" + }, + { + "file": "screenshots/step_004.png", + "sha256": "3718c1c09eba9fbac3aa0c0c59d57de8b90a6fdefd88cfe9bc296e0b7df794b1" + }, + { + "file": "screenshots/step_005.png", + "sha256": "230bd5ff0960147483545d58631bfff3d0012f0a26c20c25866ab1a6bbd4edec" + }, + { + "file": "screenshots/step_006.png", + "sha256": "230bd5ff0960147483545d58631bfff3d0012f0a26c20c25866ab1a6bbd4edec" + }, + { + "file": "screenshots/step_007.png", + "sha256": "328891e2e4cedfe12fe58b306a851f68e23a4b5d707b882004afa0908cc9b7b1" + }, + { + "file": "screenshots/step_008.png", + "sha256": "328891e2e4cedfe12fe58b306a851f68e23a4b5d707b882004afa0908cc9b7b1" + }, + { + "file": "screenshots/step_009.png", + "sha256": "ebe649ed93f80eca9b8991cfaa89a58e98a787b4feac7140b3d7cfc4c2428a3a" + }, + { + "file": "screenshots/step_010.png", + "sha256": "ebe649ed93f80eca9b8991cfaa89a58e98a787b4feac7140b3d7cfc4c2428a3a" + }, + { + "file": "screenshots/step_011.png", + "sha256": "dd546a7f1206d556f1ee764d8c59d38cad4760cee7908afa6af03ca33446ba8c" + }, + { + "file": "screenshots/step_012.png", + "sha256": "dd546a7f1206d556f1ee764d8c59d38cad4760cee7908afa6af03ca33446ba8c" + }, + { + "file": "screenshots/step_013.png", + "sha256": "c3203b71ac7c596683f87625d3b67824061ac6a8a7598d9b289446710b790ea6" + }, + { + "file": "screenshots/step_014.png", + "sha256": "c3203b71ac7c596683f87625d3b67824061ac6a8a7598d9b289446710b790ea6" + }, + { + "file": "screenshots/step_015.png", + "sha256": "c3203b71ac7c596683f87625d3b67824061ac6a8a7598d9b289446710b790ea6" + }, + { + "file": "screenshots/step_016.png", + "sha256": "c3203b71ac7c596683f87625d3b67824061ac6a8a7598d9b289446710b790ea6" + }, + { + "file": "screenshots/step_017.png", + "sha256": "c3203b71ac7c596683f87625d3b67824061ac6a8a7598d9b289446710b790ea6" + } + ] + }, + { + "task_id": "Compass--5", + "recorded_steps_including_done": 6, + "mode": "guided/source-aware", + "run_id": "guided-003-durable", + "port": 40019, + "run_code_sha": "b84eaf60bf02a30a45da643b62c92b343e70f426", + "run_image_code_sha": "3cdc0b66d72b8a789b89583176c668081de36852", + "run_asset_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "original_trajectory_sha256": "426bce6639f416e203640d5678f96bac1493b4af73d7d0fcb56908e2a20eda17", + "trajectory_sha256": "745c6477f95464de587d37bc90b6be5f70c3c2aab72fe45624ac44e256579226", + "native_action_export": [ + { + "step": 0, + "recorded_operation": "open_login", + "native_action": "click" + }, + { + "step": 1, + "recorded_operation": "login", + "native_action": "click" + }, + { + "step": 2, + "recorded_operation": "edit_profile", + "native_action": "click" + }, + { + "step": 3, + "recorded_operation": "update_phone", + "native_action": "click" + }, + { + "step": 4, + "recorded_operation": "reload_confirmation", + "native_action": "reload" + }, + { + "step": 5, + "recorded_operation": "done", + "native_action": "done" + } + ], + "before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "after_sha256": "ed00770d1b51f679e616a58277eb5a463ce7c2480a04d37b848e3ef28ef65f04", + "reset_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "failed_actions": [], + "scorer_sha": "79afdfc3c2d915b325d0336e5ac0396adc1a77ae", + "verifier": { + "task_id": "Compass--5", + "pass": true, + "reason": "All applicable checks passed", + "evidence": [ + { + "check": "task_identity", + "pass": true, + "detail": "" + }, + { + "check": "local_ui_evidence", + "pass": true, + "detail": "" + }, + { + "check": "final_answer", + "pass": true, + "detail": "" + }, + { + "check": "completed_run", + "pass": true, + "detail": "" + }, + { + "check": "step_screenshot_package", + "pass": true, + "detail": "" + }, + { + "check": "preserve_users_1", + "pass": true, + "detail": "" + }, + { + "check": "preserve_users_2", + "pass": true, + "detail": "" + }, + { + "check": "preserve_users_3", + "pass": true, + "detail": "" + }, + { + "check": "preserve_users_4", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_cities", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_collections", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_agents", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_inquiries", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_tours", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_homes", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_searches", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_listings", + "pass": true, + "detail": "" + }, + { + "check": "target_account", + "pass": true, + "detail": "" + }, + { + "check": "no_new_users", + "pass": true, + "detail": "" + }, + { + "check": "phone_changed", + "pass": true, + "detail": "" + }, + { + "check": "account_overview_confirmation", + "pass": true, + "detail": "" + }, + { + "check": "answer_phone", + "pass": true, + "detail": "" + }, + { + "check": "answer_existing_location", + "pass": true, + "detail": "" + } + ] + }, + "screenshots": 12, + "screenshot_files": [ + { + "file": "screenshots/step_000.png", + "sha256": "11262b19332559bf7878a479b1211021f75e36d230f5abc6e69b824c38863642" + }, + { + "file": "screenshots/step_001.png", + "sha256": "4b4718fe593f8d4ef1ee57290a70492985b4b34797dfea21788cae6d4aeedd9b" + }, + { + "file": "screenshots/step_002.png", + "sha256": "4b4718fe593f8d4ef1ee57290a70492985b4b34797dfea21788cae6d4aeedd9b" + }, + { + "file": "screenshots/step_003.png", + "sha256": "c9e9abf02b1805f0bfaa1c18cbfa43b11712accdbf96e0275f6d6498cb8b2b8e" + }, + { + "file": "screenshots/step_004.png", + "sha256": "c9e9abf02b1805f0bfaa1c18cbfa43b11712accdbf96e0275f6d6498cb8b2b8e" + }, + { + "file": "screenshots/step_005.png", + "sha256": "4dbcdfe5de49c8109750f15256027d82bc3d98a8876cd7b5b7202dd47819acbf" + }, + { + "file": "screenshots/step_006.png", + "sha256": "4dbcdfe5de49c8109750f15256027d82bc3d98a8876cd7b5b7202dd47819acbf" + }, + { + "file": "screenshots/step_007.png", + "sha256": "8920b24b4aeeb0dc798fb028eb1b749ccc38807aa2dd61810e0519524b3cc2aa" + }, + { + "file": "screenshots/step_008.png", + "sha256": "8920b24b4aeeb0dc798fb028eb1b749ccc38807aa2dd61810e0519524b3cc2aa" + }, + { + "file": "screenshots/step_009.png", + "sha256": "5b934f216a66e68a8eab0184a0739a31eea347fe03c7bda0c25a3751b2e01474" + }, + { + "file": "screenshots/step_010.png", + "sha256": "5b934f216a66e68a8eab0184a0739a31eea347fe03c7bda0c25a3751b2e01474" + }, + { + "file": "screenshots/step_011.png", + "sha256": "5b934f216a66e68a8eab0184a0739a31eea347fe03c7bda0c25a3751b2e01474" + } + ] + }, + { + "task_id": "Compass--6", + "recorded_steps_including_done": 9, + "mode": "guided/source-aware", + "run_id": "guided-003-durable", + "port": 40019, + "run_code_sha": "b84eaf60bf02a30a45da643b62c92b343e70f426", + "run_image_code_sha": "3cdc0b66d72b8a789b89583176c668081de36852", + "run_asset_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "original_trajectory_sha256": "139e821dbd1825f2a0ed18611440fc3e02e70f54f53151326b94a46dbe5dad25", + "trajectory_sha256": "faacf75e12e7510a06f5b34bb9fe670645fc98668b5cac73fe1208c1b26b55b7", + "native_action_export": [ + { + "step": 0, + "recorded_operation": "open_login", + "native_action": "click" + }, + { + "step": 1, + "recorded_operation": "login", + "native_action": "click" + }, + { + "step": 2, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 3, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 4, + "recorded_operation": "read_property_details", + "native_action": "click" + }, + { + "step": 5, + "recorded_operation": "open_tour_form", + "native_action": "click" + }, + { + "step": 6, + "recorded_operation": "request_local_tour", + "native_action": "click" + }, + { + "step": 7, + "recorded_operation": "reload_confirmation", + "native_action": "reload" + }, + { + "step": 8, + "recorded_operation": "done", + "native_action": "done" + } + ], + "before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "after_sha256": "c969b955ee2bebc121d6db52c206530c805635104d82be6ab0402dde9bc38715", + "reset_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "failed_actions": [], + "scorer_sha": "79afdfc3c2d915b325d0336e5ac0396adc1a77ae", + "verifier": { + "task_id": "Compass--6", + "pass": true, + "reason": "All applicable checks passed", + "evidence": [ + { + "check": "task_identity", + "pass": true, + "detail": "" + }, + { + "check": "local_ui_evidence", + "pass": true, + "detail": "" + }, + { + "check": "final_answer", + "pass": true, + "detail": "" + }, + { + "check": "completed_run", + "pass": true, + "detail": "" + }, + { + "check": "step_screenshot_package", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_homes", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_searches", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_users", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_agents", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_collections", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_listings", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_cities", + "pass": true, + "detail": "" + }, + { + "check": "preserve_tours_1", + "pass": true, + "detail": "" + }, + { + "check": "preserve_tours_2", + "pass": true, + "detail": "" + }, + { + "check": "preserve_tours_3", + "pass": true, + "detail": "" + }, + { + "check": "preserve_tours_4", + "pass": true, + "detail": "" + }, + { + "check": "preserve_tours_5", + "pass": true, + "detail": "" + }, + { + "check": "preserve_tours_6", + "pass": true, + "detail": "" + }, + { + "check": "preserve_tours_7", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_inquiries", + "pass": true, + "detail": "" + }, + { + "check": "target_account", + "pass": true, + "detail": "" + }, + { + "check": "one_exact_tour", + "pass": true, + "detail": "" + }, + { + "check": "tours_confirmation", + "pass": true, + "detail": "" + }, + { + "check": "answer_year_built", + "pass": true, + "detail": "" + }, + { + "check": "answer_tour_status", + "pass": true, + "detail": "" + } + ] + }, + "screenshots": 18, + "screenshot_files": [ + { + "file": "screenshots/step_000.png", + "sha256": "11262b19332559bf7878a479b1211021f75e36d230f5abc6e69b824c38863642" + }, + { + "file": "screenshots/step_001.png", + "sha256": "4b4718fe593f8d4ef1ee57290a70492985b4b34797dfea21788cae6d4aeedd9b" + }, + { + "file": "screenshots/step_002.png", + "sha256": "4b4718fe593f8d4ef1ee57290a70492985b4b34797dfea21788cae6d4aeedd9b" + }, + { + "file": "screenshots/step_003.png", + "sha256": "63f77ca4bba1c32c7653a41e5ff71d4a325d419cfc9ff594f4256dc470bc9338" + }, + { + "file": "screenshots/step_004.png", + "sha256": "63f77ca4bba1c32c7653a41e5ff71d4a325d419cfc9ff594f4256dc470bc9338" + }, + { + "file": "screenshots/step_005.png", + "sha256": "86616100f045a38845095069290652b80e541a63c595a5e2f980ef91a931c05b" + }, + { + "file": "screenshots/step_006.png", + "sha256": "86616100f045a38845095069290652b80e541a63c595a5e2f980ef91a931c05b" + }, + { + "file": "screenshots/step_007.png", + "sha256": "d0576b96487904ae2314a63f525ff0c23442287c5b112643201940ad843f046a" + }, + { + "file": "screenshots/step_008.png", + "sha256": "d0576b96487904ae2314a63f525ff0c23442287c5b112643201940ad843f046a" + }, + { + "file": "screenshots/step_009.png", + "sha256": "96efe7e2a0b7f3213491b8313c242701dbca5e42a18638e836f3421237d28efa" + }, + { + "file": "screenshots/step_010.png", + "sha256": "96efe7e2a0b7f3213491b8313c242701dbca5e42a18638e836f3421237d28efa" + }, + { + "file": "screenshots/step_011.png", + "sha256": "22a61f5f84b058995073956b1b6b8fdb1cd3c878f63eda94118e0fcf2cd676e8" + }, + { + "file": "screenshots/step_012.png", + "sha256": "22a61f5f84b058995073956b1b6b8fdb1cd3c878f63eda94118e0fcf2cd676e8" + }, + { + "file": "screenshots/step_013.png", + "sha256": "31b70d37e2202ba2c9de5a9180594733598417607eab605f1cff1a882a4f8974" + }, + { + "file": "screenshots/step_014.png", + "sha256": "31b70d37e2202ba2c9de5a9180594733598417607eab605f1cff1a882a4f8974" + }, + { + "file": "screenshots/step_015.png", + "sha256": "8f7b486e19d63c98937d334a9752557a0178cc25641521649682bf1f2432e2ac" + }, + { + "file": "screenshots/step_016.png", + "sha256": "8f7b486e19d63c98937d334a9752557a0178cc25641521649682bf1f2432e2ac" + }, + { + "file": "screenshots/step_017.png", + "sha256": "8f7b486e19d63c98937d334a9752557a0178cc25641521649682bf1f2432e2ac" + } + ] + }, + { + "task_id": "Compass--7", + "recorded_steps_including_done": 16, + "mode": "guided/source-aware", + "run_id": "guided-003-durable", + "port": 40019, + "run_code_sha": "b84eaf60bf02a30a45da643b62c92b343e70f426", + "run_image_code_sha": "3cdc0b66d72b8a789b89583176c668081de36852", + "run_asset_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "original_trajectory_sha256": "3ff2babcf29f79d31777f664c2dab188b5bc21bbb42bec60cb5cb6a7b46829ac", + "trajectory_sha256": "47dbd549a7e410be80d0539912612fed5e6bdcfdd18b2a64a8dae858ce0c965d", + "native_action_export": [ + { + "step": 0, + "recorded_operation": "open_login", + "native_action": "click" + }, + { + "step": 1, + "recorded_operation": "login", + "native_action": "click" + }, + { + "step": 2, + "recorded_operation": "open_collections", + "native_action": "click" + }, + { + "step": 3, + "recorded_operation": "new_collection", + "native_action": "click" + }, + { + "step": 4, + "recorded_operation": "create_collection", + "native_action": "click" + }, + { + "step": 5, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 6, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 7, + "recorded_operation": "add_to_collection", + "native_action": "click" + }, + { + "step": 8, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 9, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 10, + "recorded_operation": "add_to_collection", + "native_action": "click" + }, + { + "step": 11, + "recorded_operation": "open_collections", + "native_action": "click" + }, + { + "step": 12, + "recorded_operation": "open_collection", + "native_action": "press" + }, + { + "step": 13, + "recorded_operation": "open_share_page", + "native_action": "click" + }, + { + "step": 14, + "recorded_operation": "reload_confirmation", + "native_action": "reload" + }, + { + "step": 15, + "recorded_operation": "done", + "native_action": "done" + } + ], + "before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "after_sha256": "5a0695b1bdd4609785fca040ab13c1f917690ea18f93704948a0565c712f6947", + "reset_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "failed_actions": [], + "scorer_sha": "79afdfc3c2d915b325d0336e5ac0396adc1a77ae", + "verifier": { + "task_id": "Compass--7", + "pass": true, + "reason": "All applicable checks passed", + "evidence": [ + { + "check": "task_identity", + "pass": true, + "detail": "" + }, + { + "check": "local_ui_evidence", + "pass": true, + "detail": "" + }, + { + "check": "final_answer", + "pass": true, + "detail": "" + }, + { + "check": "completed_run", + "pass": true, + "detail": "" + }, + { + "check": "step_screenshot_package", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_users", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_listings", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_inquiries", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_cities", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_agents", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_searches", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_1", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_2", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_3", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_4", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_5", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_6", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_7", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_8", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_9", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_10", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_11", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_12", + "pass": true, + "detail": "" + }, + { + "check": "preserve_collections_1", + "pass": true, + "detail": "" + }, + { + "check": "preserve_collections_2", + "pass": true, + "detail": "" + }, + { + "check": "preserve_collections_3", + "pass": true, + "detail": "" + }, + { + "check": "preserve_collections_4", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_tours", + "pass": true, + "detail": "" + }, + { + "check": "target_account", + "pass": true, + "detail": "" + }, + { + "check": "collection_confirmation", + "pass": true, + "detail": "" + }, + { + "check": "answer_share_token", + "pass": true, + "detail": "" + }, + { + "check": "one_exact_collection", + "pass": true, + "detail": "" + }, + { + "check": "optional_target_saves_only", + "pass": true, + "detail": "" + } + ] + }, + "screenshots": 32, + "screenshot_files": [ + { + "file": "screenshots/step_000.png", + "sha256": "11262b19332559bf7878a479b1211021f75e36d230f5abc6e69b824c38863642" + }, + { + "file": "screenshots/step_001.png", + "sha256": "4b4718fe593f8d4ef1ee57290a70492985b4b34797dfea21788cae6d4aeedd9b" + }, + { + "file": "screenshots/step_002.png", + "sha256": "4b4718fe593f8d4ef1ee57290a70492985b4b34797dfea21788cae6d4aeedd9b" + }, + { + "file": "screenshots/step_003.png", + "sha256": "1fb14bab5ef20e997c17a241894fc851a4c023449e9133e088d4bd856eced717" + }, + { + "file": "screenshots/step_004.png", + "sha256": "1fb14bab5ef20e997c17a241894fc851a4c023449e9133e088d4bd856eced717" + }, + { + "file": "screenshots/step_005.png", + "sha256": "903798258a3d812c19c06da47d1530252849ff6b8ecc7df49c48fab8adf2d913" + }, + { + "file": "screenshots/step_006.png", + "sha256": "903798258a3d812c19c06da47d1530252849ff6b8ecc7df49c48fab8adf2d913" + }, + { + "file": "screenshots/step_007.png", + "sha256": "2f998abcd2dea9b119bd83d468d6241916a6bd18db36e815563cf3a524d5561f" + }, + { + "file": "screenshots/step_008.png", + "sha256": "2f998abcd2dea9b119bd83d468d6241916a6bd18db36e815563cf3a524d5561f" + }, + { + "file": "screenshots/step_009.png", + "sha256": "b7646af55d38731ffe4610b063e59d567a1c4de3d810de366d78a8d12e9641d4" + }, + { + "file": "screenshots/step_010.png", + "sha256": "b7646af55d38731ffe4610b063e59d567a1c4de3d810de366d78a8d12e9641d4" + }, + { + "file": "screenshots/step_011.png", + "sha256": "e7cca9c9e7d12a90a66ca8169fd8d86c52717d6751bebe5aaa7afa1c04c28e7c" + }, + { + "file": "screenshots/step_012.png", + "sha256": "e7cca9c9e7d12a90a66ca8169fd8d86c52717d6751bebe5aaa7afa1c04c28e7c" + }, + { + "file": "screenshots/step_013.png", + "sha256": "2d922f8f599f2e0f3095ac9830d06d15c28f53e7d08d290c0b55ee788ef6ea39" + }, + { + "file": "screenshots/step_014.png", + "sha256": "2d922f8f599f2e0f3095ac9830d06d15c28f53e7d08d290c0b55ee788ef6ea39" + }, + { + "file": "screenshots/step_015.png", + "sha256": "ba74a13e74d12d9d6609a23378d19a73fcd4dd8eaadba16a99f1fc7396e2fc4d" + }, + { + "file": "screenshots/step_016.png", + "sha256": "ba74a13e74d12d9d6609a23378d19a73fcd4dd8eaadba16a99f1fc7396e2fc4d" + }, + { + "file": "screenshots/step_017.png", + "sha256": "df1cafa90da9fe5ac7eeb628fc38cb6ae98d0a7c6a7ed982b46a21607ebc4f46" + }, + { + "file": "screenshots/step_018.png", + "sha256": "df1cafa90da9fe5ac7eeb628fc38cb6ae98d0a7c6a7ed982b46a21607ebc4f46" + }, + { + "file": "screenshots/step_019.png", + "sha256": "019771d5e596eb247e92c217f01679740cf97bd6ea6be9c825deb28360a3c353" + }, + { + "file": "screenshots/step_020.png", + "sha256": "019771d5e596eb247e92c217f01679740cf97bd6ea6be9c825deb28360a3c353" + }, + { + "file": "screenshots/step_021.png", + "sha256": "8a8689f92b3e112059671a69481b04df0df6274ce1e8152546f3aa2afedee216" + }, + { + "file": "screenshots/step_022.png", + "sha256": "8a8689f92b3e112059671a69481b04df0df6274ce1e8152546f3aa2afedee216" + }, + { + "file": "screenshots/step_023.png", + "sha256": "45b0262676c50f8f05f1f09156b793a296102a8f17c9bc2fb3052ea6727a059a" + }, + { + "file": "screenshots/step_024.png", + "sha256": "45b0262676c50f8f05f1f09156b793a296102a8f17c9bc2fb3052ea6727a059a" + }, + { + "file": "screenshots/step_025.png", + "sha256": "c517c1060b54c0b825074914ae69e4db7bbad0df5f87fc7df80eaec189dcdae5" + }, + { + "file": "screenshots/step_026.png", + "sha256": "c517c1060b54c0b825074914ae69e4db7bbad0df5f87fc7df80eaec189dcdae5" + }, + { + "file": "screenshots/step_027.png", + "sha256": "fb6907a247d38c55d8a3b85d4b6663ebd21b806bde6f82286377fa618064c6b9" + }, + { + "file": "screenshots/step_028.png", + "sha256": "fb6907a247d38c55d8a3b85d4b6663ebd21b806bde6f82286377fa618064c6b9" + }, + { + "file": "screenshots/step_029.png", + "sha256": "fb6907a247d38c55d8a3b85d4b6663ebd21b806bde6f82286377fa618064c6b9" + }, + { + "file": "screenshots/step_030.png", + "sha256": "fb6907a247d38c55d8a3b85d4b6663ebd21b806bde6f82286377fa618064c6b9" + }, + { + "file": "screenshots/step_031.png", + "sha256": "fb6907a247d38c55d8a3b85d4b6663ebd21b806bde6f82286377fa618064c6b9" + } + ] + }, + { + "task_id": "Compass--10", + "recorded_steps_including_done": 8, + "mode": "guided/source-aware", + "run_id": "guided-003-durable", + "port": 40019, + "run_code_sha": "b84eaf60bf02a30a45da643b62c92b343e70f426", + "run_image_code_sha": "3cdc0b66d72b8a789b89583176c668081de36852", + "run_asset_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "original_trajectory_sha256": "13b1f79395a0bf5c0d56489209fb6c52c9b46d8b09505f9a78d9a28d25365123", + "trajectory_sha256": "86519eb1878f6208ae845e2fc714cfe078d8437975306e1db774cb544dd354e8", + "native_action_export": [ + { + "step": 0, + "recorded_operation": "open_login", + "native_action": "click" + }, + { + "step": 1, + "recorded_operation": "login", + "native_action": "click" + }, + { + "step": 2, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 3, + "recorded_operation": "filter", + "native_action": "click" + }, + { + "step": 4, + "recorded_operation": "set_status", + "native_action": "click" + }, + { + "step": 5, + "recorded_operation": "save_search", + "native_action": "click" + }, + { + "step": 6, + "recorded_operation": "reopen_saved_search", + "native_action": "click" + }, + { + "step": 7, + "recorded_operation": "done", + "native_action": "done" + } + ], + "before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "after_sha256": "f41c2babde5f0948e50b01f2204682373f0fea45847c71f422fd0011a68dda09", + "reset_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "failed_actions": [], + "scorer_sha": "79afdfc3c2d915b325d0336e5ac0396adc1a77ae", + "verifier": { + "task_id": "Compass--10", + "pass": true, + "reason": "All applicable checks passed", + "evidence": [ + { + "check": "task_identity", + "pass": true, + "detail": "" + }, + { + "check": "local_ui_evidence", + "pass": true, + "detail": "" + }, + { + "check": "final_answer", + "pass": true, + "detail": "" + }, + { + "check": "completed_run", + "pass": true, + "detail": "" + }, + { + "check": "step_screenshot_package", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_homes", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_inquiries", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_searches_1", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_searches_2", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_searches_3", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_searches_4", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_cities", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_agents", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_listings", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_collections", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_tours", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_users", + "pass": true, + "detail": "" + }, + { + "check": "target_account", + "pass": true, + "detail": "" + }, + { + "check": "one_exact_saved_search", + "pass": true, + "detail": "" + }, + { + "check": "reopened_saved_search", + "pass": true, + "detail": "" + }, + { + "check": "answer_saved_criteria", + "pass": true, + "detail": "" + } + ] + }, + "screenshots": 16, + "screenshot_files": [ + { + "file": "screenshots/step_000.png", + "sha256": "11262b19332559bf7878a479b1211021f75e36d230f5abc6e69b824c38863642" + }, + { + "file": "screenshots/step_001.png", + "sha256": "4b4718fe593f8d4ef1ee57290a70492985b4b34797dfea21788cae6d4aeedd9b" + }, + { + "file": "screenshots/step_002.png", + "sha256": "4b4718fe593f8d4ef1ee57290a70492985b4b34797dfea21788cae6d4aeedd9b" + }, + { + "file": "screenshots/step_003.png", + "sha256": "b2a7410d311a291ac62b7559070661041953e874025f0d5e2035692dc7885a82" + }, + { + "file": "screenshots/step_004.png", + "sha256": "b2a7410d311a291ac62b7559070661041953e874025f0d5e2035692dc7885a82" + }, + { + "file": "screenshots/step_005.png", + "sha256": "c553b96d53cabb60ec2f76420790998c96abb6982c5b2a7b553b5c1b3319bebc" + }, + { + "file": "screenshots/step_006.png", + "sha256": "c553b96d53cabb60ec2f76420790998c96abb6982c5b2a7b553b5c1b3319bebc" + }, + { + "file": "screenshots/step_007.png", + "sha256": "0af37afdbbe166049820d9977b3cc8c3cdfc463b1b7a10ca3a630d574d2a7863" + }, + { + "file": "screenshots/step_008.png", + "sha256": "0af37afdbbe166049820d9977b3cc8c3cdfc463b1b7a10ca3a630d574d2a7863" + }, + { + "file": "screenshots/step_009.png", + "sha256": "efc834080914bf803b2b85d0ac9ebe6c34cceaa371e0357bf08ce0f9d655b2d7" + }, + { + "file": "screenshots/step_010.png", + "sha256": "efc834080914bf803b2b85d0ac9ebe6c34cceaa371e0357bf08ce0f9d655b2d7" + }, + { + "file": "screenshots/step_011.png", + "sha256": "3367741fe1db9efdfc9623f0b9effd8466da4d8a1108fe2347e60ead254f670e" + }, + { + "file": "screenshots/step_012.png", + "sha256": "3367741fe1db9efdfc9623f0b9effd8466da4d8a1108fe2347e60ead254f670e" + }, + { + "file": "screenshots/step_013.png", + "sha256": "efc834080914bf803b2b85d0ac9ebe6c34cceaa371e0357bf08ce0f9d655b2d7" + }, + { + "file": "screenshots/step_014.png", + "sha256": "efc834080914bf803b2b85d0ac9ebe6c34cceaa371e0357bf08ce0f9d655b2d7" + }, + { + "file": "screenshots/step_015.png", + "sha256": "efc834080914bf803b2b85d0ac9ebe6c34cceaa371e0357bf08ce0f9d655b2d7" + } + ] + }, + { + "task_id": "Compass--11", + "recorded_steps_including_done": 5, + "mode": "guided/source-aware", + "run_id": "guided-003-durable", + "port": 40019, + "run_code_sha": "b84eaf60bf02a30a45da643b62c92b343e70f426", + "run_image_code_sha": "3cdc0b66d72b8a789b89583176c668081de36852", + "run_asset_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "original_trajectory_sha256": "51cd3a2556ac68a9a18f7c5933d8adab4ef7d8772cea6830c8352aa4d27ff818", + "trajectory_sha256": "dadbd2288db31885db7c754262f02b8fd63a67ae6cf8ca37b9fbc42e41df9e75", + "native_action_export": [ + { + "step": 0, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 1, + "recorded_operation": "filter", + "native_action": "click" + }, + { + "step": 2, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 3, + "recorded_operation": "read_property_details", + "native_action": "click" + }, + { + "step": 4, + "recorded_operation": "done", + "native_action": "done" + } + ], + "before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "after_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "reset_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "failed_actions": [], + "scorer_sha": "79afdfc3c2d915b325d0336e5ac0396adc1a77ae", + "verifier": { + "task_id": "Compass--11", + "pass": true, + "reason": "All applicable checks passed", + "evidence": [ + { + "check": "task_identity", + "pass": true, + "detail": "" + }, + { + "check": "local_ui_evidence", + "pass": true, + "detail": "" + }, + { + "check": "final_answer", + "pass": true, + "detail": "" + }, + { + "check": "completed_run", + "pass": true, + "detail": "" + }, + { + "check": "step_screenshot_package", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_homes", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_tours", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_users", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_collections", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_listings", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_inquiries", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_searches", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_cities", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_agents", + "pass": true, + "detail": "" + }, + { + "check": "answer_target_address", + "pass": true, + "detail": "" + }, + { + "check": "target_property_details", + "pass": true, + "detail": "" + }, + { + "check": "answer_beds", + "pass": true, + "detail": "" + }, + { + "check": "answer_sqft", + "pass": true, + "detail": "" + }, + { + "check": "answer_year_built", + "pass": true, + "detail": "" + }, + { + "check": "answer_mls_number", + "pass": true, + "detail": "" + } + ] + }, + "screenshots": 10, + "screenshot_files": [ + { + "file": "screenshots/step_000.png", + "sha256": "11262b19332559bf7878a479b1211021f75e36d230f5abc6e69b824c38863642" + }, + { + "file": "screenshots/step_001.png", + "sha256": "e181e9b3b92677ed5368eec3678b45118744323e16fb9c26594adb661486a62e" + }, + { + "file": "screenshots/step_002.png", + "sha256": "e181e9b3b92677ed5368eec3678b45118744323e16fb9c26594adb661486a62e" + }, + { + "file": "screenshots/step_003.png", + "sha256": "b1707eec178aef135a52195a7b2858558ba71bea05dc2cde5c7824e7b5cf54ce" + }, + { + "file": "screenshots/step_004.png", + "sha256": "b1707eec178aef135a52195a7b2858558ba71bea05dc2cde5c7824e7b5cf54ce" + }, + { + "file": "screenshots/step_005.png", + "sha256": "b15a77a12d99a817876fa7cfba682f18b069997b99c91d5d58d98d4f34574754" + }, + { + "file": "screenshots/step_006.png", + "sha256": "b15a77a12d99a817876fa7cfba682f18b069997b99c91d5d58d98d4f34574754" + }, + { + "file": "screenshots/step_007.png", + "sha256": "23d40b0943ed54945af0897d7bc20dad37d71c6ba4a97a76f2a252ed9f4a50f6" + }, + { + "file": "screenshots/step_008.png", + "sha256": "23d40b0943ed54945af0897d7bc20dad37d71c6ba4a97a76f2a252ed9f4a50f6" + }, + { + "file": "screenshots/step_009.png", + "sha256": "23d40b0943ed54945af0897d7bc20dad37d71c6ba4a97a76f2a252ed9f4a50f6" + } + ] + }, + { + "task_id": "Compass--12", + "recorded_steps_including_done": 5, + "mode": "guided/source-aware", + "run_id": "guided-003-durable", + "port": 40019, + "run_code_sha": "b84eaf60bf02a30a45da643b62c92b343e70f426", + "run_image_code_sha": "3cdc0b66d72b8a789b89583176c668081de36852", + "run_asset_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "original_trajectory_sha256": "4759e4981ef3e3940888fbdf1c54e5e6654fc96af2600ba5ef4c2ecb1138cad4", + "trajectory_sha256": "44e0911d0a9d22e1f8359521138c6248a2a1bda3bf361e4f2f33517ea764627e", + "native_action_export": [ + { + "step": 0, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 1, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 2, + "recorded_operation": "read_property_details", + "native_action": "click" + }, + { + "step": 3, + "recorded_operation": "open_agent_profile", + "native_action": "click" + }, + { + "step": 4, + "recorded_operation": "done", + "native_action": "done" + } + ], + "before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "after_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "reset_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "failed_actions": [], + "scorer_sha": "79afdfc3c2d915b325d0336e5ac0396adc1a77ae", + "verifier": { + "task_id": "Compass--12", + "pass": true, + "reason": "All applicable checks passed", + "evidence": [ + { + "check": "task_identity", + "pass": true, + "detail": "" + }, + { + "check": "local_ui_evidence", + "pass": true, + "detail": "" + }, + { + "check": "final_answer", + "pass": true, + "detail": "" + }, + { + "check": "completed_run", + "pass": true, + "detail": "" + }, + { + "check": "step_screenshot_package", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_agents", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_listings", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_users", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_searches", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_cities", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_inquiries", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_homes", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_tours", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_collections", + "pass": true, + "detail": "" + }, + { + "check": "target_property_details", + "pass": true, + "detail": "" + }, + { + "check": "answer_year_built", + "pass": true, + "detail": "" + }, + { + "check": "answer_agent_name", + "pass": true, + "detail": "" + }, + { + "check": "answer_agent_email", + "pass": true, + "detail": "" + }, + { + "check": "answer_rounded_price_per_sqft", + "pass": true, + "detail": "" + }, + { + "check": "followed_agent_profile", + "pass": true, + "detail": "" + } + ] + }, + "screenshots": 10, + "screenshot_files": [ + { + "file": "screenshots/step_000.png", + "sha256": "11262b19332559bf7878a479b1211021f75e36d230f5abc6e69b824c38863642" + }, + { + "file": "screenshots/step_001.png", + "sha256": "c277d5a251185dab2a3dc3058e7ce1245e5eb093f12b64706d301a6eebb09595" + }, + { + "file": "screenshots/step_002.png", + "sha256": "c277d5a251185dab2a3dc3058e7ce1245e5eb093f12b64706d301a6eebb09595" + }, + { + "file": "screenshots/step_003.png", + "sha256": "9a225db6c2b474bac83fffe85f61f07c8956dee6adfd9853e1f414472c22a332" + }, + { + "file": "screenshots/step_004.png", + "sha256": "9a225db6c2b474bac83fffe85f61f07c8956dee6adfd9853e1f414472c22a332" + }, + { + "file": "screenshots/step_005.png", + "sha256": "64e5932c2c6049604cce151b743d6389e03b26f905683ad95ffd490c6b5a2ce6" + }, + { + "file": "screenshots/step_006.png", + "sha256": "64e5932c2c6049604cce151b743d6389e03b26f905683ad95ffd490c6b5a2ce6" + }, + { + "file": "screenshots/step_007.png", + "sha256": "c9c388a7f9c356b0eb56c0dbd6201a6aa1894611ecd8f86bb7c2cf724c1abf94" + }, + { + "file": "screenshots/step_008.png", + "sha256": "c9c388a7f9c356b0eb56c0dbd6201a6aa1894611ecd8f86bb7c2cf724c1abf94" + }, + { + "file": "screenshots/step_009.png", + "sha256": "c9c388a7f9c356b0eb56c0dbd6201a6aa1894611ecd8f86bb7c2cf724c1abf94" + } + ] + }, + { + "task_id": "Compass--13", + "recorded_steps_including_done": 7, + "mode": "guided/source-aware", + "run_id": "guided-003-durable", + "port": 40019, + "run_code_sha": "b84eaf60bf02a30a45da643b62c92b343e70f426", + "run_image_code_sha": "3cdc0b66d72b8a789b89583176c668081de36852", + "run_asset_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "original_trajectory_sha256": "3e731df77348ee9c416ae714c9a2fb074773c6c651dcad63a824a78cd79e74e3", + "trajectory_sha256": "3b075f04a0eac0c5912ffb01bfb2d5e31c98cc818928db59dbe71125c449c68a", + "native_action_export": [ + { + "step": 0, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 1, + "recorded_operation": "open_advanced_filters", + "native_action": "click" + }, + { + "step": 2, + "recorded_operation": "filter_year_and_positive_area", + "native_action": "click" + }, + { + "step": 3, + "recorded_operation": "filter", + "native_action": "click" + }, + { + "step": 4, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 5, + "recorded_operation": "read_property_details", + "native_action": "click" + }, + { + "step": 6, + "recorded_operation": "done", + "native_action": "done" + } + ], + "before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "after_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "reset_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "failed_actions": [], + "scorer_sha": "79afdfc3c2d915b325d0336e5ac0396adc1a77ae", + "verifier": { + "task_id": "Compass--13", + "pass": true, + "reason": "All applicable checks passed", + "evidence": [ + { + "check": "task_identity", + "pass": true, + "detail": "" + }, + { + "check": "local_ui_evidence", + "pass": true, + "detail": "" + }, + { + "check": "final_answer", + "pass": true, + "detail": "" + }, + { + "check": "completed_run", + "pass": true, + "detail": "" + }, + { + "check": "step_screenshot_package", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_cities", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_homes", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_inquiries", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_agents", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_listings", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_collections", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_searches", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_users", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_tours", + "pass": true, + "detail": "" + }, + { + "check": "answer_target_address", + "pass": true, + "detail": "" + }, + { + "check": "target_property_details", + "pass": true, + "detail": "" + }, + { + "check": "answer_beds", + "pass": true, + "detail": "" + }, + { + "check": "answer_sqft", + "pass": true, + "detail": "" + }, + { + "check": "answer_year_built", + "pass": true, + "detail": "" + }, + { + "check": "answer_agent_name", + "pass": true, + "detail": "" + } + ] + }, + "screenshots": 14, + "screenshot_files": [ + { + "file": "screenshots/step_000.png", + "sha256": "11262b19332559bf7878a479b1211021f75e36d230f5abc6e69b824c38863642" + }, + { + "file": "screenshots/step_001.png", + "sha256": "2e8ebd31981031900300db308b6ed1216c4484159eedaf6d0a95bc592980d9d4" + }, + { + "file": "screenshots/step_002.png", + "sha256": "2e8ebd31981031900300db308b6ed1216c4484159eedaf6d0a95bc592980d9d4" + }, + { + "file": "screenshots/step_003.png", + "sha256": "6080ece11af144a273aa104457765aecd3c7dd9137e9510eec3aacd41fc0a5b2" + }, + { + "file": "screenshots/step_004.png", + "sha256": "6080ece11af144a273aa104457765aecd3c7dd9137e9510eec3aacd41fc0a5b2" + }, + { + "file": "screenshots/step_005.png", + "sha256": "283e65c361d65e05716723ed3a3dee97b8b4ea58f96add9d30ce64c0cb66c4f7" + }, + { + "file": "screenshots/step_006.png", + "sha256": "283e65c361d65e05716723ed3a3dee97b8b4ea58f96add9d30ce64c0cb66c4f7" + }, + { + "file": "screenshots/step_007.png", + "sha256": "85c5b1bba8bf5c7e35140c50317a70b4fe7096032018b562556e37f4232beb9d" + }, + { + "file": "screenshots/step_008.png", + "sha256": "85c5b1bba8bf5c7e35140c50317a70b4fe7096032018b562556e37f4232beb9d" + }, + { + "file": "screenshots/step_009.png", + "sha256": "aa6f2bdbad19973bfd093824cad49249f82127142f295db2ece83150dcbf5cca" + }, + { + "file": "screenshots/step_010.png", + "sha256": "aa6f2bdbad19973bfd093824cad49249f82127142f295db2ece83150dcbf5cca" + }, + { + "file": "screenshots/step_011.png", + "sha256": "8903c8c749d8503e6179a3897bef7cd36120869cb969dc39c833e162b6625e0d" + }, + { + "file": "screenshots/step_012.png", + "sha256": "8903c8c749d8503e6179a3897bef7cd36120869cb969dc39c833e162b6625e0d" + }, + { + "file": "screenshots/step_013.png", + "sha256": "8903c8c749d8503e6179a3897bef7cd36120869cb969dc39c833e162b6625e0d" + } + ] + }, + { + "task_id": "Compass--14", + "recorded_steps_including_done": 19, + "mode": "guided/source-aware", + "run_id": "guided-003-durable", + "port": 40019, + "run_code_sha": "b84eaf60bf02a30a45da643b62c92b343e70f426", + "run_image_code_sha": "3cdc0b66d72b8a789b89583176c668081de36852", + "run_asset_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "original_trajectory_sha256": "de1456c25f84d32122665c551afba1cb6bc6a6620ccbaad4d3434b7dce0192bd", + "trajectory_sha256": "3271b687dea4fa8dd5d1b211efba1fa873ad79b6cc77e8fdb4a1192d06d258a5", + "native_action_export": [ + { + "step": 0, + "recorded_operation": "open_login", + "native_action": "click" + }, + { + "step": 1, + "recorded_operation": "login", + "native_action": "click" + }, + { + "step": 2, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 3, + "recorded_operation": "filter", + "native_action": "click" + }, + { + "step": 4, + "recorded_operation": "set_status", + "native_action": "click" + }, + { + "step": 5, + "recorded_operation": "open_advanced_filters", + "native_action": "click" + }, + { + "step": 6, + "recorded_operation": "filter_garage", + "native_action": "click" + }, + { + "step": 7, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 8, + "recorded_operation": "read_property_details", + "native_action": "click" + }, + { + "step": 9, + "recorded_operation": "open_collections", + "native_action": "click" + }, + { + "step": 10, + "recorded_operation": "new_collection", + "native_action": "click" + }, + { + "step": 11, + "recorded_operation": "create_collection", + "native_action": "click" + }, + { + "step": 12, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 13, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 14, + "recorded_operation": "add_to_collection", + "native_action": "click" + }, + { + "step": 15, + "recorded_operation": "open_collections", + "native_action": "click" + }, + { + "step": 16, + "recorded_operation": "confirm_collection", + "native_action": "press" + }, + { + "step": 17, + "recorded_operation": "reload_confirmation", + "native_action": "reload" + }, + { + "step": 18, + "recorded_operation": "done", + "native_action": "done" + } + ], + "before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "after_sha256": "975ca3b34de19dda26be3a138d83a7b70f9d0bab3462918b6ca08a36201faf2d", + "reset_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "failed_actions": [], + "scorer_sha": "79afdfc3c2d915b325d0336e5ac0396adc1a77ae", + "verifier": { + "task_id": "Compass--14", + "pass": true, + "reason": "All applicable checks passed", + "evidence": [ + { + "check": "task_identity", + "pass": true, + "detail": "" + }, + { + "check": "local_ui_evidence", + "pass": true, + "detail": "" + }, + { + "check": "final_answer", + "pass": true, + "detail": "" + }, + { + "check": "completed_run", + "pass": true, + "detail": "" + }, + { + "check": "step_screenshot_package", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_1", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_2", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_3", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_4", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_5", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_6", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_7", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_8", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_9", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_10", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_11", + "pass": true, + "detail": "" + }, + { + "check": "preserve_saved_homes_12", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_cities", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_agents", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_listings", + "pass": true, + "detail": "" + }, + { + "check": "preserve_collections_1", + "pass": true, + "detail": "" + }, + { + "check": "preserve_collections_2", + "pass": true, + "detail": "" + }, + { + "check": "preserve_collections_3", + "pass": true, + "detail": "" + }, + { + "check": "preserve_collections_4", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_searches", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_inquiries", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_users", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_tours", + "pass": true, + "detail": "" + }, + { + "check": "target_account", + "pass": true, + "detail": "" + }, + { + "check": "collection_confirmation", + "pass": true, + "detail": "" + }, + { + "check": "one_exact_collection", + "pass": true, + "detail": "" + }, + { + "check": "optional_target_saves_only", + "pass": true, + "detail": "" + }, + { + "check": "answer_target_address", + "pass": true, + "detail": "" + }, + { + "check": "answer_mls_number", + "pass": true, + "detail": "" + } + ] + }, + "screenshots": 38, + "screenshot_files": [ + { + "file": "screenshots/step_000.png", + "sha256": "11262b19332559bf7878a479b1211021f75e36d230f5abc6e69b824c38863642" + }, + { + "file": "screenshots/step_001.png", + "sha256": "4b4718fe593f8d4ef1ee57290a70492985b4b34797dfea21788cae6d4aeedd9b" + }, + { + "file": "screenshots/step_002.png", + "sha256": "4b4718fe593f8d4ef1ee57290a70492985b4b34797dfea21788cae6d4aeedd9b" + }, + { + "file": "screenshots/step_003.png", + "sha256": "6756450e27eed056f5ccfe5b5e5c1112dc4f7463a1e246c46fa2f8fab1d46cdd" + }, + { + "file": "screenshots/step_004.png", + "sha256": "6756450e27eed056f5ccfe5b5e5c1112dc4f7463a1e246c46fa2f8fab1d46cdd" + }, + { + "file": "screenshots/step_005.png", + "sha256": "e419cc970da523b70ca88018956de9495c5e870732e476311032b11229d94b8a" + }, + { + "file": "screenshots/step_006.png", + "sha256": "e419cc970da523b70ca88018956de9495c5e870732e476311032b11229d94b8a" + }, + { + "file": "screenshots/step_007.png", + "sha256": "2fdf92243918aab92ea6211f7fb9847595a3057b851431b1ac8cb986e6110579" + }, + { + "file": "screenshots/step_008.png", + "sha256": "2fdf92243918aab92ea6211f7fb9847595a3057b851431b1ac8cb986e6110579" + }, + { + "file": "screenshots/step_009.png", + "sha256": "8dfa5c02d77d0f5a463a303b9e1a92dfd6703c92c3198e78e0850d4bdd359ccd" + }, + { + "file": "screenshots/step_010.png", + "sha256": "8dfa5c02d77d0f5a463a303b9e1a92dfd6703c92c3198e78e0850d4bdd359ccd" + }, + { + "file": "screenshots/step_011.png", + "sha256": "c47f6c0fe4f96f8d5806fb12963e74f5a7b4d2696af607f1e08dab6cefbec47c" + }, + { + "file": "screenshots/step_012.png", + "sha256": "c47f6c0fe4f96f8d5806fb12963e74f5a7b4d2696af607f1e08dab6cefbec47c" + }, + { + "file": "screenshots/step_013.png", + "sha256": "ea62afb91d1ef4d02fa7867c303ce78593711b3633dacc0af482a3e251f8418c" + }, + { + "file": "screenshots/step_014.png", + "sha256": "ea62afb91d1ef4d02fa7867c303ce78593711b3633dacc0af482a3e251f8418c" + }, + { + "file": "screenshots/step_015.png", + "sha256": "f2342f8fd8f6149c01679eb473e063ada69336c3e4ac0bde1c464283b96142fd" + }, + { + "file": "screenshots/step_016.png", + "sha256": "f2342f8fd8f6149c01679eb473e063ada69336c3e4ac0bde1c464283b96142fd" + }, + { + "file": "screenshots/step_017.png", + "sha256": "aa1d4e47a42192a3b434848fc22bc3bbe59b78d8d45849a774bd51587f1cc772" + }, + { + "file": "screenshots/step_018.png", + "sha256": "aa1d4e47a42192a3b434848fc22bc3bbe59b78d8d45849a774bd51587f1cc772" + }, + { + "file": "screenshots/step_019.png", + "sha256": "903798258a3d812c19c06da47d1530252849ff6b8ecc7df49c48fab8adf2d913" + }, + { + "file": "screenshots/step_020.png", + "sha256": "903798258a3d812c19c06da47d1530252849ff6b8ecc7df49c48fab8adf2d913" + }, + { + "file": "screenshots/step_021.png", + "sha256": "2f998abcd2dea9b119bd83d468d6241916a6bd18db36e815563cf3a524d5561f" + }, + { + "file": "screenshots/step_022.png", + "sha256": "2f998abcd2dea9b119bd83d468d6241916a6bd18db36e815563cf3a524d5561f" + }, + { + "file": "screenshots/step_023.png", + "sha256": "8e9b2cad9cdd33de0e058d720ac9ba1711350e038f3f989ac7423d7cbde7cc2d" + }, + { + "file": "screenshots/step_024.png", + "sha256": "8e9b2cad9cdd33de0e058d720ac9ba1711350e038f3f989ac7423d7cbde7cc2d" + }, + { + "file": "screenshots/step_025.png", + "sha256": "6ef897141cb73657d98234b5adb83f70b913f6a67ee63290cf8292b7528dad23" + }, + { + "file": "screenshots/step_026.png", + "sha256": "6ef897141cb73657d98234b5adb83f70b913f6a67ee63290cf8292b7528dad23" + }, + { + "file": "screenshots/step_027.png", + "sha256": "86664338f6d3d9da824c6096a00772d92b1f304c973ba3a0a7fef2c8b1e6d1a6" + }, + { + "file": "screenshots/step_028.png", + "sha256": "86664338f6d3d9da824c6096a00772d92b1f304c973ba3a0a7fef2c8b1e6d1a6" + }, + { + "file": "screenshots/step_029.png", + "sha256": "cc0a1b6e179bdc83070b5da8b7a82979235e9d0bf3c5fdd90fd9bff4bf66ff96" + }, + { + "file": "screenshots/step_030.png", + "sha256": "cc0a1b6e179bdc83070b5da8b7a82979235e9d0bf3c5fdd90fd9bff4bf66ff96" + }, + { + "file": "screenshots/step_031.png", + "sha256": "0562a2c449e27742027a9b8efe11b5fb7222b523e50451a6d28732a0ad4ce1f0" + }, + { + "file": "screenshots/step_032.png", + "sha256": "0562a2c449e27742027a9b8efe11b5fb7222b523e50451a6d28732a0ad4ce1f0" + }, + { + "file": "screenshots/step_033.png", + "sha256": "b1a695b852e175a2b3a913f466191703231bed701cc83b33c945cf95a8b965db" + }, + { + "file": "screenshots/step_034.png", + "sha256": "b1a695b852e175a2b3a913f466191703231bed701cc83b33c945cf95a8b965db" + }, + { + "file": "screenshots/step_035.png", + "sha256": "b1a695b852e175a2b3a913f466191703231bed701cc83b33c945cf95a8b965db" + }, + { + "file": "screenshots/step_036.png", + "sha256": "b1a695b852e175a2b3a913f466191703231bed701cc83b33c945cf95a8b965db" + }, + { + "file": "screenshots/step_037.png", + "sha256": "b1a695b852e175a2b3a913f466191703231bed701cc83b33c945cf95a8b965db" + } + ] + }, + { + "task_id": "Compass--15", + "recorded_steps_including_done": 8, + "mode": "guided/source-aware", + "run_id": "guided-003-durable", + "port": 40019, + "run_code_sha": "b84eaf60bf02a30a45da643b62c92b343e70f426", + "run_image_code_sha": "3cdc0b66d72b8a789b89583176c668081de36852", + "run_asset_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "original_trajectory_sha256": "c25a8301278583c6f63e69986a6d744a353c795108e754087e170a3af91271c1", + "trajectory_sha256": "6cbfad93b8e738ff21130914bce20747dbcafca93d6143b5b4ed3a5f81315918", + "native_action_export": [ + { + "step": 0, + "recorded_operation": "open_login", + "native_action": "click" + }, + { + "step": 1, + "recorded_operation": "login", + "native_action": "click" + }, + { + "step": 2, + "recorded_operation": "inspect_tours", + "native_action": "click" + }, + { + "step": 3, + "recorded_operation": "open_toured_home", + "native_action": "click" + }, + { + "step": 4, + "recorded_operation": "open_local_inquiry", + "native_action": "click" + }, + { + "step": 5, + "recorded_operation": "submit_local_inquiry", + "native_action": "click" + }, + { + "step": 6, + "recorded_operation": "reload_confirmation", + "native_action": "reload" + }, + { + "step": 7, + "recorded_operation": "done", + "native_action": "done" + } + ], + "before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "after_sha256": "866025b5ff1ca0dda1cb79aa7822abbdedec2d0eaae0c65a7e3947c34a5c0fdf", + "reset_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "failed_actions": [], + "scorer_sha": "79afdfc3c2d915b325d0336e5ac0396adc1a77ae", + "verifier": { + "task_id": "Compass--15", + "pass": true, + "reason": "All applicable checks passed", + "evidence": [ + { + "check": "task_identity", + "pass": true, + "detail": "" + }, + { + "check": "local_ui_evidence", + "pass": true, + "detail": "" + }, + { + "check": "final_answer", + "pass": true, + "detail": "" + }, + { + "check": "completed_run", + "pass": true, + "detail": "" + }, + { + "check": "step_screenshot_package", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_homes", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_tours", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_searches", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_cities", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_agents", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_users", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_listings", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_collections", + "pass": true, + "detail": "" + }, + { + "check": "target_account", + "pass": true, + "detail": "" + }, + { + "check": "one_exact_inquiry", + "pass": true, + "detail": "" + }, + { + "check": "tour_and_inquiry_ui", + "pass": true, + "detail": "" + }, + { + "check": "answer_target_address", + "pass": true, + "detail": "" + }, + { + "check": "answer_agent_name", + "pass": true, + "detail": "" + }, + { + "check": "answer_tour_date", + "pass": true, + "detail": "" + } + ] + }, + "screenshots": 16, + "screenshot_files": [ + { + "file": "screenshots/step_000.png", + "sha256": "11262b19332559bf7878a479b1211021f75e36d230f5abc6e69b824c38863642" + }, + { + "file": "screenshots/step_001.png", + "sha256": "4b4718fe593f8d4ef1ee57290a70492985b4b34797dfea21788cae6d4aeedd9b" + }, + { + "file": "screenshots/step_002.png", + "sha256": "4b4718fe593f8d4ef1ee57290a70492985b4b34797dfea21788cae6d4aeedd9b" + }, + { + "file": "screenshots/step_003.png", + "sha256": "379ebda395f64c4399e6e335a1d1a68ff8fc0a96b88e33bfe1fcb1e25109518e" + }, + { + "file": "screenshots/step_004.png", + "sha256": "379ebda395f64c4399e6e335a1d1a68ff8fc0a96b88e33bfe1fcb1e25109518e" + }, + { + "file": "screenshots/step_005.png", + "sha256": "77f849d8661bb700eb9379469f2447b33487a890a53f123859655e9b6a31a3e6" + }, + { + "file": "screenshots/step_006.png", + "sha256": "77f849d8661bb700eb9379469f2447b33487a890a53f123859655e9b6a31a3e6" + }, + { + "file": "screenshots/step_007.png", + "sha256": "ee8674d051eb629f6feb0c99a1db24167f8631d0bf63d70f341cbc3db5b3965e" + }, + { + "file": "screenshots/step_008.png", + "sha256": "ee8674d051eb629f6feb0c99a1db24167f8631d0bf63d70f341cbc3db5b3965e" + }, + { + "file": "screenshots/step_009.png", + "sha256": "eb2e51dc69a4d128ba2407664f81db78e2cfac12498ebfc266e45ce269bd7c41" + }, + { + "file": "screenshots/step_010.png", + "sha256": "eb2e51dc69a4d128ba2407664f81db78e2cfac12498ebfc266e45ce269bd7c41" + }, + { + "file": "screenshots/step_011.png", + "sha256": "f84171e618893e56afc226a60fcdae9858cf1c28833d4795eb791155bf37b8f8" + }, + { + "file": "screenshots/step_012.png", + "sha256": "f84171e618893e56afc226a60fcdae9858cf1c28833d4795eb791155bf37b8f8" + }, + { + "file": "screenshots/step_013.png", + "sha256": "3f2ee4f9c32049518f3b2fe5983f15ab4e6b98d5e5f3fa21e9cc347a27ec98b6" + }, + { + "file": "screenshots/step_014.png", + "sha256": "3f2ee4f9c32049518f3b2fe5983f15ab4e6b98d5e5f3fa21e9cc347a27ec98b6" + }, + { + "file": "screenshots/step_015.png", + "sha256": "3f2ee4f9c32049518f3b2fe5983f15ab4e6b98d5e5f3fa21e9cc347a27ec98b6" + } + ] + }, + { + "task_id": "Compass--16", + "recorded_steps_including_done": 10, + "mode": "guided/source-aware", + "run_id": "guided-003-durable", + "port": 40019, + "run_code_sha": "b84eaf60bf02a30a45da643b62c92b343e70f426", + "run_image_code_sha": "3cdc0b66d72b8a789b89583176c668081de36852", + "run_asset_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "original_trajectory_sha256": "7dab823304a4fc46cae2105fa6efe7bd90aacd5b368c3112a8df4f19281020d1", + "trajectory_sha256": "90b8c4a19853fc15d1788c9cea7d562547f06995783070d61792a33aaaccd675", + "native_action_export": [ + { + "step": 0, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 1, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 2, + "recorded_operation": "read_property_details", + "native_action": "click" + }, + { + "step": 3, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 4, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 5, + "recorded_operation": "read_property_details", + "native_action": "click" + }, + { + "step": 6, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 7, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 8, + "recorded_operation": "read_property_details", + "native_action": "click" + }, + { + "step": 9, + "recorded_operation": "done", + "native_action": "done" + } + ], + "before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "after_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "reset_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "failed_actions": [], + "scorer_sha": "79afdfc3c2d915b325d0336e5ac0396adc1a77ae", + "verifier": { + "task_id": "Compass--16", + "pass": true, + "reason": "All applicable checks passed", + "evidence": [ + { + "check": "task_identity", + "pass": true, + "detail": "" + }, + { + "check": "local_ui_evidence", + "pass": true, + "detail": "" + }, + { + "check": "final_answer", + "pass": true, + "detail": "" + }, + { + "check": "completed_run", + "pass": true, + "detail": "" + }, + { + "check": "step_screenshot_package", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_tours", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_cities", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_inquiries", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_agents", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_searches", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_homes", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_users", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_listings", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_collections", + "pass": true, + "detail": "" + }, + { + "check": "answer_target_address", + "pass": true, + "detail": "" + }, + { + "check": "target_property_details", + "pass": true, + "detail": "" + }, + { + "check": "answer_year_built", + "pass": true, + "detail": "" + }, + { + "check": "answer_agent_name", + "pass": true, + "detail": "" + } + ] + }, + "screenshots": 20, + "screenshot_files": [ + { + "file": "screenshots/step_000.png", + "sha256": "11262b19332559bf7878a479b1211021f75e36d230f5abc6e69b824c38863642" + }, + { + "file": "screenshots/step_001.png", + "sha256": "d2485b7db65e37df89577c3e34c03d1d9e5df49d9bea33a916a24174207ee91d" + }, + { + "file": "screenshots/step_002.png", + "sha256": "d2485b7db65e37df89577c3e34c03d1d9e5df49d9bea33a916a24174207ee91d" + }, + { + "file": "screenshots/step_003.png", + "sha256": "4c63c949673b4a5361482882d351b39dbf9641d90d00df1fd0be27e96d0a2301" + }, + { + "file": "screenshots/step_004.png", + "sha256": "4c63c949673b4a5361482882d351b39dbf9641d90d00df1fd0be27e96d0a2301" + }, + { + "file": "screenshots/step_005.png", + "sha256": "ae424aea0520375e8668f230c35cf4353cf50c2fd32654e396b7040d065cb8cf" + }, + { + "file": "screenshots/step_006.png", + "sha256": "ae424aea0520375e8668f230c35cf4353cf50c2fd32654e396b7040d065cb8cf" + }, + { + "file": "screenshots/step_007.png", + "sha256": "753fc39fdf2ed9cfb680957d96767d7b45e3fcf94e06f971d0b0ed81d3f51eec" + }, + { + "file": "screenshots/step_008.png", + "sha256": "753fc39fdf2ed9cfb680957d96767d7b45e3fcf94e06f971d0b0ed81d3f51eec" + }, + { + "file": "screenshots/step_009.png", + "sha256": "d79eaee6a63e5a0a74aa6c3eb785e04c43911f77b98f6ce01a3d5056093e6a43" + }, + { + "file": "screenshots/step_010.png", + "sha256": "d79eaee6a63e5a0a74aa6c3eb785e04c43911f77b98f6ce01a3d5056093e6a43" + }, + { + "file": "screenshots/step_011.png", + "sha256": "4a7a53fa02ac64a464ef2b3ac2d75cc52d7c58ac09e43c9a541944b2b3dbcf8b" + }, + { + "file": "screenshots/step_012.png", + "sha256": "4a7a53fa02ac64a464ef2b3ac2d75cc52d7c58ac09e43c9a541944b2b3dbcf8b" + }, + { + "file": "screenshots/step_013.png", + "sha256": "0313538af35abc16cad4d93a55613c95e7eeffc32d4d80a6afbc533210ea09a2" + }, + { + "file": "screenshots/step_014.png", + "sha256": "0313538af35abc16cad4d93a55613c95e7eeffc32d4d80a6afbc533210ea09a2" + }, + { + "file": "screenshots/step_015.png", + "sha256": "e6cf33ad9b6cbeae4e2107b35cbac1ff6c5659b289ecfec9be8195e8adbb28cf" + }, + { + "file": "screenshots/step_016.png", + "sha256": "e6cf33ad9b6cbeae4e2107b35cbac1ff6c5659b289ecfec9be8195e8adbb28cf" + }, + { + "file": "screenshots/step_017.png", + "sha256": "f947add79fa8b18dedc388ab1efe2f24a93ff89d14d12aa5033451957de7aa76" + }, + { + "file": "screenshots/step_018.png", + "sha256": "f947add79fa8b18dedc388ab1efe2f24a93ff89d14d12aa5033451957de7aa76" + }, + { + "file": "screenshots/step_019.png", + "sha256": "f947add79fa8b18dedc388ab1efe2f24a93ff89d14d12aa5033451957de7aa76" + } + ] + }, + { + "task_id": "Compass--17", + "recorded_steps_including_done": 9, + "mode": "guided/source-aware", + "run_id": "guided-003-durable", + "port": 40019, + "run_code_sha": "b84eaf60bf02a30a45da643b62c92b343e70f426", + "run_image_code_sha": "3cdc0b66d72b8a789b89583176c668081de36852", + "run_asset_revision": "47232eba972567d138bbac478a6f4af9775a1d90", + "original_trajectory_sha256": "6e2d51c8918c12f62d05910c179a41869c89f5e7e39bd167708d60a023b4a8b3", + "trajectory_sha256": "54e7ec30d97275b928cd552eb9bdc791f82f2a006bbed45f904fb286b971a0b7", + "native_action_export": [ + { + "step": 0, + "recorded_operation": "open_luxury", + "native_action": "click" + }, + { + "step": 1, + "recorded_operation": "search", + "native_action": "click" + }, + { + "step": 2, + "recorded_operation": "filter", + "native_action": "click" + }, + { + "step": 3, + "recorded_operation": "set_status", + "native_action": "click" + }, + { + "step": 4, + "recorded_operation": "open_advanced_filters", + "native_action": "click" + }, + { + "step": 5, + "recorded_operation": "minimum_luxury_price", + "native_action": "click" + }, + { + "step": 6, + "recorded_operation": "open_listing", + "native_action": "click" + }, + { + "step": 7, + "recorded_operation": "read_property_details", + "native_action": "click" + }, + { + "step": 8, + "recorded_operation": "done", + "native_action": "done" + } + ], + "before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "after_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "reset_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "failed_actions": [], + "scorer_sha": "79afdfc3c2d915b325d0336e5ac0396adc1a77ae", + "verifier": { + "task_id": "Compass--17", + "pass": true, + "reason": "All applicable checks passed", + "evidence": [ + { + "check": "task_identity", + "pass": true, + "detail": "" + }, + { + "check": "local_ui_evidence", + "pass": true, + "detail": "" + }, + { + "check": "final_answer", + "pass": true, + "detail": "" + }, + { + "check": "completed_run", + "pass": true, + "detail": "" + }, + { + "check": "step_screenshot_package", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_tours", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_listings", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_agents", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_inquiries", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_cities", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_homes", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_users", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_collections", + "pass": true, + "detail": "" + }, + { + "check": "unchanged_saved_searches", + "pass": true, + "detail": "" + }, + { + "check": "answer_target_address", + "pass": true, + "detail": "" + }, + { + "check": "target_property_details", + "pass": true, + "detail": "" + }, + { + "check": "answer_agent_name", + "pass": true, + "detail": "" + }, + { + "check": "answer_year_built", + "pass": true, + "detail": "" + } + ] + }, + "screenshots": 18, + "screenshot_files": [ + { + "file": "screenshots/step_000.png", + "sha256": "11262b19332559bf7878a479b1211021f75e36d230f5abc6e69b824c38863642" + }, + { + "file": "screenshots/step_001.png", + "sha256": "88c33a5c830e5448396f5e6fd1b8d209d53fabda3d495e7f1abf5dddc754c20f" + }, + { + "file": "screenshots/step_002.png", + "sha256": "88c33a5c830e5448396f5e6fd1b8d209d53fabda3d495e7f1abf5dddc754c20f" + }, + { + "file": "screenshots/step_003.png", + "sha256": "21dd2f1d5cbb8eb559d3d8cd2aae5ffc11fd2532ca1539e137888e881a8b4e26" + }, + { + "file": "screenshots/step_004.png", + "sha256": "21dd2f1d5cbb8eb559d3d8cd2aae5ffc11fd2532ca1539e137888e881a8b4e26" + }, + { + "file": "screenshots/step_005.png", + "sha256": "cd63897c5cc536fb4685dc6188701e0d354b631436d53afd378ba42660ba6a09" + }, + { + "file": "screenshots/step_006.png", + "sha256": "cd63897c5cc536fb4685dc6188701e0d354b631436d53afd378ba42660ba6a09" + }, + { + "file": "screenshots/step_007.png", + "sha256": "af4512bb24924f84814da04cdf98fd11d3f42da4f80647ffc7ff64facfa5de78" + }, + { + "file": "screenshots/step_008.png", + "sha256": "af4512bb24924f84814da04cdf98fd11d3f42da4f80647ffc7ff64facfa5de78" + }, + { + "file": "screenshots/step_009.png", + "sha256": "a1ae9441cdbd32a26387a6c542e1bbcc82d08586fd0037ccdf2bc578fc16faed" + }, + { + "file": "screenshots/step_010.png", + "sha256": "a1ae9441cdbd32a26387a6c542e1bbcc82d08586fd0037ccdf2bc578fc16faed" + }, + { + "file": "screenshots/step_011.png", + "sha256": "3c7e1d7686767154ae2bd8163c6e967ff35ec5f21e6684f1ea5c43a7c458733d" + }, + { + "file": "screenshots/step_012.png", + "sha256": "3c7e1d7686767154ae2bd8163c6e967ff35ec5f21e6684f1ea5c43a7c458733d" + }, + { + "file": "screenshots/step_013.png", + "sha256": "b79f59d926027bc11a7874e1ebe7ee6ed96af704c84c123896d6b93259a64218" + }, + { + "file": "screenshots/step_014.png", + "sha256": "b79f59d926027bc11a7874e1ebe7ee6ed96af704c84c123896d6b93259a64218" + }, + { + "file": "screenshots/step_015.png", + "sha256": "4915cffac933b2210441fc8e1e93721ff02ae2ecbcb2cb9dc180f3cfda0ebcdd" + }, + { + "file": "screenshots/step_016.png", + "sha256": "4915cffac933b2210441fc8e1e93721ff02ae2ecbcb2cb9dc180f3cfda0ebcdd" + }, + { + "file": "screenshots/step_017.png", + "sha256": "4915cffac933b2210441fc8e1e93721ff02ae2ecbcb2cb9dc180f3cfda0ebcdd" + } + ] + } + ], + "initial_scoring": { + "note": "Original semantic action labels and pre-fix parser; failures preserved. No final answers or DB state were changed for regrading.", + "results": [ + { + "task_id": "Compass--0", + "pass": false, + "reason": "answer_year_built" + }, + { + "task_id": "Compass--1", + "pass": true, + "reason": "All applicable checks passed" + }, + { + "task_id": "Compass--2", + "pass": true, + "reason": "All applicable checks passed" + }, + { + "task_id": "Compass--3", + "pass": true, + "reason": "All applicable checks passed" + }, + { + "task_id": "Compass--4", + "pass": true, + "reason": "All applicable checks passed" + }, + { + "task_id": "Compass--5", + "pass": true, + "reason": "All applicable checks passed" + }, + { + "task_id": "Compass--6", + "pass": false, + "reason": "answer_year_built; answer_tour_status" + }, + { + "task_id": "Compass--7", + "pass": true, + "reason": "All applicable checks passed" + }, + { + "task_id": "Compass--10", + "pass": false, + "reason": "reopened_saved_search" + }, + { + "task_id": "Compass--11", + "pass": true, + "reason": "All applicable checks passed" + }, + { + "task_id": "Compass--12", + "pass": false, + "reason": "followed_agent_profile" + }, + { + "task_id": "Compass--13", + "pass": true, + "reason": "All applicable checks passed" + }, + { + "task_id": "Compass--14", + "pass": true, + "reason": "All applicable checks passed" + }, + { + "task_id": "Compass--15", + "pass": true, + "reason": "All applicable checks passed" + }, + { + "task_id": "Compass--16", + "pass": true, + "reason": "All applicable checks passed" + }, + { + "task_id": "Compass--17", + "pass": true, + "reason": "All applicable checks passed" + } + ] + }, + "recovery_note": "A host reboot removed pre-reboot temporary raw bundles. All 16 current runs were newly executed on 40019 into durable storage. The first recovery attempt exposed a recorder binding error and was excluded; its files were retained as diagnostics. The accepted run set freezes 932 original files before scoring. Native exports preserve source hashes and map recorded semantic operations to the actual terminal click/press action; grouped form fills remain described in params. PNG conversion preserves exact decoded pixels.", + "adversarial_fixtures": { + "cases": 111, + "matched_expected": 111, + "real_runs": false, + "outcomes": [ + { + "task": 0, + "case": "positive", + "expected": true, + "actual": true, + "correct": true, + "reason": "All applicable checks passed" + }, + { + "task": 0, + "case": "wrong-task-replay", + "expected": false, + "actual": false, + "correct": true, + "reason": "task_identity" + }, + { + "task": 0, + "case": "only-self-report", + "expected": false, + "actual": false, + "correct": true, + "reason": "answer_target_address; answer_year_built; answer_mls_number" + }, + { + "task": 0, + "case": "foreign-origin", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; target_property_details" + }, + { + "task": 0, + "case": "unrelated-profile-write", + "expected": false, + "actual": false, + "correct": true, + "reason": "unchanged_users" + }, + { + "task": 0, + "case": "no-ui-evidence", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; target_property_details" + }, + { + "task": 1, + "case": "positive", + "expected": true, + "actual": true, + "correct": true, + "reason": "All applicable checks passed" + }, + { + "task": 1, + "case": "wrong-task-replay", + "expected": false, + "actual": false, + "correct": true, + "reason": "task_identity" + }, + { + "task": 1, + "case": "only-self-report", + "expected": false, + "actual": false, + "correct": true, + "reason": "answer_target_address; answer_price; answer_year_built; answer_mls_number" + }, + { + "task": 1, + "case": "foreign-origin", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; target_property_details" + }, + { + "task": 1, + "case": "unrelated-profile-write", + "expected": false, + "actual": false, + "correct": true, + "reason": "unchanged_users" + }, + { + "task": 1, + "case": "no-ui-evidence", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; target_property_details" + }, + { + "task": 2, + "case": "positive", + "expected": true, + "actual": true, + "correct": true, + "reason": "All applicable checks passed" + }, + { + "task": 2, + "case": "wrong-task-replay", + "expected": false, + "actual": false, + "correct": true, + "reason": "task_identity" + }, + { + "task": 2, + "case": "only-self-report", + "expected": false, + "actual": false, + "correct": true, + "reason": "answer_target_address; associated_facts_115; associated_facts_110; lower_ratio_selection" + }, + { + "task": 2, + "case": "foreign-origin", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; target_property_details; details_115; details_110" + }, + { + "task": 2, + "case": "unrelated-profile-write", + "expected": false, + "actual": false, + "correct": true, + "reason": "unchanged_users" + }, + { + "task": 2, + "case": "no-ui-evidence", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; target_property_details; details_115; details_110" + }, + { + "task": 3, + "case": "positive", + "expected": true, + "actual": true, + "correct": true, + "reason": "All applicable checks passed" + }, + { + "task": 3, + "case": "wrong-task-replay", + "expected": false, + "actual": false, + "correct": true, + "reason": "task_identity" + }, + { + "task": 3, + "case": "only-self-report", + "expected": false, + "actual": false, + "correct": true, + "reason": "answer_target_address; answer_year_built; answer_agent_name" + }, + { + "task": 3, + "case": "foreign-origin", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; target_property_details" + }, + { + "task": 3, + "case": "unrelated-profile-write", + "expected": false, + "actual": false, + "correct": true, + "reason": "unchanged_users" + }, + { + "task": 3, + "case": "no-ui-evidence", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; target_property_details" + }, + { + "task": 4, + "case": "positive", + "expected": true, + "actual": true, + "correct": true, + "reason": "All applicable checks passed" + }, + { + "task": 4, + "case": "wrong-task-replay", + "expected": false, + "actual": false, + "correct": true, + "reason": "task_identity" + }, + { + "task": 4, + "case": "only-self-report", + "expected": false, + "actual": false, + "correct": true, + "reason": "answer_price; answer_property_type" + }, + { + "task": 4, + "case": "foreign-origin", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; saved_homes_confirmation" + }, + { + "task": 4, + "case": "unrelated-profile-write", + "expected": false, + "actual": false, + "correct": true, + "reason": "preserve_users_2" + }, + { + "task": 4, + "case": "no-ui-evidence", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; saved_homes_confirmation" + }, + { + "task": 4, + "case": "no-op-database", + "expected": false, + "actual": false, + "correct": true, + "reason": "target_account; one_registered_account; registered_password; registration_defaults; one_target_save" + }, + { + "task": 4, + "case": "missing-required-confirmation", + "expected": false, + "actual": false, + "correct": true, + "reason": "saved_homes_confirmation" + }, + { + "task": 5, + "case": "positive", + "expected": true, + "actual": true, + "correct": true, + "reason": "All applicable checks passed" + }, + { + "task": 5, + "case": "wrong-task-replay", + "expected": false, + "actual": false, + "correct": true, + "reason": "task_identity" + }, + { + "task": 5, + "case": "only-self-report", + "expected": false, + "actual": false, + "correct": true, + "reason": "answer_phone; answer_existing_location" + }, + { + "task": 5, + "case": "foreign-origin", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; account_overview_confirmation" + }, + { + "task": 5, + "case": "unrelated-profile-write", + "expected": false, + "actual": false, + "correct": true, + "reason": "preserve_users_2" + }, + { + "task": 5, + "case": "no-ui-evidence", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; account_overview_confirmation" + }, + { + "task": 5, + "case": "no-op-database", + "expected": false, + "actual": false, + "correct": true, + "reason": "preserve_users_1" + }, + { + "task": 5, + "case": "missing-required-confirmation", + "expected": false, + "actual": false, + "correct": true, + "reason": "account_overview_confirmation" + }, + { + "task": 6, + "case": "positive", + "expected": true, + "actual": true, + "correct": true, + "reason": "All applicable checks passed" + }, + { + "task": 6, + "case": "wrong-task-replay", + "expected": false, + "actual": false, + "correct": true, + "reason": "task_identity" + }, + { + "task": 6, + "case": "only-self-report", + "expected": false, + "actual": false, + "correct": true, + "reason": "answer_year_built; answer_tour_status" + }, + { + "task": 6, + "case": "foreign-origin", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; tours_confirmation" + }, + { + "task": 6, + "case": "unrelated-profile-write", + "expected": false, + "actual": false, + "correct": true, + "reason": "unchanged_users" + }, + { + "task": 6, + "case": "no-ui-evidence", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; tours_confirmation" + }, + { + "task": 6, + "case": "no-op-database", + "expected": false, + "actual": false, + "correct": true, + "reason": "one_exact_tour" + }, + { + "task": 6, + "case": "missing-required-confirmation", + "expected": false, + "actual": false, + "correct": true, + "reason": "tours_confirmation" + }, + { + "task": 7, + "case": "positive", + "expected": true, + "actual": true, + "correct": true, + "reason": "All applicable checks passed" + }, + { + "task": 7, + "case": "wrong-task-replay", + "expected": false, + "actual": false, + "correct": true, + "reason": "task_identity" + }, + { + "task": 7, + "case": "only-self-report", + "expected": false, + "actual": false, + "correct": true, + "reason": "answer_share_token" + }, + { + "task": 7, + "case": "foreign-origin", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; collection_confirmation" + }, + { + "task": 7, + "case": "unrelated-profile-write", + "expected": false, + "actual": false, + "correct": true, + "reason": "unchanged_users" + }, + { + "task": 7, + "case": "no-ui-evidence", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; collection_confirmation" + }, + { + "task": 7, + "case": "no-op-database", + "expected": false, + "actual": false, + "correct": true, + "reason": "one_exact_collection" + }, + { + "task": 7, + "case": "missing-required-confirmation", + "expected": false, + "actual": false, + "correct": true, + "reason": "collection_confirmation" + }, + { + "task": 10, + "case": "positive", + "expected": true, + "actual": true, + "correct": true, + "reason": "All applicable checks passed" + }, + { + "task": 10, + "case": "wrong-task-replay", + "expected": false, + "actual": false, + "correct": true, + "reason": "task_identity" + }, + { + "task": 10, + "case": "only-self-report", + "expected": false, + "actual": false, + "correct": true, + "reason": "answer_saved_criteria" + }, + { + "task": 10, + "case": "foreign-origin", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; reopened_saved_search" + }, + { + "task": 10, + "case": "unrelated-profile-write", + "expected": false, + "actual": false, + "correct": true, + "reason": "unchanged_users" + }, + { + "task": 10, + "case": "no-ui-evidence", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; reopened_saved_search" + }, + { + "task": 10, + "case": "no-op-database", + "expected": false, + "actual": false, + "correct": true, + "reason": "one_exact_saved_search" + }, + { + "task": 10, + "case": "missing-required-confirmation", + "expected": false, + "actual": false, + "correct": true, + "reason": "reopened_saved_search" + }, + { + "task": 11, + "case": "positive", + "expected": true, + "actual": true, + "correct": true, + "reason": "All applicable checks passed" + }, + { + "task": 11, + "case": "wrong-task-replay", + "expected": false, + "actual": false, + "correct": true, + "reason": "task_identity" + }, + { + "task": 11, + "case": "only-self-report", + "expected": false, + "actual": false, + "correct": true, + "reason": "answer_target_address; answer_beds; answer_sqft; answer_year_built; answer_mls_number" + }, + { + "task": 11, + "case": "foreign-origin", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; target_property_details" + }, + { + "task": 11, + "case": "unrelated-profile-write", + "expected": false, + "actual": false, + "correct": true, + "reason": "unchanged_users" + }, + { + "task": 11, + "case": "no-ui-evidence", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; target_property_details" + }, + { + "task": 12, + "case": "positive", + "expected": true, + "actual": true, + "correct": true, + "reason": "All applicable checks passed" + }, + { + "task": 12, + "case": "wrong-task-replay", + "expected": false, + "actual": false, + "correct": true, + "reason": "task_identity" + }, + { + "task": 12, + "case": "only-self-report", + "expected": false, + "actual": false, + "correct": true, + "reason": "answer_year_built; answer_agent_name; answer_agent_email; answer_rounded_price_per_sqft" + }, + { + "task": 12, + "case": "foreign-origin", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; target_property_details; followed_agent_profile" + }, + { + "task": 12, + "case": "unrelated-profile-write", + "expected": false, + "actual": false, + "correct": true, + "reason": "unchanged_users" + }, + { + "task": 12, + "case": "no-ui-evidence", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; target_property_details; followed_agent_profile" + }, + { + "task": 12, + "case": "missing-required-confirmation", + "expected": false, + "actual": false, + "correct": true, + "reason": "followed_agent_profile" + }, + { + "task": 13, + "case": "positive", + "expected": true, + "actual": true, + "correct": true, + "reason": "All applicable checks passed" + }, + { + "task": 13, + "case": "wrong-task-replay", + "expected": false, + "actual": false, + "correct": true, + "reason": "task_identity" + }, + { + "task": 13, + "case": "only-self-report", + "expected": false, + "actual": false, + "correct": true, + "reason": "answer_target_address; answer_beds; answer_sqft; answer_year_built; answer_agent_name" + }, + { + "task": 13, + "case": "foreign-origin", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; target_property_details" + }, + { + "task": 13, + "case": "unrelated-profile-write", + "expected": false, + "actual": false, + "correct": true, + "reason": "unchanged_users" + }, + { + "task": 13, + "case": "no-ui-evidence", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; target_property_details" + }, + { + "task": 14, + "case": "positive", + "expected": true, + "actual": true, + "correct": true, + "reason": "All applicable checks passed" + }, + { + "task": 14, + "case": "wrong-task-replay", + "expected": false, + "actual": false, + "correct": true, + "reason": "task_identity" + }, + { + "task": 14, + "case": "only-self-report", + "expected": false, + "actual": false, + "correct": true, + "reason": "answer_target_address; answer_mls_number" + }, + { + "task": 14, + "case": "foreign-origin", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; collection_confirmation" + }, + { + "task": 14, + "case": "unrelated-profile-write", + "expected": false, + "actual": false, + "correct": true, + "reason": "unchanged_users" + }, + { + "task": 14, + "case": "no-ui-evidence", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; collection_confirmation" + }, + { + "task": 14, + "case": "no-op-database", + "expected": false, + "actual": false, + "correct": true, + "reason": "one_exact_collection" + }, + { + "task": 14, + "case": "missing-required-confirmation", + "expected": false, + "actual": false, + "correct": true, + "reason": "collection_confirmation" + }, + { + "task": 15, + "case": "positive", + "expected": true, + "actual": true, + "correct": true, + "reason": "All applicable checks passed" + }, + { + "task": 15, + "case": "wrong-task-replay", + "expected": false, + "actual": false, + "correct": true, + "reason": "task_identity" + }, + { + "task": 15, + "case": "only-self-report", + "expected": false, + "actual": false, + "correct": true, + "reason": "answer_target_address; answer_agent_name; answer_tour_date" + }, + { + "task": 15, + "case": "foreign-origin", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; tour_and_inquiry_ui" + }, + { + "task": 15, + "case": "unrelated-profile-write", + "expected": false, + "actual": false, + "correct": true, + "reason": "unchanged_users" + }, + { + "task": 15, + "case": "no-ui-evidence", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; tour_and_inquiry_ui" + }, + { + "task": 15, + "case": "no-op-database", + "expected": false, + "actual": false, + "correct": true, + "reason": "one_exact_inquiry" + }, + { + "task": 15, + "case": "missing-required-confirmation", + "expected": false, + "actual": false, + "correct": true, + "reason": "tour_and_inquiry_ui" + }, + { + "task": 16, + "case": "positive", + "expected": true, + "actual": true, + "correct": true, + "reason": "All applicable checks passed" + }, + { + "task": 16, + "case": "wrong-task-replay", + "expected": false, + "actual": false, + "correct": true, + "reason": "task_identity" + }, + { + "task": 16, + "case": "only-self-report", + "expected": false, + "actual": false, + "correct": true, + "reason": "answer_target_address; answer_year_built; answer_agent_name" + }, + { + "task": 16, + "case": "foreign-origin", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; target_property_details" + }, + { + "task": 16, + "case": "unrelated-profile-write", + "expected": false, + "actual": false, + "correct": true, + "reason": "unchanged_users" + }, + { + "task": 16, + "case": "no-ui-evidence", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; target_property_details" + }, + { + "task": 17, + "case": "positive", + "expected": true, + "actual": true, + "correct": true, + "reason": "All applicable checks passed" + }, + { + "task": 17, + "case": "wrong-task-replay", + "expected": false, + "actual": false, + "correct": true, + "reason": "task_identity" + }, + { + "task": 17, + "case": "only-self-report", + "expected": false, + "actual": false, + "correct": true, + "reason": "answer_target_address; answer_agent_name; answer_year_built" + }, + { + "task": 17, + "case": "foreign-origin", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; target_property_details" + }, + { + "task": 17, + "case": "unrelated-profile-write", + "expected": false, + "actual": false, + "correct": true, + "reason": "unchanged_users" + }, + { + "task": 17, + "case": "no-ui-evidence", + "expected": false, + "actual": false, + "correct": true, + "reason": "local_ui_evidence; target_property_details" + } + ], + "evidence_status": "Historical results preserved from b84eaf6; raw constructed fixtures lost. Not rerun after parser fix. Current regression suite covers 124 constructed cases." + }, + "human_experience": "PENDING", + "independent_review": { + "status": "COMPLETE_RECONCILED", + "reviewed_at": "2026-09-06T13:42:48.604611+00:00", + "reconciled_at": "2026-09-06T13:50:44.154224+00:00", + "review_candidate": "b66016dd16dfc7eb776f58d5490fc31caecac68c", + "reviewer_model_self_reported": "Claude Fable 5.1 (claude-fable-5-1)", + "comment_url": "https://github.com/aiming-lab/WebHarbor/pull/84#issuecomment-5559623084", + "input_manifest_sha256": "3125bf726ae7e8faa3020c070d5f08037b619f0474ab3c2c552a272e25be41fd", + "frozen_verdict_sha256": "342633f8e1a3f0a31cf5983912c196573a4c7336591d66d3c315938f1035f662", + "input_files_verified": 618, + "screenshots": 268, + "screenshots_visually_sampled": 4, + "pass": 16, + "fail": 0, + "deterministic_agreements": 16, + "tasks": [ + { + "task_id": "Compass--0", + "claude": "PASS", + "deterministic": "PASS", + "agree": true + }, + { + "task_id": "Compass--1", + "claude": "PASS", + "deterministic": "PASS", + "agree": true + }, + { + "task_id": "Compass--2", + "claude": "PASS", + "deterministic": "PASS", + "agree": true + }, + { + "task_id": "Compass--3", + "claude": "PASS", + "deterministic": "PASS", + "agree": true + }, + { + "task_id": "Compass--4", + "claude": "PASS", + "deterministic": "PASS", + "agree": true + }, + { + "task_id": "Compass--5", + "claude": "PASS", + "deterministic": "PASS", + "agree": true + }, + { + "task_id": "Compass--6", + "claude": "PASS", + "deterministic": "PASS", + "agree": true + }, + { + "task_id": "Compass--7", + "claude": "PASS", + "deterministic": "PASS", + "agree": true + }, + { + "task_id": "Compass--10", + "claude": "PASS", + "deterministic": "PASS", + "agree": true + }, + { + "task_id": "Compass--11", + "claude": "PASS", + "deterministic": "PASS", + "agree": true + }, + { + "task_id": "Compass--12", + "claude": "PASS", + "deterministic": "PASS", + "agree": true + }, + { + "task_id": "Compass--13", + "claude": "PASS", + "deterministic": "PASS", + "agree": true + }, + { + "task_id": "Compass--14", + "claude": "PASS", + "deterministic": "PASS", + "agree": true + }, + { + "task_id": "Compass--15", + "claude": "PASS", + "deterministic": "PASS", + "agree": true + }, + { + "task_id": "Compass--16", + "claude": "PASS", + "deterministic": "PASS", + "agree": true + }, + { + "task_id": "Compass--17", + "claude": "PASS", + "deterministic": "PASS", + "agree": true + } + ], + "reconciliation": "review-report.md#independent-execution-review-and-reconciliation", + "corrections": [ + "268 screenshots, not 258; only four visually sampled.", + "New York address-city-only query is not equivalent to the actual UI search area; city OR market_city preserves the selected result." + ], + "reuse_basis": "Only documentation changed after b66016d; application, task, rubric, assets and verifier inputs unchanged.", + "limits": [ + "Guided/source-aware executor; not independent exploration.", + "No app rerun or harness/image/archive validation by blind reviewer.", + "No source, visual, verifier-implementation or human-experience certification by blind reviewer.", + "Task15 message verified in after.db, not displayed by the inquiries list." + ] + }, + "subsequent_sell_followup": { + "report": "sell-review.md", + "validation": "sell-validation.json", + "application_checkpoint": "a5e25af42b804bc56aeb49d5eb1c48c0a3a4b32c", + "assets_revision": "421ca6a529b88bdd214ecf6308d124798ab1e20b", + "scope": "Current UI follow-up only. All run, scorer, asset and independent-review fields elsewhere in this file describe their original frozen evidence; no new task runs or Claude verdict claimed." + } +} diff --git a/sites/compass/docs/visual-review.md b/sites/compass/docs/visual-review.md new file mode 100644 index 00000000..340c8067 --- /dev/null +++ b/sites/compass/docs/visual-review.md @@ -0,0 +1,58 @@ +# Compass visual comparison + +Captured on 2026-09-06 using the same browser viewport and top-of-page scroll position for each row. Images are actual browser captures, without compositing or synthetic reconstruction. Click a screenshot for its original resolution. Capture URLs, times, viewport dimensions and SHA-256 values are in [captures.json](visual-review/captures.json). + +The before environment is original contribution `11b11cce5942be42cedc768f58e56db77e26696e` with its original asset PR. The after screenshots cover the source-backed refresh and UI fixes through `daa4a5bffd23728c149769f00da3fa7f51d7b0be`; later accessible-label and account-table changes do not alter these anonymous homepage/detail layouts. All screenshots show anonymous sessions. + +Source pages: [homepage](https://www.compass.com/), [Aspen listing](https://www.compass.com/homedetails/501-W-Main-St-Unit-A101-Aspen-CO-81611/LRBC9_pid/), and [Miami listing](https://www.compass.com/homedetails/17145-SW-90th-Ave-Miami-FL-33157/1C7AS8_pid/). + +The main corrections are official local fonts and hero imagery, measured header/search dimensions, readable listing cards, a five-tile desktop gallery, a separate 2:1 layout for two-photo homes, working photo/share dialogs, and mobile property actions fixed below the content. The original mobile mirror overflowed horizontally; the after captures do not. + +## Homepage + +| Original website | Before | After | +|---|---|---| +| [![original Homepage](visual-review/original-home-1440.jpg)](visual-review/original-home-1440.jpg) | [![before Homepage](visual-review/before-home-1440.jpg)](visual-review/before-home-1440.jpg) | [![after Homepage](visual-review/after-home-1440.jpg)](visual-review/after-home-1440.jpg) | + +## Homepage, mobile + +| Original website | Before | After | +|---|---|---| +| [![original Homepage, mobile](visual-review/original-home-390.jpg)](visual-review/original-home-390.jpg) | [![before Homepage, mobile](visual-review/before-home-390.jpg)](visual-review/before-home-390.jpg) | [![after Homepage, mobile](visual-review/after-home-390.jpg)](visual-review/after-home-390.jpg) | + +## Aspen detail + +| Original website | Before | After | +|---|---|---| +| [![original Aspen detail](visual-review/original-detail-aspen-1440.jpg)](visual-review/original-detail-aspen-1440.jpg) | [![before Aspen detail](visual-review/before-detail-aspen-1440.jpg)](visual-review/before-detail-aspen-1440.jpg) | [![after Aspen detail](visual-review/after-detail-aspen-1440.jpg)](visual-review/after-detail-aspen-1440.jpg) | + +## Aspen detail, mobile + +The source mobile gallery failed to load its photo responses in this browser session. This source screenshot supports the layout comparison only; photo fidelity is established by the fully loaded desktop comparison above. + +| Original website | Before | After | +|---|---|---| +| [![original Aspen detail, mobile](visual-review/original-detail-aspen-390.jpg)](visual-review/original-detail-aspen-390.jpg) | [![before Aspen detail, mobile](visual-review/before-detail-aspen-390.jpg)](visual-review/before-detail-aspen-390.jpg) | [![after Aspen detail, mobile](visual-review/after-detail-aspen-390.jpg)](visual-review/after-detail-aspen-390.jpg) | + +## Miami two-photo detail + +| Original website | Before | After | +|---|---|---| +| [![original Miami two-photo detail](visual-review/original-detail-miami-1440.jpg)](visual-review/original-detail-miami-1440.jpg) | [![before Miami two-photo detail](visual-review/before-detail-miami-1440.jpg)](visual-review/before-detail-miami-1440.jpg) | [![after Miami two-photo detail](visual-review/after-detail-miami-1440.jpg)](visual-review/after-detail-miami-1440.jpg) | + +## Miami search results + +The live site uses a map plus two-column list. The mirror implements a full-width list; live map interaction is outside its scope. This is a remaining layout/functional difference, not an answer-leak safeguard. Listings and ordering also differ because the mirror is a fixed snapshot. Fonts, cards, search/filter controls and spacing were improved, but this row does not claim complete visual equivalence. + +| Original website | Before | After | +|---|---|---| +| [![original Miami list](visual-review/original-miami-list-1440.jpg)](visual-review/original-miami-list-1440.jpg) | [![before Miami list](visual-review/before-miami-list-1440.jpg)](visual-review/before-miami-list-1440.jpg) | [![after Miami list](visual-review/after-miami-list-1440.jpg)](visual-review/after-miami-list-1440.jpg) | + +## Scope and intentional differences + +- The homepage uses a stable Compass Exclusives mix instead of the live site's personalized recommendations. Task-answer details such as year, MLS and agent information remain in property/profile pages rather than being added to cards. +- Local benchmark accounts, saved homes, collections, tour requests and inquiries are synthetic and resettable. They do not contact the external real-estate service. +- Map/street-view, mortgage, seller, property-history and school-data services are outside this mirror's implemented scope. These are documented omissions, not claimed answer-leak protections. +- Source-backed facts reflect the captured transaction snapshot; historical contributor-only records keep their known basic fields and display unknown details as unavailable. Availability, personalized recommendations and photo inventories can change on the live site. + +These screenshots support visual QA. They do not replace full-environment health/reset checks, task quality review, real recorded UI execution or verifier testing. diff --git a/sites/compass/docs/visual-review/after-detail-aspen-1440.jpg b/sites/compass/docs/visual-review/after-detail-aspen-1440.jpg new file mode 100644 index 00000000..9bd4c9f3 Binary files /dev/null and b/sites/compass/docs/visual-review/after-detail-aspen-1440.jpg differ diff --git a/sites/compass/docs/visual-review/after-detail-aspen-390.jpg b/sites/compass/docs/visual-review/after-detail-aspen-390.jpg new file mode 100644 index 00000000..dc988a06 Binary files /dev/null and b/sites/compass/docs/visual-review/after-detail-aspen-390.jpg differ diff --git a/sites/compass/docs/visual-review/after-detail-miami-1440.jpg b/sites/compass/docs/visual-review/after-detail-miami-1440.jpg new file mode 100644 index 00000000..9d027483 Binary files /dev/null and b/sites/compass/docs/visual-review/after-detail-miami-1440.jpg differ diff --git a/sites/compass/docs/visual-review/after-home-1440.jpg b/sites/compass/docs/visual-review/after-home-1440.jpg new file mode 100644 index 00000000..396485ce Binary files /dev/null and b/sites/compass/docs/visual-review/after-home-1440.jpg differ diff --git a/sites/compass/docs/visual-review/after-home-390.jpg b/sites/compass/docs/visual-review/after-home-390.jpg new file mode 100644 index 00000000..1c608a17 Binary files /dev/null and b/sites/compass/docs/visual-review/after-home-390.jpg differ diff --git a/sites/compass/docs/visual-review/after-miami-list-1440.jpg b/sites/compass/docs/visual-review/after-miami-list-1440.jpg new file mode 100644 index 00000000..936e4342 Binary files /dev/null and b/sites/compass/docs/visual-review/after-miami-list-1440.jpg differ diff --git a/sites/compass/docs/visual-review/before-detail-aspen-1440.jpg b/sites/compass/docs/visual-review/before-detail-aspen-1440.jpg new file mode 100644 index 00000000..ceaeec6c Binary files /dev/null and b/sites/compass/docs/visual-review/before-detail-aspen-1440.jpg differ diff --git a/sites/compass/docs/visual-review/before-detail-aspen-390.jpg b/sites/compass/docs/visual-review/before-detail-aspen-390.jpg new file mode 100644 index 00000000..bafd7c54 Binary files /dev/null and b/sites/compass/docs/visual-review/before-detail-aspen-390.jpg differ diff --git a/sites/compass/docs/visual-review/before-detail-miami-1440.jpg b/sites/compass/docs/visual-review/before-detail-miami-1440.jpg new file mode 100644 index 00000000..c97c1e34 Binary files /dev/null and b/sites/compass/docs/visual-review/before-detail-miami-1440.jpg differ diff --git a/sites/compass/docs/visual-review/before-home-1440.jpg b/sites/compass/docs/visual-review/before-home-1440.jpg new file mode 100644 index 00000000..962ac885 Binary files /dev/null and b/sites/compass/docs/visual-review/before-home-1440.jpg differ diff --git a/sites/compass/docs/visual-review/before-home-390.jpg b/sites/compass/docs/visual-review/before-home-390.jpg new file mode 100644 index 00000000..543a6dec Binary files /dev/null and b/sites/compass/docs/visual-review/before-home-390.jpg differ diff --git a/sites/compass/docs/visual-review/before-miami-list-1440.jpg b/sites/compass/docs/visual-review/before-miami-list-1440.jpg new file mode 100644 index 00000000..06551320 Binary files /dev/null and b/sites/compass/docs/visual-review/before-miami-list-1440.jpg differ diff --git a/sites/compass/docs/visual-review/captures.json b/sites/compass/docs/visual-review/captures.json new file mode 100644 index 00000000..b063aeee --- /dev/null +++ b/sites/compass/docs/visual-review/captures.json @@ -0,0 +1,221 @@ +[ + { + "name": "original-home-1440", + "url": "https://www.compass.com/", + "title": "Real Estate, Homes for Sale & Apartments for Rent | Compass", + "captured_at": "2026-09-06T07:51:23.976Z", + "height": 900, + "overflow": false, + "scrollX": 0, + "scrollY": 0, + "width": 1440, + "sha256": "b4c11fa5c6e0179367b81b4a1776c7c29a704257dadc9bbf9b26ce16bc3d5d81" + }, + { + "name": "before-home-1440", + "url": "http://127.0.0.1:41025/", + "title": "Compass \u2014 Find Real Estate, Homes for Sale, Apartments & Houses", + "captured_at": "2026-09-06T07:53:01.353Z", + "height": 900, + "overflow": false, + "scrollX": 0, + "scrollY": 0, + "width": 1440, + "sha256": "1b50f8298e6c6d50baab7124a41c1b6f7545bfd115b6bf82102685975468b31d" + }, + { + "name": "after-home-1440", + "url": "http://127.0.0.1:41018/", + "title": "Compass \u2014 Find Real Estate, Homes for Sale, Apartments & Houses", + "captured_at": "2026-09-06T08:21:29.274Z", + "height": 900, + "overflow": false, + "scrollX": 0, + "scrollY": 0, + "width": 1440, + "sha256": "fa359a8b6ae983f0cfbd2604567371a4b8a059fd6e2dbe097c831adaafd3724a" + }, + { + "name": "original-home-390", + "url": "https://www.compass.com/", + "title": "Real Estate, Homes for Sale & Apartments for Rent | Compass", + "captured_at": "2026-09-06T08:15:19.867Z", + "height": 844, + "overflow": false, + "scrollX": 0, + "scrollY": 0, + "width": 390, + "sha256": "80181287ac7eb49c05032e62728eb326deeac82e108413b286472cdc95aabe2c" + }, + { + "name": "before-home-390", + "url": "http://127.0.0.1:41025/", + "title": "Compass \u2014 Find Real Estate, Homes for Sale, Apartments & Houses", + "captured_at": "2026-09-06T08:15:17.744Z", + "height": 844, + "overflow": true, + "scrollX": 0, + "scrollY": 0, + "width": 390, + "sha256": "331eaae274d088db1f9ea09c989a09768896c502d00e5ebebab2a88b5edd7404" + }, + { + "name": "after-home-390", + "url": "http://127.0.0.1:41018/", + "title": "Compass \u2014 Find Real Estate, Homes for Sale, Apartments & Houses", + "captured_at": "2026-09-06T08:15:20.072Z", + "height": 844, + "overflow": false, + "scrollX": 0, + "scrollY": 0, + "width": 390, + "sha256": "1ef45c0bb3de09f7525fabb98d336b539cbbfa0bc9a34407942926e2c8c42a45" + }, + { + "name": "original-detail-aspen-1440", + "url": "https://www.compass.com/homedetails/501-W-Main-St-Unit-A101-Aspen-CO-81611/LRBC9_pid/", + "title": "501 W Main St, Unit A101, Aspen, CO 81611 | MLS #192719", + "captured_at": "2026-09-06T07:53:43.294Z", + "height": 900, + "overflow": false, + "scrollX": 0, + "scrollY": 0, + "width": 1440, + "sha256": "e2f0722483666de131a7578ca7be0fcd9c33406e0eb399a06e9db1133dd34e97" + }, + { + "name": "before-detail-aspen-1440", + "url": "http://127.0.0.1:41025/listing/501-west-main-street-unit-a101-aspen-co-44142641", + "title": "501 West Main Street, Unit A101 | Compass", + "captured_at": "2026-09-06T07:53:03.029Z", + "height": 900, + "overflow": false, + "scrollX": 0, + "scrollY": 0, + "width": 1440, + "sha256": "30d4bdf6f606d25c9631679645e99661c8cce45f2e997ed72031d66617f480cb" + }, + { + "name": "after-detail-aspen-1440", + "url": "http://127.0.0.1:41018/listing/501-west-main-street-unit-a101-aspen-co-44142641", + "title": "501 West Main Street, Unit A101 | Compass", + "captured_at": "2026-09-06T07:53:00.556Z", + "height": 900, + "overflow": false, + "scrollX": 0, + "scrollY": 0, + "width": 1440, + "sha256": "54c1963307dc169eeb8885d1195d7a126ee426d03186924d39a2de8c1c4ddffe" + }, + { + "name": "original-detail-aspen-390", + "url": "https://www.compass.com/homedetails/501-W-Main-St-Unit-A101-Aspen-CO-81611/LRBC9_pid/", + "title": "501 W Main St, Unit A101, Aspen, CO 81611 | MLS #192719", + "captured_at": "2026-09-06T07:50:12.768Z", + "height": 844, + "overflow": false, + "scrollX": 0, + "scrollY": 0, + "width": 390, + "sha256": "29fc594e9b641e4feda608e364238b824d4e3236f3981bce0eba26bc8495f3fd" + }, + { + "name": "before-detail-aspen-390", + "url": "http://127.0.0.1:41025/listing/501-west-main-street-unit-a101-aspen-co-44142641", + "title": "501 West Main Street, Unit A101 | Compass", + "captured_at": "2026-09-06T08:15:17.562Z", + "height": 844, + "overflow": true, + "scrollX": 0, + "scrollY": 0, + "width": 390, + "sha256": "f9d13ae00c428dab6583cd5e8a6b0392f9052f43946d9de53b956719e5fbcf60" + }, + { + "name": "after-detail-aspen-390", + "url": "http://127.0.0.1:41018/listing/501-west-main-street-unit-a101-aspen-co-44142641", + "title": "501 West Main Street, Unit A101 | Compass", + "captured_at": "2026-09-06T07:50:12.736Z", + "height": 844, + "overflow": false, + "scrollX": 0, + "scrollY": 0, + "width": 390, + "sha256": "1cdb32ebc11a822317ff9f9bc29e6bacef47e38d3f773013561b742205594fa3" + }, + { + "name": "original-detail-miami-1440", + "url": "https://www.compass.com/homedetails/17145-SW-90th-Ave-Miami-FL-33157/1C7AS8_pid/", + "title": "17145 SW 90th Ave, Miami, FL 33157 | Coming Soon", + "captured_at": "2026-09-06T07:54:27.631Z", + "height": 900, + "overflow": false, + "scrollX": 0, + "scrollY": 0, + "width": 1440, + "sha256": "c4bf46129bbc21f4eb96d15a8522b8a38db6e0f3070faca151595afe8d27b9b1" + }, + { + "name": "before-detail-miami-1440", + "url": "http://127.0.0.1:41025/listing/17145-southwest-90th-avenue-miami-fl-57531361", + "title": "17145 Southwest 90th Avenue | Compass", + "captured_at": "2026-09-06T07:54:28.965Z", + "height": 900, + "overflow": false, + "scrollX": 0, + "scrollY": 0, + "width": 1440, + "sha256": "a00a48bc22dc139eb41e99464b155f33f19f52e1fd5ff2300b8090830027444e" + }, + { + "name": "after-detail-miami-1440", + "url": "http://127.0.0.1:41018/listing/17145-southwest-90th-avenue-miami-fl-57531361", + "title": "17145 Southwest 90th Avenue | Compass", + "captured_at": "2026-09-06T08:01:51.265Z", + "height": 900, + "overflow": false, + "scrollX": 0, + "scrollY": 0, + "width": 1440, + "sha256": "941a7ca4368e1ce69a8670d42c55c851d9a33b1d120e90152a61a2378d5b417a" + }, + { + "name": "original-miami-list-1440", + "url": "https://www.compass.com/homes-for-sale/miami-fl/", + "captured_at": "2026-09-06T11:15:58.605Z", + "height": 900, + "overflow": false, + "scrollX": 0, + "scrollY": 0, + "width": 1440, + "sha256": "4d5b463bd907c33205c79362077310c75aec3bfe7b7159a7e6ebd92c7d49def7", + "state": "anonymous, for-sale Miami, default order", + "code_sha": null + }, + { + "name": "before-miami-list-1440", + "url": "http://127.0.0.1:41025/homes-for-sale/miami-fl/", + "captured_at": "2026-09-06T11:15:59.211Z", + "height": 900, + "overflow": false, + "scrollX": 0, + "scrollY": 0, + "width": 1440, + "sha256": "29b825bf1d7a9f3a9763d1195c5d15c8d5beec79213dc54231938076d128905d", + "state": "anonymous, for-sale Miami, default order", + "code_sha": "11b11cce5942be42cedc768f58e56db77e26696e" + }, + { + "name": "after-miami-list-1440", + "url": "http://127.0.0.1:41018/homes-for-sale/miami-fl/", + "captured_at": "2026-09-06T11:15:59.816Z", + "height": 900, + "overflow": false, + "scrollX": 0, + "scrollY": 0, + "width": 1440, + "sha256": "6a244e8dffd2037f1b309998cb17b81ad305ee845386147839259d390626fcae", + "state": "anonymous, for-sale Miami, default order", + "code_sha": "366b15c0f38ead00b8c541e21504f02c73f64160" + } +] diff --git a/sites/compass/docs/visual-review/home/after-home-concierge-390.jpg b/sites/compass/docs/visual-review/home/after-home-concierge-390.jpg new file mode 100644 index 00000000..64bcfa43 Binary files /dev/null and b/sites/compass/docs/visual-review/home/after-home-concierge-390.jpg differ diff --git a/sites/compass/docs/visual-review/home/after-home-footer-1440.jpg b/sites/compass/docs/visual-review/home/after-home-footer-1440.jpg new file mode 100644 index 00000000..be3c9ef1 Binary files /dev/null and b/sites/compass/docs/visual-review/home/after-home-footer-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/after-home-listings-1440.jpg b/sites/compass/docs/visual-review/home/after-home-listings-1440.jpg new file mode 100644 index 00000000..ff8ee6ad Binary files /dev/null and b/sites/compass/docs/visual-review/home/after-home-listings-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/after-home-markets-1440.jpg b/sites/compass/docs/visual-review/home/after-home-markets-1440.jpg new file mode 100644 index 00000000..6461cc1a Binary files /dev/null and b/sites/compass/docs/visual-review/home/after-home-markets-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/after-home-neighborhoods-390.jpg b/sites/compass/docs/visual-review/home/after-home-neighborhoods-390.jpg new file mode 100644 index 00000000..378bb9b1 Binary files /dev/null and b/sites/compass/docs/visual-review/home/after-home-neighborhoods-390.jpg differ diff --git a/sites/compass/docs/visual-review/home/after-home-services-1440.jpg b/sites/compass/docs/visual-review/home/after-home-services-1440.jpg new file mode 100644 index 00000000..1d4f0ace Binary files /dev/null and b/sites/compass/docs/visual-review/home/after-home-services-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/after-home-services-390.jpg b/sites/compass/docs/visual-review/home/after-home-services-390.jpg new file mode 100644 index 00000000..c6c4588e Binary files /dev/null and b/sites/compass/docs/visual-review/home/after-home-services-390.jpg differ diff --git a/sites/compass/docs/visual-review/home/after-home-top-1440.jpg b/sites/compass/docs/visual-review/home/after-home-top-1440.jpg new file mode 100644 index 00000000..22da1280 Binary files /dev/null and b/sites/compass/docs/visual-review/home/after-home-top-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/after-home-top-390.jpg b/sites/compass/docs/visual-review/home/after-home-top-390.jpg new file mode 100644 index 00000000..b0f21a44 Binary files /dev/null and b/sites/compass/docs/visual-review/home/after-home-top-390.jpg differ diff --git a/sites/compass/docs/visual-review/home/after-menu-390.jpg b/sites/compass/docs/visual-review/home/after-menu-390.jpg new file mode 100644 index 00000000..316f9527 Binary files /dev/null and b/sites/compass/docs/visual-review/home/after-menu-390.jpg differ diff --git a/sites/compass/docs/visual-review/home/after-menu-agents-1440.jpg b/sites/compass/docs/visual-review/home/after-menu-agents-1440.jpg new file mode 100644 index 00000000..707d0a72 Binary files /dev/null and b/sites/compass/docs/visual-review/home/after-menu-agents-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/after-menu-development-1440.jpg b/sites/compass/docs/visual-review/home/after-menu-development-1440.jpg new file mode 100644 index 00000000..f267686c Binary files /dev/null and b/sites/compass/docs/visual-review/home/after-menu-development-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/after-menu-exclusives-1440.jpg b/sites/compass/docs/visual-review/home/after-menu-exclusives-1440.jpg new file mode 100644 index 00000000..5f8f87e4 Binary files /dev/null and b/sites/compass/docs/visual-review/home/after-menu-exclusives-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/before-home-listings-1440.jpg b/sites/compass/docs/visual-review/home/before-home-listings-1440.jpg new file mode 100644 index 00000000..23975b30 Binary files /dev/null and b/sites/compass/docs/visual-review/home/before-home-listings-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/before-home-services-1440.jpg b/sites/compass/docs/visual-review/home/before-home-services-1440.jpg new file mode 100644 index 00000000..ff84707c Binary files /dev/null and b/sites/compass/docs/visual-review/home/before-home-services-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/before-home-services-390.jpg b/sites/compass/docs/visual-review/home/before-home-services-390.jpg new file mode 100644 index 00000000..1a1434ed Binary files /dev/null and b/sites/compass/docs/visual-review/home/before-home-services-390.jpg differ diff --git a/sites/compass/docs/visual-review/home/before-home-top-1440.jpg b/sites/compass/docs/visual-review/home/before-home-top-1440.jpg new file mode 100644 index 00000000..bf542d97 Binary files /dev/null and b/sites/compass/docs/visual-review/home/before-home-top-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/before-home-top-390.jpg b/sites/compass/docs/visual-review/home/before-home-top-390.jpg new file mode 100644 index 00000000..cfb3a6f1 Binary files /dev/null and b/sites/compass/docs/visual-review/home/before-home-top-390.jpg differ diff --git a/sites/compass/docs/visual-review/home/before-menu-390.jpg b/sites/compass/docs/visual-review/home/before-menu-390.jpg new file mode 100644 index 00000000..63a39ee5 Binary files /dev/null and b/sites/compass/docs/visual-review/home/before-menu-390.jpg differ diff --git a/sites/compass/docs/visual-review/home/before-tablet-markets-815.jpg b/sites/compass/docs/visual-review/home/before-tablet-markets-815.jpg new file mode 100644 index 00000000..72eed7c3 Binary files /dev/null and b/sites/compass/docs/visual-review/home/before-tablet-markets-815.jpg differ diff --git a/sites/compass/docs/visual-review/home/before-tablet-neighborhoods-815.jpg b/sites/compass/docs/visual-review/home/before-tablet-neighborhoods-815.jpg new file mode 100644 index 00000000..615d70e9 Binary files /dev/null and b/sites/compass/docs/visual-review/home/before-tablet-neighborhoods-815.jpg differ diff --git a/sites/compass/docs/visual-review/home/before-tablet-services-815.jpg b/sites/compass/docs/visual-review/home/before-tablet-services-815.jpg new file mode 100644 index 00000000..2c033973 Binary files /dev/null and b/sites/compass/docs/visual-review/home/before-tablet-services-815.jpg differ diff --git a/sites/compass/docs/visual-review/home/before-tablet-top-815.jpg b/sites/compass/docs/visual-review/home/before-tablet-top-815.jpg new file mode 100644 index 00000000..ba00aa06 Binary files /dev/null and b/sites/compass/docs/visual-review/home/before-tablet-top-815.jpg differ diff --git a/sites/compass/docs/visual-review/home/final-home-neighborhoods-390.jpg b/sites/compass/docs/visual-review/home/final-home-neighborhoods-390.jpg new file mode 100644 index 00000000..3b513c9f Binary files /dev/null and b/sites/compass/docs/visual-review/home/final-home-neighborhoods-390.jpg differ diff --git a/sites/compass/docs/visual-review/home/final-home-services-1440.jpg b/sites/compass/docs/visual-review/home/final-home-services-1440.jpg new file mode 100644 index 00000000..9c827cf5 Binary files /dev/null and b/sites/compass/docs/visual-review/home/final-home-services-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/final-home-top-1440.jpg b/sites/compass/docs/visual-review/home/final-home-top-1440.jpg new file mode 100644 index 00000000..22da1280 Binary files /dev/null and b/sites/compass/docs/visual-review/home/final-home-top-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/final-home-top-390.jpg b/sites/compass/docs/visual-review/home/final-home-top-390.jpg new file mode 100644 index 00000000..b0f21a44 Binary files /dev/null and b/sites/compass/docs/visual-review/home/final-home-top-390.jpg differ diff --git a/sites/compass/docs/visual-review/home/final-tablet-cities-open-815.jpg b/sites/compass/docs/visual-review/home/final-tablet-cities-open-815.jpg new file mode 100644 index 00000000..78cd07df Binary files /dev/null and b/sites/compass/docs/visual-review/home/final-tablet-cities-open-815.jpg differ diff --git a/sites/compass/docs/visual-review/home/final-tablet-city-destination-815.jpg b/sites/compass/docs/visual-review/home/final-tablet-city-destination-815.jpg new file mode 100644 index 00000000..8fff0925 Binary files /dev/null and b/sites/compass/docs/visual-review/home/final-tablet-city-destination-815.jpg differ diff --git a/sites/compass/docs/visual-review/home/final-tablet-menu-815.jpg b/sites/compass/docs/visual-review/home/final-tablet-menu-815.jpg new file mode 100644 index 00000000..b2cea2c7 Binary files /dev/null and b/sites/compass/docs/visual-review/home/final-tablet-menu-815.jpg differ diff --git a/sites/compass/docs/visual-review/home/owner-final-tablet-markets-matched-815.jpg b/sites/compass/docs/visual-review/home/owner-final-tablet-markets-matched-815.jpg new file mode 100644 index 00000000..93432393 Binary files /dev/null and b/sites/compass/docs/visual-review/home/owner-final-tablet-markets-matched-815.jpg differ diff --git a/sites/compass/docs/visual-review/home/owner-final-tablet-neighborhoods-815.jpg b/sites/compass/docs/visual-review/home/owner-final-tablet-neighborhoods-815.jpg new file mode 100644 index 00000000..3f9fbf6a Binary files /dev/null and b/sites/compass/docs/visual-review/home/owner-final-tablet-neighborhoods-815.jpg differ diff --git a/sites/compass/docs/visual-review/home/owner-final-tablet-services-815.jpg b/sites/compass/docs/visual-review/home/owner-final-tablet-services-815.jpg new file mode 100644 index 00000000..02e6d459 Binary files /dev/null and b/sites/compass/docs/visual-review/home/owner-final-tablet-services-815.jpg differ diff --git a/sites/compass/docs/visual-review/home/owner-final-tablet-top-815.jpg b/sites/compass/docs/visual-review/home/owner-final-tablet-top-815.jpg new file mode 100644 index 00000000..5efc8bb8 Binary files /dev/null and b/sites/compass/docs/visual-review/home/owner-final-tablet-top-815.jpg differ diff --git a/sites/compass/docs/visual-review/home/source-home-concierge-390.jpg b/sites/compass/docs/visual-review/home/source-home-concierge-390.jpg new file mode 100644 index 00000000..25887aa0 Binary files /dev/null and b/sites/compass/docs/visual-review/home/source-home-concierge-390.jpg differ diff --git a/sites/compass/docs/visual-review/home/source-home-footer-1440.jpg b/sites/compass/docs/visual-review/home/source-home-footer-1440.jpg new file mode 100644 index 00000000..9bdb8449 Binary files /dev/null and b/sites/compass/docs/visual-review/home/source-home-footer-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/source-home-listings-1440.jpg b/sites/compass/docs/visual-review/home/source-home-listings-1440.jpg new file mode 100644 index 00000000..d533e08a Binary files /dev/null and b/sites/compass/docs/visual-review/home/source-home-listings-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/source-home-markets-1440.jpg b/sites/compass/docs/visual-review/home/source-home-markets-1440.jpg new file mode 100644 index 00000000..2cc0147e Binary files /dev/null and b/sites/compass/docs/visual-review/home/source-home-markets-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/source-home-neighborhoods-390.jpg b/sites/compass/docs/visual-review/home/source-home-neighborhoods-390.jpg new file mode 100644 index 00000000..67d804ea Binary files /dev/null and b/sites/compass/docs/visual-review/home/source-home-neighborhoods-390.jpg differ diff --git a/sites/compass/docs/visual-review/home/source-home-services-1440.jpg b/sites/compass/docs/visual-review/home/source-home-services-1440.jpg new file mode 100644 index 00000000..978581b1 Binary files /dev/null and b/sites/compass/docs/visual-review/home/source-home-services-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/source-home-services-390.jpg b/sites/compass/docs/visual-review/home/source-home-services-390.jpg new file mode 100644 index 00000000..37fbfa52 Binary files /dev/null and b/sites/compass/docs/visual-review/home/source-home-services-390.jpg differ diff --git a/sites/compass/docs/visual-review/home/source-home-top-1440.jpg b/sites/compass/docs/visual-review/home/source-home-top-1440.jpg new file mode 100644 index 00000000..44df59bf Binary files /dev/null and b/sites/compass/docs/visual-review/home/source-home-top-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/source-home-top-390.jpg b/sites/compass/docs/visual-review/home/source-home-top-390.jpg new file mode 100644 index 00000000..2097eb7f Binary files /dev/null and b/sites/compass/docs/visual-review/home/source-home-top-390.jpg differ diff --git a/sites/compass/docs/visual-review/home/source-menu-390.jpg b/sites/compass/docs/visual-review/home/source-menu-390.jpg new file mode 100644 index 00000000..56562d51 Binary files /dev/null and b/sites/compass/docs/visual-review/home/source-menu-390.jpg differ diff --git a/sites/compass/docs/visual-review/home/source-menu-agents-1440.jpg b/sites/compass/docs/visual-review/home/source-menu-agents-1440.jpg new file mode 100644 index 00000000..b3f13ddd Binary files /dev/null and b/sites/compass/docs/visual-review/home/source-menu-agents-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/source-menu-development-1440.jpg b/sites/compass/docs/visual-review/home/source-menu-development-1440.jpg new file mode 100644 index 00000000..0af776ef Binary files /dev/null and b/sites/compass/docs/visual-review/home/source-menu-development-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/source-menu-exclusives-1440.jpg b/sites/compass/docs/visual-review/home/source-menu-exclusives-1440.jpg new file mode 100644 index 00000000..5f1fba63 Binary files /dev/null and b/sites/compass/docs/visual-review/home/source-menu-exclusives-1440.jpg differ diff --git a/sites/compass/docs/visual-review/home/source-tablet-closed-services-815.jpg b/sites/compass/docs/visual-review/home/source-tablet-closed-services-815.jpg new file mode 100644 index 00000000..cb041f30 Binary files /dev/null and b/sites/compass/docs/visual-review/home/source-tablet-closed-services-815.jpg differ diff --git a/sites/compass/docs/visual-review/home/source-tablet-closed-top-815.jpg b/sites/compass/docs/visual-review/home/source-tablet-closed-top-815.jpg new file mode 100644 index 00000000..12fb417d Binary files /dev/null and b/sites/compass/docs/visual-review/home/source-tablet-closed-top-815.jpg differ diff --git a/sites/compass/docs/visual-review/home/source-tablet-markets-matched-815.jpg b/sites/compass/docs/visual-review/home/source-tablet-markets-matched-815.jpg new file mode 100644 index 00000000..d1511804 Binary files /dev/null and b/sites/compass/docs/visual-review/home/source-tablet-markets-matched-815.jpg differ diff --git a/sites/compass/docs/visual-review/home/source-tablet-neighborhoods-815.jpg b/sites/compass/docs/visual-review/home/source-tablet-neighborhoods-815.jpg new file mode 100644 index 00000000..96fecbcf Binary files /dev/null and b/sites/compass/docs/visual-review/home/source-tablet-neighborhoods-815.jpg differ diff --git a/sites/compass/docs/visual-review/home/source-tablet-top-815.jpg b/sites/compass/docs/visual-review/home/source-tablet-top-815.jpg new file mode 100644 index 00000000..b0536bc8 Binary files /dev/null and b/sites/compass/docs/visual-review/home/source-tablet-top-815.jpg differ diff --git a/sites/compass/docs/visual-review/home/task17/final-answer.txt b/sites/compass/docs/visual-review/home/task17/final-answer.txt new file mode 100644 index 00000000..a559b636 --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/final-answer.txt @@ -0,0 +1 @@ +The highest-priced qualifying for-sale Condo is 150 Charles Street, Unit M10, Manhattan, NY 10014, listed at $21,500,000. Its listing agent is Holly Parker and its year built is 2013. The recorded source status is Contract Signed, included in the local for-sale collection. diff --git a/sites/compass/docs/visual-review/home/task17/observations/000-after.txt b/sites/compass/docs/visual-review/home/task17/observations/000-after.txt new file mode 100644 index 00000000..5206c111 --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/observations/000-after.txt @@ -0,0 +1,236 @@ +- link "Skip to content": + - /url: "#main-content" +- banner: + - button "Open navigation": ☰ + - link "Compass": + - /url: / + - img "Compass" + - link "Register": + - /url: /register + - generic: / + - link "Sign In": + - /url: /login +- main: + - heading "Find your place" [level=1] + - search: + - group "Search type": + - generic: Search type + - radio "Buy" [checked] + - generic: Buy + - radio "Rent" + - generic: Rent + - link "Sell": + - /url: /sell/?origin=sellTab + - combobox "City, neighborhood, ZIP or address" + - button "Search": + - heading "Compass Exclusives" [level=2] + - paragraph: Be the first to browse exclusive listings before they hit the market. + - paragraph: Explore a selection from our listing snapshot. Visit each property for its recorded status and details. + - article: + - link "View 425 West 24th Street, Unit 1F": + - /url: /listing/425-west-24th-street-unit-1f-new-york-ny-47919969 + - img "425 West 24th Street, Unit 1F" + - generic: Compass Exclusive + - button "Previous image for 425 West 24th Street, Unit 1F": ‹ + - button "Next image for 425 West 24th Street, Unit 1F": › + - generic: 1/5 + - link "$1,325,000 2 beds 2 baths 1,200 sqft 425 West 24th Street, Unit 1F, New York, NY 10011": + - /url: /listing/425-west-24th-street-unit-1f-new-york-ny-47919969 + - paragraph: $1,325,000 + - paragraph: + - generic: 2 beds + - generic: 2 baths + - generic: 1,200 sqft + - paragraph: 425 West 24th Street, Unit 1F, New York, NY 10011 + - article: + - link "View 1718 Occidental Boulevard": + - /url: /listing/1718-occidental-boulevard-los-angeles-ca-11068225 + - img "1718 Occidental Boulevard" + - generic: Compass Exclusive + - button "Previous image for 1718 Occidental Boulevard": ‹ + - button "Next image for 1718 Occidental Boulevard": › + - generic: 1/5 + - link "$1,299,000 2 beds 1 baths 1,113 sqft 1718 Occidental Boulevard, Los Angeles, CA 90026": + - /url: /listing/1718-occidental-boulevard-los-angeles-ca-11068225 + - paragraph: $1,299,000 + - paragraph: + - generic: 2 beds + - generic: 1 baths + - generic: 1,113 sqft + - paragraph: 1718 Occidental Boulevard, Los Angeles, CA 90026 + - article: + - img "Compass Private Exclusives" + - paragraph: Discover homes marketed privately with Compass. + - generic: Explore the private listings available in this snapshot, or connect with an agent. + - link "See Private Exclusives": + - /url: /private-exclusives/ + - article: + - link "View Undisclosed Address": + - /url: /listing/undisclosed-address-los-angeles-ca-12555729 + - img "Undisclosed Address" + - generic: Compass Exclusive + - button "Previous image for Undisclosed Address": ‹ + - button "Next image for Undisclosed Address": › + - generic: 1/5 + - link "$1,995,000 3 beds 2 baths 1,688 sqft Undisclosed Address, Los Angeles, CA 90066": + - /url: /listing/undisclosed-address-los-angeles-ca-12555729 + - paragraph: $1,995,000 + - paragraph: + - generic: 3 beds + - generic: 2 baths + - generic: 1,688 sqft + - paragraph: Undisclosed Address, Los Angeles, CA 90066 + - link "View All Compass Exclusives": + - /url: /search?compass_exclusive=1 + - text: View All Compass Exclusives + - generic: → + - heading "Know your buying power with a preapproval and custom rate in minutes" [level=2] + - link "See What I Qualify For external website": + - /url: https://launchpad.rocketmortgage.com/?qls=COM_COMPRM26.EYQK1EJWRF&i=purchase&si=83 + - text: See What I Qualify For + - generic "external website": ↗ + - link "Rocket Mortgage ¹": + - /url: https://launchpad.rocketmortgage.com/?qls=COM_COMPRM26.EYQK1EJWRF&i=purchase&si=83 + - img "Rocket Mortgage" + - superscript: ¹ + - article: + - img "Before home improvements" + - generic: Before Concierge + - img "After home improvements" + - generic: After Concierge + - heading "Compass Concierge" [level=2] + - paragraph: Concierge helps you sell your home faster and for more money by covering the cost of home improvement services — zero due until closing.* + - generic: "*Depending on your state of residence, fees or interest may apply." + - link "Learn More": + - /url: /concierge/ + - text: Learn More + - generic: → + - heading "Find the Neighborhood For You" [level=2] + - paragraph: The neighborhoods best suited to your lifestyle, and the agents who know them best. + - link "New York City": + - /url: /neighborhood-guides/nyc/ + - generic: New York City + - link "The Hamptons": + - /url: /neighborhood-guides/hamptons/ + - generic: The Hamptons + - link "South Florida": + - /url: /neighborhood-guides/miami/ + - generic: South Florida + - link "Greater Boston": + - /url: /neighborhood-guides/boston/ + - generic: Greater Boston + - link "Southern California": + - /url: /neighborhood-guides/la/ + - generic: Southern California + - link "DC, Maryland, & Virginia": + - /url: /neighborhood-guides/dc/ + - generic: DC, Maryland, & Virginia + - link "View More Neighborhoods": + - /url: /neighborhood-guides/ + - text: View More Neighborhoods + - generic: → + - heading "Real Estate in Popular Cities" [level=2] + - paragraph: Browse listings, view photos, and connect with an agent to schedule a viewing in some of our most popular cities. + - button "Show Cities": + - text: Show Cities + - generic: + + - heading "Real Estate Markets" [level=2] + - paragraph: Find your next dream home in one of our markets. + - button "Show Markets": + - text: Show Markets + - generic: + +- contentinfo: + - button "Company": + - text: Company + - generic: + + - button "Explore" [expanded] [active]: + - text: Explore + - generic: − + - list: + - link "Concierge": + - /url: /concierge/ + - link "Private Exclusives": + - /url: /private-exclusives/ + - link "Compass Coming Soon": + - /url: /coming-soon/listings/ + - link "3-Phased Marketing Strategy external website": + - /url: https://www.compass-homeowners.com/ + - text: 3-Phased Marketing Strategy ↗ + - link "Market Outlook external website": + - /url: https://www.compass.com/research/market-outlook/ + - text: Market Outlook ↗ + - link "Compass One external website": + - /url: https://one.compass.com/ + - text: Compass One ↗ + - link "Make Me Sell external website": + - /url: https://www.compass-sell.com/ + - text: Make Me Sell ↗ + - link "Compass Luxury": + - /url: /luxury + - link "Find an Agent": + - /url: /agents + - link "Mortgage Calculator external website": + - /url: https://www.compass.com/calculators/mortgage-calculator/ + - text: Mortgage Calculator ↗ + - link "Compass Academy external website": + - /url: https://openacademy.compass.com/ + - text: Compass Academy ↗ + - link "Compass Plus external website": + - /url: https://www.compassplusseniors.com/ + - text: Compass Plus ↗ + - link "Compass Cares external website": + - /url: https://www.compass.com/compass-cares/ + - text: Compass Cares ↗ + - link "Diversity & Inclusion external website": + - /url: https://www.compass.com/diversity-inclusion/ + - text: Diversity & Inclusion ↗ + - link "Neighborhood Guides": + - /url: /neighborhood-guides/ + - link "New Development external website": + - /url: https://www.compass.com/development/ + - text: New Development ↗ + - link "Commercial external website": + - /url: https://www.compass.com/commercial/ + - text: Commercial ↗ + - link "Sports & Entertainment external website": + - /url: https://www.compass.com/se/ + - text: Sports & Entertainment ↗ + - link "Military external website": + - /url: https://compassmilitary.com/ + - text: Military ↗ + - link "Ranch and Land external website": + - /url: https://compassranchandland.com/ + - text: Ranch and Land ↗ + - link "External Suppliers Site external website": + - /url: https://www.compass-purchasing.com/ + - text: External Suppliers Site ↗ + - link "Recently Sold Homes": + - /url: /search?status=sold + - link "Sitemap": + - /url: /homes-for-sale + - heading "Mobile Apps" [level=2] + - link "Compass iOS App": + - /url: https://itunes.apple.com/app/id692766504 + - img "Compass iOS App" + - link "Compass Android App": + - /url: https://play.google.com/store/apps/details?id=com.compass.compass + - img "Compass Android App" + - link "Instagram": + - /url: https://instagram.com/compass/ + - text: ◎ + - link "Facebook": + - /url: https://facebook.com/compass/ + - text: f + - link "X": + - /url: https://x.com/compass/ + - text: 𝕏 + - paragraph: © 2026 Compass mirror — WebHarbor benchmark site. Not affiliated with Compass, Inc. Listing information is a fixed snapshot; availability may have changed. + - paragraph: Account actions, saved homes, collections and tour requests stay in this local environment. They are not sent to Compass agents. + - paragraph: Links marked ↗ open external websites. Mortgage, brokerage recruitment, new development marketing and corporate services are provided on their original websites, outside this environment. + - paragraph: COMPASS and the Compass logo are trademarks of Compass, Inc. + - paragraph: + - link "Help": + - /url: /help + - text: · + - link "About this environment": + - /url: /about \ No newline at end of file diff --git a/sites/compass/docs/visual-review/home/task17/observations/000-before.txt b/sites/compass/docs/visual-review/home/task17/observations/000-before.txt new file mode 100644 index 00000000..cb111d01 --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/observations/000-before.txt @@ -0,0 +1,174 @@ +- link "Skip to content": + - /url: "#main-content" +- banner: + - button "Open navigation": ☰ + - link "Compass": + - /url: / + - img "Compass" + - link "Register": + - /url: /register + - generic: / + - link "Sign In": + - /url: /login +- main: + - heading "Find your place" [level=1] + - search: + - group "Search type": + - generic: Search type + - radio "Buy" [checked] + - generic: Buy + - radio "Rent" + - generic: Rent + - link "Sell": + - /url: /sell/?origin=sellTab + - combobox "City, neighborhood, ZIP or address" + - button "Search": + - heading "Compass Exclusives" [level=2] + - paragraph: Be the first to browse exclusive listings before they hit the market. + - paragraph: Explore a selection from our listing snapshot. Visit each property for its recorded status and details. + - article: + - link "View 425 West 24th Street, Unit 1F": + - /url: /listing/425-west-24th-street-unit-1f-new-york-ny-47919969 + - img "425 West 24th Street, Unit 1F" + - generic: Compass Exclusive + - button "Previous image for 425 West 24th Street, Unit 1F": ‹ + - button "Next image for 425 West 24th Street, Unit 1F": › + - generic: 1/5 + - link "$1,325,000 2 beds 2 baths 1,200 sqft 425 West 24th Street, Unit 1F, New York, NY 10011": + - /url: /listing/425-west-24th-street-unit-1f-new-york-ny-47919969 + - paragraph: $1,325,000 + - paragraph: + - generic: 2 beds + - generic: 2 baths + - generic: 1,200 sqft + - paragraph: 425 West 24th Street, Unit 1F, New York, NY 10011 + - article: + - link "View 1718 Occidental Boulevard": + - /url: /listing/1718-occidental-boulevard-los-angeles-ca-11068225 + - img "1718 Occidental Boulevard" + - generic: Compass Exclusive + - button "Previous image for 1718 Occidental Boulevard": ‹ + - button "Next image for 1718 Occidental Boulevard": › + - generic: 1/5 + - link "$1,299,000 2 beds 1 baths 1,113 sqft 1718 Occidental Boulevard, Los Angeles, CA 90026": + - /url: /listing/1718-occidental-boulevard-los-angeles-ca-11068225 + - paragraph: $1,299,000 + - paragraph: + - generic: 2 beds + - generic: 1 baths + - generic: 1,113 sqft + - paragraph: 1718 Occidental Boulevard, Los Angeles, CA 90026 + - article: + - img "Compass Private Exclusives" + - paragraph: Discover homes marketed privately with Compass. + - generic: Explore the private listings available in this snapshot, or connect with an agent. + - link "See Private Exclusives": + - /url: /private-exclusives/ + - article: + - link "View Undisclosed Address": + - /url: /listing/undisclosed-address-los-angeles-ca-12555729 + - img "Undisclosed Address" + - generic: Compass Exclusive + - button "Previous image for Undisclosed Address": ‹ + - button "Next image for Undisclosed Address": › + - generic: 1/5 + - link "$1,995,000 3 beds 2 baths 1,688 sqft Undisclosed Address, Los Angeles, CA 90066": + - /url: /listing/undisclosed-address-los-angeles-ca-12555729 + - paragraph: $1,995,000 + - paragraph: + - generic: 3 beds + - generic: 2 baths + - generic: 1,688 sqft + - paragraph: Undisclosed Address, Los Angeles, CA 90066 + - link "View All Compass Exclusives": + - /url: /search?compass_exclusive=1 + - text: View All Compass Exclusives + - generic: → + - heading "Know your buying power with a preapproval and custom rate in minutes" [level=2] + - link "See What I Qualify For external website": + - /url: https://launchpad.rocketmortgage.com/?qls=COM_COMPRM26.EYQK1EJWRF&i=purchase&si=83 + - text: See What I Qualify For + - generic "external website": ↗ + - link "Rocket Mortgage ¹": + - /url: https://launchpad.rocketmortgage.com/?qls=COM_COMPRM26.EYQK1EJWRF&i=purchase&si=83 + - img "Rocket Mortgage" + - superscript: ¹ + - article: + - img "Before home improvements" + - generic: Before Concierge + - img "After home improvements" + - generic: After Concierge + - heading "Compass Concierge" [level=2] + - paragraph: Concierge helps you sell your home faster and for more money by covering the cost of home improvement services — zero due until closing.* + - generic: "*Depending on your state of residence, fees or interest may apply." + - link "Learn More": + - /url: /concierge/ + - text: Learn More + - generic: → + - heading "Find the Neighborhood For You" [level=2] + - paragraph: The neighborhoods best suited to your lifestyle, and the agents who know them best. + - link "New York City": + - /url: /neighborhood-guides/nyc/ + - generic: New York City + - link "The Hamptons": + - /url: /neighborhood-guides/hamptons/ + - generic: The Hamptons + - link "South Florida": + - /url: /neighborhood-guides/miami/ + - generic: South Florida + - link "Greater Boston": + - /url: /neighborhood-guides/boston/ + - generic: Greater Boston + - link "Southern California": + - /url: /neighborhood-guides/la/ + - generic: Southern California + - link "DC, Maryland, & Virginia": + - /url: /neighborhood-guides/dc/ + - generic: DC, Maryland, & Virginia + - link "View More Neighborhoods": + - /url: /neighborhood-guides/ + - text: View More Neighborhoods + - generic: → + - heading "Real Estate in Popular Cities" [level=2] + - paragraph: Browse listings, view photos, and connect with an agent to schedule a viewing in some of our most popular cities. + - button "Show Cities": + - text: Show Cities + - generic: + + - heading "Real Estate Markets" [level=2] + - paragraph: Find your next dream home in one of our markets. + - button "Show Markets": + - text: Show Markets + - generic: + +- contentinfo: + - button "Company": + - text: Company + - generic: + + - button "Explore": + - text: Explore + - generic: + + - heading "Mobile Apps" [level=2] + - link "Compass iOS App": + - /url: https://itunes.apple.com/app/id692766504 + - img "Compass iOS App" + - link "Compass Android App": + - /url: https://play.google.com/store/apps/details?id=com.compass.compass + - img "Compass Android App" + - link "Instagram": + - /url: https://instagram.com/compass/ + - text: ◎ + - link "Facebook": + - /url: https://facebook.com/compass/ + - text: f + - link "X": + - /url: https://x.com/compass/ + - text: 𝕏 + - paragraph: © 2026 Compass mirror — WebHarbor benchmark site. Not affiliated with Compass, Inc. Listing information is a fixed snapshot; availability may have changed. + - paragraph: Account actions, saved homes, collections and tour requests stay in this local environment. They are not sent to Compass agents. + - paragraph: Links marked ↗ open external websites. Mortgage, brokerage recruitment, new development marketing and corporate services are provided on their original websites, outside this environment. + - paragraph: COMPASS and the Compass logo are trademarks of Compass, Inc. + - paragraph: + - link "Help": + - /url: /help + - text: · + - link "About this environment": + - /url: /about \ No newline at end of file diff --git a/sites/compass/docs/visual-review/home/task17/observations/001-after.txt b/sites/compass/docs/visual-review/home/task17/observations/001-after.txt new file mode 100644 index 00000000..76670b91 --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/observations/001-after.txt @@ -0,0 +1,378 @@ +- link "Skip to content": + - /url: "#main-content" +- banner: + - button "Open navigation": ☰ + - link "Compass": + - /url: / + - img "Compass" + - link "Register": + - /url: /register + - generic: / + - link "Sign In": + - /url: /login +- main: + - heading "Compass Luxury" [level=1] + - paragraph: Exceptional homes from the world's most desirable markets. + - link "41 Popcorn Lane $49,900,000 5 beds 9 baths 14,960 sqft 41 Popcorn Lane, Aspen, CO 81611": + - /url: /listing/41-popcorn-lane-aspen-co-87132233 + - img "41 Popcorn Lane" + - generic: $49,900,000 + - generic: 5 beds + - generic: 9 baths + - generic: 14,960 sqft + - generic: 41 Popcorn Lane, Aspen, CO 81611 + - link "Pending 864 Moore Drive $39,500,000 7 beds 9 baths 10,615 sqft 864 Moore Drive, Aspen, CO 81611": + - /url: /listing/864-moore-drive-aspen-co-64367481 + - generic: Pending + - img "864 Moore Drive" + - generic: $39,500,000 + - generic: 7 beds + - generic: 9 baths + - generic: 10,615 sqft + - generic: 864 Moore Drive, Aspen, CO 81611 + - link "1162 Tiehack Road $38,500,000 6 beds 7.5 baths 7,811 sqft 1162 Tiehack Road, Aspen, CO 81611": + - /url: /listing/1162-tiehack-road-aspen-co-58693761 + - img "1162 Tiehack Road" + - generic: $38,500,000 + - generic: 6 beds + - generic: 7.5 baths + - generic: 7,811 sqft + - generic: 1162 Tiehack Road, Aspen, CO 81611 + - link "100 Difficult Lane $25,900,000 3 beds 4 baths 2,795 sqft 100 Difficult Lane, Aspen, CO 81611": + - /url: /listing/100-difficult-lane-aspen-co-46556249 + - img "100 Difficult Lane" + - generic: $25,900,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,795 sqft + - generic: 100 Difficult Lane, Aspen, CO 81611 + - link "825 East Cooper Avenue $24,995,000 4 beds 4 baths 3,613 sqft 825 East Cooper Avenue, Aspen, CO 81611": + - /url: /listing/825-east-cooper-avenue-aspen-co-53959097 + - img "825 East Cooper Avenue" + - generic: $24,995,000 + - generic: 4 beds + - generic: 4 baths + - generic: 3,613 sqft + - generic: 825 East Cooper Avenue, Aspen, CO 81611 + - link "830 East Durant Avenue $24,950,000 4 beds 4 baths 4,005 sqft 830 East Durant Avenue, Aspen, CO 81611": + - /url: /listing/830-east-durant-avenue-aspen-co-39990729 + - img "830 East Durant Avenue" + - generic: $24,950,000 + - generic: 4 beds + - generic: 4 baths + - generic: 4,005 sqft + - generic: 830 East Durant Avenue, Aspen, CO 81611 + - link "1220 Red Butte Drive $22,950,000 5 beds 5.5 baths 5,872 sqft 1220 Red Butte Drive, Aspen, CO 81611": + - /url: /listing/1220-red-butte-drive-aspen-co-21093121 + - img "1220 Red Butte Drive" + - generic: $22,950,000 + - generic: 5 beds + - generic: 5.5 baths + - generic: 5,872 sqft + - generic: 1220 Red Butte Drive, Aspen, CO 81611 + - link "Pending 150 Charles Street, Unit M10 $21,500,000 4 beds 4.5 baths 5,612 sqft 150 Charles Street, Unit M10, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-m10-new-york-ny-81286569 + - generic: Pending + - img "150 Charles Street, Unit M10" + - generic: $21,500,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 5,612 sqft + - generic: 150 Charles Street, Unit M10, Manhattan, NY 10014 + - link "155 Nighthawk Drive $18,950,000 6 beds 8 baths 5,392 sqft 155 Nighthawk Drive, Aspen, CO 81612": + - /url: /listing/155-nighthawk-drive-aspen-co-93831713 + - img "155 Nighthawk Drive" + - generic: $18,950,000 + - generic: 6 beds + - generic: 8 baths + - generic: 5,392 sqft + - generic: 155 Nighthawk Drive, Aspen, CO 81612 + - link "825 Ute Avenue, Unit A $18,450,000 4 beds 5 baths 3,771 sqft 825 Ute Avenue, Unit A, Aspen, CO 81611": + - /url: /listing/825-ute-avenue-unit-a-aspen-co-50257457 + - img "825 Ute Avenue, Unit A" + - generic: $18,450,000 + - generic: 4 beds + - generic: 5 baths + - generic: 3,771 sqft + - generic: 825 Ute Avenue, Unit A, Aspen, CO 81611 + - link "605 West Bleeker Street $18,450,000 4 beds 5.5 baths 4,314 sqft 605 West Bleeker Street, Aspen, CO 81611": + - /url: /listing/605-west-bleeker-street-aspen-co-48223185 + - img "605 West Bleeker Street" + - generic: $18,450,000 + - generic: 4 beds + - generic: 5.5 baths + - generic: 4,314 sqft + - generic: 605 West Bleeker Street, Aspen, CO 81611 + - link "Compass Exclusive 2655 South Bayshore Drive, Unit 1801/02 $15,750,000 6 beds 7 baths 5,353 sqft 2655 South Bayshore Drive, Unit 1801/02, Miami, FL 33133": + - /url: /listing/2655-south-bayshore-drive-unit-1801-02-miami-fl-32879425 + - generic: Compass Exclusive + - img "2655 South Bayshore Drive, Unit 1801/02" + - generic: $15,750,000 + - generic: 6 beds + - generic: 7 baths + - generic: 5,353 sqft + - generic: 2655 South Bayshore Drive, Unit 1801/02, Miami, FL 33133 + - link "Pending 190 West Lupine Drive $14,995,000 5 beds 6 baths 5,470 sqft 190 West Lupine Drive, Aspen, CO 81611": + - /url: /listing/190-west-lupine-drive-aspen-co-82072873 + - generic: Pending + - img "190 West Lupine Drive" + - generic: $14,995,000 + - generic: 5 beds + - generic: 6 baths + - generic: 5,470 sqft + - generic: 190 West Lupine Drive, Aspen, CO 81611 + - link "199 Caoba Court $13,995,000 5 beds 6.5 baths 5,342 sqft 199 Caoba Court, Coral Gables, FL 33143": + - /url: /listing/199-caoba-court-miami-fl-22699249 + - img "199 Caoba Court" + - generic: $13,995,000 + - generic: 5 beds + - generic: 6.5 baths + - generic: 5,342 sqft + - generic: 199 Caoba Court, Coral Gables, FL 33143 + - link "Compass Exclusive 1425 Brickell Avenue, Unit 42F $11,750,000 3 beds 4.5 baths 3,913 sqft 1425 Brickell Avenue, Unit 42F, Miami, FL 33131": + - /url: /listing/1425-brickell-avenue-unit-42f-miami-fl-85366897 + - generic: Compass Exclusive + - img "1425 Brickell Avenue, Unit 42F" + - generic: $11,750,000 + - generic: 3 beds + - generic: 4.5 baths + - generic: 3,913 sqft + - generic: 1425 Brickell Avenue, Unit 42F, Miami, FL 33131 + - link "1038 Owl Creek Road $10,995,000 4 beds 4 baths 5,047 sqft 1038 Owl Creek Road, Aspen, CO 81611": + - /url: /listing/1038-owl-creek-road-aspen-co-75064801 + - img "1038 Owl Creek Road" + - generic: $10,995,000 + - generic: 4 beds + - generic: 4 baths + - generic: 5,047 sqft + - generic: 1038 Owl Creek Road, Aspen, CO 81611 + - link "1395 Sierra Vista Drive, Unit 1 $10,995,000 4 beds 5 baths 4,390 sqft 1395 Sierra Vista Drive, Unit 1, Aspen, CO 81611": + - /url: /listing/1395-sierra-vista-drive-unit-1-aspen-co-22259585 + - img "1395 Sierra Vista Drive, Unit 1" + - generic: $10,995,000 + - generic: 4 beds + - generic: 5 baths + - generic: 4,390 sqft + - generic: 1395 Sierra Vista Drive, Unit 1, Aspen, CO 81611 + - link "42703 Highway 82, Unit B $10,950,000 5 beds 5.5 baths 4,154 sqft 42703 Highway 82, Unit B, Aspen, CO 81611": + - /url: /listing/42703-highway-82-unit-b-aspen-co-90959137 + - img "42703 Highway 82, Unit B" + - generic: $10,950,000 + - generic: 5 beds + - generic: 5.5 baths + - generic: 4,154 sqft + - generic: 42703 Highway 82, Unit B, Aspen, CO 81611 + - link "787 Carroll Street $10,250,000 5 beds 4 baths 6,664 sqft 787 Carroll Street, New York, NY 11215": + - /url: /listing/787-carroll-street-new-york-ny-07909369 + - img "787 Carroll Street" + - generic: $10,250,000 + - generic: 5 beds + - generic: 4 baths + - generic: 6,664 sqft + - generic: 787 Carroll Street, New York, NY 11215 + - link "479 Henry Street $9,950,000 5 beds 4 baths 4,800 sqft 479 Henry Street, New York, NY 11231": + - /url: /listing/479-henry-street-new-york-ny-19847793 + - img "479 Henry Street" + - generic: $9,950,000 + - generic: 5 beds + - generic: 4 baths + - generic: 4,800 sqft + - generic: 479 Henry Street, New York, NY 11231 + - link "1201 Northeast 83rd Street $9,800,000 10 beds 10 baths 8,573 sqft 1201 Northeast 83rd Street, Miami, FL 33138": + - /url: /listing/1201-northeast-83rd-street-miami-fl-86057233 + - img "1201 Northeast 83rd Street" + - generic: $9,800,000 + - generic: 10 beds + - generic: 10 baths + - generic: 8,573 sqft + - generic: 1201 Northeast 83rd Street, Miami, FL 33138 + - link "Pending 150 Charles Street, Unit 3AS $8,995,000 3 beds 3.5 baths 2,461 sqft 150 Charles Street, Unit 3AS, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-3as-new-york-ny-85442145 + - generic: Pending + - img "150 Charles Street, Unit 3AS" + - generic: $8,995,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 2,461 sqft + - generic: 150 Charles Street, Unit 3AS, Manhattan, NY 10014 + - link "Compass Exclusive Undisclosed Address $8,995,000 5 beds 7 baths 6,069 sqft Undisclosed Address, Los Angeles, CA 90004": + - /url: /listing/undisclosed-address-los-angeles-ca-01703001 + - generic: Compass Exclusive + - img "Undisclosed Address" + - generic: $8,995,000 + - generic: 5 beds + - generic: 7 baths + - generic: 6,069 sqft + - generic: Undisclosed Address, Los Angeles, CA 90004 + - link "Compass Exclusive 248 North Glenroy Avenue $8,995,000 5 beds 6 baths 4,899 sqft 248 North Glenroy Avenue, Los Angeles, CA 90049": + - /url: /listing/248-north-glenroy-avenue-los-angeles-ca-38580513 + - generic: Compass Exclusive + - img "248 North Glenroy Avenue" + - generic: $8,995,000 + - generic: 5 beds + - generic: 6 baths + - generic: 4,899 sqft + - generic: 248 North Glenroy Avenue, Los Angeles, CA 90049 + - link "Compass Exclusive 1330-1332 Greenwich Street $8,995,000 5 beds 6 baths 4,447 sqft 1330-1332 Greenwich Street, San Francisco, CA 94109": + - /url: /listing/1330-1332-greenwich-street-san-francisco-ca-46862593 + - generic: Compass Exclusive + - img "1330-1332 Greenwich Street" + - generic: $8,995,000 + - generic: 5 beds + - generic: 6 baths + - generic: 4,447 sqft + - generic: 1330-1332 Greenwich Street, San Francisco, CA 94109 + - link "Compass Exclusive 229 Ridgewood Road $8,888,000 6 beds 7 baths 5,437 sqft 229 Ridgewood Road, Miami, FL 33133": + - /url: /listing/229-ridgewood-road-miami-fl-81418745 + - generic: Compass Exclusive + - img "229 Ridgewood Road" + - generic: $8,888,000 + - generic: 6 beds + - generic: 7 baths + - generic: 5,437 sqft + - generic: 229 Ridgewood Road, Miami, FL 33133 + - link "730 Twining Flats Road $8,500,000 3 beds 3.5 baths 4,992 sqft 730 Twining Flats Road, Aspen, CO 81611": + - /url: /listing/730-twining-flats-road-aspen-co-70769025 + - img "730 Twining Flats Road" + - generic: $8,500,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 4,992 sqft + - generic: 730 Twining Flats Road, Aspen, CO 81611 + - link "Compass Exclusive 6716 San Vicente Street $8,250,000 6 beds — baths — sqft 6716 San Vicente Street, Miami, FL 33146": + - /url: /listing/6716-san-vicente-street-miami-fl-45424521 + - generic: Compass Exclusive + - img "6716 San Vicente Street" + - generic: $8,250,000 + - generic: 6 beds + - generic: — baths + - generic: — sqft + - generic: 6716 San Vicente Street, Miami, FL 33146 + - link "Compass Exclusive 1698 Tigertail Avenue $7,950,000 6 beds 7 baths 5,300 sqft 1698 Tigertail Avenue, Miami, FL 33133": + - /url: /listing/1698-tigertail-avenue-miami-fl-36067401 + - generic: Compass Exclusive + - img "1698 Tigertail Avenue" + - generic: $7,950,000 + - generic: 6 beds + - generic: 7 baths + - generic: 5,300 sqft + - generic: 1698 Tigertail Avenue, Miami, FL 33133 + - link "Compass Exclusive Rockwell Island $6,532,000 6 beds 0 baths 6,501 sqft Rockwell Island, Miami, FL 33133": + - /url: /listing/rockwell-island-miami-fl-97872137 + - generic: Compass Exclusive + - img "Rockwell Island" + - generic: $6,532,000 + - generic: 6 beds + - generic: 0 baths + - generic: 6,501 sqft + - generic: Rockwell Island, Miami, FL 33133 + - link "115 Spring Street, Unit 2 $6,500,000 3 beds 3 baths — sqft 115 Spring Street, Unit 2, New York, NY 10012": + - /url: /listing/115-spring-street-unit-2-new-york-ny-38846297 + - img "115 Spring Street, Unit 2" + - generic: $6,500,000 + - generic: 3 beds + - generic: 3 baths + - generic: — sqft + - generic: 115 Spring Street, Unit 2, New York, NY 10012 + - link "2006 Mountain View Road $6,499,000 7 beds 7.5 baths 5,370 sqft 2006 Mountain View Road, Austin, TX 78703": + - /url: /listing/2006-mountain-view-road-austin-tx-18989937 + - img "2006 Mountain View Road" + - generic: $6,499,000 + - generic: 7 beds + - generic: 7.5 baths + - generic: 5,370 sqft + - generic: 2006 Mountain View Road, Austin, TX 78703 + - link "Compass Exclusive 3770-3792 Kumquat Avenue $6,495,000 5 beds 6 baths 3,875 sqft 3770-3792 Kumquat Avenue, Miami, FL 33133": + - /url: /listing/3770-3792-kumquat-avenue-miami-fl-58538897 + - generic: Compass Exclusive + - img "3770-3792 Kumquat Avenue" + - generic: $6,495,000 + - generic: 5 beds + - generic: 6 baths + - generic: 3,875 sqft + - generic: 3770-3792 Kumquat Avenue, Miami, FL 33133 + - link "Compass Exclusive 281 Newbury Street $6,000,000 8 beds 7 baths 5,510 sqft 281 Newbury Street, Boston, MA 02115": + - /url: /listing/281-newbury-street-boston-ma-80593441 + - generic: Compass Exclusive + - img "281 Newbury Street" + - generic: $6,000,000 + - generic: 8 beds + - generic: 7 baths + - generic: 5,510 sqft + - generic: 281 Newbury Street, Boston, MA 02115 + - link "Compass Exclusive 415 Buena Vista Avenue East $5,950,000 5 beds 4.5 baths — sqft 415 Buena Vista Avenue East, San Francisco, CA 94117": + - /url: /listing/415-buena-vista-avenue-east-san-francisco-ca-96660801 + - generic: Compass Exclusive + - img "415 Buena Vista Avenue East" + - generic: $5,950,000 + - generic: 5 beds + - generic: 4.5 baths + - generic: — sqft + - generic: 415 Buena Vista Avenue East, San Francisco, CA 94117 + - link "88 Southwest 7th Street, Unit PH4303 $5,799,900 3 beds 4.5 baths 3,115 sqft 88 Southwest 7th Street, Unit PH4303, Miami, FL 33130": + - /url: /listing/88-southwest-7th-street-unit-ph4303-miami-fl-12289809 + - img "88 Southwest 7th Street, Unit PH4303" + - generic: $5,799,900 + - generic: 3 beds + - generic: 4.5 baths + - generic: 3,115 sqft + - generic: 88 Southwest 7th Street, Unit PH4303, Miami, FL 33130 + - link "Compass Exclusive Walnut Street $5,500,000 6 beds 5 baths 4,300 sqft Walnut Street, San Francisco, CA 94118": + - /url: /listing/walnut-street-san-francisco-ca-05333337 + - generic: Compass Exclusive + - img "Walnut Street" + - generic: $5,500,000 + - generic: 6 beds + - generic: 5 baths + - generic: 4,300 sqft + - generic: Walnut Street, San Francisco, CA 94118 + - link "McLain Flats $5,450,000 — beds 0 baths — sqft McLain Flats, Aspen, CO 81612": + - /url: /listing/mclain-flats-aspen-co-24827361 + - img "McLain Flats" + - generic: $5,450,000 + - generic: — beds + - generic: 0 baths + - generic: — sqft + - generic: McLain Flats, Aspen, CO 81612 + - link "Compass Exclusive Rockwell Island $5,000,000 4 beds 4.5 baths 4,588 sqft Rockwell Island, Miami, FL 33133": + - /url: /listing/rockwell-island-miami-fl-94376561 + - generic: Compass Exclusive + - img "Rockwell Island" + - generic: $5,000,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 4,588 sqft + - generic: Rockwell Island, Miami, FL 33133 +- contentinfo: + - button "Company": + - text: Company + - generic: + + - button "Explore": + - text: Explore + - generic: + + - heading "Mobile Apps" [level=2] + - link "Compass iOS App": + - /url: https://itunes.apple.com/app/id692766504 + - img "Compass iOS App" + - link "Compass Android App": + - /url: https://play.google.com/store/apps/details?id=com.compass.compass + - img "Compass Android App" + - link "Instagram": + - /url: https://instagram.com/compass/ + - text: ◎ + - link "Facebook": + - /url: https://facebook.com/compass/ + - text: f + - link "X": + - /url: https://x.com/compass/ + - text: 𝕏 + - paragraph: © 2026 Compass mirror — WebHarbor benchmark site. Not affiliated with Compass, Inc. Listing information is a fixed snapshot; availability may have changed. + - paragraph: Account actions, saved homes, collections and tour requests stay in this local environment. They are not sent to Compass agents. + - paragraph: Links marked ↗ open external websites. Mortgage, brokerage recruitment, new development marketing and corporate services are provided on their original websites, outside this environment. + - paragraph: COMPASS and the Compass logo are trademarks of Compass, Inc. + - paragraph: + - link "Help": + - /url: /help + - text: · + - link "About this environment": + - /url: /about \ No newline at end of file diff --git a/sites/compass/docs/visual-review/home/task17/observations/001-before.txt b/sites/compass/docs/visual-review/home/task17/observations/001-before.txt new file mode 100644 index 00000000..5206c111 --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/observations/001-before.txt @@ -0,0 +1,236 @@ +- link "Skip to content": + - /url: "#main-content" +- banner: + - button "Open navigation": ☰ + - link "Compass": + - /url: / + - img "Compass" + - link "Register": + - /url: /register + - generic: / + - link "Sign In": + - /url: /login +- main: + - heading "Find your place" [level=1] + - search: + - group "Search type": + - generic: Search type + - radio "Buy" [checked] + - generic: Buy + - radio "Rent" + - generic: Rent + - link "Sell": + - /url: /sell/?origin=sellTab + - combobox "City, neighborhood, ZIP or address" + - button "Search": + - heading "Compass Exclusives" [level=2] + - paragraph: Be the first to browse exclusive listings before they hit the market. + - paragraph: Explore a selection from our listing snapshot. Visit each property for its recorded status and details. + - article: + - link "View 425 West 24th Street, Unit 1F": + - /url: /listing/425-west-24th-street-unit-1f-new-york-ny-47919969 + - img "425 West 24th Street, Unit 1F" + - generic: Compass Exclusive + - button "Previous image for 425 West 24th Street, Unit 1F": ‹ + - button "Next image for 425 West 24th Street, Unit 1F": › + - generic: 1/5 + - link "$1,325,000 2 beds 2 baths 1,200 sqft 425 West 24th Street, Unit 1F, New York, NY 10011": + - /url: /listing/425-west-24th-street-unit-1f-new-york-ny-47919969 + - paragraph: $1,325,000 + - paragraph: + - generic: 2 beds + - generic: 2 baths + - generic: 1,200 sqft + - paragraph: 425 West 24th Street, Unit 1F, New York, NY 10011 + - article: + - link "View 1718 Occidental Boulevard": + - /url: /listing/1718-occidental-boulevard-los-angeles-ca-11068225 + - img "1718 Occidental Boulevard" + - generic: Compass Exclusive + - button "Previous image for 1718 Occidental Boulevard": ‹ + - button "Next image for 1718 Occidental Boulevard": › + - generic: 1/5 + - link "$1,299,000 2 beds 1 baths 1,113 sqft 1718 Occidental Boulevard, Los Angeles, CA 90026": + - /url: /listing/1718-occidental-boulevard-los-angeles-ca-11068225 + - paragraph: $1,299,000 + - paragraph: + - generic: 2 beds + - generic: 1 baths + - generic: 1,113 sqft + - paragraph: 1718 Occidental Boulevard, Los Angeles, CA 90026 + - article: + - img "Compass Private Exclusives" + - paragraph: Discover homes marketed privately with Compass. + - generic: Explore the private listings available in this snapshot, or connect with an agent. + - link "See Private Exclusives": + - /url: /private-exclusives/ + - article: + - link "View Undisclosed Address": + - /url: /listing/undisclosed-address-los-angeles-ca-12555729 + - img "Undisclosed Address" + - generic: Compass Exclusive + - button "Previous image for Undisclosed Address": ‹ + - button "Next image for Undisclosed Address": › + - generic: 1/5 + - link "$1,995,000 3 beds 2 baths 1,688 sqft Undisclosed Address, Los Angeles, CA 90066": + - /url: /listing/undisclosed-address-los-angeles-ca-12555729 + - paragraph: $1,995,000 + - paragraph: + - generic: 3 beds + - generic: 2 baths + - generic: 1,688 sqft + - paragraph: Undisclosed Address, Los Angeles, CA 90066 + - link "View All Compass Exclusives": + - /url: /search?compass_exclusive=1 + - text: View All Compass Exclusives + - generic: → + - heading "Know your buying power with a preapproval and custom rate in minutes" [level=2] + - link "See What I Qualify For external website": + - /url: https://launchpad.rocketmortgage.com/?qls=COM_COMPRM26.EYQK1EJWRF&i=purchase&si=83 + - text: See What I Qualify For + - generic "external website": ↗ + - link "Rocket Mortgage ¹": + - /url: https://launchpad.rocketmortgage.com/?qls=COM_COMPRM26.EYQK1EJWRF&i=purchase&si=83 + - img "Rocket Mortgage" + - superscript: ¹ + - article: + - img "Before home improvements" + - generic: Before Concierge + - img "After home improvements" + - generic: After Concierge + - heading "Compass Concierge" [level=2] + - paragraph: Concierge helps you sell your home faster and for more money by covering the cost of home improvement services — zero due until closing.* + - generic: "*Depending on your state of residence, fees or interest may apply." + - link "Learn More": + - /url: /concierge/ + - text: Learn More + - generic: → + - heading "Find the Neighborhood For You" [level=2] + - paragraph: The neighborhoods best suited to your lifestyle, and the agents who know them best. + - link "New York City": + - /url: /neighborhood-guides/nyc/ + - generic: New York City + - link "The Hamptons": + - /url: /neighborhood-guides/hamptons/ + - generic: The Hamptons + - link "South Florida": + - /url: /neighborhood-guides/miami/ + - generic: South Florida + - link "Greater Boston": + - /url: /neighborhood-guides/boston/ + - generic: Greater Boston + - link "Southern California": + - /url: /neighborhood-guides/la/ + - generic: Southern California + - link "DC, Maryland, & Virginia": + - /url: /neighborhood-guides/dc/ + - generic: DC, Maryland, & Virginia + - link "View More Neighborhoods": + - /url: /neighborhood-guides/ + - text: View More Neighborhoods + - generic: → + - heading "Real Estate in Popular Cities" [level=2] + - paragraph: Browse listings, view photos, and connect with an agent to schedule a viewing in some of our most popular cities. + - button "Show Cities": + - text: Show Cities + - generic: + + - heading "Real Estate Markets" [level=2] + - paragraph: Find your next dream home in one of our markets. + - button "Show Markets": + - text: Show Markets + - generic: + +- contentinfo: + - button "Company": + - text: Company + - generic: + + - button "Explore" [expanded] [active]: + - text: Explore + - generic: − + - list: + - link "Concierge": + - /url: /concierge/ + - link "Private Exclusives": + - /url: /private-exclusives/ + - link "Compass Coming Soon": + - /url: /coming-soon/listings/ + - link "3-Phased Marketing Strategy external website": + - /url: https://www.compass-homeowners.com/ + - text: 3-Phased Marketing Strategy ↗ + - link "Market Outlook external website": + - /url: https://www.compass.com/research/market-outlook/ + - text: Market Outlook ↗ + - link "Compass One external website": + - /url: https://one.compass.com/ + - text: Compass One ↗ + - link "Make Me Sell external website": + - /url: https://www.compass-sell.com/ + - text: Make Me Sell ↗ + - link "Compass Luxury": + - /url: /luxury + - link "Find an Agent": + - /url: /agents + - link "Mortgage Calculator external website": + - /url: https://www.compass.com/calculators/mortgage-calculator/ + - text: Mortgage Calculator ↗ + - link "Compass Academy external website": + - /url: https://openacademy.compass.com/ + - text: Compass Academy ↗ + - link "Compass Plus external website": + - /url: https://www.compassplusseniors.com/ + - text: Compass Plus ↗ + - link "Compass Cares external website": + - /url: https://www.compass.com/compass-cares/ + - text: Compass Cares ↗ + - link "Diversity & Inclusion external website": + - /url: https://www.compass.com/diversity-inclusion/ + - text: Diversity & Inclusion ↗ + - link "Neighborhood Guides": + - /url: /neighborhood-guides/ + - link "New Development external website": + - /url: https://www.compass.com/development/ + - text: New Development ↗ + - link "Commercial external website": + - /url: https://www.compass.com/commercial/ + - text: Commercial ↗ + - link "Sports & Entertainment external website": + - /url: https://www.compass.com/se/ + - text: Sports & Entertainment ↗ + - link "Military external website": + - /url: https://compassmilitary.com/ + - text: Military ↗ + - link "Ranch and Land external website": + - /url: https://compassranchandland.com/ + - text: Ranch and Land ↗ + - link "External Suppliers Site external website": + - /url: https://www.compass-purchasing.com/ + - text: External Suppliers Site ↗ + - link "Recently Sold Homes": + - /url: /search?status=sold + - link "Sitemap": + - /url: /homes-for-sale + - heading "Mobile Apps" [level=2] + - link "Compass iOS App": + - /url: https://itunes.apple.com/app/id692766504 + - img "Compass iOS App" + - link "Compass Android App": + - /url: https://play.google.com/store/apps/details?id=com.compass.compass + - img "Compass Android App" + - link "Instagram": + - /url: https://instagram.com/compass/ + - text: ◎ + - link "Facebook": + - /url: https://facebook.com/compass/ + - text: f + - link "X": + - /url: https://x.com/compass/ + - text: 𝕏 + - paragraph: © 2026 Compass mirror — WebHarbor benchmark site. Not affiliated with Compass, Inc. Listing information is a fixed snapshot; availability may have changed. + - paragraph: Account actions, saved homes, collections and tour requests stay in this local environment. They are not sent to Compass agents. + - paragraph: Links marked ↗ open external websites. Mortgage, brokerage recruitment, new development marketing and corporate services are provided on their original websites, outside this environment. + - paragraph: COMPASS and the Compass logo are trademarks of Compass, Inc. + - paragraph: + - link "Help": + - /url: /help + - text: · + - link "About this environment": + - /url: /about \ No newline at end of file diff --git a/sites/compass/docs/visual-review/home/task17/observations/002-after.txt b/sites/compass/docs/visual-review/home/task17/observations/002-after.txt new file mode 100644 index 00000000..cb111d01 --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/observations/002-after.txt @@ -0,0 +1,174 @@ +- link "Skip to content": + - /url: "#main-content" +- banner: + - button "Open navigation": ☰ + - link "Compass": + - /url: / + - img "Compass" + - link "Register": + - /url: /register + - generic: / + - link "Sign In": + - /url: /login +- main: + - heading "Find your place" [level=1] + - search: + - group "Search type": + - generic: Search type + - radio "Buy" [checked] + - generic: Buy + - radio "Rent" + - generic: Rent + - link "Sell": + - /url: /sell/?origin=sellTab + - combobox "City, neighborhood, ZIP or address" + - button "Search": + - heading "Compass Exclusives" [level=2] + - paragraph: Be the first to browse exclusive listings before they hit the market. + - paragraph: Explore a selection from our listing snapshot. Visit each property for its recorded status and details. + - article: + - link "View 425 West 24th Street, Unit 1F": + - /url: /listing/425-west-24th-street-unit-1f-new-york-ny-47919969 + - img "425 West 24th Street, Unit 1F" + - generic: Compass Exclusive + - button "Previous image for 425 West 24th Street, Unit 1F": ‹ + - button "Next image for 425 West 24th Street, Unit 1F": › + - generic: 1/5 + - link "$1,325,000 2 beds 2 baths 1,200 sqft 425 West 24th Street, Unit 1F, New York, NY 10011": + - /url: /listing/425-west-24th-street-unit-1f-new-york-ny-47919969 + - paragraph: $1,325,000 + - paragraph: + - generic: 2 beds + - generic: 2 baths + - generic: 1,200 sqft + - paragraph: 425 West 24th Street, Unit 1F, New York, NY 10011 + - article: + - link "View 1718 Occidental Boulevard": + - /url: /listing/1718-occidental-boulevard-los-angeles-ca-11068225 + - img "1718 Occidental Boulevard" + - generic: Compass Exclusive + - button "Previous image for 1718 Occidental Boulevard": ‹ + - button "Next image for 1718 Occidental Boulevard": › + - generic: 1/5 + - link "$1,299,000 2 beds 1 baths 1,113 sqft 1718 Occidental Boulevard, Los Angeles, CA 90026": + - /url: /listing/1718-occidental-boulevard-los-angeles-ca-11068225 + - paragraph: $1,299,000 + - paragraph: + - generic: 2 beds + - generic: 1 baths + - generic: 1,113 sqft + - paragraph: 1718 Occidental Boulevard, Los Angeles, CA 90026 + - article: + - img "Compass Private Exclusives" + - paragraph: Discover homes marketed privately with Compass. + - generic: Explore the private listings available in this snapshot, or connect with an agent. + - link "See Private Exclusives": + - /url: /private-exclusives/ + - article: + - link "View Undisclosed Address": + - /url: /listing/undisclosed-address-los-angeles-ca-12555729 + - img "Undisclosed Address" + - generic: Compass Exclusive + - button "Previous image for Undisclosed Address": ‹ + - button "Next image for Undisclosed Address": › + - generic: 1/5 + - link "$1,995,000 3 beds 2 baths 1,688 sqft Undisclosed Address, Los Angeles, CA 90066": + - /url: /listing/undisclosed-address-los-angeles-ca-12555729 + - paragraph: $1,995,000 + - paragraph: + - generic: 3 beds + - generic: 2 baths + - generic: 1,688 sqft + - paragraph: Undisclosed Address, Los Angeles, CA 90066 + - link "View All Compass Exclusives": + - /url: /search?compass_exclusive=1 + - text: View All Compass Exclusives + - generic: → + - heading "Know your buying power with a preapproval and custom rate in minutes" [level=2] + - link "See What I Qualify For external website": + - /url: https://launchpad.rocketmortgage.com/?qls=COM_COMPRM26.EYQK1EJWRF&i=purchase&si=83 + - text: See What I Qualify For + - generic "external website": ↗ + - link "Rocket Mortgage ¹": + - /url: https://launchpad.rocketmortgage.com/?qls=COM_COMPRM26.EYQK1EJWRF&i=purchase&si=83 + - img "Rocket Mortgage" + - superscript: ¹ + - article: + - img "Before home improvements" + - generic: Before Concierge + - img "After home improvements" + - generic: After Concierge + - heading "Compass Concierge" [level=2] + - paragraph: Concierge helps you sell your home faster and for more money by covering the cost of home improvement services — zero due until closing.* + - generic: "*Depending on your state of residence, fees or interest may apply." + - link "Learn More": + - /url: /concierge/ + - text: Learn More + - generic: → + - heading "Find the Neighborhood For You" [level=2] + - paragraph: The neighborhoods best suited to your lifestyle, and the agents who know them best. + - link "New York City": + - /url: /neighborhood-guides/nyc/ + - generic: New York City + - link "The Hamptons": + - /url: /neighborhood-guides/hamptons/ + - generic: The Hamptons + - link "South Florida": + - /url: /neighborhood-guides/miami/ + - generic: South Florida + - link "Greater Boston": + - /url: /neighborhood-guides/boston/ + - generic: Greater Boston + - link "Southern California": + - /url: /neighborhood-guides/la/ + - generic: Southern California + - link "DC, Maryland, & Virginia": + - /url: /neighborhood-guides/dc/ + - generic: DC, Maryland, & Virginia + - link "View More Neighborhoods": + - /url: /neighborhood-guides/ + - text: View More Neighborhoods + - generic: → + - heading "Real Estate in Popular Cities" [level=2] + - paragraph: Browse listings, view photos, and connect with an agent to schedule a viewing in some of our most popular cities. + - button "Show Cities": + - text: Show Cities + - generic: + + - heading "Real Estate Markets" [level=2] + - paragraph: Find your next dream home in one of our markets. + - button "Show Markets": + - text: Show Markets + - generic: + +- contentinfo: + - button "Company": + - text: Company + - generic: + + - button "Explore": + - text: Explore + - generic: + + - heading "Mobile Apps" [level=2] + - link "Compass iOS App": + - /url: https://itunes.apple.com/app/id692766504 + - img "Compass iOS App" + - link "Compass Android App": + - /url: https://play.google.com/store/apps/details?id=com.compass.compass + - img "Compass Android App" + - link "Instagram": + - /url: https://instagram.com/compass/ + - text: ◎ + - link "Facebook": + - /url: https://facebook.com/compass/ + - text: f + - link "X": + - /url: https://x.com/compass/ + - text: 𝕏 + - paragraph: © 2026 Compass mirror — WebHarbor benchmark site. Not affiliated with Compass, Inc. Listing information is a fixed snapshot; availability may have changed. + - paragraph: Account actions, saved homes, collections and tour requests stay in this local environment. They are not sent to Compass agents. + - paragraph: Links marked ↗ open external websites. Mortgage, brokerage recruitment, new development marketing and corporate services are provided on their original websites, outside this environment. + - paragraph: COMPASS and the Compass logo are trademarks of Compass, Inc. + - paragraph: + - link "Help": + - /url: /help + - text: · + - link "About this environment": + - /url: /about \ No newline at end of file diff --git a/sites/compass/docs/visual-review/home/task17/observations/002-before.txt b/sites/compass/docs/visual-review/home/task17/observations/002-before.txt new file mode 100644 index 00000000..76670b91 --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/observations/002-before.txt @@ -0,0 +1,378 @@ +- link "Skip to content": + - /url: "#main-content" +- banner: + - button "Open navigation": ☰ + - link "Compass": + - /url: / + - img "Compass" + - link "Register": + - /url: /register + - generic: / + - link "Sign In": + - /url: /login +- main: + - heading "Compass Luxury" [level=1] + - paragraph: Exceptional homes from the world's most desirable markets. + - link "41 Popcorn Lane $49,900,000 5 beds 9 baths 14,960 sqft 41 Popcorn Lane, Aspen, CO 81611": + - /url: /listing/41-popcorn-lane-aspen-co-87132233 + - img "41 Popcorn Lane" + - generic: $49,900,000 + - generic: 5 beds + - generic: 9 baths + - generic: 14,960 sqft + - generic: 41 Popcorn Lane, Aspen, CO 81611 + - link "Pending 864 Moore Drive $39,500,000 7 beds 9 baths 10,615 sqft 864 Moore Drive, Aspen, CO 81611": + - /url: /listing/864-moore-drive-aspen-co-64367481 + - generic: Pending + - img "864 Moore Drive" + - generic: $39,500,000 + - generic: 7 beds + - generic: 9 baths + - generic: 10,615 sqft + - generic: 864 Moore Drive, Aspen, CO 81611 + - link "1162 Tiehack Road $38,500,000 6 beds 7.5 baths 7,811 sqft 1162 Tiehack Road, Aspen, CO 81611": + - /url: /listing/1162-tiehack-road-aspen-co-58693761 + - img "1162 Tiehack Road" + - generic: $38,500,000 + - generic: 6 beds + - generic: 7.5 baths + - generic: 7,811 sqft + - generic: 1162 Tiehack Road, Aspen, CO 81611 + - link "100 Difficult Lane $25,900,000 3 beds 4 baths 2,795 sqft 100 Difficult Lane, Aspen, CO 81611": + - /url: /listing/100-difficult-lane-aspen-co-46556249 + - img "100 Difficult Lane" + - generic: $25,900,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,795 sqft + - generic: 100 Difficult Lane, Aspen, CO 81611 + - link "825 East Cooper Avenue $24,995,000 4 beds 4 baths 3,613 sqft 825 East Cooper Avenue, Aspen, CO 81611": + - /url: /listing/825-east-cooper-avenue-aspen-co-53959097 + - img "825 East Cooper Avenue" + - generic: $24,995,000 + - generic: 4 beds + - generic: 4 baths + - generic: 3,613 sqft + - generic: 825 East Cooper Avenue, Aspen, CO 81611 + - link "830 East Durant Avenue $24,950,000 4 beds 4 baths 4,005 sqft 830 East Durant Avenue, Aspen, CO 81611": + - /url: /listing/830-east-durant-avenue-aspen-co-39990729 + - img "830 East Durant Avenue" + - generic: $24,950,000 + - generic: 4 beds + - generic: 4 baths + - generic: 4,005 sqft + - generic: 830 East Durant Avenue, Aspen, CO 81611 + - link "1220 Red Butte Drive $22,950,000 5 beds 5.5 baths 5,872 sqft 1220 Red Butte Drive, Aspen, CO 81611": + - /url: /listing/1220-red-butte-drive-aspen-co-21093121 + - img "1220 Red Butte Drive" + - generic: $22,950,000 + - generic: 5 beds + - generic: 5.5 baths + - generic: 5,872 sqft + - generic: 1220 Red Butte Drive, Aspen, CO 81611 + - link "Pending 150 Charles Street, Unit M10 $21,500,000 4 beds 4.5 baths 5,612 sqft 150 Charles Street, Unit M10, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-m10-new-york-ny-81286569 + - generic: Pending + - img "150 Charles Street, Unit M10" + - generic: $21,500,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 5,612 sqft + - generic: 150 Charles Street, Unit M10, Manhattan, NY 10014 + - link "155 Nighthawk Drive $18,950,000 6 beds 8 baths 5,392 sqft 155 Nighthawk Drive, Aspen, CO 81612": + - /url: /listing/155-nighthawk-drive-aspen-co-93831713 + - img "155 Nighthawk Drive" + - generic: $18,950,000 + - generic: 6 beds + - generic: 8 baths + - generic: 5,392 sqft + - generic: 155 Nighthawk Drive, Aspen, CO 81612 + - link "825 Ute Avenue, Unit A $18,450,000 4 beds 5 baths 3,771 sqft 825 Ute Avenue, Unit A, Aspen, CO 81611": + - /url: /listing/825-ute-avenue-unit-a-aspen-co-50257457 + - img "825 Ute Avenue, Unit A" + - generic: $18,450,000 + - generic: 4 beds + - generic: 5 baths + - generic: 3,771 sqft + - generic: 825 Ute Avenue, Unit A, Aspen, CO 81611 + - link "605 West Bleeker Street $18,450,000 4 beds 5.5 baths 4,314 sqft 605 West Bleeker Street, Aspen, CO 81611": + - /url: /listing/605-west-bleeker-street-aspen-co-48223185 + - img "605 West Bleeker Street" + - generic: $18,450,000 + - generic: 4 beds + - generic: 5.5 baths + - generic: 4,314 sqft + - generic: 605 West Bleeker Street, Aspen, CO 81611 + - link "Compass Exclusive 2655 South Bayshore Drive, Unit 1801/02 $15,750,000 6 beds 7 baths 5,353 sqft 2655 South Bayshore Drive, Unit 1801/02, Miami, FL 33133": + - /url: /listing/2655-south-bayshore-drive-unit-1801-02-miami-fl-32879425 + - generic: Compass Exclusive + - img "2655 South Bayshore Drive, Unit 1801/02" + - generic: $15,750,000 + - generic: 6 beds + - generic: 7 baths + - generic: 5,353 sqft + - generic: 2655 South Bayshore Drive, Unit 1801/02, Miami, FL 33133 + - link "Pending 190 West Lupine Drive $14,995,000 5 beds 6 baths 5,470 sqft 190 West Lupine Drive, Aspen, CO 81611": + - /url: /listing/190-west-lupine-drive-aspen-co-82072873 + - generic: Pending + - img "190 West Lupine Drive" + - generic: $14,995,000 + - generic: 5 beds + - generic: 6 baths + - generic: 5,470 sqft + - generic: 190 West Lupine Drive, Aspen, CO 81611 + - link "199 Caoba Court $13,995,000 5 beds 6.5 baths 5,342 sqft 199 Caoba Court, Coral Gables, FL 33143": + - /url: /listing/199-caoba-court-miami-fl-22699249 + - img "199 Caoba Court" + - generic: $13,995,000 + - generic: 5 beds + - generic: 6.5 baths + - generic: 5,342 sqft + - generic: 199 Caoba Court, Coral Gables, FL 33143 + - link "Compass Exclusive 1425 Brickell Avenue, Unit 42F $11,750,000 3 beds 4.5 baths 3,913 sqft 1425 Brickell Avenue, Unit 42F, Miami, FL 33131": + - /url: /listing/1425-brickell-avenue-unit-42f-miami-fl-85366897 + - generic: Compass Exclusive + - img "1425 Brickell Avenue, Unit 42F" + - generic: $11,750,000 + - generic: 3 beds + - generic: 4.5 baths + - generic: 3,913 sqft + - generic: 1425 Brickell Avenue, Unit 42F, Miami, FL 33131 + - link "1038 Owl Creek Road $10,995,000 4 beds 4 baths 5,047 sqft 1038 Owl Creek Road, Aspen, CO 81611": + - /url: /listing/1038-owl-creek-road-aspen-co-75064801 + - img "1038 Owl Creek Road" + - generic: $10,995,000 + - generic: 4 beds + - generic: 4 baths + - generic: 5,047 sqft + - generic: 1038 Owl Creek Road, Aspen, CO 81611 + - link "1395 Sierra Vista Drive, Unit 1 $10,995,000 4 beds 5 baths 4,390 sqft 1395 Sierra Vista Drive, Unit 1, Aspen, CO 81611": + - /url: /listing/1395-sierra-vista-drive-unit-1-aspen-co-22259585 + - img "1395 Sierra Vista Drive, Unit 1" + - generic: $10,995,000 + - generic: 4 beds + - generic: 5 baths + - generic: 4,390 sqft + - generic: 1395 Sierra Vista Drive, Unit 1, Aspen, CO 81611 + - link "42703 Highway 82, Unit B $10,950,000 5 beds 5.5 baths 4,154 sqft 42703 Highway 82, Unit B, Aspen, CO 81611": + - /url: /listing/42703-highway-82-unit-b-aspen-co-90959137 + - img "42703 Highway 82, Unit B" + - generic: $10,950,000 + - generic: 5 beds + - generic: 5.5 baths + - generic: 4,154 sqft + - generic: 42703 Highway 82, Unit B, Aspen, CO 81611 + - link "787 Carroll Street $10,250,000 5 beds 4 baths 6,664 sqft 787 Carroll Street, New York, NY 11215": + - /url: /listing/787-carroll-street-new-york-ny-07909369 + - img "787 Carroll Street" + - generic: $10,250,000 + - generic: 5 beds + - generic: 4 baths + - generic: 6,664 sqft + - generic: 787 Carroll Street, New York, NY 11215 + - link "479 Henry Street $9,950,000 5 beds 4 baths 4,800 sqft 479 Henry Street, New York, NY 11231": + - /url: /listing/479-henry-street-new-york-ny-19847793 + - img "479 Henry Street" + - generic: $9,950,000 + - generic: 5 beds + - generic: 4 baths + - generic: 4,800 sqft + - generic: 479 Henry Street, New York, NY 11231 + - link "1201 Northeast 83rd Street $9,800,000 10 beds 10 baths 8,573 sqft 1201 Northeast 83rd Street, Miami, FL 33138": + - /url: /listing/1201-northeast-83rd-street-miami-fl-86057233 + - img "1201 Northeast 83rd Street" + - generic: $9,800,000 + - generic: 10 beds + - generic: 10 baths + - generic: 8,573 sqft + - generic: 1201 Northeast 83rd Street, Miami, FL 33138 + - link "Pending 150 Charles Street, Unit 3AS $8,995,000 3 beds 3.5 baths 2,461 sqft 150 Charles Street, Unit 3AS, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-3as-new-york-ny-85442145 + - generic: Pending + - img "150 Charles Street, Unit 3AS" + - generic: $8,995,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 2,461 sqft + - generic: 150 Charles Street, Unit 3AS, Manhattan, NY 10014 + - link "Compass Exclusive Undisclosed Address $8,995,000 5 beds 7 baths 6,069 sqft Undisclosed Address, Los Angeles, CA 90004": + - /url: /listing/undisclosed-address-los-angeles-ca-01703001 + - generic: Compass Exclusive + - img "Undisclosed Address" + - generic: $8,995,000 + - generic: 5 beds + - generic: 7 baths + - generic: 6,069 sqft + - generic: Undisclosed Address, Los Angeles, CA 90004 + - link "Compass Exclusive 248 North Glenroy Avenue $8,995,000 5 beds 6 baths 4,899 sqft 248 North Glenroy Avenue, Los Angeles, CA 90049": + - /url: /listing/248-north-glenroy-avenue-los-angeles-ca-38580513 + - generic: Compass Exclusive + - img "248 North Glenroy Avenue" + - generic: $8,995,000 + - generic: 5 beds + - generic: 6 baths + - generic: 4,899 sqft + - generic: 248 North Glenroy Avenue, Los Angeles, CA 90049 + - link "Compass Exclusive 1330-1332 Greenwich Street $8,995,000 5 beds 6 baths 4,447 sqft 1330-1332 Greenwich Street, San Francisco, CA 94109": + - /url: /listing/1330-1332-greenwich-street-san-francisco-ca-46862593 + - generic: Compass Exclusive + - img "1330-1332 Greenwich Street" + - generic: $8,995,000 + - generic: 5 beds + - generic: 6 baths + - generic: 4,447 sqft + - generic: 1330-1332 Greenwich Street, San Francisco, CA 94109 + - link "Compass Exclusive 229 Ridgewood Road $8,888,000 6 beds 7 baths 5,437 sqft 229 Ridgewood Road, Miami, FL 33133": + - /url: /listing/229-ridgewood-road-miami-fl-81418745 + - generic: Compass Exclusive + - img "229 Ridgewood Road" + - generic: $8,888,000 + - generic: 6 beds + - generic: 7 baths + - generic: 5,437 sqft + - generic: 229 Ridgewood Road, Miami, FL 33133 + - link "730 Twining Flats Road $8,500,000 3 beds 3.5 baths 4,992 sqft 730 Twining Flats Road, Aspen, CO 81611": + - /url: /listing/730-twining-flats-road-aspen-co-70769025 + - img "730 Twining Flats Road" + - generic: $8,500,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 4,992 sqft + - generic: 730 Twining Flats Road, Aspen, CO 81611 + - link "Compass Exclusive 6716 San Vicente Street $8,250,000 6 beds — baths — sqft 6716 San Vicente Street, Miami, FL 33146": + - /url: /listing/6716-san-vicente-street-miami-fl-45424521 + - generic: Compass Exclusive + - img "6716 San Vicente Street" + - generic: $8,250,000 + - generic: 6 beds + - generic: — baths + - generic: — sqft + - generic: 6716 San Vicente Street, Miami, FL 33146 + - link "Compass Exclusive 1698 Tigertail Avenue $7,950,000 6 beds 7 baths 5,300 sqft 1698 Tigertail Avenue, Miami, FL 33133": + - /url: /listing/1698-tigertail-avenue-miami-fl-36067401 + - generic: Compass Exclusive + - img "1698 Tigertail Avenue" + - generic: $7,950,000 + - generic: 6 beds + - generic: 7 baths + - generic: 5,300 sqft + - generic: 1698 Tigertail Avenue, Miami, FL 33133 + - link "Compass Exclusive Rockwell Island $6,532,000 6 beds 0 baths 6,501 sqft Rockwell Island, Miami, FL 33133": + - /url: /listing/rockwell-island-miami-fl-97872137 + - generic: Compass Exclusive + - img "Rockwell Island" + - generic: $6,532,000 + - generic: 6 beds + - generic: 0 baths + - generic: 6,501 sqft + - generic: Rockwell Island, Miami, FL 33133 + - link "115 Spring Street, Unit 2 $6,500,000 3 beds 3 baths — sqft 115 Spring Street, Unit 2, New York, NY 10012": + - /url: /listing/115-spring-street-unit-2-new-york-ny-38846297 + - img "115 Spring Street, Unit 2" + - generic: $6,500,000 + - generic: 3 beds + - generic: 3 baths + - generic: — sqft + - generic: 115 Spring Street, Unit 2, New York, NY 10012 + - link "2006 Mountain View Road $6,499,000 7 beds 7.5 baths 5,370 sqft 2006 Mountain View Road, Austin, TX 78703": + - /url: /listing/2006-mountain-view-road-austin-tx-18989937 + - img "2006 Mountain View Road" + - generic: $6,499,000 + - generic: 7 beds + - generic: 7.5 baths + - generic: 5,370 sqft + - generic: 2006 Mountain View Road, Austin, TX 78703 + - link "Compass Exclusive 3770-3792 Kumquat Avenue $6,495,000 5 beds 6 baths 3,875 sqft 3770-3792 Kumquat Avenue, Miami, FL 33133": + - /url: /listing/3770-3792-kumquat-avenue-miami-fl-58538897 + - generic: Compass Exclusive + - img "3770-3792 Kumquat Avenue" + - generic: $6,495,000 + - generic: 5 beds + - generic: 6 baths + - generic: 3,875 sqft + - generic: 3770-3792 Kumquat Avenue, Miami, FL 33133 + - link "Compass Exclusive 281 Newbury Street $6,000,000 8 beds 7 baths 5,510 sqft 281 Newbury Street, Boston, MA 02115": + - /url: /listing/281-newbury-street-boston-ma-80593441 + - generic: Compass Exclusive + - img "281 Newbury Street" + - generic: $6,000,000 + - generic: 8 beds + - generic: 7 baths + - generic: 5,510 sqft + - generic: 281 Newbury Street, Boston, MA 02115 + - link "Compass Exclusive 415 Buena Vista Avenue East $5,950,000 5 beds 4.5 baths — sqft 415 Buena Vista Avenue East, San Francisco, CA 94117": + - /url: /listing/415-buena-vista-avenue-east-san-francisco-ca-96660801 + - generic: Compass Exclusive + - img "415 Buena Vista Avenue East" + - generic: $5,950,000 + - generic: 5 beds + - generic: 4.5 baths + - generic: — sqft + - generic: 415 Buena Vista Avenue East, San Francisco, CA 94117 + - link "88 Southwest 7th Street, Unit PH4303 $5,799,900 3 beds 4.5 baths 3,115 sqft 88 Southwest 7th Street, Unit PH4303, Miami, FL 33130": + - /url: /listing/88-southwest-7th-street-unit-ph4303-miami-fl-12289809 + - img "88 Southwest 7th Street, Unit PH4303" + - generic: $5,799,900 + - generic: 3 beds + - generic: 4.5 baths + - generic: 3,115 sqft + - generic: 88 Southwest 7th Street, Unit PH4303, Miami, FL 33130 + - link "Compass Exclusive Walnut Street $5,500,000 6 beds 5 baths 4,300 sqft Walnut Street, San Francisco, CA 94118": + - /url: /listing/walnut-street-san-francisco-ca-05333337 + - generic: Compass Exclusive + - img "Walnut Street" + - generic: $5,500,000 + - generic: 6 beds + - generic: 5 baths + - generic: 4,300 sqft + - generic: Walnut Street, San Francisco, CA 94118 + - link "McLain Flats $5,450,000 — beds 0 baths — sqft McLain Flats, Aspen, CO 81612": + - /url: /listing/mclain-flats-aspen-co-24827361 + - img "McLain Flats" + - generic: $5,450,000 + - generic: — beds + - generic: 0 baths + - generic: — sqft + - generic: McLain Flats, Aspen, CO 81612 + - link "Compass Exclusive Rockwell Island $5,000,000 4 beds 4.5 baths 4,588 sqft Rockwell Island, Miami, FL 33133": + - /url: /listing/rockwell-island-miami-fl-94376561 + - generic: Compass Exclusive + - img "Rockwell Island" + - generic: $5,000,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 4,588 sqft + - generic: Rockwell Island, Miami, FL 33133 +- contentinfo: + - button "Company": + - text: Company + - generic: + + - button "Explore": + - text: Explore + - generic: + + - heading "Mobile Apps" [level=2] + - link "Compass iOS App": + - /url: https://itunes.apple.com/app/id692766504 + - img "Compass iOS App" + - link "Compass Android App": + - /url: https://play.google.com/store/apps/details?id=com.compass.compass + - img "Compass Android App" + - link "Instagram": + - /url: https://instagram.com/compass/ + - text: ◎ + - link "Facebook": + - /url: https://facebook.com/compass/ + - text: f + - link "X": + - /url: https://x.com/compass/ + - text: 𝕏 + - paragraph: © 2026 Compass mirror — WebHarbor benchmark site. Not affiliated with Compass, Inc. Listing information is a fixed snapshot; availability may have changed. + - paragraph: Account actions, saved homes, collections and tour requests stay in this local environment. They are not sent to Compass agents. + - paragraph: Links marked ↗ open external websites. Mortgage, brokerage recruitment, new development marketing and corporate services are provided on their original websites, outside this environment. + - paragraph: COMPASS and the Compass logo are trademarks of Compass, Inc. + - paragraph: + - link "Help": + - /url: /help + - text: · + - link "About this environment": + - /url: /about \ No newline at end of file diff --git a/sites/compass/docs/visual-review/home/task17/observations/003-after.txt b/sites/compass/docs/visual-review/home/task17/observations/003-after.txt new file mode 100644 index 00000000..d55320ca --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/observations/003-after.txt @@ -0,0 +1,2704 @@ +- link "Skip to content": + - /url: "#main-content" +- banner: + - button "Open navigation": ☰ + - link "Compass": + - /url: / + - img "Compass" + - link "Register": + - /url: /register + - generic: / + - link "Sign In": + - /url: /login +- main: + - heading "All listings" [level=1] + - searchbox "Search terms" + - generic: Listing status + - combobox "Listing status": + - option "Any status" + - option "For sale" [selected] + - option "For rent" + - option "Sold" + - option "Closed" + - option "Rented" + - generic: Home type + - combobox "Home type": + - option "All home types" [selected] + - option "Single Family" + - option "Condo" + - option "Co-op" + - option "Townhouse" + - option "Multi-Family" + - option "Apartment" + - option "Rental" + - option "Land" + - option "Office" + - option "Mixed Use" + - option "Other" + - generic: Min beds + - combobox "Min beds": + - option "Any beds" [selected] + - option "1+" + - option "2+" + - option "3+" + - option "4+" + - option "5+" + - generic: Max price + - spinbutton "Max price" + - button "Filters" + - button "Search" + - generic: Sort by + - combobox "Sort by": + - option "Relevance" [selected] + - option "Newest" + - 'option "Price: low to high"' + - 'option "Price: high to low"' + - option "Bedrooms" + - option "Square feet" + - 'option "$/sqft: low to high"' + - 'option "$/sqft: high to low"' + - generic: 303 results. + - link "Compass Exclusive 425 West 24th Street, Unit 1F $1,325,000 2 beds 2 baths 1,200 sqft 425 West 24th Street, Unit 1F, New York, NY 10011": + - /url: /listing/425-west-24th-street-unit-1f-new-york-ny-47919969 + - generic: Compass Exclusive + - img "425 West 24th Street, Unit 1F" + - generic: $1,325,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,200 sqft + - generic: 425 West 24th Street, Unit 1F, New York, NY 10011 + - link "400 Lincoln Place, Unit 2B $500,000 — beds — baths — sqft 400 Lincoln Place, Unit 2B, New York, NY 11238": + - /url: /listing/400-lincoln-place-unit-2b-new-york-ny-40815033 + - img "400 Lincoln Place, Unit 2B" + - generic: $500,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 400 Lincoln Place, Unit 2B, New York, NY 11238 + - link "391 3rd Street, Unit 1 $1,295,000 2 beds — baths — sqft 391 3rd Street, Unit 1, New York, NY 11215": + - /url: /listing/391-3rd-street-unit-1-new-york-ny-82456857 + - img "391 3rd Street, Unit 1" + - generic: $1,295,000 + - generic: 2 beds + - generic: — baths + - generic: — sqft + - generic: 391 3rd Street, Unit 1, New York, NY 11215 + - link "150 Joralemon Street, Unit 7A $1,250,000 2 beds 1 baths — sqft 150 Joralemon Street, Unit 7A, Brooklyn, NY 11201": + - /url: /listing/150-joralemon-street-unit-7a-new-york-ny-96805081 + - img "150 Joralemon Street, Unit 7A" + - generic: $1,250,000 + - generic: 2 beds + - generic: 1 baths + - generic: — sqft + - generic: 150 Joralemon Street, Unit 7A, Brooklyn, NY 11201 + - link "Pending 160 Columbia Heights, Unit 10F $2,195,000 2 beds 2 baths — sqft 160 Columbia Heights, Unit 10F, Brooklyn, NY 11201": + - /url: /listing/160-columbia-heights-unit-10f-new-york-ny-65591129 + - generic: Pending + - img "160 Columbia Heights, Unit 10F" + - generic: $2,195,000 + - generic: 2 beds + - generic: 2 baths + - generic: — sqft + - generic: 160 Columbia Heights, Unit 10F, Brooklyn, NY 11201 + - link "Pending 58 Remsen Street, Unit 1R $2,250,000 2 beds 1.5 baths — sqft 58 Remsen Street, Unit 1R, Brooklyn, NY 11201": + - /url: /listing/58-remsen-street-unit-1r-new-york-ny-19465409 + - generic: Pending + - img "58 Remsen Street, Unit 1R" + - generic: $2,250,000 + - generic: 2 beds + - generic: 1.5 baths + - generic: — sqft + - generic: 58 Remsen Street, Unit 1R, Brooklyn, NY 11201 + - link "Pending 130 Prospect Place, Unit 1 $1,495,000 2 beds 2 baths 1,200 sqft 130 Prospect Place, Unit 1, Brooklyn, NY 11217": + - /url: /listing/130-prospect-place-unit-1-new-york-ny-78987185 + - generic: Pending + - img "130 Prospect Place, Unit 1" + - generic: $1,495,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,200 sqft + - generic: 130 Prospect Place, Unit 1, Brooklyn, NY 11217 + - link "110 Hoyt Street, Unit 1 $975,000 — beds — baths 753 sqft 110 Hoyt Street, Unit 1, New York, NY 11217": + - /url: /listing/110-hoyt-street-unit-1-new-york-ny-87729625 + - img "110 Hoyt Street, Unit 1" + - generic: $975,000 + - generic: — beds + - generic: — baths + - generic: 753 sqft + - generic: 110 Hoyt Street, Unit 1, New York, NY 11217 + - link "21 Monroe Place, Unit 5R $765,000 — beds — baths — sqft 21 Monroe Place, Unit 5R, New York, NY 11201": + - /url: /listing/21-monroe-place-unit-5r-new-york-ny-19536305 + - img "21 Monroe Place, Unit 5R" + - generic: $765,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 21 Monroe Place, Unit 5R, New York, NY 11201 + - link "115 Spring Street, Unit 2 $6,500,000 3 beds 3 baths — sqft 115 Spring Street, Unit 2, New York, NY 10012": + - /url: /listing/115-spring-street-unit-2-new-york-ny-38846297 + - img "115 Spring Street, Unit 2" + - generic: $6,500,000 + - generic: 3 beds + - generic: 3 baths + - generic: — sqft + - generic: 115 Spring Street, Unit 2, New York, NY 10012 + - link "118 Perry Street, Unit J45 $575,000 — beds — baths — sqft 118 Perry Street, Unit J45, New York, NY 10014": + - /url: /listing/118-perry-street-unit-j45-new-york-ny-45254425 + - img "118 Perry Street, Unit J45" + - generic: $575,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 118 Perry Street, Unit J45, New York, NY 10014 + - link "21 South Portland Avenue, Unit 2F $775,000 — beds — baths — sqft 21 South Portland Avenue, Unit 2F, New York, NY 11217": + - /url: /listing/21-south-portland-avenue-unit-2f-new-york-ny-07712233 + - img "21 South Portland Avenue, Unit 2F" + - generic: $775,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 21 South Portland Avenue, Unit 2F, New York, NY 11217 + - link "Pending 150 Charles Street, Unit M10 $21,500,000 4 beds 4.5 baths 5,612 sqft 150 Charles Street, Unit M10, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-m10-new-york-ny-81286569 + - generic: Pending + - img "150 Charles Street, Unit M10" + - generic: $21,500,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 5,612 sqft + - generic: 150 Charles Street, Unit M10, Manhattan, NY 10014 + - link "Pending 195 Willoughby Avenue, Unit 1517/1518 $1,125,000 2 beds 2 baths 1,217 sqft 195 Willoughby Avenue, Unit 1517/1518, Brooklyn, NY 11205": + - /url: /listing/195-willoughby-avenue-unit-1517-1518-new-york-ny-05751361 + - generic: Pending + - img "195 Willoughby Avenue, Unit 1517/1518" + - generic: $1,125,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,217 sqft + - generic: 195 Willoughby Avenue, Unit 1517/1518, Brooklyn, NY 11205 + - link "20 East 9th Street, Unit 4T $799,000 1 beds 1 baths — sqft 20 East 9th Street, Unit 4T, Manhattan, NY 10003": + - /url: /listing/20-east-9th-street-unit-4t-new-york-ny-10648129 + - img "20 East 9th Street, Unit 4T" + - generic: $799,000 + - generic: 1 beds + - generic: 1 baths + - generic: — sqft + - generic: 20 East 9th Street, Unit 4T, Manhattan, NY 10003 + - link "Pending 634 Washington Street, Unit 4B $1,750,000 3 beds 1.5 baths — sqft 634 Washington Street, Unit 4B, Manhattan, NY 10014": + - /url: /listing/634-washington-street-unit-4b-new-york-ny-46018681 + - generic: Pending + - img "634 Washington Street, Unit 4B" + - generic: $1,750,000 + - generic: 3 beds + - generic: 1.5 baths + - generic: — sqft + - generic: 634 Washington Street, Unit 4B, Manhattan, NY 10014 + - link "195 Willoughby Avenue, Unit 1518 $700,000 — beds — baths — sqft 195 Willoughby Avenue, Unit 1518, New York, NY 11205": + - /url: /listing/195-willoughby-avenue-unit-1518-new-york-ny-22490329 + - img "195 Willoughby Avenue, Unit 1518" + - generic: $700,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 195 Willoughby Avenue, Unit 1518, New York, NY 11205 + - link "787 Carroll Street $10,250,000 5 beds 4 baths 6,664 sqft 787 Carroll Street, New York, NY 11215": + - /url: /listing/787-carroll-street-new-york-ny-07909369 + - img "787 Carroll Street" + - generic: $10,250,000 + - generic: 5 beds + - generic: 4 baths + - generic: 6,664 sqft + - generic: 787 Carroll Street, New York, NY 11215 + - link "195 Willoughby Avenue, Unit 1517 $425,000 — beds — baths — sqft 195 Willoughby Avenue, Unit 1517, New York, NY 11205": + - /url: /listing/195-willoughby-avenue-unit-1517-new-york-ny-77007633 + - img "195 Willoughby Avenue, Unit 1517" + - generic: $425,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 195 Willoughby Avenue, Unit 1517, New York, NY 11205 + - link "Pending 270 5th Street, Unit 4C $1,350,000 2 beds 1 baths — sqft 270 5th Street, Unit 4C, Brooklyn, NY 11215": + - /url: /listing/270-5th-street-unit-4c-new-york-ny-15444585 + - generic: Pending + - img "270 5th Street, Unit 4C" + - generic: $1,350,000 + - generic: 2 beds + - generic: 1 baths + - generic: — sqft + - generic: 270 5th Street, Unit 4C, Brooklyn, NY 11215 + - link "228 West 21st Street, Unit 2 $1,800,000 2 beds 2 baths — sqft 228 West 21st Street, Unit 2, New York, NY 10011": + - /url: /listing/228-west-21st-street-unit-2-new-york-ny-06805097 + - img "228 West 21st Street, Unit 2" + - generic: $1,800,000 + - generic: 2 beds + - generic: 2 baths + - generic: — sqft + - generic: 228 West 21st Street, Unit 2, New York, NY 10011 + - link "New 230 East 15th Street, Unit 9B $550,000 — beds — baths 600 sqft 230 East 15th Street, Unit 9B, New York, NY 10003": + - /url: /listing/230-east-15th-street-unit-9b-new-york-ny-22022945 + - generic: New + - img "230 East 15th Street, Unit 9B" + - generic: $550,000 + - generic: — beds + - generic: — baths + - generic: 600 sqft + - generic: 230 East 15th Street, Unit 9B, New York, NY 10003 + - link "470 West 24th Street, Unit 11G $1,150,000 — beds — baths — sqft 470 West 24th Street, Unit 11G, New York, NY 10011": + - /url: /listing/470-west-24th-street-unit-11g-new-york-ny-85729881 + - img "470 West 24th Street, Unit 11G" + - generic: $1,150,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 470 West 24th Street, Unit 11G, New York, NY 10011 + - link "155 West 20th Street, Unit 6H $895,000 — beds — baths 850 sqft 155 West 20th Street, Unit 6H, New York, NY 10011": + - /url: /listing/155-west-20th-street-unit-6h-new-york-ny-71890545 + - img "155 West 20th Street, Unit 6H" + - generic: $895,000 + - generic: — beds + - generic: — baths + - generic: 850 sqft + - generic: 155 West 20th Street, Unit 6H, New York, NY 10011 + - link "Pending 1 Northside Piers, Unit 24J $2,075,000 2 beds 2 baths 1,064 sqft 1 Northside Piers, Unit 24J, Brooklyn, NY 11249": + - /url: /listing/1-northside-piers-unit-24j-new-york-ny-95518345 + - generic: Pending + - img "1 Northside Piers, Unit 24J" + - generic: $2,075,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,064 sqft + - generic: 1 Northside Piers, Unit 24J, Brooklyn, NY 11249 + - link "Pending 150 Charles Street, Unit 3AS $8,995,000 3 beds 3.5 baths 2,461 sqft 150 Charles Street, Unit 3AS, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-3as-new-york-ny-85442145 + - generic: Pending + - img "150 Charles Street, Unit 3AS" + - generic: $8,995,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 2,461 sqft + - generic: 150 Charles Street, Unit 3AS, Manhattan, NY 10014 + - link "10 Quincy Street, Unit 2C $1,199,000 — beds — baths 730 sqft 10 Quincy Street, Unit 2C, New York, NY 11238": + - /url: /listing/10-quincy-street-unit-2c-new-york-ny-52220705 + - img "10 Quincy Street, Unit 2C" + - generic: $1,199,000 + - generic: — beds + - generic: — baths + - generic: 730 sqft + - generic: 10 Quincy Street, Unit 2C, New York, NY 11238 + - link "137 Putnam Avenue $2,499,000 5 beds 3.5 baths 2,753 sqft 137 Putnam Avenue, Brooklyn, NY 11238": + - /url: /listing/137-putnam-avenue-new-york-ny-69799641 + - img "137 Putnam Avenue" + - generic: $2,499,000 + - generic: 5 beds + - generic: 3.5 baths + - generic: 2,753 sqft + - generic: 137 Putnam Avenue, Brooklyn, NY 11238 + - link "389 Classon Avenue $3,995,000 4 beds 3 baths 2,565 sqft 389 Classon Avenue, New York, NY 11238": + - /url: /listing/389-classon-avenue-new-york-ny-70718105 + - img "389 Classon Avenue" + - generic: $3,995,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,565 sqft + - generic: 389 Classon Avenue, New York, NY 11238 + - link "479 Henry Street $9,950,000 5 beds 4 baths 4,800 sqft 479 Henry Street, New York, NY 11231": + - /url: /listing/479-henry-street-new-york-ny-19847793 + - img "479 Henry Street" + - generic: $9,950,000 + - generic: 5 beds + - generic: 4 baths + - generic: 4,800 sqft + - generic: 479 Henry Street, New York, NY 11231 + - link "669 Saint Marks Avenue, Unit 2B $1,799,000 3 beds 2.5 baths 1,285 sqft 669 Saint Marks Avenue, Unit 2B, Brooklyn, NY 11216": + - /url: /listing/669-saint-marks-avenue-unit-2b-new-york-ny-65073649 + - img "669 Saint Marks Avenue, Unit 2B" + - generic: $1,799,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,285 sqft + - generic: 669 Saint Marks Avenue, Unit 2B, Brooklyn, NY 11216 + - link "140-142 West End Avenue, Unit 30M $950,000 — beds — baths — sqft 140-142 West End Avenue, Unit 30M, New York, NY 10023": + - /url: /listing/140-142-west-end-avenue-unit-30m-new-york-ny-56723409 + - img "140-142 West End Avenue, Unit 30M" + - generic: $950,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 140-142 West End Avenue, Unit 30M, New York, NY 10023 + - link "Compass Exclusive 1718 Occidental Boulevard $1,299,000 2 beds 1 baths 1,113 sqft 1718 Occidental Boulevard, Los Angeles, CA 90026": + - /url: /listing/1718-occidental-boulevard-los-angeles-ca-11068225 + - generic: Compass Exclusive + - img "1718 Occidental Boulevard" + - generic: $1,299,000 + - generic: 2 beds + - generic: 1 baths + - generic: 1,113 sqft + - generic: 1718 Occidental Boulevard, Los Angeles, CA 90026 + - link "Compass Exclusive Undisclosed Address $1,995,000 3 beds 2 baths 1,688 sqft Undisclosed Address, Los Angeles, CA 90066": + - /url: /listing/undisclosed-address-los-angeles-ca-12555729 + - generic: Compass Exclusive + - img "Undisclosed Address" + - generic: $1,995,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,688 sqft + - generic: Undisclosed Address, Los Angeles, CA 90066 + - link "Compass Exclusive 1915 Malcolm Avenue, Unit 301 $1,138,000 3 beds 2 baths 1,511 sqft 1915 Malcolm Avenue, Unit 301, Los Angeles, CA 90025": + - /url: /listing/1915-malcolm-avenue-unit-301-los-angeles-ca-15997937 + - generic: Compass Exclusive + - img "1915 Malcolm Avenue, Unit 301" + - generic: $1,138,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,511 sqft + - generic: 1915 Malcolm Avenue, Unit 301, Los Angeles, CA 90025 + - link "Compass Exclusive 8550 Ridpath Drive $2,100,000 3 beds 2 baths 1,596 sqft 8550 Ridpath Drive, Los Angeles, CA 90046": + - /url: /listing/8550-ridpath-drive-los-angeles-ca-87131737 + - generic: Compass Exclusive + - img "8550 Ridpath Drive" + - generic: $2,100,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,596 sqft + - generic: 8550 Ridpath Drive, Los Angeles, CA 90046 + - link "Compass Exclusive Undisclosed Address $8,995,000 5 beds 7 baths 6,069 sqft Undisclosed Address, Los Angeles, CA 90004": + - /url: /listing/undisclosed-address-los-angeles-ca-01703001 + - generic: Compass Exclusive + - img "Undisclosed Address" + - generic: $8,995,000 + - generic: 5 beds + - generic: 7 baths + - generic: 6,069 sqft + - generic: Undisclosed Address, Los Angeles, CA 90004 + - link "Compass Exclusive 5226 Village Green $685,000 2 beds — baths 818 sqft 5226 Village Green, Los Angeles, CA 90016": + - /url: /listing/5226-village-green-los-angeles-ca-69965641 + - generic: Compass Exclusive + - img "5226 Village Green" + - generic: $685,000 + - generic: 2 beds + - generic: — baths + - generic: 818 sqft + - generic: 5226 Village Green, Los Angeles, CA 90016 + - link "3001 Passmore Drive $3,950,000 6 beds 5.5 baths 4,416 sqft 3001 Passmore Drive, Los Angeles, CA 90068": + - /url: /listing/undisclosed-address-los-angeles-ca-93436001 + - img "3001 Passmore Drive" + - generic: $3,950,000 + - generic: 6 beds + - generic: 5.5 baths + - generic: 4,416 sqft + - generic: 3001 Passmore Drive, Los Angeles, CA 90068 + - link "5516 Village Green $585,000 2 beds 1 baths 826 sqft 5516 Village Green, Los Angeles, CA 90016": + - /url: /listing/5516-village-green-los-angeles-ca-20666961 + - img "5516 Village Green" + - generic: $585,000 + - generic: 2 beds + - generic: 1 baths + - generic: 826 sqft + - generic: 5516 Village Green, Los Angeles, CA 90016 + - link "Compass Exclusive 11307 Morrison Street $989,000 3 beds 3.5 baths 1,676 sqft 11307 Morrison Street, North Hollywood, CA 91601": + - /url: /listing/11307-morrison-street-los-angeles-ca-83506497 + - generic: Compass Exclusive + - img "11307 Morrison Street" + - generic: $989,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 1,676 sqft + - generic: 11307 Morrison Street, North Hollywood, CA 91601 + - link "Compass Exclusive 248 North Glenroy Avenue $8,995,000 5 beds 6 baths 4,899 sqft 248 North Glenroy Avenue, Los Angeles, CA 90049": + - /url: /listing/248-north-glenroy-avenue-los-angeles-ca-38580513 + - generic: Compass Exclusive + - img "248 North Glenroy Avenue" + - generic: $8,995,000 + - generic: 5 beds + - generic: 6 baths + - generic: 4,899 sqft + - generic: 248 North Glenroy Avenue, Los Angeles, CA 90049 + - link "Compass Exclusive 417 Venice Way $2,799,000 4 beds 4 baths 3,154 sqft 417 Venice Way, Los Angeles, CA 90291": + - /url: /listing/417-venice-way-los-angeles-ca-28981633 + - generic: Compass Exclusive + - img "417 Venice Way" + - generic: $2,799,000 + - generic: 4 beds + - generic: 4 baths + - generic: 3,154 sqft + - generic: 417 Venice Way, Los Angeles, CA 90291 + - link "Compass Exclusive 6001 Carlton Way, Unit 106 $705,000 2 beds 2 baths 1,200 sqft 6001 Carlton Way, Unit 106, Los Angeles, CA 90028": + - /url: /listing/6001-carlton-way-unit-106-los-angeles-ca-99002433 + - generic: Compass Exclusive + - img "6001 Carlton Way, Unit 106" + - generic: $705,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,200 sqft + - generic: 6001 Carlton Way, Unit 106, Los Angeles, CA 90028 + - link "Compass Exclusive 8344 McConnell Avenue $3,495,000 5 beds 6 baths 3,128 sqft 8344 McConnell Avenue, Los Angeles, CA 90045": + - /url: /listing/8344-mcconnell-avenue-los-angeles-ca-87192249 + - generic: Compass Exclusive + - img "8344 McConnell Avenue" + - generic: $3,495,000 + - generic: 5 beds + - generic: 6 baths + - generic: 3,128 sqft + - generic: 8344 McConnell Avenue, Los Angeles, CA 90045 + - link "Compass Exclusive 928 Croft Avenue, Unit 303 $2,089,000 3 beds 3 baths 1,980 sqft 928 Croft Avenue, Unit 303, Los Angeles, CA 90069": + - /url: /listing/928-croft-avenue-unit-303-los-angeles-ca-69140937 + - generic: Compass Exclusive + - img "928 Croft Avenue, Unit 303" + - generic: $2,089,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,980 sqft + - generic: 928 Croft Avenue, Unit 303, Los Angeles, CA 90069 + - link "Compass Exclusive 13070 Kiyot Way $3,650,000 4 beds 4 baths 3,458 sqft 13070 Kiyot Way, Los Angeles, CA 90094": + - /url: /listing/13070-kiyot-way-los-angeles-ca-21194649 + - generic: Compass Exclusive + - img "13070 Kiyot Way" + - generic: $3,650,000 + - generic: 4 beds + - generic: 4 baths + - generic: 3,458 sqft + - generic: 13070 Kiyot Way, Los Angeles, CA 90094 + - link "Compass Exclusive 12765 Bluff Creek Drive, Unit 1 $3,150,000 4 beds 4 baths 2,674 sqft 12765 Bluff Creek Drive, Unit 1, Los Angeles, CA 90094": + - /url: /listing/12765-bluff-creek-drive-unit-1-los-angeles-ca-98362465 + - generic: Compass Exclusive + - img "12765 Bluff Creek Drive, Unit 1" + - generic: $3,150,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,674 sqft + - generic: 12765 Bluff Creek Drive, Unit 1, Los Angeles, CA 90094 + - link "1100 South Hope Street, Unit 1006 $535,000 1 beds 1 baths 1,007 sqft 1100 South Hope Street, Unit 1006, Los Angeles, CA 90015": + - /url: /listing/1100-south-hope-street-unit-1006-los-angeles-ca-91687721 + - img "1100 South Hope Street, Unit 1006" + - generic: $535,000 + - generic: 1 beds + - generic: 1 baths + - generic: 1,007 sqft + - generic: 1100 South Hope Street, Unit 1006, Los Angeles, CA 90015 + - link "Pending 13626 Shablow Avenue $739,000 3 beds 2 baths 1,068 sqft 13626 Shablow Avenue, Sylmar, CA 91342": + - /url: /listing/13626-shablow-avenue-los-angeles-ca-14835353 + - generic: Pending + - img "13626 Shablow Avenue" + - generic: $739,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,068 sqft + - generic: 13626 Shablow Avenue, Sylmar, CA 91342 + - link "Compass Exclusive 333 East Colden Avenue $450,000 — beds 0 baths — sqft 333 East Colden Avenue, Los Angeles, CA 90003": + - /url: /listing/333-east-colden-avenue-los-angeles-ca-77088801 + - generic: Compass Exclusive + - img "333 East Colden Avenue" + - generic: $450,000 + - generic: — beds + - generic: 0 baths + - generic: — sqft + - generic: 333 East Colden Avenue, Los Angeles, CA 90003 + - link "889 Francisco Street, Unit 1206 $998,000 2 beds 2.5 baths 1,489 sqft 889 Francisco Street, Unit 1206, Los Angeles, CA 90017": + - /url: /listing/889-francisco-street-unit-1206-los-angeles-ca-99006633 + - img "889 Francisco Street, Unit 1206" + - generic: $998,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,489 sqft + - generic: 889 Francisco Street, Unit 1206, Los Angeles, CA 90017 + - link "3536 1/2 Arroyo Seco Avenue $499,000 2 beds 2 baths 840 sqft 3536 1/2 Arroyo Seco Avenue, Los Angeles, CA 90065": + - /url: /listing/3536-1-2-arroyo-seco-avenue-los-angeles-ca-37515281 + - img "3536 1/2 Arroyo Seco Avenue" + - generic: $499,000 + - generic: 2 beds + - generic: 2 baths + - generic: 840 sqft + - generic: 3536 1/2 Arroyo Seco Avenue, Los Angeles, CA 90065 + - link "2050 North Las Palmas Avenue $1,850,000 3 beds 4 baths 1,830 sqft 2050 North Las Palmas Avenue, Los Angeles, CA 90068": + - /url: /listing/2050-north-las-palmas-avenue-los-angeles-ca-96276937 + - img "2050 North Las Palmas Avenue" + - generic: $1,850,000 + - generic: 3 beds + - generic: 4 baths + - generic: 1,830 sqft + - generic: 2050 North Las Palmas Avenue, Los Angeles, CA 90068 + - link "404 North Avenue 52 $1,150,000 3 beds 2 baths 1,124 sqft 404 North Avenue 52, Los Angeles, CA 90042": + - /url: /listing/404-north-avenue-52-los-angeles-ca-89227753 + - img "404 North Avenue 52" + - generic: $1,150,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,124 sqft + - generic: 404 North Avenue 52, Los Angeles, CA 90042 + - link "2267 Duane Street, Unit 3 $1,699,000 3 beds 4 baths 2,644 sqft 2267 Duane Street, Unit 3, Los Angeles, CA 90039": + - /url: /listing/2267-duane-street-unit-3-los-angeles-ca-07728865 + - img "2267 Duane Street, Unit 3" + - generic: $1,699,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,644 sqft + - generic: 2267 Duane Street, Unit 3, Los Angeles, CA 90039 + - link "9149 Hillsboro Drive $2,299,000 3 beds 2 baths 2,740 sqft 9149 Hillsboro Drive, Los Angeles, CA 90034": + - /url: /listing/9149-hillsboro-drive-los-angeles-ca-69721649 + - img "9149 Hillsboro Drive" + - generic: $2,299,000 + - generic: 3 beds + - generic: 2 baths + - generic: 2,740 sqft + - generic: 9149 Hillsboro Drive, Los Angeles, CA 90034 + - link "Pending 1215 Brockton Avenue, Unit 203 $949,000 2 beds 2 baths 1,581 sqft 1215 Brockton Avenue, Unit 203, Los Angeles, CA 90025": + - /url: /listing/1215-brockton-avenue-unit-203-los-angeles-ca-98411753 + - generic: Pending + - img "1215 Brockton Avenue, Unit 203" + - generic: $949,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,581 sqft + - generic: 1215 Brockton Avenue, Unit 203, Los Angeles, CA 90025 + - link "6374 Macal Place $1,495,000 2 beds 2 baths 1,532 sqft 6374 Macal Place, Los Angeles, CA 90068": + - /url: /listing/6374-macal-place-los-angeles-ca-76499777 + - img "6374 Macal Place" + - generic: $1,495,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,532 sqft + - generic: 6374 Macal Place, Los Angeles, CA 90068 + - link "Compass Exclusive 3310 Elizabeth Street $2,985,000 4 beds 4 baths 2,643 sqft 3310 Elizabeth Street, Miami, FL 33133": + - /url: /listing/3310-elizabeth-street-miami-fl-82744289 + - generic: Compass Exclusive + - img "3310 Elizabeth Street" + - generic: $2,985,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,643 sqft + - generic: 3310 Elizabeth Street, Miami, FL 33133 + - link "Compass Exclusive 3770 Kumquat Avenue $4,950,000 5 beds 6 baths 3,875 sqft 3770 Kumquat Avenue, Miami, FL 33133": + - /url: /listing/3770-kumquat-avenue-miami-fl-74731745 + - generic: Compass Exclusive + - img "3770 Kumquat Avenue" + - generic: $4,950,000 + - generic: 5 beds + - generic: 6 baths + - generic: 3,875 sqft + - generic: 3770 Kumquat Avenue, Miami, FL 33133 + - link "Compass Exclusive 1698 Tigertail Avenue $7,950,000 6 beds 7 baths 5,300 sqft 1698 Tigertail Avenue, Miami, FL 33133": + - /url: /listing/1698-tigertail-avenue-miami-fl-36067401 + - generic: Compass Exclusive + - img "1698 Tigertail Avenue" + - generic: $7,950,000 + - generic: 6 beds + - generic: 7 baths + - generic: 5,300 sqft + - generic: 1698 Tigertail Avenue, Miami, FL 33133 + - link "Compass Exclusive 9715 Southwest 89th Court $4,900,000 6 beds 7 baths 6,718 sqft 9715 Southwest 89th Court, Miami, FL 33176": + - /url: /listing/9715-southwest-89th-court-miami-fl-22349377 + - generic: Compass Exclusive + - img "9715 Southwest 89th Court" + - generic: $4,900,000 + - generic: 6 beds + - generic: 7 baths + - generic: 6,718 sqft + - generic: 9715 Southwest 89th Court, Miami, FL 33176 + - link "199 Caoba Court $13,995,000 5 beds 6.5 baths 5,342 sqft 199 Caoba Court, Coral Gables, FL 33143": + - /url: /listing/199-caoba-court-miami-fl-22699249 + - img "199 Caoba Court" + - generic: $13,995,000 + - generic: 5 beds + - generic: 6.5 baths + - generic: 5,342 sqft + - generic: 199 Caoba Court, Coral Gables, FL 33143 + - link "Compass Exclusive 2655 South Bayshore Drive, Unit 1801/02 $15,750,000 6 beds 7 baths 5,353 sqft 2655 South Bayshore Drive, Unit 1801/02, Miami, FL 33133": + - /url: /listing/2655-south-bayshore-drive-unit-1801-02-miami-fl-32879425 + - generic: Compass Exclusive + - img "2655 South Bayshore Drive, Unit 1801/02" + - generic: $15,750,000 + - generic: 6 beds + - generic: 7 baths + - generic: 5,353 sqft + - generic: 2655 South Bayshore Drive, Unit 1801/02, Miami, FL 33133 + - link "Compass Exclusive 17145 Southwest 90th Avenue $1,650,000 3 beds 2 baths 1,514 sqft 17145 Southwest 90th Avenue, Miami, FL 33157": + - /url: /listing/17145-southwest-90th-avenue-miami-fl-57531361 + - generic: Compass Exclusive + - img "17145 Southwest 90th Avenue" + - generic: $1,650,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,514 sqft + - generic: 17145 Southwest 90th Avenue, Miami, FL 33157 + - link "Compass Exclusive 6716 San Vicente Street $8,250,000 6 beds — baths — sqft 6716 San Vicente Street, Miami, FL 33146": + - /url: /listing/6716-san-vicente-street-miami-fl-45424521 + - generic: Compass Exclusive + - img "6716 San Vicente Street" + - generic: $8,250,000 + - generic: 6 beds + - generic: — baths + - generic: — sqft + - generic: 6716 San Vicente Street, Miami, FL 33146 + - link "Compass Exclusive 1247 Anastasia Avenue $2,500,000 3 beds 4 baths 2,525 sqft 1247 Anastasia Avenue, Miami, FL 33134": + - /url: /listing/1247-anastasia-avenue-miami-fl-83144857 + - generic: Compass Exclusive + - img "1247 Anastasia Avenue" + - generic: $2,500,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,525 sqft + - generic: 1247 Anastasia Avenue, Miami, FL 33134 + - link "Compass Exclusive 170 Northwest 44th Street $2,749,000 4 beds 4.5 baths — sqft 170 Northwest 44th Street, Miami, FL 33127": + - /url: /listing/170-northwest-44th-street-miami-fl-16681681 + - generic: Compass Exclusive + - img "170 Northwest 44th Street" + - generic: $2,749,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: — sqft + - generic: 170 Northwest 44th Street, Miami, FL 33127 + - link "Compass Exclusive 8365 Southwest 163rd Street $1,299,000 4 beds 3 baths 4,042 sqft 8365 Southwest 163rd Street, Miami, FL 33157": + - /url: /listing/8365-southwest-163rd-street-miami-fl-15682265 + - generic: Compass Exclusive + - img "8365 Southwest 163rd Street" + - generic: $1,299,000 + - generic: 4 beds + - generic: 3 baths + - generic: 4,042 sqft + - generic: 8365 Southwest 163rd Street, Miami, FL 33157 + - link "Compass Exclusive 8768 Southwest 62nd Court $3,900,000 5 beds 4 baths 4,154 sqft 8768 Southwest 62nd Court, Miami, FL 33156": + - /url: /listing/8768-southwest-62nd-court-miami-fl-15361945 + - generic: Compass Exclusive + - img "8768 Southwest 62nd Court" + - generic: $3,900,000 + - generic: 5 beds + - generic: 4 baths + - generic: 4,154 sqft + - generic: 8768 Southwest 62nd Court, Miami, FL 33156 + - link "Compass Exclusive 79 Southwest 12th Street, Unit 2201S $680,000 2 beds 2 baths 1,099 sqft 79 Southwest 12th Street, Unit 2201S, Miami, FL 33130": + - /url: /listing/79-southwest-12th-street-unit-2201s-miami-fl-99869049 + - generic: Compass Exclusive + - img "79 Southwest 12th Street, Unit 2201S" + - generic: $680,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,099 sqft + - generic: 79 Southwest 12th Street, Unit 2201S, Miami, FL 33130 + - link "Compass Exclusive Rockwell Island $5,000,000 4 beds 4.5 baths 4,588 sqft Rockwell Island, Miami, FL 33133": + - /url: /listing/rockwell-island-miami-fl-94376561 + - generic: Compass Exclusive + - img "Rockwell Island" + - generic: $5,000,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 4,588 sqft + - generic: Rockwell Island, Miami, FL 33133 + - link "Compass Exclusive 3770-3792 Kumquat Avenue $6,495,000 5 beds 6 baths 3,875 sqft 3770-3792 Kumquat Avenue, Miami, FL 33133": + - /url: /listing/3770-3792-kumquat-avenue-miami-fl-58538897 + - generic: Compass Exclusive + - img "3770-3792 Kumquat Avenue" + - generic: $6,495,000 + - generic: 5 beds + - generic: 6 baths + - generic: 3,875 sqft + - generic: 3770-3792 Kumquat Avenue, Miami, FL 33133 + - link "Compass Exclusive 8610 Southwest 83rd Street $1,275,000 4 beds 3 baths 2,660 sqft 8610 Southwest 83rd Street, Miami, FL 33143": + - /url: /listing/8610-southwest-83rd-street-miami-fl-41596097 + - generic: Compass Exclusive + - img "8610 Southwest 83rd Street" + - generic: $1,275,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,660 sqft + - generic: 8610 Southwest 83rd Street, Miami, FL 33143 + - link "88 Southwest 7th Street, Unit PH4303 $5,799,900 3 beds 4.5 baths 3,115 sqft 88 Southwest 7th Street, Unit PH4303, Miami, FL 33130": + - /url: /listing/88-southwest-7th-street-unit-ph4303-miami-fl-12289809 + - img "88 Southwest 7th Street, Unit PH4303" + - generic: $5,799,900 + - generic: 3 beds + - generic: 4.5 baths + - generic: 3,115 sqft + - generic: 88 Southwest 7th Street, Unit PH4303, Miami, FL 33130 + - link "Compass Exclusive Rockwell Island $6,532,000 6 beds 0 baths 6,501 sqft Rockwell Island, Miami, FL 33133": + - /url: /listing/rockwell-island-miami-fl-97872137 + - generic: Compass Exclusive + - img "Rockwell Island" + - generic: $6,532,000 + - generic: 6 beds + - generic: 0 baths + - generic: 6,501 sqft + - generic: Rockwell Island, Miami, FL 33133 + - link "6228 Northwest 4th Avenue $609,900 — beds — baths 1,639 sqft 6228 Northwest 4th Avenue, Miami, FL 33150": + - /url: /listing/6228-northwest-4th-avenue-miami-fl-18454937 + - img "6228 Northwest 4th Avenue" + - generic: $609,900 + - generic: — beds + - generic: — baths + - generic: 1,639 sqft + - generic: 6228 Northwest 4th Avenue, Miami, FL 33150 + - link "New 8430 Southwest 98th Street $3,995,000 5 beds 4.5 baths 5,289 sqft 8430 Southwest 98th Street, Miami, FL 33156": + - /url: /listing/8430-southwest-98th-street-miami-fl-70937905 + - generic: New + - img "8430 Southwest 98th Street" + - generic: $3,995,000 + - generic: 5 beds + - generic: 4.5 baths + - generic: 5,289 sqft + - generic: 8430 Southwest 98th Street, Miami, FL 33156 + - link "Compass Exclusive 3341-3433 Southwest 16th Terrace $1,798,000 6 beds 6 baths 3,704 sqft 3341-3433 Southwest 16th Terrace, Miami, FL 33145": + - /url: /listing/3341-3433-southwest-16th-terrace-miami-fl-57747233 + - generic: Compass Exclusive + - img "3341-3433 Southwest 16th Terrace" + - generic: $1,798,000 + - generic: 6 beds + - generic: 6 baths + - generic: 3,704 sqft + - generic: 3341-3433 Southwest 16th Terrace, Miami, FL 33145 + - link "Compass Exclusive 229 Ridgewood Road $8,888,000 6 beds 7 baths 5,437 sqft 229 Ridgewood Road, Miami, FL 33133": + - /url: /listing/229-ridgewood-road-miami-fl-81418745 + - generic: Compass Exclusive + - img "229 Ridgewood Road" + - generic: $8,888,000 + - generic: 6 beds + - generic: 7 baths + - generic: 5,437 sqft + - generic: 229 Ridgewood Road, Miami, FL 33133 + - link "Compass Exclusive 485 Brickell Avenue, Unit 1909 $875,000 2 beds 1 baths 953 sqft 485 Brickell Avenue, Unit 1909, Miami, FL 33131": + - /url: /listing/485-brickell-avenue-unit-1909-miami-fl-05393601 + - generic: Compass Exclusive + - img "485 Brickell Avenue, Unit 1909" + - generic: $875,000 + - generic: 2 beds + - generic: 1 baths + - generic: 953 sqft + - generic: 485 Brickell Avenue, Unit 1909, Miami, FL 33131 + - link "808 Brickell Key Drive, Unit 408 $1,975,000 2 beds 2.5 baths 2,093 sqft 808 Brickell Key Drive, Unit 408, Miami, FL 33131": + - /url: /listing/808-brickell-key-drive-unit-408-miami-fl-22977241 + - img "808 Brickell Key Drive, Unit 408" + - generic: $1,975,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 2,093 sqft + - generic: 808 Brickell Key Drive, Unit 408, Miami, FL 33131 + - link "Compass Exclusive 480 Northeast 31st Street, Unit PH5402 $4,500,000 3 beds 4.5 baths 2,112 sqft 480 Northeast 31st Street, Unit PH5402, Miami, FL 33137": + - /url: /listing/480-northeast-31st-street-unit-ph5402-miami-fl-31923921 + - generic: Compass Exclusive + - img "480 Northeast 31st Street, Unit PH5402" + - generic: $4,500,000 + - generic: 3 beds + - generic: 4.5 baths + - generic: 2,112 sqft + - generic: 480 Northeast 31st Street, Unit PH5402, Miami, FL 33137 + - link "Compass Exclusive 485 Brickell Avenue, Unit 1609 $875,000 2 beds 1 baths 953 sqft 485 Brickell Avenue, Unit 1609, Miami, FL 33131": + - /url: /listing/485-brickell-avenue-unit-1609-miami-fl-35885545 + - generic: Compass Exclusive + - img "485 Brickell Avenue, Unit 1609" + - generic: $875,000 + - generic: 2 beds + - generic: 1 baths + - generic: 953 sqft + - generic: 485 Brickell Avenue, Unit 1609, Miami, FL 33131 + - link "Compass Exclusive 13052 Southwest 26th Street $1,600,000 — beds — baths — sqft 13052 Southwest 26th Street, Miami, FL 33175": + - /url: /listing/13052-southwest-26th-street-miami-fl-94615185 + - generic: Compass Exclusive + - img "13052 Southwest 26th Street" + - generic: $1,600,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 13052 Southwest 26th Street, Miami, FL 33175 + - link "Compass Exclusive 1425 Brickell Avenue, Unit 42F $11,750,000 3 beds 4.5 baths 3,913 sqft 1425 Brickell Avenue, Unit 42F, Miami, FL 33131": + - /url: /listing/1425-brickell-avenue-unit-42f-miami-fl-85366897 + - generic: Compass Exclusive + - img "1425 Brickell Avenue, Unit 42F" + - generic: $11,750,000 + - generic: 3 beds + - generic: 4.5 baths + - generic: 3,913 sqft + - generic: 1425 Brickell Avenue, Unit 42F, Miami, FL 33131 + - link "Compass Exclusive 3245 Southwest 59th Avenue $1,895,000 4 beds 4 baths 3,269 sqft 3245 Southwest 59th Avenue, Miami, FL 33155": + - /url: /listing/3245-southwest-59th-avenue-miami-fl-10928377 + - generic: Compass Exclusive + - img "3245 Southwest 59th Avenue" + - generic: $1,895,000 + - generic: 4 beds + - generic: 4 baths + - generic: 3,269 sqft + - generic: 3245 Southwest 59th Avenue, Miami, FL 33155 + - link "Compass Exclusive 200 Biscayne Blvd Way, Unit 4812 $975,000 2 beds 3 baths 1,237 sqft 200 Biscayne Blvd Way, Unit 4812, Miami, FL 33131": + - /url: /listing/200-biscayne-blvd-way-unit-4812-miami-fl-36678801 + - generic: Compass Exclusive + - img "200 Biscayne Blvd Way, Unit 4812" + - generic: $975,000 + - generic: 2 beds + - generic: 3 baths + - generic: 1,237 sqft + - generic: 200 Biscayne Blvd Way, Unit 4812, Miami, FL 33131 + - link "Compass Exclusive 300 Biscayne Blvd Way, Unit 2103 $4,690,000 3 beds 5 baths 3,078 sqft 300 Biscayne Blvd Way, Unit 2103, Miami, FL 33131": + - /url: /listing/300-biscayne-blvd-way-unit-2103-miami-fl-62476721 + - generic: Compass Exclusive + - img "300 Biscayne Blvd Way, Unit 2103" + - generic: $4,690,000 + - generic: 3 beds + - generic: 5 baths + - generic: 3,078 sqft + - generic: 300 Biscayne Blvd Way, Unit 2103, Miami, FL 33131 + - link "Compass Exclusive 302134005-0535 $315,000 — beds 0 baths — sqft 302134005-0535 , Miami, FL 33167": + - /url: /listing/302134005-0535-miami-fl-19369297 + - generic: Compass Exclusive + - img "302134005-0535" + - generic: $315,000 + - generic: — beds + - generic: 0 baths + - generic: — sqft + - generic: 302134005-0535 , Miami, FL 33167 + - link "1201 Northeast 83rd Street $9,800,000 10 beds 10 baths 8,573 sqft 1201 Northeast 83rd Street, Miami, FL 33138": + - /url: /listing/1201-northeast-83rd-street-miami-fl-86057233 + - img "1201 Northeast 83rd Street" + - generic: $9,800,000 + - generic: 10 beds + - generic: 10 baths + - generic: 8,573 sqft + - generic: 1201 Northeast 83rd Street, Miami, FL 33138 + - link "Compass Exclusive 1423 Quesada Avenue $999,000 3 beds 2 baths 1,975 sqft 1423 Quesada Avenue, San Francisco, CA 94124": + - /url: /listing/1423-quesada-avenue-san-francisco-ca-44057905 + - generic: Compass Exclusive + - img "1423 Quesada Avenue" + - generic: $999,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,975 sqft + - generic: 1423 Quesada Avenue, San Francisco, CA 94124 + - link "Compass Exclusive Walnut Street $5,500,000 6 beds 5 baths 4,300 sqft Walnut Street, San Francisco, CA 94118": + - /url: /listing/walnut-street-san-francisco-ca-05333337 + - generic: Compass Exclusive + - img "Walnut Street" + - generic: $5,500,000 + - generic: 6 beds + - generic: 5 baths + - generic: 4,300 sqft + - generic: Walnut Street, San Francisco, CA 94118 + - link "Compass Exclusive 420 Mission Bay Boulevard North, Unit 120 $899,000 1 beds 1 baths 928 sqft 420 Mission Bay Boulevard North, Unit 120, San Francisco, CA 94158": + - /url: /listing/420-mission-bay-boulevard-north-unit-120-san-francisco-ca-72469257 + - generic: Compass Exclusive + - img "420 Mission Bay Boulevard North, Unit 120" + - generic: $899,000 + - generic: 1 beds + - generic: 1 baths + - generic: 928 sqft + - generic: 420 Mission Bay Boulevard North, Unit 120, San Francisco, CA 94158 + - link "Compass Exclusive 715 Page Street $1,895,000 2 beds 2 baths 1,326 sqft 715 Page Street, San Francisco, CA 94117": + - /url: /listing/715-page-street-san-francisco-ca-83541689 + - generic: Compass Exclusive + - img "715 Page Street" + - generic: $1,895,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,326 sqft + - generic: 715 Page Street, San Francisco, CA 94117 + - link "Compass Exclusive 738 Long Bridge Street, Unit 205 $1,820,000 2 beds 2 baths 1,437 sqft 738 Long Bridge Street, Unit 205, San Francisco, CA 94158": + - /url: /listing/738-long-bridge-street-unit-205-san-francisco-ca-43768129 + - generic: Compass Exclusive + - img "738 Long Bridge Street, Unit 205" + - generic: $1,820,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,437 sqft + - generic: 738 Long Bridge Street, Unit 205, San Francisco, CA 94158 + - link "Compass Exclusive 415 Buena Vista Avenue East $5,950,000 5 beds 4.5 baths — sqft 415 Buena Vista Avenue East, San Francisco, CA 94117": + - /url: /listing/415-buena-vista-avenue-east-san-francisco-ca-96660801 + - generic: Compass Exclusive + - img "415 Buena Vista Avenue East" + - generic: $5,950,000 + - generic: 5 beds + - generic: 4.5 baths + - generic: — sqft + - generic: 415 Buena Vista Avenue East, San Francisco, CA 94117 + - link "Compass Exclusive 522 Hickory Street $3,800,000 3 beds 4 baths 2,982 sqft 522 Hickory Street, San Francisco, CA 94102": + - /url: /listing/522-hickory-street-san-francisco-ca-66255609 + - generic: Compass Exclusive + - img "522 Hickory Street" + - generic: $3,800,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,982 sqft + - generic: 522 Hickory Street, San Francisco, CA 94102 + - link "Compass Exclusive 2401 16th Street $993,775 0 beds 2 baths 2,384 sqft 2401 16th Street, San Francisco, CA 94110": + - /url: /listing/2401-16th-street-san-francisco-ca-30407017 + - generic: Compass Exclusive + - img "2401 16th Street" + - generic: $993,775 + - generic: 0 beds + - generic: 2 baths + - generic: 2,384 sqft + - generic: 2401 16th Street, San Francisco, CA 94110 + - link "Compass Exclusive 733 Front Street, Unit 203 $1,049,000 — beds — baths 949 sqft 733 Front Street, Unit 203, San Francisco, CA 94111": + - /url: /listing/733-front-street-unit-203-san-francisco-ca-37192393 + - generic: Compass Exclusive + - img "733 Front Street, Unit 203" + - generic: $1,049,000 + - generic: — beds + - generic: — baths + - generic: 949 sqft + - generic: 733 Front Street, Unit 203, San Francisco, CA 94111 + - link "Compass Exclusive 999 Green Street, Unit 1401 $2,695,000 1 beds 2 baths 1,473 sqft 999 Green Street, Unit 1401, San Francisco, CA 94133": + - /url: /listing/999-green-street-unit-1401-san-francisco-ca-60165145 + - generic: Compass Exclusive + - img "999 Green Street, Unit 1401" + - generic: $2,695,000 + - generic: 1 beds + - generic: 2 baths + - generic: 1,473 sqft + - generic: 999 Green Street, Unit 1401, San Francisco, CA 94133 + - link "Compass Exclusive 400 Grove Street, Unit 504 $1,695,000 2 beds 2 baths — sqft 400 Grove Street, Unit 504, San Francisco, CA 94102": + - /url: /listing/400-grove-street-unit-504-san-francisco-ca-43941473 + - generic: Compass Exclusive + - img "400 Grove Street, Unit 504" + - generic: $1,695,000 + - generic: 2 beds + - generic: 2 baths + - generic: — sqft + - generic: 400 Grove Street, Unit 504, San Francisco, CA 94102 + - link "Compass Exclusive 88 King Street, Unit 504 $999,900 2 beds 2 baths 1,154 sqft 88 King Street, Unit 504, San Francisco, CA 94107": + - /url: /listing/88-king-street-unit-504-san-francisco-ca-53479305 + - generic: Compass Exclusive + - img "88 King Street, Unit 504" + - generic: $999,900 + - generic: 2 beds + - generic: 2 baths + - generic: 1,154 sqft + - generic: 88 King Street, Unit 504, San Francisco, CA 94107 + - link "Compass Exclusive 201 Fell Street $67,000 — beds 0 baths 350 sqft 201 Fell Street, San Francisco, CA 94102": + - /url: /listing/201-fell-street-san-francisco-ca-60550161 + - generic: Compass Exclusive + - img "201 Fell Street" + - generic: $67,000 + - generic: — beds + - generic: 0 baths + - generic: 350 sqft + - generic: 201 Fell Street, San Francisco, CA 94102 + - link "Compass Exclusive 1542 15th Street $1,295,000 3 beds 1.5 baths 1,380 sqft 1542 15th Street, San Francisco, CA 94103": + - /url: /listing/1542-15th-street-san-francisco-ca-68920025 + - generic: Compass Exclusive + - img "1542 15th Street" + - generic: $1,295,000 + - generic: 3 beds + - generic: 1.5 baths + - generic: 1,380 sqft + - generic: 1542 15th Street, San Francisco, CA 94103 + - link "Compass Exclusive 417 Buena Vista Avenue East $1,590,000 — beds — baths — sqft 417 Buena Vista Avenue East, San Francisco, CA 94117": + - /url: /listing/417-buena-vista-avenue-east-san-francisco-ca-11779665 + - generic: Compass Exclusive + - img "417 Buena Vista Avenue East" + - generic: $1,590,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 417 Buena Vista Avenue East, San Francisco, CA 94117 + - link "Compass Exclusive 211 Steiner Street $213,000 — beds 0 baths 1,400 sqft 211 Steiner Street, San Francisco, CA 94117": + - /url: /listing/211-steiner-street-san-francisco-ca-55126769 + - generic: Compass Exclusive + - img "211 Steiner Street" + - generic: $213,000 + - generic: — beds + - generic: 0 baths + - generic: 1,400 sqft + - generic: 211 Steiner Street, San Francisco, CA 94117 + - link "Compass Exclusive 2740 38th Avenue $1,900,000 6 beds 3 baths 2,990 sqft 2740 38th Avenue, San Francisco, CA 94116": + - /url: /listing/2740-38th-avenue-san-francisco-ca-33865425 + - generic: Compass Exclusive + - img "2740 38th Avenue" + - generic: $1,900,000 + - generic: 6 beds + - generic: 3 baths + - generic: 2,990 sqft + - generic: 2740 38th Avenue, San Francisco, CA 94116 + - link "Compass Exclusive 1330-1332 Greenwich Street $8,995,000 5 beds 6 baths 4,447 sqft 1330-1332 Greenwich Street, San Francisco, CA 94109": + - /url: /listing/1330-1332-greenwich-street-san-francisco-ca-46862593 + - generic: Compass Exclusive + - img "1330-1332 Greenwich Street" + - generic: $8,995,000 + - generic: 5 beds + - generic: 6 baths + - generic: 4,447 sqft + - generic: 1330-1332 Greenwich Street, San Francisco, CA 94109 + - link "200 Brannan Street, Unit 130 $1,475,000 1 beds 1.5 baths 1,645 sqft 200 Brannan Street, Unit 130, San Francisco, CA 94107": + - /url: /listing/200-brannan-street-unit-130-san-francisco-ca-32648585 + - img "200 Brannan Street, Unit 130" + - generic: $1,475,000 + - generic: 1 beds + - generic: 1.5 baths + - generic: 1,645 sqft + - generic: 200 Brannan Street, Unit 130, San Francisco, CA 94107 + - link "Compass Exclusive 1821 North Milwaukee Avenue, Unit 401 $650,000 2 beds 2 baths 1,445 sqft 1821 North Milwaukee Avenue, Unit 401, Chicago, IL 60647": + - /url: /listing/1821-north-milwaukee-avenue-unit-401-chicago-il-78121113 + - generic: Compass Exclusive + - img "1821 North Milwaukee Avenue, Unit 401" + - generic: $650,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,445 sqft + - generic: 1821 North Milwaukee Avenue, Unit 401, Chicago, IL 60647 + - link "Compass Exclusive 1600 West Greenleaf Avenue, Unit 303 $163,000 — beds — baths — sqft 1600 West Greenleaf Avenue, Unit 303, Chicago, IL 60626": + - /url: /listing/1600-west-greenleaf-avenue-unit-303-chicago-il-88621545 + - generic: Compass Exclusive + - img "1600 West Greenleaf Avenue, Unit 303" + - generic: $163,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 1600 West Greenleaf Avenue, Unit 303, Chicago, IL 60626 + - link "Compass Exclusive 1946 West Armitage Avenue $1,099,000 5 beds 3 baths — sqft 1946 West Armitage Avenue, Chicago, IL 60622": + - /url: /listing/1946-west-armitage-avenue-chicago-il-75360473 + - generic: Compass Exclusive + - img "1946 West Armitage Avenue" + - generic: $1,099,000 + - generic: 5 beds + - generic: 3 baths + - generic: — sqft + - generic: 1946 West Armitage Avenue, Chicago, IL 60622 + - link "Compass Exclusive 2926 West Lyndale Street $1,100,000 4 beds 4 baths — sqft 2926 West Lyndale Street, Chicago, IL 60647": + - /url: /listing/2926-west-lyndale-street-chicago-il-09848473 + - generic: Compass Exclusive + - img "2926 West Lyndale Street" + - generic: $1,100,000 + - generic: 4 beds + - generic: 4 baths + - generic: — sqft + - generic: 2926 West Lyndale Street, Chicago, IL 60647 + - link "4627 North Kenmore Avenue, Unit 1E $425,000 2 beds 2.5 baths 1,500 sqft 4627 North Kenmore Avenue, Unit 1E, Chicago, IL 60640": + - /url: /listing/4627-north-kenmore-avenue-unit-1e-chicago-il-01630305 + - img "4627 North Kenmore Avenue, Unit 1E" + - generic: $425,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,500 sqft + - generic: 4627 North Kenmore Avenue, Unit 1E, Chicago, IL 60640 + - link "Compass Exclusive 1639 North Dayton Street $2,795,000 6 beds 6 baths — sqft 1639 North Dayton Street, Chicago, IL 60614": + - /url: /listing/1639-north-dayton-street-chicago-il-17330249 + - generic: Compass Exclusive + - img "1639 North Dayton Street" + - generic: $2,795,000 + - generic: 6 beds + - generic: 6 baths + - generic: — sqft + - generic: 1639 North Dayton Street, Chicago, IL 60614 + - link "Compass Exclusive 815 North Marshfield Avenue, Unit 204 $550,000 2 beds 2 baths 1,100 sqft 815 North Marshfield Avenue, Unit 204, Chicago, IL 60622": + - /url: /listing/815-north-marshfield-avenue-unit-204-chicago-il-87885121 + - generic: Compass Exclusive + - img "815 North Marshfield Avenue, Unit 204" + - generic: $550,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,100 sqft + - generic: 815 North Marshfield Avenue, Unit 204, Chicago, IL 60622 + - link "Compass Exclusive 4152 North Damen Avenue $1,095,000 5 beds 3 baths — sqft 4152 North Damen Avenue, Chicago, IL 60618": + - /url: /listing/4152-north-damen-avenue-chicago-il-31341033 + - generic: Compass Exclusive + - img "4152 North Damen Avenue" + - generic: $1,095,000 + - generic: 5 beds + - generic: 3 baths + - generic: — sqft + - generic: 4152 North Damen Avenue, Chicago, IL 60618 + - link "Compass Exclusive 2254 West Chicago Avenue, Unit 5S $965,000 3 beds 2 baths — sqft 2254 West Chicago Avenue, Unit 5S, Chicago, IL 60622": + - /url: /listing/2252-west-chicago-avenue-unit-5s-chicago-il-31183913 + - generic: Compass Exclusive + - img "2254 West Chicago Avenue, Unit 5S" + - generic: $965,000 + - generic: 3 beds + - generic: 2 baths + - generic: — sqft + - generic: 2254 West Chicago Avenue, Unit 5S, Chicago, IL 60622 + - link "Compass Exclusive 1702 North Campbell Avenue $1,200,000 7 beds 4 baths — sqft 1702 North Campbell Avenue, Chicago, IL 60647": + - /url: /listing/1702-north-campbell-avenue-chicago-il-04325137 + - generic: Compass Exclusive + - img "1702 North Campbell Avenue" + - generic: $1,200,000 + - generic: 7 beds + - generic: 4 baths + - generic: — sqft + - generic: 1702 North Campbell Avenue, Chicago, IL 60647 + - link "Compass Exclusive 2252 West Chicago Avenue, Unit 2S $845,000 3 beds 2 baths — sqft 2252 West Chicago Avenue, Unit 2S, Chicago, IL 60622": + - /url: /listing/2252-west-chicago-avenue-unit-2s-chicago-il-49591921 + - generic: Compass Exclusive + - img "2252 West Chicago Avenue, Unit 2S" + - generic: $845,000 + - generic: 3 beds + - generic: 2 baths + - generic: — sqft + - generic: 2252 West Chicago Avenue, Unit 2S, Chicago, IL 60622 + - link "Compass Exclusive 2707 West Belmont Avenue, Unit 3E $625,000 3 beds 2 baths 1,700 sqft 2707 West Belmont Avenue, Unit 3E, Chicago, IL 60618": + - /url: /listing/2707-west-belmont-avenue-unit-3e-chicago-il-79058521 + - generic: Compass Exclusive + - img "2707 West Belmont Avenue, Unit 3E" + - generic: $625,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,700 sqft + - generic: 2707 West Belmont Avenue, Unit 3E, Chicago, IL 60618 + - link "Compass Exclusive 4755 North Washtenaw Avenue, Unit 407 $425,000 2 beds 2 baths — sqft 4755 North Washtenaw Avenue, Unit 407, Chicago, IL 60625": + - /url: /listing/4755-north-washtenaw-avenue-unit-407-chicago-il-16471945 + - generic: Compass Exclusive + - img "4755 North Washtenaw Avenue, Unit 407" + - generic: $425,000 + - generic: 2 beds + - generic: 2 baths + - generic: — sqft + - generic: 4755 North Washtenaw Avenue, Unit 407, Chicago, IL 60625 + - link "Compass Exclusive 2715 North Bosworth Avenue $2,295,000 5 beds 4 baths — sqft 2715 North Bosworth Avenue, Chicago, IL 60614": + - /url: /listing/2715-north-bosworth-avenue-chicago-il-54813449 + - generic: Compass Exclusive + - img "2715 North Bosworth Avenue" + - generic: $2,295,000 + - generic: 5 beds + - generic: 4 baths + - generic: — sqft + - generic: 2715 North Bosworth Avenue, Chicago, IL 60614 + - link "Compass Exclusive 449 West Fullerton Avenue $1,995,000 4 beds 5 baths — sqft 449 West Fullerton Avenue, Chicago, IL 60614": + - /url: /listing/449-west-fullerton-avenue-chicago-il-34643817 + - generic: Compass Exclusive + - img "449 West Fullerton Avenue" + - generic: $1,995,000 + - generic: 4 beds + - generic: 5 baths + - generic: — sqft + - generic: 449 West Fullerton Avenue, Chicago, IL 60614 + - link "Compass Exclusive 1032 North Wood Street $2,599,000 6 beds 5 baths 5,000 sqft 1032 North Wood Street, Chicago, IL 60622": + - /url: /listing/1032-north-wood-street-chicago-il-83473945 + - generic: Compass Exclusive + - img "1032 North Wood Street" + - generic: $2,599,000 + - generic: 6 beds + - generic: 5 baths + - generic: 5,000 sqft + - generic: 1032 North Wood Street, Chicago, IL 60622 + - link "Compass Exclusive 2753 North Hermitage Avenue $999,000 3 beds 3 baths — sqft 2753 North Hermitage Avenue, Chicago, IL 60614": + - /url: /listing/2753-north-hermitage-avenue-chicago-il-36535953 + - generic: Compass Exclusive + - img "2753 North Hermitage Avenue" + - generic: $999,000 + - generic: 3 beds + - generic: 3 baths + - generic: — sqft + - generic: 2753 North Hermitage Avenue, Chicago, IL 60614 + - link "Compass Exclusive 2340 West Roscoe Street, Unit 3W $869,000 3 beds 3 baths 2,400 sqft 2340 West Roscoe Street, Unit 3W, Chicago, IL 60618": + - /url: /listing/2340-west-roscoe-street-unit-3w-chicago-il-29054457 + - generic: Compass Exclusive + - img "2340 West Roscoe Street, Unit 3W" + - generic: $869,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,400 sqft + - generic: 2340 West Roscoe Street, Unit 3W, Chicago, IL 60618 + - link "Pending 2329 North Cambridge Avenue, Unit G $1,950,000 3 beds 3.5 baths 2,915 sqft 2329 North Cambridge Avenue, Unit G, Chicago, IL 60614": + - /url: /listing/2329-north-cambridge-avenue-unit-g-chicago-il-50253617 + - generic: Pending + - img "2329 North Cambridge Avenue, Unit G" + - generic: $1,950,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 2,915 sqft + - generic: 2329 North Cambridge Avenue, Unit G, Chicago, IL 60614 + - link "421 West Huron Street, Unit 604 $514,900 2 beds 2 baths 1,195 sqft 421 West Huron Street, Unit 604, Chicago, IL 60654": + - /url: /listing/421-west-huron-street-unit-604-chicago-il-58037993 + - img "421 West Huron Street, Unit 604" + - generic: $514,900 + - generic: 2 beds + - generic: 2 baths + - generic: 1,195 sqft + - generic: 421 West Huron Street, Unit 604, Chicago, IL 60654 + - link "2329 North Cambridge Avenue, Unit C $2,100,000 4 beds 3.5 baths 2,930 sqft 2329 North Cambridge Avenue, Unit C, Chicago, IL 60614": + - /url: /listing/2329-north-cambridge-avenue-unit-c-chicago-il-21720449 + - img "2329 North Cambridge Avenue, Unit C" + - generic: $2,100,000 + - generic: 4 beds + - generic: 3.5 baths + - generic: 2,930 sqft + - generic: 2329 North Cambridge Avenue, Unit C, Chicago, IL 60614 + - link "Compass Exclusive 757 North Orleans Street, Unit 1004 $455,000 2 beds 2 baths 1,181 sqft 757 North Orleans Street, Unit 1004, Chicago, IL 60654": + - /url: /listing/757-north-orleans-street-unit-1004-chicago-il-51375689 + - generic: Compass Exclusive + - img "757 North Orleans Street, Unit 1004" + - generic: $455,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,181 sqft + - generic: 757 North Orleans Street, Unit 1004, Chicago, IL 60654 + - link "Compass Exclusive 3125 North Clybourn Avenue, Unit 2N $725,000 3 beds 2 baths 1,700 sqft 3125 North Clybourn Avenue, Unit 2N, Chicago, IL 60618": + - /url: /listing/3125-north-clybourn-avenue-unit-2n-chicago-il-98683425 + - generic: Compass Exclusive + - img "3125 North Clybourn Avenue, Unit 2N" + - generic: $725,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,700 sqft + - generic: 3125 North Clybourn Avenue, Unit 2N, Chicago, IL 60618 + - link "Compass Exclusive 2329 North Cambridge Avenue, Unit A $1,680,000 2 beds 3 baths 2,220 sqft 2329 North Cambridge Avenue, Unit A, Chicago, IL 60614": + - /url: /listing/2329-north-cambridge-avenue-unit-a-chicago-il-54391729 + - generic: Compass Exclusive + - img "2329 North Cambridge Avenue, Unit A" + - generic: $1,680,000 + - generic: 2 beds + - generic: 3 baths + - generic: 2,220 sqft + - generic: 2329 North Cambridge Avenue, Unit A, Chicago, IL 60614 + - link "Compass Exclusive 2720 North Ashland Avenue, Unit 2S $850,000 3 beds 2 baths 1,650 sqft 2720 North Ashland Avenue, Unit 2S, Chicago, IL 60614": + - /url: /listing/2720-north-ashland-avenue-unit-2s-chicago-il-26125497 + - generic: Compass Exclusive + - img "2720 North Ashland Avenue, Unit 2S" + - generic: $850,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,650 sqft + - generic: 2720 North Ashland Avenue, Unit 2S, Chicago, IL 60614 + - link "Compass Exclusive 2720 North Ashland Avenue, Unit 3S $950,000 3 beds 2 baths 1,800 sqft 2720 North Ashland Avenue, Unit 3S, Chicago, IL 60614": + - /url: /listing/2720-north-ashland-avenue-unit-3s-chicago-il-54056553 + - generic: Compass Exclusive + - img "2720 North Ashland Avenue, Unit 3S" + - generic: $950,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,800 sqft + - generic: 2720 North Ashland Avenue, Unit 3S, Chicago, IL 60614 + - link "Compass Exclusive 1951 West Huron Street $2,150,000 5 beds 3.5 baths 4,500 sqft 1951 West Huron Street, Chicago, IL 60622": + - /url: /listing/1951-west-huron-street-chicago-il-77703721 + - generic: Compass Exclusive + - img "1951 West Huron Street" + - generic: $2,150,000 + - generic: 5 beds + - generic: 3.5 baths + - generic: 4,500 sqft + - generic: 1951 West Huron Street, Chicago, IL 60622 + - link "Compass Exclusive 2471 North Albany Avenue $900,000 0 beds 0 baths — sqft 2471 North Albany Avenue, Chicago, IL 60647": + - /url: /listing/2471-north-albany-avenue-chicago-il-74707001 + - generic: Compass Exclusive + - img "2471 North Albany Avenue" + - generic: $900,000 + - generic: 0 beds + - generic: 0 baths + - generic: — sqft + - generic: 2471 North Albany Avenue, Chicago, IL 60647 + - link "Compass Exclusive 21 West Goethe Street, Unit 15A $274,900 1 beds 1 baths — sqft 21 West Goethe Street, Unit 15A, Chicago, IL 60610": + - /url: /listing/21-west-goethe-street-unit-15a-chicago-il-30603593 + - generic: Compass Exclusive + - img "21 West Goethe Street, Unit 15A" + - generic: $274,900 + - generic: 1 beds + - generic: 1 baths + - generic: — sqft + - generic: 21 West Goethe Street, Unit 15A, Chicago, IL 60610 + - link "Compass Exclusive 2232 North Dayton Street $3,100,000 4 beds 5 baths 3,986 sqft 2232 North Dayton Street, Chicago, IL 60614": + - /url: /listing/2232-north-dayton-street-chicago-il-90899201 + - generic: Compass Exclusive + - img "2232 North Dayton Street" + - generic: $3,100,000 + - generic: 4 beds + - generic: 5 baths + - generic: 3,986 sqft + - generic: 2232 North Dayton Street, Chicago, IL 60614 + - link "2 Douglass Park, Unit 5 $390,175 2 beds 1 baths 985 sqft 2 Douglass Park, Unit 5, Boston, MA 02118": + - /url: /listing/2-douglass-park-unit-5-boston-ma-44139993 + - img "2 Douglass Park, Unit 5" + - generic: $390,175 + - generic: 2 beds + - generic: 1 baths + - generic: 985 sqft + - generic: 2 Douglass Park, Unit 5, Boston, MA 02118 + - link "Compass Exclusive 40 Fay Street, Unit H706 $1,495,000 2 beds 1.5 baths 1,400 sqft 40 Fay Street, Unit H706, Boston, MA 02118": + - /url: /listing/40-fay-street-unit-h706-boston-ma-70060769 + - generic: Compass Exclusive + - img "40 Fay Street, Unit H706" + - generic: $1,495,000 + - generic: 2 beds + - generic: 1.5 baths + - generic: 1,400 sqft + - generic: 40 Fay Street, Unit H706, Boston, MA 02118 + - link "Compass Exclusive 554 East 5th Street, Unit 1 $899,000 2 beds 2 baths 1,140 sqft 554 East 5th Street, Unit 1, Boston, MA 02127": + - /url: /listing/554-east-5th-street-unit-1-boston-ma-48810625 + - generic: Compass Exclusive + - img "554 East 5th Street, Unit 1" + - generic: $899,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,140 sqft + - generic: 554 East 5th Street, Unit 1, Boston, MA 02127 + - link "Compass Exclusive 25 Isabella Street, Unit 502 $3,000,000 2 beds 2 baths 1,519 sqft 25 Isabella Street, Unit 502, Boston, MA 02116": + - /url: /listing/25-isabella-street-unit-502-boston-ma-54764753 + - generic: Compass Exclusive + - img "25 Isabella Street, Unit 502" + - generic: $3,000,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,519 sqft + - generic: 25 Isabella Street, Unit 502, Boston, MA 02116 + - link "Compass Exclusive 124 West Newton Street, Unit 2 $3,850,000 4 beds 3 baths 2,350 sqft 124 West Newton Street, Unit 2, Boston, MA 02118": + - /url: /listing/124-west-newton-street-unit-2-boston-ma-65814257 + - generic: Compass Exclusive + - img "124 West Newton Street, Unit 2" + - generic: $3,850,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,350 sqft + - generic: 124 West Newton Street, Unit 2, Boston, MA 02118 + - link "Compass Exclusive Address Upon Request $1,400,000 2 beds 2 baths 1,000 sqft Address Upon Request, Boston, MA 02114": + - /url: /listing/address-upon-request-boston-ma-70707233 + - generic: Compass Exclusive + - img "Address Upon Request" + - generic: $1,400,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,000 sqft + - generic: Address Upon Request, Boston, MA 02114 + - link "Compass Exclusive 90 Revere Street, Unit 2 $3,000,000 3 beds 3 baths 1,712 sqft 90 Revere Street, Unit 2, Boston, MA 02114": + - /url: /listing/90-revere-street-unit-2-boston-ma-39701289 + - generic: Compass Exclusive + - img "90 Revere Street, Unit 2" + - generic: $3,000,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,712 sqft + - generic: 90 Revere Street, Unit 2, Boston, MA 02114 + - link "Compass Exclusive 128 Marlborough Street, Unit 1 $1,250,000 2 beds — baths 1,041 sqft 128 Marlborough Street, Unit 1, Boston, MA 02116": + - /url: /listing/128-marlborough-street-unit-1-boston-ma-59759137 + - generic: Compass Exclusive + - img "128 Marlborough Street, Unit 1" + - generic: $1,250,000 + - generic: 2 beds + - generic: — baths + - generic: 1,041 sqft + - generic: 128 Marlborough Street, Unit 1, Boston, MA 02116 + - link "Compass Exclusive 725 East 6th Street, Unit 1 $1,100,000 3 beds 3 baths 1,622 sqft 725 East 6th Street, Unit 1, Boston, MA 02127": + - /url: /listing/725-east-6th-street-unit-1-boston-ma-55802753 + - generic: Compass Exclusive + - img "725 East 6th Street, Unit 1" + - generic: $1,100,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,622 sqft + - generic: 725 East 6th Street, Unit 1, Boston, MA 02127 + - link "Compass Exclusive 140 Shawmut Avenue, Unit 7A $2,695,000 4 beds 4 baths 2,596 sqft 140 Shawmut Avenue, Unit 7A, Boston, MA 02118": + - /url: /listing/140-shawmut-avenue-unit-7a-boston-ma-92069057 + - generic: Compass Exclusive + - img "140 Shawmut Avenue, Unit 7A" + - generic: $2,695,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,596 sqft + - generic: 140 Shawmut Avenue, Unit 7A, Boston, MA 02118 + - link "Compass Exclusive 60 Commonwealth Avenue, Unit 7 $2,680,000 3 beds 2 baths 1,500 sqft 60 Commonwealth Avenue, Unit 7, Boston, MA 02116": + - /url: /listing/60-commonwealth-avenue-unit-7-boston-ma-70186201 + - generic: Compass Exclusive + - img "60 Commonwealth Avenue, Unit 7" + - generic: $2,680,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,500 sqft + - generic: 60 Commonwealth Avenue, Unit 7, Boston, MA 02116 + - link "Compass Exclusive 90 Revere Street, Unit 3 $3,500,000 3 beds 2.5 baths 1,800 sqft 90 Revere Street, Unit 3, Boston, MA 02114": + - /url: /listing/90-revere-street-unit-3-boston-ma-25286625 + - generic: Compass Exclusive + - img "90 Revere Street, Unit 3" + - generic: $3,500,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,800 sqft + - generic: 90 Revere Street, Unit 3, Boston, MA 02114 + - link "Compass Exclusive 795 East 4th Street $2,799,000 4 beds 4 baths 2,783 sqft 795 East 4th Street, Boston, MA 02127": + - /url: /listing/795-east-4th-street-boston-ma-98397657 + - generic: Compass Exclusive + - img "795 East 4th Street" + - generic: $2,799,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,783 sqft + - generic: 795 East 4th Street, Boston, MA 02127 + - link "Compass Exclusive 321 Commonwealth Avenue, Unit 40 $2,350,000 2 beds 2 baths 1,425 sqft 321 Commonwealth Avenue, Unit 40, Boston, MA 02115": + - /url: /listing/321-commonwealth-avenue-unit-40-boston-ma-97621689 + - generic: Compass Exclusive + - img "321 Commonwealth Avenue, Unit 40" + - generic: $2,350,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,425 sqft + - generic: 321 Commonwealth Avenue, Unit 40, Boston, MA 02115 + - link "131 Mt Vernon Street, Unit 2 $2,995,000 4 beds 3 baths 2,183 sqft 131 Mt Vernon Street, Unit 2, Boston, MA 02108": + - /url: /listing/131-mt-vernon-street-unit-2-boston-ma-13405161 + - img "131 Mt Vernon Street, Unit 2" + - generic: $2,995,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,183 sqft + - generic: 131 Mt Vernon Street, Unit 2, Boston, MA 02108 + - link "Compass Exclusive 666 Massachusetts Avenue Price upon request 9 beds 7 baths 5,050 sqft 666 Massachusetts Avenue, Boston, MA 02118": + - /url: /listing/666-massachusetts-avenue-boston-ma-59548849 + - generic: Compass Exclusive + - img "666 Massachusetts Avenue" + - generic: Price upon request + - generic: 9 beds + - generic: 7 baths + - generic: 5,050 sqft + - generic: 666 Massachusetts Avenue, Boston, MA 02118 + - link "Compass Exclusive Address Upon Request $850,000 3 beds 2.5 baths 1,450 sqft Address Upon Request, Jamaica Plain, MA 02130": + - /url: /listing/address-upon-request-boston-ma-40517209 + - generic: Compass Exclusive + - img "Address Upon Request" + - generic: $850,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,450 sqft + - generic: Address Upon Request, Jamaica Plain, MA 02130 + - link "Compass Exclusive Address Upon Request $899,000 3 beds 2 baths 1,713 sqft Address Upon Request, Boston, MA 02125": + - /url: /listing/address-upon-request-boston-ma-41120841 + - generic: Compass Exclusive + - img "Address Upon Request" + - generic: $899,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,713 sqft + - generic: Address Upon Request, Boston, MA 02125 + - link "Compass Exclusive 137 Princeton Street, Unit 2 $599,000 2 beds — baths 1,108 sqft 137 Princeton Street, Unit 2, Boston, MA 02128": + - /url: /listing/137-princeton-street-unit-2-boston-ma-47303009 + - generic: Compass Exclusive + - img "137 Princeton Street, Unit 2" + - generic: $599,000 + - generic: 2 beds + - generic: — baths + - generic: 1,108 sqft + - generic: 137 Princeton Street, Unit 2, Boston, MA 02128 + - link "Compass Exclusive 16 A Meehan Street, Unit 1 $899,000 3 beds 2 baths 1,217 sqft 16 A Meehan Street, Unit 1, Boston, MA 02130": + - /url: /listing/16-a-meehan-street-unit-1-boston-ma-87157673 + - generic: Compass Exclusive + - img "16 A Meehan Street, Unit 1" + - generic: $899,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,217 sqft + - generic: 16 A Meehan Street, Unit 1, Boston, MA 02130 + - link "Compass Exclusive 167 Lexington Street, Unit 2 $650,000 2 beds 1 baths 634 sqft 167 Lexington Street, Unit 2, East Boston, MA 02128": + - /url: /listing/167-lexington-street-unit-2-boston-ma-32402377 + - generic: Compass Exclusive + - img "167 Lexington Street, Unit 2" + - generic: $650,000 + - generic: 2 beds + - generic: 1 baths + - generic: 634 sqft + - generic: 167 Lexington Street, Unit 2, East Boston, MA 02128 + - link "Compass Exclusive 319 A Street, Unit 211 $998,500 2 beds — baths 813 sqft 319 A Street, Unit 211, Boston, MA 02210": + - /url: /listing/319-a-street-unit-211-boston-ma-34030889 + - generic: Compass Exclusive + - img "319 A Street, Unit 211" + - generic: $998,500 + - generic: 2 beds + - generic: — baths + - generic: 813 sqft + - generic: 319 A Street, Unit 211, Boston, MA 02210 + - link "Compass Exclusive Gordon Street $2,100,000 5 beds 5 baths 3,651 sqft Gordon Street, Boston, MA 02130": + - /url: /listing/gordon-street-boston-ma-51920401 + - generic: Compass Exclusive + - img "Gordon Street" + - generic: $2,100,000 + - generic: 5 beds + - generic: 5 baths + - generic: 3,651 sqft + - generic: Gordon Street, Boston, MA 02130 + - link "Compass Exclusive 281 Newbury Street $6,000,000 8 beds 7 baths 5,510 sqft 281 Newbury Street, Boston, MA 02115": + - /url: /listing/281-newbury-street-boston-ma-80593441 + - generic: Compass Exclusive + - img "281 Newbury Street" + - generic: $6,000,000 + - generic: 8 beds + - generic: 7 baths + - generic: 5,510 sqft + - generic: 281 Newbury Street, Boston, MA 02115 + - link "Compass Exclusive 205 Park Lane $2,400,000 3 beds 3 baths 2,085 sqft 205 Park Lane, Austin, TX 78704": + - /url: /listing/205-park-lane-austin-tx-16311449 + - generic: Compass Exclusive + - img "205 Park Lane" + - generic: $2,400,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,085 sqft + - generic: 205 Park Lane, Austin, TX 78704 + - link "Compass Exclusive 2200 De Verne Street $2,075,000 4 beds 3 baths 2,602 sqft 2200 De Verne Street, Austin, TX 78704": + - /url: /listing/2200-de-verne-street-austin-tx-35969529 + - generic: Compass Exclusive + - img "2200 De Verne Street" + - generic: $2,075,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,602 sqft + - generic: 2200 De Verne Street, Austin, TX 78704 + - link "5801 Valley Circle $1,975,000 5 beds 4 baths 3,920 sqft 5801 Valley Circle, Austin, TX 78731": + - /url: /listing/5801-valley-circle-austin-tx-16722001 + - img "5801 Valley Circle" + - generic: $1,975,000 + - generic: 5 beds + - generic: 4 baths + - generic: 3,920 sqft + - generic: 5801 Valley Circle, Austin, TX 78731 + - link "2311 Westoak Drive $2,695,000 4 beds 4.5 baths 3,662 sqft 2311 Westoak Drive, Austin, TX 78704": + - /url: /listing/2311-westoak-drive-austin-tx-77497457 + - img "2311 Westoak Drive" + - generic: $2,695,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 3,662 sqft + - generic: 2311 Westoak Drive, Austin, TX 78704 + - link "Compass Exclusive 1102 Clermont Avenue $1,400,000 3 beds 2.5 baths 2,387 sqft 1102 Clermont Avenue, Austin, TX 78702": + - /url: /listing/1102-clermont-avenue-austin-tx-58228761 + - generic: Compass Exclusive + - img "1102 Clermont Avenue" + - generic: $1,400,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 2,387 sqft + - generic: 1102 Clermont Avenue, Austin, TX 78702 + - link "Compass Exclusive 3467 North Hills Drive $525,000 3 beds 2.5 baths 1,896 sqft 3467 North Hills Drive, Austin, TX 78731": + - /url: /listing/3467-north-hills-drive-austin-tx-05171257 + - generic: Compass Exclusive + - img "3467 North Hills Drive" + - generic: $525,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,896 sqft + - generic: 3467 North Hills Drive, Austin, TX 78731 + - link "Compass Exclusive 3467 North Hills Drive $525,000 3 beds 3 baths 1,896 sqft 3467 North Hills Drive, Austin, TX 78731": + - /url: /listing/3467-north-hills-drive-austin-tx-44691825 + - generic: Compass Exclusive + - img "3467 North Hills Drive" + - generic: $525,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,896 sqft + - generic: 3467 North Hills Drive, Austin, TX 78731 + - link "Compass Exclusive 1100 Clermont Avenue $1,400,000 3 beds 2.5 baths 2,387 sqft 1100 Clermont Avenue, Austin, TX 78702": + - /url: /listing/1100-clermont-avenue-austin-tx-91571489 + - generic: Compass Exclusive + - img "1100 Clermont Avenue" + - generic: $1,400,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 2,387 sqft + - generic: 1100 Clermont Avenue, Austin, TX 78702 + - link "2006 Mountain View Road $6,499,000 7 beds 7.5 baths 5,370 sqft 2006 Mountain View Road, Austin, TX 78703": + - /url: /listing/2006-mountain-view-road-austin-tx-18989937 + - img "2006 Mountain View Road" + - generic: $6,499,000 + - generic: 7 beds + - generic: 7.5 baths + - generic: 5,370 sqft + - generic: 2006 Mountain View Road, Austin, TX 78703 + - link "Compass Exclusive 2512 East 9th Street $725,000 2 beds — baths 750 sqft 2512 East 9th Street, Austin, TX 78702": + - /url: /listing/2512-east-9th-street-austin-tx-34176345 + - generic: Compass Exclusive + - img "2512 East 9th Street" + - generic: $725,000 + - generic: 2 beds + - generic: — baths + - generic: 750 sqft + - generic: 2512 East 9th Street, Austin, TX 78702 + - link "Compass Exclusive 1501 Wilson Heights Drive $1,100,000 3 beds 3 baths 1,878 sqft 1501 Wilson Heights Drive, Austin, TX 78746": + - /url: /listing/1501-wilson-heights-drive-austin-tx-16960001 + - generic: Compass Exclusive + - img "1501 Wilson Heights Drive" + - generic: $1,100,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,878 sqft + - generic: 1501 Wilson Heights Drive, Austin, TX 78746 + - link "4614 Jinx Avenue $560,000 3 beds 2 baths 1,975 sqft 4614 Jinx Avenue, Austin, TX 78745": + - /url: /listing/4614-jinx-avenue-austin-tx-28420929 + - img "4614 Jinx Avenue" + - generic: $560,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,975 sqft + - generic: 4614 Jinx Avenue, Austin, TX 78745 + - link "Compass Exclusive 406 Franklin Boulevard, Unit 2 $580,000 2 beds 3 baths 1,100 sqft 406 Franklin Boulevard, Unit 2, Austin, TX 78751": + - /url: /listing/406-franklin-boulevard-unit-2-austin-tx-95080217 + - generic: Compass Exclusive + - img "406 Franklin Boulevard, Unit 2" + - generic: $580,000 + - generic: 2 beds + - generic: 3 baths + - generic: 1,100 sqft + - generic: 406 Franklin Boulevard, Unit 2, Austin, TX 78751 + - link "Compass Exclusive 2102 East Martin Luther King Jr Boulevard $875,000 2 beds — baths 1,004 sqft 2102 East Martin Luther King Jr Boulevard, Austin, TX 78722": + - /url: /listing/2102-east-martin-luther-king-jr-boulevard-austin-tx-16491801 + - generic: Compass Exclusive + - img "2102 East Martin Luther King Jr Boulevard" + - generic: $875,000 + - generic: 2 beds + - generic: — baths + - generic: 1,004 sqft + - generic: 2102 East Martin Luther King Jr Boulevard, Austin, TX 78722 + - link "Compass Exclusive 800 Embassy Drive, Unit 236 $585,000 2 beds 2 baths 1,289 sqft 800 Embassy Drive, Unit 236, Austin, TX 78702": + - /url: /listing/800-embassy-drive-unit-236-austin-tx-55353609 + - generic: Compass Exclusive + - img "800 Embassy Drive, Unit 236" + - generic: $585,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,289 sqft + - generic: 800 Embassy Drive, Unit 236, Austin, TX 78702 + - link "Compass Exclusive 3915 Tilley Street $918,500 3 beds 3 baths 2,241 sqft 3915 Tilley Street, Austin, TX 78723": + - /url: /listing/3915-tilley-street-austin-tx-23262961 + - generic: Compass Exclusive + - img "3915 Tilley Street" + - generic: $918,500 + - generic: 3 beds + - generic: 3 baths + - generic: 2,241 sqft + - generic: 3915 Tilley Street, Austin, TX 78723 + - link "1004 Juanita Street, Unit 2 $1,199,000 4 beds 3.5 baths 2,122 sqft 1004 Juanita Street, Unit 2, Austin, TX 78704": + - /url: /listing/juanita-street-austin-tx-57428705 + - img "1004 Juanita Street, Unit 2" + - generic: $1,199,000 + - generic: 4 beds + - generic: 3.5 baths + - generic: 2,122 sqft + - generic: 1004 Juanita Street, Unit 2, Austin, TX 78704 + - link "Compass Exclusive 2100 Apricot Glen Drive $2,350,000 4 beds 3 baths 3,485 sqft 2100 Apricot Glen Drive, Austin, TX 78746": + - /url: /listing/2100-apricot-glen-drive-austin-tx-71178969 + - generic: Compass Exclusive + - img "2100 Apricot Glen Drive" + - generic: $2,350,000 + - generic: 4 beds + - generic: 3 baths + - generic: 3,485 sqft + - generic: 2100 Apricot Glen Drive, Austin, TX 78746 + - link "Compass Exclusive 4330 Olenick Street $450,000 2 beds 2 baths 973 sqft 4330 Olenick Street, Austin, TX 78723": + - /url: /listing/4330-olenick-street-austin-tx-04301553 + - generic: Compass Exclusive + - img "4330 Olenick Street" + - generic: $450,000 + - generic: 2 beds + - generic: 2 baths + - generic: 973 sqft + - generic: 4330 Olenick Street, Austin, TX 78723 + - link "Compass Exclusive 3305 Dolphin Drive $775,000 7 beds — baths 3,424 sqft 3305 Dolphin Drive, Austin, TX 78704": + - /url: /listing/3305-dolphin-drive-austin-tx-31707521 + - generic: Compass Exclusive + - img "3305 Dolphin Drive" + - generic: $775,000 + - generic: 7 beds + - generic: — baths + - generic: 3,424 sqft + - generic: 3305 Dolphin Drive, Austin, TX 78704 + - link "1036 Liberty Park Drive, Unit 38A $1,400,000 4 beds 3 baths 2,889 sqft 1036 Liberty Park Drive, Unit 38A, Austin, TX 78746": + - /url: /listing/1036-liberty-park-drive-unit-38a-austin-tx-06932321 + - img "1036 Liberty Park Drive, Unit 38A" + - generic: $1,400,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,889 sqft + - generic: 1036 Liberty Park Drive, Unit 38A, Austin, TX 78746 + - link "1710 Holly Street $595,000 1 beds 1 baths 686 sqft 1710 Holly Street, Austin, TX 78702": + - /url: /listing/1710-holly-street-austin-tx-84863153 + - img "1710 Holly Street" + - generic: $595,000 + - generic: 1 beds + - generic: 1 baths + - generic: 686 sqft + - generic: 1710 Holly Street, Austin, TX 78702 + - link "Compass Exclusive 1422 Palomino Ridge Drive $3,450,000 5 beds 4 baths 5,185 sqft 1422 Palomino Ridge Drive, Austin, TX 78733": + - /url: /listing/1422-palomino-ridge-drive-austin-tx-12995745 + - generic: Compass Exclusive + - img "1422 Palomino Ridge Drive" + - generic: $3,450,000 + - generic: 5 beds + - generic: 4 baths + - generic: 5,185 sqft + - generic: 1422 Palomino Ridge Drive, Austin, TX 78733 + - link "Compass Exclusive 7313 Carver Avenue $465,000 3 beds 2 baths 1,350 sqft 7313 Carver Avenue, Austin, TX 78752": + - /url: /listing/7313-carver-avenue-austin-tx-93390705 + - generic: Compass Exclusive + - img "7313 Carver Avenue" + - generic: $465,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,350 sqft + - generic: 7313 Carver Avenue, Austin, TX 78752 + - link "Compass Exclusive 4907 Majestic Drive $745,000 3 beds 2.5 baths 1,772 sqft 4907 Majestic Drive, Austin, TX 78745": + - /url: /listing/4907-majestic-drive-austin-tx-90510225 + - generic: Compass Exclusive + - img "4907 Majestic Drive" + - generic: $745,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,772 sqft + - generic: 4907 Majestic Drive, Austin, TX 78745 + - link "Compass Exclusive 8718 Tallwood Drive $979,000 4 beds 4 baths 2,408 sqft 8718 Tallwood Drive, Austin, TX 78759": + - /url: /listing/8718-tallwood-drive-austin-tx-22574777 + - generic: Compass Exclusive + - img "8718 Tallwood Drive" + - generic: $979,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,408 sqft + - generic: 8718 Tallwood Drive, Austin, TX 78759 + - link "Compass Exclusive 1402 Singleton Avenue, Unit B $515,000 2 beds 2 baths 1,086 sqft 1402 Singleton Avenue, Unit B, Austin, TX 78702": + - /url: /listing/1402-singleton-avenue-unit-b-austin-tx-59791705 + - generic: Compass Exclusive + - img "1402 Singleton Avenue, Unit B" + - generic: $515,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,086 sqft + - generic: 1402 Singleton Avenue, Unit B, Austin, TX 78702 + - link "Compass Exclusive 6603 Liliana Lane $1,825,000 4 beds 5 baths 3,609 sqft 6603 Liliana Lane, Austin, TX 78746": + - /url: /listing/6603-liliana-lane-austin-tx-89262425 + - generic: Compass Exclusive + - img "6603 Liliana Lane" + - generic: $1,825,000 + - generic: 4 beds + - generic: 5 baths + - generic: 3,609 sqft + - generic: 6603 Liliana Lane, Austin, TX 78746 + - link "2010 Northeast 54th Street $915,000 4 beds 3 baths 1,940 sqft 2010 Northeast 54th Street, Seattle, WA 98105": + - /url: /listing/2010-northeast-54th-street-seattle-wa-18874001 + - img "2010 Northeast 54th Street" + - generic: $915,000 + - generic: 4 beds + - generic: 3 baths + - generic: 1,940 sqft + - generic: 2010 Northeast 54th Street, Seattle, WA 98105 + - link "702 South Director Street $425,000 3 beds 1 baths 1,490 sqft 702 South Director Street, Seattle, WA 98108": + - /url: /listing/702-south-director-street-seattle-wa-06075617 + - img "702 South Director Street" + - generic: $425,000 + - generic: 3 beds + - generic: 1 baths + - generic: 1,490 sqft + - generic: 702 South Director Street, Seattle, WA 98108 + - link "941 11th Avenue East, Unit 3 $2,350,000 2 beds 1.75 baths 2,121 sqft 941 11th Avenue East, Unit 3, Seattle, WA 98102": + - /url: /listing/941-11th-avenue-east-unit-3-seattle-wa-21234601 + - img "941 11th Avenue East, Unit 3" + - generic: $2,350,000 + - generic: 2 beds + - generic: 1.75 baths + - generic: 2,121 sqft + - generic: 941 11th Avenue East, Unit 3, Seattle, WA 98102 + - link "5807 55th Avenue Northeast, Unit B $749,000 3 beds 4 baths 1,510 sqft 5807 55th Avenue Northeast, Unit B, Seattle, WA 98105": + - /url: /listing/5807-55th-avenue-northeast-unit-b-seattle-wa-90250753 + - img "5807 55th Avenue Northeast, Unit B" + - generic: $749,000 + - generic: 3 beds + - generic: 4 baths + - generic: 1,510 sqft + - generic: 5807 55th Avenue Northeast, Unit B, Seattle, WA 98105 + - link "610 27th Avenue East $1,315,000 5 beds 2 baths 2,180 sqft 610 27th Avenue East, Seattle, WA 98112": + - /url: /listing/610-27th-avenue-east-seattle-wa-90349753 + - img "610 27th Avenue East" + - generic: $1,315,000 + - generic: 5 beds + - generic: 2 baths + - generic: 2,180 sqft + - generic: 610 27th Avenue East, Seattle, WA 98112 + - link "2818 Boyer Avenue East, Unit 6 $780,000 — beds — baths 635 sqft 2818 Boyer Avenue East, Unit 6, Seattle, WA 98102": + - /url: /listing/2818-boyer-avenue-east-unit-6-seattle-wa-72475809 + - img "2818 Boyer Avenue East, Unit 6" + - generic: $780,000 + - generic: — beds + - generic: — baths + - generic: 635 sqft + - generic: 2818 Boyer Avenue East, Unit 6, Seattle, WA 98102 + - link "300 Virginia Street, Unit 1108 $595,000 1 beds 1 baths 548 sqft 300 Virginia Street, Unit 1108, Seattle, WA 98101": + - /url: /listing/300-virginia-street-unit-1108-seattle-wa-05882073 + - img "300 Virginia Street, Unit 1108" + - generic: $595,000 + - generic: 1 beds + - generic: 1 baths + - generic: 548 sqft + - generic: 300 Virginia Street, Unit 1108, Seattle, WA 98101 + - link "6735 Alonzo Avenue Northwest, Unit A $1,075,000 3 beds 2 baths 1,943 sqft 6735 Alonzo Avenue Northwest, Unit A, Seattle, WA 98117": + - /url: /listing/6735-alonzo-avenue-northwest-unit-a-seattle-wa-29892833 + - img "6735 Alonzo Avenue Northwest, Unit A" + - generic: $1,075,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,943 sqft + - generic: 6735 Alonzo Avenue Northwest, Unit A, Seattle, WA 98117 + - link "2400 Aurora Avenue North, Unit 210 $1,495,000 3 beds 2.25 baths 2,517 sqft 2400 Aurora Avenue North, Unit 210, Seattle, WA 98109": + - /url: /listing/2400-aurora-avenue-north-unit-210-seattle-wa-69429673 + - img "2400 Aurora Avenue North, Unit 210" + - generic: $1,495,000 + - generic: 3 beds + - generic: 2.25 baths + - generic: 2,517 sqft + - generic: 2400 Aurora Avenue North, Unit 210, Seattle, WA 98109 + - link "12569 37th Avenue Northeast $1,194,000 4 beds 3 baths 2,500 sqft 12569 37th Avenue Northeast, Seattle, WA 98125": + - /url: /listing/12569-37th-avenue-northeast-seattle-wa-79972441 + - img "12569 37th Avenue Northeast" + - generic: $1,194,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,500 sqft + - generic: 12569 37th Avenue Northeast, Seattle, WA 98125 + - link "2040 13th Avenue West, Unit 33 $625,000 2 beds 2 baths 976 sqft 2040 13th Avenue West, Unit 33, Seattle, WA 98119": + - /url: /listing/2040-13th-avenue-west-unit-33-seattle-wa-63141689 + - img "2040 13th Avenue West, Unit 33" + - generic: $625,000 + - generic: 2 beds + - generic: 2 baths + - generic: 976 sqft + - generic: 2040 13th Avenue West, Unit 33, Seattle, WA 98119 + - link "300 Virginia Street, Unit 811 $595,000 1 beds 1 baths 586 sqft 300 Virginia Street, Unit 811, Seattle, WA 98101": + - /url: /listing/300-virginia-street-unit-811-seattle-wa-51071737 + - img "300 Virginia Street, Unit 811" + - generic: $595,000 + - generic: 1 beds + - generic: 1 baths + - generic: 586 sqft + - generic: 300 Virginia Street, Unit 811, Seattle, WA 98101 + - link "7541 Seward Park Avenue South $1,725,000 5 beds 3 baths 2,645 sqft 7541 Seward Park Avenue South, Seattle, WA 98118": + - /url: /listing/7541-seward-park-avenue-south-seattle-wa-96085721 + - img "7541 Seward Park Avenue South" + - generic: $1,725,000 + - generic: 5 beds + - generic: 3 baths + - generic: 2,645 sqft + - generic: 7541 Seward Park Avenue South, Seattle, WA 98118 + - link "300 Virginia Street, Unit 809 $1,080,000 2 beds 1.75 baths 940 sqft 300 Virginia Street, Unit 809, Seattle, WA 98101": + - /url: /listing/300-virginia-street-unit-809-seattle-wa-21535001 + - img "300 Virginia Street, Unit 809" + - generic: $1,080,000 + - generic: 2 beds + - generic: 1.75 baths + - generic: 940 sqft + - generic: 300 Virginia Street, Unit 809, Seattle, WA 98101 + - link "Pending 2501 Canterbury Lane East, Unit 322 $499,000 2 beds 1 baths 891 sqft 2501 Canterbury Lane East, Unit 322, Seattle, WA 98112": + - /url: /listing/2501-canterbury-lane-east-unit-322-seattle-wa-56297009 + - generic: Pending + - img "2501 Canterbury Lane East, Unit 322" + - generic: $499,000 + - generic: 2 beds + - generic: 1 baths + - generic: 891 sqft + - generic: 2501 Canterbury Lane East, Unit 322, Seattle, WA 98112 + - link "4903 50th Avenue South $1,175,000 3 beds 2 baths 1,800 sqft 4903 50th Avenue South, Seattle, WA 98118": + - /url: /listing/4903-50th-avenue-south-seattle-wa-64379729 + - img "4903 50th Avenue South" + - generic: $1,175,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,800 sqft + - generic: 4903 50th Avenue South, Seattle, WA 98118 + - link "7710 57th Avenue Northeast $2,150,000 4 beds 3 baths 3,772 sqft 7710 57th Avenue Northeast, Seattle, WA 98115": + - /url: /listing/7710-57th-avenue-northeast-seattle-wa-04119657 + - img "7710 57th Avenue Northeast" + - generic: $2,150,000 + - generic: 4 beds + - generic: 3 baths + - generic: 3,772 sqft + - generic: 7710 57th Avenue Northeast, Seattle, WA 98115 + - link "6546 32nd Avenue Northeast, Unit A $1,075,000 4 beds 4 baths 1,940 sqft 6546 32nd Avenue Northeast, Unit A, Seattle, WA 98115": + - /url: /listing/6546-32nd-avenue-northeast-unit-a-seattle-wa-40020505 + - img "6546 32nd Avenue Northeast, Unit A" + - generic: $1,075,000 + - generic: 4 beds + - generic: 4 baths + - generic: 1,940 sqft + - generic: 6546 32nd Avenue Northeast, Unit A, Seattle, WA 98115 + - link "2349 Harbor Avenue Southwest, Unit 701 $750,000 2 beds 2 baths 1,414 sqft 2349 Harbor Avenue Southwest, Unit 701, Seattle, WA 98126": + - /url: /listing/2349-harbor-avenue-southwest-unit-701-seattle-wa-74197241 + - img "2349 Harbor Avenue Southwest, Unit 701" + - generic: $750,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,414 sqft + - generic: 2349 Harbor Avenue Southwest, Unit 701, Seattle, WA 98126 + - link "2021 1st Avenue, Unit F20 $1,995,000 2 beds 2.25 baths 1,900 sqft 2021 1st Avenue, Unit F20, Seattle, WA 98121": + - /url: /listing/2021-1st-avenue-unit-f20-seattle-wa-62666769 + - img "2021 1st Avenue, Unit F20" + - generic: $1,995,000 + - generic: 2 beds + - generic: 2.25 baths + - generic: 1,900 sqft + - generic: 2021 1st Avenue, Unit F20, Seattle, WA 98121 + - link "15009 Westminster Way North $629,995 3 beds 3 baths 1,219 sqft 15009 Westminster Way North, Seattle, WA 98133": + - /url: /listing/15009-westminster-way-north-seattle-wa-95740273 + - img "15009 Westminster Way North" + - generic: $629,995 + - generic: 3 beds + - generic: 3 baths + - generic: 1,219 sqft + - generic: 15009 Westminster Way North, Seattle, WA 98133 + - link "Pending 1419 McGilvra Boulevard East $1,995,000 3 beds 2.5 baths 3,430 sqft 1419 McGilvra Boulevard East, Seattle, WA 98112": + - /url: /listing/1419-mcgilvra-boulevard-east-seattle-wa-28302473 + - generic: Pending + - img "1419 McGilvra Boulevard East" + - generic: $1,995,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 3,430 sqft + - generic: 1419 McGilvra Boulevard East, Seattle, WA 98112 + - link "1760 Northwest 56th Street, Unit 309 $399,000 — beds — baths 698 sqft 1760 Northwest 56th Street, Unit 309, Seattle, WA 98107": + - /url: /listing/1760-northwest-56th-street-unit-309-seattle-wa-95713321 + - img "1760 Northwest 56th Street, Unit 309" + - generic: $399,000 + - generic: — beds + - generic: — baths + - generic: 698 sqft + - generic: 1760 Northwest 56th Street, Unit 309, Seattle, WA 98107 + - link "5316 31st Avenue South $985,000 7 beds 4 baths 3,100 sqft 5316 31st Avenue South, Seattle, WA 98108": + - /url: /listing/5316-31st-avenue-south-seattle-wa-69320529 + - img "5316 31st Avenue South" + - generic: $985,000 + - generic: 7 beds + - generic: 4 baths + - generic: 3,100 sqft + - generic: 5316 31st Avenue South, Seattle, WA 98108 + - link "Compass Exclusive 740 North Clayton Street $1,850,000 3 beds 5 baths 3,612 sqft 740 North Clayton Street, Denver, CO 80206": + - /url: /listing/740-north-clayton-street-denver-co-51220497 + - generic: Compass Exclusive + - img "740 North Clayton Street" + - generic: $1,850,000 + - generic: 3 beds + - generic: 5 baths + - generic: 3,612 sqft + - generic: 740 North Clayton Street, Denver, CO 80206 + - link "Compass Exclusive 1411 Zenobia Street $685,000 3 beds 3 baths 1,585 sqft 1411 Zenobia Street, Denver, CO 80204": + - /url: /listing/1411-zenobia-street-denver-co-59137577 + - generic: Compass Exclusive + - img "1411 Zenobia Street" + - generic: $685,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,585 sqft + - generic: 1411 Zenobia Street, Denver, CO 80204 + - link "Compass Exclusive 1304 North Raleigh Street $635,000 2 beds 3 baths 1,200 sqft 1304 North Raleigh Street, Denver, CO 80204": + - /url: /listing/1304-north-raleigh-street-denver-co-51054009 + - generic: Compass Exclusive + - img "1304 North Raleigh Street" + - generic: $635,000 + - generic: 2 beds + - generic: 3 baths + - generic: 1,200 sqft + - generic: 1304 North Raleigh Street, Denver, CO 80204 + - link "Compass Exclusive 1370 Zenobia Street $625,000 4 beds 2 baths 1,800 sqft 1370 Zenobia Street, Denver, CO 80204": + - /url: /listing/1370-zenobia-street-denver-co-42065833 + - generic: Compass Exclusive + - img "1370 Zenobia Street" + - generic: $625,000 + - generic: 4 beds + - generic: 2 baths + - generic: 1,800 sqft + - generic: 1370 Zenobia Street, Denver, CO 80204 + - link "Compass Exclusive 1695 Zenobia Street, Unit 2 $1,500,000 4 beds 4 baths 2,593 sqft 1695 Zenobia Street, Unit 2, Denver, CO 80204": + - /url: /listing/1695-zenobia-street-unit-2-denver-co-39951841 + - generic: Compass Exclusive + - img "1695 Zenobia Street, Unit 2" + - generic: $1,500,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,593 sqft + - generic: 1695 Zenobia Street, Unit 2, Denver, CO 80204 + - link "Compass Exclusive 4922 Lowell Boulevard, Unit 4 $649,900 2 beds 4 baths 1,407 sqft 4922 Lowell Boulevard, Unit 4, Denver, CO 80221": + - /url: /listing/4922-lowell-boulevard-unit-4-denver-co-37985593 + - generic: Compass Exclusive + - img "4922 Lowell Boulevard, Unit 4" + - generic: $649,900 + - generic: 2 beds + - generic: 4 baths + - generic: 1,407 sqft + - generic: 4922 Lowell Boulevard, Unit 4, Denver, CO 80221 + - link "Compass Exclusive 1939 South Gilpin Street $810,000 3 beds 2 baths 1,178 sqft 1939 South Gilpin Street, Denver, CO 80210": + - /url: /listing/1939-south-gilpin-street-denver-co-86276025 + - generic: Compass Exclusive + - img "1939 South Gilpin Street" + - generic: $810,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,178 sqft + - generic: 1939 South Gilpin Street, Denver, CO 80210 + - link "Compass Exclusive 3023 Wyandot Street $3,200,000 6 beds 8 baths 6,468 sqft 3023 Wyandot Street, Denver, CO 80211": + - /url: /listing/3023-wyandot-street-denver-co-39690273 + - generic: Compass Exclusive + - img "3023 Wyandot Street" + - generic: $3,200,000 + - generic: 6 beds + - generic: 8 baths + - generic: 6,468 sqft + - generic: 3023 Wyandot Street, Denver, CO 80211 + - link "Compass Exclusive 1430 Pierce Street $639,000 3 beds 3 baths 1,895 sqft 1430 Pierce Street, Denver, CO 80214": + - /url: /listing/1430-pierce-street-denver-co-26915801 + - generic: Compass Exclusive + - img "1430 Pierce Street" + - generic: $639,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,895 sqft + - generic: 1430 Pierce Street, Denver, CO 80214 + - link "1182 Clermont Street, Unit 1B $150,000 1 beds 1 baths 454 sqft 1182 Clermont Street, Unit 1B, Denver, CO 80220": + - /url: /listing/1182-clermont-street-unit-1b-denver-co-77033161 + - img "1182 Clermont Street, Unit 1B" + - generic: $150,000 + - generic: 1 beds + - generic: 1 baths + - generic: 454 sqft + - generic: 1182 Clermont Street, Unit 1B, Denver, CO 80220 + - link "Compass Exclusive 1440 Little Raven Street, Unit 204 $630,000 2 beds 2 baths 1,168 sqft 1440 Little Raven Street, Unit 204, Denver, CO 80202": + - /url: /listing/1440-little-raven-street-unit-204-denver-co-92744361 + - generic: Compass Exclusive + - img "1440 Little Raven Street, Unit 204" + - generic: $630,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,168 sqft + - generic: 1440 Little Raven Street, Unit 204, Denver, CO 80202 + - link "Compass Exclusive South Grant Street $1,050,000 3 beds 2 baths 1,881 sqft South Grant Street, Denver, CO 80203": + - /url: /listing/south-grant-street-denver-co-94195537 + - generic: Compass Exclusive + - img "South Grant Street" + - generic: $1,050,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,881 sqft + - generic: South Grant Street, Denver, CO 80203 + - link "Compass Exclusive 4515 Stuart Street $1,595,000 4 beds 5 baths 3,620 sqft 4515 Stuart Street, Denver, CO 80212": + - /url: /listing/4515-stuart-street-denver-co-03971705 + - generic: Compass Exclusive + - img "4515 Stuart Street" + - generic: $1,595,000 + - generic: 4 beds + - generic: 5 baths + - generic: 3,620 sqft + - generic: 4515 Stuart Street, Denver, CO 80212 + - link "3414 Lawrence Street $1,149,000 4 beds 5 baths 2,808 sqft 3414 Lawrence Street, Denver, CO 80205": + - /url: /listing/3414-lawrence-street-denver-co-31891505 + - img "3414 Lawrence Street" + - generic: $1,149,000 + - generic: 4 beds + - generic: 5 baths + - generic: 2,808 sqft + - generic: 3414 Lawrence Street, Denver, CO 80205 + - link "4225 West 13th Avenue $799,000 3 beds 4 baths 1,818 sqft 4225 West 13th Avenue, Denver, CO 80204": + - /url: /listing/4225-west-13th-avenue-denver-co-60687425 + - img "4225 West 13th Avenue" + - generic: $799,000 + - generic: 3 beds + - generic: 4 baths + - generic: 1,818 sqft + - generic: 4225 West 13th Avenue, Denver, CO 80204 + - link "4200 West 17th Avenue, Unit 614 $699,000 1 beds 2 baths 954 sqft 4200 West 17th Avenue, Unit 614, Denver, CO 80204": + - /url: /listing/4200-west-17th-avenue-unit-614-denver-co-73524889 + - img "4200 West 17th Avenue, Unit 614" + - generic: $699,000 + - generic: 1 beds + - generic: 2 baths + - generic: 954 sqft + - generic: 4200 West 17th Avenue, Unit 614, Denver, CO 80204 + - link "Undisclosed Address $297,000 — beds — baths 559 sqft Undisclosed Address, Denver, CO 80203": + - /url: /listing/undisclosed-address-denver-co-33349817 + - img "Undisclosed Address" + - generic: $297,000 + - generic: — beds + - generic: — baths + - generic: 559 sqft + - generic: Undisclosed Address, Denver, CO 80203 + - link "2500 Walnut Street, Unit 201 $548,999 — beds — baths 1,027 sqft 2500 Walnut Street, Unit 201, Denver, CO 80205": + - /url: /listing/2500-walnut-street-unit-201-denver-co-65506201 + - img "2500 Walnut Street, Unit 201" + - generic: $548,999 + - generic: — beds + - generic: — baths + - generic: 1,027 sqft + - generic: 2500 Walnut Street, Unit 201, Denver, CO 80205 + - link "2056 South Lincoln Street $685,000 3 beds 2 baths 1,536 sqft 2056 South Lincoln Street, Denver, CO 80210": + - /url: /listing/2056-south-lincoln-street-denver-co-78470569 + - img "2056 South Lincoln Street" + - generic: $685,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,536 sqft + - generic: 2056 South Lincoln Street, Denver, CO 80210 + - link "2417 South Lafayette Street $1,169,000 3 beds 4 baths 2,365 sqft 2417 South Lafayette Street, Denver, CO 80210": + - /url: /listing/2417-south-lafayette-street-denver-co-90943449 + - img "2417 South Lafayette Street" + - generic: $1,169,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,365 sqft + - generic: 2417 South Lafayette Street, Denver, CO 80210 + - link "1350 Josephine Street, Unit 206 $214,900 1 beds 1 baths 606 sqft 1350 Josephine Street, Unit 206, Denver, CO 80206": + - /url: /listing/1350-josephine-street-unit-206-denver-co-51051441 + - img "1350 Josephine Street, Unit 206" + - generic: $214,900 + - generic: 1 beds + - generic: 1 baths + - generic: 606 sqft + - generic: 1350 Josephine Street, Unit 206, Denver, CO 80206 + - link "1431 South Glencoe Street $650,000 3 beds 2 baths 1,094 sqft 1431 South Glencoe Street, Denver, CO 80222": + - /url: /listing/1431-south-glencoe-street-denver-co-20637969 + - img "1431 South Glencoe Street" + - generic: $650,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,094 sqft + - generic: 1431 South Glencoe Street, Denver, CO 80222 + - link "4410 Raritan Street $440,000 2 beds 1 baths 758 sqft 4410 Raritan Street, Denver, CO 80211": + - /url: /listing/4410-raritan-street-denver-co-14388401 + - img "4410 Raritan Street" + - generic: $440,000 + - generic: 2 beds + - generic: 1 baths + - generic: 758 sqft + - generic: 4410 Raritan Street, Denver, CO 80211 + - link "825 East Cooper Avenue $24,995,000 4 beds 4 baths 3,613 sqft 825 East Cooper Avenue, Aspen, CO 81611": + - /url: /listing/825-east-cooper-avenue-aspen-co-53959097 + - img "825 East Cooper Avenue" + - generic: $24,995,000 + - generic: 4 beds + - generic: 4 baths + - generic: 3,613 sqft + - generic: 825 East Cooper Avenue, Aspen, CO 81611 + - link "830 East Durant Avenue $24,950,000 4 beds 4 baths 4,005 sqft 830 East Durant Avenue, Aspen, CO 81611": + - /url: /listing/830-east-durant-avenue-aspen-co-39990729 + - img "830 East Durant Avenue" + - generic: $24,950,000 + - generic: 4 beds + - generic: 4 baths + - generic: 4,005 sqft + - generic: 830 East Durant Avenue, Aspen, CO 81611 + - link "730 Twining Flats Road $8,500,000 3 beds 3.5 baths 4,992 sqft 730 Twining Flats Road, Aspen, CO 81611": + - /url: /listing/730-twining-flats-road-aspen-co-70769025 + - img "730 Twining Flats Road" + - generic: $8,500,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 4,992 sqft + - generic: 730 Twining Flats Road, Aspen, CO 81611 + - link "Pending 190 West Lupine Drive $14,995,000 5 beds 6 baths 5,470 sqft 190 West Lupine Drive, Aspen, CO 81611": + - /url: /listing/190-west-lupine-drive-aspen-co-82072873 + - generic: Pending + - img "190 West Lupine Drive" + - generic: $14,995,000 + - generic: 5 beds + - generic: 6 baths + - generic: 5,470 sqft + - generic: 190 West Lupine Drive, Aspen, CO 81611 + - link "42703 Highway 82, Unit B $10,950,000 5 beds 5.5 baths 4,154 sqft 42703 Highway 82, Unit B, Aspen, CO 81611": + - /url: /listing/42703-highway-82-unit-b-aspen-co-90959137 + - img "42703 Highway 82, Unit B" + - generic: $10,950,000 + - generic: 5 beds + - generic: 5.5 baths + - generic: 4,154 sqft + - generic: 42703 Highway 82, Unit B, Aspen, CO 81611 + - link "Pending 120 Turtle Cove $4,250,000 3 beds 3 baths 2,342 sqft 120 Turtle Cove, Aspen, CO 81611": + - /url: /listing/120-turtle-cove-aspen-co-64551841 + - generic: Pending + - img "120 Turtle Cove" + - generic: $4,250,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,342 sqft + - generic: 120 Turtle Cove, Aspen, CO 81611 + - link "100 Difficult Lane $25,900,000 3 beds 4 baths 2,795 sqft 100 Difficult Lane, Aspen, CO 81611": + - /url: /listing/100-difficult-lane-aspen-co-46556249 + - img "100 Difficult Lane" + - generic: $25,900,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,795 sqft + - generic: 100 Difficult Lane, Aspen, CO 81611 + - link "803 East Durant Avenue, Unit 8 $4,350,000 2 beds 2 baths 960 sqft 803 East Durant Avenue, Unit 8, Aspen, CO 81611": + - /url: /listing/803-east-durant-avenue-unit-8-aspen-co-85968689 + - img "803 East Durant Avenue, Unit 8" + - generic: $4,350,000 + - generic: 2 beds + - generic: 2 baths + - generic: 960 sqft + - generic: 803 East Durant Avenue, Unit 8, Aspen, CO 81611 + - link "41 Popcorn Lane $49,900,000 5 beds 9 baths 14,960 sqft 41 Popcorn Lane, Aspen, CO 81611": + - /url: /listing/41-popcorn-lane-aspen-co-87132233 + - img "41 Popcorn Lane" + - generic: $49,900,000 + - generic: 5 beds + - generic: 9 baths + - generic: 14,960 sqft + - generic: 41 Popcorn Lane, Aspen, CO 81611 + - link "825 Ute Avenue, Unit A $18,450,000 4 beds 5 baths 3,771 sqft 825 Ute Avenue, Unit A, Aspen, CO 81611": + - /url: /listing/825-ute-avenue-unit-a-aspen-co-50257457 + - img "825 Ute Avenue, Unit A" + - generic: $18,450,000 + - generic: 4 beds + - generic: 5 baths + - generic: 3,771 sqft + - generic: 825 Ute Avenue, Unit A, Aspen, CO 81611 + - link "332 Vine Street $2,500,000 2 beds 2 baths 878 sqft 332 Vine Street, Aspen, CO 81611": + - /url: /listing/332-vine-street-aspen-co-85552009 + - img "332 Vine Street" + - generic: $2,500,000 + - generic: 2 beds + - generic: 2 baths + - generic: 878 sqft + - generic: 332 Vine Street, Aspen, CO 81611 + - link "605 West Bleeker Street $18,450,000 4 beds 5.5 baths 4,314 sqft 605 West Bleeker Street, Aspen, CO 81611": + - /url: /listing/605-west-bleeker-street-aspen-co-48223185 + - img "605 West Bleeker Street" + - generic: $18,450,000 + - generic: 4 beds + - generic: 5.5 baths + - generic: 4,314 sqft + - generic: 605 West Bleeker Street, Aspen, CO 81611 + - link "315 East Dean Street, Unit B62 $425,000 2 beds 2.5 baths 1,473 sqft 315 East Dean Street, Unit B62, Aspen, CO 81611": + - /url: /listing/315-east-dean-street-unit-b62-aspen-co-52455905 + - img "315 East Dean Street, Unit B62" + - generic: $425,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,473 sqft + - generic: 315 East Dean Street, Unit B62, Aspen, CO 81611 + - link "315 East Dean Street, Unit B51 $1,495,000 2 beds 2.5 baths 1,612 sqft 315 East Dean Street, Unit B51, Aspen, CO 81611": + - /url: /listing/315-east-dean-street-unit-b51-aspen-co-57096177 + - img "315 East Dean Street, Unit B51" + - generic: $1,495,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,612 sqft + - generic: 315 East Dean Street, Unit B51, Aspen, CO 81611 + - link "315 East Dean Street, Unit B55 $1,750,000 3 beds 3 baths 2,048 sqft 315 East Dean Street, Unit B55, Aspen, CO 81611": + - /url: /listing/315-east-dean-street-unit-b55-aspen-co-61527849 + - img "315 East Dean Street, Unit B55" + - generic: $1,750,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,048 sqft + - generic: 315 East Dean Street, Unit B55, Aspen, CO 81611 + - link "610 South W End Street, Unit D201 $4,795,000 2 beds 2 baths 1,052 sqft 610 South W End Street, Unit D201, Aspen, CO 81611": + - /url: /listing/610-south-w-end-street-unit-d201-aspen-co-47448697 + - img "610 South W End Street, Unit D201" + - generic: $4,795,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,052 sqft + - generic: 610 South W End Street, Unit D201, Aspen, CO 81611 + - link "155 Nighthawk Drive $18,950,000 6 beds 8 baths 5,392 sqft 155 Nighthawk Drive, Aspen, CO 81612": + - /url: /listing/155-nighthawk-drive-aspen-co-93831713 + - img "155 Nighthawk Drive" + - generic: $18,950,000 + - generic: 6 beds + - generic: 8 baths + - generic: 5,392 sqft + - generic: 155 Nighthawk Drive, Aspen, CO 81612 + - link "137 Ridge Trail $660,000 3 beds 1 baths 910 sqft 137 Ridge Trail, Aspen, CO 81611": + - /url: /listing/137-ridge-trail-aspen-co-72248057 + - img "137 Ridge Trail" + - generic: $660,000 + - generic: 3 beds + - generic: 1 baths + - generic: 910 sqft + - generic: 137 Ridge Trail, Aspen, CO 81611 + - link "415 East Dean Street, Unit 44ABC WEEKS 51/52 $775,000 3 beds 3 baths 2,120 sqft 415 East Dean Street, Unit 44ABC WEEKS 51/52, Aspen, CO 81611": + - /url: /listing/415-east-dean-street-unit-44abc-weeks-51-52-aspen-co-80487609 + - img "415 East Dean Street, Unit 44ABC WEEKS 51/52" + - generic: $775,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,120 sqft + - generic: 415 East Dean Street, Unit 44ABC WEEKS 51/52, Aspen, CO 81611 + - link "450 South Original Street, Unit 8 $3,995,000 2 beds 2 baths 932 sqft 450 South Original Street, Unit 8, Aspen, CO 81611": + - /url: /listing/450-south-original-street-unit-8-aspen-co-40304113 + - img "450 South Original Street, Unit 8" + - generic: $3,995,000 + - generic: 2 beds + - generic: 2 baths + - generic: 932 sqft + - generic: 450 South Original Street, Unit 8, Aspen, CO 81611 + - link "McLain Flats $5,450,000 — beds 0 baths — sqft McLain Flats, Aspen, CO 81612": + - /url: /listing/mclain-flats-aspen-co-24827361 + - img "McLain Flats" + - generic: $5,450,000 + - generic: — beds + - generic: 0 baths + - generic: — sqft + - generic: McLain Flats, Aspen, CO 81612 + - link "725 East Durant Avenue, Unit 22 $3,199,000 1 beds 1.5 baths 828 sqft 725 East Durant Avenue, Unit 22, Aspen, CO 81611": + - /url: /listing/725-east-durant-avenue-unit-22-aspen-co-54767201 + - img "725 East Durant Avenue, Unit 22" + - generic: $3,199,000 + - generic: 1 beds + - generic: 1.5 baths + - generic: 828 sqft + - generic: 725 East Durant Avenue, Unit 22, Aspen, CO 81611 + - link "1038 Owl Creek Road $10,995,000 4 beds 4 baths 5,047 sqft 1038 Owl Creek Road, Aspen, CO 81611": + - /url: /listing/1038-owl-creek-road-aspen-co-75064801 + - img "1038 Owl Creek Road" + - generic: $10,995,000 + - generic: 4 beds + - generic: 4 baths + - generic: 5,047 sqft + - generic: 1038 Owl Creek Road, Aspen, CO 81611 + - link "1220 Red Butte Drive $22,950,000 5 beds 5.5 baths 5,872 sqft 1220 Red Butte Drive, Aspen, CO 81611": + - /url: /listing/1220-red-butte-drive-aspen-co-21093121 + - img "1220 Red Butte Drive" + - generic: $22,950,000 + - generic: 5 beds + - generic: 5.5 baths + - generic: 5,872 sqft + - generic: 1220 Red Butte Drive, Aspen, CO 81611 + - link "Pending 864 Moore Drive $39,500,000 7 beds 9 baths 10,615 sqft 864 Moore Drive, Aspen, CO 81611": + - /url: /listing/864-moore-drive-aspen-co-64367481 + - generic: Pending + - img "864 Moore Drive" + - generic: $39,500,000 + - generic: 7 beds + - generic: 9 baths + - generic: 10,615 sqft + - generic: 864 Moore Drive, Aspen, CO 81611 + - link "1162 Tiehack Road $38,500,000 6 beds 7.5 baths 7,811 sqft 1162 Tiehack Road, Aspen, CO 81611": + - /url: /listing/1162-tiehack-road-aspen-co-58693761 + - img "1162 Tiehack Road" + - generic: $38,500,000 + - generic: 6 beds + - generic: 7.5 baths + - generic: 7,811 sqft + - generic: 1162 Tiehack Road, Aspen, CO 81611 + - link "1395 Sierra Vista Drive, Unit 1 $10,995,000 4 beds 5 baths 4,390 sqft 1395 Sierra Vista Drive, Unit 1, Aspen, CO 81611": + - /url: /listing/1395-sierra-vista-drive-unit-1-aspen-co-22259585 + - img "1395 Sierra Vista Drive, Unit 1" + - generic: $10,995,000 + - generic: 4 beds + - generic: 5 baths + - generic: 4,390 sqft + - generic: 1395 Sierra Vista Drive, Unit 1, Aspen, CO 81611 + - link "415 East Dean St Unit 5 Week 5 $145,000 2 beds 2 baths 1,519 sqft 415 East Dean St Unit 5 Week 5, Aspen, CO 81611": + - /url: /listing/415-east-dean-st-unit-5-week-5-aspen-co-25029505 + - img "415 East Dean St Unit 5 Week 5" + - generic: $145,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,519 sqft + - generic: 415 East Dean St Unit 5 Week 5, Aspen, CO 81611 + - 'link "415 East Dean St # 35 Week 35 $175,000 3 beds 3 baths 1,831 sqft 415 East Dean St # 35 Week 35, Aspen, CO 81611"': + - /url: /listing/415-east-dean-st-35-week-35-aspen-co-62298705 + - 'img "415 East Dean St # 35 Week 35"' + - generic: $175,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,831 sqft + - generic: "415 East Dean St # 35 Week 35, Aspen, CO 81611" + - link "501 West Main Street, Unit A101 $1,925,000 1 beds 1 baths 460 sqft 501 West Main Street, Unit A101, Aspen, CO 81611": + - /url: /listing/501-west-main-street-unit-a101-aspen-co-44142641 + - img "501 West Main Street, Unit A101" + - generic: $1,925,000 + - generic: 1 beds + - generic: 1 baths + - generic: 460 sqft + - generic: 501 West Main Street, Unit A101, Aspen, CO 81611 + - link "Tbd Pfister Drive $4,500,000 — beds 0 baths — sqft Tbd Pfister Drive, Aspen, CO 81611": + - /url: /listing/tbd-pfister-drive-aspen-co-12374913 + - img "Tbd Pfister Drive" + - generic: $4,500,000 + - generic: — beds + - generic: 0 baths + - generic: — sqft + - generic: Tbd Pfister Drive, Aspen, CO 81611 + - link "1718 Corcoran Street Northwest, Unit 5 $315,000 1 beds 1 baths 563 sqft 1718 Corcoran Street Northwest, Unit 5, Washington, DC 20009": + - /url: /listing/1718-corcoran-street-northwest-unit-5-washington-dc-52722345 + - img "1718 Corcoran Street Northwest, Unit 5" + - generic: $315,000 + - generic: 1 beds + - generic: 1 baths + - generic: 563 sqft + - generic: 1718 Corcoran Street Northwest, Unit 5, Washington, DC 20009 + - link "Compass Exclusive 1423 R Street Northwest, Unit 105 $780,000 2 beds 2 baths 1,120 sqft 1423 R Street Northwest, Unit 105, Washington, DC 20009": + - /url: /listing/1423-r-street-northwest-unit-105-washington-dc-32557289 + - generic: Compass Exclusive + - img "1423 R Street Northwest, Unit 105" + - generic: $780,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,120 sqft + - generic: 1423 R Street Northwest, Unit 105, Washington, DC 20009 + - link "Compass Exclusive 1848 Wyoming Avenue Northwest, Unit 201 $815,000 2 beds 2 baths 1,132 sqft 1848 Wyoming Avenue Northwest, Unit 201, Washington, DC 20009": + - /url: /listing/1848-wyoming-avenue-northwest-unit-201-washington-dc-94495537 + - generic: Compass Exclusive + - img "1848 Wyoming Avenue Northwest, Unit 201" + - generic: $815,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,132 sqft + - generic: 1848 Wyoming Avenue Northwest, Unit 201, Washington, DC 20009 + - link "Compass Exclusive 2009 Columbia Road Northwest, Unit 2 $774,900 2 beds 2 baths 1,150 sqft 2009 Columbia Road Northwest, Unit 2, Washington, DC 20009": + - /url: /listing/2009-columbia-road-northwest-unit-2-washington-dc-41184241 + - generic: Compass Exclusive + - img "2009 Columbia Road Northwest, Unit 2" + - generic: $774,900 + - generic: 2 beds + - generic: 2 baths + - generic: 1,150 sqft + - generic: 2009 Columbia Road Northwest, Unit 2, Washington, DC 20009 + - link "Compass Exclusive 1226 11th Street Northwest, Unit 200 $550,000 — beds 2 baths 880 sqft 1226 11th Street Northwest, Unit 200, Washington, DC 20001": + - /url: /listing/1226-11th-street-northwest-unit-200-washington-dc-74847953 + - generic: Compass Exclusive + - img "1226 11th Street Northwest, Unit 200" + - generic: $550,000 + - generic: — beds + - generic: 2 baths + - generic: 880 sqft + - generic: 1226 11th Street Northwest, Unit 200, Washington, DC 20001 + - link "Compass Exclusive 1010 Massachusetts Avenue Northwest, Unit 207 $695,000 2 beds 2 baths 994 sqft 1010 Massachusetts Avenue Northwest, Unit 207, Washington, DC 20001": + - /url: /listing/1010-massachusetts-avenue-northwest-unit-207-washington-dc-42103697 + - generic: Compass Exclusive + - img "1010 Massachusetts Avenue Northwest, Unit 207" + - generic: $695,000 + - generic: 2 beds + - generic: 2 baths + - generic: 994 sqft + - generic: 1010 Massachusetts Avenue Northwest, Unit 207, Washington, DC 20001 + - link "1300 13th Street Northwest, Unit 905 $925,000 2 beds 2 baths 1,156 sqft 1300 13th Street Northwest, Unit 905, Washington, DC 20005": + - /url: /listing/1300-13th-street-northwest-unit-905-washington-dc-85950569 + - img "1300 13th Street Northwest, Unit 905" + - generic: $925,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,156 sqft + - generic: 1300 13th Street Northwest, Unit 905, Washington, DC 20005 + - link "1010 Massachusetts Avenue Northwest, Unit 1208 $824,900 2 beds 2 baths 1,050 sqft 1010 Massachusetts Avenue Northwest, Unit 1208, Washington, DC 20001": + - /url: /listing/massachusetts-avenue-northwest-washington-dc-04401553 + - img "1010 Massachusetts Avenue Northwest, Unit 1208" + - generic: $824,900 + - generic: 2 beds + - generic: 2 baths + - generic: 1,050 sqft + - generic: 1010 Massachusetts Avenue Northwest, Unit 1208, Washington, DC 20001 + - link "1440 N Street Northwest, Unit 205 $199,000 0 beds 1 baths 411 sqft 1440 N Street Northwest, Unit 205, Washington, DC 20005": + - /url: /listing/1440-n-street-northwest-unit-205-washington-dc-41655921 + - img "1440 N Street Northwest, Unit 205" + - generic: $199,000 + - generic: 0 beds + - generic: 1 baths + - generic: 411 sqft + - generic: 1440 N Street Northwest, Unit 205, Washington, DC 20005 + - link "Compass Exclusive 811 4th Street Northwest, Unit 1214 $439,000 — beds — baths 692 sqft 811 4th Street Northwest, Unit 1214, Washington, DC 20001": + - /url: /listing/811-4th-street-northwest-unit-1214-washington-dc-67375329 + - generic: Compass Exclusive + - img "811 4th Street Northwest, Unit 1214" + - generic: $439,000 + - generic: — beds + - generic: — baths + - generic: 692 sqft + - generic: 811 4th Street Northwest, Unit 1214, Washington, DC 20001 + - link "Compass Exclusive 1832 Corcoran Street Northwest $2,300,000 4 beds 3 baths 2,331 sqft 1832 Corcoran Street Northwest, Washington, DC 20009": + - /url: /listing/1832-corcoran-street-northwest-washington-dc-43598409 + - generic: Compass Exclusive + - img "1832 Corcoran Street Northwest" + - generic: $2,300,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,331 sqft + - generic: 1832 Corcoran Street Northwest, Washington, DC 20009 + - link "Compass Exclusive 1428 Q Street Northwest $1,599,000 4 beds 3 baths 3,036 sqft 1428 Q Street Northwest, Washington, DC 20009": + - /url: /listing/1428-q-street-northwest-washington-dc-18041457 + - generic: Compass Exclusive + - img "1428 Q Street Northwest" + - generic: $1,599,000 + - generic: 4 beds + - generic: 3 baths + - generic: 3,036 sqft + - generic: 1428 Q Street Northwest, Washington, DC 20009 + - link "Compass Exclusive 1443 Chapin Street Northwest, Unit 402 $895,000 2 beds 2 baths 1,188 sqft 1443 Chapin Street Northwest, Unit 402, Washington, DC 20009": + - /url: /listing/1443-chapin-street-northwest-unit-402-washington-dc-66950593 + - generic: Compass Exclusive + - img "1443 Chapin Street Northwest, Unit 402" + - generic: $895,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,188 sqft + - generic: 1443 Chapin Street Northwest, Unit 402, Washington, DC 20009 + - link "1113 Rhode Island Avenue Northwest $1,195,000 6 beds 3 baths 3,412 sqft 1113 Rhode Island Avenue Northwest, Washington, DC 20005": + - /url: /listing/1113-rhode-island-avenue-northwest-washington-dc-75758689 + - img "1113 Rhode Island Avenue Northwest" + - generic: $1,195,000 + - generic: 6 beds + - generic: 3 baths + - generic: 3,412 sqft + - generic: 1113 Rhode Island Avenue Northwest, Washington, DC 20005 + - link "Compass Exclusive 1317 Corcoran Street Northwest $2,200,000 — beds 0 baths 2,956 sqft 1317 Corcoran Street Northwest, Washington, DC 20009": + - /url: /listing/1317-corcoran-street-northwest-washington-dc-97642673 + - generic: Compass Exclusive + - img "1317 Corcoran Street Northwest" + - generic: $2,200,000 + - generic: — beds + - generic: 0 baths + - generic: 2,956 sqft + - generic: 1317 Corcoran Street Northwest, Washington, DC 20009 + - link "Compass Exclusive 1003 P Street Northwest $1,600,000 4 beds 4 baths 2,140 sqft 1003 P Street Northwest, Washington, DC 20001": + - /url: /listing/1003-p-street-northwest-washington-dc-61442889 + - generic: Compass Exclusive + - img "1003 P Street Northwest" + - generic: $1,600,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,140 sqft + - generic: 1003 P Street Northwest, Washington, DC 20001 + - link "Compass Exclusive 238 14th Street Southeast $949,000 — beds — baths 1,772 sqft 238 14th Street Southeast, Washington, DC 20003": + - /url: /listing/238-14th-street-southeast-washington-dc-45120369 + - generic: Compass Exclusive + - img "238 14th Street Southeast" + - generic: $949,000 + - generic: — beds + - generic: — baths + - generic: 1,772 sqft + - generic: 238 14th Street Southeast, Washington, DC 20003 + - link "Compass Exclusive 3515 Hertford Place Northwest, Unit 32 $395,000 1 beds 1 baths 627 sqft 3515 Hertford Place Northwest, Unit 32, Washington, DC 20010": + - /url: /listing/3515-hertford-place-northwest-unit-32-washington-dc-51904881 + - generic: Compass Exclusive + - img "3515 Hertford Place Northwest, Unit 32" + - generic: $395,000 + - generic: 1 beds + - generic: 1 baths + - generic: 627 sqft + - generic: 3515 Hertford Place Northwest, Unit 32, Washington, DC 20010 + - link "Compass Exclusive 4611 43rd Place Northwest $2,249,000 5 beds 5 baths 3,522 sqft 4611 43rd Place Northwest, Washington, DC 20016": + - /url: /listing/4611-43rd-place-northwest-washington-dc-54638913 + - generic: Compass Exclusive + - img "4611 43rd Place Northwest" + - generic: $2,249,000 + - generic: 5 beds + - generic: 5 baths + - generic: 3,522 sqft + - generic: 4611 43rd Place Northwest, Washington, DC 20016 + - link "Compass Exclusive 2123 California Street Northwest, Unit D5 $775,000 2 beds 2 baths 1,073 sqft 2123 California Street Northwest, Unit D5, Washington, DC 20008": + - /url: /listing/2123-california-street-northwest-unit-d5-washington-dc-81697025 + - generic: Compass Exclusive + - img "2123 California Street Northwest, Unit D5" + - generic: $775,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,073 sqft + - generic: 2123 California Street Northwest, Unit D5, Washington, DC 20008 + - link "Compass Exclusive 228 9th Street Southeast $3,849,000 5 beds 5 baths 4,801 sqft 228 9th Street Southeast, Washington, DC 20003": + - /url: /listing/228-9th-street-southeast-washington-dc-98962857 + - generic: Compass Exclusive + - img "228 9th Street Southeast" + - generic: $3,849,000 + - generic: 5 beds + - generic: 5 baths + - generic: 4,801 sqft + - generic: 228 9th Street Southeast, Washington, DC 20003 + - link "Compass Exclusive 4600 Connecticut Avenue Northwest, Unit 717 $243,000 — beds — baths 577 sqft 4600 Connecticut Avenue Northwest, Unit 717, Washington, DC 20008": + - /url: /listing/4600-connecticut-avenue-northwest-unit-717-washington-dc-91447953 + - generic: Compass Exclusive + - img "4600 Connecticut Avenue Northwest, Unit 717" + - generic: $243,000 + - generic: — beds + - generic: — baths + - generic: 577 sqft + - generic: 4600 Connecticut Avenue Northwest, Unit 717, Washington, DC 20008 + - link "Compass Exclusive 1614 Kilbourne Place Northwest, Unit 2 $1,275,000 3 beds 3 baths 1,922 sqft 1614 Kilbourne Place Northwest, Unit 2, Washington, DC 20010": + - /url: /listing/1614-kilbourne-place-northwest-unit-2-washington-dc-78468961 + - generic: Compass Exclusive + - img "1614 Kilbourne Place Northwest, Unit 2" + - generic: $1,275,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,922 sqft + - generic: 1614 Kilbourne Place Northwest, Unit 2, Washington, DC 20010 + - link "Compass Exclusive 3514 34th Street Northwest $1,450,000 3 beds 4 baths — sqft 3514 34th Street Northwest, Washington, DC 20008": + - /url: /listing/3514-34th-street-northwest-washington-dc-69305881 + - generic: Compass Exclusive + - img "3514 34th Street Northwest" + - generic: $1,450,000 + - generic: 3 beds + - generic: 4 baths + - generic: — sqft + - generic: 3514 34th Street Northwest, Washington, DC 20008 + - link "Compass Exclusive 3601 Connecticut Avenue Northwest, Unit 612 $509,000 2 beds — baths 950 sqft 3601 Connecticut Avenue Northwest, Unit 612, Washington, DC 20008": + - /url: /listing/3601-connecticut-avenue-northwest-unit-612-washington-dc-68803729 + - generic: Compass Exclusive + - img "3601 Connecticut Avenue Northwest, Unit 612" + - generic: $509,000 + - generic: 2 beds + - generic: — baths + - generic: 950 sqft + - generic: 3601 Connecticut Avenue Northwest, Unit 612, Washington, DC 20008 + - link "Compass Exclusive 3414 Porter Street Northwest $1,650,000 4 beds 3 baths 2,470 sqft 3414 Porter Street Northwest, Washington, DC 20016": + - /url: /listing/3414-porter-street-northwest-washington-dc-24573065 + - generic: Compass Exclusive + - img "3414 Porter Street Northwest" + - generic: $1,650,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,470 sqft + - generic: 3414 Porter Street Northwest, Washington, DC 20016 + - link "Compass Exclusive 3707 Military Road Northwest $2,200,000 6 beds 5 baths 4,345 sqft 3707 Military Road Northwest, Washington, DC 20015": + - /url: /listing/3707-military-road-northwest-washington-dc-78946129 + - generic: Compass Exclusive + - img "3707 Military Road Northwest" + - generic: $2,200,000 + - generic: 6 beds + - generic: 5 baths + - generic: 4,345 sqft + - generic: 3707 Military Road Northwest, Washington, DC 20015 + - link "2120 Vermont Avenue Northwest, Unit 123 $665,000 3 beds 2 baths 1,292 sqft 2120 Vermont Avenue Northwest, Unit 123, Washington, DC 20001": + - /url: /listing/2120-vermont-avenue-northwest-unit-123-washington-dc-30986649 + - img "2120 Vermont Avenue Northwest, Unit 123" + - generic: $665,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,292 sqft + - generic: 2120 Vermont Avenue Northwest, Unit 123, Washington, DC 20001 + - link "Compass Exclusive Address Upon Request $725,000 2 beds 2.5 baths 1,225 sqft Address Upon Request, Washington, DC 20001": + - /url: /listing/address-upon-request-washington-dc-68659849 + - generic: Compass Exclusive + - img "Address Upon Request" + - generic: $725,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,225 sqft + - generic: Address Upon Request, Washington, DC 20001 + - link "Compass Exclusive K Street Southeast $749,000 2 beds 2.5 baths 1,313 sqft K Street Southeast, Washington, DC 20003": + - /url: /listing/k-street-southeast-washington-dc-29157649 + - generic: Compass Exclusive + - img "K Street Southeast" + - generic: $749,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,313 sqft + - generic: K Street Southeast, Washington, DC 20003 + - link "Compass Exclusive 3206 Morrison Street Northwest $3,150,000 5 beds 5.5 baths 5,000 sqft 3206 Morrison Street Northwest, Washington, DC 20015": + - /url: /listing/3206-morrison-street-northwest-washington-dc-74603969 + - generic: Compass Exclusive + - img "3206 Morrison Street Northwest" + - generic: $3,150,000 + - generic: 5 beds + - generic: 5.5 baths + - generic: 5,000 sqft + - generic: 3206 Morrison Street Northwest, Washington, DC 20015 + - link "Compass Exclusive 520 N Street Southwest, Unit S622 $274,900 1 beds 1 baths 591 sqft 520 N Street Southwest, Unit S622, Washington, DC 20024": + - /url: /listing/520-n-street-southwest-unit-s622-washington-dc-60161193 + - generic: Compass Exclusive + - img "520 N Street Southwest, Unit S622" + - generic: $274,900 + - generic: 1 beds + - generic: 1 baths + - generic: 591 sqft + - generic: 520 N Street Southwest, Unit S622, Washington, DC 20024 +- contentinfo: + - button "Company": + - text: Company + - generic: + + - button "Explore": + - text: Explore + - generic: + + - heading "Mobile Apps" [level=2] + - link "Compass iOS App": + - /url: https://itunes.apple.com/app/id692766504 + - img "Compass iOS App" + - link "Compass Android App": + - /url: https://play.google.com/store/apps/details?id=com.compass.compass + - img "Compass Android App" + - link "Instagram": + - /url: https://instagram.com/compass/ + - text: ◎ + - link "Facebook": + - /url: https://facebook.com/compass/ + - text: f + - link "X": + - /url: https://x.com/compass/ + - text: 𝕏 + - paragraph: © 2026 Compass mirror — WebHarbor benchmark site. Not affiliated with Compass, Inc. Listing information is a fixed snapshot; availability may have changed. + - paragraph: Account actions, saved homes, collections and tour requests stay in this local environment. They are not sent to Compass agents. + - paragraph: Links marked ↗ open external websites. Mortgage, brokerage recruitment, new development marketing and corporate services are provided on their original websites, outside this environment. + - paragraph: COMPASS and the Compass logo are trademarks of Compass, Inc. + - paragraph: + - link "Help": + - /url: /help + - text: · + - link "About this environment": + - /url: /about \ No newline at end of file diff --git a/sites/compass/docs/visual-review/home/task17/observations/003-before.txt b/sites/compass/docs/visual-review/home/task17/observations/003-before.txt new file mode 100644 index 00000000..cb111d01 --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/observations/003-before.txt @@ -0,0 +1,174 @@ +- link "Skip to content": + - /url: "#main-content" +- banner: + - button "Open navigation": ☰ + - link "Compass": + - /url: / + - img "Compass" + - link "Register": + - /url: /register + - generic: / + - link "Sign In": + - /url: /login +- main: + - heading "Find your place" [level=1] + - search: + - group "Search type": + - generic: Search type + - radio "Buy" [checked] + - generic: Buy + - radio "Rent" + - generic: Rent + - link "Sell": + - /url: /sell/?origin=sellTab + - combobox "City, neighborhood, ZIP or address" + - button "Search": + - heading "Compass Exclusives" [level=2] + - paragraph: Be the first to browse exclusive listings before they hit the market. + - paragraph: Explore a selection from our listing snapshot. Visit each property for its recorded status and details. + - article: + - link "View 425 West 24th Street, Unit 1F": + - /url: /listing/425-west-24th-street-unit-1f-new-york-ny-47919969 + - img "425 West 24th Street, Unit 1F" + - generic: Compass Exclusive + - button "Previous image for 425 West 24th Street, Unit 1F": ‹ + - button "Next image for 425 West 24th Street, Unit 1F": › + - generic: 1/5 + - link "$1,325,000 2 beds 2 baths 1,200 sqft 425 West 24th Street, Unit 1F, New York, NY 10011": + - /url: /listing/425-west-24th-street-unit-1f-new-york-ny-47919969 + - paragraph: $1,325,000 + - paragraph: + - generic: 2 beds + - generic: 2 baths + - generic: 1,200 sqft + - paragraph: 425 West 24th Street, Unit 1F, New York, NY 10011 + - article: + - link "View 1718 Occidental Boulevard": + - /url: /listing/1718-occidental-boulevard-los-angeles-ca-11068225 + - img "1718 Occidental Boulevard" + - generic: Compass Exclusive + - button "Previous image for 1718 Occidental Boulevard": ‹ + - button "Next image for 1718 Occidental Boulevard": › + - generic: 1/5 + - link "$1,299,000 2 beds 1 baths 1,113 sqft 1718 Occidental Boulevard, Los Angeles, CA 90026": + - /url: /listing/1718-occidental-boulevard-los-angeles-ca-11068225 + - paragraph: $1,299,000 + - paragraph: + - generic: 2 beds + - generic: 1 baths + - generic: 1,113 sqft + - paragraph: 1718 Occidental Boulevard, Los Angeles, CA 90026 + - article: + - img "Compass Private Exclusives" + - paragraph: Discover homes marketed privately with Compass. + - generic: Explore the private listings available in this snapshot, or connect with an agent. + - link "See Private Exclusives": + - /url: /private-exclusives/ + - article: + - link "View Undisclosed Address": + - /url: /listing/undisclosed-address-los-angeles-ca-12555729 + - img "Undisclosed Address" + - generic: Compass Exclusive + - button "Previous image for Undisclosed Address": ‹ + - button "Next image for Undisclosed Address": › + - generic: 1/5 + - link "$1,995,000 3 beds 2 baths 1,688 sqft Undisclosed Address, Los Angeles, CA 90066": + - /url: /listing/undisclosed-address-los-angeles-ca-12555729 + - paragraph: $1,995,000 + - paragraph: + - generic: 3 beds + - generic: 2 baths + - generic: 1,688 sqft + - paragraph: Undisclosed Address, Los Angeles, CA 90066 + - link "View All Compass Exclusives": + - /url: /search?compass_exclusive=1 + - text: View All Compass Exclusives + - generic: → + - heading "Know your buying power with a preapproval and custom rate in minutes" [level=2] + - link "See What I Qualify For external website": + - /url: https://launchpad.rocketmortgage.com/?qls=COM_COMPRM26.EYQK1EJWRF&i=purchase&si=83 + - text: See What I Qualify For + - generic "external website": ↗ + - link "Rocket Mortgage ¹": + - /url: https://launchpad.rocketmortgage.com/?qls=COM_COMPRM26.EYQK1EJWRF&i=purchase&si=83 + - img "Rocket Mortgage" + - superscript: ¹ + - article: + - img "Before home improvements" + - generic: Before Concierge + - img "After home improvements" + - generic: After Concierge + - heading "Compass Concierge" [level=2] + - paragraph: Concierge helps you sell your home faster and for more money by covering the cost of home improvement services — zero due until closing.* + - generic: "*Depending on your state of residence, fees or interest may apply." + - link "Learn More": + - /url: /concierge/ + - text: Learn More + - generic: → + - heading "Find the Neighborhood For You" [level=2] + - paragraph: The neighborhoods best suited to your lifestyle, and the agents who know them best. + - link "New York City": + - /url: /neighborhood-guides/nyc/ + - generic: New York City + - link "The Hamptons": + - /url: /neighborhood-guides/hamptons/ + - generic: The Hamptons + - link "South Florida": + - /url: /neighborhood-guides/miami/ + - generic: South Florida + - link "Greater Boston": + - /url: /neighborhood-guides/boston/ + - generic: Greater Boston + - link "Southern California": + - /url: /neighborhood-guides/la/ + - generic: Southern California + - link "DC, Maryland, & Virginia": + - /url: /neighborhood-guides/dc/ + - generic: DC, Maryland, & Virginia + - link "View More Neighborhoods": + - /url: /neighborhood-guides/ + - text: View More Neighborhoods + - generic: → + - heading "Real Estate in Popular Cities" [level=2] + - paragraph: Browse listings, view photos, and connect with an agent to schedule a viewing in some of our most popular cities. + - button "Show Cities": + - text: Show Cities + - generic: + + - heading "Real Estate Markets" [level=2] + - paragraph: Find your next dream home in one of our markets. + - button "Show Markets": + - text: Show Markets + - generic: + +- contentinfo: + - button "Company": + - text: Company + - generic: + + - button "Explore": + - text: Explore + - generic: + + - heading "Mobile Apps" [level=2] + - link "Compass iOS App": + - /url: https://itunes.apple.com/app/id692766504 + - img "Compass iOS App" + - link "Compass Android App": + - /url: https://play.google.com/store/apps/details?id=com.compass.compass + - img "Compass Android App" + - link "Instagram": + - /url: https://instagram.com/compass/ + - text: ◎ + - link "Facebook": + - /url: https://facebook.com/compass/ + - text: f + - link "X": + - /url: https://x.com/compass/ + - text: 𝕏 + - paragraph: © 2026 Compass mirror — WebHarbor benchmark site. Not affiliated with Compass, Inc. Listing information is a fixed snapshot; availability may have changed. + - paragraph: Account actions, saved homes, collections and tour requests stay in this local environment. They are not sent to Compass agents. + - paragraph: Links marked ↗ open external websites. Mortgage, brokerage recruitment, new development marketing and corporate services are provided on their original websites, outside this environment. + - paragraph: COMPASS and the Compass logo are trademarks of Compass, Inc. + - paragraph: + - link "Help": + - /url: /help + - text: · + - link "About this environment": + - /url: /about \ No newline at end of file diff --git a/sites/compass/docs/visual-review/home/task17/observations/004-after.txt b/sites/compass/docs/visual-review/home/task17/observations/004-after.txt new file mode 100644 index 00000000..537c1535 --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/observations/004-after.txt @@ -0,0 +1,2734 @@ +- link "Skip to content": + - /url: "#main-content" +- banner: + - button "Open navigation": ☰ + - link "Compass": + - /url: / + - img "Compass" + - link "Register": + - /url: /register + - generic: / + - link "Sign In": + - /url: /login +- main: + - heading "All listings" [level=1] + - searchbox "Search terms" + - generic: Listing status + - combobox "Listing status": + - option "Any status" + - option "For sale" [selected] + - option "For rent" + - option "Sold" + - option "Closed" + - option "Rented" + - generic: Home type + - combobox "Home type": + - option "All home types" + - option "Single Family" + - option "Condo" [selected] + - option "Co-op" + - option "Townhouse" + - option "Multi-Family" + - option "Apartment" + - option "Rental" + - option "Land" + - option "Office" + - option "Mixed Use" + - option "Other" + - generic: Min beds + - combobox "Min beds": + - option "Any beds" [selected] + - option "1+" + - option "2+" + - option "3+" + - option "4+" + - option "5+" + - generic: Max price + - spinbutton "Max price" + - button "Filters" + - button "Search" + - dialog "Filters": + - heading "Filters" [level=2] + - button "Close filters" [active]: × + - generic: Min price + - spinbutton "Min price" + - generic: Min baths + - spinbutton "Min baths" + - generic: Min square feet + - spinbutton "Min square feet" + - generic: Built in or after + - spinbutton "Built in or after" + - group "Features": + - generic: Features + - checkbox "Pool" + - text: Pool + - checkbox "Garage" + - text: Garage + - checkbox "Waterfront" + - text: Waterfront + - checkbox "Doorman" + - text: Doorman + - checkbox "Open house" + - text: Open house + - checkbox "New listing" + - text: New listing + - checkbox "Compass exclusive" + - text: Compass exclusive + - link "Reset filters": + - /url: /search + - button "Apply filters" + - generic: Sort by + - combobox "Sort by": + - option "Relevance" + - option "Newest" + - 'option "Price: low to high"' + - 'option "Price: high to low" [selected]' + - option "Bedrooms" + - option "Square feet" + - 'option "$/sqft: low to high"' + - 'option "$/sqft: high to low"' + - generic: 303 results. + - link "Compass Exclusive 425 West 24th Street, Unit 1F $1,325,000 2 beds 2 baths 1,200 sqft 425 West 24th Street, Unit 1F, New York, NY 10011": + - /url: /listing/425-west-24th-street-unit-1f-new-york-ny-47919969 + - generic: Compass Exclusive + - img "425 West 24th Street, Unit 1F" + - generic: $1,325,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,200 sqft + - generic: 425 West 24th Street, Unit 1F, New York, NY 10011 + - link "400 Lincoln Place, Unit 2B $500,000 — beds — baths — sqft 400 Lincoln Place, Unit 2B, New York, NY 11238": + - /url: /listing/400-lincoln-place-unit-2b-new-york-ny-40815033 + - img "400 Lincoln Place, Unit 2B" + - generic: $500,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 400 Lincoln Place, Unit 2B, New York, NY 11238 + - link "391 3rd Street, Unit 1 $1,295,000 2 beds — baths — sqft 391 3rd Street, Unit 1, New York, NY 11215": + - /url: /listing/391-3rd-street-unit-1-new-york-ny-82456857 + - img "391 3rd Street, Unit 1" + - generic: $1,295,000 + - generic: 2 beds + - generic: — baths + - generic: — sqft + - generic: 391 3rd Street, Unit 1, New York, NY 11215 + - link "150 Joralemon Street, Unit 7A $1,250,000 2 beds 1 baths — sqft 150 Joralemon Street, Unit 7A, Brooklyn, NY 11201": + - /url: /listing/150-joralemon-street-unit-7a-new-york-ny-96805081 + - img "150 Joralemon Street, Unit 7A" + - generic: $1,250,000 + - generic: 2 beds + - generic: 1 baths + - generic: — sqft + - generic: 150 Joralemon Street, Unit 7A, Brooklyn, NY 11201 + - link "Pending 160 Columbia Heights, Unit 10F $2,195,000 2 beds 2 baths — sqft 160 Columbia Heights, Unit 10F, Brooklyn, NY 11201": + - /url: /listing/160-columbia-heights-unit-10f-new-york-ny-65591129 + - generic: Pending + - img "160 Columbia Heights, Unit 10F" + - generic: $2,195,000 + - generic: 2 beds + - generic: 2 baths + - generic: — sqft + - generic: 160 Columbia Heights, Unit 10F, Brooklyn, NY 11201 + - link "Pending 58 Remsen Street, Unit 1R $2,250,000 2 beds 1.5 baths — sqft 58 Remsen Street, Unit 1R, Brooklyn, NY 11201": + - /url: /listing/58-remsen-street-unit-1r-new-york-ny-19465409 + - generic: Pending + - img "58 Remsen Street, Unit 1R" + - generic: $2,250,000 + - generic: 2 beds + - generic: 1.5 baths + - generic: — sqft + - generic: 58 Remsen Street, Unit 1R, Brooklyn, NY 11201 + - link "Pending 130 Prospect Place, Unit 1 $1,495,000 2 beds 2 baths 1,200 sqft 130 Prospect Place, Unit 1, Brooklyn, NY 11217": + - /url: /listing/130-prospect-place-unit-1-new-york-ny-78987185 + - generic: Pending + - img "130 Prospect Place, Unit 1" + - generic: $1,495,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,200 sqft + - generic: 130 Prospect Place, Unit 1, Brooklyn, NY 11217 + - link "110 Hoyt Street, Unit 1 $975,000 — beds — baths 753 sqft 110 Hoyt Street, Unit 1, New York, NY 11217": + - /url: /listing/110-hoyt-street-unit-1-new-york-ny-87729625 + - img "110 Hoyt Street, Unit 1" + - generic: $975,000 + - generic: — beds + - generic: — baths + - generic: 753 sqft + - generic: 110 Hoyt Street, Unit 1, New York, NY 11217 + - link "21 Monroe Place, Unit 5R $765,000 — beds — baths — sqft 21 Monroe Place, Unit 5R, New York, NY 11201": + - /url: /listing/21-monroe-place-unit-5r-new-york-ny-19536305 + - img "21 Monroe Place, Unit 5R" + - generic: $765,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 21 Monroe Place, Unit 5R, New York, NY 11201 + - link "115 Spring Street, Unit 2 $6,500,000 3 beds 3 baths — sqft 115 Spring Street, Unit 2, New York, NY 10012": + - /url: /listing/115-spring-street-unit-2-new-york-ny-38846297 + - img "115 Spring Street, Unit 2" + - generic: $6,500,000 + - generic: 3 beds + - generic: 3 baths + - generic: — sqft + - generic: 115 Spring Street, Unit 2, New York, NY 10012 + - link "118 Perry Street, Unit J45 $575,000 — beds — baths — sqft 118 Perry Street, Unit J45, New York, NY 10014": + - /url: /listing/118-perry-street-unit-j45-new-york-ny-45254425 + - img "118 Perry Street, Unit J45" + - generic: $575,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 118 Perry Street, Unit J45, New York, NY 10014 + - link "21 South Portland Avenue, Unit 2F $775,000 — beds — baths — sqft 21 South Portland Avenue, Unit 2F, New York, NY 11217": + - /url: /listing/21-south-portland-avenue-unit-2f-new-york-ny-07712233 + - img "21 South Portland Avenue, Unit 2F" + - generic: $775,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 21 South Portland Avenue, Unit 2F, New York, NY 11217 + - link "Pending 150 Charles Street, Unit M10 $21,500,000 4 beds 4.5 baths 5,612 sqft 150 Charles Street, Unit M10, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-m10-new-york-ny-81286569 + - generic: Pending + - img "150 Charles Street, Unit M10" + - generic: $21,500,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 5,612 sqft + - generic: 150 Charles Street, Unit M10, Manhattan, NY 10014 + - link "Pending 195 Willoughby Avenue, Unit 1517/1518 $1,125,000 2 beds 2 baths 1,217 sqft 195 Willoughby Avenue, Unit 1517/1518, Brooklyn, NY 11205": + - /url: /listing/195-willoughby-avenue-unit-1517-1518-new-york-ny-05751361 + - generic: Pending + - img "195 Willoughby Avenue, Unit 1517/1518" + - generic: $1,125,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,217 sqft + - generic: 195 Willoughby Avenue, Unit 1517/1518, Brooklyn, NY 11205 + - link "20 East 9th Street, Unit 4T $799,000 1 beds 1 baths — sqft 20 East 9th Street, Unit 4T, Manhattan, NY 10003": + - /url: /listing/20-east-9th-street-unit-4t-new-york-ny-10648129 + - img "20 East 9th Street, Unit 4T" + - generic: $799,000 + - generic: 1 beds + - generic: 1 baths + - generic: — sqft + - generic: 20 East 9th Street, Unit 4T, Manhattan, NY 10003 + - link "Pending 634 Washington Street, Unit 4B $1,750,000 3 beds 1.5 baths — sqft 634 Washington Street, Unit 4B, Manhattan, NY 10014": + - /url: /listing/634-washington-street-unit-4b-new-york-ny-46018681 + - generic: Pending + - img "634 Washington Street, Unit 4B" + - generic: $1,750,000 + - generic: 3 beds + - generic: 1.5 baths + - generic: — sqft + - generic: 634 Washington Street, Unit 4B, Manhattan, NY 10014 + - link "195 Willoughby Avenue, Unit 1518 $700,000 — beds — baths — sqft 195 Willoughby Avenue, Unit 1518, New York, NY 11205": + - /url: /listing/195-willoughby-avenue-unit-1518-new-york-ny-22490329 + - img "195 Willoughby Avenue, Unit 1518" + - generic: $700,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 195 Willoughby Avenue, Unit 1518, New York, NY 11205 + - link "787 Carroll Street $10,250,000 5 beds 4 baths 6,664 sqft 787 Carroll Street, New York, NY 11215": + - /url: /listing/787-carroll-street-new-york-ny-07909369 + - img "787 Carroll Street" + - generic: $10,250,000 + - generic: 5 beds + - generic: 4 baths + - generic: 6,664 sqft + - generic: 787 Carroll Street, New York, NY 11215 + - link "195 Willoughby Avenue, Unit 1517 $425,000 — beds — baths — sqft 195 Willoughby Avenue, Unit 1517, New York, NY 11205": + - /url: /listing/195-willoughby-avenue-unit-1517-new-york-ny-77007633 + - img "195 Willoughby Avenue, Unit 1517" + - generic: $425,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 195 Willoughby Avenue, Unit 1517, New York, NY 11205 + - link "Pending 270 5th Street, Unit 4C $1,350,000 2 beds 1 baths — sqft 270 5th Street, Unit 4C, Brooklyn, NY 11215": + - /url: /listing/270-5th-street-unit-4c-new-york-ny-15444585 + - generic: Pending + - img "270 5th Street, Unit 4C" + - generic: $1,350,000 + - generic: 2 beds + - generic: 1 baths + - generic: — sqft + - generic: 270 5th Street, Unit 4C, Brooklyn, NY 11215 + - link "228 West 21st Street, Unit 2 $1,800,000 2 beds 2 baths — sqft 228 West 21st Street, Unit 2, New York, NY 10011": + - /url: /listing/228-west-21st-street-unit-2-new-york-ny-06805097 + - img "228 West 21st Street, Unit 2" + - generic: $1,800,000 + - generic: 2 beds + - generic: 2 baths + - generic: — sqft + - generic: 228 West 21st Street, Unit 2, New York, NY 10011 + - link "New 230 East 15th Street, Unit 9B $550,000 — beds — baths 600 sqft 230 East 15th Street, Unit 9B, New York, NY 10003": + - /url: /listing/230-east-15th-street-unit-9b-new-york-ny-22022945 + - generic: New + - img "230 East 15th Street, Unit 9B" + - generic: $550,000 + - generic: — beds + - generic: — baths + - generic: 600 sqft + - generic: 230 East 15th Street, Unit 9B, New York, NY 10003 + - link "470 West 24th Street, Unit 11G $1,150,000 — beds — baths — sqft 470 West 24th Street, Unit 11G, New York, NY 10011": + - /url: /listing/470-west-24th-street-unit-11g-new-york-ny-85729881 + - img "470 West 24th Street, Unit 11G" + - generic: $1,150,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 470 West 24th Street, Unit 11G, New York, NY 10011 + - link "155 West 20th Street, Unit 6H $895,000 — beds — baths 850 sqft 155 West 20th Street, Unit 6H, New York, NY 10011": + - /url: /listing/155-west-20th-street-unit-6h-new-york-ny-71890545 + - img "155 West 20th Street, Unit 6H" + - generic: $895,000 + - generic: — beds + - generic: — baths + - generic: 850 sqft + - generic: 155 West 20th Street, Unit 6H, New York, NY 10011 + - link "Pending 1 Northside Piers, Unit 24J $2,075,000 2 beds 2 baths 1,064 sqft 1 Northside Piers, Unit 24J, Brooklyn, NY 11249": + - /url: /listing/1-northside-piers-unit-24j-new-york-ny-95518345 + - generic: Pending + - img "1 Northside Piers, Unit 24J" + - generic: $2,075,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,064 sqft + - generic: 1 Northside Piers, Unit 24J, Brooklyn, NY 11249 + - link "Pending 150 Charles Street, Unit 3AS $8,995,000 3 beds 3.5 baths 2,461 sqft 150 Charles Street, Unit 3AS, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-3as-new-york-ny-85442145 + - generic: Pending + - img "150 Charles Street, Unit 3AS" + - generic: $8,995,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 2,461 sqft + - generic: 150 Charles Street, Unit 3AS, Manhattan, NY 10014 + - link "10 Quincy Street, Unit 2C $1,199,000 — beds — baths 730 sqft 10 Quincy Street, Unit 2C, New York, NY 11238": + - /url: /listing/10-quincy-street-unit-2c-new-york-ny-52220705 + - img "10 Quincy Street, Unit 2C" + - generic: $1,199,000 + - generic: — beds + - generic: — baths + - generic: 730 sqft + - generic: 10 Quincy Street, Unit 2C, New York, NY 11238 + - link "137 Putnam Avenue $2,499,000 5 beds 3.5 baths 2,753 sqft 137 Putnam Avenue, Brooklyn, NY 11238": + - /url: /listing/137-putnam-avenue-new-york-ny-69799641 + - img "137 Putnam Avenue" + - generic: $2,499,000 + - generic: 5 beds + - generic: 3.5 baths + - generic: 2,753 sqft + - generic: 137 Putnam Avenue, Brooklyn, NY 11238 + - link "389 Classon Avenue $3,995,000 4 beds 3 baths 2,565 sqft 389 Classon Avenue, New York, NY 11238": + - /url: /listing/389-classon-avenue-new-york-ny-70718105 + - img "389 Classon Avenue" + - generic: $3,995,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,565 sqft + - generic: 389 Classon Avenue, New York, NY 11238 + - link "479 Henry Street $9,950,000 5 beds 4 baths 4,800 sqft 479 Henry Street, New York, NY 11231": + - /url: /listing/479-henry-street-new-york-ny-19847793 + - img "479 Henry Street" + - generic: $9,950,000 + - generic: 5 beds + - generic: 4 baths + - generic: 4,800 sqft + - generic: 479 Henry Street, New York, NY 11231 + - link "669 Saint Marks Avenue, Unit 2B $1,799,000 3 beds 2.5 baths 1,285 sqft 669 Saint Marks Avenue, Unit 2B, Brooklyn, NY 11216": + - /url: /listing/669-saint-marks-avenue-unit-2b-new-york-ny-65073649 + - img "669 Saint Marks Avenue, Unit 2B" + - generic: $1,799,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,285 sqft + - generic: 669 Saint Marks Avenue, Unit 2B, Brooklyn, NY 11216 + - link "140-142 West End Avenue, Unit 30M $950,000 — beds — baths — sqft 140-142 West End Avenue, Unit 30M, New York, NY 10023": + - /url: /listing/140-142-west-end-avenue-unit-30m-new-york-ny-56723409 + - img "140-142 West End Avenue, Unit 30M" + - generic: $950,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 140-142 West End Avenue, Unit 30M, New York, NY 10023 + - link "Compass Exclusive 1718 Occidental Boulevard $1,299,000 2 beds 1 baths 1,113 sqft 1718 Occidental Boulevard, Los Angeles, CA 90026": + - /url: /listing/1718-occidental-boulevard-los-angeles-ca-11068225 + - generic: Compass Exclusive + - img "1718 Occidental Boulevard" + - generic: $1,299,000 + - generic: 2 beds + - generic: 1 baths + - generic: 1,113 sqft + - generic: 1718 Occidental Boulevard, Los Angeles, CA 90026 + - link "Compass Exclusive Undisclosed Address $1,995,000 3 beds 2 baths 1,688 sqft Undisclosed Address, Los Angeles, CA 90066": + - /url: /listing/undisclosed-address-los-angeles-ca-12555729 + - generic: Compass Exclusive + - img "Undisclosed Address" + - generic: $1,995,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,688 sqft + - generic: Undisclosed Address, Los Angeles, CA 90066 + - link "Compass Exclusive 1915 Malcolm Avenue, Unit 301 $1,138,000 3 beds 2 baths 1,511 sqft 1915 Malcolm Avenue, Unit 301, Los Angeles, CA 90025": + - /url: /listing/1915-malcolm-avenue-unit-301-los-angeles-ca-15997937 + - generic: Compass Exclusive + - img "1915 Malcolm Avenue, Unit 301" + - generic: $1,138,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,511 sqft + - generic: 1915 Malcolm Avenue, Unit 301, Los Angeles, CA 90025 + - link "Compass Exclusive 8550 Ridpath Drive $2,100,000 3 beds 2 baths 1,596 sqft 8550 Ridpath Drive, Los Angeles, CA 90046": + - /url: /listing/8550-ridpath-drive-los-angeles-ca-87131737 + - generic: Compass Exclusive + - img "8550 Ridpath Drive" + - generic: $2,100,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,596 sqft + - generic: 8550 Ridpath Drive, Los Angeles, CA 90046 + - link "Compass Exclusive Undisclosed Address $8,995,000 5 beds 7 baths 6,069 sqft Undisclosed Address, Los Angeles, CA 90004": + - /url: /listing/undisclosed-address-los-angeles-ca-01703001 + - generic: Compass Exclusive + - img "Undisclosed Address" + - generic: $8,995,000 + - generic: 5 beds + - generic: 7 baths + - generic: 6,069 sqft + - generic: Undisclosed Address, Los Angeles, CA 90004 + - link "Compass Exclusive 5226 Village Green $685,000 2 beds — baths 818 sqft 5226 Village Green, Los Angeles, CA 90016": + - /url: /listing/5226-village-green-los-angeles-ca-69965641 + - generic: Compass Exclusive + - img "5226 Village Green" + - generic: $685,000 + - generic: 2 beds + - generic: — baths + - generic: 818 sqft + - generic: 5226 Village Green, Los Angeles, CA 90016 + - link "3001 Passmore Drive $3,950,000 6 beds 5.5 baths 4,416 sqft 3001 Passmore Drive, Los Angeles, CA 90068": + - /url: /listing/undisclosed-address-los-angeles-ca-93436001 + - img "3001 Passmore Drive" + - generic: $3,950,000 + - generic: 6 beds + - generic: 5.5 baths + - generic: 4,416 sqft + - generic: 3001 Passmore Drive, Los Angeles, CA 90068 + - link "5516 Village Green $585,000 2 beds 1 baths 826 sqft 5516 Village Green, Los Angeles, CA 90016": + - /url: /listing/5516-village-green-los-angeles-ca-20666961 + - img "5516 Village Green" + - generic: $585,000 + - generic: 2 beds + - generic: 1 baths + - generic: 826 sqft + - generic: 5516 Village Green, Los Angeles, CA 90016 + - link "Compass Exclusive 11307 Morrison Street $989,000 3 beds 3.5 baths 1,676 sqft 11307 Morrison Street, North Hollywood, CA 91601": + - /url: /listing/11307-morrison-street-los-angeles-ca-83506497 + - generic: Compass Exclusive + - img "11307 Morrison Street" + - generic: $989,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 1,676 sqft + - generic: 11307 Morrison Street, North Hollywood, CA 91601 + - link "Compass Exclusive 248 North Glenroy Avenue $8,995,000 5 beds 6 baths 4,899 sqft 248 North Glenroy Avenue, Los Angeles, CA 90049": + - /url: /listing/248-north-glenroy-avenue-los-angeles-ca-38580513 + - generic: Compass Exclusive + - img "248 North Glenroy Avenue" + - generic: $8,995,000 + - generic: 5 beds + - generic: 6 baths + - generic: 4,899 sqft + - generic: 248 North Glenroy Avenue, Los Angeles, CA 90049 + - link "Compass Exclusive 417 Venice Way $2,799,000 4 beds 4 baths 3,154 sqft 417 Venice Way, Los Angeles, CA 90291": + - /url: /listing/417-venice-way-los-angeles-ca-28981633 + - generic: Compass Exclusive + - img "417 Venice Way" + - generic: $2,799,000 + - generic: 4 beds + - generic: 4 baths + - generic: 3,154 sqft + - generic: 417 Venice Way, Los Angeles, CA 90291 + - link "Compass Exclusive 6001 Carlton Way, Unit 106 $705,000 2 beds 2 baths 1,200 sqft 6001 Carlton Way, Unit 106, Los Angeles, CA 90028": + - /url: /listing/6001-carlton-way-unit-106-los-angeles-ca-99002433 + - generic: Compass Exclusive + - img "6001 Carlton Way, Unit 106" + - generic: $705,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,200 sqft + - generic: 6001 Carlton Way, Unit 106, Los Angeles, CA 90028 + - link "Compass Exclusive 8344 McConnell Avenue $3,495,000 5 beds 6 baths 3,128 sqft 8344 McConnell Avenue, Los Angeles, CA 90045": + - /url: /listing/8344-mcconnell-avenue-los-angeles-ca-87192249 + - generic: Compass Exclusive + - img "8344 McConnell Avenue" + - generic: $3,495,000 + - generic: 5 beds + - generic: 6 baths + - generic: 3,128 sqft + - generic: 8344 McConnell Avenue, Los Angeles, CA 90045 + - link "Compass Exclusive 928 Croft Avenue, Unit 303 $2,089,000 3 beds 3 baths 1,980 sqft 928 Croft Avenue, Unit 303, Los Angeles, CA 90069": + - /url: /listing/928-croft-avenue-unit-303-los-angeles-ca-69140937 + - generic: Compass Exclusive + - img "928 Croft Avenue, Unit 303" + - generic: $2,089,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,980 sqft + - generic: 928 Croft Avenue, Unit 303, Los Angeles, CA 90069 + - link "Compass Exclusive 13070 Kiyot Way $3,650,000 4 beds 4 baths 3,458 sqft 13070 Kiyot Way, Los Angeles, CA 90094": + - /url: /listing/13070-kiyot-way-los-angeles-ca-21194649 + - generic: Compass Exclusive + - img "13070 Kiyot Way" + - generic: $3,650,000 + - generic: 4 beds + - generic: 4 baths + - generic: 3,458 sqft + - generic: 13070 Kiyot Way, Los Angeles, CA 90094 + - link "Compass Exclusive 12765 Bluff Creek Drive, Unit 1 $3,150,000 4 beds 4 baths 2,674 sqft 12765 Bluff Creek Drive, Unit 1, Los Angeles, CA 90094": + - /url: /listing/12765-bluff-creek-drive-unit-1-los-angeles-ca-98362465 + - generic: Compass Exclusive + - img "12765 Bluff Creek Drive, Unit 1" + - generic: $3,150,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,674 sqft + - generic: 12765 Bluff Creek Drive, Unit 1, Los Angeles, CA 90094 + - link "1100 South Hope Street, Unit 1006 $535,000 1 beds 1 baths 1,007 sqft 1100 South Hope Street, Unit 1006, Los Angeles, CA 90015": + - /url: /listing/1100-south-hope-street-unit-1006-los-angeles-ca-91687721 + - img "1100 South Hope Street, Unit 1006" + - generic: $535,000 + - generic: 1 beds + - generic: 1 baths + - generic: 1,007 sqft + - generic: 1100 South Hope Street, Unit 1006, Los Angeles, CA 90015 + - link "Pending 13626 Shablow Avenue $739,000 3 beds 2 baths 1,068 sqft 13626 Shablow Avenue, Sylmar, CA 91342": + - /url: /listing/13626-shablow-avenue-los-angeles-ca-14835353 + - generic: Pending + - img "13626 Shablow Avenue" + - generic: $739,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,068 sqft + - generic: 13626 Shablow Avenue, Sylmar, CA 91342 + - link "Compass Exclusive 333 East Colden Avenue $450,000 — beds 0 baths — sqft 333 East Colden Avenue, Los Angeles, CA 90003": + - /url: /listing/333-east-colden-avenue-los-angeles-ca-77088801 + - generic: Compass Exclusive + - img "333 East Colden Avenue" + - generic: $450,000 + - generic: — beds + - generic: 0 baths + - generic: — sqft + - generic: 333 East Colden Avenue, Los Angeles, CA 90003 + - link "889 Francisco Street, Unit 1206 $998,000 2 beds 2.5 baths 1,489 sqft 889 Francisco Street, Unit 1206, Los Angeles, CA 90017": + - /url: /listing/889-francisco-street-unit-1206-los-angeles-ca-99006633 + - img "889 Francisco Street, Unit 1206" + - generic: $998,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,489 sqft + - generic: 889 Francisco Street, Unit 1206, Los Angeles, CA 90017 + - link "3536 1/2 Arroyo Seco Avenue $499,000 2 beds 2 baths 840 sqft 3536 1/2 Arroyo Seco Avenue, Los Angeles, CA 90065": + - /url: /listing/3536-1-2-arroyo-seco-avenue-los-angeles-ca-37515281 + - img "3536 1/2 Arroyo Seco Avenue" + - generic: $499,000 + - generic: 2 beds + - generic: 2 baths + - generic: 840 sqft + - generic: 3536 1/2 Arroyo Seco Avenue, Los Angeles, CA 90065 + - link "2050 North Las Palmas Avenue $1,850,000 3 beds 4 baths 1,830 sqft 2050 North Las Palmas Avenue, Los Angeles, CA 90068": + - /url: /listing/2050-north-las-palmas-avenue-los-angeles-ca-96276937 + - img "2050 North Las Palmas Avenue" + - generic: $1,850,000 + - generic: 3 beds + - generic: 4 baths + - generic: 1,830 sqft + - generic: 2050 North Las Palmas Avenue, Los Angeles, CA 90068 + - link "404 North Avenue 52 $1,150,000 3 beds 2 baths 1,124 sqft 404 North Avenue 52, Los Angeles, CA 90042": + - /url: /listing/404-north-avenue-52-los-angeles-ca-89227753 + - img "404 North Avenue 52" + - generic: $1,150,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,124 sqft + - generic: 404 North Avenue 52, Los Angeles, CA 90042 + - link "2267 Duane Street, Unit 3 $1,699,000 3 beds 4 baths 2,644 sqft 2267 Duane Street, Unit 3, Los Angeles, CA 90039": + - /url: /listing/2267-duane-street-unit-3-los-angeles-ca-07728865 + - img "2267 Duane Street, Unit 3" + - generic: $1,699,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,644 sqft + - generic: 2267 Duane Street, Unit 3, Los Angeles, CA 90039 + - link "9149 Hillsboro Drive $2,299,000 3 beds 2 baths 2,740 sqft 9149 Hillsboro Drive, Los Angeles, CA 90034": + - /url: /listing/9149-hillsboro-drive-los-angeles-ca-69721649 + - img "9149 Hillsboro Drive" + - generic: $2,299,000 + - generic: 3 beds + - generic: 2 baths + - generic: 2,740 sqft + - generic: 9149 Hillsboro Drive, Los Angeles, CA 90034 + - link "Pending 1215 Brockton Avenue, Unit 203 $949,000 2 beds 2 baths 1,581 sqft 1215 Brockton Avenue, Unit 203, Los Angeles, CA 90025": + - /url: /listing/1215-brockton-avenue-unit-203-los-angeles-ca-98411753 + - generic: Pending + - img "1215 Brockton Avenue, Unit 203" + - generic: $949,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,581 sqft + - generic: 1215 Brockton Avenue, Unit 203, Los Angeles, CA 90025 + - link "6374 Macal Place $1,495,000 2 beds 2 baths 1,532 sqft 6374 Macal Place, Los Angeles, CA 90068": + - /url: /listing/6374-macal-place-los-angeles-ca-76499777 + - img "6374 Macal Place" + - generic: $1,495,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,532 sqft + - generic: 6374 Macal Place, Los Angeles, CA 90068 + - link "Compass Exclusive 3310 Elizabeth Street $2,985,000 4 beds 4 baths 2,643 sqft 3310 Elizabeth Street, Miami, FL 33133": + - /url: /listing/3310-elizabeth-street-miami-fl-82744289 + - generic: Compass Exclusive + - img "3310 Elizabeth Street" + - generic: $2,985,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,643 sqft + - generic: 3310 Elizabeth Street, Miami, FL 33133 + - link "Compass Exclusive 3770 Kumquat Avenue $4,950,000 5 beds 6 baths 3,875 sqft 3770 Kumquat Avenue, Miami, FL 33133": + - /url: /listing/3770-kumquat-avenue-miami-fl-74731745 + - generic: Compass Exclusive + - img "3770 Kumquat Avenue" + - generic: $4,950,000 + - generic: 5 beds + - generic: 6 baths + - generic: 3,875 sqft + - generic: 3770 Kumquat Avenue, Miami, FL 33133 + - link "Compass Exclusive 1698 Tigertail Avenue $7,950,000 6 beds 7 baths 5,300 sqft 1698 Tigertail Avenue, Miami, FL 33133": + - /url: /listing/1698-tigertail-avenue-miami-fl-36067401 + - generic: Compass Exclusive + - img "1698 Tigertail Avenue" + - generic: $7,950,000 + - generic: 6 beds + - generic: 7 baths + - generic: 5,300 sqft + - generic: 1698 Tigertail Avenue, Miami, FL 33133 + - link "Compass Exclusive 9715 Southwest 89th Court $4,900,000 6 beds 7 baths 6,718 sqft 9715 Southwest 89th Court, Miami, FL 33176": + - /url: /listing/9715-southwest-89th-court-miami-fl-22349377 + - generic: Compass Exclusive + - img "9715 Southwest 89th Court" + - generic: $4,900,000 + - generic: 6 beds + - generic: 7 baths + - generic: 6,718 sqft + - generic: 9715 Southwest 89th Court, Miami, FL 33176 + - link "199 Caoba Court $13,995,000 5 beds 6.5 baths 5,342 sqft 199 Caoba Court, Coral Gables, FL 33143": + - /url: /listing/199-caoba-court-miami-fl-22699249 + - img "199 Caoba Court" + - generic: $13,995,000 + - generic: 5 beds + - generic: 6.5 baths + - generic: 5,342 sqft + - generic: 199 Caoba Court, Coral Gables, FL 33143 + - link "Compass Exclusive 2655 South Bayshore Drive, Unit 1801/02 $15,750,000 6 beds 7 baths 5,353 sqft 2655 South Bayshore Drive, Unit 1801/02, Miami, FL 33133": + - /url: /listing/2655-south-bayshore-drive-unit-1801-02-miami-fl-32879425 + - generic: Compass Exclusive + - img "2655 South Bayshore Drive, Unit 1801/02" + - generic: $15,750,000 + - generic: 6 beds + - generic: 7 baths + - generic: 5,353 sqft + - generic: 2655 South Bayshore Drive, Unit 1801/02, Miami, FL 33133 + - link "Compass Exclusive 17145 Southwest 90th Avenue $1,650,000 3 beds 2 baths 1,514 sqft 17145 Southwest 90th Avenue, Miami, FL 33157": + - /url: /listing/17145-southwest-90th-avenue-miami-fl-57531361 + - generic: Compass Exclusive + - img "17145 Southwest 90th Avenue" + - generic: $1,650,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,514 sqft + - generic: 17145 Southwest 90th Avenue, Miami, FL 33157 + - link "Compass Exclusive 6716 San Vicente Street $8,250,000 6 beds — baths — sqft 6716 San Vicente Street, Miami, FL 33146": + - /url: /listing/6716-san-vicente-street-miami-fl-45424521 + - generic: Compass Exclusive + - img "6716 San Vicente Street" + - generic: $8,250,000 + - generic: 6 beds + - generic: — baths + - generic: — sqft + - generic: 6716 San Vicente Street, Miami, FL 33146 + - link "Compass Exclusive 1247 Anastasia Avenue $2,500,000 3 beds 4 baths 2,525 sqft 1247 Anastasia Avenue, Miami, FL 33134": + - /url: /listing/1247-anastasia-avenue-miami-fl-83144857 + - generic: Compass Exclusive + - img "1247 Anastasia Avenue" + - generic: $2,500,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,525 sqft + - generic: 1247 Anastasia Avenue, Miami, FL 33134 + - link "Compass Exclusive 170 Northwest 44th Street $2,749,000 4 beds 4.5 baths — sqft 170 Northwest 44th Street, Miami, FL 33127": + - /url: /listing/170-northwest-44th-street-miami-fl-16681681 + - generic: Compass Exclusive + - img "170 Northwest 44th Street" + - generic: $2,749,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: — sqft + - generic: 170 Northwest 44th Street, Miami, FL 33127 + - link "Compass Exclusive 8365 Southwest 163rd Street $1,299,000 4 beds 3 baths 4,042 sqft 8365 Southwest 163rd Street, Miami, FL 33157": + - /url: /listing/8365-southwest-163rd-street-miami-fl-15682265 + - generic: Compass Exclusive + - img "8365 Southwest 163rd Street" + - generic: $1,299,000 + - generic: 4 beds + - generic: 3 baths + - generic: 4,042 sqft + - generic: 8365 Southwest 163rd Street, Miami, FL 33157 + - link "Compass Exclusive 8768 Southwest 62nd Court $3,900,000 5 beds 4 baths 4,154 sqft 8768 Southwest 62nd Court, Miami, FL 33156": + - /url: /listing/8768-southwest-62nd-court-miami-fl-15361945 + - generic: Compass Exclusive + - img "8768 Southwest 62nd Court" + - generic: $3,900,000 + - generic: 5 beds + - generic: 4 baths + - generic: 4,154 sqft + - generic: 8768 Southwest 62nd Court, Miami, FL 33156 + - link "Compass Exclusive 79 Southwest 12th Street, Unit 2201S $680,000 2 beds 2 baths 1,099 sqft 79 Southwest 12th Street, Unit 2201S, Miami, FL 33130": + - /url: /listing/79-southwest-12th-street-unit-2201s-miami-fl-99869049 + - generic: Compass Exclusive + - img "79 Southwest 12th Street, Unit 2201S" + - generic: $680,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,099 sqft + - generic: 79 Southwest 12th Street, Unit 2201S, Miami, FL 33130 + - link "Compass Exclusive Rockwell Island $5,000,000 4 beds 4.5 baths 4,588 sqft Rockwell Island, Miami, FL 33133": + - /url: /listing/rockwell-island-miami-fl-94376561 + - generic: Compass Exclusive + - img "Rockwell Island" + - generic: $5,000,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 4,588 sqft + - generic: Rockwell Island, Miami, FL 33133 + - link "Compass Exclusive 3770-3792 Kumquat Avenue $6,495,000 5 beds 6 baths 3,875 sqft 3770-3792 Kumquat Avenue, Miami, FL 33133": + - /url: /listing/3770-3792-kumquat-avenue-miami-fl-58538897 + - generic: Compass Exclusive + - img "3770-3792 Kumquat Avenue" + - generic: $6,495,000 + - generic: 5 beds + - generic: 6 baths + - generic: 3,875 sqft + - generic: 3770-3792 Kumquat Avenue, Miami, FL 33133 + - link "Compass Exclusive 8610 Southwest 83rd Street $1,275,000 4 beds 3 baths 2,660 sqft 8610 Southwest 83rd Street, Miami, FL 33143": + - /url: /listing/8610-southwest-83rd-street-miami-fl-41596097 + - generic: Compass Exclusive + - img "8610 Southwest 83rd Street" + - generic: $1,275,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,660 sqft + - generic: 8610 Southwest 83rd Street, Miami, FL 33143 + - link "88 Southwest 7th Street, Unit PH4303 $5,799,900 3 beds 4.5 baths 3,115 sqft 88 Southwest 7th Street, Unit PH4303, Miami, FL 33130": + - /url: /listing/88-southwest-7th-street-unit-ph4303-miami-fl-12289809 + - img "88 Southwest 7th Street, Unit PH4303" + - generic: $5,799,900 + - generic: 3 beds + - generic: 4.5 baths + - generic: 3,115 sqft + - generic: 88 Southwest 7th Street, Unit PH4303, Miami, FL 33130 + - link "Compass Exclusive Rockwell Island $6,532,000 6 beds 0 baths 6,501 sqft Rockwell Island, Miami, FL 33133": + - /url: /listing/rockwell-island-miami-fl-97872137 + - generic: Compass Exclusive + - img "Rockwell Island" + - generic: $6,532,000 + - generic: 6 beds + - generic: 0 baths + - generic: 6,501 sqft + - generic: Rockwell Island, Miami, FL 33133 + - link "6228 Northwest 4th Avenue $609,900 — beds — baths 1,639 sqft 6228 Northwest 4th Avenue, Miami, FL 33150": + - /url: /listing/6228-northwest-4th-avenue-miami-fl-18454937 + - img "6228 Northwest 4th Avenue" + - generic: $609,900 + - generic: — beds + - generic: — baths + - generic: 1,639 sqft + - generic: 6228 Northwest 4th Avenue, Miami, FL 33150 + - link "New 8430 Southwest 98th Street $3,995,000 5 beds 4.5 baths 5,289 sqft 8430 Southwest 98th Street, Miami, FL 33156": + - /url: /listing/8430-southwest-98th-street-miami-fl-70937905 + - generic: New + - img "8430 Southwest 98th Street" + - generic: $3,995,000 + - generic: 5 beds + - generic: 4.5 baths + - generic: 5,289 sqft + - generic: 8430 Southwest 98th Street, Miami, FL 33156 + - link "Compass Exclusive 3341-3433 Southwest 16th Terrace $1,798,000 6 beds 6 baths 3,704 sqft 3341-3433 Southwest 16th Terrace, Miami, FL 33145": + - /url: /listing/3341-3433-southwest-16th-terrace-miami-fl-57747233 + - generic: Compass Exclusive + - img "3341-3433 Southwest 16th Terrace" + - generic: $1,798,000 + - generic: 6 beds + - generic: 6 baths + - generic: 3,704 sqft + - generic: 3341-3433 Southwest 16th Terrace, Miami, FL 33145 + - link "Compass Exclusive 229 Ridgewood Road $8,888,000 6 beds 7 baths 5,437 sqft 229 Ridgewood Road, Miami, FL 33133": + - /url: /listing/229-ridgewood-road-miami-fl-81418745 + - generic: Compass Exclusive + - img "229 Ridgewood Road" + - generic: $8,888,000 + - generic: 6 beds + - generic: 7 baths + - generic: 5,437 sqft + - generic: 229 Ridgewood Road, Miami, FL 33133 + - link "Compass Exclusive 485 Brickell Avenue, Unit 1909 $875,000 2 beds 1 baths 953 sqft 485 Brickell Avenue, Unit 1909, Miami, FL 33131": + - /url: /listing/485-brickell-avenue-unit-1909-miami-fl-05393601 + - generic: Compass Exclusive + - img "485 Brickell Avenue, Unit 1909" + - generic: $875,000 + - generic: 2 beds + - generic: 1 baths + - generic: 953 sqft + - generic: 485 Brickell Avenue, Unit 1909, Miami, FL 33131 + - link "808 Brickell Key Drive, Unit 408 $1,975,000 2 beds 2.5 baths 2,093 sqft 808 Brickell Key Drive, Unit 408, Miami, FL 33131": + - /url: /listing/808-brickell-key-drive-unit-408-miami-fl-22977241 + - img "808 Brickell Key Drive, Unit 408" + - generic: $1,975,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 2,093 sqft + - generic: 808 Brickell Key Drive, Unit 408, Miami, FL 33131 + - link "Compass Exclusive 480 Northeast 31st Street, Unit PH5402 $4,500,000 3 beds 4.5 baths 2,112 sqft 480 Northeast 31st Street, Unit PH5402, Miami, FL 33137": + - /url: /listing/480-northeast-31st-street-unit-ph5402-miami-fl-31923921 + - generic: Compass Exclusive + - img "480 Northeast 31st Street, Unit PH5402" + - generic: $4,500,000 + - generic: 3 beds + - generic: 4.5 baths + - generic: 2,112 sqft + - generic: 480 Northeast 31st Street, Unit PH5402, Miami, FL 33137 + - link "Compass Exclusive 485 Brickell Avenue, Unit 1609 $875,000 2 beds 1 baths 953 sqft 485 Brickell Avenue, Unit 1609, Miami, FL 33131": + - /url: /listing/485-brickell-avenue-unit-1609-miami-fl-35885545 + - generic: Compass Exclusive + - img "485 Brickell Avenue, Unit 1609" + - generic: $875,000 + - generic: 2 beds + - generic: 1 baths + - generic: 953 sqft + - generic: 485 Brickell Avenue, Unit 1609, Miami, FL 33131 + - link "Compass Exclusive 13052 Southwest 26th Street $1,600,000 — beds — baths — sqft 13052 Southwest 26th Street, Miami, FL 33175": + - /url: /listing/13052-southwest-26th-street-miami-fl-94615185 + - generic: Compass Exclusive + - img "13052 Southwest 26th Street" + - generic: $1,600,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 13052 Southwest 26th Street, Miami, FL 33175 + - link "Compass Exclusive 1425 Brickell Avenue, Unit 42F $11,750,000 3 beds 4.5 baths 3,913 sqft 1425 Brickell Avenue, Unit 42F, Miami, FL 33131": + - /url: /listing/1425-brickell-avenue-unit-42f-miami-fl-85366897 + - generic: Compass Exclusive + - img "1425 Brickell Avenue, Unit 42F" + - generic: $11,750,000 + - generic: 3 beds + - generic: 4.5 baths + - generic: 3,913 sqft + - generic: 1425 Brickell Avenue, Unit 42F, Miami, FL 33131 + - link "Compass Exclusive 3245 Southwest 59th Avenue $1,895,000 4 beds 4 baths 3,269 sqft 3245 Southwest 59th Avenue, Miami, FL 33155": + - /url: /listing/3245-southwest-59th-avenue-miami-fl-10928377 + - generic: Compass Exclusive + - img "3245 Southwest 59th Avenue" + - generic: $1,895,000 + - generic: 4 beds + - generic: 4 baths + - generic: 3,269 sqft + - generic: 3245 Southwest 59th Avenue, Miami, FL 33155 + - link "Compass Exclusive 200 Biscayne Blvd Way, Unit 4812 $975,000 2 beds 3 baths 1,237 sqft 200 Biscayne Blvd Way, Unit 4812, Miami, FL 33131": + - /url: /listing/200-biscayne-blvd-way-unit-4812-miami-fl-36678801 + - generic: Compass Exclusive + - img "200 Biscayne Blvd Way, Unit 4812" + - generic: $975,000 + - generic: 2 beds + - generic: 3 baths + - generic: 1,237 sqft + - generic: 200 Biscayne Blvd Way, Unit 4812, Miami, FL 33131 + - link "Compass Exclusive 300 Biscayne Blvd Way, Unit 2103 $4,690,000 3 beds 5 baths 3,078 sqft 300 Biscayne Blvd Way, Unit 2103, Miami, FL 33131": + - /url: /listing/300-biscayne-blvd-way-unit-2103-miami-fl-62476721 + - generic: Compass Exclusive + - img "300 Biscayne Blvd Way, Unit 2103" + - generic: $4,690,000 + - generic: 3 beds + - generic: 5 baths + - generic: 3,078 sqft + - generic: 300 Biscayne Blvd Way, Unit 2103, Miami, FL 33131 + - link "Compass Exclusive 302134005-0535 $315,000 — beds 0 baths — sqft 302134005-0535 , Miami, FL 33167": + - /url: /listing/302134005-0535-miami-fl-19369297 + - generic: Compass Exclusive + - img "302134005-0535" + - generic: $315,000 + - generic: — beds + - generic: 0 baths + - generic: — sqft + - generic: 302134005-0535 , Miami, FL 33167 + - link "1201 Northeast 83rd Street $9,800,000 10 beds 10 baths 8,573 sqft 1201 Northeast 83rd Street, Miami, FL 33138": + - /url: /listing/1201-northeast-83rd-street-miami-fl-86057233 + - img "1201 Northeast 83rd Street" + - generic: $9,800,000 + - generic: 10 beds + - generic: 10 baths + - generic: 8,573 sqft + - generic: 1201 Northeast 83rd Street, Miami, FL 33138 + - link "Compass Exclusive 1423 Quesada Avenue $999,000 3 beds 2 baths 1,975 sqft 1423 Quesada Avenue, San Francisco, CA 94124": + - /url: /listing/1423-quesada-avenue-san-francisco-ca-44057905 + - generic: Compass Exclusive + - img "1423 Quesada Avenue" + - generic: $999,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,975 sqft + - generic: 1423 Quesada Avenue, San Francisco, CA 94124 + - link "Compass Exclusive Walnut Street $5,500,000 6 beds 5 baths 4,300 sqft Walnut Street, San Francisco, CA 94118": + - /url: /listing/walnut-street-san-francisco-ca-05333337 + - generic: Compass Exclusive + - img "Walnut Street" + - generic: $5,500,000 + - generic: 6 beds + - generic: 5 baths + - generic: 4,300 sqft + - generic: Walnut Street, San Francisco, CA 94118 + - link "Compass Exclusive 420 Mission Bay Boulevard North, Unit 120 $899,000 1 beds 1 baths 928 sqft 420 Mission Bay Boulevard North, Unit 120, San Francisco, CA 94158": + - /url: /listing/420-mission-bay-boulevard-north-unit-120-san-francisco-ca-72469257 + - generic: Compass Exclusive + - img "420 Mission Bay Boulevard North, Unit 120" + - generic: $899,000 + - generic: 1 beds + - generic: 1 baths + - generic: 928 sqft + - generic: 420 Mission Bay Boulevard North, Unit 120, San Francisco, CA 94158 + - link "Compass Exclusive 715 Page Street $1,895,000 2 beds 2 baths 1,326 sqft 715 Page Street, San Francisco, CA 94117": + - /url: /listing/715-page-street-san-francisco-ca-83541689 + - generic: Compass Exclusive + - img "715 Page Street" + - generic: $1,895,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,326 sqft + - generic: 715 Page Street, San Francisco, CA 94117 + - link "Compass Exclusive 738 Long Bridge Street, Unit 205 $1,820,000 2 beds 2 baths 1,437 sqft 738 Long Bridge Street, Unit 205, San Francisco, CA 94158": + - /url: /listing/738-long-bridge-street-unit-205-san-francisco-ca-43768129 + - generic: Compass Exclusive + - img "738 Long Bridge Street, Unit 205" + - generic: $1,820,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,437 sqft + - generic: 738 Long Bridge Street, Unit 205, San Francisco, CA 94158 + - link "Compass Exclusive 415 Buena Vista Avenue East $5,950,000 5 beds 4.5 baths — sqft 415 Buena Vista Avenue East, San Francisco, CA 94117": + - /url: /listing/415-buena-vista-avenue-east-san-francisco-ca-96660801 + - generic: Compass Exclusive + - img "415 Buena Vista Avenue East" + - generic: $5,950,000 + - generic: 5 beds + - generic: 4.5 baths + - generic: — sqft + - generic: 415 Buena Vista Avenue East, San Francisco, CA 94117 + - link "Compass Exclusive 522 Hickory Street $3,800,000 3 beds 4 baths 2,982 sqft 522 Hickory Street, San Francisco, CA 94102": + - /url: /listing/522-hickory-street-san-francisco-ca-66255609 + - generic: Compass Exclusive + - img "522 Hickory Street" + - generic: $3,800,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,982 sqft + - generic: 522 Hickory Street, San Francisco, CA 94102 + - link "Compass Exclusive 2401 16th Street $993,775 0 beds 2 baths 2,384 sqft 2401 16th Street, San Francisco, CA 94110": + - /url: /listing/2401-16th-street-san-francisco-ca-30407017 + - generic: Compass Exclusive + - img "2401 16th Street" + - generic: $993,775 + - generic: 0 beds + - generic: 2 baths + - generic: 2,384 sqft + - generic: 2401 16th Street, San Francisco, CA 94110 + - link "Compass Exclusive 733 Front Street, Unit 203 $1,049,000 — beds — baths 949 sqft 733 Front Street, Unit 203, San Francisco, CA 94111": + - /url: /listing/733-front-street-unit-203-san-francisco-ca-37192393 + - generic: Compass Exclusive + - img "733 Front Street, Unit 203" + - generic: $1,049,000 + - generic: — beds + - generic: — baths + - generic: 949 sqft + - generic: 733 Front Street, Unit 203, San Francisco, CA 94111 + - link "Compass Exclusive 999 Green Street, Unit 1401 $2,695,000 1 beds 2 baths 1,473 sqft 999 Green Street, Unit 1401, San Francisco, CA 94133": + - /url: /listing/999-green-street-unit-1401-san-francisco-ca-60165145 + - generic: Compass Exclusive + - img "999 Green Street, Unit 1401" + - generic: $2,695,000 + - generic: 1 beds + - generic: 2 baths + - generic: 1,473 sqft + - generic: 999 Green Street, Unit 1401, San Francisco, CA 94133 + - link "Compass Exclusive 400 Grove Street, Unit 504 $1,695,000 2 beds 2 baths — sqft 400 Grove Street, Unit 504, San Francisco, CA 94102": + - /url: /listing/400-grove-street-unit-504-san-francisco-ca-43941473 + - generic: Compass Exclusive + - img "400 Grove Street, Unit 504" + - generic: $1,695,000 + - generic: 2 beds + - generic: 2 baths + - generic: — sqft + - generic: 400 Grove Street, Unit 504, San Francisco, CA 94102 + - link "Compass Exclusive 88 King Street, Unit 504 $999,900 2 beds 2 baths 1,154 sqft 88 King Street, Unit 504, San Francisco, CA 94107": + - /url: /listing/88-king-street-unit-504-san-francisco-ca-53479305 + - generic: Compass Exclusive + - img "88 King Street, Unit 504" + - generic: $999,900 + - generic: 2 beds + - generic: 2 baths + - generic: 1,154 sqft + - generic: 88 King Street, Unit 504, San Francisco, CA 94107 + - link "Compass Exclusive 201 Fell Street $67,000 — beds 0 baths 350 sqft 201 Fell Street, San Francisco, CA 94102": + - /url: /listing/201-fell-street-san-francisco-ca-60550161 + - generic: Compass Exclusive + - img "201 Fell Street" + - generic: $67,000 + - generic: — beds + - generic: 0 baths + - generic: 350 sqft + - generic: 201 Fell Street, San Francisco, CA 94102 + - link "Compass Exclusive 1542 15th Street $1,295,000 3 beds 1.5 baths 1,380 sqft 1542 15th Street, San Francisco, CA 94103": + - /url: /listing/1542-15th-street-san-francisco-ca-68920025 + - generic: Compass Exclusive + - img "1542 15th Street" + - generic: $1,295,000 + - generic: 3 beds + - generic: 1.5 baths + - generic: 1,380 sqft + - generic: 1542 15th Street, San Francisco, CA 94103 + - link "Compass Exclusive 417 Buena Vista Avenue East $1,590,000 — beds — baths — sqft 417 Buena Vista Avenue East, San Francisco, CA 94117": + - /url: /listing/417-buena-vista-avenue-east-san-francisco-ca-11779665 + - generic: Compass Exclusive + - img "417 Buena Vista Avenue East" + - generic: $1,590,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 417 Buena Vista Avenue East, San Francisco, CA 94117 + - link "Compass Exclusive 211 Steiner Street $213,000 — beds 0 baths 1,400 sqft 211 Steiner Street, San Francisco, CA 94117": + - /url: /listing/211-steiner-street-san-francisco-ca-55126769 + - generic: Compass Exclusive + - img "211 Steiner Street" + - generic: $213,000 + - generic: — beds + - generic: 0 baths + - generic: 1,400 sqft + - generic: 211 Steiner Street, San Francisco, CA 94117 + - link "Compass Exclusive 2740 38th Avenue $1,900,000 6 beds 3 baths 2,990 sqft 2740 38th Avenue, San Francisco, CA 94116": + - /url: /listing/2740-38th-avenue-san-francisco-ca-33865425 + - generic: Compass Exclusive + - img "2740 38th Avenue" + - generic: $1,900,000 + - generic: 6 beds + - generic: 3 baths + - generic: 2,990 sqft + - generic: 2740 38th Avenue, San Francisco, CA 94116 + - link "Compass Exclusive 1330-1332 Greenwich Street $8,995,000 5 beds 6 baths 4,447 sqft 1330-1332 Greenwich Street, San Francisco, CA 94109": + - /url: /listing/1330-1332-greenwich-street-san-francisco-ca-46862593 + - generic: Compass Exclusive + - img "1330-1332 Greenwich Street" + - generic: $8,995,000 + - generic: 5 beds + - generic: 6 baths + - generic: 4,447 sqft + - generic: 1330-1332 Greenwich Street, San Francisco, CA 94109 + - link "200 Brannan Street, Unit 130 $1,475,000 1 beds 1.5 baths 1,645 sqft 200 Brannan Street, Unit 130, San Francisco, CA 94107": + - /url: /listing/200-brannan-street-unit-130-san-francisco-ca-32648585 + - img "200 Brannan Street, Unit 130" + - generic: $1,475,000 + - generic: 1 beds + - generic: 1.5 baths + - generic: 1,645 sqft + - generic: 200 Brannan Street, Unit 130, San Francisco, CA 94107 + - link "Compass Exclusive 1821 North Milwaukee Avenue, Unit 401 $650,000 2 beds 2 baths 1,445 sqft 1821 North Milwaukee Avenue, Unit 401, Chicago, IL 60647": + - /url: /listing/1821-north-milwaukee-avenue-unit-401-chicago-il-78121113 + - generic: Compass Exclusive + - img "1821 North Milwaukee Avenue, Unit 401" + - generic: $650,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,445 sqft + - generic: 1821 North Milwaukee Avenue, Unit 401, Chicago, IL 60647 + - link "Compass Exclusive 1600 West Greenleaf Avenue, Unit 303 $163,000 — beds — baths — sqft 1600 West Greenleaf Avenue, Unit 303, Chicago, IL 60626": + - /url: /listing/1600-west-greenleaf-avenue-unit-303-chicago-il-88621545 + - generic: Compass Exclusive + - img "1600 West Greenleaf Avenue, Unit 303" + - generic: $163,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 1600 West Greenleaf Avenue, Unit 303, Chicago, IL 60626 + - link "Compass Exclusive 1946 West Armitage Avenue $1,099,000 5 beds 3 baths — sqft 1946 West Armitage Avenue, Chicago, IL 60622": + - /url: /listing/1946-west-armitage-avenue-chicago-il-75360473 + - generic: Compass Exclusive + - img "1946 West Armitage Avenue" + - generic: $1,099,000 + - generic: 5 beds + - generic: 3 baths + - generic: — sqft + - generic: 1946 West Armitage Avenue, Chicago, IL 60622 + - link "Compass Exclusive 2926 West Lyndale Street $1,100,000 4 beds 4 baths — sqft 2926 West Lyndale Street, Chicago, IL 60647": + - /url: /listing/2926-west-lyndale-street-chicago-il-09848473 + - generic: Compass Exclusive + - img "2926 West Lyndale Street" + - generic: $1,100,000 + - generic: 4 beds + - generic: 4 baths + - generic: — sqft + - generic: 2926 West Lyndale Street, Chicago, IL 60647 + - link "4627 North Kenmore Avenue, Unit 1E $425,000 2 beds 2.5 baths 1,500 sqft 4627 North Kenmore Avenue, Unit 1E, Chicago, IL 60640": + - /url: /listing/4627-north-kenmore-avenue-unit-1e-chicago-il-01630305 + - img "4627 North Kenmore Avenue, Unit 1E" + - generic: $425,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,500 sqft + - generic: 4627 North Kenmore Avenue, Unit 1E, Chicago, IL 60640 + - link "Compass Exclusive 1639 North Dayton Street $2,795,000 6 beds 6 baths — sqft 1639 North Dayton Street, Chicago, IL 60614": + - /url: /listing/1639-north-dayton-street-chicago-il-17330249 + - generic: Compass Exclusive + - img "1639 North Dayton Street" + - generic: $2,795,000 + - generic: 6 beds + - generic: 6 baths + - generic: — sqft + - generic: 1639 North Dayton Street, Chicago, IL 60614 + - link "Compass Exclusive 815 North Marshfield Avenue, Unit 204 $550,000 2 beds 2 baths 1,100 sqft 815 North Marshfield Avenue, Unit 204, Chicago, IL 60622": + - /url: /listing/815-north-marshfield-avenue-unit-204-chicago-il-87885121 + - generic: Compass Exclusive + - img "815 North Marshfield Avenue, Unit 204" + - generic: $550,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,100 sqft + - generic: 815 North Marshfield Avenue, Unit 204, Chicago, IL 60622 + - link "Compass Exclusive 4152 North Damen Avenue $1,095,000 5 beds 3 baths — sqft 4152 North Damen Avenue, Chicago, IL 60618": + - /url: /listing/4152-north-damen-avenue-chicago-il-31341033 + - generic: Compass Exclusive + - img "4152 North Damen Avenue" + - generic: $1,095,000 + - generic: 5 beds + - generic: 3 baths + - generic: — sqft + - generic: 4152 North Damen Avenue, Chicago, IL 60618 + - link "Compass Exclusive 2254 West Chicago Avenue, Unit 5S $965,000 3 beds 2 baths — sqft 2254 West Chicago Avenue, Unit 5S, Chicago, IL 60622": + - /url: /listing/2252-west-chicago-avenue-unit-5s-chicago-il-31183913 + - generic: Compass Exclusive + - img "2254 West Chicago Avenue, Unit 5S" + - generic: $965,000 + - generic: 3 beds + - generic: 2 baths + - generic: — sqft + - generic: 2254 West Chicago Avenue, Unit 5S, Chicago, IL 60622 + - link "Compass Exclusive 1702 North Campbell Avenue $1,200,000 7 beds 4 baths — sqft 1702 North Campbell Avenue, Chicago, IL 60647": + - /url: /listing/1702-north-campbell-avenue-chicago-il-04325137 + - generic: Compass Exclusive + - img "1702 North Campbell Avenue" + - generic: $1,200,000 + - generic: 7 beds + - generic: 4 baths + - generic: — sqft + - generic: 1702 North Campbell Avenue, Chicago, IL 60647 + - link "Compass Exclusive 2252 West Chicago Avenue, Unit 2S $845,000 3 beds 2 baths — sqft 2252 West Chicago Avenue, Unit 2S, Chicago, IL 60622": + - /url: /listing/2252-west-chicago-avenue-unit-2s-chicago-il-49591921 + - generic: Compass Exclusive + - img "2252 West Chicago Avenue, Unit 2S" + - generic: $845,000 + - generic: 3 beds + - generic: 2 baths + - generic: — sqft + - generic: 2252 West Chicago Avenue, Unit 2S, Chicago, IL 60622 + - link "Compass Exclusive 2707 West Belmont Avenue, Unit 3E $625,000 3 beds 2 baths 1,700 sqft 2707 West Belmont Avenue, Unit 3E, Chicago, IL 60618": + - /url: /listing/2707-west-belmont-avenue-unit-3e-chicago-il-79058521 + - generic: Compass Exclusive + - img "2707 West Belmont Avenue, Unit 3E" + - generic: $625,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,700 sqft + - generic: 2707 West Belmont Avenue, Unit 3E, Chicago, IL 60618 + - link "Compass Exclusive 4755 North Washtenaw Avenue, Unit 407 $425,000 2 beds 2 baths — sqft 4755 North Washtenaw Avenue, Unit 407, Chicago, IL 60625": + - /url: /listing/4755-north-washtenaw-avenue-unit-407-chicago-il-16471945 + - generic: Compass Exclusive + - img "4755 North Washtenaw Avenue, Unit 407" + - generic: $425,000 + - generic: 2 beds + - generic: 2 baths + - generic: — sqft + - generic: 4755 North Washtenaw Avenue, Unit 407, Chicago, IL 60625 + - link "Compass Exclusive 2715 North Bosworth Avenue $2,295,000 5 beds 4 baths — sqft 2715 North Bosworth Avenue, Chicago, IL 60614": + - /url: /listing/2715-north-bosworth-avenue-chicago-il-54813449 + - generic: Compass Exclusive + - img "2715 North Bosworth Avenue" + - generic: $2,295,000 + - generic: 5 beds + - generic: 4 baths + - generic: — sqft + - generic: 2715 North Bosworth Avenue, Chicago, IL 60614 + - link "Compass Exclusive 449 West Fullerton Avenue $1,995,000 4 beds 5 baths — sqft 449 West Fullerton Avenue, Chicago, IL 60614": + - /url: /listing/449-west-fullerton-avenue-chicago-il-34643817 + - generic: Compass Exclusive + - img "449 West Fullerton Avenue" + - generic: $1,995,000 + - generic: 4 beds + - generic: 5 baths + - generic: — sqft + - generic: 449 West Fullerton Avenue, Chicago, IL 60614 + - link "Compass Exclusive 1032 North Wood Street $2,599,000 6 beds 5 baths 5,000 sqft 1032 North Wood Street, Chicago, IL 60622": + - /url: /listing/1032-north-wood-street-chicago-il-83473945 + - generic: Compass Exclusive + - img "1032 North Wood Street" + - generic: $2,599,000 + - generic: 6 beds + - generic: 5 baths + - generic: 5,000 sqft + - generic: 1032 North Wood Street, Chicago, IL 60622 + - link "Compass Exclusive 2753 North Hermitage Avenue $999,000 3 beds 3 baths — sqft 2753 North Hermitage Avenue, Chicago, IL 60614": + - /url: /listing/2753-north-hermitage-avenue-chicago-il-36535953 + - generic: Compass Exclusive + - img "2753 North Hermitage Avenue" + - generic: $999,000 + - generic: 3 beds + - generic: 3 baths + - generic: — sqft + - generic: 2753 North Hermitage Avenue, Chicago, IL 60614 + - link "Compass Exclusive 2340 West Roscoe Street, Unit 3W $869,000 3 beds 3 baths 2,400 sqft 2340 West Roscoe Street, Unit 3W, Chicago, IL 60618": + - /url: /listing/2340-west-roscoe-street-unit-3w-chicago-il-29054457 + - generic: Compass Exclusive + - img "2340 West Roscoe Street, Unit 3W" + - generic: $869,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,400 sqft + - generic: 2340 West Roscoe Street, Unit 3W, Chicago, IL 60618 + - link "Pending 2329 North Cambridge Avenue, Unit G $1,950,000 3 beds 3.5 baths 2,915 sqft 2329 North Cambridge Avenue, Unit G, Chicago, IL 60614": + - /url: /listing/2329-north-cambridge-avenue-unit-g-chicago-il-50253617 + - generic: Pending + - img "2329 North Cambridge Avenue, Unit G" + - generic: $1,950,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 2,915 sqft + - generic: 2329 North Cambridge Avenue, Unit G, Chicago, IL 60614 + - link "421 West Huron Street, Unit 604 $514,900 2 beds 2 baths 1,195 sqft 421 West Huron Street, Unit 604, Chicago, IL 60654": + - /url: /listing/421-west-huron-street-unit-604-chicago-il-58037993 + - img "421 West Huron Street, Unit 604" + - generic: $514,900 + - generic: 2 beds + - generic: 2 baths + - generic: 1,195 sqft + - generic: 421 West Huron Street, Unit 604, Chicago, IL 60654 + - link "2329 North Cambridge Avenue, Unit C $2,100,000 4 beds 3.5 baths 2,930 sqft 2329 North Cambridge Avenue, Unit C, Chicago, IL 60614": + - /url: /listing/2329-north-cambridge-avenue-unit-c-chicago-il-21720449 + - img "2329 North Cambridge Avenue, Unit C" + - generic: $2,100,000 + - generic: 4 beds + - generic: 3.5 baths + - generic: 2,930 sqft + - generic: 2329 North Cambridge Avenue, Unit C, Chicago, IL 60614 + - link "Compass Exclusive 757 North Orleans Street, Unit 1004 $455,000 2 beds 2 baths 1,181 sqft 757 North Orleans Street, Unit 1004, Chicago, IL 60654": + - /url: /listing/757-north-orleans-street-unit-1004-chicago-il-51375689 + - generic: Compass Exclusive + - img "757 North Orleans Street, Unit 1004" + - generic: $455,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,181 sqft + - generic: 757 North Orleans Street, Unit 1004, Chicago, IL 60654 + - link "Compass Exclusive 3125 North Clybourn Avenue, Unit 2N $725,000 3 beds 2 baths 1,700 sqft 3125 North Clybourn Avenue, Unit 2N, Chicago, IL 60618": + - /url: /listing/3125-north-clybourn-avenue-unit-2n-chicago-il-98683425 + - generic: Compass Exclusive + - img "3125 North Clybourn Avenue, Unit 2N" + - generic: $725,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,700 sqft + - generic: 3125 North Clybourn Avenue, Unit 2N, Chicago, IL 60618 + - link "Compass Exclusive 2329 North Cambridge Avenue, Unit A $1,680,000 2 beds 3 baths 2,220 sqft 2329 North Cambridge Avenue, Unit A, Chicago, IL 60614": + - /url: /listing/2329-north-cambridge-avenue-unit-a-chicago-il-54391729 + - generic: Compass Exclusive + - img "2329 North Cambridge Avenue, Unit A" + - generic: $1,680,000 + - generic: 2 beds + - generic: 3 baths + - generic: 2,220 sqft + - generic: 2329 North Cambridge Avenue, Unit A, Chicago, IL 60614 + - link "Compass Exclusive 2720 North Ashland Avenue, Unit 2S $850,000 3 beds 2 baths 1,650 sqft 2720 North Ashland Avenue, Unit 2S, Chicago, IL 60614": + - /url: /listing/2720-north-ashland-avenue-unit-2s-chicago-il-26125497 + - generic: Compass Exclusive + - img "2720 North Ashland Avenue, Unit 2S" + - generic: $850,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,650 sqft + - generic: 2720 North Ashland Avenue, Unit 2S, Chicago, IL 60614 + - link "Compass Exclusive 2720 North Ashland Avenue, Unit 3S $950,000 3 beds 2 baths 1,800 sqft 2720 North Ashland Avenue, Unit 3S, Chicago, IL 60614": + - /url: /listing/2720-north-ashland-avenue-unit-3s-chicago-il-54056553 + - generic: Compass Exclusive + - img "2720 North Ashland Avenue, Unit 3S" + - generic: $950,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,800 sqft + - generic: 2720 North Ashland Avenue, Unit 3S, Chicago, IL 60614 + - link "Compass Exclusive 1951 West Huron Street $2,150,000 5 beds 3.5 baths 4,500 sqft 1951 West Huron Street, Chicago, IL 60622": + - /url: /listing/1951-west-huron-street-chicago-il-77703721 + - generic: Compass Exclusive + - img "1951 West Huron Street" + - generic: $2,150,000 + - generic: 5 beds + - generic: 3.5 baths + - generic: 4,500 sqft + - generic: 1951 West Huron Street, Chicago, IL 60622 + - link "Compass Exclusive 2471 North Albany Avenue $900,000 0 beds 0 baths — sqft 2471 North Albany Avenue, Chicago, IL 60647": + - /url: /listing/2471-north-albany-avenue-chicago-il-74707001 + - generic: Compass Exclusive + - img "2471 North Albany Avenue" + - generic: $900,000 + - generic: 0 beds + - generic: 0 baths + - generic: — sqft + - generic: 2471 North Albany Avenue, Chicago, IL 60647 + - link "Compass Exclusive 21 West Goethe Street, Unit 15A $274,900 1 beds 1 baths — sqft 21 West Goethe Street, Unit 15A, Chicago, IL 60610": + - /url: /listing/21-west-goethe-street-unit-15a-chicago-il-30603593 + - generic: Compass Exclusive + - img "21 West Goethe Street, Unit 15A" + - generic: $274,900 + - generic: 1 beds + - generic: 1 baths + - generic: — sqft + - generic: 21 West Goethe Street, Unit 15A, Chicago, IL 60610 + - link "Compass Exclusive 2232 North Dayton Street $3,100,000 4 beds 5 baths 3,986 sqft 2232 North Dayton Street, Chicago, IL 60614": + - /url: /listing/2232-north-dayton-street-chicago-il-90899201 + - generic: Compass Exclusive + - img "2232 North Dayton Street" + - generic: $3,100,000 + - generic: 4 beds + - generic: 5 baths + - generic: 3,986 sqft + - generic: 2232 North Dayton Street, Chicago, IL 60614 + - link "2 Douglass Park, Unit 5 $390,175 2 beds 1 baths 985 sqft 2 Douglass Park, Unit 5, Boston, MA 02118": + - /url: /listing/2-douglass-park-unit-5-boston-ma-44139993 + - img "2 Douglass Park, Unit 5" + - generic: $390,175 + - generic: 2 beds + - generic: 1 baths + - generic: 985 sqft + - generic: 2 Douglass Park, Unit 5, Boston, MA 02118 + - link "Compass Exclusive 40 Fay Street, Unit H706 $1,495,000 2 beds 1.5 baths 1,400 sqft 40 Fay Street, Unit H706, Boston, MA 02118": + - /url: /listing/40-fay-street-unit-h706-boston-ma-70060769 + - generic: Compass Exclusive + - img "40 Fay Street, Unit H706" + - generic: $1,495,000 + - generic: 2 beds + - generic: 1.5 baths + - generic: 1,400 sqft + - generic: 40 Fay Street, Unit H706, Boston, MA 02118 + - link "Compass Exclusive 554 East 5th Street, Unit 1 $899,000 2 beds 2 baths 1,140 sqft 554 East 5th Street, Unit 1, Boston, MA 02127": + - /url: /listing/554-east-5th-street-unit-1-boston-ma-48810625 + - generic: Compass Exclusive + - img "554 East 5th Street, Unit 1" + - generic: $899,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,140 sqft + - generic: 554 East 5th Street, Unit 1, Boston, MA 02127 + - link "Compass Exclusive 25 Isabella Street, Unit 502 $3,000,000 2 beds 2 baths 1,519 sqft 25 Isabella Street, Unit 502, Boston, MA 02116": + - /url: /listing/25-isabella-street-unit-502-boston-ma-54764753 + - generic: Compass Exclusive + - img "25 Isabella Street, Unit 502" + - generic: $3,000,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,519 sqft + - generic: 25 Isabella Street, Unit 502, Boston, MA 02116 + - link "Compass Exclusive 124 West Newton Street, Unit 2 $3,850,000 4 beds 3 baths 2,350 sqft 124 West Newton Street, Unit 2, Boston, MA 02118": + - /url: /listing/124-west-newton-street-unit-2-boston-ma-65814257 + - generic: Compass Exclusive + - img "124 West Newton Street, Unit 2" + - generic: $3,850,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,350 sqft + - generic: 124 West Newton Street, Unit 2, Boston, MA 02118 + - link "Compass Exclusive Address Upon Request $1,400,000 2 beds 2 baths 1,000 sqft Address Upon Request, Boston, MA 02114": + - /url: /listing/address-upon-request-boston-ma-70707233 + - generic: Compass Exclusive + - img "Address Upon Request" + - generic: $1,400,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,000 sqft + - generic: Address Upon Request, Boston, MA 02114 + - link "Compass Exclusive 90 Revere Street, Unit 2 $3,000,000 3 beds 3 baths 1,712 sqft 90 Revere Street, Unit 2, Boston, MA 02114": + - /url: /listing/90-revere-street-unit-2-boston-ma-39701289 + - generic: Compass Exclusive + - img "90 Revere Street, Unit 2" + - generic: $3,000,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,712 sqft + - generic: 90 Revere Street, Unit 2, Boston, MA 02114 + - link "Compass Exclusive 128 Marlborough Street, Unit 1 $1,250,000 2 beds — baths 1,041 sqft 128 Marlborough Street, Unit 1, Boston, MA 02116": + - /url: /listing/128-marlborough-street-unit-1-boston-ma-59759137 + - generic: Compass Exclusive + - img "128 Marlborough Street, Unit 1" + - generic: $1,250,000 + - generic: 2 beds + - generic: — baths + - generic: 1,041 sqft + - generic: 128 Marlborough Street, Unit 1, Boston, MA 02116 + - link "Compass Exclusive 725 East 6th Street, Unit 1 $1,100,000 3 beds 3 baths 1,622 sqft 725 East 6th Street, Unit 1, Boston, MA 02127": + - /url: /listing/725-east-6th-street-unit-1-boston-ma-55802753 + - generic: Compass Exclusive + - img "725 East 6th Street, Unit 1" + - generic: $1,100,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,622 sqft + - generic: 725 East 6th Street, Unit 1, Boston, MA 02127 + - link "Compass Exclusive 140 Shawmut Avenue, Unit 7A $2,695,000 4 beds 4 baths 2,596 sqft 140 Shawmut Avenue, Unit 7A, Boston, MA 02118": + - /url: /listing/140-shawmut-avenue-unit-7a-boston-ma-92069057 + - generic: Compass Exclusive + - img "140 Shawmut Avenue, Unit 7A" + - generic: $2,695,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,596 sqft + - generic: 140 Shawmut Avenue, Unit 7A, Boston, MA 02118 + - link "Compass Exclusive 60 Commonwealth Avenue, Unit 7 $2,680,000 3 beds 2 baths 1,500 sqft 60 Commonwealth Avenue, Unit 7, Boston, MA 02116": + - /url: /listing/60-commonwealth-avenue-unit-7-boston-ma-70186201 + - generic: Compass Exclusive + - img "60 Commonwealth Avenue, Unit 7" + - generic: $2,680,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,500 sqft + - generic: 60 Commonwealth Avenue, Unit 7, Boston, MA 02116 + - link "Compass Exclusive 90 Revere Street, Unit 3 $3,500,000 3 beds 2.5 baths 1,800 sqft 90 Revere Street, Unit 3, Boston, MA 02114": + - /url: /listing/90-revere-street-unit-3-boston-ma-25286625 + - generic: Compass Exclusive + - img "90 Revere Street, Unit 3" + - generic: $3,500,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,800 sqft + - generic: 90 Revere Street, Unit 3, Boston, MA 02114 + - link "Compass Exclusive 795 East 4th Street $2,799,000 4 beds 4 baths 2,783 sqft 795 East 4th Street, Boston, MA 02127": + - /url: /listing/795-east-4th-street-boston-ma-98397657 + - generic: Compass Exclusive + - img "795 East 4th Street" + - generic: $2,799,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,783 sqft + - generic: 795 East 4th Street, Boston, MA 02127 + - link "Compass Exclusive 321 Commonwealth Avenue, Unit 40 $2,350,000 2 beds 2 baths 1,425 sqft 321 Commonwealth Avenue, Unit 40, Boston, MA 02115": + - /url: /listing/321-commonwealth-avenue-unit-40-boston-ma-97621689 + - generic: Compass Exclusive + - img "321 Commonwealth Avenue, Unit 40" + - generic: $2,350,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,425 sqft + - generic: 321 Commonwealth Avenue, Unit 40, Boston, MA 02115 + - link "131 Mt Vernon Street, Unit 2 $2,995,000 4 beds 3 baths 2,183 sqft 131 Mt Vernon Street, Unit 2, Boston, MA 02108": + - /url: /listing/131-mt-vernon-street-unit-2-boston-ma-13405161 + - img "131 Mt Vernon Street, Unit 2" + - generic: $2,995,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,183 sqft + - generic: 131 Mt Vernon Street, Unit 2, Boston, MA 02108 + - link "Compass Exclusive 666 Massachusetts Avenue Price upon request 9 beds 7 baths 5,050 sqft 666 Massachusetts Avenue, Boston, MA 02118": + - /url: /listing/666-massachusetts-avenue-boston-ma-59548849 + - generic: Compass Exclusive + - img "666 Massachusetts Avenue" + - generic: Price upon request + - generic: 9 beds + - generic: 7 baths + - generic: 5,050 sqft + - generic: 666 Massachusetts Avenue, Boston, MA 02118 + - link "Compass Exclusive Address Upon Request $850,000 3 beds 2.5 baths 1,450 sqft Address Upon Request, Jamaica Plain, MA 02130": + - /url: /listing/address-upon-request-boston-ma-40517209 + - generic: Compass Exclusive + - img "Address Upon Request" + - generic: $850,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,450 sqft + - generic: Address Upon Request, Jamaica Plain, MA 02130 + - link "Compass Exclusive Address Upon Request $899,000 3 beds 2 baths 1,713 sqft Address Upon Request, Boston, MA 02125": + - /url: /listing/address-upon-request-boston-ma-41120841 + - generic: Compass Exclusive + - img "Address Upon Request" + - generic: $899,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,713 sqft + - generic: Address Upon Request, Boston, MA 02125 + - link "Compass Exclusive 137 Princeton Street, Unit 2 $599,000 2 beds — baths 1,108 sqft 137 Princeton Street, Unit 2, Boston, MA 02128": + - /url: /listing/137-princeton-street-unit-2-boston-ma-47303009 + - generic: Compass Exclusive + - img "137 Princeton Street, Unit 2" + - generic: $599,000 + - generic: 2 beds + - generic: — baths + - generic: 1,108 sqft + - generic: 137 Princeton Street, Unit 2, Boston, MA 02128 + - link "Compass Exclusive 16 A Meehan Street, Unit 1 $899,000 3 beds 2 baths 1,217 sqft 16 A Meehan Street, Unit 1, Boston, MA 02130": + - /url: /listing/16-a-meehan-street-unit-1-boston-ma-87157673 + - generic: Compass Exclusive + - img "16 A Meehan Street, Unit 1" + - generic: $899,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,217 sqft + - generic: 16 A Meehan Street, Unit 1, Boston, MA 02130 + - link "Compass Exclusive 167 Lexington Street, Unit 2 $650,000 2 beds 1 baths 634 sqft 167 Lexington Street, Unit 2, East Boston, MA 02128": + - /url: /listing/167-lexington-street-unit-2-boston-ma-32402377 + - generic: Compass Exclusive + - img "167 Lexington Street, Unit 2" + - generic: $650,000 + - generic: 2 beds + - generic: 1 baths + - generic: 634 sqft + - generic: 167 Lexington Street, Unit 2, East Boston, MA 02128 + - link "Compass Exclusive 319 A Street, Unit 211 $998,500 2 beds — baths 813 sqft 319 A Street, Unit 211, Boston, MA 02210": + - /url: /listing/319-a-street-unit-211-boston-ma-34030889 + - generic: Compass Exclusive + - img "319 A Street, Unit 211" + - generic: $998,500 + - generic: 2 beds + - generic: — baths + - generic: 813 sqft + - generic: 319 A Street, Unit 211, Boston, MA 02210 + - link "Compass Exclusive Gordon Street $2,100,000 5 beds 5 baths 3,651 sqft Gordon Street, Boston, MA 02130": + - /url: /listing/gordon-street-boston-ma-51920401 + - generic: Compass Exclusive + - img "Gordon Street" + - generic: $2,100,000 + - generic: 5 beds + - generic: 5 baths + - generic: 3,651 sqft + - generic: Gordon Street, Boston, MA 02130 + - link "Compass Exclusive 281 Newbury Street $6,000,000 8 beds 7 baths 5,510 sqft 281 Newbury Street, Boston, MA 02115": + - /url: /listing/281-newbury-street-boston-ma-80593441 + - generic: Compass Exclusive + - img "281 Newbury Street" + - generic: $6,000,000 + - generic: 8 beds + - generic: 7 baths + - generic: 5,510 sqft + - generic: 281 Newbury Street, Boston, MA 02115 + - link "Compass Exclusive 205 Park Lane $2,400,000 3 beds 3 baths 2,085 sqft 205 Park Lane, Austin, TX 78704": + - /url: /listing/205-park-lane-austin-tx-16311449 + - generic: Compass Exclusive + - img "205 Park Lane" + - generic: $2,400,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,085 sqft + - generic: 205 Park Lane, Austin, TX 78704 + - link "Compass Exclusive 2200 De Verne Street $2,075,000 4 beds 3 baths 2,602 sqft 2200 De Verne Street, Austin, TX 78704": + - /url: /listing/2200-de-verne-street-austin-tx-35969529 + - generic: Compass Exclusive + - img "2200 De Verne Street" + - generic: $2,075,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,602 sqft + - generic: 2200 De Verne Street, Austin, TX 78704 + - link "5801 Valley Circle $1,975,000 5 beds 4 baths 3,920 sqft 5801 Valley Circle, Austin, TX 78731": + - /url: /listing/5801-valley-circle-austin-tx-16722001 + - img "5801 Valley Circle" + - generic: $1,975,000 + - generic: 5 beds + - generic: 4 baths + - generic: 3,920 sqft + - generic: 5801 Valley Circle, Austin, TX 78731 + - link "2311 Westoak Drive $2,695,000 4 beds 4.5 baths 3,662 sqft 2311 Westoak Drive, Austin, TX 78704": + - /url: /listing/2311-westoak-drive-austin-tx-77497457 + - img "2311 Westoak Drive" + - generic: $2,695,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 3,662 sqft + - generic: 2311 Westoak Drive, Austin, TX 78704 + - link "Compass Exclusive 1102 Clermont Avenue $1,400,000 3 beds 2.5 baths 2,387 sqft 1102 Clermont Avenue, Austin, TX 78702": + - /url: /listing/1102-clermont-avenue-austin-tx-58228761 + - generic: Compass Exclusive + - img "1102 Clermont Avenue" + - generic: $1,400,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 2,387 sqft + - generic: 1102 Clermont Avenue, Austin, TX 78702 + - link "Compass Exclusive 3467 North Hills Drive $525,000 3 beds 2.5 baths 1,896 sqft 3467 North Hills Drive, Austin, TX 78731": + - /url: /listing/3467-north-hills-drive-austin-tx-05171257 + - generic: Compass Exclusive + - img "3467 North Hills Drive" + - generic: $525,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,896 sqft + - generic: 3467 North Hills Drive, Austin, TX 78731 + - link "Compass Exclusive 3467 North Hills Drive $525,000 3 beds 3 baths 1,896 sqft 3467 North Hills Drive, Austin, TX 78731": + - /url: /listing/3467-north-hills-drive-austin-tx-44691825 + - generic: Compass Exclusive + - img "3467 North Hills Drive" + - generic: $525,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,896 sqft + - generic: 3467 North Hills Drive, Austin, TX 78731 + - link "Compass Exclusive 1100 Clermont Avenue $1,400,000 3 beds 2.5 baths 2,387 sqft 1100 Clermont Avenue, Austin, TX 78702": + - /url: /listing/1100-clermont-avenue-austin-tx-91571489 + - generic: Compass Exclusive + - img "1100 Clermont Avenue" + - generic: $1,400,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 2,387 sqft + - generic: 1100 Clermont Avenue, Austin, TX 78702 + - link "2006 Mountain View Road $6,499,000 7 beds 7.5 baths 5,370 sqft 2006 Mountain View Road, Austin, TX 78703": + - /url: /listing/2006-mountain-view-road-austin-tx-18989937 + - img "2006 Mountain View Road" + - generic: $6,499,000 + - generic: 7 beds + - generic: 7.5 baths + - generic: 5,370 sqft + - generic: 2006 Mountain View Road, Austin, TX 78703 + - link "Compass Exclusive 2512 East 9th Street $725,000 2 beds — baths 750 sqft 2512 East 9th Street, Austin, TX 78702": + - /url: /listing/2512-east-9th-street-austin-tx-34176345 + - generic: Compass Exclusive + - img "2512 East 9th Street" + - generic: $725,000 + - generic: 2 beds + - generic: — baths + - generic: 750 sqft + - generic: 2512 East 9th Street, Austin, TX 78702 + - link "Compass Exclusive 1501 Wilson Heights Drive $1,100,000 3 beds 3 baths 1,878 sqft 1501 Wilson Heights Drive, Austin, TX 78746": + - /url: /listing/1501-wilson-heights-drive-austin-tx-16960001 + - generic: Compass Exclusive + - img "1501 Wilson Heights Drive" + - generic: $1,100,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,878 sqft + - generic: 1501 Wilson Heights Drive, Austin, TX 78746 + - link "4614 Jinx Avenue $560,000 3 beds 2 baths 1,975 sqft 4614 Jinx Avenue, Austin, TX 78745": + - /url: /listing/4614-jinx-avenue-austin-tx-28420929 + - img "4614 Jinx Avenue" + - generic: $560,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,975 sqft + - generic: 4614 Jinx Avenue, Austin, TX 78745 + - link "Compass Exclusive 406 Franklin Boulevard, Unit 2 $580,000 2 beds 3 baths 1,100 sqft 406 Franklin Boulevard, Unit 2, Austin, TX 78751": + - /url: /listing/406-franklin-boulevard-unit-2-austin-tx-95080217 + - generic: Compass Exclusive + - img "406 Franklin Boulevard, Unit 2" + - generic: $580,000 + - generic: 2 beds + - generic: 3 baths + - generic: 1,100 sqft + - generic: 406 Franklin Boulevard, Unit 2, Austin, TX 78751 + - link "Compass Exclusive 2102 East Martin Luther King Jr Boulevard $875,000 2 beds — baths 1,004 sqft 2102 East Martin Luther King Jr Boulevard, Austin, TX 78722": + - /url: /listing/2102-east-martin-luther-king-jr-boulevard-austin-tx-16491801 + - generic: Compass Exclusive + - img "2102 East Martin Luther King Jr Boulevard" + - generic: $875,000 + - generic: 2 beds + - generic: — baths + - generic: 1,004 sqft + - generic: 2102 East Martin Luther King Jr Boulevard, Austin, TX 78722 + - link "Compass Exclusive 800 Embassy Drive, Unit 236 $585,000 2 beds 2 baths 1,289 sqft 800 Embassy Drive, Unit 236, Austin, TX 78702": + - /url: /listing/800-embassy-drive-unit-236-austin-tx-55353609 + - generic: Compass Exclusive + - img "800 Embassy Drive, Unit 236" + - generic: $585,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,289 sqft + - generic: 800 Embassy Drive, Unit 236, Austin, TX 78702 + - link "Compass Exclusive 3915 Tilley Street $918,500 3 beds 3 baths 2,241 sqft 3915 Tilley Street, Austin, TX 78723": + - /url: /listing/3915-tilley-street-austin-tx-23262961 + - generic: Compass Exclusive + - img "3915 Tilley Street" + - generic: $918,500 + - generic: 3 beds + - generic: 3 baths + - generic: 2,241 sqft + - generic: 3915 Tilley Street, Austin, TX 78723 + - link "1004 Juanita Street, Unit 2 $1,199,000 4 beds 3.5 baths 2,122 sqft 1004 Juanita Street, Unit 2, Austin, TX 78704": + - /url: /listing/juanita-street-austin-tx-57428705 + - img "1004 Juanita Street, Unit 2" + - generic: $1,199,000 + - generic: 4 beds + - generic: 3.5 baths + - generic: 2,122 sqft + - generic: 1004 Juanita Street, Unit 2, Austin, TX 78704 + - link "Compass Exclusive 2100 Apricot Glen Drive $2,350,000 4 beds 3 baths 3,485 sqft 2100 Apricot Glen Drive, Austin, TX 78746": + - /url: /listing/2100-apricot-glen-drive-austin-tx-71178969 + - generic: Compass Exclusive + - img "2100 Apricot Glen Drive" + - generic: $2,350,000 + - generic: 4 beds + - generic: 3 baths + - generic: 3,485 sqft + - generic: 2100 Apricot Glen Drive, Austin, TX 78746 + - link "Compass Exclusive 4330 Olenick Street $450,000 2 beds 2 baths 973 sqft 4330 Olenick Street, Austin, TX 78723": + - /url: /listing/4330-olenick-street-austin-tx-04301553 + - generic: Compass Exclusive + - img "4330 Olenick Street" + - generic: $450,000 + - generic: 2 beds + - generic: 2 baths + - generic: 973 sqft + - generic: 4330 Olenick Street, Austin, TX 78723 + - link "Compass Exclusive 3305 Dolphin Drive $775,000 7 beds — baths 3,424 sqft 3305 Dolphin Drive, Austin, TX 78704": + - /url: /listing/3305-dolphin-drive-austin-tx-31707521 + - generic: Compass Exclusive + - img "3305 Dolphin Drive" + - generic: $775,000 + - generic: 7 beds + - generic: — baths + - generic: 3,424 sqft + - generic: 3305 Dolphin Drive, Austin, TX 78704 + - link "1036 Liberty Park Drive, Unit 38A $1,400,000 4 beds 3 baths 2,889 sqft 1036 Liberty Park Drive, Unit 38A, Austin, TX 78746": + - /url: /listing/1036-liberty-park-drive-unit-38a-austin-tx-06932321 + - img "1036 Liberty Park Drive, Unit 38A" + - generic: $1,400,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,889 sqft + - generic: 1036 Liberty Park Drive, Unit 38A, Austin, TX 78746 + - link "1710 Holly Street $595,000 1 beds 1 baths 686 sqft 1710 Holly Street, Austin, TX 78702": + - /url: /listing/1710-holly-street-austin-tx-84863153 + - img "1710 Holly Street" + - generic: $595,000 + - generic: 1 beds + - generic: 1 baths + - generic: 686 sqft + - generic: 1710 Holly Street, Austin, TX 78702 + - link "Compass Exclusive 1422 Palomino Ridge Drive $3,450,000 5 beds 4 baths 5,185 sqft 1422 Palomino Ridge Drive, Austin, TX 78733": + - /url: /listing/1422-palomino-ridge-drive-austin-tx-12995745 + - generic: Compass Exclusive + - img "1422 Palomino Ridge Drive" + - generic: $3,450,000 + - generic: 5 beds + - generic: 4 baths + - generic: 5,185 sqft + - generic: 1422 Palomino Ridge Drive, Austin, TX 78733 + - link "Compass Exclusive 7313 Carver Avenue $465,000 3 beds 2 baths 1,350 sqft 7313 Carver Avenue, Austin, TX 78752": + - /url: /listing/7313-carver-avenue-austin-tx-93390705 + - generic: Compass Exclusive + - img "7313 Carver Avenue" + - generic: $465,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,350 sqft + - generic: 7313 Carver Avenue, Austin, TX 78752 + - link "Compass Exclusive 4907 Majestic Drive $745,000 3 beds 2.5 baths 1,772 sqft 4907 Majestic Drive, Austin, TX 78745": + - /url: /listing/4907-majestic-drive-austin-tx-90510225 + - generic: Compass Exclusive + - img "4907 Majestic Drive" + - generic: $745,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,772 sqft + - generic: 4907 Majestic Drive, Austin, TX 78745 + - link "Compass Exclusive 8718 Tallwood Drive $979,000 4 beds 4 baths 2,408 sqft 8718 Tallwood Drive, Austin, TX 78759": + - /url: /listing/8718-tallwood-drive-austin-tx-22574777 + - generic: Compass Exclusive + - img "8718 Tallwood Drive" + - generic: $979,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,408 sqft + - generic: 8718 Tallwood Drive, Austin, TX 78759 + - link "Compass Exclusive 1402 Singleton Avenue, Unit B $515,000 2 beds 2 baths 1,086 sqft 1402 Singleton Avenue, Unit B, Austin, TX 78702": + - /url: /listing/1402-singleton-avenue-unit-b-austin-tx-59791705 + - generic: Compass Exclusive + - img "1402 Singleton Avenue, Unit B" + - generic: $515,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,086 sqft + - generic: 1402 Singleton Avenue, Unit B, Austin, TX 78702 + - link "Compass Exclusive 6603 Liliana Lane $1,825,000 4 beds 5 baths 3,609 sqft 6603 Liliana Lane, Austin, TX 78746": + - /url: /listing/6603-liliana-lane-austin-tx-89262425 + - generic: Compass Exclusive + - img "6603 Liliana Lane" + - generic: $1,825,000 + - generic: 4 beds + - generic: 5 baths + - generic: 3,609 sqft + - generic: 6603 Liliana Lane, Austin, TX 78746 + - link "2010 Northeast 54th Street $915,000 4 beds 3 baths 1,940 sqft 2010 Northeast 54th Street, Seattle, WA 98105": + - /url: /listing/2010-northeast-54th-street-seattle-wa-18874001 + - img "2010 Northeast 54th Street" + - generic: $915,000 + - generic: 4 beds + - generic: 3 baths + - generic: 1,940 sqft + - generic: 2010 Northeast 54th Street, Seattle, WA 98105 + - link "702 South Director Street $425,000 3 beds 1 baths 1,490 sqft 702 South Director Street, Seattle, WA 98108": + - /url: /listing/702-south-director-street-seattle-wa-06075617 + - img "702 South Director Street" + - generic: $425,000 + - generic: 3 beds + - generic: 1 baths + - generic: 1,490 sqft + - generic: 702 South Director Street, Seattle, WA 98108 + - link "941 11th Avenue East, Unit 3 $2,350,000 2 beds 1.75 baths 2,121 sqft 941 11th Avenue East, Unit 3, Seattle, WA 98102": + - /url: /listing/941-11th-avenue-east-unit-3-seattle-wa-21234601 + - img "941 11th Avenue East, Unit 3" + - generic: $2,350,000 + - generic: 2 beds + - generic: 1.75 baths + - generic: 2,121 sqft + - generic: 941 11th Avenue East, Unit 3, Seattle, WA 98102 + - link "5807 55th Avenue Northeast, Unit B $749,000 3 beds 4 baths 1,510 sqft 5807 55th Avenue Northeast, Unit B, Seattle, WA 98105": + - /url: /listing/5807-55th-avenue-northeast-unit-b-seattle-wa-90250753 + - img "5807 55th Avenue Northeast, Unit B" + - generic: $749,000 + - generic: 3 beds + - generic: 4 baths + - generic: 1,510 sqft + - generic: 5807 55th Avenue Northeast, Unit B, Seattle, WA 98105 + - link "610 27th Avenue East $1,315,000 5 beds 2 baths 2,180 sqft 610 27th Avenue East, Seattle, WA 98112": + - /url: /listing/610-27th-avenue-east-seattle-wa-90349753 + - img "610 27th Avenue East" + - generic: $1,315,000 + - generic: 5 beds + - generic: 2 baths + - generic: 2,180 sqft + - generic: 610 27th Avenue East, Seattle, WA 98112 + - link "2818 Boyer Avenue East, Unit 6 $780,000 — beds — baths 635 sqft 2818 Boyer Avenue East, Unit 6, Seattle, WA 98102": + - /url: /listing/2818-boyer-avenue-east-unit-6-seattle-wa-72475809 + - img "2818 Boyer Avenue East, Unit 6" + - generic: $780,000 + - generic: — beds + - generic: — baths + - generic: 635 sqft + - generic: 2818 Boyer Avenue East, Unit 6, Seattle, WA 98102 + - link "300 Virginia Street, Unit 1108 $595,000 1 beds 1 baths 548 sqft 300 Virginia Street, Unit 1108, Seattle, WA 98101": + - /url: /listing/300-virginia-street-unit-1108-seattle-wa-05882073 + - img "300 Virginia Street, Unit 1108" + - generic: $595,000 + - generic: 1 beds + - generic: 1 baths + - generic: 548 sqft + - generic: 300 Virginia Street, Unit 1108, Seattle, WA 98101 + - link "6735 Alonzo Avenue Northwest, Unit A $1,075,000 3 beds 2 baths 1,943 sqft 6735 Alonzo Avenue Northwest, Unit A, Seattle, WA 98117": + - /url: /listing/6735-alonzo-avenue-northwest-unit-a-seattle-wa-29892833 + - img "6735 Alonzo Avenue Northwest, Unit A" + - generic: $1,075,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,943 sqft + - generic: 6735 Alonzo Avenue Northwest, Unit A, Seattle, WA 98117 + - link "2400 Aurora Avenue North, Unit 210 $1,495,000 3 beds 2.25 baths 2,517 sqft 2400 Aurora Avenue North, Unit 210, Seattle, WA 98109": + - /url: /listing/2400-aurora-avenue-north-unit-210-seattle-wa-69429673 + - img "2400 Aurora Avenue North, Unit 210" + - generic: $1,495,000 + - generic: 3 beds + - generic: 2.25 baths + - generic: 2,517 sqft + - generic: 2400 Aurora Avenue North, Unit 210, Seattle, WA 98109 + - link "12569 37th Avenue Northeast $1,194,000 4 beds 3 baths 2,500 sqft 12569 37th Avenue Northeast, Seattle, WA 98125": + - /url: /listing/12569-37th-avenue-northeast-seattle-wa-79972441 + - img "12569 37th Avenue Northeast" + - generic: $1,194,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,500 sqft + - generic: 12569 37th Avenue Northeast, Seattle, WA 98125 + - link "2040 13th Avenue West, Unit 33 $625,000 2 beds 2 baths 976 sqft 2040 13th Avenue West, Unit 33, Seattle, WA 98119": + - /url: /listing/2040-13th-avenue-west-unit-33-seattle-wa-63141689 + - img "2040 13th Avenue West, Unit 33" + - generic: $625,000 + - generic: 2 beds + - generic: 2 baths + - generic: 976 sqft + - generic: 2040 13th Avenue West, Unit 33, Seattle, WA 98119 + - link "300 Virginia Street, Unit 811 $595,000 1 beds 1 baths 586 sqft 300 Virginia Street, Unit 811, Seattle, WA 98101": + - /url: /listing/300-virginia-street-unit-811-seattle-wa-51071737 + - img "300 Virginia Street, Unit 811" + - generic: $595,000 + - generic: 1 beds + - generic: 1 baths + - generic: 586 sqft + - generic: 300 Virginia Street, Unit 811, Seattle, WA 98101 + - link "7541 Seward Park Avenue South $1,725,000 5 beds 3 baths 2,645 sqft 7541 Seward Park Avenue South, Seattle, WA 98118": + - /url: /listing/7541-seward-park-avenue-south-seattle-wa-96085721 + - img "7541 Seward Park Avenue South" + - generic: $1,725,000 + - generic: 5 beds + - generic: 3 baths + - generic: 2,645 sqft + - generic: 7541 Seward Park Avenue South, Seattle, WA 98118 + - link "300 Virginia Street, Unit 809 $1,080,000 2 beds 1.75 baths 940 sqft 300 Virginia Street, Unit 809, Seattle, WA 98101": + - /url: /listing/300-virginia-street-unit-809-seattle-wa-21535001 + - img "300 Virginia Street, Unit 809" + - generic: $1,080,000 + - generic: 2 beds + - generic: 1.75 baths + - generic: 940 sqft + - generic: 300 Virginia Street, Unit 809, Seattle, WA 98101 + - link "Pending 2501 Canterbury Lane East, Unit 322 $499,000 2 beds 1 baths 891 sqft 2501 Canterbury Lane East, Unit 322, Seattle, WA 98112": + - /url: /listing/2501-canterbury-lane-east-unit-322-seattle-wa-56297009 + - generic: Pending + - img "2501 Canterbury Lane East, Unit 322" + - generic: $499,000 + - generic: 2 beds + - generic: 1 baths + - generic: 891 sqft + - generic: 2501 Canterbury Lane East, Unit 322, Seattle, WA 98112 + - link "4903 50th Avenue South $1,175,000 3 beds 2 baths 1,800 sqft 4903 50th Avenue South, Seattle, WA 98118": + - /url: /listing/4903-50th-avenue-south-seattle-wa-64379729 + - img "4903 50th Avenue South" + - generic: $1,175,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,800 sqft + - generic: 4903 50th Avenue South, Seattle, WA 98118 + - link "7710 57th Avenue Northeast $2,150,000 4 beds 3 baths 3,772 sqft 7710 57th Avenue Northeast, Seattle, WA 98115": + - /url: /listing/7710-57th-avenue-northeast-seattle-wa-04119657 + - img "7710 57th Avenue Northeast" + - generic: $2,150,000 + - generic: 4 beds + - generic: 3 baths + - generic: 3,772 sqft + - generic: 7710 57th Avenue Northeast, Seattle, WA 98115 + - link "6546 32nd Avenue Northeast, Unit A $1,075,000 4 beds 4 baths 1,940 sqft 6546 32nd Avenue Northeast, Unit A, Seattle, WA 98115": + - /url: /listing/6546-32nd-avenue-northeast-unit-a-seattle-wa-40020505 + - img "6546 32nd Avenue Northeast, Unit A" + - generic: $1,075,000 + - generic: 4 beds + - generic: 4 baths + - generic: 1,940 sqft + - generic: 6546 32nd Avenue Northeast, Unit A, Seattle, WA 98115 + - link "2349 Harbor Avenue Southwest, Unit 701 $750,000 2 beds 2 baths 1,414 sqft 2349 Harbor Avenue Southwest, Unit 701, Seattle, WA 98126": + - /url: /listing/2349-harbor-avenue-southwest-unit-701-seattle-wa-74197241 + - img "2349 Harbor Avenue Southwest, Unit 701" + - generic: $750,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,414 sqft + - generic: 2349 Harbor Avenue Southwest, Unit 701, Seattle, WA 98126 + - link "2021 1st Avenue, Unit F20 $1,995,000 2 beds 2.25 baths 1,900 sqft 2021 1st Avenue, Unit F20, Seattle, WA 98121": + - /url: /listing/2021-1st-avenue-unit-f20-seattle-wa-62666769 + - img "2021 1st Avenue, Unit F20" + - generic: $1,995,000 + - generic: 2 beds + - generic: 2.25 baths + - generic: 1,900 sqft + - generic: 2021 1st Avenue, Unit F20, Seattle, WA 98121 + - link "15009 Westminster Way North $629,995 3 beds 3 baths 1,219 sqft 15009 Westminster Way North, Seattle, WA 98133": + - /url: /listing/15009-westminster-way-north-seattle-wa-95740273 + - img "15009 Westminster Way North" + - generic: $629,995 + - generic: 3 beds + - generic: 3 baths + - generic: 1,219 sqft + - generic: 15009 Westminster Way North, Seattle, WA 98133 + - link "Pending 1419 McGilvra Boulevard East $1,995,000 3 beds 2.5 baths 3,430 sqft 1419 McGilvra Boulevard East, Seattle, WA 98112": + - /url: /listing/1419-mcgilvra-boulevard-east-seattle-wa-28302473 + - generic: Pending + - img "1419 McGilvra Boulevard East" + - generic: $1,995,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 3,430 sqft + - generic: 1419 McGilvra Boulevard East, Seattle, WA 98112 + - link "1760 Northwest 56th Street, Unit 309 $399,000 — beds — baths 698 sqft 1760 Northwest 56th Street, Unit 309, Seattle, WA 98107": + - /url: /listing/1760-northwest-56th-street-unit-309-seattle-wa-95713321 + - img "1760 Northwest 56th Street, Unit 309" + - generic: $399,000 + - generic: — beds + - generic: — baths + - generic: 698 sqft + - generic: 1760 Northwest 56th Street, Unit 309, Seattle, WA 98107 + - link "5316 31st Avenue South $985,000 7 beds 4 baths 3,100 sqft 5316 31st Avenue South, Seattle, WA 98108": + - /url: /listing/5316-31st-avenue-south-seattle-wa-69320529 + - img "5316 31st Avenue South" + - generic: $985,000 + - generic: 7 beds + - generic: 4 baths + - generic: 3,100 sqft + - generic: 5316 31st Avenue South, Seattle, WA 98108 + - link "Compass Exclusive 740 North Clayton Street $1,850,000 3 beds 5 baths 3,612 sqft 740 North Clayton Street, Denver, CO 80206": + - /url: /listing/740-north-clayton-street-denver-co-51220497 + - generic: Compass Exclusive + - img "740 North Clayton Street" + - generic: $1,850,000 + - generic: 3 beds + - generic: 5 baths + - generic: 3,612 sqft + - generic: 740 North Clayton Street, Denver, CO 80206 + - link "Compass Exclusive 1411 Zenobia Street $685,000 3 beds 3 baths 1,585 sqft 1411 Zenobia Street, Denver, CO 80204": + - /url: /listing/1411-zenobia-street-denver-co-59137577 + - generic: Compass Exclusive + - img "1411 Zenobia Street" + - generic: $685,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,585 sqft + - generic: 1411 Zenobia Street, Denver, CO 80204 + - link "Compass Exclusive 1304 North Raleigh Street $635,000 2 beds 3 baths 1,200 sqft 1304 North Raleigh Street, Denver, CO 80204": + - /url: /listing/1304-north-raleigh-street-denver-co-51054009 + - generic: Compass Exclusive + - img "1304 North Raleigh Street" + - generic: $635,000 + - generic: 2 beds + - generic: 3 baths + - generic: 1,200 sqft + - generic: 1304 North Raleigh Street, Denver, CO 80204 + - link "Compass Exclusive 1370 Zenobia Street $625,000 4 beds 2 baths 1,800 sqft 1370 Zenobia Street, Denver, CO 80204": + - /url: /listing/1370-zenobia-street-denver-co-42065833 + - generic: Compass Exclusive + - img "1370 Zenobia Street" + - generic: $625,000 + - generic: 4 beds + - generic: 2 baths + - generic: 1,800 sqft + - generic: 1370 Zenobia Street, Denver, CO 80204 + - link "Compass Exclusive 1695 Zenobia Street, Unit 2 $1,500,000 4 beds 4 baths 2,593 sqft 1695 Zenobia Street, Unit 2, Denver, CO 80204": + - /url: /listing/1695-zenobia-street-unit-2-denver-co-39951841 + - generic: Compass Exclusive + - img "1695 Zenobia Street, Unit 2" + - generic: $1,500,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,593 sqft + - generic: 1695 Zenobia Street, Unit 2, Denver, CO 80204 + - link "Compass Exclusive 4922 Lowell Boulevard, Unit 4 $649,900 2 beds 4 baths 1,407 sqft 4922 Lowell Boulevard, Unit 4, Denver, CO 80221": + - /url: /listing/4922-lowell-boulevard-unit-4-denver-co-37985593 + - generic: Compass Exclusive + - img "4922 Lowell Boulevard, Unit 4" + - generic: $649,900 + - generic: 2 beds + - generic: 4 baths + - generic: 1,407 sqft + - generic: 4922 Lowell Boulevard, Unit 4, Denver, CO 80221 + - link "Compass Exclusive 1939 South Gilpin Street $810,000 3 beds 2 baths 1,178 sqft 1939 South Gilpin Street, Denver, CO 80210": + - /url: /listing/1939-south-gilpin-street-denver-co-86276025 + - generic: Compass Exclusive + - img "1939 South Gilpin Street" + - generic: $810,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,178 sqft + - generic: 1939 South Gilpin Street, Denver, CO 80210 + - link "Compass Exclusive 3023 Wyandot Street $3,200,000 6 beds 8 baths 6,468 sqft 3023 Wyandot Street, Denver, CO 80211": + - /url: /listing/3023-wyandot-street-denver-co-39690273 + - generic: Compass Exclusive + - img "3023 Wyandot Street" + - generic: $3,200,000 + - generic: 6 beds + - generic: 8 baths + - generic: 6,468 sqft + - generic: 3023 Wyandot Street, Denver, CO 80211 + - link "Compass Exclusive 1430 Pierce Street $639,000 3 beds 3 baths 1,895 sqft 1430 Pierce Street, Denver, CO 80214": + - /url: /listing/1430-pierce-street-denver-co-26915801 + - generic: Compass Exclusive + - img "1430 Pierce Street" + - generic: $639,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,895 sqft + - generic: 1430 Pierce Street, Denver, CO 80214 + - link "1182 Clermont Street, Unit 1B $150,000 1 beds 1 baths 454 sqft 1182 Clermont Street, Unit 1B, Denver, CO 80220": + - /url: /listing/1182-clermont-street-unit-1b-denver-co-77033161 + - img "1182 Clermont Street, Unit 1B" + - generic: $150,000 + - generic: 1 beds + - generic: 1 baths + - generic: 454 sqft + - generic: 1182 Clermont Street, Unit 1B, Denver, CO 80220 + - link "Compass Exclusive 1440 Little Raven Street, Unit 204 $630,000 2 beds 2 baths 1,168 sqft 1440 Little Raven Street, Unit 204, Denver, CO 80202": + - /url: /listing/1440-little-raven-street-unit-204-denver-co-92744361 + - generic: Compass Exclusive + - img "1440 Little Raven Street, Unit 204" + - generic: $630,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,168 sqft + - generic: 1440 Little Raven Street, Unit 204, Denver, CO 80202 + - link "Compass Exclusive South Grant Street $1,050,000 3 beds 2 baths 1,881 sqft South Grant Street, Denver, CO 80203": + - /url: /listing/south-grant-street-denver-co-94195537 + - generic: Compass Exclusive + - img "South Grant Street" + - generic: $1,050,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,881 sqft + - generic: South Grant Street, Denver, CO 80203 + - link "Compass Exclusive 4515 Stuart Street $1,595,000 4 beds 5 baths 3,620 sqft 4515 Stuart Street, Denver, CO 80212": + - /url: /listing/4515-stuart-street-denver-co-03971705 + - generic: Compass Exclusive + - img "4515 Stuart Street" + - generic: $1,595,000 + - generic: 4 beds + - generic: 5 baths + - generic: 3,620 sqft + - generic: 4515 Stuart Street, Denver, CO 80212 + - link "3414 Lawrence Street $1,149,000 4 beds 5 baths 2,808 sqft 3414 Lawrence Street, Denver, CO 80205": + - /url: /listing/3414-lawrence-street-denver-co-31891505 + - img "3414 Lawrence Street" + - generic: $1,149,000 + - generic: 4 beds + - generic: 5 baths + - generic: 2,808 sqft + - generic: 3414 Lawrence Street, Denver, CO 80205 + - link "4225 West 13th Avenue $799,000 3 beds 4 baths 1,818 sqft 4225 West 13th Avenue, Denver, CO 80204": + - /url: /listing/4225-west-13th-avenue-denver-co-60687425 + - img "4225 West 13th Avenue" + - generic: $799,000 + - generic: 3 beds + - generic: 4 baths + - generic: 1,818 sqft + - generic: 4225 West 13th Avenue, Denver, CO 80204 + - link "4200 West 17th Avenue, Unit 614 $699,000 1 beds 2 baths 954 sqft 4200 West 17th Avenue, Unit 614, Denver, CO 80204": + - /url: /listing/4200-west-17th-avenue-unit-614-denver-co-73524889 + - img "4200 West 17th Avenue, Unit 614" + - generic: $699,000 + - generic: 1 beds + - generic: 2 baths + - generic: 954 sqft + - generic: 4200 West 17th Avenue, Unit 614, Denver, CO 80204 + - link "Undisclosed Address $297,000 — beds — baths 559 sqft Undisclosed Address, Denver, CO 80203": + - /url: /listing/undisclosed-address-denver-co-33349817 + - img "Undisclosed Address" + - generic: $297,000 + - generic: — beds + - generic: — baths + - generic: 559 sqft + - generic: Undisclosed Address, Denver, CO 80203 + - link "2500 Walnut Street, Unit 201 $548,999 — beds — baths 1,027 sqft 2500 Walnut Street, Unit 201, Denver, CO 80205": + - /url: /listing/2500-walnut-street-unit-201-denver-co-65506201 + - img "2500 Walnut Street, Unit 201" + - generic: $548,999 + - generic: — beds + - generic: — baths + - generic: 1,027 sqft + - generic: 2500 Walnut Street, Unit 201, Denver, CO 80205 + - link "2056 South Lincoln Street $685,000 3 beds 2 baths 1,536 sqft 2056 South Lincoln Street, Denver, CO 80210": + - /url: /listing/2056-south-lincoln-street-denver-co-78470569 + - img "2056 South Lincoln Street" + - generic: $685,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,536 sqft + - generic: 2056 South Lincoln Street, Denver, CO 80210 + - link "2417 South Lafayette Street $1,169,000 3 beds 4 baths 2,365 sqft 2417 South Lafayette Street, Denver, CO 80210": + - /url: /listing/2417-south-lafayette-street-denver-co-90943449 + - img "2417 South Lafayette Street" + - generic: $1,169,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,365 sqft + - generic: 2417 South Lafayette Street, Denver, CO 80210 + - link "1350 Josephine Street, Unit 206 $214,900 1 beds 1 baths 606 sqft 1350 Josephine Street, Unit 206, Denver, CO 80206": + - /url: /listing/1350-josephine-street-unit-206-denver-co-51051441 + - img "1350 Josephine Street, Unit 206" + - generic: $214,900 + - generic: 1 beds + - generic: 1 baths + - generic: 606 sqft + - generic: 1350 Josephine Street, Unit 206, Denver, CO 80206 + - link "1431 South Glencoe Street $650,000 3 beds 2 baths 1,094 sqft 1431 South Glencoe Street, Denver, CO 80222": + - /url: /listing/1431-south-glencoe-street-denver-co-20637969 + - img "1431 South Glencoe Street" + - generic: $650,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,094 sqft + - generic: 1431 South Glencoe Street, Denver, CO 80222 + - link "4410 Raritan Street $440,000 2 beds 1 baths 758 sqft 4410 Raritan Street, Denver, CO 80211": + - /url: /listing/4410-raritan-street-denver-co-14388401 + - img "4410 Raritan Street" + - generic: $440,000 + - generic: 2 beds + - generic: 1 baths + - generic: 758 sqft + - generic: 4410 Raritan Street, Denver, CO 80211 + - link "825 East Cooper Avenue $24,995,000 4 beds 4 baths 3,613 sqft 825 East Cooper Avenue, Aspen, CO 81611": + - /url: /listing/825-east-cooper-avenue-aspen-co-53959097 + - img "825 East Cooper Avenue" + - generic: $24,995,000 + - generic: 4 beds + - generic: 4 baths + - generic: 3,613 sqft + - generic: 825 East Cooper Avenue, Aspen, CO 81611 + - link "830 East Durant Avenue $24,950,000 4 beds 4 baths 4,005 sqft 830 East Durant Avenue, Aspen, CO 81611": + - /url: /listing/830-east-durant-avenue-aspen-co-39990729 + - img "830 East Durant Avenue" + - generic: $24,950,000 + - generic: 4 beds + - generic: 4 baths + - generic: 4,005 sqft + - generic: 830 East Durant Avenue, Aspen, CO 81611 + - link "730 Twining Flats Road $8,500,000 3 beds 3.5 baths 4,992 sqft 730 Twining Flats Road, Aspen, CO 81611": + - /url: /listing/730-twining-flats-road-aspen-co-70769025 + - img "730 Twining Flats Road" + - generic: $8,500,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 4,992 sqft + - generic: 730 Twining Flats Road, Aspen, CO 81611 + - link "Pending 190 West Lupine Drive $14,995,000 5 beds 6 baths 5,470 sqft 190 West Lupine Drive, Aspen, CO 81611": + - /url: /listing/190-west-lupine-drive-aspen-co-82072873 + - generic: Pending + - img "190 West Lupine Drive" + - generic: $14,995,000 + - generic: 5 beds + - generic: 6 baths + - generic: 5,470 sqft + - generic: 190 West Lupine Drive, Aspen, CO 81611 + - link "42703 Highway 82, Unit B $10,950,000 5 beds 5.5 baths 4,154 sqft 42703 Highway 82, Unit B, Aspen, CO 81611": + - /url: /listing/42703-highway-82-unit-b-aspen-co-90959137 + - img "42703 Highway 82, Unit B" + - generic: $10,950,000 + - generic: 5 beds + - generic: 5.5 baths + - generic: 4,154 sqft + - generic: 42703 Highway 82, Unit B, Aspen, CO 81611 + - link "Pending 120 Turtle Cove $4,250,000 3 beds 3 baths 2,342 sqft 120 Turtle Cove, Aspen, CO 81611": + - /url: /listing/120-turtle-cove-aspen-co-64551841 + - generic: Pending + - img "120 Turtle Cove" + - generic: $4,250,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,342 sqft + - generic: 120 Turtle Cove, Aspen, CO 81611 + - link "100 Difficult Lane $25,900,000 3 beds 4 baths 2,795 sqft 100 Difficult Lane, Aspen, CO 81611": + - /url: /listing/100-difficult-lane-aspen-co-46556249 + - img "100 Difficult Lane" + - generic: $25,900,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,795 sqft + - generic: 100 Difficult Lane, Aspen, CO 81611 + - link "803 East Durant Avenue, Unit 8 $4,350,000 2 beds 2 baths 960 sqft 803 East Durant Avenue, Unit 8, Aspen, CO 81611": + - /url: /listing/803-east-durant-avenue-unit-8-aspen-co-85968689 + - img "803 East Durant Avenue, Unit 8" + - generic: $4,350,000 + - generic: 2 beds + - generic: 2 baths + - generic: 960 sqft + - generic: 803 East Durant Avenue, Unit 8, Aspen, CO 81611 + - link "41 Popcorn Lane $49,900,000 5 beds 9 baths 14,960 sqft 41 Popcorn Lane, Aspen, CO 81611": + - /url: /listing/41-popcorn-lane-aspen-co-87132233 + - img "41 Popcorn Lane" + - generic: $49,900,000 + - generic: 5 beds + - generic: 9 baths + - generic: 14,960 sqft + - generic: 41 Popcorn Lane, Aspen, CO 81611 + - link "825 Ute Avenue, Unit A $18,450,000 4 beds 5 baths 3,771 sqft 825 Ute Avenue, Unit A, Aspen, CO 81611": + - /url: /listing/825-ute-avenue-unit-a-aspen-co-50257457 + - img "825 Ute Avenue, Unit A" + - generic: $18,450,000 + - generic: 4 beds + - generic: 5 baths + - generic: 3,771 sqft + - generic: 825 Ute Avenue, Unit A, Aspen, CO 81611 + - link "332 Vine Street $2,500,000 2 beds 2 baths 878 sqft 332 Vine Street, Aspen, CO 81611": + - /url: /listing/332-vine-street-aspen-co-85552009 + - img "332 Vine Street" + - generic: $2,500,000 + - generic: 2 beds + - generic: 2 baths + - generic: 878 sqft + - generic: 332 Vine Street, Aspen, CO 81611 + - link "605 West Bleeker Street $18,450,000 4 beds 5.5 baths 4,314 sqft 605 West Bleeker Street, Aspen, CO 81611": + - /url: /listing/605-west-bleeker-street-aspen-co-48223185 + - img "605 West Bleeker Street" + - generic: $18,450,000 + - generic: 4 beds + - generic: 5.5 baths + - generic: 4,314 sqft + - generic: 605 West Bleeker Street, Aspen, CO 81611 + - link "315 East Dean Street, Unit B62 $425,000 2 beds 2.5 baths 1,473 sqft 315 East Dean Street, Unit B62, Aspen, CO 81611": + - /url: /listing/315-east-dean-street-unit-b62-aspen-co-52455905 + - img "315 East Dean Street, Unit B62" + - generic: $425,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,473 sqft + - generic: 315 East Dean Street, Unit B62, Aspen, CO 81611 + - link "315 East Dean Street, Unit B51 $1,495,000 2 beds 2.5 baths 1,612 sqft 315 East Dean Street, Unit B51, Aspen, CO 81611": + - /url: /listing/315-east-dean-street-unit-b51-aspen-co-57096177 + - img "315 East Dean Street, Unit B51" + - generic: $1,495,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,612 sqft + - generic: 315 East Dean Street, Unit B51, Aspen, CO 81611 + - link "315 East Dean Street, Unit B55 $1,750,000 3 beds 3 baths 2,048 sqft 315 East Dean Street, Unit B55, Aspen, CO 81611": + - /url: /listing/315-east-dean-street-unit-b55-aspen-co-61527849 + - img "315 East Dean Street, Unit B55" + - generic: $1,750,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,048 sqft + - generic: 315 East Dean Street, Unit B55, Aspen, CO 81611 + - link "610 South W End Street, Unit D201 $4,795,000 2 beds 2 baths 1,052 sqft 610 South W End Street, Unit D201, Aspen, CO 81611": + - /url: /listing/610-south-w-end-street-unit-d201-aspen-co-47448697 + - img "610 South W End Street, Unit D201" + - generic: $4,795,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,052 sqft + - generic: 610 South W End Street, Unit D201, Aspen, CO 81611 + - link "155 Nighthawk Drive $18,950,000 6 beds 8 baths 5,392 sqft 155 Nighthawk Drive, Aspen, CO 81612": + - /url: /listing/155-nighthawk-drive-aspen-co-93831713 + - img "155 Nighthawk Drive" + - generic: $18,950,000 + - generic: 6 beds + - generic: 8 baths + - generic: 5,392 sqft + - generic: 155 Nighthawk Drive, Aspen, CO 81612 + - link "137 Ridge Trail $660,000 3 beds 1 baths 910 sqft 137 Ridge Trail, Aspen, CO 81611": + - /url: /listing/137-ridge-trail-aspen-co-72248057 + - img "137 Ridge Trail" + - generic: $660,000 + - generic: 3 beds + - generic: 1 baths + - generic: 910 sqft + - generic: 137 Ridge Trail, Aspen, CO 81611 + - link "415 East Dean Street, Unit 44ABC WEEKS 51/52 $775,000 3 beds 3 baths 2,120 sqft 415 East Dean Street, Unit 44ABC WEEKS 51/52, Aspen, CO 81611": + - /url: /listing/415-east-dean-street-unit-44abc-weeks-51-52-aspen-co-80487609 + - img "415 East Dean Street, Unit 44ABC WEEKS 51/52" + - generic: $775,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,120 sqft + - generic: 415 East Dean Street, Unit 44ABC WEEKS 51/52, Aspen, CO 81611 + - link "450 South Original Street, Unit 8 $3,995,000 2 beds 2 baths 932 sqft 450 South Original Street, Unit 8, Aspen, CO 81611": + - /url: /listing/450-south-original-street-unit-8-aspen-co-40304113 + - img "450 South Original Street, Unit 8" + - generic: $3,995,000 + - generic: 2 beds + - generic: 2 baths + - generic: 932 sqft + - generic: 450 South Original Street, Unit 8, Aspen, CO 81611 + - link "McLain Flats $5,450,000 — beds 0 baths — sqft McLain Flats, Aspen, CO 81612": + - /url: /listing/mclain-flats-aspen-co-24827361 + - img "McLain Flats" + - generic: $5,450,000 + - generic: — beds + - generic: 0 baths + - generic: — sqft + - generic: McLain Flats, Aspen, CO 81612 + - link "725 East Durant Avenue, Unit 22 $3,199,000 1 beds 1.5 baths 828 sqft 725 East Durant Avenue, Unit 22, Aspen, CO 81611": + - /url: /listing/725-east-durant-avenue-unit-22-aspen-co-54767201 + - img "725 East Durant Avenue, Unit 22" + - generic: $3,199,000 + - generic: 1 beds + - generic: 1.5 baths + - generic: 828 sqft + - generic: 725 East Durant Avenue, Unit 22, Aspen, CO 81611 + - link "1038 Owl Creek Road $10,995,000 4 beds 4 baths 5,047 sqft 1038 Owl Creek Road, Aspen, CO 81611": + - /url: /listing/1038-owl-creek-road-aspen-co-75064801 + - img "1038 Owl Creek Road" + - generic: $10,995,000 + - generic: 4 beds + - generic: 4 baths + - generic: 5,047 sqft + - generic: 1038 Owl Creek Road, Aspen, CO 81611 + - link "1220 Red Butte Drive $22,950,000 5 beds 5.5 baths 5,872 sqft 1220 Red Butte Drive, Aspen, CO 81611": + - /url: /listing/1220-red-butte-drive-aspen-co-21093121 + - img "1220 Red Butte Drive" + - generic: $22,950,000 + - generic: 5 beds + - generic: 5.5 baths + - generic: 5,872 sqft + - generic: 1220 Red Butte Drive, Aspen, CO 81611 + - link "Pending 864 Moore Drive $39,500,000 7 beds 9 baths 10,615 sqft 864 Moore Drive, Aspen, CO 81611": + - /url: /listing/864-moore-drive-aspen-co-64367481 + - generic: Pending + - img "864 Moore Drive" + - generic: $39,500,000 + - generic: 7 beds + - generic: 9 baths + - generic: 10,615 sqft + - generic: 864 Moore Drive, Aspen, CO 81611 + - link "1162 Tiehack Road $38,500,000 6 beds 7.5 baths 7,811 sqft 1162 Tiehack Road, Aspen, CO 81611": + - /url: /listing/1162-tiehack-road-aspen-co-58693761 + - img "1162 Tiehack Road" + - generic: $38,500,000 + - generic: 6 beds + - generic: 7.5 baths + - generic: 7,811 sqft + - generic: 1162 Tiehack Road, Aspen, CO 81611 + - link "1395 Sierra Vista Drive, Unit 1 $10,995,000 4 beds 5 baths 4,390 sqft 1395 Sierra Vista Drive, Unit 1, Aspen, CO 81611": + - /url: /listing/1395-sierra-vista-drive-unit-1-aspen-co-22259585 + - img "1395 Sierra Vista Drive, Unit 1" + - generic: $10,995,000 + - generic: 4 beds + - generic: 5 baths + - generic: 4,390 sqft + - generic: 1395 Sierra Vista Drive, Unit 1, Aspen, CO 81611 + - link "415 East Dean St Unit 5 Week 5 $145,000 2 beds 2 baths 1,519 sqft 415 East Dean St Unit 5 Week 5, Aspen, CO 81611": + - /url: /listing/415-east-dean-st-unit-5-week-5-aspen-co-25029505 + - img "415 East Dean St Unit 5 Week 5" + - generic: $145,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,519 sqft + - generic: 415 East Dean St Unit 5 Week 5, Aspen, CO 81611 + - 'link "415 East Dean St # 35 Week 35 $175,000 3 beds 3 baths 1,831 sqft 415 East Dean St # 35 Week 35, Aspen, CO 81611"': + - /url: /listing/415-east-dean-st-35-week-35-aspen-co-62298705 + - 'img "415 East Dean St # 35 Week 35"' + - generic: $175,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,831 sqft + - generic: "415 East Dean St # 35 Week 35, Aspen, CO 81611" + - link "501 West Main Street, Unit A101 $1,925,000 1 beds 1 baths 460 sqft 501 West Main Street, Unit A101, Aspen, CO 81611": + - /url: /listing/501-west-main-street-unit-a101-aspen-co-44142641 + - img "501 West Main Street, Unit A101" + - generic: $1,925,000 + - generic: 1 beds + - generic: 1 baths + - generic: 460 sqft + - generic: 501 West Main Street, Unit A101, Aspen, CO 81611 + - link "Tbd Pfister Drive $4,500,000 — beds 0 baths — sqft Tbd Pfister Drive, Aspen, CO 81611": + - /url: /listing/tbd-pfister-drive-aspen-co-12374913 + - img "Tbd Pfister Drive" + - generic: $4,500,000 + - generic: — beds + - generic: 0 baths + - generic: — sqft + - generic: Tbd Pfister Drive, Aspen, CO 81611 + - link "1718 Corcoran Street Northwest, Unit 5 $315,000 1 beds 1 baths 563 sqft 1718 Corcoran Street Northwest, Unit 5, Washington, DC 20009": + - /url: /listing/1718-corcoran-street-northwest-unit-5-washington-dc-52722345 + - img "1718 Corcoran Street Northwest, Unit 5" + - generic: $315,000 + - generic: 1 beds + - generic: 1 baths + - generic: 563 sqft + - generic: 1718 Corcoran Street Northwest, Unit 5, Washington, DC 20009 + - link "Compass Exclusive 1423 R Street Northwest, Unit 105 $780,000 2 beds 2 baths 1,120 sqft 1423 R Street Northwest, Unit 105, Washington, DC 20009": + - /url: /listing/1423-r-street-northwest-unit-105-washington-dc-32557289 + - generic: Compass Exclusive + - img "1423 R Street Northwest, Unit 105" + - generic: $780,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,120 sqft + - generic: 1423 R Street Northwest, Unit 105, Washington, DC 20009 + - link "Compass Exclusive 1848 Wyoming Avenue Northwest, Unit 201 $815,000 2 beds 2 baths 1,132 sqft 1848 Wyoming Avenue Northwest, Unit 201, Washington, DC 20009": + - /url: /listing/1848-wyoming-avenue-northwest-unit-201-washington-dc-94495537 + - generic: Compass Exclusive + - img "1848 Wyoming Avenue Northwest, Unit 201" + - generic: $815,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,132 sqft + - generic: 1848 Wyoming Avenue Northwest, Unit 201, Washington, DC 20009 + - link "Compass Exclusive 2009 Columbia Road Northwest, Unit 2 $774,900 2 beds 2 baths 1,150 sqft 2009 Columbia Road Northwest, Unit 2, Washington, DC 20009": + - /url: /listing/2009-columbia-road-northwest-unit-2-washington-dc-41184241 + - generic: Compass Exclusive + - img "2009 Columbia Road Northwest, Unit 2" + - generic: $774,900 + - generic: 2 beds + - generic: 2 baths + - generic: 1,150 sqft + - generic: 2009 Columbia Road Northwest, Unit 2, Washington, DC 20009 + - link "Compass Exclusive 1226 11th Street Northwest, Unit 200 $550,000 — beds 2 baths 880 sqft 1226 11th Street Northwest, Unit 200, Washington, DC 20001": + - /url: /listing/1226-11th-street-northwest-unit-200-washington-dc-74847953 + - generic: Compass Exclusive + - img "1226 11th Street Northwest, Unit 200" + - generic: $550,000 + - generic: — beds + - generic: 2 baths + - generic: 880 sqft + - generic: 1226 11th Street Northwest, Unit 200, Washington, DC 20001 + - link "Compass Exclusive 1010 Massachusetts Avenue Northwest, Unit 207 $695,000 2 beds 2 baths 994 sqft 1010 Massachusetts Avenue Northwest, Unit 207, Washington, DC 20001": + - /url: /listing/1010-massachusetts-avenue-northwest-unit-207-washington-dc-42103697 + - generic: Compass Exclusive + - img "1010 Massachusetts Avenue Northwest, Unit 207" + - generic: $695,000 + - generic: 2 beds + - generic: 2 baths + - generic: 994 sqft + - generic: 1010 Massachusetts Avenue Northwest, Unit 207, Washington, DC 20001 + - link "1300 13th Street Northwest, Unit 905 $925,000 2 beds 2 baths 1,156 sqft 1300 13th Street Northwest, Unit 905, Washington, DC 20005": + - /url: /listing/1300-13th-street-northwest-unit-905-washington-dc-85950569 + - img "1300 13th Street Northwest, Unit 905" + - generic: $925,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,156 sqft + - generic: 1300 13th Street Northwest, Unit 905, Washington, DC 20005 + - link "1010 Massachusetts Avenue Northwest, Unit 1208 $824,900 2 beds 2 baths 1,050 sqft 1010 Massachusetts Avenue Northwest, Unit 1208, Washington, DC 20001": + - /url: /listing/massachusetts-avenue-northwest-washington-dc-04401553 + - img "1010 Massachusetts Avenue Northwest, Unit 1208" + - generic: $824,900 + - generic: 2 beds + - generic: 2 baths + - generic: 1,050 sqft + - generic: 1010 Massachusetts Avenue Northwest, Unit 1208, Washington, DC 20001 + - link "1440 N Street Northwest, Unit 205 $199,000 0 beds 1 baths 411 sqft 1440 N Street Northwest, Unit 205, Washington, DC 20005": + - /url: /listing/1440-n-street-northwest-unit-205-washington-dc-41655921 + - img "1440 N Street Northwest, Unit 205" + - generic: $199,000 + - generic: 0 beds + - generic: 1 baths + - generic: 411 sqft + - generic: 1440 N Street Northwest, Unit 205, Washington, DC 20005 + - link "Compass Exclusive 811 4th Street Northwest, Unit 1214 $439,000 — beds — baths 692 sqft 811 4th Street Northwest, Unit 1214, Washington, DC 20001": + - /url: /listing/811-4th-street-northwest-unit-1214-washington-dc-67375329 + - generic: Compass Exclusive + - img "811 4th Street Northwest, Unit 1214" + - generic: $439,000 + - generic: — beds + - generic: — baths + - generic: 692 sqft + - generic: 811 4th Street Northwest, Unit 1214, Washington, DC 20001 + - link "Compass Exclusive 1832 Corcoran Street Northwest $2,300,000 4 beds 3 baths 2,331 sqft 1832 Corcoran Street Northwest, Washington, DC 20009": + - /url: /listing/1832-corcoran-street-northwest-washington-dc-43598409 + - generic: Compass Exclusive + - img "1832 Corcoran Street Northwest" + - generic: $2,300,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,331 sqft + - generic: 1832 Corcoran Street Northwest, Washington, DC 20009 + - link "Compass Exclusive 1428 Q Street Northwest $1,599,000 4 beds 3 baths 3,036 sqft 1428 Q Street Northwest, Washington, DC 20009": + - /url: /listing/1428-q-street-northwest-washington-dc-18041457 + - generic: Compass Exclusive + - img "1428 Q Street Northwest" + - generic: $1,599,000 + - generic: 4 beds + - generic: 3 baths + - generic: 3,036 sqft + - generic: 1428 Q Street Northwest, Washington, DC 20009 + - link "Compass Exclusive 1443 Chapin Street Northwest, Unit 402 $895,000 2 beds 2 baths 1,188 sqft 1443 Chapin Street Northwest, Unit 402, Washington, DC 20009": + - /url: /listing/1443-chapin-street-northwest-unit-402-washington-dc-66950593 + - generic: Compass Exclusive + - img "1443 Chapin Street Northwest, Unit 402" + - generic: $895,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,188 sqft + - generic: 1443 Chapin Street Northwest, Unit 402, Washington, DC 20009 + - link "1113 Rhode Island Avenue Northwest $1,195,000 6 beds 3 baths 3,412 sqft 1113 Rhode Island Avenue Northwest, Washington, DC 20005": + - /url: /listing/1113-rhode-island-avenue-northwest-washington-dc-75758689 + - img "1113 Rhode Island Avenue Northwest" + - generic: $1,195,000 + - generic: 6 beds + - generic: 3 baths + - generic: 3,412 sqft + - generic: 1113 Rhode Island Avenue Northwest, Washington, DC 20005 + - link "Compass Exclusive 1317 Corcoran Street Northwest $2,200,000 — beds 0 baths 2,956 sqft 1317 Corcoran Street Northwest, Washington, DC 20009": + - /url: /listing/1317-corcoran-street-northwest-washington-dc-97642673 + - generic: Compass Exclusive + - img "1317 Corcoran Street Northwest" + - generic: $2,200,000 + - generic: — beds + - generic: 0 baths + - generic: 2,956 sqft + - generic: 1317 Corcoran Street Northwest, Washington, DC 20009 + - link "Compass Exclusive 1003 P Street Northwest $1,600,000 4 beds 4 baths 2,140 sqft 1003 P Street Northwest, Washington, DC 20001": + - /url: /listing/1003-p-street-northwest-washington-dc-61442889 + - generic: Compass Exclusive + - img "1003 P Street Northwest" + - generic: $1,600,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,140 sqft + - generic: 1003 P Street Northwest, Washington, DC 20001 + - link "Compass Exclusive 238 14th Street Southeast $949,000 — beds — baths 1,772 sqft 238 14th Street Southeast, Washington, DC 20003": + - /url: /listing/238-14th-street-southeast-washington-dc-45120369 + - generic: Compass Exclusive + - img "238 14th Street Southeast" + - generic: $949,000 + - generic: — beds + - generic: — baths + - generic: 1,772 sqft + - generic: 238 14th Street Southeast, Washington, DC 20003 + - link "Compass Exclusive 3515 Hertford Place Northwest, Unit 32 $395,000 1 beds 1 baths 627 sqft 3515 Hertford Place Northwest, Unit 32, Washington, DC 20010": + - /url: /listing/3515-hertford-place-northwest-unit-32-washington-dc-51904881 + - generic: Compass Exclusive + - img "3515 Hertford Place Northwest, Unit 32" + - generic: $395,000 + - generic: 1 beds + - generic: 1 baths + - generic: 627 sqft + - generic: 3515 Hertford Place Northwest, Unit 32, Washington, DC 20010 + - link "Compass Exclusive 4611 43rd Place Northwest $2,249,000 5 beds 5 baths 3,522 sqft 4611 43rd Place Northwest, Washington, DC 20016": + - /url: /listing/4611-43rd-place-northwest-washington-dc-54638913 + - generic: Compass Exclusive + - img "4611 43rd Place Northwest" + - generic: $2,249,000 + - generic: 5 beds + - generic: 5 baths + - generic: 3,522 sqft + - generic: 4611 43rd Place Northwest, Washington, DC 20016 + - link "Compass Exclusive 2123 California Street Northwest, Unit D5 $775,000 2 beds 2 baths 1,073 sqft 2123 California Street Northwest, Unit D5, Washington, DC 20008": + - /url: /listing/2123-california-street-northwest-unit-d5-washington-dc-81697025 + - generic: Compass Exclusive + - img "2123 California Street Northwest, Unit D5" + - generic: $775,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,073 sqft + - generic: 2123 California Street Northwest, Unit D5, Washington, DC 20008 + - link "Compass Exclusive 228 9th Street Southeast $3,849,000 5 beds 5 baths 4,801 sqft 228 9th Street Southeast, Washington, DC 20003": + - /url: /listing/228-9th-street-southeast-washington-dc-98962857 + - generic: Compass Exclusive + - img "228 9th Street Southeast" + - generic: $3,849,000 + - generic: 5 beds + - generic: 5 baths + - generic: 4,801 sqft + - generic: 228 9th Street Southeast, Washington, DC 20003 + - link "Compass Exclusive 4600 Connecticut Avenue Northwest, Unit 717 $243,000 — beds — baths 577 sqft 4600 Connecticut Avenue Northwest, Unit 717, Washington, DC 20008": + - /url: /listing/4600-connecticut-avenue-northwest-unit-717-washington-dc-91447953 + - generic: Compass Exclusive + - img "4600 Connecticut Avenue Northwest, Unit 717" + - generic: $243,000 + - generic: — beds + - generic: — baths + - generic: 577 sqft + - generic: 4600 Connecticut Avenue Northwest, Unit 717, Washington, DC 20008 + - link "Compass Exclusive 1614 Kilbourne Place Northwest, Unit 2 $1,275,000 3 beds 3 baths 1,922 sqft 1614 Kilbourne Place Northwest, Unit 2, Washington, DC 20010": + - /url: /listing/1614-kilbourne-place-northwest-unit-2-washington-dc-78468961 + - generic: Compass Exclusive + - img "1614 Kilbourne Place Northwest, Unit 2" + - generic: $1,275,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,922 sqft + - generic: 1614 Kilbourne Place Northwest, Unit 2, Washington, DC 20010 + - link "Compass Exclusive 3514 34th Street Northwest $1,450,000 3 beds 4 baths — sqft 3514 34th Street Northwest, Washington, DC 20008": + - /url: /listing/3514-34th-street-northwest-washington-dc-69305881 + - generic: Compass Exclusive + - img "3514 34th Street Northwest" + - generic: $1,450,000 + - generic: 3 beds + - generic: 4 baths + - generic: — sqft + - generic: 3514 34th Street Northwest, Washington, DC 20008 + - link "Compass Exclusive 3601 Connecticut Avenue Northwest, Unit 612 $509,000 2 beds — baths 950 sqft 3601 Connecticut Avenue Northwest, Unit 612, Washington, DC 20008": + - /url: /listing/3601-connecticut-avenue-northwest-unit-612-washington-dc-68803729 + - generic: Compass Exclusive + - img "3601 Connecticut Avenue Northwest, Unit 612" + - generic: $509,000 + - generic: 2 beds + - generic: — baths + - generic: 950 sqft + - generic: 3601 Connecticut Avenue Northwest, Unit 612, Washington, DC 20008 + - link "Compass Exclusive 3414 Porter Street Northwest $1,650,000 4 beds 3 baths 2,470 sqft 3414 Porter Street Northwest, Washington, DC 20016": + - /url: /listing/3414-porter-street-northwest-washington-dc-24573065 + - generic: Compass Exclusive + - img "3414 Porter Street Northwest" + - generic: $1,650,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,470 sqft + - generic: 3414 Porter Street Northwest, Washington, DC 20016 + - link "Compass Exclusive 3707 Military Road Northwest $2,200,000 6 beds 5 baths 4,345 sqft 3707 Military Road Northwest, Washington, DC 20015": + - /url: /listing/3707-military-road-northwest-washington-dc-78946129 + - generic: Compass Exclusive + - img "3707 Military Road Northwest" + - generic: $2,200,000 + - generic: 6 beds + - generic: 5 baths + - generic: 4,345 sqft + - generic: 3707 Military Road Northwest, Washington, DC 20015 + - link "2120 Vermont Avenue Northwest, Unit 123 $665,000 3 beds 2 baths 1,292 sqft 2120 Vermont Avenue Northwest, Unit 123, Washington, DC 20001": + - /url: /listing/2120-vermont-avenue-northwest-unit-123-washington-dc-30986649 + - img "2120 Vermont Avenue Northwest, Unit 123" + - generic: $665,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,292 sqft + - generic: 2120 Vermont Avenue Northwest, Unit 123, Washington, DC 20001 + - link "Compass Exclusive Address Upon Request $725,000 2 beds 2.5 baths 1,225 sqft Address Upon Request, Washington, DC 20001": + - /url: /listing/address-upon-request-washington-dc-68659849 + - generic: Compass Exclusive + - img "Address Upon Request" + - generic: $725,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,225 sqft + - generic: Address Upon Request, Washington, DC 20001 + - link "Compass Exclusive K Street Southeast $749,000 2 beds 2.5 baths 1,313 sqft K Street Southeast, Washington, DC 20003": + - /url: /listing/k-street-southeast-washington-dc-29157649 + - generic: Compass Exclusive + - img "K Street Southeast" + - generic: $749,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,313 sqft + - generic: K Street Southeast, Washington, DC 20003 + - link "Compass Exclusive 3206 Morrison Street Northwest $3,150,000 5 beds 5.5 baths 5,000 sqft 3206 Morrison Street Northwest, Washington, DC 20015": + - /url: /listing/3206-morrison-street-northwest-washington-dc-74603969 + - generic: Compass Exclusive + - img "3206 Morrison Street Northwest" + - generic: $3,150,000 + - generic: 5 beds + - generic: 5.5 baths + - generic: 5,000 sqft + - generic: 3206 Morrison Street Northwest, Washington, DC 20015 + - link "Compass Exclusive 520 N Street Southwest, Unit S622 $274,900 1 beds 1 baths 591 sqft 520 N Street Southwest, Unit S622, Washington, DC 20024": + - /url: /listing/520-n-street-southwest-unit-s622-washington-dc-60161193 + - generic: Compass Exclusive + - img "520 N Street Southwest, Unit S622" + - generic: $274,900 + - generic: 1 beds + - generic: 1 baths + - generic: 591 sqft + - generic: 520 N Street Southwest, Unit S622, Washington, DC 20024 +- contentinfo: + - button "Company": + - text: Company + - generic: + + - button "Explore": + - text: Explore + - generic: + + - heading "Mobile Apps" [level=2] + - link "Compass iOS App": + - /url: https://itunes.apple.com/app/id692766504 + - img "Compass iOS App" + - link "Compass Android App": + - /url: https://play.google.com/store/apps/details?id=com.compass.compass + - img "Compass Android App" + - link "Instagram": + - /url: https://instagram.com/compass/ + - text: ◎ + - link "Facebook": + - /url: https://facebook.com/compass/ + - text: f + - link "X": + - /url: https://x.com/compass/ + - text: 𝕏 + - paragraph: © 2026 Compass mirror — WebHarbor benchmark site. Not affiliated with Compass, Inc. Listing information is a fixed snapshot; availability may have changed. + - paragraph: Account actions, saved homes, collections and tour requests stay in this local environment. They are not sent to Compass agents. + - paragraph: Links marked ↗ open external websites. Mortgage, brokerage recruitment, new development marketing and corporate services are provided on their original websites, outside this environment. + - paragraph: COMPASS and the Compass logo are trademarks of Compass, Inc. + - paragraph: + - link "Help": + - /url: /help + - text: · + - link "About this environment": + - /url: /about \ No newline at end of file diff --git a/sites/compass/docs/visual-review/home/task17/observations/004-before.txt b/sites/compass/docs/visual-review/home/task17/observations/004-before.txt new file mode 100644 index 00000000..d55320ca --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/observations/004-before.txt @@ -0,0 +1,2704 @@ +- link "Skip to content": + - /url: "#main-content" +- banner: + - button "Open navigation": ☰ + - link "Compass": + - /url: / + - img "Compass" + - link "Register": + - /url: /register + - generic: / + - link "Sign In": + - /url: /login +- main: + - heading "All listings" [level=1] + - searchbox "Search terms" + - generic: Listing status + - combobox "Listing status": + - option "Any status" + - option "For sale" [selected] + - option "For rent" + - option "Sold" + - option "Closed" + - option "Rented" + - generic: Home type + - combobox "Home type": + - option "All home types" [selected] + - option "Single Family" + - option "Condo" + - option "Co-op" + - option "Townhouse" + - option "Multi-Family" + - option "Apartment" + - option "Rental" + - option "Land" + - option "Office" + - option "Mixed Use" + - option "Other" + - generic: Min beds + - combobox "Min beds": + - option "Any beds" [selected] + - option "1+" + - option "2+" + - option "3+" + - option "4+" + - option "5+" + - generic: Max price + - spinbutton "Max price" + - button "Filters" + - button "Search" + - generic: Sort by + - combobox "Sort by": + - option "Relevance" [selected] + - option "Newest" + - 'option "Price: low to high"' + - 'option "Price: high to low"' + - option "Bedrooms" + - option "Square feet" + - 'option "$/sqft: low to high"' + - 'option "$/sqft: high to low"' + - generic: 303 results. + - link "Compass Exclusive 425 West 24th Street, Unit 1F $1,325,000 2 beds 2 baths 1,200 sqft 425 West 24th Street, Unit 1F, New York, NY 10011": + - /url: /listing/425-west-24th-street-unit-1f-new-york-ny-47919969 + - generic: Compass Exclusive + - img "425 West 24th Street, Unit 1F" + - generic: $1,325,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,200 sqft + - generic: 425 West 24th Street, Unit 1F, New York, NY 10011 + - link "400 Lincoln Place, Unit 2B $500,000 — beds — baths — sqft 400 Lincoln Place, Unit 2B, New York, NY 11238": + - /url: /listing/400-lincoln-place-unit-2b-new-york-ny-40815033 + - img "400 Lincoln Place, Unit 2B" + - generic: $500,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 400 Lincoln Place, Unit 2B, New York, NY 11238 + - link "391 3rd Street, Unit 1 $1,295,000 2 beds — baths — sqft 391 3rd Street, Unit 1, New York, NY 11215": + - /url: /listing/391-3rd-street-unit-1-new-york-ny-82456857 + - img "391 3rd Street, Unit 1" + - generic: $1,295,000 + - generic: 2 beds + - generic: — baths + - generic: — sqft + - generic: 391 3rd Street, Unit 1, New York, NY 11215 + - link "150 Joralemon Street, Unit 7A $1,250,000 2 beds 1 baths — sqft 150 Joralemon Street, Unit 7A, Brooklyn, NY 11201": + - /url: /listing/150-joralemon-street-unit-7a-new-york-ny-96805081 + - img "150 Joralemon Street, Unit 7A" + - generic: $1,250,000 + - generic: 2 beds + - generic: 1 baths + - generic: — sqft + - generic: 150 Joralemon Street, Unit 7A, Brooklyn, NY 11201 + - link "Pending 160 Columbia Heights, Unit 10F $2,195,000 2 beds 2 baths — sqft 160 Columbia Heights, Unit 10F, Brooklyn, NY 11201": + - /url: /listing/160-columbia-heights-unit-10f-new-york-ny-65591129 + - generic: Pending + - img "160 Columbia Heights, Unit 10F" + - generic: $2,195,000 + - generic: 2 beds + - generic: 2 baths + - generic: — sqft + - generic: 160 Columbia Heights, Unit 10F, Brooklyn, NY 11201 + - link "Pending 58 Remsen Street, Unit 1R $2,250,000 2 beds 1.5 baths — sqft 58 Remsen Street, Unit 1R, Brooklyn, NY 11201": + - /url: /listing/58-remsen-street-unit-1r-new-york-ny-19465409 + - generic: Pending + - img "58 Remsen Street, Unit 1R" + - generic: $2,250,000 + - generic: 2 beds + - generic: 1.5 baths + - generic: — sqft + - generic: 58 Remsen Street, Unit 1R, Brooklyn, NY 11201 + - link "Pending 130 Prospect Place, Unit 1 $1,495,000 2 beds 2 baths 1,200 sqft 130 Prospect Place, Unit 1, Brooklyn, NY 11217": + - /url: /listing/130-prospect-place-unit-1-new-york-ny-78987185 + - generic: Pending + - img "130 Prospect Place, Unit 1" + - generic: $1,495,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,200 sqft + - generic: 130 Prospect Place, Unit 1, Brooklyn, NY 11217 + - link "110 Hoyt Street, Unit 1 $975,000 — beds — baths 753 sqft 110 Hoyt Street, Unit 1, New York, NY 11217": + - /url: /listing/110-hoyt-street-unit-1-new-york-ny-87729625 + - img "110 Hoyt Street, Unit 1" + - generic: $975,000 + - generic: — beds + - generic: — baths + - generic: 753 sqft + - generic: 110 Hoyt Street, Unit 1, New York, NY 11217 + - link "21 Monroe Place, Unit 5R $765,000 — beds — baths — sqft 21 Monroe Place, Unit 5R, New York, NY 11201": + - /url: /listing/21-monroe-place-unit-5r-new-york-ny-19536305 + - img "21 Monroe Place, Unit 5R" + - generic: $765,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 21 Monroe Place, Unit 5R, New York, NY 11201 + - link "115 Spring Street, Unit 2 $6,500,000 3 beds 3 baths — sqft 115 Spring Street, Unit 2, New York, NY 10012": + - /url: /listing/115-spring-street-unit-2-new-york-ny-38846297 + - img "115 Spring Street, Unit 2" + - generic: $6,500,000 + - generic: 3 beds + - generic: 3 baths + - generic: — sqft + - generic: 115 Spring Street, Unit 2, New York, NY 10012 + - link "118 Perry Street, Unit J45 $575,000 — beds — baths — sqft 118 Perry Street, Unit J45, New York, NY 10014": + - /url: /listing/118-perry-street-unit-j45-new-york-ny-45254425 + - img "118 Perry Street, Unit J45" + - generic: $575,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 118 Perry Street, Unit J45, New York, NY 10014 + - link "21 South Portland Avenue, Unit 2F $775,000 — beds — baths — sqft 21 South Portland Avenue, Unit 2F, New York, NY 11217": + - /url: /listing/21-south-portland-avenue-unit-2f-new-york-ny-07712233 + - img "21 South Portland Avenue, Unit 2F" + - generic: $775,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 21 South Portland Avenue, Unit 2F, New York, NY 11217 + - link "Pending 150 Charles Street, Unit M10 $21,500,000 4 beds 4.5 baths 5,612 sqft 150 Charles Street, Unit M10, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-m10-new-york-ny-81286569 + - generic: Pending + - img "150 Charles Street, Unit M10" + - generic: $21,500,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 5,612 sqft + - generic: 150 Charles Street, Unit M10, Manhattan, NY 10014 + - link "Pending 195 Willoughby Avenue, Unit 1517/1518 $1,125,000 2 beds 2 baths 1,217 sqft 195 Willoughby Avenue, Unit 1517/1518, Brooklyn, NY 11205": + - /url: /listing/195-willoughby-avenue-unit-1517-1518-new-york-ny-05751361 + - generic: Pending + - img "195 Willoughby Avenue, Unit 1517/1518" + - generic: $1,125,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,217 sqft + - generic: 195 Willoughby Avenue, Unit 1517/1518, Brooklyn, NY 11205 + - link "20 East 9th Street, Unit 4T $799,000 1 beds 1 baths — sqft 20 East 9th Street, Unit 4T, Manhattan, NY 10003": + - /url: /listing/20-east-9th-street-unit-4t-new-york-ny-10648129 + - img "20 East 9th Street, Unit 4T" + - generic: $799,000 + - generic: 1 beds + - generic: 1 baths + - generic: — sqft + - generic: 20 East 9th Street, Unit 4T, Manhattan, NY 10003 + - link "Pending 634 Washington Street, Unit 4B $1,750,000 3 beds 1.5 baths — sqft 634 Washington Street, Unit 4B, Manhattan, NY 10014": + - /url: /listing/634-washington-street-unit-4b-new-york-ny-46018681 + - generic: Pending + - img "634 Washington Street, Unit 4B" + - generic: $1,750,000 + - generic: 3 beds + - generic: 1.5 baths + - generic: — sqft + - generic: 634 Washington Street, Unit 4B, Manhattan, NY 10014 + - link "195 Willoughby Avenue, Unit 1518 $700,000 — beds — baths — sqft 195 Willoughby Avenue, Unit 1518, New York, NY 11205": + - /url: /listing/195-willoughby-avenue-unit-1518-new-york-ny-22490329 + - img "195 Willoughby Avenue, Unit 1518" + - generic: $700,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 195 Willoughby Avenue, Unit 1518, New York, NY 11205 + - link "787 Carroll Street $10,250,000 5 beds 4 baths 6,664 sqft 787 Carroll Street, New York, NY 11215": + - /url: /listing/787-carroll-street-new-york-ny-07909369 + - img "787 Carroll Street" + - generic: $10,250,000 + - generic: 5 beds + - generic: 4 baths + - generic: 6,664 sqft + - generic: 787 Carroll Street, New York, NY 11215 + - link "195 Willoughby Avenue, Unit 1517 $425,000 — beds — baths — sqft 195 Willoughby Avenue, Unit 1517, New York, NY 11205": + - /url: /listing/195-willoughby-avenue-unit-1517-new-york-ny-77007633 + - img "195 Willoughby Avenue, Unit 1517" + - generic: $425,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 195 Willoughby Avenue, Unit 1517, New York, NY 11205 + - link "Pending 270 5th Street, Unit 4C $1,350,000 2 beds 1 baths — sqft 270 5th Street, Unit 4C, Brooklyn, NY 11215": + - /url: /listing/270-5th-street-unit-4c-new-york-ny-15444585 + - generic: Pending + - img "270 5th Street, Unit 4C" + - generic: $1,350,000 + - generic: 2 beds + - generic: 1 baths + - generic: — sqft + - generic: 270 5th Street, Unit 4C, Brooklyn, NY 11215 + - link "228 West 21st Street, Unit 2 $1,800,000 2 beds 2 baths — sqft 228 West 21st Street, Unit 2, New York, NY 10011": + - /url: /listing/228-west-21st-street-unit-2-new-york-ny-06805097 + - img "228 West 21st Street, Unit 2" + - generic: $1,800,000 + - generic: 2 beds + - generic: 2 baths + - generic: — sqft + - generic: 228 West 21st Street, Unit 2, New York, NY 10011 + - link "New 230 East 15th Street, Unit 9B $550,000 — beds — baths 600 sqft 230 East 15th Street, Unit 9B, New York, NY 10003": + - /url: /listing/230-east-15th-street-unit-9b-new-york-ny-22022945 + - generic: New + - img "230 East 15th Street, Unit 9B" + - generic: $550,000 + - generic: — beds + - generic: — baths + - generic: 600 sqft + - generic: 230 East 15th Street, Unit 9B, New York, NY 10003 + - link "470 West 24th Street, Unit 11G $1,150,000 — beds — baths — sqft 470 West 24th Street, Unit 11G, New York, NY 10011": + - /url: /listing/470-west-24th-street-unit-11g-new-york-ny-85729881 + - img "470 West 24th Street, Unit 11G" + - generic: $1,150,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 470 West 24th Street, Unit 11G, New York, NY 10011 + - link "155 West 20th Street, Unit 6H $895,000 — beds — baths 850 sqft 155 West 20th Street, Unit 6H, New York, NY 10011": + - /url: /listing/155-west-20th-street-unit-6h-new-york-ny-71890545 + - img "155 West 20th Street, Unit 6H" + - generic: $895,000 + - generic: — beds + - generic: — baths + - generic: 850 sqft + - generic: 155 West 20th Street, Unit 6H, New York, NY 10011 + - link "Pending 1 Northside Piers, Unit 24J $2,075,000 2 beds 2 baths 1,064 sqft 1 Northside Piers, Unit 24J, Brooklyn, NY 11249": + - /url: /listing/1-northside-piers-unit-24j-new-york-ny-95518345 + - generic: Pending + - img "1 Northside Piers, Unit 24J" + - generic: $2,075,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,064 sqft + - generic: 1 Northside Piers, Unit 24J, Brooklyn, NY 11249 + - link "Pending 150 Charles Street, Unit 3AS $8,995,000 3 beds 3.5 baths 2,461 sqft 150 Charles Street, Unit 3AS, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-3as-new-york-ny-85442145 + - generic: Pending + - img "150 Charles Street, Unit 3AS" + - generic: $8,995,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 2,461 sqft + - generic: 150 Charles Street, Unit 3AS, Manhattan, NY 10014 + - link "10 Quincy Street, Unit 2C $1,199,000 — beds — baths 730 sqft 10 Quincy Street, Unit 2C, New York, NY 11238": + - /url: /listing/10-quincy-street-unit-2c-new-york-ny-52220705 + - img "10 Quincy Street, Unit 2C" + - generic: $1,199,000 + - generic: — beds + - generic: — baths + - generic: 730 sqft + - generic: 10 Quincy Street, Unit 2C, New York, NY 11238 + - link "137 Putnam Avenue $2,499,000 5 beds 3.5 baths 2,753 sqft 137 Putnam Avenue, Brooklyn, NY 11238": + - /url: /listing/137-putnam-avenue-new-york-ny-69799641 + - img "137 Putnam Avenue" + - generic: $2,499,000 + - generic: 5 beds + - generic: 3.5 baths + - generic: 2,753 sqft + - generic: 137 Putnam Avenue, Brooklyn, NY 11238 + - link "389 Classon Avenue $3,995,000 4 beds 3 baths 2,565 sqft 389 Classon Avenue, New York, NY 11238": + - /url: /listing/389-classon-avenue-new-york-ny-70718105 + - img "389 Classon Avenue" + - generic: $3,995,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,565 sqft + - generic: 389 Classon Avenue, New York, NY 11238 + - link "479 Henry Street $9,950,000 5 beds 4 baths 4,800 sqft 479 Henry Street, New York, NY 11231": + - /url: /listing/479-henry-street-new-york-ny-19847793 + - img "479 Henry Street" + - generic: $9,950,000 + - generic: 5 beds + - generic: 4 baths + - generic: 4,800 sqft + - generic: 479 Henry Street, New York, NY 11231 + - link "669 Saint Marks Avenue, Unit 2B $1,799,000 3 beds 2.5 baths 1,285 sqft 669 Saint Marks Avenue, Unit 2B, Brooklyn, NY 11216": + - /url: /listing/669-saint-marks-avenue-unit-2b-new-york-ny-65073649 + - img "669 Saint Marks Avenue, Unit 2B" + - generic: $1,799,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,285 sqft + - generic: 669 Saint Marks Avenue, Unit 2B, Brooklyn, NY 11216 + - link "140-142 West End Avenue, Unit 30M $950,000 — beds — baths — sqft 140-142 West End Avenue, Unit 30M, New York, NY 10023": + - /url: /listing/140-142-west-end-avenue-unit-30m-new-york-ny-56723409 + - img "140-142 West End Avenue, Unit 30M" + - generic: $950,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 140-142 West End Avenue, Unit 30M, New York, NY 10023 + - link "Compass Exclusive 1718 Occidental Boulevard $1,299,000 2 beds 1 baths 1,113 sqft 1718 Occidental Boulevard, Los Angeles, CA 90026": + - /url: /listing/1718-occidental-boulevard-los-angeles-ca-11068225 + - generic: Compass Exclusive + - img "1718 Occidental Boulevard" + - generic: $1,299,000 + - generic: 2 beds + - generic: 1 baths + - generic: 1,113 sqft + - generic: 1718 Occidental Boulevard, Los Angeles, CA 90026 + - link "Compass Exclusive Undisclosed Address $1,995,000 3 beds 2 baths 1,688 sqft Undisclosed Address, Los Angeles, CA 90066": + - /url: /listing/undisclosed-address-los-angeles-ca-12555729 + - generic: Compass Exclusive + - img "Undisclosed Address" + - generic: $1,995,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,688 sqft + - generic: Undisclosed Address, Los Angeles, CA 90066 + - link "Compass Exclusive 1915 Malcolm Avenue, Unit 301 $1,138,000 3 beds 2 baths 1,511 sqft 1915 Malcolm Avenue, Unit 301, Los Angeles, CA 90025": + - /url: /listing/1915-malcolm-avenue-unit-301-los-angeles-ca-15997937 + - generic: Compass Exclusive + - img "1915 Malcolm Avenue, Unit 301" + - generic: $1,138,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,511 sqft + - generic: 1915 Malcolm Avenue, Unit 301, Los Angeles, CA 90025 + - link "Compass Exclusive 8550 Ridpath Drive $2,100,000 3 beds 2 baths 1,596 sqft 8550 Ridpath Drive, Los Angeles, CA 90046": + - /url: /listing/8550-ridpath-drive-los-angeles-ca-87131737 + - generic: Compass Exclusive + - img "8550 Ridpath Drive" + - generic: $2,100,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,596 sqft + - generic: 8550 Ridpath Drive, Los Angeles, CA 90046 + - link "Compass Exclusive Undisclosed Address $8,995,000 5 beds 7 baths 6,069 sqft Undisclosed Address, Los Angeles, CA 90004": + - /url: /listing/undisclosed-address-los-angeles-ca-01703001 + - generic: Compass Exclusive + - img "Undisclosed Address" + - generic: $8,995,000 + - generic: 5 beds + - generic: 7 baths + - generic: 6,069 sqft + - generic: Undisclosed Address, Los Angeles, CA 90004 + - link "Compass Exclusive 5226 Village Green $685,000 2 beds — baths 818 sqft 5226 Village Green, Los Angeles, CA 90016": + - /url: /listing/5226-village-green-los-angeles-ca-69965641 + - generic: Compass Exclusive + - img "5226 Village Green" + - generic: $685,000 + - generic: 2 beds + - generic: — baths + - generic: 818 sqft + - generic: 5226 Village Green, Los Angeles, CA 90016 + - link "3001 Passmore Drive $3,950,000 6 beds 5.5 baths 4,416 sqft 3001 Passmore Drive, Los Angeles, CA 90068": + - /url: /listing/undisclosed-address-los-angeles-ca-93436001 + - img "3001 Passmore Drive" + - generic: $3,950,000 + - generic: 6 beds + - generic: 5.5 baths + - generic: 4,416 sqft + - generic: 3001 Passmore Drive, Los Angeles, CA 90068 + - link "5516 Village Green $585,000 2 beds 1 baths 826 sqft 5516 Village Green, Los Angeles, CA 90016": + - /url: /listing/5516-village-green-los-angeles-ca-20666961 + - img "5516 Village Green" + - generic: $585,000 + - generic: 2 beds + - generic: 1 baths + - generic: 826 sqft + - generic: 5516 Village Green, Los Angeles, CA 90016 + - link "Compass Exclusive 11307 Morrison Street $989,000 3 beds 3.5 baths 1,676 sqft 11307 Morrison Street, North Hollywood, CA 91601": + - /url: /listing/11307-morrison-street-los-angeles-ca-83506497 + - generic: Compass Exclusive + - img "11307 Morrison Street" + - generic: $989,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 1,676 sqft + - generic: 11307 Morrison Street, North Hollywood, CA 91601 + - link "Compass Exclusive 248 North Glenroy Avenue $8,995,000 5 beds 6 baths 4,899 sqft 248 North Glenroy Avenue, Los Angeles, CA 90049": + - /url: /listing/248-north-glenroy-avenue-los-angeles-ca-38580513 + - generic: Compass Exclusive + - img "248 North Glenroy Avenue" + - generic: $8,995,000 + - generic: 5 beds + - generic: 6 baths + - generic: 4,899 sqft + - generic: 248 North Glenroy Avenue, Los Angeles, CA 90049 + - link "Compass Exclusive 417 Venice Way $2,799,000 4 beds 4 baths 3,154 sqft 417 Venice Way, Los Angeles, CA 90291": + - /url: /listing/417-venice-way-los-angeles-ca-28981633 + - generic: Compass Exclusive + - img "417 Venice Way" + - generic: $2,799,000 + - generic: 4 beds + - generic: 4 baths + - generic: 3,154 sqft + - generic: 417 Venice Way, Los Angeles, CA 90291 + - link "Compass Exclusive 6001 Carlton Way, Unit 106 $705,000 2 beds 2 baths 1,200 sqft 6001 Carlton Way, Unit 106, Los Angeles, CA 90028": + - /url: /listing/6001-carlton-way-unit-106-los-angeles-ca-99002433 + - generic: Compass Exclusive + - img "6001 Carlton Way, Unit 106" + - generic: $705,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,200 sqft + - generic: 6001 Carlton Way, Unit 106, Los Angeles, CA 90028 + - link "Compass Exclusive 8344 McConnell Avenue $3,495,000 5 beds 6 baths 3,128 sqft 8344 McConnell Avenue, Los Angeles, CA 90045": + - /url: /listing/8344-mcconnell-avenue-los-angeles-ca-87192249 + - generic: Compass Exclusive + - img "8344 McConnell Avenue" + - generic: $3,495,000 + - generic: 5 beds + - generic: 6 baths + - generic: 3,128 sqft + - generic: 8344 McConnell Avenue, Los Angeles, CA 90045 + - link "Compass Exclusive 928 Croft Avenue, Unit 303 $2,089,000 3 beds 3 baths 1,980 sqft 928 Croft Avenue, Unit 303, Los Angeles, CA 90069": + - /url: /listing/928-croft-avenue-unit-303-los-angeles-ca-69140937 + - generic: Compass Exclusive + - img "928 Croft Avenue, Unit 303" + - generic: $2,089,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,980 sqft + - generic: 928 Croft Avenue, Unit 303, Los Angeles, CA 90069 + - link "Compass Exclusive 13070 Kiyot Way $3,650,000 4 beds 4 baths 3,458 sqft 13070 Kiyot Way, Los Angeles, CA 90094": + - /url: /listing/13070-kiyot-way-los-angeles-ca-21194649 + - generic: Compass Exclusive + - img "13070 Kiyot Way" + - generic: $3,650,000 + - generic: 4 beds + - generic: 4 baths + - generic: 3,458 sqft + - generic: 13070 Kiyot Way, Los Angeles, CA 90094 + - link "Compass Exclusive 12765 Bluff Creek Drive, Unit 1 $3,150,000 4 beds 4 baths 2,674 sqft 12765 Bluff Creek Drive, Unit 1, Los Angeles, CA 90094": + - /url: /listing/12765-bluff-creek-drive-unit-1-los-angeles-ca-98362465 + - generic: Compass Exclusive + - img "12765 Bluff Creek Drive, Unit 1" + - generic: $3,150,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,674 sqft + - generic: 12765 Bluff Creek Drive, Unit 1, Los Angeles, CA 90094 + - link "1100 South Hope Street, Unit 1006 $535,000 1 beds 1 baths 1,007 sqft 1100 South Hope Street, Unit 1006, Los Angeles, CA 90015": + - /url: /listing/1100-south-hope-street-unit-1006-los-angeles-ca-91687721 + - img "1100 South Hope Street, Unit 1006" + - generic: $535,000 + - generic: 1 beds + - generic: 1 baths + - generic: 1,007 sqft + - generic: 1100 South Hope Street, Unit 1006, Los Angeles, CA 90015 + - link "Pending 13626 Shablow Avenue $739,000 3 beds 2 baths 1,068 sqft 13626 Shablow Avenue, Sylmar, CA 91342": + - /url: /listing/13626-shablow-avenue-los-angeles-ca-14835353 + - generic: Pending + - img "13626 Shablow Avenue" + - generic: $739,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,068 sqft + - generic: 13626 Shablow Avenue, Sylmar, CA 91342 + - link "Compass Exclusive 333 East Colden Avenue $450,000 — beds 0 baths — sqft 333 East Colden Avenue, Los Angeles, CA 90003": + - /url: /listing/333-east-colden-avenue-los-angeles-ca-77088801 + - generic: Compass Exclusive + - img "333 East Colden Avenue" + - generic: $450,000 + - generic: — beds + - generic: 0 baths + - generic: — sqft + - generic: 333 East Colden Avenue, Los Angeles, CA 90003 + - link "889 Francisco Street, Unit 1206 $998,000 2 beds 2.5 baths 1,489 sqft 889 Francisco Street, Unit 1206, Los Angeles, CA 90017": + - /url: /listing/889-francisco-street-unit-1206-los-angeles-ca-99006633 + - img "889 Francisco Street, Unit 1206" + - generic: $998,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,489 sqft + - generic: 889 Francisco Street, Unit 1206, Los Angeles, CA 90017 + - link "3536 1/2 Arroyo Seco Avenue $499,000 2 beds 2 baths 840 sqft 3536 1/2 Arroyo Seco Avenue, Los Angeles, CA 90065": + - /url: /listing/3536-1-2-arroyo-seco-avenue-los-angeles-ca-37515281 + - img "3536 1/2 Arroyo Seco Avenue" + - generic: $499,000 + - generic: 2 beds + - generic: 2 baths + - generic: 840 sqft + - generic: 3536 1/2 Arroyo Seco Avenue, Los Angeles, CA 90065 + - link "2050 North Las Palmas Avenue $1,850,000 3 beds 4 baths 1,830 sqft 2050 North Las Palmas Avenue, Los Angeles, CA 90068": + - /url: /listing/2050-north-las-palmas-avenue-los-angeles-ca-96276937 + - img "2050 North Las Palmas Avenue" + - generic: $1,850,000 + - generic: 3 beds + - generic: 4 baths + - generic: 1,830 sqft + - generic: 2050 North Las Palmas Avenue, Los Angeles, CA 90068 + - link "404 North Avenue 52 $1,150,000 3 beds 2 baths 1,124 sqft 404 North Avenue 52, Los Angeles, CA 90042": + - /url: /listing/404-north-avenue-52-los-angeles-ca-89227753 + - img "404 North Avenue 52" + - generic: $1,150,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,124 sqft + - generic: 404 North Avenue 52, Los Angeles, CA 90042 + - link "2267 Duane Street, Unit 3 $1,699,000 3 beds 4 baths 2,644 sqft 2267 Duane Street, Unit 3, Los Angeles, CA 90039": + - /url: /listing/2267-duane-street-unit-3-los-angeles-ca-07728865 + - img "2267 Duane Street, Unit 3" + - generic: $1,699,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,644 sqft + - generic: 2267 Duane Street, Unit 3, Los Angeles, CA 90039 + - link "9149 Hillsboro Drive $2,299,000 3 beds 2 baths 2,740 sqft 9149 Hillsboro Drive, Los Angeles, CA 90034": + - /url: /listing/9149-hillsboro-drive-los-angeles-ca-69721649 + - img "9149 Hillsboro Drive" + - generic: $2,299,000 + - generic: 3 beds + - generic: 2 baths + - generic: 2,740 sqft + - generic: 9149 Hillsboro Drive, Los Angeles, CA 90034 + - link "Pending 1215 Brockton Avenue, Unit 203 $949,000 2 beds 2 baths 1,581 sqft 1215 Brockton Avenue, Unit 203, Los Angeles, CA 90025": + - /url: /listing/1215-brockton-avenue-unit-203-los-angeles-ca-98411753 + - generic: Pending + - img "1215 Brockton Avenue, Unit 203" + - generic: $949,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,581 sqft + - generic: 1215 Brockton Avenue, Unit 203, Los Angeles, CA 90025 + - link "6374 Macal Place $1,495,000 2 beds 2 baths 1,532 sqft 6374 Macal Place, Los Angeles, CA 90068": + - /url: /listing/6374-macal-place-los-angeles-ca-76499777 + - img "6374 Macal Place" + - generic: $1,495,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,532 sqft + - generic: 6374 Macal Place, Los Angeles, CA 90068 + - link "Compass Exclusive 3310 Elizabeth Street $2,985,000 4 beds 4 baths 2,643 sqft 3310 Elizabeth Street, Miami, FL 33133": + - /url: /listing/3310-elizabeth-street-miami-fl-82744289 + - generic: Compass Exclusive + - img "3310 Elizabeth Street" + - generic: $2,985,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,643 sqft + - generic: 3310 Elizabeth Street, Miami, FL 33133 + - link "Compass Exclusive 3770 Kumquat Avenue $4,950,000 5 beds 6 baths 3,875 sqft 3770 Kumquat Avenue, Miami, FL 33133": + - /url: /listing/3770-kumquat-avenue-miami-fl-74731745 + - generic: Compass Exclusive + - img "3770 Kumquat Avenue" + - generic: $4,950,000 + - generic: 5 beds + - generic: 6 baths + - generic: 3,875 sqft + - generic: 3770 Kumquat Avenue, Miami, FL 33133 + - link "Compass Exclusive 1698 Tigertail Avenue $7,950,000 6 beds 7 baths 5,300 sqft 1698 Tigertail Avenue, Miami, FL 33133": + - /url: /listing/1698-tigertail-avenue-miami-fl-36067401 + - generic: Compass Exclusive + - img "1698 Tigertail Avenue" + - generic: $7,950,000 + - generic: 6 beds + - generic: 7 baths + - generic: 5,300 sqft + - generic: 1698 Tigertail Avenue, Miami, FL 33133 + - link "Compass Exclusive 9715 Southwest 89th Court $4,900,000 6 beds 7 baths 6,718 sqft 9715 Southwest 89th Court, Miami, FL 33176": + - /url: /listing/9715-southwest-89th-court-miami-fl-22349377 + - generic: Compass Exclusive + - img "9715 Southwest 89th Court" + - generic: $4,900,000 + - generic: 6 beds + - generic: 7 baths + - generic: 6,718 sqft + - generic: 9715 Southwest 89th Court, Miami, FL 33176 + - link "199 Caoba Court $13,995,000 5 beds 6.5 baths 5,342 sqft 199 Caoba Court, Coral Gables, FL 33143": + - /url: /listing/199-caoba-court-miami-fl-22699249 + - img "199 Caoba Court" + - generic: $13,995,000 + - generic: 5 beds + - generic: 6.5 baths + - generic: 5,342 sqft + - generic: 199 Caoba Court, Coral Gables, FL 33143 + - link "Compass Exclusive 2655 South Bayshore Drive, Unit 1801/02 $15,750,000 6 beds 7 baths 5,353 sqft 2655 South Bayshore Drive, Unit 1801/02, Miami, FL 33133": + - /url: /listing/2655-south-bayshore-drive-unit-1801-02-miami-fl-32879425 + - generic: Compass Exclusive + - img "2655 South Bayshore Drive, Unit 1801/02" + - generic: $15,750,000 + - generic: 6 beds + - generic: 7 baths + - generic: 5,353 sqft + - generic: 2655 South Bayshore Drive, Unit 1801/02, Miami, FL 33133 + - link "Compass Exclusive 17145 Southwest 90th Avenue $1,650,000 3 beds 2 baths 1,514 sqft 17145 Southwest 90th Avenue, Miami, FL 33157": + - /url: /listing/17145-southwest-90th-avenue-miami-fl-57531361 + - generic: Compass Exclusive + - img "17145 Southwest 90th Avenue" + - generic: $1,650,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,514 sqft + - generic: 17145 Southwest 90th Avenue, Miami, FL 33157 + - link "Compass Exclusive 6716 San Vicente Street $8,250,000 6 beds — baths — sqft 6716 San Vicente Street, Miami, FL 33146": + - /url: /listing/6716-san-vicente-street-miami-fl-45424521 + - generic: Compass Exclusive + - img "6716 San Vicente Street" + - generic: $8,250,000 + - generic: 6 beds + - generic: — baths + - generic: — sqft + - generic: 6716 San Vicente Street, Miami, FL 33146 + - link "Compass Exclusive 1247 Anastasia Avenue $2,500,000 3 beds 4 baths 2,525 sqft 1247 Anastasia Avenue, Miami, FL 33134": + - /url: /listing/1247-anastasia-avenue-miami-fl-83144857 + - generic: Compass Exclusive + - img "1247 Anastasia Avenue" + - generic: $2,500,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,525 sqft + - generic: 1247 Anastasia Avenue, Miami, FL 33134 + - link "Compass Exclusive 170 Northwest 44th Street $2,749,000 4 beds 4.5 baths — sqft 170 Northwest 44th Street, Miami, FL 33127": + - /url: /listing/170-northwest-44th-street-miami-fl-16681681 + - generic: Compass Exclusive + - img "170 Northwest 44th Street" + - generic: $2,749,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: — sqft + - generic: 170 Northwest 44th Street, Miami, FL 33127 + - link "Compass Exclusive 8365 Southwest 163rd Street $1,299,000 4 beds 3 baths 4,042 sqft 8365 Southwest 163rd Street, Miami, FL 33157": + - /url: /listing/8365-southwest-163rd-street-miami-fl-15682265 + - generic: Compass Exclusive + - img "8365 Southwest 163rd Street" + - generic: $1,299,000 + - generic: 4 beds + - generic: 3 baths + - generic: 4,042 sqft + - generic: 8365 Southwest 163rd Street, Miami, FL 33157 + - link "Compass Exclusive 8768 Southwest 62nd Court $3,900,000 5 beds 4 baths 4,154 sqft 8768 Southwest 62nd Court, Miami, FL 33156": + - /url: /listing/8768-southwest-62nd-court-miami-fl-15361945 + - generic: Compass Exclusive + - img "8768 Southwest 62nd Court" + - generic: $3,900,000 + - generic: 5 beds + - generic: 4 baths + - generic: 4,154 sqft + - generic: 8768 Southwest 62nd Court, Miami, FL 33156 + - link "Compass Exclusive 79 Southwest 12th Street, Unit 2201S $680,000 2 beds 2 baths 1,099 sqft 79 Southwest 12th Street, Unit 2201S, Miami, FL 33130": + - /url: /listing/79-southwest-12th-street-unit-2201s-miami-fl-99869049 + - generic: Compass Exclusive + - img "79 Southwest 12th Street, Unit 2201S" + - generic: $680,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,099 sqft + - generic: 79 Southwest 12th Street, Unit 2201S, Miami, FL 33130 + - link "Compass Exclusive Rockwell Island $5,000,000 4 beds 4.5 baths 4,588 sqft Rockwell Island, Miami, FL 33133": + - /url: /listing/rockwell-island-miami-fl-94376561 + - generic: Compass Exclusive + - img "Rockwell Island" + - generic: $5,000,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 4,588 sqft + - generic: Rockwell Island, Miami, FL 33133 + - link "Compass Exclusive 3770-3792 Kumquat Avenue $6,495,000 5 beds 6 baths 3,875 sqft 3770-3792 Kumquat Avenue, Miami, FL 33133": + - /url: /listing/3770-3792-kumquat-avenue-miami-fl-58538897 + - generic: Compass Exclusive + - img "3770-3792 Kumquat Avenue" + - generic: $6,495,000 + - generic: 5 beds + - generic: 6 baths + - generic: 3,875 sqft + - generic: 3770-3792 Kumquat Avenue, Miami, FL 33133 + - link "Compass Exclusive 8610 Southwest 83rd Street $1,275,000 4 beds 3 baths 2,660 sqft 8610 Southwest 83rd Street, Miami, FL 33143": + - /url: /listing/8610-southwest-83rd-street-miami-fl-41596097 + - generic: Compass Exclusive + - img "8610 Southwest 83rd Street" + - generic: $1,275,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,660 sqft + - generic: 8610 Southwest 83rd Street, Miami, FL 33143 + - link "88 Southwest 7th Street, Unit PH4303 $5,799,900 3 beds 4.5 baths 3,115 sqft 88 Southwest 7th Street, Unit PH4303, Miami, FL 33130": + - /url: /listing/88-southwest-7th-street-unit-ph4303-miami-fl-12289809 + - img "88 Southwest 7th Street, Unit PH4303" + - generic: $5,799,900 + - generic: 3 beds + - generic: 4.5 baths + - generic: 3,115 sqft + - generic: 88 Southwest 7th Street, Unit PH4303, Miami, FL 33130 + - link "Compass Exclusive Rockwell Island $6,532,000 6 beds 0 baths 6,501 sqft Rockwell Island, Miami, FL 33133": + - /url: /listing/rockwell-island-miami-fl-97872137 + - generic: Compass Exclusive + - img "Rockwell Island" + - generic: $6,532,000 + - generic: 6 beds + - generic: 0 baths + - generic: 6,501 sqft + - generic: Rockwell Island, Miami, FL 33133 + - link "6228 Northwest 4th Avenue $609,900 — beds — baths 1,639 sqft 6228 Northwest 4th Avenue, Miami, FL 33150": + - /url: /listing/6228-northwest-4th-avenue-miami-fl-18454937 + - img "6228 Northwest 4th Avenue" + - generic: $609,900 + - generic: — beds + - generic: — baths + - generic: 1,639 sqft + - generic: 6228 Northwest 4th Avenue, Miami, FL 33150 + - link "New 8430 Southwest 98th Street $3,995,000 5 beds 4.5 baths 5,289 sqft 8430 Southwest 98th Street, Miami, FL 33156": + - /url: /listing/8430-southwest-98th-street-miami-fl-70937905 + - generic: New + - img "8430 Southwest 98th Street" + - generic: $3,995,000 + - generic: 5 beds + - generic: 4.5 baths + - generic: 5,289 sqft + - generic: 8430 Southwest 98th Street, Miami, FL 33156 + - link "Compass Exclusive 3341-3433 Southwest 16th Terrace $1,798,000 6 beds 6 baths 3,704 sqft 3341-3433 Southwest 16th Terrace, Miami, FL 33145": + - /url: /listing/3341-3433-southwest-16th-terrace-miami-fl-57747233 + - generic: Compass Exclusive + - img "3341-3433 Southwest 16th Terrace" + - generic: $1,798,000 + - generic: 6 beds + - generic: 6 baths + - generic: 3,704 sqft + - generic: 3341-3433 Southwest 16th Terrace, Miami, FL 33145 + - link "Compass Exclusive 229 Ridgewood Road $8,888,000 6 beds 7 baths 5,437 sqft 229 Ridgewood Road, Miami, FL 33133": + - /url: /listing/229-ridgewood-road-miami-fl-81418745 + - generic: Compass Exclusive + - img "229 Ridgewood Road" + - generic: $8,888,000 + - generic: 6 beds + - generic: 7 baths + - generic: 5,437 sqft + - generic: 229 Ridgewood Road, Miami, FL 33133 + - link "Compass Exclusive 485 Brickell Avenue, Unit 1909 $875,000 2 beds 1 baths 953 sqft 485 Brickell Avenue, Unit 1909, Miami, FL 33131": + - /url: /listing/485-brickell-avenue-unit-1909-miami-fl-05393601 + - generic: Compass Exclusive + - img "485 Brickell Avenue, Unit 1909" + - generic: $875,000 + - generic: 2 beds + - generic: 1 baths + - generic: 953 sqft + - generic: 485 Brickell Avenue, Unit 1909, Miami, FL 33131 + - link "808 Brickell Key Drive, Unit 408 $1,975,000 2 beds 2.5 baths 2,093 sqft 808 Brickell Key Drive, Unit 408, Miami, FL 33131": + - /url: /listing/808-brickell-key-drive-unit-408-miami-fl-22977241 + - img "808 Brickell Key Drive, Unit 408" + - generic: $1,975,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 2,093 sqft + - generic: 808 Brickell Key Drive, Unit 408, Miami, FL 33131 + - link "Compass Exclusive 480 Northeast 31st Street, Unit PH5402 $4,500,000 3 beds 4.5 baths 2,112 sqft 480 Northeast 31st Street, Unit PH5402, Miami, FL 33137": + - /url: /listing/480-northeast-31st-street-unit-ph5402-miami-fl-31923921 + - generic: Compass Exclusive + - img "480 Northeast 31st Street, Unit PH5402" + - generic: $4,500,000 + - generic: 3 beds + - generic: 4.5 baths + - generic: 2,112 sqft + - generic: 480 Northeast 31st Street, Unit PH5402, Miami, FL 33137 + - link "Compass Exclusive 485 Brickell Avenue, Unit 1609 $875,000 2 beds 1 baths 953 sqft 485 Brickell Avenue, Unit 1609, Miami, FL 33131": + - /url: /listing/485-brickell-avenue-unit-1609-miami-fl-35885545 + - generic: Compass Exclusive + - img "485 Brickell Avenue, Unit 1609" + - generic: $875,000 + - generic: 2 beds + - generic: 1 baths + - generic: 953 sqft + - generic: 485 Brickell Avenue, Unit 1609, Miami, FL 33131 + - link "Compass Exclusive 13052 Southwest 26th Street $1,600,000 — beds — baths — sqft 13052 Southwest 26th Street, Miami, FL 33175": + - /url: /listing/13052-southwest-26th-street-miami-fl-94615185 + - generic: Compass Exclusive + - img "13052 Southwest 26th Street" + - generic: $1,600,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 13052 Southwest 26th Street, Miami, FL 33175 + - link "Compass Exclusive 1425 Brickell Avenue, Unit 42F $11,750,000 3 beds 4.5 baths 3,913 sqft 1425 Brickell Avenue, Unit 42F, Miami, FL 33131": + - /url: /listing/1425-brickell-avenue-unit-42f-miami-fl-85366897 + - generic: Compass Exclusive + - img "1425 Brickell Avenue, Unit 42F" + - generic: $11,750,000 + - generic: 3 beds + - generic: 4.5 baths + - generic: 3,913 sqft + - generic: 1425 Brickell Avenue, Unit 42F, Miami, FL 33131 + - link "Compass Exclusive 3245 Southwest 59th Avenue $1,895,000 4 beds 4 baths 3,269 sqft 3245 Southwest 59th Avenue, Miami, FL 33155": + - /url: /listing/3245-southwest-59th-avenue-miami-fl-10928377 + - generic: Compass Exclusive + - img "3245 Southwest 59th Avenue" + - generic: $1,895,000 + - generic: 4 beds + - generic: 4 baths + - generic: 3,269 sqft + - generic: 3245 Southwest 59th Avenue, Miami, FL 33155 + - link "Compass Exclusive 200 Biscayne Blvd Way, Unit 4812 $975,000 2 beds 3 baths 1,237 sqft 200 Biscayne Blvd Way, Unit 4812, Miami, FL 33131": + - /url: /listing/200-biscayne-blvd-way-unit-4812-miami-fl-36678801 + - generic: Compass Exclusive + - img "200 Biscayne Blvd Way, Unit 4812" + - generic: $975,000 + - generic: 2 beds + - generic: 3 baths + - generic: 1,237 sqft + - generic: 200 Biscayne Blvd Way, Unit 4812, Miami, FL 33131 + - link "Compass Exclusive 300 Biscayne Blvd Way, Unit 2103 $4,690,000 3 beds 5 baths 3,078 sqft 300 Biscayne Blvd Way, Unit 2103, Miami, FL 33131": + - /url: /listing/300-biscayne-blvd-way-unit-2103-miami-fl-62476721 + - generic: Compass Exclusive + - img "300 Biscayne Blvd Way, Unit 2103" + - generic: $4,690,000 + - generic: 3 beds + - generic: 5 baths + - generic: 3,078 sqft + - generic: 300 Biscayne Blvd Way, Unit 2103, Miami, FL 33131 + - link "Compass Exclusive 302134005-0535 $315,000 — beds 0 baths — sqft 302134005-0535 , Miami, FL 33167": + - /url: /listing/302134005-0535-miami-fl-19369297 + - generic: Compass Exclusive + - img "302134005-0535" + - generic: $315,000 + - generic: — beds + - generic: 0 baths + - generic: — sqft + - generic: 302134005-0535 , Miami, FL 33167 + - link "1201 Northeast 83rd Street $9,800,000 10 beds 10 baths 8,573 sqft 1201 Northeast 83rd Street, Miami, FL 33138": + - /url: /listing/1201-northeast-83rd-street-miami-fl-86057233 + - img "1201 Northeast 83rd Street" + - generic: $9,800,000 + - generic: 10 beds + - generic: 10 baths + - generic: 8,573 sqft + - generic: 1201 Northeast 83rd Street, Miami, FL 33138 + - link "Compass Exclusive 1423 Quesada Avenue $999,000 3 beds 2 baths 1,975 sqft 1423 Quesada Avenue, San Francisco, CA 94124": + - /url: /listing/1423-quesada-avenue-san-francisco-ca-44057905 + - generic: Compass Exclusive + - img "1423 Quesada Avenue" + - generic: $999,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,975 sqft + - generic: 1423 Quesada Avenue, San Francisco, CA 94124 + - link "Compass Exclusive Walnut Street $5,500,000 6 beds 5 baths 4,300 sqft Walnut Street, San Francisco, CA 94118": + - /url: /listing/walnut-street-san-francisco-ca-05333337 + - generic: Compass Exclusive + - img "Walnut Street" + - generic: $5,500,000 + - generic: 6 beds + - generic: 5 baths + - generic: 4,300 sqft + - generic: Walnut Street, San Francisco, CA 94118 + - link "Compass Exclusive 420 Mission Bay Boulevard North, Unit 120 $899,000 1 beds 1 baths 928 sqft 420 Mission Bay Boulevard North, Unit 120, San Francisco, CA 94158": + - /url: /listing/420-mission-bay-boulevard-north-unit-120-san-francisco-ca-72469257 + - generic: Compass Exclusive + - img "420 Mission Bay Boulevard North, Unit 120" + - generic: $899,000 + - generic: 1 beds + - generic: 1 baths + - generic: 928 sqft + - generic: 420 Mission Bay Boulevard North, Unit 120, San Francisco, CA 94158 + - link "Compass Exclusive 715 Page Street $1,895,000 2 beds 2 baths 1,326 sqft 715 Page Street, San Francisco, CA 94117": + - /url: /listing/715-page-street-san-francisco-ca-83541689 + - generic: Compass Exclusive + - img "715 Page Street" + - generic: $1,895,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,326 sqft + - generic: 715 Page Street, San Francisco, CA 94117 + - link "Compass Exclusive 738 Long Bridge Street, Unit 205 $1,820,000 2 beds 2 baths 1,437 sqft 738 Long Bridge Street, Unit 205, San Francisco, CA 94158": + - /url: /listing/738-long-bridge-street-unit-205-san-francisco-ca-43768129 + - generic: Compass Exclusive + - img "738 Long Bridge Street, Unit 205" + - generic: $1,820,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,437 sqft + - generic: 738 Long Bridge Street, Unit 205, San Francisco, CA 94158 + - link "Compass Exclusive 415 Buena Vista Avenue East $5,950,000 5 beds 4.5 baths — sqft 415 Buena Vista Avenue East, San Francisco, CA 94117": + - /url: /listing/415-buena-vista-avenue-east-san-francisco-ca-96660801 + - generic: Compass Exclusive + - img "415 Buena Vista Avenue East" + - generic: $5,950,000 + - generic: 5 beds + - generic: 4.5 baths + - generic: — sqft + - generic: 415 Buena Vista Avenue East, San Francisco, CA 94117 + - link "Compass Exclusive 522 Hickory Street $3,800,000 3 beds 4 baths 2,982 sqft 522 Hickory Street, San Francisco, CA 94102": + - /url: /listing/522-hickory-street-san-francisco-ca-66255609 + - generic: Compass Exclusive + - img "522 Hickory Street" + - generic: $3,800,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,982 sqft + - generic: 522 Hickory Street, San Francisco, CA 94102 + - link "Compass Exclusive 2401 16th Street $993,775 0 beds 2 baths 2,384 sqft 2401 16th Street, San Francisco, CA 94110": + - /url: /listing/2401-16th-street-san-francisco-ca-30407017 + - generic: Compass Exclusive + - img "2401 16th Street" + - generic: $993,775 + - generic: 0 beds + - generic: 2 baths + - generic: 2,384 sqft + - generic: 2401 16th Street, San Francisco, CA 94110 + - link "Compass Exclusive 733 Front Street, Unit 203 $1,049,000 — beds — baths 949 sqft 733 Front Street, Unit 203, San Francisco, CA 94111": + - /url: /listing/733-front-street-unit-203-san-francisco-ca-37192393 + - generic: Compass Exclusive + - img "733 Front Street, Unit 203" + - generic: $1,049,000 + - generic: — beds + - generic: — baths + - generic: 949 sqft + - generic: 733 Front Street, Unit 203, San Francisco, CA 94111 + - link "Compass Exclusive 999 Green Street, Unit 1401 $2,695,000 1 beds 2 baths 1,473 sqft 999 Green Street, Unit 1401, San Francisco, CA 94133": + - /url: /listing/999-green-street-unit-1401-san-francisco-ca-60165145 + - generic: Compass Exclusive + - img "999 Green Street, Unit 1401" + - generic: $2,695,000 + - generic: 1 beds + - generic: 2 baths + - generic: 1,473 sqft + - generic: 999 Green Street, Unit 1401, San Francisco, CA 94133 + - link "Compass Exclusive 400 Grove Street, Unit 504 $1,695,000 2 beds 2 baths — sqft 400 Grove Street, Unit 504, San Francisco, CA 94102": + - /url: /listing/400-grove-street-unit-504-san-francisco-ca-43941473 + - generic: Compass Exclusive + - img "400 Grove Street, Unit 504" + - generic: $1,695,000 + - generic: 2 beds + - generic: 2 baths + - generic: — sqft + - generic: 400 Grove Street, Unit 504, San Francisco, CA 94102 + - link "Compass Exclusive 88 King Street, Unit 504 $999,900 2 beds 2 baths 1,154 sqft 88 King Street, Unit 504, San Francisco, CA 94107": + - /url: /listing/88-king-street-unit-504-san-francisco-ca-53479305 + - generic: Compass Exclusive + - img "88 King Street, Unit 504" + - generic: $999,900 + - generic: 2 beds + - generic: 2 baths + - generic: 1,154 sqft + - generic: 88 King Street, Unit 504, San Francisco, CA 94107 + - link "Compass Exclusive 201 Fell Street $67,000 — beds 0 baths 350 sqft 201 Fell Street, San Francisco, CA 94102": + - /url: /listing/201-fell-street-san-francisco-ca-60550161 + - generic: Compass Exclusive + - img "201 Fell Street" + - generic: $67,000 + - generic: — beds + - generic: 0 baths + - generic: 350 sqft + - generic: 201 Fell Street, San Francisco, CA 94102 + - link "Compass Exclusive 1542 15th Street $1,295,000 3 beds 1.5 baths 1,380 sqft 1542 15th Street, San Francisco, CA 94103": + - /url: /listing/1542-15th-street-san-francisco-ca-68920025 + - generic: Compass Exclusive + - img "1542 15th Street" + - generic: $1,295,000 + - generic: 3 beds + - generic: 1.5 baths + - generic: 1,380 sqft + - generic: 1542 15th Street, San Francisco, CA 94103 + - link "Compass Exclusive 417 Buena Vista Avenue East $1,590,000 — beds — baths — sqft 417 Buena Vista Avenue East, San Francisco, CA 94117": + - /url: /listing/417-buena-vista-avenue-east-san-francisco-ca-11779665 + - generic: Compass Exclusive + - img "417 Buena Vista Avenue East" + - generic: $1,590,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 417 Buena Vista Avenue East, San Francisco, CA 94117 + - link "Compass Exclusive 211 Steiner Street $213,000 — beds 0 baths 1,400 sqft 211 Steiner Street, San Francisco, CA 94117": + - /url: /listing/211-steiner-street-san-francisco-ca-55126769 + - generic: Compass Exclusive + - img "211 Steiner Street" + - generic: $213,000 + - generic: — beds + - generic: 0 baths + - generic: 1,400 sqft + - generic: 211 Steiner Street, San Francisco, CA 94117 + - link "Compass Exclusive 2740 38th Avenue $1,900,000 6 beds 3 baths 2,990 sqft 2740 38th Avenue, San Francisco, CA 94116": + - /url: /listing/2740-38th-avenue-san-francisco-ca-33865425 + - generic: Compass Exclusive + - img "2740 38th Avenue" + - generic: $1,900,000 + - generic: 6 beds + - generic: 3 baths + - generic: 2,990 sqft + - generic: 2740 38th Avenue, San Francisco, CA 94116 + - link "Compass Exclusive 1330-1332 Greenwich Street $8,995,000 5 beds 6 baths 4,447 sqft 1330-1332 Greenwich Street, San Francisco, CA 94109": + - /url: /listing/1330-1332-greenwich-street-san-francisco-ca-46862593 + - generic: Compass Exclusive + - img "1330-1332 Greenwich Street" + - generic: $8,995,000 + - generic: 5 beds + - generic: 6 baths + - generic: 4,447 sqft + - generic: 1330-1332 Greenwich Street, San Francisco, CA 94109 + - link "200 Brannan Street, Unit 130 $1,475,000 1 beds 1.5 baths 1,645 sqft 200 Brannan Street, Unit 130, San Francisco, CA 94107": + - /url: /listing/200-brannan-street-unit-130-san-francisco-ca-32648585 + - img "200 Brannan Street, Unit 130" + - generic: $1,475,000 + - generic: 1 beds + - generic: 1.5 baths + - generic: 1,645 sqft + - generic: 200 Brannan Street, Unit 130, San Francisco, CA 94107 + - link "Compass Exclusive 1821 North Milwaukee Avenue, Unit 401 $650,000 2 beds 2 baths 1,445 sqft 1821 North Milwaukee Avenue, Unit 401, Chicago, IL 60647": + - /url: /listing/1821-north-milwaukee-avenue-unit-401-chicago-il-78121113 + - generic: Compass Exclusive + - img "1821 North Milwaukee Avenue, Unit 401" + - generic: $650,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,445 sqft + - generic: 1821 North Milwaukee Avenue, Unit 401, Chicago, IL 60647 + - link "Compass Exclusive 1600 West Greenleaf Avenue, Unit 303 $163,000 — beds — baths — sqft 1600 West Greenleaf Avenue, Unit 303, Chicago, IL 60626": + - /url: /listing/1600-west-greenleaf-avenue-unit-303-chicago-il-88621545 + - generic: Compass Exclusive + - img "1600 West Greenleaf Avenue, Unit 303" + - generic: $163,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 1600 West Greenleaf Avenue, Unit 303, Chicago, IL 60626 + - link "Compass Exclusive 1946 West Armitage Avenue $1,099,000 5 beds 3 baths — sqft 1946 West Armitage Avenue, Chicago, IL 60622": + - /url: /listing/1946-west-armitage-avenue-chicago-il-75360473 + - generic: Compass Exclusive + - img "1946 West Armitage Avenue" + - generic: $1,099,000 + - generic: 5 beds + - generic: 3 baths + - generic: — sqft + - generic: 1946 West Armitage Avenue, Chicago, IL 60622 + - link "Compass Exclusive 2926 West Lyndale Street $1,100,000 4 beds 4 baths — sqft 2926 West Lyndale Street, Chicago, IL 60647": + - /url: /listing/2926-west-lyndale-street-chicago-il-09848473 + - generic: Compass Exclusive + - img "2926 West Lyndale Street" + - generic: $1,100,000 + - generic: 4 beds + - generic: 4 baths + - generic: — sqft + - generic: 2926 West Lyndale Street, Chicago, IL 60647 + - link "4627 North Kenmore Avenue, Unit 1E $425,000 2 beds 2.5 baths 1,500 sqft 4627 North Kenmore Avenue, Unit 1E, Chicago, IL 60640": + - /url: /listing/4627-north-kenmore-avenue-unit-1e-chicago-il-01630305 + - img "4627 North Kenmore Avenue, Unit 1E" + - generic: $425,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,500 sqft + - generic: 4627 North Kenmore Avenue, Unit 1E, Chicago, IL 60640 + - link "Compass Exclusive 1639 North Dayton Street $2,795,000 6 beds 6 baths — sqft 1639 North Dayton Street, Chicago, IL 60614": + - /url: /listing/1639-north-dayton-street-chicago-il-17330249 + - generic: Compass Exclusive + - img "1639 North Dayton Street" + - generic: $2,795,000 + - generic: 6 beds + - generic: 6 baths + - generic: — sqft + - generic: 1639 North Dayton Street, Chicago, IL 60614 + - link "Compass Exclusive 815 North Marshfield Avenue, Unit 204 $550,000 2 beds 2 baths 1,100 sqft 815 North Marshfield Avenue, Unit 204, Chicago, IL 60622": + - /url: /listing/815-north-marshfield-avenue-unit-204-chicago-il-87885121 + - generic: Compass Exclusive + - img "815 North Marshfield Avenue, Unit 204" + - generic: $550,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,100 sqft + - generic: 815 North Marshfield Avenue, Unit 204, Chicago, IL 60622 + - link "Compass Exclusive 4152 North Damen Avenue $1,095,000 5 beds 3 baths — sqft 4152 North Damen Avenue, Chicago, IL 60618": + - /url: /listing/4152-north-damen-avenue-chicago-il-31341033 + - generic: Compass Exclusive + - img "4152 North Damen Avenue" + - generic: $1,095,000 + - generic: 5 beds + - generic: 3 baths + - generic: — sqft + - generic: 4152 North Damen Avenue, Chicago, IL 60618 + - link "Compass Exclusive 2254 West Chicago Avenue, Unit 5S $965,000 3 beds 2 baths — sqft 2254 West Chicago Avenue, Unit 5S, Chicago, IL 60622": + - /url: /listing/2252-west-chicago-avenue-unit-5s-chicago-il-31183913 + - generic: Compass Exclusive + - img "2254 West Chicago Avenue, Unit 5S" + - generic: $965,000 + - generic: 3 beds + - generic: 2 baths + - generic: — sqft + - generic: 2254 West Chicago Avenue, Unit 5S, Chicago, IL 60622 + - link "Compass Exclusive 1702 North Campbell Avenue $1,200,000 7 beds 4 baths — sqft 1702 North Campbell Avenue, Chicago, IL 60647": + - /url: /listing/1702-north-campbell-avenue-chicago-il-04325137 + - generic: Compass Exclusive + - img "1702 North Campbell Avenue" + - generic: $1,200,000 + - generic: 7 beds + - generic: 4 baths + - generic: — sqft + - generic: 1702 North Campbell Avenue, Chicago, IL 60647 + - link "Compass Exclusive 2252 West Chicago Avenue, Unit 2S $845,000 3 beds 2 baths — sqft 2252 West Chicago Avenue, Unit 2S, Chicago, IL 60622": + - /url: /listing/2252-west-chicago-avenue-unit-2s-chicago-il-49591921 + - generic: Compass Exclusive + - img "2252 West Chicago Avenue, Unit 2S" + - generic: $845,000 + - generic: 3 beds + - generic: 2 baths + - generic: — sqft + - generic: 2252 West Chicago Avenue, Unit 2S, Chicago, IL 60622 + - link "Compass Exclusive 2707 West Belmont Avenue, Unit 3E $625,000 3 beds 2 baths 1,700 sqft 2707 West Belmont Avenue, Unit 3E, Chicago, IL 60618": + - /url: /listing/2707-west-belmont-avenue-unit-3e-chicago-il-79058521 + - generic: Compass Exclusive + - img "2707 West Belmont Avenue, Unit 3E" + - generic: $625,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,700 sqft + - generic: 2707 West Belmont Avenue, Unit 3E, Chicago, IL 60618 + - link "Compass Exclusive 4755 North Washtenaw Avenue, Unit 407 $425,000 2 beds 2 baths — sqft 4755 North Washtenaw Avenue, Unit 407, Chicago, IL 60625": + - /url: /listing/4755-north-washtenaw-avenue-unit-407-chicago-il-16471945 + - generic: Compass Exclusive + - img "4755 North Washtenaw Avenue, Unit 407" + - generic: $425,000 + - generic: 2 beds + - generic: 2 baths + - generic: — sqft + - generic: 4755 North Washtenaw Avenue, Unit 407, Chicago, IL 60625 + - link "Compass Exclusive 2715 North Bosworth Avenue $2,295,000 5 beds 4 baths — sqft 2715 North Bosworth Avenue, Chicago, IL 60614": + - /url: /listing/2715-north-bosworth-avenue-chicago-il-54813449 + - generic: Compass Exclusive + - img "2715 North Bosworth Avenue" + - generic: $2,295,000 + - generic: 5 beds + - generic: 4 baths + - generic: — sqft + - generic: 2715 North Bosworth Avenue, Chicago, IL 60614 + - link "Compass Exclusive 449 West Fullerton Avenue $1,995,000 4 beds 5 baths — sqft 449 West Fullerton Avenue, Chicago, IL 60614": + - /url: /listing/449-west-fullerton-avenue-chicago-il-34643817 + - generic: Compass Exclusive + - img "449 West Fullerton Avenue" + - generic: $1,995,000 + - generic: 4 beds + - generic: 5 baths + - generic: — sqft + - generic: 449 West Fullerton Avenue, Chicago, IL 60614 + - link "Compass Exclusive 1032 North Wood Street $2,599,000 6 beds 5 baths 5,000 sqft 1032 North Wood Street, Chicago, IL 60622": + - /url: /listing/1032-north-wood-street-chicago-il-83473945 + - generic: Compass Exclusive + - img "1032 North Wood Street" + - generic: $2,599,000 + - generic: 6 beds + - generic: 5 baths + - generic: 5,000 sqft + - generic: 1032 North Wood Street, Chicago, IL 60622 + - link "Compass Exclusive 2753 North Hermitage Avenue $999,000 3 beds 3 baths — sqft 2753 North Hermitage Avenue, Chicago, IL 60614": + - /url: /listing/2753-north-hermitage-avenue-chicago-il-36535953 + - generic: Compass Exclusive + - img "2753 North Hermitage Avenue" + - generic: $999,000 + - generic: 3 beds + - generic: 3 baths + - generic: — sqft + - generic: 2753 North Hermitage Avenue, Chicago, IL 60614 + - link "Compass Exclusive 2340 West Roscoe Street, Unit 3W $869,000 3 beds 3 baths 2,400 sqft 2340 West Roscoe Street, Unit 3W, Chicago, IL 60618": + - /url: /listing/2340-west-roscoe-street-unit-3w-chicago-il-29054457 + - generic: Compass Exclusive + - img "2340 West Roscoe Street, Unit 3W" + - generic: $869,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,400 sqft + - generic: 2340 West Roscoe Street, Unit 3W, Chicago, IL 60618 + - link "Pending 2329 North Cambridge Avenue, Unit G $1,950,000 3 beds 3.5 baths 2,915 sqft 2329 North Cambridge Avenue, Unit G, Chicago, IL 60614": + - /url: /listing/2329-north-cambridge-avenue-unit-g-chicago-il-50253617 + - generic: Pending + - img "2329 North Cambridge Avenue, Unit G" + - generic: $1,950,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 2,915 sqft + - generic: 2329 North Cambridge Avenue, Unit G, Chicago, IL 60614 + - link "421 West Huron Street, Unit 604 $514,900 2 beds 2 baths 1,195 sqft 421 West Huron Street, Unit 604, Chicago, IL 60654": + - /url: /listing/421-west-huron-street-unit-604-chicago-il-58037993 + - img "421 West Huron Street, Unit 604" + - generic: $514,900 + - generic: 2 beds + - generic: 2 baths + - generic: 1,195 sqft + - generic: 421 West Huron Street, Unit 604, Chicago, IL 60654 + - link "2329 North Cambridge Avenue, Unit C $2,100,000 4 beds 3.5 baths 2,930 sqft 2329 North Cambridge Avenue, Unit C, Chicago, IL 60614": + - /url: /listing/2329-north-cambridge-avenue-unit-c-chicago-il-21720449 + - img "2329 North Cambridge Avenue, Unit C" + - generic: $2,100,000 + - generic: 4 beds + - generic: 3.5 baths + - generic: 2,930 sqft + - generic: 2329 North Cambridge Avenue, Unit C, Chicago, IL 60614 + - link "Compass Exclusive 757 North Orleans Street, Unit 1004 $455,000 2 beds 2 baths 1,181 sqft 757 North Orleans Street, Unit 1004, Chicago, IL 60654": + - /url: /listing/757-north-orleans-street-unit-1004-chicago-il-51375689 + - generic: Compass Exclusive + - img "757 North Orleans Street, Unit 1004" + - generic: $455,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,181 sqft + - generic: 757 North Orleans Street, Unit 1004, Chicago, IL 60654 + - link "Compass Exclusive 3125 North Clybourn Avenue, Unit 2N $725,000 3 beds 2 baths 1,700 sqft 3125 North Clybourn Avenue, Unit 2N, Chicago, IL 60618": + - /url: /listing/3125-north-clybourn-avenue-unit-2n-chicago-il-98683425 + - generic: Compass Exclusive + - img "3125 North Clybourn Avenue, Unit 2N" + - generic: $725,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,700 sqft + - generic: 3125 North Clybourn Avenue, Unit 2N, Chicago, IL 60618 + - link "Compass Exclusive 2329 North Cambridge Avenue, Unit A $1,680,000 2 beds 3 baths 2,220 sqft 2329 North Cambridge Avenue, Unit A, Chicago, IL 60614": + - /url: /listing/2329-north-cambridge-avenue-unit-a-chicago-il-54391729 + - generic: Compass Exclusive + - img "2329 North Cambridge Avenue, Unit A" + - generic: $1,680,000 + - generic: 2 beds + - generic: 3 baths + - generic: 2,220 sqft + - generic: 2329 North Cambridge Avenue, Unit A, Chicago, IL 60614 + - link "Compass Exclusive 2720 North Ashland Avenue, Unit 2S $850,000 3 beds 2 baths 1,650 sqft 2720 North Ashland Avenue, Unit 2S, Chicago, IL 60614": + - /url: /listing/2720-north-ashland-avenue-unit-2s-chicago-il-26125497 + - generic: Compass Exclusive + - img "2720 North Ashland Avenue, Unit 2S" + - generic: $850,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,650 sqft + - generic: 2720 North Ashland Avenue, Unit 2S, Chicago, IL 60614 + - link "Compass Exclusive 2720 North Ashland Avenue, Unit 3S $950,000 3 beds 2 baths 1,800 sqft 2720 North Ashland Avenue, Unit 3S, Chicago, IL 60614": + - /url: /listing/2720-north-ashland-avenue-unit-3s-chicago-il-54056553 + - generic: Compass Exclusive + - img "2720 North Ashland Avenue, Unit 3S" + - generic: $950,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,800 sqft + - generic: 2720 North Ashland Avenue, Unit 3S, Chicago, IL 60614 + - link "Compass Exclusive 1951 West Huron Street $2,150,000 5 beds 3.5 baths 4,500 sqft 1951 West Huron Street, Chicago, IL 60622": + - /url: /listing/1951-west-huron-street-chicago-il-77703721 + - generic: Compass Exclusive + - img "1951 West Huron Street" + - generic: $2,150,000 + - generic: 5 beds + - generic: 3.5 baths + - generic: 4,500 sqft + - generic: 1951 West Huron Street, Chicago, IL 60622 + - link "Compass Exclusive 2471 North Albany Avenue $900,000 0 beds 0 baths — sqft 2471 North Albany Avenue, Chicago, IL 60647": + - /url: /listing/2471-north-albany-avenue-chicago-il-74707001 + - generic: Compass Exclusive + - img "2471 North Albany Avenue" + - generic: $900,000 + - generic: 0 beds + - generic: 0 baths + - generic: — sqft + - generic: 2471 North Albany Avenue, Chicago, IL 60647 + - link "Compass Exclusive 21 West Goethe Street, Unit 15A $274,900 1 beds 1 baths — sqft 21 West Goethe Street, Unit 15A, Chicago, IL 60610": + - /url: /listing/21-west-goethe-street-unit-15a-chicago-il-30603593 + - generic: Compass Exclusive + - img "21 West Goethe Street, Unit 15A" + - generic: $274,900 + - generic: 1 beds + - generic: 1 baths + - generic: — sqft + - generic: 21 West Goethe Street, Unit 15A, Chicago, IL 60610 + - link "Compass Exclusive 2232 North Dayton Street $3,100,000 4 beds 5 baths 3,986 sqft 2232 North Dayton Street, Chicago, IL 60614": + - /url: /listing/2232-north-dayton-street-chicago-il-90899201 + - generic: Compass Exclusive + - img "2232 North Dayton Street" + - generic: $3,100,000 + - generic: 4 beds + - generic: 5 baths + - generic: 3,986 sqft + - generic: 2232 North Dayton Street, Chicago, IL 60614 + - link "2 Douglass Park, Unit 5 $390,175 2 beds 1 baths 985 sqft 2 Douglass Park, Unit 5, Boston, MA 02118": + - /url: /listing/2-douglass-park-unit-5-boston-ma-44139993 + - img "2 Douglass Park, Unit 5" + - generic: $390,175 + - generic: 2 beds + - generic: 1 baths + - generic: 985 sqft + - generic: 2 Douglass Park, Unit 5, Boston, MA 02118 + - link "Compass Exclusive 40 Fay Street, Unit H706 $1,495,000 2 beds 1.5 baths 1,400 sqft 40 Fay Street, Unit H706, Boston, MA 02118": + - /url: /listing/40-fay-street-unit-h706-boston-ma-70060769 + - generic: Compass Exclusive + - img "40 Fay Street, Unit H706" + - generic: $1,495,000 + - generic: 2 beds + - generic: 1.5 baths + - generic: 1,400 sqft + - generic: 40 Fay Street, Unit H706, Boston, MA 02118 + - link "Compass Exclusive 554 East 5th Street, Unit 1 $899,000 2 beds 2 baths 1,140 sqft 554 East 5th Street, Unit 1, Boston, MA 02127": + - /url: /listing/554-east-5th-street-unit-1-boston-ma-48810625 + - generic: Compass Exclusive + - img "554 East 5th Street, Unit 1" + - generic: $899,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,140 sqft + - generic: 554 East 5th Street, Unit 1, Boston, MA 02127 + - link "Compass Exclusive 25 Isabella Street, Unit 502 $3,000,000 2 beds 2 baths 1,519 sqft 25 Isabella Street, Unit 502, Boston, MA 02116": + - /url: /listing/25-isabella-street-unit-502-boston-ma-54764753 + - generic: Compass Exclusive + - img "25 Isabella Street, Unit 502" + - generic: $3,000,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,519 sqft + - generic: 25 Isabella Street, Unit 502, Boston, MA 02116 + - link "Compass Exclusive 124 West Newton Street, Unit 2 $3,850,000 4 beds 3 baths 2,350 sqft 124 West Newton Street, Unit 2, Boston, MA 02118": + - /url: /listing/124-west-newton-street-unit-2-boston-ma-65814257 + - generic: Compass Exclusive + - img "124 West Newton Street, Unit 2" + - generic: $3,850,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,350 sqft + - generic: 124 West Newton Street, Unit 2, Boston, MA 02118 + - link "Compass Exclusive Address Upon Request $1,400,000 2 beds 2 baths 1,000 sqft Address Upon Request, Boston, MA 02114": + - /url: /listing/address-upon-request-boston-ma-70707233 + - generic: Compass Exclusive + - img "Address Upon Request" + - generic: $1,400,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,000 sqft + - generic: Address Upon Request, Boston, MA 02114 + - link "Compass Exclusive 90 Revere Street, Unit 2 $3,000,000 3 beds 3 baths 1,712 sqft 90 Revere Street, Unit 2, Boston, MA 02114": + - /url: /listing/90-revere-street-unit-2-boston-ma-39701289 + - generic: Compass Exclusive + - img "90 Revere Street, Unit 2" + - generic: $3,000,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,712 sqft + - generic: 90 Revere Street, Unit 2, Boston, MA 02114 + - link "Compass Exclusive 128 Marlborough Street, Unit 1 $1,250,000 2 beds — baths 1,041 sqft 128 Marlborough Street, Unit 1, Boston, MA 02116": + - /url: /listing/128-marlborough-street-unit-1-boston-ma-59759137 + - generic: Compass Exclusive + - img "128 Marlborough Street, Unit 1" + - generic: $1,250,000 + - generic: 2 beds + - generic: — baths + - generic: 1,041 sqft + - generic: 128 Marlborough Street, Unit 1, Boston, MA 02116 + - link "Compass Exclusive 725 East 6th Street, Unit 1 $1,100,000 3 beds 3 baths 1,622 sqft 725 East 6th Street, Unit 1, Boston, MA 02127": + - /url: /listing/725-east-6th-street-unit-1-boston-ma-55802753 + - generic: Compass Exclusive + - img "725 East 6th Street, Unit 1" + - generic: $1,100,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,622 sqft + - generic: 725 East 6th Street, Unit 1, Boston, MA 02127 + - link "Compass Exclusive 140 Shawmut Avenue, Unit 7A $2,695,000 4 beds 4 baths 2,596 sqft 140 Shawmut Avenue, Unit 7A, Boston, MA 02118": + - /url: /listing/140-shawmut-avenue-unit-7a-boston-ma-92069057 + - generic: Compass Exclusive + - img "140 Shawmut Avenue, Unit 7A" + - generic: $2,695,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,596 sqft + - generic: 140 Shawmut Avenue, Unit 7A, Boston, MA 02118 + - link "Compass Exclusive 60 Commonwealth Avenue, Unit 7 $2,680,000 3 beds 2 baths 1,500 sqft 60 Commonwealth Avenue, Unit 7, Boston, MA 02116": + - /url: /listing/60-commonwealth-avenue-unit-7-boston-ma-70186201 + - generic: Compass Exclusive + - img "60 Commonwealth Avenue, Unit 7" + - generic: $2,680,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,500 sqft + - generic: 60 Commonwealth Avenue, Unit 7, Boston, MA 02116 + - link "Compass Exclusive 90 Revere Street, Unit 3 $3,500,000 3 beds 2.5 baths 1,800 sqft 90 Revere Street, Unit 3, Boston, MA 02114": + - /url: /listing/90-revere-street-unit-3-boston-ma-25286625 + - generic: Compass Exclusive + - img "90 Revere Street, Unit 3" + - generic: $3,500,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,800 sqft + - generic: 90 Revere Street, Unit 3, Boston, MA 02114 + - link "Compass Exclusive 795 East 4th Street $2,799,000 4 beds 4 baths 2,783 sqft 795 East 4th Street, Boston, MA 02127": + - /url: /listing/795-east-4th-street-boston-ma-98397657 + - generic: Compass Exclusive + - img "795 East 4th Street" + - generic: $2,799,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,783 sqft + - generic: 795 East 4th Street, Boston, MA 02127 + - link "Compass Exclusive 321 Commonwealth Avenue, Unit 40 $2,350,000 2 beds 2 baths 1,425 sqft 321 Commonwealth Avenue, Unit 40, Boston, MA 02115": + - /url: /listing/321-commonwealth-avenue-unit-40-boston-ma-97621689 + - generic: Compass Exclusive + - img "321 Commonwealth Avenue, Unit 40" + - generic: $2,350,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,425 sqft + - generic: 321 Commonwealth Avenue, Unit 40, Boston, MA 02115 + - link "131 Mt Vernon Street, Unit 2 $2,995,000 4 beds 3 baths 2,183 sqft 131 Mt Vernon Street, Unit 2, Boston, MA 02108": + - /url: /listing/131-mt-vernon-street-unit-2-boston-ma-13405161 + - img "131 Mt Vernon Street, Unit 2" + - generic: $2,995,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,183 sqft + - generic: 131 Mt Vernon Street, Unit 2, Boston, MA 02108 + - link "Compass Exclusive 666 Massachusetts Avenue Price upon request 9 beds 7 baths 5,050 sqft 666 Massachusetts Avenue, Boston, MA 02118": + - /url: /listing/666-massachusetts-avenue-boston-ma-59548849 + - generic: Compass Exclusive + - img "666 Massachusetts Avenue" + - generic: Price upon request + - generic: 9 beds + - generic: 7 baths + - generic: 5,050 sqft + - generic: 666 Massachusetts Avenue, Boston, MA 02118 + - link "Compass Exclusive Address Upon Request $850,000 3 beds 2.5 baths 1,450 sqft Address Upon Request, Jamaica Plain, MA 02130": + - /url: /listing/address-upon-request-boston-ma-40517209 + - generic: Compass Exclusive + - img "Address Upon Request" + - generic: $850,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,450 sqft + - generic: Address Upon Request, Jamaica Plain, MA 02130 + - link "Compass Exclusive Address Upon Request $899,000 3 beds 2 baths 1,713 sqft Address Upon Request, Boston, MA 02125": + - /url: /listing/address-upon-request-boston-ma-41120841 + - generic: Compass Exclusive + - img "Address Upon Request" + - generic: $899,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,713 sqft + - generic: Address Upon Request, Boston, MA 02125 + - link "Compass Exclusive 137 Princeton Street, Unit 2 $599,000 2 beds — baths 1,108 sqft 137 Princeton Street, Unit 2, Boston, MA 02128": + - /url: /listing/137-princeton-street-unit-2-boston-ma-47303009 + - generic: Compass Exclusive + - img "137 Princeton Street, Unit 2" + - generic: $599,000 + - generic: 2 beds + - generic: — baths + - generic: 1,108 sqft + - generic: 137 Princeton Street, Unit 2, Boston, MA 02128 + - link "Compass Exclusive 16 A Meehan Street, Unit 1 $899,000 3 beds 2 baths 1,217 sqft 16 A Meehan Street, Unit 1, Boston, MA 02130": + - /url: /listing/16-a-meehan-street-unit-1-boston-ma-87157673 + - generic: Compass Exclusive + - img "16 A Meehan Street, Unit 1" + - generic: $899,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,217 sqft + - generic: 16 A Meehan Street, Unit 1, Boston, MA 02130 + - link "Compass Exclusive 167 Lexington Street, Unit 2 $650,000 2 beds 1 baths 634 sqft 167 Lexington Street, Unit 2, East Boston, MA 02128": + - /url: /listing/167-lexington-street-unit-2-boston-ma-32402377 + - generic: Compass Exclusive + - img "167 Lexington Street, Unit 2" + - generic: $650,000 + - generic: 2 beds + - generic: 1 baths + - generic: 634 sqft + - generic: 167 Lexington Street, Unit 2, East Boston, MA 02128 + - link "Compass Exclusive 319 A Street, Unit 211 $998,500 2 beds — baths 813 sqft 319 A Street, Unit 211, Boston, MA 02210": + - /url: /listing/319-a-street-unit-211-boston-ma-34030889 + - generic: Compass Exclusive + - img "319 A Street, Unit 211" + - generic: $998,500 + - generic: 2 beds + - generic: — baths + - generic: 813 sqft + - generic: 319 A Street, Unit 211, Boston, MA 02210 + - link "Compass Exclusive Gordon Street $2,100,000 5 beds 5 baths 3,651 sqft Gordon Street, Boston, MA 02130": + - /url: /listing/gordon-street-boston-ma-51920401 + - generic: Compass Exclusive + - img "Gordon Street" + - generic: $2,100,000 + - generic: 5 beds + - generic: 5 baths + - generic: 3,651 sqft + - generic: Gordon Street, Boston, MA 02130 + - link "Compass Exclusive 281 Newbury Street $6,000,000 8 beds 7 baths 5,510 sqft 281 Newbury Street, Boston, MA 02115": + - /url: /listing/281-newbury-street-boston-ma-80593441 + - generic: Compass Exclusive + - img "281 Newbury Street" + - generic: $6,000,000 + - generic: 8 beds + - generic: 7 baths + - generic: 5,510 sqft + - generic: 281 Newbury Street, Boston, MA 02115 + - link "Compass Exclusive 205 Park Lane $2,400,000 3 beds 3 baths 2,085 sqft 205 Park Lane, Austin, TX 78704": + - /url: /listing/205-park-lane-austin-tx-16311449 + - generic: Compass Exclusive + - img "205 Park Lane" + - generic: $2,400,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,085 sqft + - generic: 205 Park Lane, Austin, TX 78704 + - link "Compass Exclusive 2200 De Verne Street $2,075,000 4 beds 3 baths 2,602 sqft 2200 De Verne Street, Austin, TX 78704": + - /url: /listing/2200-de-verne-street-austin-tx-35969529 + - generic: Compass Exclusive + - img "2200 De Verne Street" + - generic: $2,075,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,602 sqft + - generic: 2200 De Verne Street, Austin, TX 78704 + - link "5801 Valley Circle $1,975,000 5 beds 4 baths 3,920 sqft 5801 Valley Circle, Austin, TX 78731": + - /url: /listing/5801-valley-circle-austin-tx-16722001 + - img "5801 Valley Circle" + - generic: $1,975,000 + - generic: 5 beds + - generic: 4 baths + - generic: 3,920 sqft + - generic: 5801 Valley Circle, Austin, TX 78731 + - link "2311 Westoak Drive $2,695,000 4 beds 4.5 baths 3,662 sqft 2311 Westoak Drive, Austin, TX 78704": + - /url: /listing/2311-westoak-drive-austin-tx-77497457 + - img "2311 Westoak Drive" + - generic: $2,695,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 3,662 sqft + - generic: 2311 Westoak Drive, Austin, TX 78704 + - link "Compass Exclusive 1102 Clermont Avenue $1,400,000 3 beds 2.5 baths 2,387 sqft 1102 Clermont Avenue, Austin, TX 78702": + - /url: /listing/1102-clermont-avenue-austin-tx-58228761 + - generic: Compass Exclusive + - img "1102 Clermont Avenue" + - generic: $1,400,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 2,387 sqft + - generic: 1102 Clermont Avenue, Austin, TX 78702 + - link "Compass Exclusive 3467 North Hills Drive $525,000 3 beds 2.5 baths 1,896 sqft 3467 North Hills Drive, Austin, TX 78731": + - /url: /listing/3467-north-hills-drive-austin-tx-05171257 + - generic: Compass Exclusive + - img "3467 North Hills Drive" + - generic: $525,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,896 sqft + - generic: 3467 North Hills Drive, Austin, TX 78731 + - link "Compass Exclusive 3467 North Hills Drive $525,000 3 beds 3 baths 1,896 sqft 3467 North Hills Drive, Austin, TX 78731": + - /url: /listing/3467-north-hills-drive-austin-tx-44691825 + - generic: Compass Exclusive + - img "3467 North Hills Drive" + - generic: $525,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,896 sqft + - generic: 3467 North Hills Drive, Austin, TX 78731 + - link "Compass Exclusive 1100 Clermont Avenue $1,400,000 3 beds 2.5 baths 2,387 sqft 1100 Clermont Avenue, Austin, TX 78702": + - /url: /listing/1100-clermont-avenue-austin-tx-91571489 + - generic: Compass Exclusive + - img "1100 Clermont Avenue" + - generic: $1,400,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 2,387 sqft + - generic: 1100 Clermont Avenue, Austin, TX 78702 + - link "2006 Mountain View Road $6,499,000 7 beds 7.5 baths 5,370 sqft 2006 Mountain View Road, Austin, TX 78703": + - /url: /listing/2006-mountain-view-road-austin-tx-18989937 + - img "2006 Mountain View Road" + - generic: $6,499,000 + - generic: 7 beds + - generic: 7.5 baths + - generic: 5,370 sqft + - generic: 2006 Mountain View Road, Austin, TX 78703 + - link "Compass Exclusive 2512 East 9th Street $725,000 2 beds — baths 750 sqft 2512 East 9th Street, Austin, TX 78702": + - /url: /listing/2512-east-9th-street-austin-tx-34176345 + - generic: Compass Exclusive + - img "2512 East 9th Street" + - generic: $725,000 + - generic: 2 beds + - generic: — baths + - generic: 750 sqft + - generic: 2512 East 9th Street, Austin, TX 78702 + - link "Compass Exclusive 1501 Wilson Heights Drive $1,100,000 3 beds 3 baths 1,878 sqft 1501 Wilson Heights Drive, Austin, TX 78746": + - /url: /listing/1501-wilson-heights-drive-austin-tx-16960001 + - generic: Compass Exclusive + - img "1501 Wilson Heights Drive" + - generic: $1,100,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,878 sqft + - generic: 1501 Wilson Heights Drive, Austin, TX 78746 + - link "4614 Jinx Avenue $560,000 3 beds 2 baths 1,975 sqft 4614 Jinx Avenue, Austin, TX 78745": + - /url: /listing/4614-jinx-avenue-austin-tx-28420929 + - img "4614 Jinx Avenue" + - generic: $560,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,975 sqft + - generic: 4614 Jinx Avenue, Austin, TX 78745 + - link "Compass Exclusive 406 Franklin Boulevard, Unit 2 $580,000 2 beds 3 baths 1,100 sqft 406 Franklin Boulevard, Unit 2, Austin, TX 78751": + - /url: /listing/406-franklin-boulevard-unit-2-austin-tx-95080217 + - generic: Compass Exclusive + - img "406 Franklin Boulevard, Unit 2" + - generic: $580,000 + - generic: 2 beds + - generic: 3 baths + - generic: 1,100 sqft + - generic: 406 Franklin Boulevard, Unit 2, Austin, TX 78751 + - link "Compass Exclusive 2102 East Martin Luther King Jr Boulevard $875,000 2 beds — baths 1,004 sqft 2102 East Martin Luther King Jr Boulevard, Austin, TX 78722": + - /url: /listing/2102-east-martin-luther-king-jr-boulevard-austin-tx-16491801 + - generic: Compass Exclusive + - img "2102 East Martin Luther King Jr Boulevard" + - generic: $875,000 + - generic: 2 beds + - generic: — baths + - generic: 1,004 sqft + - generic: 2102 East Martin Luther King Jr Boulevard, Austin, TX 78722 + - link "Compass Exclusive 800 Embassy Drive, Unit 236 $585,000 2 beds 2 baths 1,289 sqft 800 Embassy Drive, Unit 236, Austin, TX 78702": + - /url: /listing/800-embassy-drive-unit-236-austin-tx-55353609 + - generic: Compass Exclusive + - img "800 Embassy Drive, Unit 236" + - generic: $585,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,289 sqft + - generic: 800 Embassy Drive, Unit 236, Austin, TX 78702 + - link "Compass Exclusive 3915 Tilley Street $918,500 3 beds 3 baths 2,241 sqft 3915 Tilley Street, Austin, TX 78723": + - /url: /listing/3915-tilley-street-austin-tx-23262961 + - generic: Compass Exclusive + - img "3915 Tilley Street" + - generic: $918,500 + - generic: 3 beds + - generic: 3 baths + - generic: 2,241 sqft + - generic: 3915 Tilley Street, Austin, TX 78723 + - link "1004 Juanita Street, Unit 2 $1,199,000 4 beds 3.5 baths 2,122 sqft 1004 Juanita Street, Unit 2, Austin, TX 78704": + - /url: /listing/juanita-street-austin-tx-57428705 + - img "1004 Juanita Street, Unit 2" + - generic: $1,199,000 + - generic: 4 beds + - generic: 3.5 baths + - generic: 2,122 sqft + - generic: 1004 Juanita Street, Unit 2, Austin, TX 78704 + - link "Compass Exclusive 2100 Apricot Glen Drive $2,350,000 4 beds 3 baths 3,485 sqft 2100 Apricot Glen Drive, Austin, TX 78746": + - /url: /listing/2100-apricot-glen-drive-austin-tx-71178969 + - generic: Compass Exclusive + - img "2100 Apricot Glen Drive" + - generic: $2,350,000 + - generic: 4 beds + - generic: 3 baths + - generic: 3,485 sqft + - generic: 2100 Apricot Glen Drive, Austin, TX 78746 + - link "Compass Exclusive 4330 Olenick Street $450,000 2 beds 2 baths 973 sqft 4330 Olenick Street, Austin, TX 78723": + - /url: /listing/4330-olenick-street-austin-tx-04301553 + - generic: Compass Exclusive + - img "4330 Olenick Street" + - generic: $450,000 + - generic: 2 beds + - generic: 2 baths + - generic: 973 sqft + - generic: 4330 Olenick Street, Austin, TX 78723 + - link "Compass Exclusive 3305 Dolphin Drive $775,000 7 beds — baths 3,424 sqft 3305 Dolphin Drive, Austin, TX 78704": + - /url: /listing/3305-dolphin-drive-austin-tx-31707521 + - generic: Compass Exclusive + - img "3305 Dolphin Drive" + - generic: $775,000 + - generic: 7 beds + - generic: — baths + - generic: 3,424 sqft + - generic: 3305 Dolphin Drive, Austin, TX 78704 + - link "1036 Liberty Park Drive, Unit 38A $1,400,000 4 beds 3 baths 2,889 sqft 1036 Liberty Park Drive, Unit 38A, Austin, TX 78746": + - /url: /listing/1036-liberty-park-drive-unit-38a-austin-tx-06932321 + - img "1036 Liberty Park Drive, Unit 38A" + - generic: $1,400,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,889 sqft + - generic: 1036 Liberty Park Drive, Unit 38A, Austin, TX 78746 + - link "1710 Holly Street $595,000 1 beds 1 baths 686 sqft 1710 Holly Street, Austin, TX 78702": + - /url: /listing/1710-holly-street-austin-tx-84863153 + - img "1710 Holly Street" + - generic: $595,000 + - generic: 1 beds + - generic: 1 baths + - generic: 686 sqft + - generic: 1710 Holly Street, Austin, TX 78702 + - link "Compass Exclusive 1422 Palomino Ridge Drive $3,450,000 5 beds 4 baths 5,185 sqft 1422 Palomino Ridge Drive, Austin, TX 78733": + - /url: /listing/1422-palomino-ridge-drive-austin-tx-12995745 + - generic: Compass Exclusive + - img "1422 Palomino Ridge Drive" + - generic: $3,450,000 + - generic: 5 beds + - generic: 4 baths + - generic: 5,185 sqft + - generic: 1422 Palomino Ridge Drive, Austin, TX 78733 + - link "Compass Exclusive 7313 Carver Avenue $465,000 3 beds 2 baths 1,350 sqft 7313 Carver Avenue, Austin, TX 78752": + - /url: /listing/7313-carver-avenue-austin-tx-93390705 + - generic: Compass Exclusive + - img "7313 Carver Avenue" + - generic: $465,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,350 sqft + - generic: 7313 Carver Avenue, Austin, TX 78752 + - link "Compass Exclusive 4907 Majestic Drive $745,000 3 beds 2.5 baths 1,772 sqft 4907 Majestic Drive, Austin, TX 78745": + - /url: /listing/4907-majestic-drive-austin-tx-90510225 + - generic: Compass Exclusive + - img "4907 Majestic Drive" + - generic: $745,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,772 sqft + - generic: 4907 Majestic Drive, Austin, TX 78745 + - link "Compass Exclusive 8718 Tallwood Drive $979,000 4 beds 4 baths 2,408 sqft 8718 Tallwood Drive, Austin, TX 78759": + - /url: /listing/8718-tallwood-drive-austin-tx-22574777 + - generic: Compass Exclusive + - img "8718 Tallwood Drive" + - generic: $979,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,408 sqft + - generic: 8718 Tallwood Drive, Austin, TX 78759 + - link "Compass Exclusive 1402 Singleton Avenue, Unit B $515,000 2 beds 2 baths 1,086 sqft 1402 Singleton Avenue, Unit B, Austin, TX 78702": + - /url: /listing/1402-singleton-avenue-unit-b-austin-tx-59791705 + - generic: Compass Exclusive + - img "1402 Singleton Avenue, Unit B" + - generic: $515,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,086 sqft + - generic: 1402 Singleton Avenue, Unit B, Austin, TX 78702 + - link "Compass Exclusive 6603 Liliana Lane $1,825,000 4 beds 5 baths 3,609 sqft 6603 Liliana Lane, Austin, TX 78746": + - /url: /listing/6603-liliana-lane-austin-tx-89262425 + - generic: Compass Exclusive + - img "6603 Liliana Lane" + - generic: $1,825,000 + - generic: 4 beds + - generic: 5 baths + - generic: 3,609 sqft + - generic: 6603 Liliana Lane, Austin, TX 78746 + - link "2010 Northeast 54th Street $915,000 4 beds 3 baths 1,940 sqft 2010 Northeast 54th Street, Seattle, WA 98105": + - /url: /listing/2010-northeast-54th-street-seattle-wa-18874001 + - img "2010 Northeast 54th Street" + - generic: $915,000 + - generic: 4 beds + - generic: 3 baths + - generic: 1,940 sqft + - generic: 2010 Northeast 54th Street, Seattle, WA 98105 + - link "702 South Director Street $425,000 3 beds 1 baths 1,490 sqft 702 South Director Street, Seattle, WA 98108": + - /url: /listing/702-south-director-street-seattle-wa-06075617 + - img "702 South Director Street" + - generic: $425,000 + - generic: 3 beds + - generic: 1 baths + - generic: 1,490 sqft + - generic: 702 South Director Street, Seattle, WA 98108 + - link "941 11th Avenue East, Unit 3 $2,350,000 2 beds 1.75 baths 2,121 sqft 941 11th Avenue East, Unit 3, Seattle, WA 98102": + - /url: /listing/941-11th-avenue-east-unit-3-seattle-wa-21234601 + - img "941 11th Avenue East, Unit 3" + - generic: $2,350,000 + - generic: 2 beds + - generic: 1.75 baths + - generic: 2,121 sqft + - generic: 941 11th Avenue East, Unit 3, Seattle, WA 98102 + - link "5807 55th Avenue Northeast, Unit B $749,000 3 beds 4 baths 1,510 sqft 5807 55th Avenue Northeast, Unit B, Seattle, WA 98105": + - /url: /listing/5807-55th-avenue-northeast-unit-b-seattle-wa-90250753 + - img "5807 55th Avenue Northeast, Unit B" + - generic: $749,000 + - generic: 3 beds + - generic: 4 baths + - generic: 1,510 sqft + - generic: 5807 55th Avenue Northeast, Unit B, Seattle, WA 98105 + - link "610 27th Avenue East $1,315,000 5 beds 2 baths 2,180 sqft 610 27th Avenue East, Seattle, WA 98112": + - /url: /listing/610-27th-avenue-east-seattle-wa-90349753 + - img "610 27th Avenue East" + - generic: $1,315,000 + - generic: 5 beds + - generic: 2 baths + - generic: 2,180 sqft + - generic: 610 27th Avenue East, Seattle, WA 98112 + - link "2818 Boyer Avenue East, Unit 6 $780,000 — beds — baths 635 sqft 2818 Boyer Avenue East, Unit 6, Seattle, WA 98102": + - /url: /listing/2818-boyer-avenue-east-unit-6-seattle-wa-72475809 + - img "2818 Boyer Avenue East, Unit 6" + - generic: $780,000 + - generic: — beds + - generic: — baths + - generic: 635 sqft + - generic: 2818 Boyer Avenue East, Unit 6, Seattle, WA 98102 + - link "300 Virginia Street, Unit 1108 $595,000 1 beds 1 baths 548 sqft 300 Virginia Street, Unit 1108, Seattle, WA 98101": + - /url: /listing/300-virginia-street-unit-1108-seattle-wa-05882073 + - img "300 Virginia Street, Unit 1108" + - generic: $595,000 + - generic: 1 beds + - generic: 1 baths + - generic: 548 sqft + - generic: 300 Virginia Street, Unit 1108, Seattle, WA 98101 + - link "6735 Alonzo Avenue Northwest, Unit A $1,075,000 3 beds 2 baths 1,943 sqft 6735 Alonzo Avenue Northwest, Unit A, Seattle, WA 98117": + - /url: /listing/6735-alonzo-avenue-northwest-unit-a-seattle-wa-29892833 + - img "6735 Alonzo Avenue Northwest, Unit A" + - generic: $1,075,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,943 sqft + - generic: 6735 Alonzo Avenue Northwest, Unit A, Seattle, WA 98117 + - link "2400 Aurora Avenue North, Unit 210 $1,495,000 3 beds 2.25 baths 2,517 sqft 2400 Aurora Avenue North, Unit 210, Seattle, WA 98109": + - /url: /listing/2400-aurora-avenue-north-unit-210-seattle-wa-69429673 + - img "2400 Aurora Avenue North, Unit 210" + - generic: $1,495,000 + - generic: 3 beds + - generic: 2.25 baths + - generic: 2,517 sqft + - generic: 2400 Aurora Avenue North, Unit 210, Seattle, WA 98109 + - link "12569 37th Avenue Northeast $1,194,000 4 beds 3 baths 2,500 sqft 12569 37th Avenue Northeast, Seattle, WA 98125": + - /url: /listing/12569-37th-avenue-northeast-seattle-wa-79972441 + - img "12569 37th Avenue Northeast" + - generic: $1,194,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,500 sqft + - generic: 12569 37th Avenue Northeast, Seattle, WA 98125 + - link "2040 13th Avenue West, Unit 33 $625,000 2 beds 2 baths 976 sqft 2040 13th Avenue West, Unit 33, Seattle, WA 98119": + - /url: /listing/2040-13th-avenue-west-unit-33-seattle-wa-63141689 + - img "2040 13th Avenue West, Unit 33" + - generic: $625,000 + - generic: 2 beds + - generic: 2 baths + - generic: 976 sqft + - generic: 2040 13th Avenue West, Unit 33, Seattle, WA 98119 + - link "300 Virginia Street, Unit 811 $595,000 1 beds 1 baths 586 sqft 300 Virginia Street, Unit 811, Seattle, WA 98101": + - /url: /listing/300-virginia-street-unit-811-seattle-wa-51071737 + - img "300 Virginia Street, Unit 811" + - generic: $595,000 + - generic: 1 beds + - generic: 1 baths + - generic: 586 sqft + - generic: 300 Virginia Street, Unit 811, Seattle, WA 98101 + - link "7541 Seward Park Avenue South $1,725,000 5 beds 3 baths 2,645 sqft 7541 Seward Park Avenue South, Seattle, WA 98118": + - /url: /listing/7541-seward-park-avenue-south-seattle-wa-96085721 + - img "7541 Seward Park Avenue South" + - generic: $1,725,000 + - generic: 5 beds + - generic: 3 baths + - generic: 2,645 sqft + - generic: 7541 Seward Park Avenue South, Seattle, WA 98118 + - link "300 Virginia Street, Unit 809 $1,080,000 2 beds 1.75 baths 940 sqft 300 Virginia Street, Unit 809, Seattle, WA 98101": + - /url: /listing/300-virginia-street-unit-809-seattle-wa-21535001 + - img "300 Virginia Street, Unit 809" + - generic: $1,080,000 + - generic: 2 beds + - generic: 1.75 baths + - generic: 940 sqft + - generic: 300 Virginia Street, Unit 809, Seattle, WA 98101 + - link "Pending 2501 Canterbury Lane East, Unit 322 $499,000 2 beds 1 baths 891 sqft 2501 Canterbury Lane East, Unit 322, Seattle, WA 98112": + - /url: /listing/2501-canterbury-lane-east-unit-322-seattle-wa-56297009 + - generic: Pending + - img "2501 Canterbury Lane East, Unit 322" + - generic: $499,000 + - generic: 2 beds + - generic: 1 baths + - generic: 891 sqft + - generic: 2501 Canterbury Lane East, Unit 322, Seattle, WA 98112 + - link "4903 50th Avenue South $1,175,000 3 beds 2 baths 1,800 sqft 4903 50th Avenue South, Seattle, WA 98118": + - /url: /listing/4903-50th-avenue-south-seattle-wa-64379729 + - img "4903 50th Avenue South" + - generic: $1,175,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,800 sqft + - generic: 4903 50th Avenue South, Seattle, WA 98118 + - link "7710 57th Avenue Northeast $2,150,000 4 beds 3 baths 3,772 sqft 7710 57th Avenue Northeast, Seattle, WA 98115": + - /url: /listing/7710-57th-avenue-northeast-seattle-wa-04119657 + - img "7710 57th Avenue Northeast" + - generic: $2,150,000 + - generic: 4 beds + - generic: 3 baths + - generic: 3,772 sqft + - generic: 7710 57th Avenue Northeast, Seattle, WA 98115 + - link "6546 32nd Avenue Northeast, Unit A $1,075,000 4 beds 4 baths 1,940 sqft 6546 32nd Avenue Northeast, Unit A, Seattle, WA 98115": + - /url: /listing/6546-32nd-avenue-northeast-unit-a-seattle-wa-40020505 + - img "6546 32nd Avenue Northeast, Unit A" + - generic: $1,075,000 + - generic: 4 beds + - generic: 4 baths + - generic: 1,940 sqft + - generic: 6546 32nd Avenue Northeast, Unit A, Seattle, WA 98115 + - link "2349 Harbor Avenue Southwest, Unit 701 $750,000 2 beds 2 baths 1,414 sqft 2349 Harbor Avenue Southwest, Unit 701, Seattle, WA 98126": + - /url: /listing/2349-harbor-avenue-southwest-unit-701-seattle-wa-74197241 + - img "2349 Harbor Avenue Southwest, Unit 701" + - generic: $750,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,414 sqft + - generic: 2349 Harbor Avenue Southwest, Unit 701, Seattle, WA 98126 + - link "2021 1st Avenue, Unit F20 $1,995,000 2 beds 2.25 baths 1,900 sqft 2021 1st Avenue, Unit F20, Seattle, WA 98121": + - /url: /listing/2021-1st-avenue-unit-f20-seattle-wa-62666769 + - img "2021 1st Avenue, Unit F20" + - generic: $1,995,000 + - generic: 2 beds + - generic: 2.25 baths + - generic: 1,900 sqft + - generic: 2021 1st Avenue, Unit F20, Seattle, WA 98121 + - link "15009 Westminster Way North $629,995 3 beds 3 baths 1,219 sqft 15009 Westminster Way North, Seattle, WA 98133": + - /url: /listing/15009-westminster-way-north-seattle-wa-95740273 + - img "15009 Westminster Way North" + - generic: $629,995 + - generic: 3 beds + - generic: 3 baths + - generic: 1,219 sqft + - generic: 15009 Westminster Way North, Seattle, WA 98133 + - link "Pending 1419 McGilvra Boulevard East $1,995,000 3 beds 2.5 baths 3,430 sqft 1419 McGilvra Boulevard East, Seattle, WA 98112": + - /url: /listing/1419-mcgilvra-boulevard-east-seattle-wa-28302473 + - generic: Pending + - img "1419 McGilvra Boulevard East" + - generic: $1,995,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 3,430 sqft + - generic: 1419 McGilvra Boulevard East, Seattle, WA 98112 + - link "1760 Northwest 56th Street, Unit 309 $399,000 — beds — baths 698 sqft 1760 Northwest 56th Street, Unit 309, Seattle, WA 98107": + - /url: /listing/1760-northwest-56th-street-unit-309-seattle-wa-95713321 + - img "1760 Northwest 56th Street, Unit 309" + - generic: $399,000 + - generic: — beds + - generic: — baths + - generic: 698 sqft + - generic: 1760 Northwest 56th Street, Unit 309, Seattle, WA 98107 + - link "5316 31st Avenue South $985,000 7 beds 4 baths 3,100 sqft 5316 31st Avenue South, Seattle, WA 98108": + - /url: /listing/5316-31st-avenue-south-seattle-wa-69320529 + - img "5316 31st Avenue South" + - generic: $985,000 + - generic: 7 beds + - generic: 4 baths + - generic: 3,100 sqft + - generic: 5316 31st Avenue South, Seattle, WA 98108 + - link "Compass Exclusive 740 North Clayton Street $1,850,000 3 beds 5 baths 3,612 sqft 740 North Clayton Street, Denver, CO 80206": + - /url: /listing/740-north-clayton-street-denver-co-51220497 + - generic: Compass Exclusive + - img "740 North Clayton Street" + - generic: $1,850,000 + - generic: 3 beds + - generic: 5 baths + - generic: 3,612 sqft + - generic: 740 North Clayton Street, Denver, CO 80206 + - link "Compass Exclusive 1411 Zenobia Street $685,000 3 beds 3 baths 1,585 sqft 1411 Zenobia Street, Denver, CO 80204": + - /url: /listing/1411-zenobia-street-denver-co-59137577 + - generic: Compass Exclusive + - img "1411 Zenobia Street" + - generic: $685,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,585 sqft + - generic: 1411 Zenobia Street, Denver, CO 80204 + - link "Compass Exclusive 1304 North Raleigh Street $635,000 2 beds 3 baths 1,200 sqft 1304 North Raleigh Street, Denver, CO 80204": + - /url: /listing/1304-north-raleigh-street-denver-co-51054009 + - generic: Compass Exclusive + - img "1304 North Raleigh Street" + - generic: $635,000 + - generic: 2 beds + - generic: 3 baths + - generic: 1,200 sqft + - generic: 1304 North Raleigh Street, Denver, CO 80204 + - link "Compass Exclusive 1370 Zenobia Street $625,000 4 beds 2 baths 1,800 sqft 1370 Zenobia Street, Denver, CO 80204": + - /url: /listing/1370-zenobia-street-denver-co-42065833 + - generic: Compass Exclusive + - img "1370 Zenobia Street" + - generic: $625,000 + - generic: 4 beds + - generic: 2 baths + - generic: 1,800 sqft + - generic: 1370 Zenobia Street, Denver, CO 80204 + - link "Compass Exclusive 1695 Zenobia Street, Unit 2 $1,500,000 4 beds 4 baths 2,593 sqft 1695 Zenobia Street, Unit 2, Denver, CO 80204": + - /url: /listing/1695-zenobia-street-unit-2-denver-co-39951841 + - generic: Compass Exclusive + - img "1695 Zenobia Street, Unit 2" + - generic: $1,500,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,593 sqft + - generic: 1695 Zenobia Street, Unit 2, Denver, CO 80204 + - link "Compass Exclusive 4922 Lowell Boulevard, Unit 4 $649,900 2 beds 4 baths 1,407 sqft 4922 Lowell Boulevard, Unit 4, Denver, CO 80221": + - /url: /listing/4922-lowell-boulevard-unit-4-denver-co-37985593 + - generic: Compass Exclusive + - img "4922 Lowell Boulevard, Unit 4" + - generic: $649,900 + - generic: 2 beds + - generic: 4 baths + - generic: 1,407 sqft + - generic: 4922 Lowell Boulevard, Unit 4, Denver, CO 80221 + - link "Compass Exclusive 1939 South Gilpin Street $810,000 3 beds 2 baths 1,178 sqft 1939 South Gilpin Street, Denver, CO 80210": + - /url: /listing/1939-south-gilpin-street-denver-co-86276025 + - generic: Compass Exclusive + - img "1939 South Gilpin Street" + - generic: $810,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,178 sqft + - generic: 1939 South Gilpin Street, Denver, CO 80210 + - link "Compass Exclusive 3023 Wyandot Street $3,200,000 6 beds 8 baths 6,468 sqft 3023 Wyandot Street, Denver, CO 80211": + - /url: /listing/3023-wyandot-street-denver-co-39690273 + - generic: Compass Exclusive + - img "3023 Wyandot Street" + - generic: $3,200,000 + - generic: 6 beds + - generic: 8 baths + - generic: 6,468 sqft + - generic: 3023 Wyandot Street, Denver, CO 80211 + - link "Compass Exclusive 1430 Pierce Street $639,000 3 beds 3 baths 1,895 sqft 1430 Pierce Street, Denver, CO 80214": + - /url: /listing/1430-pierce-street-denver-co-26915801 + - generic: Compass Exclusive + - img "1430 Pierce Street" + - generic: $639,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,895 sqft + - generic: 1430 Pierce Street, Denver, CO 80214 + - link "1182 Clermont Street, Unit 1B $150,000 1 beds 1 baths 454 sqft 1182 Clermont Street, Unit 1B, Denver, CO 80220": + - /url: /listing/1182-clermont-street-unit-1b-denver-co-77033161 + - img "1182 Clermont Street, Unit 1B" + - generic: $150,000 + - generic: 1 beds + - generic: 1 baths + - generic: 454 sqft + - generic: 1182 Clermont Street, Unit 1B, Denver, CO 80220 + - link "Compass Exclusive 1440 Little Raven Street, Unit 204 $630,000 2 beds 2 baths 1,168 sqft 1440 Little Raven Street, Unit 204, Denver, CO 80202": + - /url: /listing/1440-little-raven-street-unit-204-denver-co-92744361 + - generic: Compass Exclusive + - img "1440 Little Raven Street, Unit 204" + - generic: $630,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,168 sqft + - generic: 1440 Little Raven Street, Unit 204, Denver, CO 80202 + - link "Compass Exclusive South Grant Street $1,050,000 3 beds 2 baths 1,881 sqft South Grant Street, Denver, CO 80203": + - /url: /listing/south-grant-street-denver-co-94195537 + - generic: Compass Exclusive + - img "South Grant Street" + - generic: $1,050,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,881 sqft + - generic: South Grant Street, Denver, CO 80203 + - link "Compass Exclusive 4515 Stuart Street $1,595,000 4 beds 5 baths 3,620 sqft 4515 Stuart Street, Denver, CO 80212": + - /url: /listing/4515-stuart-street-denver-co-03971705 + - generic: Compass Exclusive + - img "4515 Stuart Street" + - generic: $1,595,000 + - generic: 4 beds + - generic: 5 baths + - generic: 3,620 sqft + - generic: 4515 Stuart Street, Denver, CO 80212 + - link "3414 Lawrence Street $1,149,000 4 beds 5 baths 2,808 sqft 3414 Lawrence Street, Denver, CO 80205": + - /url: /listing/3414-lawrence-street-denver-co-31891505 + - img "3414 Lawrence Street" + - generic: $1,149,000 + - generic: 4 beds + - generic: 5 baths + - generic: 2,808 sqft + - generic: 3414 Lawrence Street, Denver, CO 80205 + - link "4225 West 13th Avenue $799,000 3 beds 4 baths 1,818 sqft 4225 West 13th Avenue, Denver, CO 80204": + - /url: /listing/4225-west-13th-avenue-denver-co-60687425 + - img "4225 West 13th Avenue" + - generic: $799,000 + - generic: 3 beds + - generic: 4 baths + - generic: 1,818 sqft + - generic: 4225 West 13th Avenue, Denver, CO 80204 + - link "4200 West 17th Avenue, Unit 614 $699,000 1 beds 2 baths 954 sqft 4200 West 17th Avenue, Unit 614, Denver, CO 80204": + - /url: /listing/4200-west-17th-avenue-unit-614-denver-co-73524889 + - img "4200 West 17th Avenue, Unit 614" + - generic: $699,000 + - generic: 1 beds + - generic: 2 baths + - generic: 954 sqft + - generic: 4200 West 17th Avenue, Unit 614, Denver, CO 80204 + - link "Undisclosed Address $297,000 — beds — baths 559 sqft Undisclosed Address, Denver, CO 80203": + - /url: /listing/undisclosed-address-denver-co-33349817 + - img "Undisclosed Address" + - generic: $297,000 + - generic: — beds + - generic: — baths + - generic: 559 sqft + - generic: Undisclosed Address, Denver, CO 80203 + - link "2500 Walnut Street, Unit 201 $548,999 — beds — baths 1,027 sqft 2500 Walnut Street, Unit 201, Denver, CO 80205": + - /url: /listing/2500-walnut-street-unit-201-denver-co-65506201 + - img "2500 Walnut Street, Unit 201" + - generic: $548,999 + - generic: — beds + - generic: — baths + - generic: 1,027 sqft + - generic: 2500 Walnut Street, Unit 201, Denver, CO 80205 + - link "2056 South Lincoln Street $685,000 3 beds 2 baths 1,536 sqft 2056 South Lincoln Street, Denver, CO 80210": + - /url: /listing/2056-south-lincoln-street-denver-co-78470569 + - img "2056 South Lincoln Street" + - generic: $685,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,536 sqft + - generic: 2056 South Lincoln Street, Denver, CO 80210 + - link "2417 South Lafayette Street $1,169,000 3 beds 4 baths 2,365 sqft 2417 South Lafayette Street, Denver, CO 80210": + - /url: /listing/2417-south-lafayette-street-denver-co-90943449 + - img "2417 South Lafayette Street" + - generic: $1,169,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,365 sqft + - generic: 2417 South Lafayette Street, Denver, CO 80210 + - link "1350 Josephine Street, Unit 206 $214,900 1 beds 1 baths 606 sqft 1350 Josephine Street, Unit 206, Denver, CO 80206": + - /url: /listing/1350-josephine-street-unit-206-denver-co-51051441 + - img "1350 Josephine Street, Unit 206" + - generic: $214,900 + - generic: 1 beds + - generic: 1 baths + - generic: 606 sqft + - generic: 1350 Josephine Street, Unit 206, Denver, CO 80206 + - link "1431 South Glencoe Street $650,000 3 beds 2 baths 1,094 sqft 1431 South Glencoe Street, Denver, CO 80222": + - /url: /listing/1431-south-glencoe-street-denver-co-20637969 + - img "1431 South Glencoe Street" + - generic: $650,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,094 sqft + - generic: 1431 South Glencoe Street, Denver, CO 80222 + - link "4410 Raritan Street $440,000 2 beds 1 baths 758 sqft 4410 Raritan Street, Denver, CO 80211": + - /url: /listing/4410-raritan-street-denver-co-14388401 + - img "4410 Raritan Street" + - generic: $440,000 + - generic: 2 beds + - generic: 1 baths + - generic: 758 sqft + - generic: 4410 Raritan Street, Denver, CO 80211 + - link "825 East Cooper Avenue $24,995,000 4 beds 4 baths 3,613 sqft 825 East Cooper Avenue, Aspen, CO 81611": + - /url: /listing/825-east-cooper-avenue-aspen-co-53959097 + - img "825 East Cooper Avenue" + - generic: $24,995,000 + - generic: 4 beds + - generic: 4 baths + - generic: 3,613 sqft + - generic: 825 East Cooper Avenue, Aspen, CO 81611 + - link "830 East Durant Avenue $24,950,000 4 beds 4 baths 4,005 sqft 830 East Durant Avenue, Aspen, CO 81611": + - /url: /listing/830-east-durant-avenue-aspen-co-39990729 + - img "830 East Durant Avenue" + - generic: $24,950,000 + - generic: 4 beds + - generic: 4 baths + - generic: 4,005 sqft + - generic: 830 East Durant Avenue, Aspen, CO 81611 + - link "730 Twining Flats Road $8,500,000 3 beds 3.5 baths 4,992 sqft 730 Twining Flats Road, Aspen, CO 81611": + - /url: /listing/730-twining-flats-road-aspen-co-70769025 + - img "730 Twining Flats Road" + - generic: $8,500,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 4,992 sqft + - generic: 730 Twining Flats Road, Aspen, CO 81611 + - link "Pending 190 West Lupine Drive $14,995,000 5 beds 6 baths 5,470 sqft 190 West Lupine Drive, Aspen, CO 81611": + - /url: /listing/190-west-lupine-drive-aspen-co-82072873 + - generic: Pending + - img "190 West Lupine Drive" + - generic: $14,995,000 + - generic: 5 beds + - generic: 6 baths + - generic: 5,470 sqft + - generic: 190 West Lupine Drive, Aspen, CO 81611 + - link "42703 Highway 82, Unit B $10,950,000 5 beds 5.5 baths 4,154 sqft 42703 Highway 82, Unit B, Aspen, CO 81611": + - /url: /listing/42703-highway-82-unit-b-aspen-co-90959137 + - img "42703 Highway 82, Unit B" + - generic: $10,950,000 + - generic: 5 beds + - generic: 5.5 baths + - generic: 4,154 sqft + - generic: 42703 Highway 82, Unit B, Aspen, CO 81611 + - link "Pending 120 Turtle Cove $4,250,000 3 beds 3 baths 2,342 sqft 120 Turtle Cove, Aspen, CO 81611": + - /url: /listing/120-turtle-cove-aspen-co-64551841 + - generic: Pending + - img "120 Turtle Cove" + - generic: $4,250,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,342 sqft + - generic: 120 Turtle Cove, Aspen, CO 81611 + - link "100 Difficult Lane $25,900,000 3 beds 4 baths 2,795 sqft 100 Difficult Lane, Aspen, CO 81611": + - /url: /listing/100-difficult-lane-aspen-co-46556249 + - img "100 Difficult Lane" + - generic: $25,900,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,795 sqft + - generic: 100 Difficult Lane, Aspen, CO 81611 + - link "803 East Durant Avenue, Unit 8 $4,350,000 2 beds 2 baths 960 sqft 803 East Durant Avenue, Unit 8, Aspen, CO 81611": + - /url: /listing/803-east-durant-avenue-unit-8-aspen-co-85968689 + - img "803 East Durant Avenue, Unit 8" + - generic: $4,350,000 + - generic: 2 beds + - generic: 2 baths + - generic: 960 sqft + - generic: 803 East Durant Avenue, Unit 8, Aspen, CO 81611 + - link "41 Popcorn Lane $49,900,000 5 beds 9 baths 14,960 sqft 41 Popcorn Lane, Aspen, CO 81611": + - /url: /listing/41-popcorn-lane-aspen-co-87132233 + - img "41 Popcorn Lane" + - generic: $49,900,000 + - generic: 5 beds + - generic: 9 baths + - generic: 14,960 sqft + - generic: 41 Popcorn Lane, Aspen, CO 81611 + - link "825 Ute Avenue, Unit A $18,450,000 4 beds 5 baths 3,771 sqft 825 Ute Avenue, Unit A, Aspen, CO 81611": + - /url: /listing/825-ute-avenue-unit-a-aspen-co-50257457 + - img "825 Ute Avenue, Unit A" + - generic: $18,450,000 + - generic: 4 beds + - generic: 5 baths + - generic: 3,771 sqft + - generic: 825 Ute Avenue, Unit A, Aspen, CO 81611 + - link "332 Vine Street $2,500,000 2 beds 2 baths 878 sqft 332 Vine Street, Aspen, CO 81611": + - /url: /listing/332-vine-street-aspen-co-85552009 + - img "332 Vine Street" + - generic: $2,500,000 + - generic: 2 beds + - generic: 2 baths + - generic: 878 sqft + - generic: 332 Vine Street, Aspen, CO 81611 + - link "605 West Bleeker Street $18,450,000 4 beds 5.5 baths 4,314 sqft 605 West Bleeker Street, Aspen, CO 81611": + - /url: /listing/605-west-bleeker-street-aspen-co-48223185 + - img "605 West Bleeker Street" + - generic: $18,450,000 + - generic: 4 beds + - generic: 5.5 baths + - generic: 4,314 sqft + - generic: 605 West Bleeker Street, Aspen, CO 81611 + - link "315 East Dean Street, Unit B62 $425,000 2 beds 2.5 baths 1,473 sqft 315 East Dean Street, Unit B62, Aspen, CO 81611": + - /url: /listing/315-east-dean-street-unit-b62-aspen-co-52455905 + - img "315 East Dean Street, Unit B62" + - generic: $425,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,473 sqft + - generic: 315 East Dean Street, Unit B62, Aspen, CO 81611 + - link "315 East Dean Street, Unit B51 $1,495,000 2 beds 2.5 baths 1,612 sqft 315 East Dean Street, Unit B51, Aspen, CO 81611": + - /url: /listing/315-east-dean-street-unit-b51-aspen-co-57096177 + - img "315 East Dean Street, Unit B51" + - generic: $1,495,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,612 sqft + - generic: 315 East Dean Street, Unit B51, Aspen, CO 81611 + - link "315 East Dean Street, Unit B55 $1,750,000 3 beds 3 baths 2,048 sqft 315 East Dean Street, Unit B55, Aspen, CO 81611": + - /url: /listing/315-east-dean-street-unit-b55-aspen-co-61527849 + - img "315 East Dean Street, Unit B55" + - generic: $1,750,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,048 sqft + - generic: 315 East Dean Street, Unit B55, Aspen, CO 81611 + - link "610 South W End Street, Unit D201 $4,795,000 2 beds 2 baths 1,052 sqft 610 South W End Street, Unit D201, Aspen, CO 81611": + - /url: /listing/610-south-w-end-street-unit-d201-aspen-co-47448697 + - img "610 South W End Street, Unit D201" + - generic: $4,795,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,052 sqft + - generic: 610 South W End Street, Unit D201, Aspen, CO 81611 + - link "155 Nighthawk Drive $18,950,000 6 beds 8 baths 5,392 sqft 155 Nighthawk Drive, Aspen, CO 81612": + - /url: /listing/155-nighthawk-drive-aspen-co-93831713 + - img "155 Nighthawk Drive" + - generic: $18,950,000 + - generic: 6 beds + - generic: 8 baths + - generic: 5,392 sqft + - generic: 155 Nighthawk Drive, Aspen, CO 81612 + - link "137 Ridge Trail $660,000 3 beds 1 baths 910 sqft 137 Ridge Trail, Aspen, CO 81611": + - /url: /listing/137-ridge-trail-aspen-co-72248057 + - img "137 Ridge Trail" + - generic: $660,000 + - generic: 3 beds + - generic: 1 baths + - generic: 910 sqft + - generic: 137 Ridge Trail, Aspen, CO 81611 + - link "415 East Dean Street, Unit 44ABC WEEKS 51/52 $775,000 3 beds 3 baths 2,120 sqft 415 East Dean Street, Unit 44ABC WEEKS 51/52, Aspen, CO 81611": + - /url: /listing/415-east-dean-street-unit-44abc-weeks-51-52-aspen-co-80487609 + - img "415 East Dean Street, Unit 44ABC WEEKS 51/52" + - generic: $775,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,120 sqft + - generic: 415 East Dean Street, Unit 44ABC WEEKS 51/52, Aspen, CO 81611 + - link "450 South Original Street, Unit 8 $3,995,000 2 beds 2 baths 932 sqft 450 South Original Street, Unit 8, Aspen, CO 81611": + - /url: /listing/450-south-original-street-unit-8-aspen-co-40304113 + - img "450 South Original Street, Unit 8" + - generic: $3,995,000 + - generic: 2 beds + - generic: 2 baths + - generic: 932 sqft + - generic: 450 South Original Street, Unit 8, Aspen, CO 81611 + - link "McLain Flats $5,450,000 — beds 0 baths — sqft McLain Flats, Aspen, CO 81612": + - /url: /listing/mclain-flats-aspen-co-24827361 + - img "McLain Flats" + - generic: $5,450,000 + - generic: — beds + - generic: 0 baths + - generic: — sqft + - generic: McLain Flats, Aspen, CO 81612 + - link "725 East Durant Avenue, Unit 22 $3,199,000 1 beds 1.5 baths 828 sqft 725 East Durant Avenue, Unit 22, Aspen, CO 81611": + - /url: /listing/725-east-durant-avenue-unit-22-aspen-co-54767201 + - img "725 East Durant Avenue, Unit 22" + - generic: $3,199,000 + - generic: 1 beds + - generic: 1.5 baths + - generic: 828 sqft + - generic: 725 East Durant Avenue, Unit 22, Aspen, CO 81611 + - link "1038 Owl Creek Road $10,995,000 4 beds 4 baths 5,047 sqft 1038 Owl Creek Road, Aspen, CO 81611": + - /url: /listing/1038-owl-creek-road-aspen-co-75064801 + - img "1038 Owl Creek Road" + - generic: $10,995,000 + - generic: 4 beds + - generic: 4 baths + - generic: 5,047 sqft + - generic: 1038 Owl Creek Road, Aspen, CO 81611 + - link "1220 Red Butte Drive $22,950,000 5 beds 5.5 baths 5,872 sqft 1220 Red Butte Drive, Aspen, CO 81611": + - /url: /listing/1220-red-butte-drive-aspen-co-21093121 + - img "1220 Red Butte Drive" + - generic: $22,950,000 + - generic: 5 beds + - generic: 5.5 baths + - generic: 5,872 sqft + - generic: 1220 Red Butte Drive, Aspen, CO 81611 + - link "Pending 864 Moore Drive $39,500,000 7 beds 9 baths 10,615 sqft 864 Moore Drive, Aspen, CO 81611": + - /url: /listing/864-moore-drive-aspen-co-64367481 + - generic: Pending + - img "864 Moore Drive" + - generic: $39,500,000 + - generic: 7 beds + - generic: 9 baths + - generic: 10,615 sqft + - generic: 864 Moore Drive, Aspen, CO 81611 + - link "1162 Tiehack Road $38,500,000 6 beds 7.5 baths 7,811 sqft 1162 Tiehack Road, Aspen, CO 81611": + - /url: /listing/1162-tiehack-road-aspen-co-58693761 + - img "1162 Tiehack Road" + - generic: $38,500,000 + - generic: 6 beds + - generic: 7.5 baths + - generic: 7,811 sqft + - generic: 1162 Tiehack Road, Aspen, CO 81611 + - link "1395 Sierra Vista Drive, Unit 1 $10,995,000 4 beds 5 baths 4,390 sqft 1395 Sierra Vista Drive, Unit 1, Aspen, CO 81611": + - /url: /listing/1395-sierra-vista-drive-unit-1-aspen-co-22259585 + - img "1395 Sierra Vista Drive, Unit 1" + - generic: $10,995,000 + - generic: 4 beds + - generic: 5 baths + - generic: 4,390 sqft + - generic: 1395 Sierra Vista Drive, Unit 1, Aspen, CO 81611 + - link "415 East Dean St Unit 5 Week 5 $145,000 2 beds 2 baths 1,519 sqft 415 East Dean St Unit 5 Week 5, Aspen, CO 81611": + - /url: /listing/415-east-dean-st-unit-5-week-5-aspen-co-25029505 + - img "415 East Dean St Unit 5 Week 5" + - generic: $145,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,519 sqft + - generic: 415 East Dean St Unit 5 Week 5, Aspen, CO 81611 + - 'link "415 East Dean St # 35 Week 35 $175,000 3 beds 3 baths 1,831 sqft 415 East Dean St # 35 Week 35, Aspen, CO 81611"': + - /url: /listing/415-east-dean-st-35-week-35-aspen-co-62298705 + - 'img "415 East Dean St # 35 Week 35"' + - generic: $175,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,831 sqft + - generic: "415 East Dean St # 35 Week 35, Aspen, CO 81611" + - link "501 West Main Street, Unit A101 $1,925,000 1 beds 1 baths 460 sqft 501 West Main Street, Unit A101, Aspen, CO 81611": + - /url: /listing/501-west-main-street-unit-a101-aspen-co-44142641 + - img "501 West Main Street, Unit A101" + - generic: $1,925,000 + - generic: 1 beds + - generic: 1 baths + - generic: 460 sqft + - generic: 501 West Main Street, Unit A101, Aspen, CO 81611 + - link "Tbd Pfister Drive $4,500,000 — beds 0 baths — sqft Tbd Pfister Drive, Aspen, CO 81611": + - /url: /listing/tbd-pfister-drive-aspen-co-12374913 + - img "Tbd Pfister Drive" + - generic: $4,500,000 + - generic: — beds + - generic: 0 baths + - generic: — sqft + - generic: Tbd Pfister Drive, Aspen, CO 81611 + - link "1718 Corcoran Street Northwest, Unit 5 $315,000 1 beds 1 baths 563 sqft 1718 Corcoran Street Northwest, Unit 5, Washington, DC 20009": + - /url: /listing/1718-corcoran-street-northwest-unit-5-washington-dc-52722345 + - img "1718 Corcoran Street Northwest, Unit 5" + - generic: $315,000 + - generic: 1 beds + - generic: 1 baths + - generic: 563 sqft + - generic: 1718 Corcoran Street Northwest, Unit 5, Washington, DC 20009 + - link "Compass Exclusive 1423 R Street Northwest, Unit 105 $780,000 2 beds 2 baths 1,120 sqft 1423 R Street Northwest, Unit 105, Washington, DC 20009": + - /url: /listing/1423-r-street-northwest-unit-105-washington-dc-32557289 + - generic: Compass Exclusive + - img "1423 R Street Northwest, Unit 105" + - generic: $780,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,120 sqft + - generic: 1423 R Street Northwest, Unit 105, Washington, DC 20009 + - link "Compass Exclusive 1848 Wyoming Avenue Northwest, Unit 201 $815,000 2 beds 2 baths 1,132 sqft 1848 Wyoming Avenue Northwest, Unit 201, Washington, DC 20009": + - /url: /listing/1848-wyoming-avenue-northwest-unit-201-washington-dc-94495537 + - generic: Compass Exclusive + - img "1848 Wyoming Avenue Northwest, Unit 201" + - generic: $815,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,132 sqft + - generic: 1848 Wyoming Avenue Northwest, Unit 201, Washington, DC 20009 + - link "Compass Exclusive 2009 Columbia Road Northwest, Unit 2 $774,900 2 beds 2 baths 1,150 sqft 2009 Columbia Road Northwest, Unit 2, Washington, DC 20009": + - /url: /listing/2009-columbia-road-northwest-unit-2-washington-dc-41184241 + - generic: Compass Exclusive + - img "2009 Columbia Road Northwest, Unit 2" + - generic: $774,900 + - generic: 2 beds + - generic: 2 baths + - generic: 1,150 sqft + - generic: 2009 Columbia Road Northwest, Unit 2, Washington, DC 20009 + - link "Compass Exclusive 1226 11th Street Northwest, Unit 200 $550,000 — beds 2 baths 880 sqft 1226 11th Street Northwest, Unit 200, Washington, DC 20001": + - /url: /listing/1226-11th-street-northwest-unit-200-washington-dc-74847953 + - generic: Compass Exclusive + - img "1226 11th Street Northwest, Unit 200" + - generic: $550,000 + - generic: — beds + - generic: 2 baths + - generic: 880 sqft + - generic: 1226 11th Street Northwest, Unit 200, Washington, DC 20001 + - link "Compass Exclusive 1010 Massachusetts Avenue Northwest, Unit 207 $695,000 2 beds 2 baths 994 sqft 1010 Massachusetts Avenue Northwest, Unit 207, Washington, DC 20001": + - /url: /listing/1010-massachusetts-avenue-northwest-unit-207-washington-dc-42103697 + - generic: Compass Exclusive + - img "1010 Massachusetts Avenue Northwest, Unit 207" + - generic: $695,000 + - generic: 2 beds + - generic: 2 baths + - generic: 994 sqft + - generic: 1010 Massachusetts Avenue Northwest, Unit 207, Washington, DC 20001 + - link "1300 13th Street Northwest, Unit 905 $925,000 2 beds 2 baths 1,156 sqft 1300 13th Street Northwest, Unit 905, Washington, DC 20005": + - /url: /listing/1300-13th-street-northwest-unit-905-washington-dc-85950569 + - img "1300 13th Street Northwest, Unit 905" + - generic: $925,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,156 sqft + - generic: 1300 13th Street Northwest, Unit 905, Washington, DC 20005 + - link "1010 Massachusetts Avenue Northwest, Unit 1208 $824,900 2 beds 2 baths 1,050 sqft 1010 Massachusetts Avenue Northwest, Unit 1208, Washington, DC 20001": + - /url: /listing/massachusetts-avenue-northwest-washington-dc-04401553 + - img "1010 Massachusetts Avenue Northwest, Unit 1208" + - generic: $824,900 + - generic: 2 beds + - generic: 2 baths + - generic: 1,050 sqft + - generic: 1010 Massachusetts Avenue Northwest, Unit 1208, Washington, DC 20001 + - link "1440 N Street Northwest, Unit 205 $199,000 0 beds 1 baths 411 sqft 1440 N Street Northwest, Unit 205, Washington, DC 20005": + - /url: /listing/1440-n-street-northwest-unit-205-washington-dc-41655921 + - img "1440 N Street Northwest, Unit 205" + - generic: $199,000 + - generic: 0 beds + - generic: 1 baths + - generic: 411 sqft + - generic: 1440 N Street Northwest, Unit 205, Washington, DC 20005 + - link "Compass Exclusive 811 4th Street Northwest, Unit 1214 $439,000 — beds — baths 692 sqft 811 4th Street Northwest, Unit 1214, Washington, DC 20001": + - /url: /listing/811-4th-street-northwest-unit-1214-washington-dc-67375329 + - generic: Compass Exclusive + - img "811 4th Street Northwest, Unit 1214" + - generic: $439,000 + - generic: — beds + - generic: — baths + - generic: 692 sqft + - generic: 811 4th Street Northwest, Unit 1214, Washington, DC 20001 + - link "Compass Exclusive 1832 Corcoran Street Northwest $2,300,000 4 beds 3 baths 2,331 sqft 1832 Corcoran Street Northwest, Washington, DC 20009": + - /url: /listing/1832-corcoran-street-northwest-washington-dc-43598409 + - generic: Compass Exclusive + - img "1832 Corcoran Street Northwest" + - generic: $2,300,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,331 sqft + - generic: 1832 Corcoran Street Northwest, Washington, DC 20009 + - link "Compass Exclusive 1428 Q Street Northwest $1,599,000 4 beds 3 baths 3,036 sqft 1428 Q Street Northwest, Washington, DC 20009": + - /url: /listing/1428-q-street-northwest-washington-dc-18041457 + - generic: Compass Exclusive + - img "1428 Q Street Northwest" + - generic: $1,599,000 + - generic: 4 beds + - generic: 3 baths + - generic: 3,036 sqft + - generic: 1428 Q Street Northwest, Washington, DC 20009 + - link "Compass Exclusive 1443 Chapin Street Northwest, Unit 402 $895,000 2 beds 2 baths 1,188 sqft 1443 Chapin Street Northwest, Unit 402, Washington, DC 20009": + - /url: /listing/1443-chapin-street-northwest-unit-402-washington-dc-66950593 + - generic: Compass Exclusive + - img "1443 Chapin Street Northwest, Unit 402" + - generic: $895,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,188 sqft + - generic: 1443 Chapin Street Northwest, Unit 402, Washington, DC 20009 + - link "1113 Rhode Island Avenue Northwest $1,195,000 6 beds 3 baths 3,412 sqft 1113 Rhode Island Avenue Northwest, Washington, DC 20005": + - /url: /listing/1113-rhode-island-avenue-northwest-washington-dc-75758689 + - img "1113 Rhode Island Avenue Northwest" + - generic: $1,195,000 + - generic: 6 beds + - generic: 3 baths + - generic: 3,412 sqft + - generic: 1113 Rhode Island Avenue Northwest, Washington, DC 20005 + - link "Compass Exclusive 1317 Corcoran Street Northwest $2,200,000 — beds 0 baths 2,956 sqft 1317 Corcoran Street Northwest, Washington, DC 20009": + - /url: /listing/1317-corcoran-street-northwest-washington-dc-97642673 + - generic: Compass Exclusive + - img "1317 Corcoran Street Northwest" + - generic: $2,200,000 + - generic: — beds + - generic: 0 baths + - generic: 2,956 sqft + - generic: 1317 Corcoran Street Northwest, Washington, DC 20009 + - link "Compass Exclusive 1003 P Street Northwest $1,600,000 4 beds 4 baths 2,140 sqft 1003 P Street Northwest, Washington, DC 20001": + - /url: /listing/1003-p-street-northwest-washington-dc-61442889 + - generic: Compass Exclusive + - img "1003 P Street Northwest" + - generic: $1,600,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,140 sqft + - generic: 1003 P Street Northwest, Washington, DC 20001 + - link "Compass Exclusive 238 14th Street Southeast $949,000 — beds — baths 1,772 sqft 238 14th Street Southeast, Washington, DC 20003": + - /url: /listing/238-14th-street-southeast-washington-dc-45120369 + - generic: Compass Exclusive + - img "238 14th Street Southeast" + - generic: $949,000 + - generic: — beds + - generic: — baths + - generic: 1,772 sqft + - generic: 238 14th Street Southeast, Washington, DC 20003 + - link "Compass Exclusive 3515 Hertford Place Northwest, Unit 32 $395,000 1 beds 1 baths 627 sqft 3515 Hertford Place Northwest, Unit 32, Washington, DC 20010": + - /url: /listing/3515-hertford-place-northwest-unit-32-washington-dc-51904881 + - generic: Compass Exclusive + - img "3515 Hertford Place Northwest, Unit 32" + - generic: $395,000 + - generic: 1 beds + - generic: 1 baths + - generic: 627 sqft + - generic: 3515 Hertford Place Northwest, Unit 32, Washington, DC 20010 + - link "Compass Exclusive 4611 43rd Place Northwest $2,249,000 5 beds 5 baths 3,522 sqft 4611 43rd Place Northwest, Washington, DC 20016": + - /url: /listing/4611-43rd-place-northwest-washington-dc-54638913 + - generic: Compass Exclusive + - img "4611 43rd Place Northwest" + - generic: $2,249,000 + - generic: 5 beds + - generic: 5 baths + - generic: 3,522 sqft + - generic: 4611 43rd Place Northwest, Washington, DC 20016 + - link "Compass Exclusive 2123 California Street Northwest, Unit D5 $775,000 2 beds 2 baths 1,073 sqft 2123 California Street Northwest, Unit D5, Washington, DC 20008": + - /url: /listing/2123-california-street-northwest-unit-d5-washington-dc-81697025 + - generic: Compass Exclusive + - img "2123 California Street Northwest, Unit D5" + - generic: $775,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,073 sqft + - generic: 2123 California Street Northwest, Unit D5, Washington, DC 20008 + - link "Compass Exclusive 228 9th Street Southeast $3,849,000 5 beds 5 baths 4,801 sqft 228 9th Street Southeast, Washington, DC 20003": + - /url: /listing/228-9th-street-southeast-washington-dc-98962857 + - generic: Compass Exclusive + - img "228 9th Street Southeast" + - generic: $3,849,000 + - generic: 5 beds + - generic: 5 baths + - generic: 4,801 sqft + - generic: 228 9th Street Southeast, Washington, DC 20003 + - link "Compass Exclusive 4600 Connecticut Avenue Northwest, Unit 717 $243,000 — beds — baths 577 sqft 4600 Connecticut Avenue Northwest, Unit 717, Washington, DC 20008": + - /url: /listing/4600-connecticut-avenue-northwest-unit-717-washington-dc-91447953 + - generic: Compass Exclusive + - img "4600 Connecticut Avenue Northwest, Unit 717" + - generic: $243,000 + - generic: — beds + - generic: — baths + - generic: 577 sqft + - generic: 4600 Connecticut Avenue Northwest, Unit 717, Washington, DC 20008 + - link "Compass Exclusive 1614 Kilbourne Place Northwest, Unit 2 $1,275,000 3 beds 3 baths 1,922 sqft 1614 Kilbourne Place Northwest, Unit 2, Washington, DC 20010": + - /url: /listing/1614-kilbourne-place-northwest-unit-2-washington-dc-78468961 + - generic: Compass Exclusive + - img "1614 Kilbourne Place Northwest, Unit 2" + - generic: $1,275,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,922 sqft + - generic: 1614 Kilbourne Place Northwest, Unit 2, Washington, DC 20010 + - link "Compass Exclusive 3514 34th Street Northwest $1,450,000 3 beds 4 baths — sqft 3514 34th Street Northwest, Washington, DC 20008": + - /url: /listing/3514-34th-street-northwest-washington-dc-69305881 + - generic: Compass Exclusive + - img "3514 34th Street Northwest" + - generic: $1,450,000 + - generic: 3 beds + - generic: 4 baths + - generic: — sqft + - generic: 3514 34th Street Northwest, Washington, DC 20008 + - link "Compass Exclusive 3601 Connecticut Avenue Northwest, Unit 612 $509,000 2 beds — baths 950 sqft 3601 Connecticut Avenue Northwest, Unit 612, Washington, DC 20008": + - /url: /listing/3601-connecticut-avenue-northwest-unit-612-washington-dc-68803729 + - generic: Compass Exclusive + - img "3601 Connecticut Avenue Northwest, Unit 612" + - generic: $509,000 + - generic: 2 beds + - generic: — baths + - generic: 950 sqft + - generic: 3601 Connecticut Avenue Northwest, Unit 612, Washington, DC 20008 + - link "Compass Exclusive 3414 Porter Street Northwest $1,650,000 4 beds 3 baths 2,470 sqft 3414 Porter Street Northwest, Washington, DC 20016": + - /url: /listing/3414-porter-street-northwest-washington-dc-24573065 + - generic: Compass Exclusive + - img "3414 Porter Street Northwest" + - generic: $1,650,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,470 sqft + - generic: 3414 Porter Street Northwest, Washington, DC 20016 + - link "Compass Exclusive 3707 Military Road Northwest $2,200,000 6 beds 5 baths 4,345 sqft 3707 Military Road Northwest, Washington, DC 20015": + - /url: /listing/3707-military-road-northwest-washington-dc-78946129 + - generic: Compass Exclusive + - img "3707 Military Road Northwest" + - generic: $2,200,000 + - generic: 6 beds + - generic: 5 baths + - generic: 4,345 sqft + - generic: 3707 Military Road Northwest, Washington, DC 20015 + - link "2120 Vermont Avenue Northwest, Unit 123 $665,000 3 beds 2 baths 1,292 sqft 2120 Vermont Avenue Northwest, Unit 123, Washington, DC 20001": + - /url: /listing/2120-vermont-avenue-northwest-unit-123-washington-dc-30986649 + - img "2120 Vermont Avenue Northwest, Unit 123" + - generic: $665,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,292 sqft + - generic: 2120 Vermont Avenue Northwest, Unit 123, Washington, DC 20001 + - link "Compass Exclusive Address Upon Request $725,000 2 beds 2.5 baths 1,225 sqft Address Upon Request, Washington, DC 20001": + - /url: /listing/address-upon-request-washington-dc-68659849 + - generic: Compass Exclusive + - img "Address Upon Request" + - generic: $725,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,225 sqft + - generic: Address Upon Request, Washington, DC 20001 + - link "Compass Exclusive K Street Southeast $749,000 2 beds 2.5 baths 1,313 sqft K Street Southeast, Washington, DC 20003": + - /url: /listing/k-street-southeast-washington-dc-29157649 + - generic: Compass Exclusive + - img "K Street Southeast" + - generic: $749,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,313 sqft + - generic: K Street Southeast, Washington, DC 20003 + - link "Compass Exclusive 3206 Morrison Street Northwest $3,150,000 5 beds 5.5 baths 5,000 sqft 3206 Morrison Street Northwest, Washington, DC 20015": + - /url: /listing/3206-morrison-street-northwest-washington-dc-74603969 + - generic: Compass Exclusive + - img "3206 Morrison Street Northwest" + - generic: $3,150,000 + - generic: 5 beds + - generic: 5.5 baths + - generic: 5,000 sqft + - generic: 3206 Morrison Street Northwest, Washington, DC 20015 + - link "Compass Exclusive 520 N Street Southwest, Unit S622 $274,900 1 beds 1 baths 591 sqft 520 N Street Southwest, Unit S622, Washington, DC 20024": + - /url: /listing/520-n-street-southwest-unit-s622-washington-dc-60161193 + - generic: Compass Exclusive + - img "520 N Street Southwest, Unit S622" + - generic: $274,900 + - generic: 1 beds + - generic: 1 baths + - generic: 591 sqft + - generic: 520 N Street Southwest, Unit S622, Washington, DC 20024 +- contentinfo: + - button "Company": + - text: Company + - generic: + + - button "Explore": + - text: Explore + - generic: + + - heading "Mobile Apps" [level=2] + - link "Compass iOS App": + - /url: https://itunes.apple.com/app/id692766504 + - img "Compass iOS App" + - link "Compass Android App": + - /url: https://play.google.com/store/apps/details?id=com.compass.compass + - img "Compass Android App" + - link "Instagram": + - /url: https://instagram.com/compass/ + - text: ◎ + - link "Facebook": + - /url: https://facebook.com/compass/ + - text: f + - link "X": + - /url: https://x.com/compass/ + - text: 𝕏 + - paragraph: © 2026 Compass mirror — WebHarbor benchmark site. Not affiliated with Compass, Inc. Listing information is a fixed snapshot; availability may have changed. + - paragraph: Account actions, saved homes, collections and tour requests stay in this local environment. They are not sent to Compass agents. + - paragraph: Links marked ↗ open external websites. Mortgage, brokerage recruitment, new development marketing and corporate services are provided on their original websites, outside this environment. + - paragraph: COMPASS and the Compass logo are trademarks of Compass, Inc. + - paragraph: + - link "Help": + - /url: /help + - text: · + - link "About this environment": + - /url: /about \ No newline at end of file diff --git a/sites/compass/docs/visual-review/home/task17/observations/005-after.txt b/sites/compass/docs/visual-review/home/task17/observations/005-after.txt new file mode 100644 index 00000000..0002e4a4 --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/observations/005-after.txt @@ -0,0 +1,128 @@ +- link "Skip to content": + - /url: "#main-content" +- banner: + - button "Open navigation": ☰ + - link "Compass": + - /url: / + - img "Compass" + - link "Register": + - /url: /register + - generic: / + - link "Sign In": + - /url: /login +- main: + - heading "All listings" [level=1] + - searchbox "Search terms" + - generic: Listing status + - combobox "Listing status": + - option "Any status" + - option "For sale" [selected] + - option "For rent" + - option "Sold" + - option "Closed" + - option "Rented" + - generic: Home type + - combobox "Home type": + - option "All home types" + - option "Single Family" + - option "Condo" [selected] + - option "Co-op" + - option "Townhouse" + - option "Multi-Family" + - option "Apartment" + - option "Rental" + - option "Land" + - option "Office" + - option "Mixed Use" + - option "Other" + - generic: Min beds + - combobox "Min beds": + - option "Any beds" [selected] + - option "1+" + - option "2+" + - option "3+" + - option "4+" + - option "5+" + - generic: Max price + - spinbutton "Max price" + - button "Filters" + - button "Search" + - generic: Sort by + - combobox "Sort by": + - option "Relevance" + - option "Newest" + - 'option "Price: low to high"' + - 'option "Price: high to low" [selected]' + - option "Bedrooms" + - option "Square feet" + - 'option "$/sqft: low to high"' + - 'option "$/sqft: high to low"' + - generic: 4 results. + - link "Pending 150 Charles Street, Unit M10 $21,500,000 4 beds 4.5 baths 5,612 sqft 150 Charles Street, Unit M10, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-m10-new-york-ny-81286569 + - generic: Pending + - img "150 Charles Street, Unit M10" + - generic: $21,500,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 5,612 sqft + - generic: 150 Charles Street, Unit M10, Manhattan, NY 10014 + - link "Compass Exclusive 1425 Brickell Avenue, Unit 42F $11,750,000 3 beds 4.5 baths 3,913 sqft 1425 Brickell Avenue, Unit 42F, Miami, FL 33131": + - /url: /listing/1425-brickell-avenue-unit-42f-miami-fl-85366897 + - generic: Compass Exclusive + - img "1425 Brickell Avenue, Unit 42F" + - generic: $11,750,000 + - generic: 3 beds + - generic: 4.5 baths + - generic: 3,913 sqft + - generic: 1425 Brickell Avenue, Unit 42F, Miami, FL 33131 + - link "Pending 150 Charles Street, Unit 3AS $8,995,000 3 beds 3.5 baths 2,461 sqft 150 Charles Street, Unit 3AS, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-3as-new-york-ny-85442145 + - generic: Pending + - img "150 Charles Street, Unit 3AS" + - generic: $8,995,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 2,461 sqft + - generic: 150 Charles Street, Unit 3AS, Manhattan, NY 10014 + - link "88 Southwest 7th Street, Unit PH4303 $5,799,900 3 beds 4.5 baths 3,115 sqft 88 Southwest 7th Street, Unit PH4303, Miami, FL 33130": + - /url: /listing/88-southwest-7th-street-unit-ph4303-miami-fl-12289809 + - img "88 Southwest 7th Street, Unit PH4303" + - generic: $5,799,900 + - generic: 3 beds + - generic: 4.5 baths + - generic: 3,115 sqft + - generic: 88 Southwest 7th Street, Unit PH4303, Miami, FL 33130 +- contentinfo: + - button "Company": + - text: Company + - generic: + + - button "Explore": + - text: Explore + - generic: + + - heading "Mobile Apps" [level=2] + - link "Compass iOS App": + - /url: https://itunes.apple.com/app/id692766504 + - img "Compass iOS App" + - link "Compass Android App": + - /url: https://play.google.com/store/apps/details?id=com.compass.compass + - img "Compass Android App" + - link "Instagram": + - /url: https://instagram.com/compass/ + - text: ◎ + - link "Facebook": + - /url: https://facebook.com/compass/ + - text: f + - link "X": + - /url: https://x.com/compass/ + - text: 𝕏 + - paragraph: © 2026 Compass mirror — WebHarbor benchmark site. Not affiliated with Compass, Inc. Listing information is a fixed snapshot; availability may have changed. + - paragraph: Account actions, saved homes, collections and tour requests stay in this local environment. They are not sent to Compass agents. + - paragraph: Links marked ↗ open external websites. Mortgage, brokerage recruitment, new development marketing and corporate services are provided on their original websites, outside this environment. + - paragraph: COMPASS and the Compass logo are trademarks of Compass, Inc. + - paragraph: + - link "Help": + - /url: /help + - text: · + - link "About this environment": + - /url: /about \ No newline at end of file diff --git a/sites/compass/docs/visual-review/home/task17/observations/005-before.txt b/sites/compass/docs/visual-review/home/task17/observations/005-before.txt new file mode 100644 index 00000000..537c1535 --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/observations/005-before.txt @@ -0,0 +1,2734 @@ +- link "Skip to content": + - /url: "#main-content" +- banner: + - button "Open navigation": ☰ + - link "Compass": + - /url: / + - img "Compass" + - link "Register": + - /url: /register + - generic: / + - link "Sign In": + - /url: /login +- main: + - heading "All listings" [level=1] + - searchbox "Search terms" + - generic: Listing status + - combobox "Listing status": + - option "Any status" + - option "For sale" [selected] + - option "For rent" + - option "Sold" + - option "Closed" + - option "Rented" + - generic: Home type + - combobox "Home type": + - option "All home types" + - option "Single Family" + - option "Condo" [selected] + - option "Co-op" + - option "Townhouse" + - option "Multi-Family" + - option "Apartment" + - option "Rental" + - option "Land" + - option "Office" + - option "Mixed Use" + - option "Other" + - generic: Min beds + - combobox "Min beds": + - option "Any beds" [selected] + - option "1+" + - option "2+" + - option "3+" + - option "4+" + - option "5+" + - generic: Max price + - spinbutton "Max price" + - button "Filters" + - button "Search" + - dialog "Filters": + - heading "Filters" [level=2] + - button "Close filters" [active]: × + - generic: Min price + - spinbutton "Min price" + - generic: Min baths + - spinbutton "Min baths" + - generic: Min square feet + - spinbutton "Min square feet" + - generic: Built in or after + - spinbutton "Built in or after" + - group "Features": + - generic: Features + - checkbox "Pool" + - text: Pool + - checkbox "Garage" + - text: Garage + - checkbox "Waterfront" + - text: Waterfront + - checkbox "Doorman" + - text: Doorman + - checkbox "Open house" + - text: Open house + - checkbox "New listing" + - text: New listing + - checkbox "Compass exclusive" + - text: Compass exclusive + - link "Reset filters": + - /url: /search + - button "Apply filters" + - generic: Sort by + - combobox "Sort by": + - option "Relevance" + - option "Newest" + - 'option "Price: low to high"' + - 'option "Price: high to low" [selected]' + - option "Bedrooms" + - option "Square feet" + - 'option "$/sqft: low to high"' + - 'option "$/sqft: high to low"' + - generic: 303 results. + - link "Compass Exclusive 425 West 24th Street, Unit 1F $1,325,000 2 beds 2 baths 1,200 sqft 425 West 24th Street, Unit 1F, New York, NY 10011": + - /url: /listing/425-west-24th-street-unit-1f-new-york-ny-47919969 + - generic: Compass Exclusive + - img "425 West 24th Street, Unit 1F" + - generic: $1,325,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,200 sqft + - generic: 425 West 24th Street, Unit 1F, New York, NY 10011 + - link "400 Lincoln Place, Unit 2B $500,000 — beds — baths — sqft 400 Lincoln Place, Unit 2B, New York, NY 11238": + - /url: /listing/400-lincoln-place-unit-2b-new-york-ny-40815033 + - img "400 Lincoln Place, Unit 2B" + - generic: $500,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 400 Lincoln Place, Unit 2B, New York, NY 11238 + - link "391 3rd Street, Unit 1 $1,295,000 2 beds — baths — sqft 391 3rd Street, Unit 1, New York, NY 11215": + - /url: /listing/391-3rd-street-unit-1-new-york-ny-82456857 + - img "391 3rd Street, Unit 1" + - generic: $1,295,000 + - generic: 2 beds + - generic: — baths + - generic: — sqft + - generic: 391 3rd Street, Unit 1, New York, NY 11215 + - link "150 Joralemon Street, Unit 7A $1,250,000 2 beds 1 baths — sqft 150 Joralemon Street, Unit 7A, Brooklyn, NY 11201": + - /url: /listing/150-joralemon-street-unit-7a-new-york-ny-96805081 + - img "150 Joralemon Street, Unit 7A" + - generic: $1,250,000 + - generic: 2 beds + - generic: 1 baths + - generic: — sqft + - generic: 150 Joralemon Street, Unit 7A, Brooklyn, NY 11201 + - link "Pending 160 Columbia Heights, Unit 10F $2,195,000 2 beds 2 baths — sqft 160 Columbia Heights, Unit 10F, Brooklyn, NY 11201": + - /url: /listing/160-columbia-heights-unit-10f-new-york-ny-65591129 + - generic: Pending + - img "160 Columbia Heights, Unit 10F" + - generic: $2,195,000 + - generic: 2 beds + - generic: 2 baths + - generic: — sqft + - generic: 160 Columbia Heights, Unit 10F, Brooklyn, NY 11201 + - link "Pending 58 Remsen Street, Unit 1R $2,250,000 2 beds 1.5 baths — sqft 58 Remsen Street, Unit 1R, Brooklyn, NY 11201": + - /url: /listing/58-remsen-street-unit-1r-new-york-ny-19465409 + - generic: Pending + - img "58 Remsen Street, Unit 1R" + - generic: $2,250,000 + - generic: 2 beds + - generic: 1.5 baths + - generic: — sqft + - generic: 58 Remsen Street, Unit 1R, Brooklyn, NY 11201 + - link "Pending 130 Prospect Place, Unit 1 $1,495,000 2 beds 2 baths 1,200 sqft 130 Prospect Place, Unit 1, Brooklyn, NY 11217": + - /url: /listing/130-prospect-place-unit-1-new-york-ny-78987185 + - generic: Pending + - img "130 Prospect Place, Unit 1" + - generic: $1,495,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,200 sqft + - generic: 130 Prospect Place, Unit 1, Brooklyn, NY 11217 + - link "110 Hoyt Street, Unit 1 $975,000 — beds — baths 753 sqft 110 Hoyt Street, Unit 1, New York, NY 11217": + - /url: /listing/110-hoyt-street-unit-1-new-york-ny-87729625 + - img "110 Hoyt Street, Unit 1" + - generic: $975,000 + - generic: — beds + - generic: — baths + - generic: 753 sqft + - generic: 110 Hoyt Street, Unit 1, New York, NY 11217 + - link "21 Monroe Place, Unit 5R $765,000 — beds — baths — sqft 21 Monroe Place, Unit 5R, New York, NY 11201": + - /url: /listing/21-monroe-place-unit-5r-new-york-ny-19536305 + - img "21 Monroe Place, Unit 5R" + - generic: $765,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 21 Monroe Place, Unit 5R, New York, NY 11201 + - link "115 Spring Street, Unit 2 $6,500,000 3 beds 3 baths — sqft 115 Spring Street, Unit 2, New York, NY 10012": + - /url: /listing/115-spring-street-unit-2-new-york-ny-38846297 + - img "115 Spring Street, Unit 2" + - generic: $6,500,000 + - generic: 3 beds + - generic: 3 baths + - generic: — sqft + - generic: 115 Spring Street, Unit 2, New York, NY 10012 + - link "118 Perry Street, Unit J45 $575,000 — beds — baths — sqft 118 Perry Street, Unit J45, New York, NY 10014": + - /url: /listing/118-perry-street-unit-j45-new-york-ny-45254425 + - img "118 Perry Street, Unit J45" + - generic: $575,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 118 Perry Street, Unit J45, New York, NY 10014 + - link "21 South Portland Avenue, Unit 2F $775,000 — beds — baths — sqft 21 South Portland Avenue, Unit 2F, New York, NY 11217": + - /url: /listing/21-south-portland-avenue-unit-2f-new-york-ny-07712233 + - img "21 South Portland Avenue, Unit 2F" + - generic: $775,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 21 South Portland Avenue, Unit 2F, New York, NY 11217 + - link "Pending 150 Charles Street, Unit M10 $21,500,000 4 beds 4.5 baths 5,612 sqft 150 Charles Street, Unit M10, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-m10-new-york-ny-81286569 + - generic: Pending + - img "150 Charles Street, Unit M10" + - generic: $21,500,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 5,612 sqft + - generic: 150 Charles Street, Unit M10, Manhattan, NY 10014 + - link "Pending 195 Willoughby Avenue, Unit 1517/1518 $1,125,000 2 beds 2 baths 1,217 sqft 195 Willoughby Avenue, Unit 1517/1518, Brooklyn, NY 11205": + - /url: /listing/195-willoughby-avenue-unit-1517-1518-new-york-ny-05751361 + - generic: Pending + - img "195 Willoughby Avenue, Unit 1517/1518" + - generic: $1,125,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,217 sqft + - generic: 195 Willoughby Avenue, Unit 1517/1518, Brooklyn, NY 11205 + - link "20 East 9th Street, Unit 4T $799,000 1 beds 1 baths — sqft 20 East 9th Street, Unit 4T, Manhattan, NY 10003": + - /url: /listing/20-east-9th-street-unit-4t-new-york-ny-10648129 + - img "20 East 9th Street, Unit 4T" + - generic: $799,000 + - generic: 1 beds + - generic: 1 baths + - generic: — sqft + - generic: 20 East 9th Street, Unit 4T, Manhattan, NY 10003 + - link "Pending 634 Washington Street, Unit 4B $1,750,000 3 beds 1.5 baths — sqft 634 Washington Street, Unit 4B, Manhattan, NY 10014": + - /url: /listing/634-washington-street-unit-4b-new-york-ny-46018681 + - generic: Pending + - img "634 Washington Street, Unit 4B" + - generic: $1,750,000 + - generic: 3 beds + - generic: 1.5 baths + - generic: — sqft + - generic: 634 Washington Street, Unit 4B, Manhattan, NY 10014 + - link "195 Willoughby Avenue, Unit 1518 $700,000 — beds — baths — sqft 195 Willoughby Avenue, Unit 1518, New York, NY 11205": + - /url: /listing/195-willoughby-avenue-unit-1518-new-york-ny-22490329 + - img "195 Willoughby Avenue, Unit 1518" + - generic: $700,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 195 Willoughby Avenue, Unit 1518, New York, NY 11205 + - link "787 Carroll Street $10,250,000 5 beds 4 baths 6,664 sqft 787 Carroll Street, New York, NY 11215": + - /url: /listing/787-carroll-street-new-york-ny-07909369 + - img "787 Carroll Street" + - generic: $10,250,000 + - generic: 5 beds + - generic: 4 baths + - generic: 6,664 sqft + - generic: 787 Carroll Street, New York, NY 11215 + - link "195 Willoughby Avenue, Unit 1517 $425,000 — beds — baths — sqft 195 Willoughby Avenue, Unit 1517, New York, NY 11205": + - /url: /listing/195-willoughby-avenue-unit-1517-new-york-ny-77007633 + - img "195 Willoughby Avenue, Unit 1517" + - generic: $425,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 195 Willoughby Avenue, Unit 1517, New York, NY 11205 + - link "Pending 270 5th Street, Unit 4C $1,350,000 2 beds 1 baths — sqft 270 5th Street, Unit 4C, Brooklyn, NY 11215": + - /url: /listing/270-5th-street-unit-4c-new-york-ny-15444585 + - generic: Pending + - img "270 5th Street, Unit 4C" + - generic: $1,350,000 + - generic: 2 beds + - generic: 1 baths + - generic: — sqft + - generic: 270 5th Street, Unit 4C, Brooklyn, NY 11215 + - link "228 West 21st Street, Unit 2 $1,800,000 2 beds 2 baths — sqft 228 West 21st Street, Unit 2, New York, NY 10011": + - /url: /listing/228-west-21st-street-unit-2-new-york-ny-06805097 + - img "228 West 21st Street, Unit 2" + - generic: $1,800,000 + - generic: 2 beds + - generic: 2 baths + - generic: — sqft + - generic: 228 West 21st Street, Unit 2, New York, NY 10011 + - link "New 230 East 15th Street, Unit 9B $550,000 — beds — baths 600 sqft 230 East 15th Street, Unit 9B, New York, NY 10003": + - /url: /listing/230-east-15th-street-unit-9b-new-york-ny-22022945 + - generic: New + - img "230 East 15th Street, Unit 9B" + - generic: $550,000 + - generic: — beds + - generic: — baths + - generic: 600 sqft + - generic: 230 East 15th Street, Unit 9B, New York, NY 10003 + - link "470 West 24th Street, Unit 11G $1,150,000 — beds — baths — sqft 470 West 24th Street, Unit 11G, New York, NY 10011": + - /url: /listing/470-west-24th-street-unit-11g-new-york-ny-85729881 + - img "470 West 24th Street, Unit 11G" + - generic: $1,150,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 470 West 24th Street, Unit 11G, New York, NY 10011 + - link "155 West 20th Street, Unit 6H $895,000 — beds — baths 850 sqft 155 West 20th Street, Unit 6H, New York, NY 10011": + - /url: /listing/155-west-20th-street-unit-6h-new-york-ny-71890545 + - img "155 West 20th Street, Unit 6H" + - generic: $895,000 + - generic: — beds + - generic: — baths + - generic: 850 sqft + - generic: 155 West 20th Street, Unit 6H, New York, NY 10011 + - link "Pending 1 Northside Piers, Unit 24J $2,075,000 2 beds 2 baths 1,064 sqft 1 Northside Piers, Unit 24J, Brooklyn, NY 11249": + - /url: /listing/1-northside-piers-unit-24j-new-york-ny-95518345 + - generic: Pending + - img "1 Northside Piers, Unit 24J" + - generic: $2,075,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,064 sqft + - generic: 1 Northside Piers, Unit 24J, Brooklyn, NY 11249 + - link "Pending 150 Charles Street, Unit 3AS $8,995,000 3 beds 3.5 baths 2,461 sqft 150 Charles Street, Unit 3AS, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-3as-new-york-ny-85442145 + - generic: Pending + - img "150 Charles Street, Unit 3AS" + - generic: $8,995,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 2,461 sqft + - generic: 150 Charles Street, Unit 3AS, Manhattan, NY 10014 + - link "10 Quincy Street, Unit 2C $1,199,000 — beds — baths 730 sqft 10 Quincy Street, Unit 2C, New York, NY 11238": + - /url: /listing/10-quincy-street-unit-2c-new-york-ny-52220705 + - img "10 Quincy Street, Unit 2C" + - generic: $1,199,000 + - generic: — beds + - generic: — baths + - generic: 730 sqft + - generic: 10 Quincy Street, Unit 2C, New York, NY 11238 + - link "137 Putnam Avenue $2,499,000 5 beds 3.5 baths 2,753 sqft 137 Putnam Avenue, Brooklyn, NY 11238": + - /url: /listing/137-putnam-avenue-new-york-ny-69799641 + - img "137 Putnam Avenue" + - generic: $2,499,000 + - generic: 5 beds + - generic: 3.5 baths + - generic: 2,753 sqft + - generic: 137 Putnam Avenue, Brooklyn, NY 11238 + - link "389 Classon Avenue $3,995,000 4 beds 3 baths 2,565 sqft 389 Classon Avenue, New York, NY 11238": + - /url: /listing/389-classon-avenue-new-york-ny-70718105 + - img "389 Classon Avenue" + - generic: $3,995,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,565 sqft + - generic: 389 Classon Avenue, New York, NY 11238 + - link "479 Henry Street $9,950,000 5 beds 4 baths 4,800 sqft 479 Henry Street, New York, NY 11231": + - /url: /listing/479-henry-street-new-york-ny-19847793 + - img "479 Henry Street" + - generic: $9,950,000 + - generic: 5 beds + - generic: 4 baths + - generic: 4,800 sqft + - generic: 479 Henry Street, New York, NY 11231 + - link "669 Saint Marks Avenue, Unit 2B $1,799,000 3 beds 2.5 baths 1,285 sqft 669 Saint Marks Avenue, Unit 2B, Brooklyn, NY 11216": + - /url: /listing/669-saint-marks-avenue-unit-2b-new-york-ny-65073649 + - img "669 Saint Marks Avenue, Unit 2B" + - generic: $1,799,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,285 sqft + - generic: 669 Saint Marks Avenue, Unit 2B, Brooklyn, NY 11216 + - link "140-142 West End Avenue, Unit 30M $950,000 — beds — baths — sqft 140-142 West End Avenue, Unit 30M, New York, NY 10023": + - /url: /listing/140-142-west-end-avenue-unit-30m-new-york-ny-56723409 + - img "140-142 West End Avenue, Unit 30M" + - generic: $950,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 140-142 West End Avenue, Unit 30M, New York, NY 10023 + - link "Compass Exclusive 1718 Occidental Boulevard $1,299,000 2 beds 1 baths 1,113 sqft 1718 Occidental Boulevard, Los Angeles, CA 90026": + - /url: /listing/1718-occidental-boulevard-los-angeles-ca-11068225 + - generic: Compass Exclusive + - img "1718 Occidental Boulevard" + - generic: $1,299,000 + - generic: 2 beds + - generic: 1 baths + - generic: 1,113 sqft + - generic: 1718 Occidental Boulevard, Los Angeles, CA 90026 + - link "Compass Exclusive Undisclosed Address $1,995,000 3 beds 2 baths 1,688 sqft Undisclosed Address, Los Angeles, CA 90066": + - /url: /listing/undisclosed-address-los-angeles-ca-12555729 + - generic: Compass Exclusive + - img "Undisclosed Address" + - generic: $1,995,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,688 sqft + - generic: Undisclosed Address, Los Angeles, CA 90066 + - link "Compass Exclusive 1915 Malcolm Avenue, Unit 301 $1,138,000 3 beds 2 baths 1,511 sqft 1915 Malcolm Avenue, Unit 301, Los Angeles, CA 90025": + - /url: /listing/1915-malcolm-avenue-unit-301-los-angeles-ca-15997937 + - generic: Compass Exclusive + - img "1915 Malcolm Avenue, Unit 301" + - generic: $1,138,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,511 sqft + - generic: 1915 Malcolm Avenue, Unit 301, Los Angeles, CA 90025 + - link "Compass Exclusive 8550 Ridpath Drive $2,100,000 3 beds 2 baths 1,596 sqft 8550 Ridpath Drive, Los Angeles, CA 90046": + - /url: /listing/8550-ridpath-drive-los-angeles-ca-87131737 + - generic: Compass Exclusive + - img "8550 Ridpath Drive" + - generic: $2,100,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,596 sqft + - generic: 8550 Ridpath Drive, Los Angeles, CA 90046 + - link "Compass Exclusive Undisclosed Address $8,995,000 5 beds 7 baths 6,069 sqft Undisclosed Address, Los Angeles, CA 90004": + - /url: /listing/undisclosed-address-los-angeles-ca-01703001 + - generic: Compass Exclusive + - img "Undisclosed Address" + - generic: $8,995,000 + - generic: 5 beds + - generic: 7 baths + - generic: 6,069 sqft + - generic: Undisclosed Address, Los Angeles, CA 90004 + - link "Compass Exclusive 5226 Village Green $685,000 2 beds — baths 818 sqft 5226 Village Green, Los Angeles, CA 90016": + - /url: /listing/5226-village-green-los-angeles-ca-69965641 + - generic: Compass Exclusive + - img "5226 Village Green" + - generic: $685,000 + - generic: 2 beds + - generic: — baths + - generic: 818 sqft + - generic: 5226 Village Green, Los Angeles, CA 90016 + - link "3001 Passmore Drive $3,950,000 6 beds 5.5 baths 4,416 sqft 3001 Passmore Drive, Los Angeles, CA 90068": + - /url: /listing/undisclosed-address-los-angeles-ca-93436001 + - img "3001 Passmore Drive" + - generic: $3,950,000 + - generic: 6 beds + - generic: 5.5 baths + - generic: 4,416 sqft + - generic: 3001 Passmore Drive, Los Angeles, CA 90068 + - link "5516 Village Green $585,000 2 beds 1 baths 826 sqft 5516 Village Green, Los Angeles, CA 90016": + - /url: /listing/5516-village-green-los-angeles-ca-20666961 + - img "5516 Village Green" + - generic: $585,000 + - generic: 2 beds + - generic: 1 baths + - generic: 826 sqft + - generic: 5516 Village Green, Los Angeles, CA 90016 + - link "Compass Exclusive 11307 Morrison Street $989,000 3 beds 3.5 baths 1,676 sqft 11307 Morrison Street, North Hollywood, CA 91601": + - /url: /listing/11307-morrison-street-los-angeles-ca-83506497 + - generic: Compass Exclusive + - img "11307 Morrison Street" + - generic: $989,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 1,676 sqft + - generic: 11307 Morrison Street, North Hollywood, CA 91601 + - link "Compass Exclusive 248 North Glenroy Avenue $8,995,000 5 beds 6 baths 4,899 sqft 248 North Glenroy Avenue, Los Angeles, CA 90049": + - /url: /listing/248-north-glenroy-avenue-los-angeles-ca-38580513 + - generic: Compass Exclusive + - img "248 North Glenroy Avenue" + - generic: $8,995,000 + - generic: 5 beds + - generic: 6 baths + - generic: 4,899 sqft + - generic: 248 North Glenroy Avenue, Los Angeles, CA 90049 + - link "Compass Exclusive 417 Venice Way $2,799,000 4 beds 4 baths 3,154 sqft 417 Venice Way, Los Angeles, CA 90291": + - /url: /listing/417-venice-way-los-angeles-ca-28981633 + - generic: Compass Exclusive + - img "417 Venice Way" + - generic: $2,799,000 + - generic: 4 beds + - generic: 4 baths + - generic: 3,154 sqft + - generic: 417 Venice Way, Los Angeles, CA 90291 + - link "Compass Exclusive 6001 Carlton Way, Unit 106 $705,000 2 beds 2 baths 1,200 sqft 6001 Carlton Way, Unit 106, Los Angeles, CA 90028": + - /url: /listing/6001-carlton-way-unit-106-los-angeles-ca-99002433 + - generic: Compass Exclusive + - img "6001 Carlton Way, Unit 106" + - generic: $705,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,200 sqft + - generic: 6001 Carlton Way, Unit 106, Los Angeles, CA 90028 + - link "Compass Exclusive 8344 McConnell Avenue $3,495,000 5 beds 6 baths 3,128 sqft 8344 McConnell Avenue, Los Angeles, CA 90045": + - /url: /listing/8344-mcconnell-avenue-los-angeles-ca-87192249 + - generic: Compass Exclusive + - img "8344 McConnell Avenue" + - generic: $3,495,000 + - generic: 5 beds + - generic: 6 baths + - generic: 3,128 sqft + - generic: 8344 McConnell Avenue, Los Angeles, CA 90045 + - link "Compass Exclusive 928 Croft Avenue, Unit 303 $2,089,000 3 beds 3 baths 1,980 sqft 928 Croft Avenue, Unit 303, Los Angeles, CA 90069": + - /url: /listing/928-croft-avenue-unit-303-los-angeles-ca-69140937 + - generic: Compass Exclusive + - img "928 Croft Avenue, Unit 303" + - generic: $2,089,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,980 sqft + - generic: 928 Croft Avenue, Unit 303, Los Angeles, CA 90069 + - link "Compass Exclusive 13070 Kiyot Way $3,650,000 4 beds 4 baths 3,458 sqft 13070 Kiyot Way, Los Angeles, CA 90094": + - /url: /listing/13070-kiyot-way-los-angeles-ca-21194649 + - generic: Compass Exclusive + - img "13070 Kiyot Way" + - generic: $3,650,000 + - generic: 4 beds + - generic: 4 baths + - generic: 3,458 sqft + - generic: 13070 Kiyot Way, Los Angeles, CA 90094 + - link "Compass Exclusive 12765 Bluff Creek Drive, Unit 1 $3,150,000 4 beds 4 baths 2,674 sqft 12765 Bluff Creek Drive, Unit 1, Los Angeles, CA 90094": + - /url: /listing/12765-bluff-creek-drive-unit-1-los-angeles-ca-98362465 + - generic: Compass Exclusive + - img "12765 Bluff Creek Drive, Unit 1" + - generic: $3,150,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,674 sqft + - generic: 12765 Bluff Creek Drive, Unit 1, Los Angeles, CA 90094 + - link "1100 South Hope Street, Unit 1006 $535,000 1 beds 1 baths 1,007 sqft 1100 South Hope Street, Unit 1006, Los Angeles, CA 90015": + - /url: /listing/1100-south-hope-street-unit-1006-los-angeles-ca-91687721 + - img "1100 South Hope Street, Unit 1006" + - generic: $535,000 + - generic: 1 beds + - generic: 1 baths + - generic: 1,007 sqft + - generic: 1100 South Hope Street, Unit 1006, Los Angeles, CA 90015 + - link "Pending 13626 Shablow Avenue $739,000 3 beds 2 baths 1,068 sqft 13626 Shablow Avenue, Sylmar, CA 91342": + - /url: /listing/13626-shablow-avenue-los-angeles-ca-14835353 + - generic: Pending + - img "13626 Shablow Avenue" + - generic: $739,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,068 sqft + - generic: 13626 Shablow Avenue, Sylmar, CA 91342 + - link "Compass Exclusive 333 East Colden Avenue $450,000 — beds 0 baths — sqft 333 East Colden Avenue, Los Angeles, CA 90003": + - /url: /listing/333-east-colden-avenue-los-angeles-ca-77088801 + - generic: Compass Exclusive + - img "333 East Colden Avenue" + - generic: $450,000 + - generic: — beds + - generic: 0 baths + - generic: — sqft + - generic: 333 East Colden Avenue, Los Angeles, CA 90003 + - link "889 Francisco Street, Unit 1206 $998,000 2 beds 2.5 baths 1,489 sqft 889 Francisco Street, Unit 1206, Los Angeles, CA 90017": + - /url: /listing/889-francisco-street-unit-1206-los-angeles-ca-99006633 + - img "889 Francisco Street, Unit 1206" + - generic: $998,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,489 sqft + - generic: 889 Francisco Street, Unit 1206, Los Angeles, CA 90017 + - link "3536 1/2 Arroyo Seco Avenue $499,000 2 beds 2 baths 840 sqft 3536 1/2 Arroyo Seco Avenue, Los Angeles, CA 90065": + - /url: /listing/3536-1-2-arroyo-seco-avenue-los-angeles-ca-37515281 + - img "3536 1/2 Arroyo Seco Avenue" + - generic: $499,000 + - generic: 2 beds + - generic: 2 baths + - generic: 840 sqft + - generic: 3536 1/2 Arroyo Seco Avenue, Los Angeles, CA 90065 + - link "2050 North Las Palmas Avenue $1,850,000 3 beds 4 baths 1,830 sqft 2050 North Las Palmas Avenue, Los Angeles, CA 90068": + - /url: /listing/2050-north-las-palmas-avenue-los-angeles-ca-96276937 + - img "2050 North Las Palmas Avenue" + - generic: $1,850,000 + - generic: 3 beds + - generic: 4 baths + - generic: 1,830 sqft + - generic: 2050 North Las Palmas Avenue, Los Angeles, CA 90068 + - link "404 North Avenue 52 $1,150,000 3 beds 2 baths 1,124 sqft 404 North Avenue 52, Los Angeles, CA 90042": + - /url: /listing/404-north-avenue-52-los-angeles-ca-89227753 + - img "404 North Avenue 52" + - generic: $1,150,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,124 sqft + - generic: 404 North Avenue 52, Los Angeles, CA 90042 + - link "2267 Duane Street, Unit 3 $1,699,000 3 beds 4 baths 2,644 sqft 2267 Duane Street, Unit 3, Los Angeles, CA 90039": + - /url: /listing/2267-duane-street-unit-3-los-angeles-ca-07728865 + - img "2267 Duane Street, Unit 3" + - generic: $1,699,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,644 sqft + - generic: 2267 Duane Street, Unit 3, Los Angeles, CA 90039 + - link "9149 Hillsboro Drive $2,299,000 3 beds 2 baths 2,740 sqft 9149 Hillsboro Drive, Los Angeles, CA 90034": + - /url: /listing/9149-hillsboro-drive-los-angeles-ca-69721649 + - img "9149 Hillsboro Drive" + - generic: $2,299,000 + - generic: 3 beds + - generic: 2 baths + - generic: 2,740 sqft + - generic: 9149 Hillsboro Drive, Los Angeles, CA 90034 + - link "Pending 1215 Brockton Avenue, Unit 203 $949,000 2 beds 2 baths 1,581 sqft 1215 Brockton Avenue, Unit 203, Los Angeles, CA 90025": + - /url: /listing/1215-brockton-avenue-unit-203-los-angeles-ca-98411753 + - generic: Pending + - img "1215 Brockton Avenue, Unit 203" + - generic: $949,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,581 sqft + - generic: 1215 Brockton Avenue, Unit 203, Los Angeles, CA 90025 + - link "6374 Macal Place $1,495,000 2 beds 2 baths 1,532 sqft 6374 Macal Place, Los Angeles, CA 90068": + - /url: /listing/6374-macal-place-los-angeles-ca-76499777 + - img "6374 Macal Place" + - generic: $1,495,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,532 sqft + - generic: 6374 Macal Place, Los Angeles, CA 90068 + - link "Compass Exclusive 3310 Elizabeth Street $2,985,000 4 beds 4 baths 2,643 sqft 3310 Elizabeth Street, Miami, FL 33133": + - /url: /listing/3310-elizabeth-street-miami-fl-82744289 + - generic: Compass Exclusive + - img "3310 Elizabeth Street" + - generic: $2,985,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,643 sqft + - generic: 3310 Elizabeth Street, Miami, FL 33133 + - link "Compass Exclusive 3770 Kumquat Avenue $4,950,000 5 beds 6 baths 3,875 sqft 3770 Kumquat Avenue, Miami, FL 33133": + - /url: /listing/3770-kumquat-avenue-miami-fl-74731745 + - generic: Compass Exclusive + - img "3770 Kumquat Avenue" + - generic: $4,950,000 + - generic: 5 beds + - generic: 6 baths + - generic: 3,875 sqft + - generic: 3770 Kumquat Avenue, Miami, FL 33133 + - link "Compass Exclusive 1698 Tigertail Avenue $7,950,000 6 beds 7 baths 5,300 sqft 1698 Tigertail Avenue, Miami, FL 33133": + - /url: /listing/1698-tigertail-avenue-miami-fl-36067401 + - generic: Compass Exclusive + - img "1698 Tigertail Avenue" + - generic: $7,950,000 + - generic: 6 beds + - generic: 7 baths + - generic: 5,300 sqft + - generic: 1698 Tigertail Avenue, Miami, FL 33133 + - link "Compass Exclusive 9715 Southwest 89th Court $4,900,000 6 beds 7 baths 6,718 sqft 9715 Southwest 89th Court, Miami, FL 33176": + - /url: /listing/9715-southwest-89th-court-miami-fl-22349377 + - generic: Compass Exclusive + - img "9715 Southwest 89th Court" + - generic: $4,900,000 + - generic: 6 beds + - generic: 7 baths + - generic: 6,718 sqft + - generic: 9715 Southwest 89th Court, Miami, FL 33176 + - link "199 Caoba Court $13,995,000 5 beds 6.5 baths 5,342 sqft 199 Caoba Court, Coral Gables, FL 33143": + - /url: /listing/199-caoba-court-miami-fl-22699249 + - img "199 Caoba Court" + - generic: $13,995,000 + - generic: 5 beds + - generic: 6.5 baths + - generic: 5,342 sqft + - generic: 199 Caoba Court, Coral Gables, FL 33143 + - link "Compass Exclusive 2655 South Bayshore Drive, Unit 1801/02 $15,750,000 6 beds 7 baths 5,353 sqft 2655 South Bayshore Drive, Unit 1801/02, Miami, FL 33133": + - /url: /listing/2655-south-bayshore-drive-unit-1801-02-miami-fl-32879425 + - generic: Compass Exclusive + - img "2655 South Bayshore Drive, Unit 1801/02" + - generic: $15,750,000 + - generic: 6 beds + - generic: 7 baths + - generic: 5,353 sqft + - generic: 2655 South Bayshore Drive, Unit 1801/02, Miami, FL 33133 + - link "Compass Exclusive 17145 Southwest 90th Avenue $1,650,000 3 beds 2 baths 1,514 sqft 17145 Southwest 90th Avenue, Miami, FL 33157": + - /url: /listing/17145-southwest-90th-avenue-miami-fl-57531361 + - generic: Compass Exclusive + - img "17145 Southwest 90th Avenue" + - generic: $1,650,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,514 sqft + - generic: 17145 Southwest 90th Avenue, Miami, FL 33157 + - link "Compass Exclusive 6716 San Vicente Street $8,250,000 6 beds — baths — sqft 6716 San Vicente Street, Miami, FL 33146": + - /url: /listing/6716-san-vicente-street-miami-fl-45424521 + - generic: Compass Exclusive + - img "6716 San Vicente Street" + - generic: $8,250,000 + - generic: 6 beds + - generic: — baths + - generic: — sqft + - generic: 6716 San Vicente Street, Miami, FL 33146 + - link "Compass Exclusive 1247 Anastasia Avenue $2,500,000 3 beds 4 baths 2,525 sqft 1247 Anastasia Avenue, Miami, FL 33134": + - /url: /listing/1247-anastasia-avenue-miami-fl-83144857 + - generic: Compass Exclusive + - img "1247 Anastasia Avenue" + - generic: $2,500,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,525 sqft + - generic: 1247 Anastasia Avenue, Miami, FL 33134 + - link "Compass Exclusive 170 Northwest 44th Street $2,749,000 4 beds 4.5 baths — sqft 170 Northwest 44th Street, Miami, FL 33127": + - /url: /listing/170-northwest-44th-street-miami-fl-16681681 + - generic: Compass Exclusive + - img "170 Northwest 44th Street" + - generic: $2,749,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: — sqft + - generic: 170 Northwest 44th Street, Miami, FL 33127 + - link "Compass Exclusive 8365 Southwest 163rd Street $1,299,000 4 beds 3 baths 4,042 sqft 8365 Southwest 163rd Street, Miami, FL 33157": + - /url: /listing/8365-southwest-163rd-street-miami-fl-15682265 + - generic: Compass Exclusive + - img "8365 Southwest 163rd Street" + - generic: $1,299,000 + - generic: 4 beds + - generic: 3 baths + - generic: 4,042 sqft + - generic: 8365 Southwest 163rd Street, Miami, FL 33157 + - link "Compass Exclusive 8768 Southwest 62nd Court $3,900,000 5 beds 4 baths 4,154 sqft 8768 Southwest 62nd Court, Miami, FL 33156": + - /url: /listing/8768-southwest-62nd-court-miami-fl-15361945 + - generic: Compass Exclusive + - img "8768 Southwest 62nd Court" + - generic: $3,900,000 + - generic: 5 beds + - generic: 4 baths + - generic: 4,154 sqft + - generic: 8768 Southwest 62nd Court, Miami, FL 33156 + - link "Compass Exclusive 79 Southwest 12th Street, Unit 2201S $680,000 2 beds 2 baths 1,099 sqft 79 Southwest 12th Street, Unit 2201S, Miami, FL 33130": + - /url: /listing/79-southwest-12th-street-unit-2201s-miami-fl-99869049 + - generic: Compass Exclusive + - img "79 Southwest 12th Street, Unit 2201S" + - generic: $680,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,099 sqft + - generic: 79 Southwest 12th Street, Unit 2201S, Miami, FL 33130 + - link "Compass Exclusive Rockwell Island $5,000,000 4 beds 4.5 baths 4,588 sqft Rockwell Island, Miami, FL 33133": + - /url: /listing/rockwell-island-miami-fl-94376561 + - generic: Compass Exclusive + - img "Rockwell Island" + - generic: $5,000,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 4,588 sqft + - generic: Rockwell Island, Miami, FL 33133 + - link "Compass Exclusive 3770-3792 Kumquat Avenue $6,495,000 5 beds 6 baths 3,875 sqft 3770-3792 Kumquat Avenue, Miami, FL 33133": + - /url: /listing/3770-3792-kumquat-avenue-miami-fl-58538897 + - generic: Compass Exclusive + - img "3770-3792 Kumquat Avenue" + - generic: $6,495,000 + - generic: 5 beds + - generic: 6 baths + - generic: 3,875 sqft + - generic: 3770-3792 Kumquat Avenue, Miami, FL 33133 + - link "Compass Exclusive 8610 Southwest 83rd Street $1,275,000 4 beds 3 baths 2,660 sqft 8610 Southwest 83rd Street, Miami, FL 33143": + - /url: /listing/8610-southwest-83rd-street-miami-fl-41596097 + - generic: Compass Exclusive + - img "8610 Southwest 83rd Street" + - generic: $1,275,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,660 sqft + - generic: 8610 Southwest 83rd Street, Miami, FL 33143 + - link "88 Southwest 7th Street, Unit PH4303 $5,799,900 3 beds 4.5 baths 3,115 sqft 88 Southwest 7th Street, Unit PH4303, Miami, FL 33130": + - /url: /listing/88-southwest-7th-street-unit-ph4303-miami-fl-12289809 + - img "88 Southwest 7th Street, Unit PH4303" + - generic: $5,799,900 + - generic: 3 beds + - generic: 4.5 baths + - generic: 3,115 sqft + - generic: 88 Southwest 7th Street, Unit PH4303, Miami, FL 33130 + - link "Compass Exclusive Rockwell Island $6,532,000 6 beds 0 baths 6,501 sqft Rockwell Island, Miami, FL 33133": + - /url: /listing/rockwell-island-miami-fl-97872137 + - generic: Compass Exclusive + - img "Rockwell Island" + - generic: $6,532,000 + - generic: 6 beds + - generic: 0 baths + - generic: 6,501 sqft + - generic: Rockwell Island, Miami, FL 33133 + - link "6228 Northwest 4th Avenue $609,900 — beds — baths 1,639 sqft 6228 Northwest 4th Avenue, Miami, FL 33150": + - /url: /listing/6228-northwest-4th-avenue-miami-fl-18454937 + - img "6228 Northwest 4th Avenue" + - generic: $609,900 + - generic: — beds + - generic: — baths + - generic: 1,639 sqft + - generic: 6228 Northwest 4th Avenue, Miami, FL 33150 + - link "New 8430 Southwest 98th Street $3,995,000 5 beds 4.5 baths 5,289 sqft 8430 Southwest 98th Street, Miami, FL 33156": + - /url: /listing/8430-southwest-98th-street-miami-fl-70937905 + - generic: New + - img "8430 Southwest 98th Street" + - generic: $3,995,000 + - generic: 5 beds + - generic: 4.5 baths + - generic: 5,289 sqft + - generic: 8430 Southwest 98th Street, Miami, FL 33156 + - link "Compass Exclusive 3341-3433 Southwest 16th Terrace $1,798,000 6 beds 6 baths 3,704 sqft 3341-3433 Southwest 16th Terrace, Miami, FL 33145": + - /url: /listing/3341-3433-southwest-16th-terrace-miami-fl-57747233 + - generic: Compass Exclusive + - img "3341-3433 Southwest 16th Terrace" + - generic: $1,798,000 + - generic: 6 beds + - generic: 6 baths + - generic: 3,704 sqft + - generic: 3341-3433 Southwest 16th Terrace, Miami, FL 33145 + - link "Compass Exclusive 229 Ridgewood Road $8,888,000 6 beds 7 baths 5,437 sqft 229 Ridgewood Road, Miami, FL 33133": + - /url: /listing/229-ridgewood-road-miami-fl-81418745 + - generic: Compass Exclusive + - img "229 Ridgewood Road" + - generic: $8,888,000 + - generic: 6 beds + - generic: 7 baths + - generic: 5,437 sqft + - generic: 229 Ridgewood Road, Miami, FL 33133 + - link "Compass Exclusive 485 Brickell Avenue, Unit 1909 $875,000 2 beds 1 baths 953 sqft 485 Brickell Avenue, Unit 1909, Miami, FL 33131": + - /url: /listing/485-brickell-avenue-unit-1909-miami-fl-05393601 + - generic: Compass Exclusive + - img "485 Brickell Avenue, Unit 1909" + - generic: $875,000 + - generic: 2 beds + - generic: 1 baths + - generic: 953 sqft + - generic: 485 Brickell Avenue, Unit 1909, Miami, FL 33131 + - link "808 Brickell Key Drive, Unit 408 $1,975,000 2 beds 2.5 baths 2,093 sqft 808 Brickell Key Drive, Unit 408, Miami, FL 33131": + - /url: /listing/808-brickell-key-drive-unit-408-miami-fl-22977241 + - img "808 Brickell Key Drive, Unit 408" + - generic: $1,975,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 2,093 sqft + - generic: 808 Brickell Key Drive, Unit 408, Miami, FL 33131 + - link "Compass Exclusive 480 Northeast 31st Street, Unit PH5402 $4,500,000 3 beds 4.5 baths 2,112 sqft 480 Northeast 31st Street, Unit PH5402, Miami, FL 33137": + - /url: /listing/480-northeast-31st-street-unit-ph5402-miami-fl-31923921 + - generic: Compass Exclusive + - img "480 Northeast 31st Street, Unit PH5402" + - generic: $4,500,000 + - generic: 3 beds + - generic: 4.5 baths + - generic: 2,112 sqft + - generic: 480 Northeast 31st Street, Unit PH5402, Miami, FL 33137 + - link "Compass Exclusive 485 Brickell Avenue, Unit 1609 $875,000 2 beds 1 baths 953 sqft 485 Brickell Avenue, Unit 1609, Miami, FL 33131": + - /url: /listing/485-brickell-avenue-unit-1609-miami-fl-35885545 + - generic: Compass Exclusive + - img "485 Brickell Avenue, Unit 1609" + - generic: $875,000 + - generic: 2 beds + - generic: 1 baths + - generic: 953 sqft + - generic: 485 Brickell Avenue, Unit 1609, Miami, FL 33131 + - link "Compass Exclusive 13052 Southwest 26th Street $1,600,000 — beds — baths — sqft 13052 Southwest 26th Street, Miami, FL 33175": + - /url: /listing/13052-southwest-26th-street-miami-fl-94615185 + - generic: Compass Exclusive + - img "13052 Southwest 26th Street" + - generic: $1,600,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 13052 Southwest 26th Street, Miami, FL 33175 + - link "Compass Exclusive 1425 Brickell Avenue, Unit 42F $11,750,000 3 beds 4.5 baths 3,913 sqft 1425 Brickell Avenue, Unit 42F, Miami, FL 33131": + - /url: /listing/1425-brickell-avenue-unit-42f-miami-fl-85366897 + - generic: Compass Exclusive + - img "1425 Brickell Avenue, Unit 42F" + - generic: $11,750,000 + - generic: 3 beds + - generic: 4.5 baths + - generic: 3,913 sqft + - generic: 1425 Brickell Avenue, Unit 42F, Miami, FL 33131 + - link "Compass Exclusive 3245 Southwest 59th Avenue $1,895,000 4 beds 4 baths 3,269 sqft 3245 Southwest 59th Avenue, Miami, FL 33155": + - /url: /listing/3245-southwest-59th-avenue-miami-fl-10928377 + - generic: Compass Exclusive + - img "3245 Southwest 59th Avenue" + - generic: $1,895,000 + - generic: 4 beds + - generic: 4 baths + - generic: 3,269 sqft + - generic: 3245 Southwest 59th Avenue, Miami, FL 33155 + - link "Compass Exclusive 200 Biscayne Blvd Way, Unit 4812 $975,000 2 beds 3 baths 1,237 sqft 200 Biscayne Blvd Way, Unit 4812, Miami, FL 33131": + - /url: /listing/200-biscayne-blvd-way-unit-4812-miami-fl-36678801 + - generic: Compass Exclusive + - img "200 Biscayne Blvd Way, Unit 4812" + - generic: $975,000 + - generic: 2 beds + - generic: 3 baths + - generic: 1,237 sqft + - generic: 200 Biscayne Blvd Way, Unit 4812, Miami, FL 33131 + - link "Compass Exclusive 300 Biscayne Blvd Way, Unit 2103 $4,690,000 3 beds 5 baths 3,078 sqft 300 Biscayne Blvd Way, Unit 2103, Miami, FL 33131": + - /url: /listing/300-biscayne-blvd-way-unit-2103-miami-fl-62476721 + - generic: Compass Exclusive + - img "300 Biscayne Blvd Way, Unit 2103" + - generic: $4,690,000 + - generic: 3 beds + - generic: 5 baths + - generic: 3,078 sqft + - generic: 300 Biscayne Blvd Way, Unit 2103, Miami, FL 33131 + - link "Compass Exclusive 302134005-0535 $315,000 — beds 0 baths — sqft 302134005-0535 , Miami, FL 33167": + - /url: /listing/302134005-0535-miami-fl-19369297 + - generic: Compass Exclusive + - img "302134005-0535" + - generic: $315,000 + - generic: — beds + - generic: 0 baths + - generic: — sqft + - generic: 302134005-0535 , Miami, FL 33167 + - link "1201 Northeast 83rd Street $9,800,000 10 beds 10 baths 8,573 sqft 1201 Northeast 83rd Street, Miami, FL 33138": + - /url: /listing/1201-northeast-83rd-street-miami-fl-86057233 + - img "1201 Northeast 83rd Street" + - generic: $9,800,000 + - generic: 10 beds + - generic: 10 baths + - generic: 8,573 sqft + - generic: 1201 Northeast 83rd Street, Miami, FL 33138 + - link "Compass Exclusive 1423 Quesada Avenue $999,000 3 beds 2 baths 1,975 sqft 1423 Quesada Avenue, San Francisco, CA 94124": + - /url: /listing/1423-quesada-avenue-san-francisco-ca-44057905 + - generic: Compass Exclusive + - img "1423 Quesada Avenue" + - generic: $999,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,975 sqft + - generic: 1423 Quesada Avenue, San Francisco, CA 94124 + - link "Compass Exclusive Walnut Street $5,500,000 6 beds 5 baths 4,300 sqft Walnut Street, San Francisco, CA 94118": + - /url: /listing/walnut-street-san-francisco-ca-05333337 + - generic: Compass Exclusive + - img "Walnut Street" + - generic: $5,500,000 + - generic: 6 beds + - generic: 5 baths + - generic: 4,300 sqft + - generic: Walnut Street, San Francisco, CA 94118 + - link "Compass Exclusive 420 Mission Bay Boulevard North, Unit 120 $899,000 1 beds 1 baths 928 sqft 420 Mission Bay Boulevard North, Unit 120, San Francisco, CA 94158": + - /url: /listing/420-mission-bay-boulevard-north-unit-120-san-francisco-ca-72469257 + - generic: Compass Exclusive + - img "420 Mission Bay Boulevard North, Unit 120" + - generic: $899,000 + - generic: 1 beds + - generic: 1 baths + - generic: 928 sqft + - generic: 420 Mission Bay Boulevard North, Unit 120, San Francisco, CA 94158 + - link "Compass Exclusive 715 Page Street $1,895,000 2 beds 2 baths 1,326 sqft 715 Page Street, San Francisco, CA 94117": + - /url: /listing/715-page-street-san-francisco-ca-83541689 + - generic: Compass Exclusive + - img "715 Page Street" + - generic: $1,895,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,326 sqft + - generic: 715 Page Street, San Francisco, CA 94117 + - link "Compass Exclusive 738 Long Bridge Street, Unit 205 $1,820,000 2 beds 2 baths 1,437 sqft 738 Long Bridge Street, Unit 205, San Francisco, CA 94158": + - /url: /listing/738-long-bridge-street-unit-205-san-francisco-ca-43768129 + - generic: Compass Exclusive + - img "738 Long Bridge Street, Unit 205" + - generic: $1,820,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,437 sqft + - generic: 738 Long Bridge Street, Unit 205, San Francisco, CA 94158 + - link "Compass Exclusive 415 Buena Vista Avenue East $5,950,000 5 beds 4.5 baths — sqft 415 Buena Vista Avenue East, San Francisco, CA 94117": + - /url: /listing/415-buena-vista-avenue-east-san-francisco-ca-96660801 + - generic: Compass Exclusive + - img "415 Buena Vista Avenue East" + - generic: $5,950,000 + - generic: 5 beds + - generic: 4.5 baths + - generic: — sqft + - generic: 415 Buena Vista Avenue East, San Francisco, CA 94117 + - link "Compass Exclusive 522 Hickory Street $3,800,000 3 beds 4 baths 2,982 sqft 522 Hickory Street, San Francisco, CA 94102": + - /url: /listing/522-hickory-street-san-francisco-ca-66255609 + - generic: Compass Exclusive + - img "522 Hickory Street" + - generic: $3,800,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,982 sqft + - generic: 522 Hickory Street, San Francisco, CA 94102 + - link "Compass Exclusive 2401 16th Street $993,775 0 beds 2 baths 2,384 sqft 2401 16th Street, San Francisco, CA 94110": + - /url: /listing/2401-16th-street-san-francisco-ca-30407017 + - generic: Compass Exclusive + - img "2401 16th Street" + - generic: $993,775 + - generic: 0 beds + - generic: 2 baths + - generic: 2,384 sqft + - generic: 2401 16th Street, San Francisco, CA 94110 + - link "Compass Exclusive 733 Front Street, Unit 203 $1,049,000 — beds — baths 949 sqft 733 Front Street, Unit 203, San Francisco, CA 94111": + - /url: /listing/733-front-street-unit-203-san-francisco-ca-37192393 + - generic: Compass Exclusive + - img "733 Front Street, Unit 203" + - generic: $1,049,000 + - generic: — beds + - generic: — baths + - generic: 949 sqft + - generic: 733 Front Street, Unit 203, San Francisco, CA 94111 + - link "Compass Exclusive 999 Green Street, Unit 1401 $2,695,000 1 beds 2 baths 1,473 sqft 999 Green Street, Unit 1401, San Francisco, CA 94133": + - /url: /listing/999-green-street-unit-1401-san-francisco-ca-60165145 + - generic: Compass Exclusive + - img "999 Green Street, Unit 1401" + - generic: $2,695,000 + - generic: 1 beds + - generic: 2 baths + - generic: 1,473 sqft + - generic: 999 Green Street, Unit 1401, San Francisco, CA 94133 + - link "Compass Exclusive 400 Grove Street, Unit 504 $1,695,000 2 beds 2 baths — sqft 400 Grove Street, Unit 504, San Francisco, CA 94102": + - /url: /listing/400-grove-street-unit-504-san-francisco-ca-43941473 + - generic: Compass Exclusive + - img "400 Grove Street, Unit 504" + - generic: $1,695,000 + - generic: 2 beds + - generic: 2 baths + - generic: — sqft + - generic: 400 Grove Street, Unit 504, San Francisco, CA 94102 + - link "Compass Exclusive 88 King Street, Unit 504 $999,900 2 beds 2 baths 1,154 sqft 88 King Street, Unit 504, San Francisco, CA 94107": + - /url: /listing/88-king-street-unit-504-san-francisco-ca-53479305 + - generic: Compass Exclusive + - img "88 King Street, Unit 504" + - generic: $999,900 + - generic: 2 beds + - generic: 2 baths + - generic: 1,154 sqft + - generic: 88 King Street, Unit 504, San Francisco, CA 94107 + - link "Compass Exclusive 201 Fell Street $67,000 — beds 0 baths 350 sqft 201 Fell Street, San Francisco, CA 94102": + - /url: /listing/201-fell-street-san-francisco-ca-60550161 + - generic: Compass Exclusive + - img "201 Fell Street" + - generic: $67,000 + - generic: — beds + - generic: 0 baths + - generic: 350 sqft + - generic: 201 Fell Street, San Francisco, CA 94102 + - link "Compass Exclusive 1542 15th Street $1,295,000 3 beds 1.5 baths 1,380 sqft 1542 15th Street, San Francisco, CA 94103": + - /url: /listing/1542-15th-street-san-francisco-ca-68920025 + - generic: Compass Exclusive + - img "1542 15th Street" + - generic: $1,295,000 + - generic: 3 beds + - generic: 1.5 baths + - generic: 1,380 sqft + - generic: 1542 15th Street, San Francisco, CA 94103 + - link "Compass Exclusive 417 Buena Vista Avenue East $1,590,000 — beds — baths — sqft 417 Buena Vista Avenue East, San Francisco, CA 94117": + - /url: /listing/417-buena-vista-avenue-east-san-francisco-ca-11779665 + - generic: Compass Exclusive + - img "417 Buena Vista Avenue East" + - generic: $1,590,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 417 Buena Vista Avenue East, San Francisco, CA 94117 + - link "Compass Exclusive 211 Steiner Street $213,000 — beds 0 baths 1,400 sqft 211 Steiner Street, San Francisco, CA 94117": + - /url: /listing/211-steiner-street-san-francisco-ca-55126769 + - generic: Compass Exclusive + - img "211 Steiner Street" + - generic: $213,000 + - generic: — beds + - generic: 0 baths + - generic: 1,400 sqft + - generic: 211 Steiner Street, San Francisco, CA 94117 + - link "Compass Exclusive 2740 38th Avenue $1,900,000 6 beds 3 baths 2,990 sqft 2740 38th Avenue, San Francisco, CA 94116": + - /url: /listing/2740-38th-avenue-san-francisco-ca-33865425 + - generic: Compass Exclusive + - img "2740 38th Avenue" + - generic: $1,900,000 + - generic: 6 beds + - generic: 3 baths + - generic: 2,990 sqft + - generic: 2740 38th Avenue, San Francisco, CA 94116 + - link "Compass Exclusive 1330-1332 Greenwich Street $8,995,000 5 beds 6 baths 4,447 sqft 1330-1332 Greenwich Street, San Francisco, CA 94109": + - /url: /listing/1330-1332-greenwich-street-san-francisco-ca-46862593 + - generic: Compass Exclusive + - img "1330-1332 Greenwich Street" + - generic: $8,995,000 + - generic: 5 beds + - generic: 6 baths + - generic: 4,447 sqft + - generic: 1330-1332 Greenwich Street, San Francisco, CA 94109 + - link "200 Brannan Street, Unit 130 $1,475,000 1 beds 1.5 baths 1,645 sqft 200 Brannan Street, Unit 130, San Francisco, CA 94107": + - /url: /listing/200-brannan-street-unit-130-san-francisco-ca-32648585 + - img "200 Brannan Street, Unit 130" + - generic: $1,475,000 + - generic: 1 beds + - generic: 1.5 baths + - generic: 1,645 sqft + - generic: 200 Brannan Street, Unit 130, San Francisco, CA 94107 + - link "Compass Exclusive 1821 North Milwaukee Avenue, Unit 401 $650,000 2 beds 2 baths 1,445 sqft 1821 North Milwaukee Avenue, Unit 401, Chicago, IL 60647": + - /url: /listing/1821-north-milwaukee-avenue-unit-401-chicago-il-78121113 + - generic: Compass Exclusive + - img "1821 North Milwaukee Avenue, Unit 401" + - generic: $650,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,445 sqft + - generic: 1821 North Milwaukee Avenue, Unit 401, Chicago, IL 60647 + - link "Compass Exclusive 1600 West Greenleaf Avenue, Unit 303 $163,000 — beds — baths — sqft 1600 West Greenleaf Avenue, Unit 303, Chicago, IL 60626": + - /url: /listing/1600-west-greenleaf-avenue-unit-303-chicago-il-88621545 + - generic: Compass Exclusive + - img "1600 West Greenleaf Avenue, Unit 303" + - generic: $163,000 + - generic: — beds + - generic: — baths + - generic: — sqft + - generic: 1600 West Greenleaf Avenue, Unit 303, Chicago, IL 60626 + - link "Compass Exclusive 1946 West Armitage Avenue $1,099,000 5 beds 3 baths — sqft 1946 West Armitage Avenue, Chicago, IL 60622": + - /url: /listing/1946-west-armitage-avenue-chicago-il-75360473 + - generic: Compass Exclusive + - img "1946 West Armitage Avenue" + - generic: $1,099,000 + - generic: 5 beds + - generic: 3 baths + - generic: — sqft + - generic: 1946 West Armitage Avenue, Chicago, IL 60622 + - link "Compass Exclusive 2926 West Lyndale Street $1,100,000 4 beds 4 baths — sqft 2926 West Lyndale Street, Chicago, IL 60647": + - /url: /listing/2926-west-lyndale-street-chicago-il-09848473 + - generic: Compass Exclusive + - img "2926 West Lyndale Street" + - generic: $1,100,000 + - generic: 4 beds + - generic: 4 baths + - generic: — sqft + - generic: 2926 West Lyndale Street, Chicago, IL 60647 + - link "4627 North Kenmore Avenue, Unit 1E $425,000 2 beds 2.5 baths 1,500 sqft 4627 North Kenmore Avenue, Unit 1E, Chicago, IL 60640": + - /url: /listing/4627-north-kenmore-avenue-unit-1e-chicago-il-01630305 + - img "4627 North Kenmore Avenue, Unit 1E" + - generic: $425,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,500 sqft + - generic: 4627 North Kenmore Avenue, Unit 1E, Chicago, IL 60640 + - link "Compass Exclusive 1639 North Dayton Street $2,795,000 6 beds 6 baths — sqft 1639 North Dayton Street, Chicago, IL 60614": + - /url: /listing/1639-north-dayton-street-chicago-il-17330249 + - generic: Compass Exclusive + - img "1639 North Dayton Street" + - generic: $2,795,000 + - generic: 6 beds + - generic: 6 baths + - generic: — sqft + - generic: 1639 North Dayton Street, Chicago, IL 60614 + - link "Compass Exclusive 815 North Marshfield Avenue, Unit 204 $550,000 2 beds 2 baths 1,100 sqft 815 North Marshfield Avenue, Unit 204, Chicago, IL 60622": + - /url: /listing/815-north-marshfield-avenue-unit-204-chicago-il-87885121 + - generic: Compass Exclusive + - img "815 North Marshfield Avenue, Unit 204" + - generic: $550,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,100 sqft + - generic: 815 North Marshfield Avenue, Unit 204, Chicago, IL 60622 + - link "Compass Exclusive 4152 North Damen Avenue $1,095,000 5 beds 3 baths — sqft 4152 North Damen Avenue, Chicago, IL 60618": + - /url: /listing/4152-north-damen-avenue-chicago-il-31341033 + - generic: Compass Exclusive + - img "4152 North Damen Avenue" + - generic: $1,095,000 + - generic: 5 beds + - generic: 3 baths + - generic: — sqft + - generic: 4152 North Damen Avenue, Chicago, IL 60618 + - link "Compass Exclusive 2254 West Chicago Avenue, Unit 5S $965,000 3 beds 2 baths — sqft 2254 West Chicago Avenue, Unit 5S, Chicago, IL 60622": + - /url: /listing/2252-west-chicago-avenue-unit-5s-chicago-il-31183913 + - generic: Compass Exclusive + - img "2254 West Chicago Avenue, Unit 5S" + - generic: $965,000 + - generic: 3 beds + - generic: 2 baths + - generic: — sqft + - generic: 2254 West Chicago Avenue, Unit 5S, Chicago, IL 60622 + - link "Compass Exclusive 1702 North Campbell Avenue $1,200,000 7 beds 4 baths — sqft 1702 North Campbell Avenue, Chicago, IL 60647": + - /url: /listing/1702-north-campbell-avenue-chicago-il-04325137 + - generic: Compass Exclusive + - img "1702 North Campbell Avenue" + - generic: $1,200,000 + - generic: 7 beds + - generic: 4 baths + - generic: — sqft + - generic: 1702 North Campbell Avenue, Chicago, IL 60647 + - link "Compass Exclusive 2252 West Chicago Avenue, Unit 2S $845,000 3 beds 2 baths — sqft 2252 West Chicago Avenue, Unit 2S, Chicago, IL 60622": + - /url: /listing/2252-west-chicago-avenue-unit-2s-chicago-il-49591921 + - generic: Compass Exclusive + - img "2252 West Chicago Avenue, Unit 2S" + - generic: $845,000 + - generic: 3 beds + - generic: 2 baths + - generic: — sqft + - generic: 2252 West Chicago Avenue, Unit 2S, Chicago, IL 60622 + - link "Compass Exclusive 2707 West Belmont Avenue, Unit 3E $625,000 3 beds 2 baths 1,700 sqft 2707 West Belmont Avenue, Unit 3E, Chicago, IL 60618": + - /url: /listing/2707-west-belmont-avenue-unit-3e-chicago-il-79058521 + - generic: Compass Exclusive + - img "2707 West Belmont Avenue, Unit 3E" + - generic: $625,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,700 sqft + - generic: 2707 West Belmont Avenue, Unit 3E, Chicago, IL 60618 + - link "Compass Exclusive 4755 North Washtenaw Avenue, Unit 407 $425,000 2 beds 2 baths — sqft 4755 North Washtenaw Avenue, Unit 407, Chicago, IL 60625": + - /url: /listing/4755-north-washtenaw-avenue-unit-407-chicago-il-16471945 + - generic: Compass Exclusive + - img "4755 North Washtenaw Avenue, Unit 407" + - generic: $425,000 + - generic: 2 beds + - generic: 2 baths + - generic: — sqft + - generic: 4755 North Washtenaw Avenue, Unit 407, Chicago, IL 60625 + - link "Compass Exclusive 2715 North Bosworth Avenue $2,295,000 5 beds 4 baths — sqft 2715 North Bosworth Avenue, Chicago, IL 60614": + - /url: /listing/2715-north-bosworth-avenue-chicago-il-54813449 + - generic: Compass Exclusive + - img "2715 North Bosworth Avenue" + - generic: $2,295,000 + - generic: 5 beds + - generic: 4 baths + - generic: — sqft + - generic: 2715 North Bosworth Avenue, Chicago, IL 60614 + - link "Compass Exclusive 449 West Fullerton Avenue $1,995,000 4 beds 5 baths — sqft 449 West Fullerton Avenue, Chicago, IL 60614": + - /url: /listing/449-west-fullerton-avenue-chicago-il-34643817 + - generic: Compass Exclusive + - img "449 West Fullerton Avenue" + - generic: $1,995,000 + - generic: 4 beds + - generic: 5 baths + - generic: — sqft + - generic: 449 West Fullerton Avenue, Chicago, IL 60614 + - link "Compass Exclusive 1032 North Wood Street $2,599,000 6 beds 5 baths 5,000 sqft 1032 North Wood Street, Chicago, IL 60622": + - /url: /listing/1032-north-wood-street-chicago-il-83473945 + - generic: Compass Exclusive + - img "1032 North Wood Street" + - generic: $2,599,000 + - generic: 6 beds + - generic: 5 baths + - generic: 5,000 sqft + - generic: 1032 North Wood Street, Chicago, IL 60622 + - link "Compass Exclusive 2753 North Hermitage Avenue $999,000 3 beds 3 baths — sqft 2753 North Hermitage Avenue, Chicago, IL 60614": + - /url: /listing/2753-north-hermitage-avenue-chicago-il-36535953 + - generic: Compass Exclusive + - img "2753 North Hermitage Avenue" + - generic: $999,000 + - generic: 3 beds + - generic: 3 baths + - generic: — sqft + - generic: 2753 North Hermitage Avenue, Chicago, IL 60614 + - link "Compass Exclusive 2340 West Roscoe Street, Unit 3W $869,000 3 beds 3 baths 2,400 sqft 2340 West Roscoe Street, Unit 3W, Chicago, IL 60618": + - /url: /listing/2340-west-roscoe-street-unit-3w-chicago-il-29054457 + - generic: Compass Exclusive + - img "2340 West Roscoe Street, Unit 3W" + - generic: $869,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,400 sqft + - generic: 2340 West Roscoe Street, Unit 3W, Chicago, IL 60618 + - link "Pending 2329 North Cambridge Avenue, Unit G $1,950,000 3 beds 3.5 baths 2,915 sqft 2329 North Cambridge Avenue, Unit G, Chicago, IL 60614": + - /url: /listing/2329-north-cambridge-avenue-unit-g-chicago-il-50253617 + - generic: Pending + - img "2329 North Cambridge Avenue, Unit G" + - generic: $1,950,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 2,915 sqft + - generic: 2329 North Cambridge Avenue, Unit G, Chicago, IL 60614 + - link "421 West Huron Street, Unit 604 $514,900 2 beds 2 baths 1,195 sqft 421 West Huron Street, Unit 604, Chicago, IL 60654": + - /url: /listing/421-west-huron-street-unit-604-chicago-il-58037993 + - img "421 West Huron Street, Unit 604" + - generic: $514,900 + - generic: 2 beds + - generic: 2 baths + - generic: 1,195 sqft + - generic: 421 West Huron Street, Unit 604, Chicago, IL 60654 + - link "2329 North Cambridge Avenue, Unit C $2,100,000 4 beds 3.5 baths 2,930 sqft 2329 North Cambridge Avenue, Unit C, Chicago, IL 60614": + - /url: /listing/2329-north-cambridge-avenue-unit-c-chicago-il-21720449 + - img "2329 North Cambridge Avenue, Unit C" + - generic: $2,100,000 + - generic: 4 beds + - generic: 3.5 baths + - generic: 2,930 sqft + - generic: 2329 North Cambridge Avenue, Unit C, Chicago, IL 60614 + - link "Compass Exclusive 757 North Orleans Street, Unit 1004 $455,000 2 beds 2 baths 1,181 sqft 757 North Orleans Street, Unit 1004, Chicago, IL 60654": + - /url: /listing/757-north-orleans-street-unit-1004-chicago-il-51375689 + - generic: Compass Exclusive + - img "757 North Orleans Street, Unit 1004" + - generic: $455,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,181 sqft + - generic: 757 North Orleans Street, Unit 1004, Chicago, IL 60654 + - link "Compass Exclusive 3125 North Clybourn Avenue, Unit 2N $725,000 3 beds 2 baths 1,700 sqft 3125 North Clybourn Avenue, Unit 2N, Chicago, IL 60618": + - /url: /listing/3125-north-clybourn-avenue-unit-2n-chicago-il-98683425 + - generic: Compass Exclusive + - img "3125 North Clybourn Avenue, Unit 2N" + - generic: $725,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,700 sqft + - generic: 3125 North Clybourn Avenue, Unit 2N, Chicago, IL 60618 + - link "Compass Exclusive 2329 North Cambridge Avenue, Unit A $1,680,000 2 beds 3 baths 2,220 sqft 2329 North Cambridge Avenue, Unit A, Chicago, IL 60614": + - /url: /listing/2329-north-cambridge-avenue-unit-a-chicago-il-54391729 + - generic: Compass Exclusive + - img "2329 North Cambridge Avenue, Unit A" + - generic: $1,680,000 + - generic: 2 beds + - generic: 3 baths + - generic: 2,220 sqft + - generic: 2329 North Cambridge Avenue, Unit A, Chicago, IL 60614 + - link "Compass Exclusive 2720 North Ashland Avenue, Unit 2S $850,000 3 beds 2 baths 1,650 sqft 2720 North Ashland Avenue, Unit 2S, Chicago, IL 60614": + - /url: /listing/2720-north-ashland-avenue-unit-2s-chicago-il-26125497 + - generic: Compass Exclusive + - img "2720 North Ashland Avenue, Unit 2S" + - generic: $850,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,650 sqft + - generic: 2720 North Ashland Avenue, Unit 2S, Chicago, IL 60614 + - link "Compass Exclusive 2720 North Ashland Avenue, Unit 3S $950,000 3 beds 2 baths 1,800 sqft 2720 North Ashland Avenue, Unit 3S, Chicago, IL 60614": + - /url: /listing/2720-north-ashland-avenue-unit-3s-chicago-il-54056553 + - generic: Compass Exclusive + - img "2720 North Ashland Avenue, Unit 3S" + - generic: $950,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,800 sqft + - generic: 2720 North Ashland Avenue, Unit 3S, Chicago, IL 60614 + - link "Compass Exclusive 1951 West Huron Street $2,150,000 5 beds 3.5 baths 4,500 sqft 1951 West Huron Street, Chicago, IL 60622": + - /url: /listing/1951-west-huron-street-chicago-il-77703721 + - generic: Compass Exclusive + - img "1951 West Huron Street" + - generic: $2,150,000 + - generic: 5 beds + - generic: 3.5 baths + - generic: 4,500 sqft + - generic: 1951 West Huron Street, Chicago, IL 60622 + - link "Compass Exclusive 2471 North Albany Avenue $900,000 0 beds 0 baths — sqft 2471 North Albany Avenue, Chicago, IL 60647": + - /url: /listing/2471-north-albany-avenue-chicago-il-74707001 + - generic: Compass Exclusive + - img "2471 North Albany Avenue" + - generic: $900,000 + - generic: 0 beds + - generic: 0 baths + - generic: — sqft + - generic: 2471 North Albany Avenue, Chicago, IL 60647 + - link "Compass Exclusive 21 West Goethe Street, Unit 15A $274,900 1 beds 1 baths — sqft 21 West Goethe Street, Unit 15A, Chicago, IL 60610": + - /url: /listing/21-west-goethe-street-unit-15a-chicago-il-30603593 + - generic: Compass Exclusive + - img "21 West Goethe Street, Unit 15A" + - generic: $274,900 + - generic: 1 beds + - generic: 1 baths + - generic: — sqft + - generic: 21 West Goethe Street, Unit 15A, Chicago, IL 60610 + - link "Compass Exclusive 2232 North Dayton Street $3,100,000 4 beds 5 baths 3,986 sqft 2232 North Dayton Street, Chicago, IL 60614": + - /url: /listing/2232-north-dayton-street-chicago-il-90899201 + - generic: Compass Exclusive + - img "2232 North Dayton Street" + - generic: $3,100,000 + - generic: 4 beds + - generic: 5 baths + - generic: 3,986 sqft + - generic: 2232 North Dayton Street, Chicago, IL 60614 + - link "2 Douglass Park, Unit 5 $390,175 2 beds 1 baths 985 sqft 2 Douglass Park, Unit 5, Boston, MA 02118": + - /url: /listing/2-douglass-park-unit-5-boston-ma-44139993 + - img "2 Douglass Park, Unit 5" + - generic: $390,175 + - generic: 2 beds + - generic: 1 baths + - generic: 985 sqft + - generic: 2 Douglass Park, Unit 5, Boston, MA 02118 + - link "Compass Exclusive 40 Fay Street, Unit H706 $1,495,000 2 beds 1.5 baths 1,400 sqft 40 Fay Street, Unit H706, Boston, MA 02118": + - /url: /listing/40-fay-street-unit-h706-boston-ma-70060769 + - generic: Compass Exclusive + - img "40 Fay Street, Unit H706" + - generic: $1,495,000 + - generic: 2 beds + - generic: 1.5 baths + - generic: 1,400 sqft + - generic: 40 Fay Street, Unit H706, Boston, MA 02118 + - link "Compass Exclusive 554 East 5th Street, Unit 1 $899,000 2 beds 2 baths 1,140 sqft 554 East 5th Street, Unit 1, Boston, MA 02127": + - /url: /listing/554-east-5th-street-unit-1-boston-ma-48810625 + - generic: Compass Exclusive + - img "554 East 5th Street, Unit 1" + - generic: $899,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,140 sqft + - generic: 554 East 5th Street, Unit 1, Boston, MA 02127 + - link "Compass Exclusive 25 Isabella Street, Unit 502 $3,000,000 2 beds 2 baths 1,519 sqft 25 Isabella Street, Unit 502, Boston, MA 02116": + - /url: /listing/25-isabella-street-unit-502-boston-ma-54764753 + - generic: Compass Exclusive + - img "25 Isabella Street, Unit 502" + - generic: $3,000,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,519 sqft + - generic: 25 Isabella Street, Unit 502, Boston, MA 02116 + - link "Compass Exclusive 124 West Newton Street, Unit 2 $3,850,000 4 beds 3 baths 2,350 sqft 124 West Newton Street, Unit 2, Boston, MA 02118": + - /url: /listing/124-west-newton-street-unit-2-boston-ma-65814257 + - generic: Compass Exclusive + - img "124 West Newton Street, Unit 2" + - generic: $3,850,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,350 sqft + - generic: 124 West Newton Street, Unit 2, Boston, MA 02118 + - link "Compass Exclusive Address Upon Request $1,400,000 2 beds 2 baths 1,000 sqft Address Upon Request, Boston, MA 02114": + - /url: /listing/address-upon-request-boston-ma-70707233 + - generic: Compass Exclusive + - img "Address Upon Request" + - generic: $1,400,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,000 sqft + - generic: Address Upon Request, Boston, MA 02114 + - link "Compass Exclusive 90 Revere Street, Unit 2 $3,000,000 3 beds 3 baths 1,712 sqft 90 Revere Street, Unit 2, Boston, MA 02114": + - /url: /listing/90-revere-street-unit-2-boston-ma-39701289 + - generic: Compass Exclusive + - img "90 Revere Street, Unit 2" + - generic: $3,000,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,712 sqft + - generic: 90 Revere Street, Unit 2, Boston, MA 02114 + - link "Compass Exclusive 128 Marlborough Street, Unit 1 $1,250,000 2 beds — baths 1,041 sqft 128 Marlborough Street, Unit 1, Boston, MA 02116": + - /url: /listing/128-marlborough-street-unit-1-boston-ma-59759137 + - generic: Compass Exclusive + - img "128 Marlborough Street, Unit 1" + - generic: $1,250,000 + - generic: 2 beds + - generic: — baths + - generic: 1,041 sqft + - generic: 128 Marlborough Street, Unit 1, Boston, MA 02116 + - link "Compass Exclusive 725 East 6th Street, Unit 1 $1,100,000 3 beds 3 baths 1,622 sqft 725 East 6th Street, Unit 1, Boston, MA 02127": + - /url: /listing/725-east-6th-street-unit-1-boston-ma-55802753 + - generic: Compass Exclusive + - img "725 East 6th Street, Unit 1" + - generic: $1,100,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,622 sqft + - generic: 725 East 6th Street, Unit 1, Boston, MA 02127 + - link "Compass Exclusive 140 Shawmut Avenue, Unit 7A $2,695,000 4 beds 4 baths 2,596 sqft 140 Shawmut Avenue, Unit 7A, Boston, MA 02118": + - /url: /listing/140-shawmut-avenue-unit-7a-boston-ma-92069057 + - generic: Compass Exclusive + - img "140 Shawmut Avenue, Unit 7A" + - generic: $2,695,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,596 sqft + - generic: 140 Shawmut Avenue, Unit 7A, Boston, MA 02118 + - link "Compass Exclusive 60 Commonwealth Avenue, Unit 7 $2,680,000 3 beds 2 baths 1,500 sqft 60 Commonwealth Avenue, Unit 7, Boston, MA 02116": + - /url: /listing/60-commonwealth-avenue-unit-7-boston-ma-70186201 + - generic: Compass Exclusive + - img "60 Commonwealth Avenue, Unit 7" + - generic: $2,680,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,500 sqft + - generic: 60 Commonwealth Avenue, Unit 7, Boston, MA 02116 + - link "Compass Exclusive 90 Revere Street, Unit 3 $3,500,000 3 beds 2.5 baths 1,800 sqft 90 Revere Street, Unit 3, Boston, MA 02114": + - /url: /listing/90-revere-street-unit-3-boston-ma-25286625 + - generic: Compass Exclusive + - img "90 Revere Street, Unit 3" + - generic: $3,500,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,800 sqft + - generic: 90 Revere Street, Unit 3, Boston, MA 02114 + - link "Compass Exclusive 795 East 4th Street $2,799,000 4 beds 4 baths 2,783 sqft 795 East 4th Street, Boston, MA 02127": + - /url: /listing/795-east-4th-street-boston-ma-98397657 + - generic: Compass Exclusive + - img "795 East 4th Street" + - generic: $2,799,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,783 sqft + - generic: 795 East 4th Street, Boston, MA 02127 + - link "Compass Exclusive 321 Commonwealth Avenue, Unit 40 $2,350,000 2 beds 2 baths 1,425 sqft 321 Commonwealth Avenue, Unit 40, Boston, MA 02115": + - /url: /listing/321-commonwealth-avenue-unit-40-boston-ma-97621689 + - generic: Compass Exclusive + - img "321 Commonwealth Avenue, Unit 40" + - generic: $2,350,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,425 sqft + - generic: 321 Commonwealth Avenue, Unit 40, Boston, MA 02115 + - link "131 Mt Vernon Street, Unit 2 $2,995,000 4 beds 3 baths 2,183 sqft 131 Mt Vernon Street, Unit 2, Boston, MA 02108": + - /url: /listing/131-mt-vernon-street-unit-2-boston-ma-13405161 + - img "131 Mt Vernon Street, Unit 2" + - generic: $2,995,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,183 sqft + - generic: 131 Mt Vernon Street, Unit 2, Boston, MA 02108 + - link "Compass Exclusive 666 Massachusetts Avenue Price upon request 9 beds 7 baths 5,050 sqft 666 Massachusetts Avenue, Boston, MA 02118": + - /url: /listing/666-massachusetts-avenue-boston-ma-59548849 + - generic: Compass Exclusive + - img "666 Massachusetts Avenue" + - generic: Price upon request + - generic: 9 beds + - generic: 7 baths + - generic: 5,050 sqft + - generic: 666 Massachusetts Avenue, Boston, MA 02118 + - link "Compass Exclusive Address Upon Request $850,000 3 beds 2.5 baths 1,450 sqft Address Upon Request, Jamaica Plain, MA 02130": + - /url: /listing/address-upon-request-boston-ma-40517209 + - generic: Compass Exclusive + - img "Address Upon Request" + - generic: $850,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,450 sqft + - generic: Address Upon Request, Jamaica Plain, MA 02130 + - link "Compass Exclusive Address Upon Request $899,000 3 beds 2 baths 1,713 sqft Address Upon Request, Boston, MA 02125": + - /url: /listing/address-upon-request-boston-ma-41120841 + - generic: Compass Exclusive + - img "Address Upon Request" + - generic: $899,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,713 sqft + - generic: Address Upon Request, Boston, MA 02125 + - link "Compass Exclusive 137 Princeton Street, Unit 2 $599,000 2 beds — baths 1,108 sqft 137 Princeton Street, Unit 2, Boston, MA 02128": + - /url: /listing/137-princeton-street-unit-2-boston-ma-47303009 + - generic: Compass Exclusive + - img "137 Princeton Street, Unit 2" + - generic: $599,000 + - generic: 2 beds + - generic: — baths + - generic: 1,108 sqft + - generic: 137 Princeton Street, Unit 2, Boston, MA 02128 + - link "Compass Exclusive 16 A Meehan Street, Unit 1 $899,000 3 beds 2 baths 1,217 sqft 16 A Meehan Street, Unit 1, Boston, MA 02130": + - /url: /listing/16-a-meehan-street-unit-1-boston-ma-87157673 + - generic: Compass Exclusive + - img "16 A Meehan Street, Unit 1" + - generic: $899,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,217 sqft + - generic: 16 A Meehan Street, Unit 1, Boston, MA 02130 + - link "Compass Exclusive 167 Lexington Street, Unit 2 $650,000 2 beds 1 baths 634 sqft 167 Lexington Street, Unit 2, East Boston, MA 02128": + - /url: /listing/167-lexington-street-unit-2-boston-ma-32402377 + - generic: Compass Exclusive + - img "167 Lexington Street, Unit 2" + - generic: $650,000 + - generic: 2 beds + - generic: 1 baths + - generic: 634 sqft + - generic: 167 Lexington Street, Unit 2, East Boston, MA 02128 + - link "Compass Exclusive 319 A Street, Unit 211 $998,500 2 beds — baths 813 sqft 319 A Street, Unit 211, Boston, MA 02210": + - /url: /listing/319-a-street-unit-211-boston-ma-34030889 + - generic: Compass Exclusive + - img "319 A Street, Unit 211" + - generic: $998,500 + - generic: 2 beds + - generic: — baths + - generic: 813 sqft + - generic: 319 A Street, Unit 211, Boston, MA 02210 + - link "Compass Exclusive Gordon Street $2,100,000 5 beds 5 baths 3,651 sqft Gordon Street, Boston, MA 02130": + - /url: /listing/gordon-street-boston-ma-51920401 + - generic: Compass Exclusive + - img "Gordon Street" + - generic: $2,100,000 + - generic: 5 beds + - generic: 5 baths + - generic: 3,651 sqft + - generic: Gordon Street, Boston, MA 02130 + - link "Compass Exclusive 281 Newbury Street $6,000,000 8 beds 7 baths 5,510 sqft 281 Newbury Street, Boston, MA 02115": + - /url: /listing/281-newbury-street-boston-ma-80593441 + - generic: Compass Exclusive + - img "281 Newbury Street" + - generic: $6,000,000 + - generic: 8 beds + - generic: 7 baths + - generic: 5,510 sqft + - generic: 281 Newbury Street, Boston, MA 02115 + - link "Compass Exclusive 205 Park Lane $2,400,000 3 beds 3 baths 2,085 sqft 205 Park Lane, Austin, TX 78704": + - /url: /listing/205-park-lane-austin-tx-16311449 + - generic: Compass Exclusive + - img "205 Park Lane" + - generic: $2,400,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,085 sqft + - generic: 205 Park Lane, Austin, TX 78704 + - link "Compass Exclusive 2200 De Verne Street $2,075,000 4 beds 3 baths 2,602 sqft 2200 De Verne Street, Austin, TX 78704": + - /url: /listing/2200-de-verne-street-austin-tx-35969529 + - generic: Compass Exclusive + - img "2200 De Verne Street" + - generic: $2,075,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,602 sqft + - generic: 2200 De Verne Street, Austin, TX 78704 + - link "5801 Valley Circle $1,975,000 5 beds 4 baths 3,920 sqft 5801 Valley Circle, Austin, TX 78731": + - /url: /listing/5801-valley-circle-austin-tx-16722001 + - img "5801 Valley Circle" + - generic: $1,975,000 + - generic: 5 beds + - generic: 4 baths + - generic: 3,920 sqft + - generic: 5801 Valley Circle, Austin, TX 78731 + - link "2311 Westoak Drive $2,695,000 4 beds 4.5 baths 3,662 sqft 2311 Westoak Drive, Austin, TX 78704": + - /url: /listing/2311-westoak-drive-austin-tx-77497457 + - img "2311 Westoak Drive" + - generic: $2,695,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 3,662 sqft + - generic: 2311 Westoak Drive, Austin, TX 78704 + - link "Compass Exclusive 1102 Clermont Avenue $1,400,000 3 beds 2.5 baths 2,387 sqft 1102 Clermont Avenue, Austin, TX 78702": + - /url: /listing/1102-clermont-avenue-austin-tx-58228761 + - generic: Compass Exclusive + - img "1102 Clermont Avenue" + - generic: $1,400,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 2,387 sqft + - generic: 1102 Clermont Avenue, Austin, TX 78702 + - link "Compass Exclusive 3467 North Hills Drive $525,000 3 beds 2.5 baths 1,896 sqft 3467 North Hills Drive, Austin, TX 78731": + - /url: /listing/3467-north-hills-drive-austin-tx-05171257 + - generic: Compass Exclusive + - img "3467 North Hills Drive" + - generic: $525,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,896 sqft + - generic: 3467 North Hills Drive, Austin, TX 78731 + - link "Compass Exclusive 3467 North Hills Drive $525,000 3 beds 3 baths 1,896 sqft 3467 North Hills Drive, Austin, TX 78731": + - /url: /listing/3467-north-hills-drive-austin-tx-44691825 + - generic: Compass Exclusive + - img "3467 North Hills Drive" + - generic: $525,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,896 sqft + - generic: 3467 North Hills Drive, Austin, TX 78731 + - link "Compass Exclusive 1100 Clermont Avenue $1,400,000 3 beds 2.5 baths 2,387 sqft 1100 Clermont Avenue, Austin, TX 78702": + - /url: /listing/1100-clermont-avenue-austin-tx-91571489 + - generic: Compass Exclusive + - img "1100 Clermont Avenue" + - generic: $1,400,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 2,387 sqft + - generic: 1100 Clermont Avenue, Austin, TX 78702 + - link "2006 Mountain View Road $6,499,000 7 beds 7.5 baths 5,370 sqft 2006 Mountain View Road, Austin, TX 78703": + - /url: /listing/2006-mountain-view-road-austin-tx-18989937 + - img "2006 Mountain View Road" + - generic: $6,499,000 + - generic: 7 beds + - generic: 7.5 baths + - generic: 5,370 sqft + - generic: 2006 Mountain View Road, Austin, TX 78703 + - link "Compass Exclusive 2512 East 9th Street $725,000 2 beds — baths 750 sqft 2512 East 9th Street, Austin, TX 78702": + - /url: /listing/2512-east-9th-street-austin-tx-34176345 + - generic: Compass Exclusive + - img "2512 East 9th Street" + - generic: $725,000 + - generic: 2 beds + - generic: — baths + - generic: 750 sqft + - generic: 2512 East 9th Street, Austin, TX 78702 + - link "Compass Exclusive 1501 Wilson Heights Drive $1,100,000 3 beds 3 baths 1,878 sqft 1501 Wilson Heights Drive, Austin, TX 78746": + - /url: /listing/1501-wilson-heights-drive-austin-tx-16960001 + - generic: Compass Exclusive + - img "1501 Wilson Heights Drive" + - generic: $1,100,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,878 sqft + - generic: 1501 Wilson Heights Drive, Austin, TX 78746 + - link "4614 Jinx Avenue $560,000 3 beds 2 baths 1,975 sqft 4614 Jinx Avenue, Austin, TX 78745": + - /url: /listing/4614-jinx-avenue-austin-tx-28420929 + - img "4614 Jinx Avenue" + - generic: $560,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,975 sqft + - generic: 4614 Jinx Avenue, Austin, TX 78745 + - link "Compass Exclusive 406 Franklin Boulevard, Unit 2 $580,000 2 beds 3 baths 1,100 sqft 406 Franklin Boulevard, Unit 2, Austin, TX 78751": + - /url: /listing/406-franklin-boulevard-unit-2-austin-tx-95080217 + - generic: Compass Exclusive + - img "406 Franklin Boulevard, Unit 2" + - generic: $580,000 + - generic: 2 beds + - generic: 3 baths + - generic: 1,100 sqft + - generic: 406 Franklin Boulevard, Unit 2, Austin, TX 78751 + - link "Compass Exclusive 2102 East Martin Luther King Jr Boulevard $875,000 2 beds — baths 1,004 sqft 2102 East Martin Luther King Jr Boulevard, Austin, TX 78722": + - /url: /listing/2102-east-martin-luther-king-jr-boulevard-austin-tx-16491801 + - generic: Compass Exclusive + - img "2102 East Martin Luther King Jr Boulevard" + - generic: $875,000 + - generic: 2 beds + - generic: — baths + - generic: 1,004 sqft + - generic: 2102 East Martin Luther King Jr Boulevard, Austin, TX 78722 + - link "Compass Exclusive 800 Embassy Drive, Unit 236 $585,000 2 beds 2 baths 1,289 sqft 800 Embassy Drive, Unit 236, Austin, TX 78702": + - /url: /listing/800-embassy-drive-unit-236-austin-tx-55353609 + - generic: Compass Exclusive + - img "800 Embassy Drive, Unit 236" + - generic: $585,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,289 sqft + - generic: 800 Embassy Drive, Unit 236, Austin, TX 78702 + - link "Compass Exclusive 3915 Tilley Street $918,500 3 beds 3 baths 2,241 sqft 3915 Tilley Street, Austin, TX 78723": + - /url: /listing/3915-tilley-street-austin-tx-23262961 + - generic: Compass Exclusive + - img "3915 Tilley Street" + - generic: $918,500 + - generic: 3 beds + - generic: 3 baths + - generic: 2,241 sqft + - generic: 3915 Tilley Street, Austin, TX 78723 + - link "1004 Juanita Street, Unit 2 $1,199,000 4 beds 3.5 baths 2,122 sqft 1004 Juanita Street, Unit 2, Austin, TX 78704": + - /url: /listing/juanita-street-austin-tx-57428705 + - img "1004 Juanita Street, Unit 2" + - generic: $1,199,000 + - generic: 4 beds + - generic: 3.5 baths + - generic: 2,122 sqft + - generic: 1004 Juanita Street, Unit 2, Austin, TX 78704 + - link "Compass Exclusive 2100 Apricot Glen Drive $2,350,000 4 beds 3 baths 3,485 sqft 2100 Apricot Glen Drive, Austin, TX 78746": + - /url: /listing/2100-apricot-glen-drive-austin-tx-71178969 + - generic: Compass Exclusive + - img "2100 Apricot Glen Drive" + - generic: $2,350,000 + - generic: 4 beds + - generic: 3 baths + - generic: 3,485 sqft + - generic: 2100 Apricot Glen Drive, Austin, TX 78746 + - link "Compass Exclusive 4330 Olenick Street $450,000 2 beds 2 baths 973 sqft 4330 Olenick Street, Austin, TX 78723": + - /url: /listing/4330-olenick-street-austin-tx-04301553 + - generic: Compass Exclusive + - img "4330 Olenick Street" + - generic: $450,000 + - generic: 2 beds + - generic: 2 baths + - generic: 973 sqft + - generic: 4330 Olenick Street, Austin, TX 78723 + - link "Compass Exclusive 3305 Dolphin Drive $775,000 7 beds — baths 3,424 sqft 3305 Dolphin Drive, Austin, TX 78704": + - /url: /listing/3305-dolphin-drive-austin-tx-31707521 + - generic: Compass Exclusive + - img "3305 Dolphin Drive" + - generic: $775,000 + - generic: 7 beds + - generic: — baths + - generic: 3,424 sqft + - generic: 3305 Dolphin Drive, Austin, TX 78704 + - link "1036 Liberty Park Drive, Unit 38A $1,400,000 4 beds 3 baths 2,889 sqft 1036 Liberty Park Drive, Unit 38A, Austin, TX 78746": + - /url: /listing/1036-liberty-park-drive-unit-38a-austin-tx-06932321 + - img "1036 Liberty Park Drive, Unit 38A" + - generic: $1,400,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,889 sqft + - generic: 1036 Liberty Park Drive, Unit 38A, Austin, TX 78746 + - link "1710 Holly Street $595,000 1 beds 1 baths 686 sqft 1710 Holly Street, Austin, TX 78702": + - /url: /listing/1710-holly-street-austin-tx-84863153 + - img "1710 Holly Street" + - generic: $595,000 + - generic: 1 beds + - generic: 1 baths + - generic: 686 sqft + - generic: 1710 Holly Street, Austin, TX 78702 + - link "Compass Exclusive 1422 Palomino Ridge Drive $3,450,000 5 beds 4 baths 5,185 sqft 1422 Palomino Ridge Drive, Austin, TX 78733": + - /url: /listing/1422-palomino-ridge-drive-austin-tx-12995745 + - generic: Compass Exclusive + - img "1422 Palomino Ridge Drive" + - generic: $3,450,000 + - generic: 5 beds + - generic: 4 baths + - generic: 5,185 sqft + - generic: 1422 Palomino Ridge Drive, Austin, TX 78733 + - link "Compass Exclusive 7313 Carver Avenue $465,000 3 beds 2 baths 1,350 sqft 7313 Carver Avenue, Austin, TX 78752": + - /url: /listing/7313-carver-avenue-austin-tx-93390705 + - generic: Compass Exclusive + - img "7313 Carver Avenue" + - generic: $465,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,350 sqft + - generic: 7313 Carver Avenue, Austin, TX 78752 + - link "Compass Exclusive 4907 Majestic Drive $745,000 3 beds 2.5 baths 1,772 sqft 4907 Majestic Drive, Austin, TX 78745": + - /url: /listing/4907-majestic-drive-austin-tx-90510225 + - generic: Compass Exclusive + - img "4907 Majestic Drive" + - generic: $745,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 1,772 sqft + - generic: 4907 Majestic Drive, Austin, TX 78745 + - link "Compass Exclusive 8718 Tallwood Drive $979,000 4 beds 4 baths 2,408 sqft 8718 Tallwood Drive, Austin, TX 78759": + - /url: /listing/8718-tallwood-drive-austin-tx-22574777 + - generic: Compass Exclusive + - img "8718 Tallwood Drive" + - generic: $979,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,408 sqft + - generic: 8718 Tallwood Drive, Austin, TX 78759 + - link "Compass Exclusive 1402 Singleton Avenue, Unit B $515,000 2 beds 2 baths 1,086 sqft 1402 Singleton Avenue, Unit B, Austin, TX 78702": + - /url: /listing/1402-singleton-avenue-unit-b-austin-tx-59791705 + - generic: Compass Exclusive + - img "1402 Singleton Avenue, Unit B" + - generic: $515,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,086 sqft + - generic: 1402 Singleton Avenue, Unit B, Austin, TX 78702 + - link "Compass Exclusive 6603 Liliana Lane $1,825,000 4 beds 5 baths 3,609 sqft 6603 Liliana Lane, Austin, TX 78746": + - /url: /listing/6603-liliana-lane-austin-tx-89262425 + - generic: Compass Exclusive + - img "6603 Liliana Lane" + - generic: $1,825,000 + - generic: 4 beds + - generic: 5 baths + - generic: 3,609 sqft + - generic: 6603 Liliana Lane, Austin, TX 78746 + - link "2010 Northeast 54th Street $915,000 4 beds 3 baths 1,940 sqft 2010 Northeast 54th Street, Seattle, WA 98105": + - /url: /listing/2010-northeast-54th-street-seattle-wa-18874001 + - img "2010 Northeast 54th Street" + - generic: $915,000 + - generic: 4 beds + - generic: 3 baths + - generic: 1,940 sqft + - generic: 2010 Northeast 54th Street, Seattle, WA 98105 + - link "702 South Director Street $425,000 3 beds 1 baths 1,490 sqft 702 South Director Street, Seattle, WA 98108": + - /url: /listing/702-south-director-street-seattle-wa-06075617 + - img "702 South Director Street" + - generic: $425,000 + - generic: 3 beds + - generic: 1 baths + - generic: 1,490 sqft + - generic: 702 South Director Street, Seattle, WA 98108 + - link "941 11th Avenue East, Unit 3 $2,350,000 2 beds 1.75 baths 2,121 sqft 941 11th Avenue East, Unit 3, Seattle, WA 98102": + - /url: /listing/941-11th-avenue-east-unit-3-seattle-wa-21234601 + - img "941 11th Avenue East, Unit 3" + - generic: $2,350,000 + - generic: 2 beds + - generic: 1.75 baths + - generic: 2,121 sqft + - generic: 941 11th Avenue East, Unit 3, Seattle, WA 98102 + - link "5807 55th Avenue Northeast, Unit B $749,000 3 beds 4 baths 1,510 sqft 5807 55th Avenue Northeast, Unit B, Seattle, WA 98105": + - /url: /listing/5807-55th-avenue-northeast-unit-b-seattle-wa-90250753 + - img "5807 55th Avenue Northeast, Unit B" + - generic: $749,000 + - generic: 3 beds + - generic: 4 baths + - generic: 1,510 sqft + - generic: 5807 55th Avenue Northeast, Unit B, Seattle, WA 98105 + - link "610 27th Avenue East $1,315,000 5 beds 2 baths 2,180 sqft 610 27th Avenue East, Seattle, WA 98112": + - /url: /listing/610-27th-avenue-east-seattle-wa-90349753 + - img "610 27th Avenue East" + - generic: $1,315,000 + - generic: 5 beds + - generic: 2 baths + - generic: 2,180 sqft + - generic: 610 27th Avenue East, Seattle, WA 98112 + - link "2818 Boyer Avenue East, Unit 6 $780,000 — beds — baths 635 sqft 2818 Boyer Avenue East, Unit 6, Seattle, WA 98102": + - /url: /listing/2818-boyer-avenue-east-unit-6-seattle-wa-72475809 + - img "2818 Boyer Avenue East, Unit 6" + - generic: $780,000 + - generic: — beds + - generic: — baths + - generic: 635 sqft + - generic: 2818 Boyer Avenue East, Unit 6, Seattle, WA 98102 + - link "300 Virginia Street, Unit 1108 $595,000 1 beds 1 baths 548 sqft 300 Virginia Street, Unit 1108, Seattle, WA 98101": + - /url: /listing/300-virginia-street-unit-1108-seattle-wa-05882073 + - img "300 Virginia Street, Unit 1108" + - generic: $595,000 + - generic: 1 beds + - generic: 1 baths + - generic: 548 sqft + - generic: 300 Virginia Street, Unit 1108, Seattle, WA 98101 + - link "6735 Alonzo Avenue Northwest, Unit A $1,075,000 3 beds 2 baths 1,943 sqft 6735 Alonzo Avenue Northwest, Unit A, Seattle, WA 98117": + - /url: /listing/6735-alonzo-avenue-northwest-unit-a-seattle-wa-29892833 + - img "6735 Alonzo Avenue Northwest, Unit A" + - generic: $1,075,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,943 sqft + - generic: 6735 Alonzo Avenue Northwest, Unit A, Seattle, WA 98117 + - link "2400 Aurora Avenue North, Unit 210 $1,495,000 3 beds 2.25 baths 2,517 sqft 2400 Aurora Avenue North, Unit 210, Seattle, WA 98109": + - /url: /listing/2400-aurora-avenue-north-unit-210-seattle-wa-69429673 + - img "2400 Aurora Avenue North, Unit 210" + - generic: $1,495,000 + - generic: 3 beds + - generic: 2.25 baths + - generic: 2,517 sqft + - generic: 2400 Aurora Avenue North, Unit 210, Seattle, WA 98109 + - link "12569 37th Avenue Northeast $1,194,000 4 beds 3 baths 2,500 sqft 12569 37th Avenue Northeast, Seattle, WA 98125": + - /url: /listing/12569-37th-avenue-northeast-seattle-wa-79972441 + - img "12569 37th Avenue Northeast" + - generic: $1,194,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,500 sqft + - generic: 12569 37th Avenue Northeast, Seattle, WA 98125 + - link "2040 13th Avenue West, Unit 33 $625,000 2 beds 2 baths 976 sqft 2040 13th Avenue West, Unit 33, Seattle, WA 98119": + - /url: /listing/2040-13th-avenue-west-unit-33-seattle-wa-63141689 + - img "2040 13th Avenue West, Unit 33" + - generic: $625,000 + - generic: 2 beds + - generic: 2 baths + - generic: 976 sqft + - generic: 2040 13th Avenue West, Unit 33, Seattle, WA 98119 + - link "300 Virginia Street, Unit 811 $595,000 1 beds 1 baths 586 sqft 300 Virginia Street, Unit 811, Seattle, WA 98101": + - /url: /listing/300-virginia-street-unit-811-seattle-wa-51071737 + - img "300 Virginia Street, Unit 811" + - generic: $595,000 + - generic: 1 beds + - generic: 1 baths + - generic: 586 sqft + - generic: 300 Virginia Street, Unit 811, Seattle, WA 98101 + - link "7541 Seward Park Avenue South $1,725,000 5 beds 3 baths 2,645 sqft 7541 Seward Park Avenue South, Seattle, WA 98118": + - /url: /listing/7541-seward-park-avenue-south-seattle-wa-96085721 + - img "7541 Seward Park Avenue South" + - generic: $1,725,000 + - generic: 5 beds + - generic: 3 baths + - generic: 2,645 sqft + - generic: 7541 Seward Park Avenue South, Seattle, WA 98118 + - link "300 Virginia Street, Unit 809 $1,080,000 2 beds 1.75 baths 940 sqft 300 Virginia Street, Unit 809, Seattle, WA 98101": + - /url: /listing/300-virginia-street-unit-809-seattle-wa-21535001 + - img "300 Virginia Street, Unit 809" + - generic: $1,080,000 + - generic: 2 beds + - generic: 1.75 baths + - generic: 940 sqft + - generic: 300 Virginia Street, Unit 809, Seattle, WA 98101 + - link "Pending 2501 Canterbury Lane East, Unit 322 $499,000 2 beds 1 baths 891 sqft 2501 Canterbury Lane East, Unit 322, Seattle, WA 98112": + - /url: /listing/2501-canterbury-lane-east-unit-322-seattle-wa-56297009 + - generic: Pending + - img "2501 Canterbury Lane East, Unit 322" + - generic: $499,000 + - generic: 2 beds + - generic: 1 baths + - generic: 891 sqft + - generic: 2501 Canterbury Lane East, Unit 322, Seattle, WA 98112 + - link "4903 50th Avenue South $1,175,000 3 beds 2 baths 1,800 sqft 4903 50th Avenue South, Seattle, WA 98118": + - /url: /listing/4903-50th-avenue-south-seattle-wa-64379729 + - img "4903 50th Avenue South" + - generic: $1,175,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,800 sqft + - generic: 4903 50th Avenue South, Seattle, WA 98118 + - link "7710 57th Avenue Northeast $2,150,000 4 beds 3 baths 3,772 sqft 7710 57th Avenue Northeast, Seattle, WA 98115": + - /url: /listing/7710-57th-avenue-northeast-seattle-wa-04119657 + - img "7710 57th Avenue Northeast" + - generic: $2,150,000 + - generic: 4 beds + - generic: 3 baths + - generic: 3,772 sqft + - generic: 7710 57th Avenue Northeast, Seattle, WA 98115 + - link "6546 32nd Avenue Northeast, Unit A $1,075,000 4 beds 4 baths 1,940 sqft 6546 32nd Avenue Northeast, Unit A, Seattle, WA 98115": + - /url: /listing/6546-32nd-avenue-northeast-unit-a-seattle-wa-40020505 + - img "6546 32nd Avenue Northeast, Unit A" + - generic: $1,075,000 + - generic: 4 beds + - generic: 4 baths + - generic: 1,940 sqft + - generic: 6546 32nd Avenue Northeast, Unit A, Seattle, WA 98115 + - link "2349 Harbor Avenue Southwest, Unit 701 $750,000 2 beds 2 baths 1,414 sqft 2349 Harbor Avenue Southwest, Unit 701, Seattle, WA 98126": + - /url: /listing/2349-harbor-avenue-southwest-unit-701-seattle-wa-74197241 + - img "2349 Harbor Avenue Southwest, Unit 701" + - generic: $750,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,414 sqft + - generic: 2349 Harbor Avenue Southwest, Unit 701, Seattle, WA 98126 + - link "2021 1st Avenue, Unit F20 $1,995,000 2 beds 2.25 baths 1,900 sqft 2021 1st Avenue, Unit F20, Seattle, WA 98121": + - /url: /listing/2021-1st-avenue-unit-f20-seattle-wa-62666769 + - img "2021 1st Avenue, Unit F20" + - generic: $1,995,000 + - generic: 2 beds + - generic: 2.25 baths + - generic: 1,900 sqft + - generic: 2021 1st Avenue, Unit F20, Seattle, WA 98121 + - link "15009 Westminster Way North $629,995 3 beds 3 baths 1,219 sqft 15009 Westminster Way North, Seattle, WA 98133": + - /url: /listing/15009-westminster-way-north-seattle-wa-95740273 + - img "15009 Westminster Way North" + - generic: $629,995 + - generic: 3 beds + - generic: 3 baths + - generic: 1,219 sqft + - generic: 15009 Westminster Way North, Seattle, WA 98133 + - link "Pending 1419 McGilvra Boulevard East $1,995,000 3 beds 2.5 baths 3,430 sqft 1419 McGilvra Boulevard East, Seattle, WA 98112": + - /url: /listing/1419-mcgilvra-boulevard-east-seattle-wa-28302473 + - generic: Pending + - img "1419 McGilvra Boulevard East" + - generic: $1,995,000 + - generic: 3 beds + - generic: 2.5 baths + - generic: 3,430 sqft + - generic: 1419 McGilvra Boulevard East, Seattle, WA 98112 + - link "1760 Northwest 56th Street, Unit 309 $399,000 — beds — baths 698 sqft 1760 Northwest 56th Street, Unit 309, Seattle, WA 98107": + - /url: /listing/1760-northwest-56th-street-unit-309-seattle-wa-95713321 + - img "1760 Northwest 56th Street, Unit 309" + - generic: $399,000 + - generic: — beds + - generic: — baths + - generic: 698 sqft + - generic: 1760 Northwest 56th Street, Unit 309, Seattle, WA 98107 + - link "5316 31st Avenue South $985,000 7 beds 4 baths 3,100 sqft 5316 31st Avenue South, Seattle, WA 98108": + - /url: /listing/5316-31st-avenue-south-seattle-wa-69320529 + - img "5316 31st Avenue South" + - generic: $985,000 + - generic: 7 beds + - generic: 4 baths + - generic: 3,100 sqft + - generic: 5316 31st Avenue South, Seattle, WA 98108 + - link "Compass Exclusive 740 North Clayton Street $1,850,000 3 beds 5 baths 3,612 sqft 740 North Clayton Street, Denver, CO 80206": + - /url: /listing/740-north-clayton-street-denver-co-51220497 + - generic: Compass Exclusive + - img "740 North Clayton Street" + - generic: $1,850,000 + - generic: 3 beds + - generic: 5 baths + - generic: 3,612 sqft + - generic: 740 North Clayton Street, Denver, CO 80206 + - link "Compass Exclusive 1411 Zenobia Street $685,000 3 beds 3 baths 1,585 sqft 1411 Zenobia Street, Denver, CO 80204": + - /url: /listing/1411-zenobia-street-denver-co-59137577 + - generic: Compass Exclusive + - img "1411 Zenobia Street" + - generic: $685,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,585 sqft + - generic: 1411 Zenobia Street, Denver, CO 80204 + - link "Compass Exclusive 1304 North Raleigh Street $635,000 2 beds 3 baths 1,200 sqft 1304 North Raleigh Street, Denver, CO 80204": + - /url: /listing/1304-north-raleigh-street-denver-co-51054009 + - generic: Compass Exclusive + - img "1304 North Raleigh Street" + - generic: $635,000 + - generic: 2 beds + - generic: 3 baths + - generic: 1,200 sqft + - generic: 1304 North Raleigh Street, Denver, CO 80204 + - link "Compass Exclusive 1370 Zenobia Street $625,000 4 beds 2 baths 1,800 sqft 1370 Zenobia Street, Denver, CO 80204": + - /url: /listing/1370-zenobia-street-denver-co-42065833 + - generic: Compass Exclusive + - img "1370 Zenobia Street" + - generic: $625,000 + - generic: 4 beds + - generic: 2 baths + - generic: 1,800 sqft + - generic: 1370 Zenobia Street, Denver, CO 80204 + - link "Compass Exclusive 1695 Zenobia Street, Unit 2 $1,500,000 4 beds 4 baths 2,593 sqft 1695 Zenobia Street, Unit 2, Denver, CO 80204": + - /url: /listing/1695-zenobia-street-unit-2-denver-co-39951841 + - generic: Compass Exclusive + - img "1695 Zenobia Street, Unit 2" + - generic: $1,500,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,593 sqft + - generic: 1695 Zenobia Street, Unit 2, Denver, CO 80204 + - link "Compass Exclusive 4922 Lowell Boulevard, Unit 4 $649,900 2 beds 4 baths 1,407 sqft 4922 Lowell Boulevard, Unit 4, Denver, CO 80221": + - /url: /listing/4922-lowell-boulevard-unit-4-denver-co-37985593 + - generic: Compass Exclusive + - img "4922 Lowell Boulevard, Unit 4" + - generic: $649,900 + - generic: 2 beds + - generic: 4 baths + - generic: 1,407 sqft + - generic: 4922 Lowell Boulevard, Unit 4, Denver, CO 80221 + - link "Compass Exclusive 1939 South Gilpin Street $810,000 3 beds 2 baths 1,178 sqft 1939 South Gilpin Street, Denver, CO 80210": + - /url: /listing/1939-south-gilpin-street-denver-co-86276025 + - generic: Compass Exclusive + - img "1939 South Gilpin Street" + - generic: $810,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,178 sqft + - generic: 1939 South Gilpin Street, Denver, CO 80210 + - link "Compass Exclusive 3023 Wyandot Street $3,200,000 6 beds 8 baths 6,468 sqft 3023 Wyandot Street, Denver, CO 80211": + - /url: /listing/3023-wyandot-street-denver-co-39690273 + - generic: Compass Exclusive + - img "3023 Wyandot Street" + - generic: $3,200,000 + - generic: 6 beds + - generic: 8 baths + - generic: 6,468 sqft + - generic: 3023 Wyandot Street, Denver, CO 80211 + - link "Compass Exclusive 1430 Pierce Street $639,000 3 beds 3 baths 1,895 sqft 1430 Pierce Street, Denver, CO 80214": + - /url: /listing/1430-pierce-street-denver-co-26915801 + - generic: Compass Exclusive + - img "1430 Pierce Street" + - generic: $639,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,895 sqft + - generic: 1430 Pierce Street, Denver, CO 80214 + - link "1182 Clermont Street, Unit 1B $150,000 1 beds 1 baths 454 sqft 1182 Clermont Street, Unit 1B, Denver, CO 80220": + - /url: /listing/1182-clermont-street-unit-1b-denver-co-77033161 + - img "1182 Clermont Street, Unit 1B" + - generic: $150,000 + - generic: 1 beds + - generic: 1 baths + - generic: 454 sqft + - generic: 1182 Clermont Street, Unit 1B, Denver, CO 80220 + - link "Compass Exclusive 1440 Little Raven Street, Unit 204 $630,000 2 beds 2 baths 1,168 sqft 1440 Little Raven Street, Unit 204, Denver, CO 80202": + - /url: /listing/1440-little-raven-street-unit-204-denver-co-92744361 + - generic: Compass Exclusive + - img "1440 Little Raven Street, Unit 204" + - generic: $630,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,168 sqft + - generic: 1440 Little Raven Street, Unit 204, Denver, CO 80202 + - link "Compass Exclusive South Grant Street $1,050,000 3 beds 2 baths 1,881 sqft South Grant Street, Denver, CO 80203": + - /url: /listing/south-grant-street-denver-co-94195537 + - generic: Compass Exclusive + - img "South Grant Street" + - generic: $1,050,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,881 sqft + - generic: South Grant Street, Denver, CO 80203 + - link "Compass Exclusive 4515 Stuart Street $1,595,000 4 beds 5 baths 3,620 sqft 4515 Stuart Street, Denver, CO 80212": + - /url: /listing/4515-stuart-street-denver-co-03971705 + - generic: Compass Exclusive + - img "4515 Stuart Street" + - generic: $1,595,000 + - generic: 4 beds + - generic: 5 baths + - generic: 3,620 sqft + - generic: 4515 Stuart Street, Denver, CO 80212 + - link "3414 Lawrence Street $1,149,000 4 beds 5 baths 2,808 sqft 3414 Lawrence Street, Denver, CO 80205": + - /url: /listing/3414-lawrence-street-denver-co-31891505 + - img "3414 Lawrence Street" + - generic: $1,149,000 + - generic: 4 beds + - generic: 5 baths + - generic: 2,808 sqft + - generic: 3414 Lawrence Street, Denver, CO 80205 + - link "4225 West 13th Avenue $799,000 3 beds 4 baths 1,818 sqft 4225 West 13th Avenue, Denver, CO 80204": + - /url: /listing/4225-west-13th-avenue-denver-co-60687425 + - img "4225 West 13th Avenue" + - generic: $799,000 + - generic: 3 beds + - generic: 4 baths + - generic: 1,818 sqft + - generic: 4225 West 13th Avenue, Denver, CO 80204 + - link "4200 West 17th Avenue, Unit 614 $699,000 1 beds 2 baths 954 sqft 4200 West 17th Avenue, Unit 614, Denver, CO 80204": + - /url: /listing/4200-west-17th-avenue-unit-614-denver-co-73524889 + - img "4200 West 17th Avenue, Unit 614" + - generic: $699,000 + - generic: 1 beds + - generic: 2 baths + - generic: 954 sqft + - generic: 4200 West 17th Avenue, Unit 614, Denver, CO 80204 + - link "Undisclosed Address $297,000 — beds — baths 559 sqft Undisclosed Address, Denver, CO 80203": + - /url: /listing/undisclosed-address-denver-co-33349817 + - img "Undisclosed Address" + - generic: $297,000 + - generic: — beds + - generic: — baths + - generic: 559 sqft + - generic: Undisclosed Address, Denver, CO 80203 + - link "2500 Walnut Street, Unit 201 $548,999 — beds — baths 1,027 sqft 2500 Walnut Street, Unit 201, Denver, CO 80205": + - /url: /listing/2500-walnut-street-unit-201-denver-co-65506201 + - img "2500 Walnut Street, Unit 201" + - generic: $548,999 + - generic: — beds + - generic: — baths + - generic: 1,027 sqft + - generic: 2500 Walnut Street, Unit 201, Denver, CO 80205 + - link "2056 South Lincoln Street $685,000 3 beds 2 baths 1,536 sqft 2056 South Lincoln Street, Denver, CO 80210": + - /url: /listing/2056-south-lincoln-street-denver-co-78470569 + - img "2056 South Lincoln Street" + - generic: $685,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,536 sqft + - generic: 2056 South Lincoln Street, Denver, CO 80210 + - link "2417 South Lafayette Street $1,169,000 3 beds 4 baths 2,365 sqft 2417 South Lafayette Street, Denver, CO 80210": + - /url: /listing/2417-south-lafayette-street-denver-co-90943449 + - img "2417 South Lafayette Street" + - generic: $1,169,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,365 sqft + - generic: 2417 South Lafayette Street, Denver, CO 80210 + - link "1350 Josephine Street, Unit 206 $214,900 1 beds 1 baths 606 sqft 1350 Josephine Street, Unit 206, Denver, CO 80206": + - /url: /listing/1350-josephine-street-unit-206-denver-co-51051441 + - img "1350 Josephine Street, Unit 206" + - generic: $214,900 + - generic: 1 beds + - generic: 1 baths + - generic: 606 sqft + - generic: 1350 Josephine Street, Unit 206, Denver, CO 80206 + - link "1431 South Glencoe Street $650,000 3 beds 2 baths 1,094 sqft 1431 South Glencoe Street, Denver, CO 80222": + - /url: /listing/1431-south-glencoe-street-denver-co-20637969 + - img "1431 South Glencoe Street" + - generic: $650,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,094 sqft + - generic: 1431 South Glencoe Street, Denver, CO 80222 + - link "4410 Raritan Street $440,000 2 beds 1 baths 758 sqft 4410 Raritan Street, Denver, CO 80211": + - /url: /listing/4410-raritan-street-denver-co-14388401 + - img "4410 Raritan Street" + - generic: $440,000 + - generic: 2 beds + - generic: 1 baths + - generic: 758 sqft + - generic: 4410 Raritan Street, Denver, CO 80211 + - link "825 East Cooper Avenue $24,995,000 4 beds 4 baths 3,613 sqft 825 East Cooper Avenue, Aspen, CO 81611": + - /url: /listing/825-east-cooper-avenue-aspen-co-53959097 + - img "825 East Cooper Avenue" + - generic: $24,995,000 + - generic: 4 beds + - generic: 4 baths + - generic: 3,613 sqft + - generic: 825 East Cooper Avenue, Aspen, CO 81611 + - link "830 East Durant Avenue $24,950,000 4 beds 4 baths 4,005 sqft 830 East Durant Avenue, Aspen, CO 81611": + - /url: /listing/830-east-durant-avenue-aspen-co-39990729 + - img "830 East Durant Avenue" + - generic: $24,950,000 + - generic: 4 beds + - generic: 4 baths + - generic: 4,005 sqft + - generic: 830 East Durant Avenue, Aspen, CO 81611 + - link "730 Twining Flats Road $8,500,000 3 beds 3.5 baths 4,992 sqft 730 Twining Flats Road, Aspen, CO 81611": + - /url: /listing/730-twining-flats-road-aspen-co-70769025 + - img "730 Twining Flats Road" + - generic: $8,500,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 4,992 sqft + - generic: 730 Twining Flats Road, Aspen, CO 81611 + - link "Pending 190 West Lupine Drive $14,995,000 5 beds 6 baths 5,470 sqft 190 West Lupine Drive, Aspen, CO 81611": + - /url: /listing/190-west-lupine-drive-aspen-co-82072873 + - generic: Pending + - img "190 West Lupine Drive" + - generic: $14,995,000 + - generic: 5 beds + - generic: 6 baths + - generic: 5,470 sqft + - generic: 190 West Lupine Drive, Aspen, CO 81611 + - link "42703 Highway 82, Unit B $10,950,000 5 beds 5.5 baths 4,154 sqft 42703 Highway 82, Unit B, Aspen, CO 81611": + - /url: /listing/42703-highway-82-unit-b-aspen-co-90959137 + - img "42703 Highway 82, Unit B" + - generic: $10,950,000 + - generic: 5 beds + - generic: 5.5 baths + - generic: 4,154 sqft + - generic: 42703 Highway 82, Unit B, Aspen, CO 81611 + - link "Pending 120 Turtle Cove $4,250,000 3 beds 3 baths 2,342 sqft 120 Turtle Cove, Aspen, CO 81611": + - /url: /listing/120-turtle-cove-aspen-co-64551841 + - generic: Pending + - img "120 Turtle Cove" + - generic: $4,250,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,342 sqft + - generic: 120 Turtle Cove, Aspen, CO 81611 + - link "100 Difficult Lane $25,900,000 3 beds 4 baths 2,795 sqft 100 Difficult Lane, Aspen, CO 81611": + - /url: /listing/100-difficult-lane-aspen-co-46556249 + - img "100 Difficult Lane" + - generic: $25,900,000 + - generic: 3 beds + - generic: 4 baths + - generic: 2,795 sqft + - generic: 100 Difficult Lane, Aspen, CO 81611 + - link "803 East Durant Avenue, Unit 8 $4,350,000 2 beds 2 baths 960 sqft 803 East Durant Avenue, Unit 8, Aspen, CO 81611": + - /url: /listing/803-east-durant-avenue-unit-8-aspen-co-85968689 + - img "803 East Durant Avenue, Unit 8" + - generic: $4,350,000 + - generic: 2 beds + - generic: 2 baths + - generic: 960 sqft + - generic: 803 East Durant Avenue, Unit 8, Aspen, CO 81611 + - link "41 Popcorn Lane $49,900,000 5 beds 9 baths 14,960 sqft 41 Popcorn Lane, Aspen, CO 81611": + - /url: /listing/41-popcorn-lane-aspen-co-87132233 + - img "41 Popcorn Lane" + - generic: $49,900,000 + - generic: 5 beds + - generic: 9 baths + - generic: 14,960 sqft + - generic: 41 Popcorn Lane, Aspen, CO 81611 + - link "825 Ute Avenue, Unit A $18,450,000 4 beds 5 baths 3,771 sqft 825 Ute Avenue, Unit A, Aspen, CO 81611": + - /url: /listing/825-ute-avenue-unit-a-aspen-co-50257457 + - img "825 Ute Avenue, Unit A" + - generic: $18,450,000 + - generic: 4 beds + - generic: 5 baths + - generic: 3,771 sqft + - generic: 825 Ute Avenue, Unit A, Aspen, CO 81611 + - link "332 Vine Street $2,500,000 2 beds 2 baths 878 sqft 332 Vine Street, Aspen, CO 81611": + - /url: /listing/332-vine-street-aspen-co-85552009 + - img "332 Vine Street" + - generic: $2,500,000 + - generic: 2 beds + - generic: 2 baths + - generic: 878 sqft + - generic: 332 Vine Street, Aspen, CO 81611 + - link "605 West Bleeker Street $18,450,000 4 beds 5.5 baths 4,314 sqft 605 West Bleeker Street, Aspen, CO 81611": + - /url: /listing/605-west-bleeker-street-aspen-co-48223185 + - img "605 West Bleeker Street" + - generic: $18,450,000 + - generic: 4 beds + - generic: 5.5 baths + - generic: 4,314 sqft + - generic: 605 West Bleeker Street, Aspen, CO 81611 + - link "315 East Dean Street, Unit B62 $425,000 2 beds 2.5 baths 1,473 sqft 315 East Dean Street, Unit B62, Aspen, CO 81611": + - /url: /listing/315-east-dean-street-unit-b62-aspen-co-52455905 + - img "315 East Dean Street, Unit B62" + - generic: $425,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,473 sqft + - generic: 315 East Dean Street, Unit B62, Aspen, CO 81611 + - link "315 East Dean Street, Unit B51 $1,495,000 2 beds 2.5 baths 1,612 sqft 315 East Dean Street, Unit B51, Aspen, CO 81611": + - /url: /listing/315-east-dean-street-unit-b51-aspen-co-57096177 + - img "315 East Dean Street, Unit B51" + - generic: $1,495,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,612 sqft + - generic: 315 East Dean Street, Unit B51, Aspen, CO 81611 + - link "315 East Dean Street, Unit B55 $1,750,000 3 beds 3 baths 2,048 sqft 315 East Dean Street, Unit B55, Aspen, CO 81611": + - /url: /listing/315-east-dean-street-unit-b55-aspen-co-61527849 + - img "315 East Dean Street, Unit B55" + - generic: $1,750,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,048 sqft + - generic: 315 East Dean Street, Unit B55, Aspen, CO 81611 + - link "610 South W End Street, Unit D201 $4,795,000 2 beds 2 baths 1,052 sqft 610 South W End Street, Unit D201, Aspen, CO 81611": + - /url: /listing/610-south-w-end-street-unit-d201-aspen-co-47448697 + - img "610 South W End Street, Unit D201" + - generic: $4,795,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,052 sqft + - generic: 610 South W End Street, Unit D201, Aspen, CO 81611 + - link "155 Nighthawk Drive $18,950,000 6 beds 8 baths 5,392 sqft 155 Nighthawk Drive, Aspen, CO 81612": + - /url: /listing/155-nighthawk-drive-aspen-co-93831713 + - img "155 Nighthawk Drive" + - generic: $18,950,000 + - generic: 6 beds + - generic: 8 baths + - generic: 5,392 sqft + - generic: 155 Nighthawk Drive, Aspen, CO 81612 + - link "137 Ridge Trail $660,000 3 beds 1 baths 910 sqft 137 Ridge Trail, Aspen, CO 81611": + - /url: /listing/137-ridge-trail-aspen-co-72248057 + - img "137 Ridge Trail" + - generic: $660,000 + - generic: 3 beds + - generic: 1 baths + - generic: 910 sqft + - generic: 137 Ridge Trail, Aspen, CO 81611 + - link "415 East Dean Street, Unit 44ABC WEEKS 51/52 $775,000 3 beds 3 baths 2,120 sqft 415 East Dean Street, Unit 44ABC WEEKS 51/52, Aspen, CO 81611": + - /url: /listing/415-east-dean-street-unit-44abc-weeks-51-52-aspen-co-80487609 + - img "415 East Dean Street, Unit 44ABC WEEKS 51/52" + - generic: $775,000 + - generic: 3 beds + - generic: 3 baths + - generic: 2,120 sqft + - generic: 415 East Dean Street, Unit 44ABC WEEKS 51/52, Aspen, CO 81611 + - link "450 South Original Street, Unit 8 $3,995,000 2 beds 2 baths 932 sqft 450 South Original Street, Unit 8, Aspen, CO 81611": + - /url: /listing/450-south-original-street-unit-8-aspen-co-40304113 + - img "450 South Original Street, Unit 8" + - generic: $3,995,000 + - generic: 2 beds + - generic: 2 baths + - generic: 932 sqft + - generic: 450 South Original Street, Unit 8, Aspen, CO 81611 + - link "McLain Flats $5,450,000 — beds 0 baths — sqft McLain Flats, Aspen, CO 81612": + - /url: /listing/mclain-flats-aspen-co-24827361 + - img "McLain Flats" + - generic: $5,450,000 + - generic: — beds + - generic: 0 baths + - generic: — sqft + - generic: McLain Flats, Aspen, CO 81612 + - link "725 East Durant Avenue, Unit 22 $3,199,000 1 beds 1.5 baths 828 sqft 725 East Durant Avenue, Unit 22, Aspen, CO 81611": + - /url: /listing/725-east-durant-avenue-unit-22-aspen-co-54767201 + - img "725 East Durant Avenue, Unit 22" + - generic: $3,199,000 + - generic: 1 beds + - generic: 1.5 baths + - generic: 828 sqft + - generic: 725 East Durant Avenue, Unit 22, Aspen, CO 81611 + - link "1038 Owl Creek Road $10,995,000 4 beds 4 baths 5,047 sqft 1038 Owl Creek Road, Aspen, CO 81611": + - /url: /listing/1038-owl-creek-road-aspen-co-75064801 + - img "1038 Owl Creek Road" + - generic: $10,995,000 + - generic: 4 beds + - generic: 4 baths + - generic: 5,047 sqft + - generic: 1038 Owl Creek Road, Aspen, CO 81611 + - link "1220 Red Butte Drive $22,950,000 5 beds 5.5 baths 5,872 sqft 1220 Red Butte Drive, Aspen, CO 81611": + - /url: /listing/1220-red-butte-drive-aspen-co-21093121 + - img "1220 Red Butte Drive" + - generic: $22,950,000 + - generic: 5 beds + - generic: 5.5 baths + - generic: 5,872 sqft + - generic: 1220 Red Butte Drive, Aspen, CO 81611 + - link "Pending 864 Moore Drive $39,500,000 7 beds 9 baths 10,615 sqft 864 Moore Drive, Aspen, CO 81611": + - /url: /listing/864-moore-drive-aspen-co-64367481 + - generic: Pending + - img "864 Moore Drive" + - generic: $39,500,000 + - generic: 7 beds + - generic: 9 baths + - generic: 10,615 sqft + - generic: 864 Moore Drive, Aspen, CO 81611 + - link "1162 Tiehack Road $38,500,000 6 beds 7.5 baths 7,811 sqft 1162 Tiehack Road, Aspen, CO 81611": + - /url: /listing/1162-tiehack-road-aspen-co-58693761 + - img "1162 Tiehack Road" + - generic: $38,500,000 + - generic: 6 beds + - generic: 7.5 baths + - generic: 7,811 sqft + - generic: 1162 Tiehack Road, Aspen, CO 81611 + - link "1395 Sierra Vista Drive, Unit 1 $10,995,000 4 beds 5 baths 4,390 sqft 1395 Sierra Vista Drive, Unit 1, Aspen, CO 81611": + - /url: /listing/1395-sierra-vista-drive-unit-1-aspen-co-22259585 + - img "1395 Sierra Vista Drive, Unit 1" + - generic: $10,995,000 + - generic: 4 beds + - generic: 5 baths + - generic: 4,390 sqft + - generic: 1395 Sierra Vista Drive, Unit 1, Aspen, CO 81611 + - link "415 East Dean St Unit 5 Week 5 $145,000 2 beds 2 baths 1,519 sqft 415 East Dean St Unit 5 Week 5, Aspen, CO 81611": + - /url: /listing/415-east-dean-st-unit-5-week-5-aspen-co-25029505 + - img "415 East Dean St Unit 5 Week 5" + - generic: $145,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,519 sqft + - generic: 415 East Dean St Unit 5 Week 5, Aspen, CO 81611 + - 'link "415 East Dean St # 35 Week 35 $175,000 3 beds 3 baths 1,831 sqft 415 East Dean St # 35 Week 35, Aspen, CO 81611"': + - /url: /listing/415-east-dean-st-35-week-35-aspen-co-62298705 + - 'img "415 East Dean St # 35 Week 35"' + - generic: $175,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,831 sqft + - generic: "415 East Dean St # 35 Week 35, Aspen, CO 81611" + - link "501 West Main Street, Unit A101 $1,925,000 1 beds 1 baths 460 sqft 501 West Main Street, Unit A101, Aspen, CO 81611": + - /url: /listing/501-west-main-street-unit-a101-aspen-co-44142641 + - img "501 West Main Street, Unit A101" + - generic: $1,925,000 + - generic: 1 beds + - generic: 1 baths + - generic: 460 sqft + - generic: 501 West Main Street, Unit A101, Aspen, CO 81611 + - link "Tbd Pfister Drive $4,500,000 — beds 0 baths — sqft Tbd Pfister Drive, Aspen, CO 81611": + - /url: /listing/tbd-pfister-drive-aspen-co-12374913 + - img "Tbd Pfister Drive" + - generic: $4,500,000 + - generic: — beds + - generic: 0 baths + - generic: — sqft + - generic: Tbd Pfister Drive, Aspen, CO 81611 + - link "1718 Corcoran Street Northwest, Unit 5 $315,000 1 beds 1 baths 563 sqft 1718 Corcoran Street Northwest, Unit 5, Washington, DC 20009": + - /url: /listing/1718-corcoran-street-northwest-unit-5-washington-dc-52722345 + - img "1718 Corcoran Street Northwest, Unit 5" + - generic: $315,000 + - generic: 1 beds + - generic: 1 baths + - generic: 563 sqft + - generic: 1718 Corcoran Street Northwest, Unit 5, Washington, DC 20009 + - link "Compass Exclusive 1423 R Street Northwest, Unit 105 $780,000 2 beds 2 baths 1,120 sqft 1423 R Street Northwest, Unit 105, Washington, DC 20009": + - /url: /listing/1423-r-street-northwest-unit-105-washington-dc-32557289 + - generic: Compass Exclusive + - img "1423 R Street Northwest, Unit 105" + - generic: $780,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,120 sqft + - generic: 1423 R Street Northwest, Unit 105, Washington, DC 20009 + - link "Compass Exclusive 1848 Wyoming Avenue Northwest, Unit 201 $815,000 2 beds 2 baths 1,132 sqft 1848 Wyoming Avenue Northwest, Unit 201, Washington, DC 20009": + - /url: /listing/1848-wyoming-avenue-northwest-unit-201-washington-dc-94495537 + - generic: Compass Exclusive + - img "1848 Wyoming Avenue Northwest, Unit 201" + - generic: $815,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,132 sqft + - generic: 1848 Wyoming Avenue Northwest, Unit 201, Washington, DC 20009 + - link "Compass Exclusive 2009 Columbia Road Northwest, Unit 2 $774,900 2 beds 2 baths 1,150 sqft 2009 Columbia Road Northwest, Unit 2, Washington, DC 20009": + - /url: /listing/2009-columbia-road-northwest-unit-2-washington-dc-41184241 + - generic: Compass Exclusive + - img "2009 Columbia Road Northwest, Unit 2" + - generic: $774,900 + - generic: 2 beds + - generic: 2 baths + - generic: 1,150 sqft + - generic: 2009 Columbia Road Northwest, Unit 2, Washington, DC 20009 + - link "Compass Exclusive 1226 11th Street Northwest, Unit 200 $550,000 — beds 2 baths 880 sqft 1226 11th Street Northwest, Unit 200, Washington, DC 20001": + - /url: /listing/1226-11th-street-northwest-unit-200-washington-dc-74847953 + - generic: Compass Exclusive + - img "1226 11th Street Northwest, Unit 200" + - generic: $550,000 + - generic: — beds + - generic: 2 baths + - generic: 880 sqft + - generic: 1226 11th Street Northwest, Unit 200, Washington, DC 20001 + - link "Compass Exclusive 1010 Massachusetts Avenue Northwest, Unit 207 $695,000 2 beds 2 baths 994 sqft 1010 Massachusetts Avenue Northwest, Unit 207, Washington, DC 20001": + - /url: /listing/1010-massachusetts-avenue-northwest-unit-207-washington-dc-42103697 + - generic: Compass Exclusive + - img "1010 Massachusetts Avenue Northwest, Unit 207" + - generic: $695,000 + - generic: 2 beds + - generic: 2 baths + - generic: 994 sqft + - generic: 1010 Massachusetts Avenue Northwest, Unit 207, Washington, DC 20001 + - link "1300 13th Street Northwest, Unit 905 $925,000 2 beds 2 baths 1,156 sqft 1300 13th Street Northwest, Unit 905, Washington, DC 20005": + - /url: /listing/1300-13th-street-northwest-unit-905-washington-dc-85950569 + - img "1300 13th Street Northwest, Unit 905" + - generic: $925,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,156 sqft + - generic: 1300 13th Street Northwest, Unit 905, Washington, DC 20005 + - link "1010 Massachusetts Avenue Northwest, Unit 1208 $824,900 2 beds 2 baths 1,050 sqft 1010 Massachusetts Avenue Northwest, Unit 1208, Washington, DC 20001": + - /url: /listing/massachusetts-avenue-northwest-washington-dc-04401553 + - img "1010 Massachusetts Avenue Northwest, Unit 1208" + - generic: $824,900 + - generic: 2 beds + - generic: 2 baths + - generic: 1,050 sqft + - generic: 1010 Massachusetts Avenue Northwest, Unit 1208, Washington, DC 20001 + - link "1440 N Street Northwest, Unit 205 $199,000 0 beds 1 baths 411 sqft 1440 N Street Northwest, Unit 205, Washington, DC 20005": + - /url: /listing/1440-n-street-northwest-unit-205-washington-dc-41655921 + - img "1440 N Street Northwest, Unit 205" + - generic: $199,000 + - generic: 0 beds + - generic: 1 baths + - generic: 411 sqft + - generic: 1440 N Street Northwest, Unit 205, Washington, DC 20005 + - link "Compass Exclusive 811 4th Street Northwest, Unit 1214 $439,000 — beds — baths 692 sqft 811 4th Street Northwest, Unit 1214, Washington, DC 20001": + - /url: /listing/811-4th-street-northwest-unit-1214-washington-dc-67375329 + - generic: Compass Exclusive + - img "811 4th Street Northwest, Unit 1214" + - generic: $439,000 + - generic: — beds + - generic: — baths + - generic: 692 sqft + - generic: 811 4th Street Northwest, Unit 1214, Washington, DC 20001 + - link "Compass Exclusive 1832 Corcoran Street Northwest $2,300,000 4 beds 3 baths 2,331 sqft 1832 Corcoran Street Northwest, Washington, DC 20009": + - /url: /listing/1832-corcoran-street-northwest-washington-dc-43598409 + - generic: Compass Exclusive + - img "1832 Corcoran Street Northwest" + - generic: $2,300,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,331 sqft + - generic: 1832 Corcoran Street Northwest, Washington, DC 20009 + - link "Compass Exclusive 1428 Q Street Northwest $1,599,000 4 beds 3 baths 3,036 sqft 1428 Q Street Northwest, Washington, DC 20009": + - /url: /listing/1428-q-street-northwest-washington-dc-18041457 + - generic: Compass Exclusive + - img "1428 Q Street Northwest" + - generic: $1,599,000 + - generic: 4 beds + - generic: 3 baths + - generic: 3,036 sqft + - generic: 1428 Q Street Northwest, Washington, DC 20009 + - link "Compass Exclusive 1443 Chapin Street Northwest, Unit 402 $895,000 2 beds 2 baths 1,188 sqft 1443 Chapin Street Northwest, Unit 402, Washington, DC 20009": + - /url: /listing/1443-chapin-street-northwest-unit-402-washington-dc-66950593 + - generic: Compass Exclusive + - img "1443 Chapin Street Northwest, Unit 402" + - generic: $895,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,188 sqft + - generic: 1443 Chapin Street Northwest, Unit 402, Washington, DC 20009 + - link "1113 Rhode Island Avenue Northwest $1,195,000 6 beds 3 baths 3,412 sqft 1113 Rhode Island Avenue Northwest, Washington, DC 20005": + - /url: /listing/1113-rhode-island-avenue-northwest-washington-dc-75758689 + - img "1113 Rhode Island Avenue Northwest" + - generic: $1,195,000 + - generic: 6 beds + - generic: 3 baths + - generic: 3,412 sqft + - generic: 1113 Rhode Island Avenue Northwest, Washington, DC 20005 + - link "Compass Exclusive 1317 Corcoran Street Northwest $2,200,000 — beds 0 baths 2,956 sqft 1317 Corcoran Street Northwest, Washington, DC 20009": + - /url: /listing/1317-corcoran-street-northwest-washington-dc-97642673 + - generic: Compass Exclusive + - img "1317 Corcoran Street Northwest" + - generic: $2,200,000 + - generic: — beds + - generic: 0 baths + - generic: 2,956 sqft + - generic: 1317 Corcoran Street Northwest, Washington, DC 20009 + - link "Compass Exclusive 1003 P Street Northwest $1,600,000 4 beds 4 baths 2,140 sqft 1003 P Street Northwest, Washington, DC 20001": + - /url: /listing/1003-p-street-northwest-washington-dc-61442889 + - generic: Compass Exclusive + - img "1003 P Street Northwest" + - generic: $1,600,000 + - generic: 4 beds + - generic: 4 baths + - generic: 2,140 sqft + - generic: 1003 P Street Northwest, Washington, DC 20001 + - link "Compass Exclusive 238 14th Street Southeast $949,000 — beds — baths 1,772 sqft 238 14th Street Southeast, Washington, DC 20003": + - /url: /listing/238-14th-street-southeast-washington-dc-45120369 + - generic: Compass Exclusive + - img "238 14th Street Southeast" + - generic: $949,000 + - generic: — beds + - generic: — baths + - generic: 1,772 sqft + - generic: 238 14th Street Southeast, Washington, DC 20003 + - link "Compass Exclusive 3515 Hertford Place Northwest, Unit 32 $395,000 1 beds 1 baths 627 sqft 3515 Hertford Place Northwest, Unit 32, Washington, DC 20010": + - /url: /listing/3515-hertford-place-northwest-unit-32-washington-dc-51904881 + - generic: Compass Exclusive + - img "3515 Hertford Place Northwest, Unit 32" + - generic: $395,000 + - generic: 1 beds + - generic: 1 baths + - generic: 627 sqft + - generic: 3515 Hertford Place Northwest, Unit 32, Washington, DC 20010 + - link "Compass Exclusive 4611 43rd Place Northwest $2,249,000 5 beds 5 baths 3,522 sqft 4611 43rd Place Northwest, Washington, DC 20016": + - /url: /listing/4611-43rd-place-northwest-washington-dc-54638913 + - generic: Compass Exclusive + - img "4611 43rd Place Northwest" + - generic: $2,249,000 + - generic: 5 beds + - generic: 5 baths + - generic: 3,522 sqft + - generic: 4611 43rd Place Northwest, Washington, DC 20016 + - link "Compass Exclusive 2123 California Street Northwest, Unit D5 $775,000 2 beds 2 baths 1,073 sqft 2123 California Street Northwest, Unit D5, Washington, DC 20008": + - /url: /listing/2123-california-street-northwest-unit-d5-washington-dc-81697025 + - generic: Compass Exclusive + - img "2123 California Street Northwest, Unit D5" + - generic: $775,000 + - generic: 2 beds + - generic: 2 baths + - generic: 1,073 sqft + - generic: 2123 California Street Northwest, Unit D5, Washington, DC 20008 + - link "Compass Exclusive 228 9th Street Southeast $3,849,000 5 beds 5 baths 4,801 sqft 228 9th Street Southeast, Washington, DC 20003": + - /url: /listing/228-9th-street-southeast-washington-dc-98962857 + - generic: Compass Exclusive + - img "228 9th Street Southeast" + - generic: $3,849,000 + - generic: 5 beds + - generic: 5 baths + - generic: 4,801 sqft + - generic: 228 9th Street Southeast, Washington, DC 20003 + - link "Compass Exclusive 4600 Connecticut Avenue Northwest, Unit 717 $243,000 — beds — baths 577 sqft 4600 Connecticut Avenue Northwest, Unit 717, Washington, DC 20008": + - /url: /listing/4600-connecticut-avenue-northwest-unit-717-washington-dc-91447953 + - generic: Compass Exclusive + - img "4600 Connecticut Avenue Northwest, Unit 717" + - generic: $243,000 + - generic: — beds + - generic: — baths + - generic: 577 sqft + - generic: 4600 Connecticut Avenue Northwest, Unit 717, Washington, DC 20008 + - link "Compass Exclusive 1614 Kilbourne Place Northwest, Unit 2 $1,275,000 3 beds 3 baths 1,922 sqft 1614 Kilbourne Place Northwest, Unit 2, Washington, DC 20010": + - /url: /listing/1614-kilbourne-place-northwest-unit-2-washington-dc-78468961 + - generic: Compass Exclusive + - img "1614 Kilbourne Place Northwest, Unit 2" + - generic: $1,275,000 + - generic: 3 beds + - generic: 3 baths + - generic: 1,922 sqft + - generic: 1614 Kilbourne Place Northwest, Unit 2, Washington, DC 20010 + - link "Compass Exclusive 3514 34th Street Northwest $1,450,000 3 beds 4 baths — sqft 3514 34th Street Northwest, Washington, DC 20008": + - /url: /listing/3514-34th-street-northwest-washington-dc-69305881 + - generic: Compass Exclusive + - img "3514 34th Street Northwest" + - generic: $1,450,000 + - generic: 3 beds + - generic: 4 baths + - generic: — sqft + - generic: 3514 34th Street Northwest, Washington, DC 20008 + - link "Compass Exclusive 3601 Connecticut Avenue Northwest, Unit 612 $509,000 2 beds — baths 950 sqft 3601 Connecticut Avenue Northwest, Unit 612, Washington, DC 20008": + - /url: /listing/3601-connecticut-avenue-northwest-unit-612-washington-dc-68803729 + - generic: Compass Exclusive + - img "3601 Connecticut Avenue Northwest, Unit 612" + - generic: $509,000 + - generic: 2 beds + - generic: — baths + - generic: 950 sqft + - generic: 3601 Connecticut Avenue Northwest, Unit 612, Washington, DC 20008 + - link "Compass Exclusive 3414 Porter Street Northwest $1,650,000 4 beds 3 baths 2,470 sqft 3414 Porter Street Northwest, Washington, DC 20016": + - /url: /listing/3414-porter-street-northwest-washington-dc-24573065 + - generic: Compass Exclusive + - img "3414 Porter Street Northwest" + - generic: $1,650,000 + - generic: 4 beds + - generic: 3 baths + - generic: 2,470 sqft + - generic: 3414 Porter Street Northwest, Washington, DC 20016 + - link "Compass Exclusive 3707 Military Road Northwest $2,200,000 6 beds 5 baths 4,345 sqft 3707 Military Road Northwest, Washington, DC 20015": + - /url: /listing/3707-military-road-northwest-washington-dc-78946129 + - generic: Compass Exclusive + - img "3707 Military Road Northwest" + - generic: $2,200,000 + - generic: 6 beds + - generic: 5 baths + - generic: 4,345 sqft + - generic: 3707 Military Road Northwest, Washington, DC 20015 + - link "2120 Vermont Avenue Northwest, Unit 123 $665,000 3 beds 2 baths 1,292 sqft 2120 Vermont Avenue Northwest, Unit 123, Washington, DC 20001": + - /url: /listing/2120-vermont-avenue-northwest-unit-123-washington-dc-30986649 + - img "2120 Vermont Avenue Northwest, Unit 123" + - generic: $665,000 + - generic: 3 beds + - generic: 2 baths + - generic: 1,292 sqft + - generic: 2120 Vermont Avenue Northwest, Unit 123, Washington, DC 20001 + - link "Compass Exclusive Address Upon Request $725,000 2 beds 2.5 baths 1,225 sqft Address Upon Request, Washington, DC 20001": + - /url: /listing/address-upon-request-washington-dc-68659849 + - generic: Compass Exclusive + - img "Address Upon Request" + - generic: $725,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,225 sqft + - generic: Address Upon Request, Washington, DC 20001 + - link "Compass Exclusive K Street Southeast $749,000 2 beds 2.5 baths 1,313 sqft K Street Southeast, Washington, DC 20003": + - /url: /listing/k-street-southeast-washington-dc-29157649 + - generic: Compass Exclusive + - img "K Street Southeast" + - generic: $749,000 + - generic: 2 beds + - generic: 2.5 baths + - generic: 1,313 sqft + - generic: K Street Southeast, Washington, DC 20003 + - link "Compass Exclusive 3206 Morrison Street Northwest $3,150,000 5 beds 5.5 baths 5,000 sqft 3206 Morrison Street Northwest, Washington, DC 20015": + - /url: /listing/3206-morrison-street-northwest-washington-dc-74603969 + - generic: Compass Exclusive + - img "3206 Morrison Street Northwest" + - generic: $3,150,000 + - generic: 5 beds + - generic: 5.5 baths + - generic: 5,000 sqft + - generic: 3206 Morrison Street Northwest, Washington, DC 20015 + - link "Compass Exclusive 520 N Street Southwest, Unit S622 $274,900 1 beds 1 baths 591 sqft 520 N Street Southwest, Unit S622, Washington, DC 20024": + - /url: /listing/520-n-street-southwest-unit-s622-washington-dc-60161193 + - generic: Compass Exclusive + - img "520 N Street Southwest, Unit S622" + - generic: $274,900 + - generic: 1 beds + - generic: 1 baths + - generic: 591 sqft + - generic: 520 N Street Southwest, Unit S622, Washington, DC 20024 +- contentinfo: + - button "Company": + - text: Company + - generic: + + - button "Explore": + - text: Explore + - generic: + + - heading "Mobile Apps" [level=2] + - link "Compass iOS App": + - /url: https://itunes.apple.com/app/id692766504 + - img "Compass iOS App" + - link "Compass Android App": + - /url: https://play.google.com/store/apps/details?id=com.compass.compass + - img "Compass Android App" + - link "Instagram": + - /url: https://instagram.com/compass/ + - text: ◎ + - link "Facebook": + - /url: https://facebook.com/compass/ + - text: f + - link "X": + - /url: https://x.com/compass/ + - text: 𝕏 + - paragraph: © 2026 Compass mirror — WebHarbor benchmark site. Not affiliated with Compass, Inc. Listing information is a fixed snapshot; availability may have changed. + - paragraph: Account actions, saved homes, collections and tour requests stay in this local environment. They are not sent to Compass agents. + - paragraph: Links marked ↗ open external websites. Mortgage, brokerage recruitment, new development marketing and corporate services are provided on their original websites, outside this environment. + - paragraph: COMPASS and the Compass logo are trademarks of Compass, Inc. + - paragraph: + - link "Help": + - /url: /help + - text: · + - link "About this environment": + - /url: /about \ No newline at end of file diff --git a/sites/compass/docs/visual-review/home/task17/observations/006-after.txt b/sites/compass/docs/visual-review/home/task17/observations/006-after.txt new file mode 100644 index 00000000..81664474 --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/observations/006-after.txt @@ -0,0 +1,181 @@ +- link "Skip to content": + - /url: "#main-content" +- banner: + - button "Open navigation": ☰ + - link "Compass": + - /url: / + - img "Compass" + - link "Register": + - /url: /register + - generic: / + - link "Sign In": + - /url: /login +- main: + - link "☆ Save": + - /url: /login?next=/listing/150-charles-street-unit-m10-new-york-ny-81286569 + - button "Share" + - button "View photo 1": + - img "150 Charles Street, Unit M10 — photo 1" + - button "5 Photos" + - generic: $21,500,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 5,612 sqft + - generic: $3,831/sqft + - heading "150 Charles Street, Unit M10, Manhattan, NY 10014" [level=1] + - heading "Description" [level=2] + - paragraph: The only maisonette at 150 Charles Street with a private internal elevator, M10 makes its first-ever appearance on the market as one of the most significant residences within the building. Expertly redesigned by designer Sane Designs, this extraordinary townhouse seamlessly blends the privacy and scale of single-family living with the services and prestige of West Village luxury condominium living. Every inch of the home has been meticulously curated with bespoke finishes, custom architectural detailing, and a level of craftsmanship rarely seen in downtown Manhattan. A private entry welcomes you into a richly layered interior defined by custom stained white oak millwork, steel detailing, and bespoke architectural moments throughout. The dramatic great room and formal living spaces are illuminated by sculptural Apparatus fixtures, while custom-designed lighting, Phillip Jeffries wall coverings, and handcrafted steel and glass elements create a residence that feels both deeply luxurious and remarkably intimate. A custom steel fireplace anchors the living room, bringing warmth and artistry to the entertaining spaces. Designed for both entertaining and everyday living, the home features a fully integrated in-wall Sonos sound system throughout. The custom Molteni kitchen is equally refined and functional, appointed with Alabama white marble countertops, Lefroy Brooks fixtures, and a full suite of Miele, Sub-Zero, and Wolf appliances. The kitchen opens beautifully into the surrounding front living and dining spaces. The primary suite is a true private retreat, wrapped in Phillip Jeffries wall coverings and complemented by bespoke McEwan lighting and custom Poliform closets. Every room throughout the home reflects an uncompromising attention to detail, from the Matthew Fairbanks sconces in the primary bath and entry vestibule to the curated custom lighting installations extending into the landscaped outdoor space. Designed by the renowned COOKFOX Architects with interiors by Alan Wanzenberg, 150 Charles has long represented the pinnacle of full-service West Village living. Residents enjoy over 40,000 square feet of private landscaped green space, a covered private driveway and parking, white-glove concierge services, and an unrivaled wellness experience including a 75-foot pool, spa facilities, fitness center, yoga studio, steam room, sauna, plunge pool, massage rooms, and private entertaining spaces. Maisonette M10 is more than a residence. It is a rare opportunity to acquire a designer townhouse within one of downtown’s most architecturally significant condominium buildings, combining the privacy and scale of a standalone home with the services and amenities of a world-class luxury property. + - paragraph: + - text: Listed by + - link "Holly Parker": + - /url: /agents/holly-parker-b902454d + - text: · 9175877288 + - heading "Property Details for 150 Charles Street, Unit M10" [level=2] + - term: Status + - definition: Contract Signed + - term: Days on Market + - definition: "14" + - term: Pet Policy + - definition: Allowed + - term: Taxes + - definition: $7,791 / month + - term: Common Charges + - definition: $9,015 / month + - term: Min. Down Pymt + - definition: 10% + - term: Total Rooms + - definition: "7.0" + - term: Property Type + - definition: Condo + - term: Year Built + - definition: "2013" + - term: County + - definition: New York County + - heading "Amenities" [level=2] + - list: + - listitem: Primary Ensuite + - listitem: Full-Time Doorman + - listitem: Common Roof Deck + - listitem: Common Garden + - listitem: Common Outdoor Space + - listitem: Gym + - listitem: Health Club + - listitem: Pool + - listitem: Steam Room + - listitem: Sauna + - listitem: Playroom + - listitem: Yoga Studio + - listitem: Resident's Lounge + - listitem: Common Media / Recreation Room + - listitem: Working Fireplace + - listitem: Built-Ins + - listitem: Sound System + - listitem: Private Entrance + - listitem: High Ceilings + - listitem: Elevator + - listitem: Washer / Dryer + - listitem: Washer / Dryer in Unit + - listitem: Dryer + - listitem: Washer + - listitem: Central AC + - listitem: Air Conditioning + - listitem: Dishwasher + - listitem: Wine Cooler + - listitem: Gas Oven + - listitem: Foyer + - listitem: Powder Room + - listitem: Home Office + - listitem: Library / Den + - listitem: Chef's Kitchen + - listitem: Windowed Bathroom + - listitem: Double Sink Bathroom + - listitem: Northern Exposure + - listitem: Southern Exposure + - listitem: Bike Room + - listitem: Cold Storage + - listitem: Garage + - listitem: Primary Ensuite with Separate Shower + - listitem: Primary Ensuite with Separate Tub + - listitem: Soaking Tub + - listitem: Wall Oven + - listitem: Range Hood + - listitem: Laundry Room + - listitem: Spa + - listitem: Full-Time Concierge + - listitem: Valet Parking + - listitem: Gas Stove + - listitem: Refrigerator + - listitem: Security Gate + - listitem: Common Courtyard + - listitem: Security System + - listitem: Island Kitchen + - listitem: Midrise + - listitem: Laundry in Every Unit + - listitem: Private Storage for Sale + - listitem: Highrise + - paragraph: Listing snapshot checked 2026-09-06. Availability and pricing may have changed. + - complementary "Property actions": + - link "Request a tour": + - /url: /tour/17 + - link "Contact an agent": + - /url: /inquiry/17 + - heading "Similar Homes" [level=2] + - link "Pending 150 Charles Street, Unit 3AS $8,995,000 3 beds 3.5 baths 2,461 sqft 150 Charles Street, Unit 3AS, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-3as-new-york-ny-85442145 + - generic: Pending + - img "150 Charles Street, Unit 3AS" + - generic: $8,995,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 2,461 sqft + - generic: 150 Charles Street, Unit 3AS, Manhattan, NY 10014 + - link "Pending 634 Washington Street, Unit 4B $1,750,000 3 beds 1.5 baths — sqft 634 Washington Street, Unit 4B, Manhattan, NY 10014": + - /url: /listing/634-washington-street-unit-4b-new-york-ny-46018681 + - generic: Pending + - img "634 Washington Street, Unit 4B" + - generic: $1,750,000 + - generic: 3 beds + - generic: 1.5 baths + - generic: — sqft + - generic: 634 Washington Street, Unit 4B, Manhattan, NY 10014 + - link "20 East 9th Street, Unit 4T $799,000 1 beds 1 baths — sqft 20 East 9th Street, Unit 4T, Manhattan, NY 10003": + - /url: /listing/20-east-9th-street-unit-4t-new-york-ny-10648129 + - img "20 East 9th Street, Unit 4T" + - generic: $799,000 + - generic: 1 beds + - generic: 1 baths + - generic: — sqft + - generic: 20 East 9th Street, Unit 4T, Manhattan, NY 10003 +- contentinfo: + - button "Company": + - text: Company + - generic: + + - button "Explore": + - text: Explore + - generic: + + - heading "Mobile Apps" [level=2] + - link "Compass iOS App": + - /url: https://itunes.apple.com/app/id692766504 + - img "Compass iOS App" + - link "Compass Android App": + - /url: https://play.google.com/store/apps/details?id=com.compass.compass + - img "Compass Android App" + - link "Instagram": + - /url: https://instagram.com/compass/ + - text: ◎ + - link "Facebook": + - /url: https://facebook.com/compass/ + - text: f + - link "X": + - /url: https://x.com/compass/ + - text: 𝕏 + - paragraph: © 2026 Compass mirror — WebHarbor benchmark site. Not affiliated with Compass, Inc. Listing information is a fixed snapshot; availability may have changed. + - paragraph: Account actions, saved homes, collections and tour requests stay in this local environment. They are not sent to Compass agents. + - paragraph: Links marked ↗ open external websites. Mortgage, brokerage recruitment, new development marketing and corporate services are provided on their original websites, outside this environment. + - paragraph: COMPASS and the Compass logo are trademarks of Compass, Inc. + - paragraph: + - link "Help": + - /url: /help + - text: · + - link "About this environment": + - /url: /about \ No newline at end of file diff --git a/sites/compass/docs/visual-review/home/task17/observations/006-before.txt b/sites/compass/docs/visual-review/home/task17/observations/006-before.txt new file mode 100644 index 00000000..0002e4a4 --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/observations/006-before.txt @@ -0,0 +1,128 @@ +- link "Skip to content": + - /url: "#main-content" +- banner: + - button "Open navigation": ☰ + - link "Compass": + - /url: / + - img "Compass" + - link "Register": + - /url: /register + - generic: / + - link "Sign In": + - /url: /login +- main: + - heading "All listings" [level=1] + - searchbox "Search terms" + - generic: Listing status + - combobox "Listing status": + - option "Any status" + - option "For sale" [selected] + - option "For rent" + - option "Sold" + - option "Closed" + - option "Rented" + - generic: Home type + - combobox "Home type": + - option "All home types" + - option "Single Family" + - option "Condo" [selected] + - option "Co-op" + - option "Townhouse" + - option "Multi-Family" + - option "Apartment" + - option "Rental" + - option "Land" + - option "Office" + - option "Mixed Use" + - option "Other" + - generic: Min beds + - combobox "Min beds": + - option "Any beds" [selected] + - option "1+" + - option "2+" + - option "3+" + - option "4+" + - option "5+" + - generic: Max price + - spinbutton "Max price" + - button "Filters" + - button "Search" + - generic: Sort by + - combobox "Sort by": + - option "Relevance" + - option "Newest" + - 'option "Price: low to high"' + - 'option "Price: high to low" [selected]' + - option "Bedrooms" + - option "Square feet" + - 'option "$/sqft: low to high"' + - 'option "$/sqft: high to low"' + - generic: 4 results. + - link "Pending 150 Charles Street, Unit M10 $21,500,000 4 beds 4.5 baths 5,612 sqft 150 Charles Street, Unit M10, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-m10-new-york-ny-81286569 + - generic: Pending + - img "150 Charles Street, Unit M10" + - generic: $21,500,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 5,612 sqft + - generic: 150 Charles Street, Unit M10, Manhattan, NY 10014 + - link "Compass Exclusive 1425 Brickell Avenue, Unit 42F $11,750,000 3 beds 4.5 baths 3,913 sqft 1425 Brickell Avenue, Unit 42F, Miami, FL 33131": + - /url: /listing/1425-brickell-avenue-unit-42f-miami-fl-85366897 + - generic: Compass Exclusive + - img "1425 Brickell Avenue, Unit 42F" + - generic: $11,750,000 + - generic: 3 beds + - generic: 4.5 baths + - generic: 3,913 sqft + - generic: 1425 Brickell Avenue, Unit 42F, Miami, FL 33131 + - link "Pending 150 Charles Street, Unit 3AS $8,995,000 3 beds 3.5 baths 2,461 sqft 150 Charles Street, Unit 3AS, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-3as-new-york-ny-85442145 + - generic: Pending + - img "150 Charles Street, Unit 3AS" + - generic: $8,995,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 2,461 sqft + - generic: 150 Charles Street, Unit 3AS, Manhattan, NY 10014 + - link "88 Southwest 7th Street, Unit PH4303 $5,799,900 3 beds 4.5 baths 3,115 sqft 88 Southwest 7th Street, Unit PH4303, Miami, FL 33130": + - /url: /listing/88-southwest-7th-street-unit-ph4303-miami-fl-12289809 + - img "88 Southwest 7th Street, Unit PH4303" + - generic: $5,799,900 + - generic: 3 beds + - generic: 4.5 baths + - generic: 3,115 sqft + - generic: 88 Southwest 7th Street, Unit PH4303, Miami, FL 33130 +- contentinfo: + - button "Company": + - text: Company + - generic: + + - button "Explore": + - text: Explore + - generic: + + - heading "Mobile Apps" [level=2] + - link "Compass iOS App": + - /url: https://itunes.apple.com/app/id692766504 + - img "Compass iOS App" + - link "Compass Android App": + - /url: https://play.google.com/store/apps/details?id=com.compass.compass + - img "Compass Android App" + - link "Instagram": + - /url: https://instagram.com/compass/ + - text: ◎ + - link "Facebook": + - /url: https://facebook.com/compass/ + - text: f + - link "X": + - /url: https://x.com/compass/ + - text: 𝕏 + - paragraph: © 2026 Compass mirror — WebHarbor benchmark site. Not affiliated with Compass, Inc. Listing information is a fixed snapshot; availability may have changed. + - paragraph: Account actions, saved homes, collections and tour requests stay in this local environment. They are not sent to Compass agents. + - paragraph: Links marked ↗ open external websites. Mortgage, brokerage recruitment, new development marketing and corporate services are provided on their original websites, outside this environment. + - paragraph: COMPASS and the Compass logo are trademarks of Compass, Inc. + - paragraph: + - link "Help": + - /url: /help + - text: · + - link "About this environment": + - /url: /about \ No newline at end of file diff --git a/sites/compass/docs/visual-review/home/task17/observations/007-after.txt b/sites/compass/docs/visual-review/home/task17/observations/007-after.txt new file mode 100644 index 00000000..81664474 --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/observations/007-after.txt @@ -0,0 +1,181 @@ +- link "Skip to content": + - /url: "#main-content" +- banner: + - button "Open navigation": ☰ + - link "Compass": + - /url: / + - img "Compass" + - link "Register": + - /url: /register + - generic: / + - link "Sign In": + - /url: /login +- main: + - link "☆ Save": + - /url: /login?next=/listing/150-charles-street-unit-m10-new-york-ny-81286569 + - button "Share" + - button "View photo 1": + - img "150 Charles Street, Unit M10 — photo 1" + - button "5 Photos" + - generic: $21,500,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 5,612 sqft + - generic: $3,831/sqft + - heading "150 Charles Street, Unit M10, Manhattan, NY 10014" [level=1] + - heading "Description" [level=2] + - paragraph: The only maisonette at 150 Charles Street with a private internal elevator, M10 makes its first-ever appearance on the market as one of the most significant residences within the building. Expertly redesigned by designer Sane Designs, this extraordinary townhouse seamlessly blends the privacy and scale of single-family living with the services and prestige of West Village luxury condominium living. Every inch of the home has been meticulously curated with bespoke finishes, custom architectural detailing, and a level of craftsmanship rarely seen in downtown Manhattan. A private entry welcomes you into a richly layered interior defined by custom stained white oak millwork, steel detailing, and bespoke architectural moments throughout. The dramatic great room and formal living spaces are illuminated by sculptural Apparatus fixtures, while custom-designed lighting, Phillip Jeffries wall coverings, and handcrafted steel and glass elements create a residence that feels both deeply luxurious and remarkably intimate. A custom steel fireplace anchors the living room, bringing warmth and artistry to the entertaining spaces. Designed for both entertaining and everyday living, the home features a fully integrated in-wall Sonos sound system throughout. The custom Molteni kitchen is equally refined and functional, appointed with Alabama white marble countertops, Lefroy Brooks fixtures, and a full suite of Miele, Sub-Zero, and Wolf appliances. The kitchen opens beautifully into the surrounding front living and dining spaces. The primary suite is a true private retreat, wrapped in Phillip Jeffries wall coverings and complemented by bespoke McEwan lighting and custom Poliform closets. Every room throughout the home reflects an uncompromising attention to detail, from the Matthew Fairbanks sconces in the primary bath and entry vestibule to the curated custom lighting installations extending into the landscaped outdoor space. Designed by the renowned COOKFOX Architects with interiors by Alan Wanzenberg, 150 Charles has long represented the pinnacle of full-service West Village living. Residents enjoy over 40,000 square feet of private landscaped green space, a covered private driveway and parking, white-glove concierge services, and an unrivaled wellness experience including a 75-foot pool, spa facilities, fitness center, yoga studio, steam room, sauna, plunge pool, massage rooms, and private entertaining spaces. Maisonette M10 is more than a residence. It is a rare opportunity to acquire a designer townhouse within one of downtown’s most architecturally significant condominium buildings, combining the privacy and scale of a standalone home with the services and amenities of a world-class luxury property. + - paragraph: + - text: Listed by + - link "Holly Parker": + - /url: /agents/holly-parker-b902454d + - text: · 9175877288 + - heading "Property Details for 150 Charles Street, Unit M10" [level=2] + - term: Status + - definition: Contract Signed + - term: Days on Market + - definition: "14" + - term: Pet Policy + - definition: Allowed + - term: Taxes + - definition: $7,791 / month + - term: Common Charges + - definition: $9,015 / month + - term: Min. Down Pymt + - definition: 10% + - term: Total Rooms + - definition: "7.0" + - term: Property Type + - definition: Condo + - term: Year Built + - definition: "2013" + - term: County + - definition: New York County + - heading "Amenities" [level=2] + - list: + - listitem: Primary Ensuite + - listitem: Full-Time Doorman + - listitem: Common Roof Deck + - listitem: Common Garden + - listitem: Common Outdoor Space + - listitem: Gym + - listitem: Health Club + - listitem: Pool + - listitem: Steam Room + - listitem: Sauna + - listitem: Playroom + - listitem: Yoga Studio + - listitem: Resident's Lounge + - listitem: Common Media / Recreation Room + - listitem: Working Fireplace + - listitem: Built-Ins + - listitem: Sound System + - listitem: Private Entrance + - listitem: High Ceilings + - listitem: Elevator + - listitem: Washer / Dryer + - listitem: Washer / Dryer in Unit + - listitem: Dryer + - listitem: Washer + - listitem: Central AC + - listitem: Air Conditioning + - listitem: Dishwasher + - listitem: Wine Cooler + - listitem: Gas Oven + - listitem: Foyer + - listitem: Powder Room + - listitem: Home Office + - listitem: Library / Den + - listitem: Chef's Kitchen + - listitem: Windowed Bathroom + - listitem: Double Sink Bathroom + - listitem: Northern Exposure + - listitem: Southern Exposure + - listitem: Bike Room + - listitem: Cold Storage + - listitem: Garage + - listitem: Primary Ensuite with Separate Shower + - listitem: Primary Ensuite with Separate Tub + - listitem: Soaking Tub + - listitem: Wall Oven + - listitem: Range Hood + - listitem: Laundry Room + - listitem: Spa + - listitem: Full-Time Concierge + - listitem: Valet Parking + - listitem: Gas Stove + - listitem: Refrigerator + - listitem: Security Gate + - listitem: Common Courtyard + - listitem: Security System + - listitem: Island Kitchen + - listitem: Midrise + - listitem: Laundry in Every Unit + - listitem: Private Storage for Sale + - listitem: Highrise + - paragraph: Listing snapshot checked 2026-09-06. Availability and pricing may have changed. + - complementary "Property actions": + - link "Request a tour": + - /url: /tour/17 + - link "Contact an agent": + - /url: /inquiry/17 + - heading "Similar Homes" [level=2] + - link "Pending 150 Charles Street, Unit 3AS $8,995,000 3 beds 3.5 baths 2,461 sqft 150 Charles Street, Unit 3AS, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-3as-new-york-ny-85442145 + - generic: Pending + - img "150 Charles Street, Unit 3AS" + - generic: $8,995,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 2,461 sqft + - generic: 150 Charles Street, Unit 3AS, Manhattan, NY 10014 + - link "Pending 634 Washington Street, Unit 4B $1,750,000 3 beds 1.5 baths — sqft 634 Washington Street, Unit 4B, Manhattan, NY 10014": + - /url: /listing/634-washington-street-unit-4b-new-york-ny-46018681 + - generic: Pending + - img "634 Washington Street, Unit 4B" + - generic: $1,750,000 + - generic: 3 beds + - generic: 1.5 baths + - generic: — sqft + - generic: 634 Washington Street, Unit 4B, Manhattan, NY 10014 + - link "20 East 9th Street, Unit 4T $799,000 1 beds 1 baths — sqft 20 East 9th Street, Unit 4T, Manhattan, NY 10003": + - /url: /listing/20-east-9th-street-unit-4t-new-york-ny-10648129 + - img "20 East 9th Street, Unit 4T" + - generic: $799,000 + - generic: 1 beds + - generic: 1 baths + - generic: — sqft + - generic: 20 East 9th Street, Unit 4T, Manhattan, NY 10003 +- contentinfo: + - button "Company": + - text: Company + - generic: + + - button "Explore": + - text: Explore + - generic: + + - heading "Mobile Apps" [level=2] + - link "Compass iOS App": + - /url: https://itunes.apple.com/app/id692766504 + - img "Compass iOS App" + - link "Compass Android App": + - /url: https://play.google.com/store/apps/details?id=com.compass.compass + - img "Compass Android App" + - link "Instagram": + - /url: https://instagram.com/compass/ + - text: ◎ + - link "Facebook": + - /url: https://facebook.com/compass/ + - text: f + - link "X": + - /url: https://x.com/compass/ + - text: 𝕏 + - paragraph: © 2026 Compass mirror — WebHarbor benchmark site. Not affiliated with Compass, Inc. Listing information is a fixed snapshot; availability may have changed. + - paragraph: Account actions, saved homes, collections and tour requests stay in this local environment. They are not sent to Compass agents. + - paragraph: Links marked ↗ open external websites. Mortgage, brokerage recruitment, new development marketing and corporate services are provided on their original websites, outside this environment. + - paragraph: COMPASS and the Compass logo are trademarks of Compass, Inc. + - paragraph: + - link "Help": + - /url: /help + - text: · + - link "About this environment": + - /url: /about \ No newline at end of file diff --git a/sites/compass/docs/visual-review/home/task17/observations/007-before.txt b/sites/compass/docs/visual-review/home/task17/observations/007-before.txt new file mode 100644 index 00000000..81664474 --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/observations/007-before.txt @@ -0,0 +1,181 @@ +- link "Skip to content": + - /url: "#main-content" +- banner: + - button "Open navigation": ☰ + - link "Compass": + - /url: / + - img "Compass" + - link "Register": + - /url: /register + - generic: / + - link "Sign In": + - /url: /login +- main: + - link "☆ Save": + - /url: /login?next=/listing/150-charles-street-unit-m10-new-york-ny-81286569 + - button "Share" + - button "View photo 1": + - img "150 Charles Street, Unit M10 — photo 1" + - button "5 Photos" + - generic: $21,500,000 + - generic: 4 beds + - generic: 4.5 baths + - generic: 5,612 sqft + - generic: $3,831/sqft + - heading "150 Charles Street, Unit M10, Manhattan, NY 10014" [level=1] + - heading "Description" [level=2] + - paragraph: The only maisonette at 150 Charles Street with a private internal elevator, M10 makes its first-ever appearance on the market as one of the most significant residences within the building. Expertly redesigned by designer Sane Designs, this extraordinary townhouse seamlessly blends the privacy and scale of single-family living with the services and prestige of West Village luxury condominium living. Every inch of the home has been meticulously curated with bespoke finishes, custom architectural detailing, and a level of craftsmanship rarely seen in downtown Manhattan. A private entry welcomes you into a richly layered interior defined by custom stained white oak millwork, steel detailing, and bespoke architectural moments throughout. The dramatic great room and formal living spaces are illuminated by sculptural Apparatus fixtures, while custom-designed lighting, Phillip Jeffries wall coverings, and handcrafted steel and glass elements create a residence that feels both deeply luxurious and remarkably intimate. A custom steel fireplace anchors the living room, bringing warmth and artistry to the entertaining spaces. Designed for both entertaining and everyday living, the home features a fully integrated in-wall Sonos sound system throughout. The custom Molteni kitchen is equally refined and functional, appointed with Alabama white marble countertops, Lefroy Brooks fixtures, and a full suite of Miele, Sub-Zero, and Wolf appliances. The kitchen opens beautifully into the surrounding front living and dining spaces. The primary suite is a true private retreat, wrapped in Phillip Jeffries wall coverings and complemented by bespoke McEwan lighting and custom Poliform closets. Every room throughout the home reflects an uncompromising attention to detail, from the Matthew Fairbanks sconces in the primary bath and entry vestibule to the curated custom lighting installations extending into the landscaped outdoor space. Designed by the renowned COOKFOX Architects with interiors by Alan Wanzenberg, 150 Charles has long represented the pinnacle of full-service West Village living. Residents enjoy over 40,000 square feet of private landscaped green space, a covered private driveway and parking, white-glove concierge services, and an unrivaled wellness experience including a 75-foot pool, spa facilities, fitness center, yoga studio, steam room, sauna, plunge pool, massage rooms, and private entertaining spaces. Maisonette M10 is more than a residence. It is a rare opportunity to acquire a designer townhouse within one of downtown’s most architecturally significant condominium buildings, combining the privacy and scale of a standalone home with the services and amenities of a world-class luxury property. + - paragraph: + - text: Listed by + - link "Holly Parker": + - /url: /agents/holly-parker-b902454d + - text: · 9175877288 + - heading "Property Details for 150 Charles Street, Unit M10" [level=2] + - term: Status + - definition: Contract Signed + - term: Days on Market + - definition: "14" + - term: Pet Policy + - definition: Allowed + - term: Taxes + - definition: $7,791 / month + - term: Common Charges + - definition: $9,015 / month + - term: Min. Down Pymt + - definition: 10% + - term: Total Rooms + - definition: "7.0" + - term: Property Type + - definition: Condo + - term: Year Built + - definition: "2013" + - term: County + - definition: New York County + - heading "Amenities" [level=2] + - list: + - listitem: Primary Ensuite + - listitem: Full-Time Doorman + - listitem: Common Roof Deck + - listitem: Common Garden + - listitem: Common Outdoor Space + - listitem: Gym + - listitem: Health Club + - listitem: Pool + - listitem: Steam Room + - listitem: Sauna + - listitem: Playroom + - listitem: Yoga Studio + - listitem: Resident's Lounge + - listitem: Common Media / Recreation Room + - listitem: Working Fireplace + - listitem: Built-Ins + - listitem: Sound System + - listitem: Private Entrance + - listitem: High Ceilings + - listitem: Elevator + - listitem: Washer / Dryer + - listitem: Washer / Dryer in Unit + - listitem: Dryer + - listitem: Washer + - listitem: Central AC + - listitem: Air Conditioning + - listitem: Dishwasher + - listitem: Wine Cooler + - listitem: Gas Oven + - listitem: Foyer + - listitem: Powder Room + - listitem: Home Office + - listitem: Library / Den + - listitem: Chef's Kitchen + - listitem: Windowed Bathroom + - listitem: Double Sink Bathroom + - listitem: Northern Exposure + - listitem: Southern Exposure + - listitem: Bike Room + - listitem: Cold Storage + - listitem: Garage + - listitem: Primary Ensuite with Separate Shower + - listitem: Primary Ensuite with Separate Tub + - listitem: Soaking Tub + - listitem: Wall Oven + - listitem: Range Hood + - listitem: Laundry Room + - listitem: Spa + - listitem: Full-Time Concierge + - listitem: Valet Parking + - listitem: Gas Stove + - listitem: Refrigerator + - listitem: Security Gate + - listitem: Common Courtyard + - listitem: Security System + - listitem: Island Kitchen + - listitem: Midrise + - listitem: Laundry in Every Unit + - listitem: Private Storage for Sale + - listitem: Highrise + - paragraph: Listing snapshot checked 2026-09-06. Availability and pricing may have changed. + - complementary "Property actions": + - link "Request a tour": + - /url: /tour/17 + - link "Contact an agent": + - /url: /inquiry/17 + - heading "Similar Homes" [level=2] + - link "Pending 150 Charles Street, Unit 3AS $8,995,000 3 beds 3.5 baths 2,461 sqft 150 Charles Street, Unit 3AS, Manhattan, NY 10014": + - /url: /listing/150-charles-street-unit-3as-new-york-ny-85442145 + - generic: Pending + - img "150 Charles Street, Unit 3AS" + - generic: $8,995,000 + - generic: 3 beds + - generic: 3.5 baths + - generic: 2,461 sqft + - generic: 150 Charles Street, Unit 3AS, Manhattan, NY 10014 + - link "Pending 634 Washington Street, Unit 4B $1,750,000 3 beds 1.5 baths — sqft 634 Washington Street, Unit 4B, Manhattan, NY 10014": + - /url: /listing/634-washington-street-unit-4b-new-york-ny-46018681 + - generic: Pending + - img "634 Washington Street, Unit 4B" + - generic: $1,750,000 + - generic: 3 beds + - generic: 1.5 baths + - generic: — sqft + - generic: 634 Washington Street, Unit 4B, Manhattan, NY 10014 + - link "20 East 9th Street, Unit 4T $799,000 1 beds 1 baths — sqft 20 East 9th Street, Unit 4T, Manhattan, NY 10003": + - /url: /listing/20-east-9th-street-unit-4t-new-york-ny-10648129 + - img "20 East 9th Street, Unit 4T" + - generic: $799,000 + - generic: 1 beds + - generic: 1 baths + - generic: — sqft + - generic: 20 East 9th Street, Unit 4T, Manhattan, NY 10003 +- contentinfo: + - button "Company": + - text: Company + - generic: + + - button "Explore": + - text: Explore + - generic: + + - heading "Mobile Apps" [level=2] + - link "Compass iOS App": + - /url: https://itunes.apple.com/app/id692766504 + - img "Compass iOS App" + - link "Compass Android App": + - /url: https://play.google.com/store/apps/details?id=com.compass.compass + - img "Compass Android App" + - link "Instagram": + - /url: https://instagram.com/compass/ + - text: ◎ + - link "Facebook": + - /url: https://facebook.com/compass/ + - text: f + - link "X": + - /url: https://x.com/compass/ + - text: 𝕏 + - paragraph: © 2026 Compass mirror — WebHarbor benchmark site. Not affiliated with Compass, Inc. Listing information is a fixed snapshot; availability may have changed. + - paragraph: Account actions, saved homes, collections and tour requests stay in this local environment. They are not sent to Compass agents. + - paragraph: Links marked ↗ open external websites. Mortgage, brokerage recruitment, new development marketing and corporate services are provided on their original websites, outside this environment. + - paragraph: COMPASS and the Compass logo are trademarks of Compass, Inc. + - paragraph: + - link "Help": + - /url: /help + - text: · + - link "About this environment": + - /url: /about \ No newline at end of file diff --git a/sites/compass/docs/visual-review/home/task17/screenshot-export.json b/sites/compass/docs/visual-review/home/task17/screenshot-export.json new file mode 100644 index 00000000..433d7d1c --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/screenshot-export.json @@ -0,0 +1,165 @@ +{ + "conversion": "JPEG decoded and losslessly stored as PNG for native verifier; no pixel edits", + "files": [ + { + "raw": "step_000.jpg", + "png": "step_000.png", + "size": [ + 390, + 844 + ], + "raw_sha256": "ba5a8077ee56f0e9d83c8bd09725eb4b75befd78d4280cc89536f4a4253ccc62", + "png_sha256": "8e4f763bee701c2c86037bd4920db858da293098a7f1ec17256b60afdd06f718" + }, + { + "raw": "step_001.jpg", + "png": "step_001.png", + "size": [ + 390, + 844 + ], + "raw_sha256": "697d25a2737718071678ecc5c8dc7195faf296d491b0565b594d23fce0fe372f", + "png_sha256": "41be7a8f8439397279b4064ebb50ab50686f122e230e63cec16adf6e3ae9a5a0" + }, + { + "raw": "step_002.jpg", + "png": "step_002.png", + "size": [ + 390, + 844 + ], + "raw_sha256": "697d25a2737718071678ecc5c8dc7195faf296d491b0565b594d23fce0fe372f", + "png_sha256": "41be7a8f8439397279b4064ebb50ab50686f122e230e63cec16adf6e3ae9a5a0" + }, + { + "raw": "step_003.jpg", + "png": "step_003.png", + "size": [ + 390, + 844 + ], + "raw_sha256": "7f88b553e6066cf7d2b8f2ea7846e396288e00dcb3b7fc007dc79990700cd0d0", + "png_sha256": "79d738eda2afbd8d2f4b8cff6a5c07581349d4441b7af8bfbef0ffb6280a276d" + }, + { + "raw": "step_004.jpg", + "png": "step_004.png", + "size": [ + 390, + 844 + ], + "raw_sha256": "3df6b29589cfdd83e6f002fa184a64704dc30c1bfe162f45d6d5601d73469032", + "png_sha256": "e1f68b5f9befe0815d1d0f66a84dab4beb128ef84f25c8faec1c4b51bbcc2f24" + }, + { + "raw": "step_005.jpg", + "png": "step_005.png", + "size": [ + 390, + 844 + ], + "raw_sha256": "d2e7efb5efa6d18a696fa2ae2d55ee7fbbe2c77226a33fd688a7c80cbcacfdea", + "png_sha256": "968a745d1ac21da8cdb8bfea8cb7d8e2252fde1d0b8fc4479937c3ac989dd0f5" + }, + { + "raw": "step_006.jpg", + "png": "step_006.png", + "size": [ + 390, + 844 + ], + "raw_sha256": "e74eea08e51a21cedc9f76536888d7d81d3eeb145f5b587a2e71b95d8e17dd1f", + "png_sha256": "2f38fbaaf3edbf5db493a25136d2f86d153e9cdcf6114e81964bc48a631fd92a" + }, + { + "raw": "step_007.jpg", + "png": "step_007.png", + "size": [ + 390, + 844 + ], + "raw_sha256": "90f9f80a096c59fab1e439eb09ce527724e662bf69ea0c2ca5bff2ccc5e81e19", + "png_sha256": "bfae0211d05c206730539c1d3609d65d9835bfbc0484e71f2224fe6dc19128a6" + }, + { + "raw": "step_008.jpg", + "png": "step_008.png", + "size": [ + 390, + 844 + ], + "raw_sha256": "90f9f80a096c59fab1e439eb09ce527724e662bf69ea0c2ca5bff2ccc5e81e19", + "png_sha256": "bfae0211d05c206730539c1d3609d65d9835bfbc0484e71f2224fe6dc19128a6" + }, + { + "raw": "step_009.jpg", + "png": "step_009.png", + "size": [ + 390, + 844 + ], + "raw_sha256": "80a0f93060b5ea9365f7fd70f53e8d16545a792d573d51a1325eb2714eb0fd53", + "png_sha256": "e13f63883f9d4dc7c7467dea2c8074eaa43fb952ac564771e5ba9cfece3b4587" + }, + { + "raw": "step_010.jpg", + "png": "step_010.png", + "size": [ + 390, + 844 + ], + "raw_sha256": "80a0f93060b5ea9365f7fd70f53e8d16545a792d573d51a1325eb2714eb0fd53", + "png_sha256": "e13f63883f9d4dc7c7467dea2c8074eaa43fb952ac564771e5ba9cfece3b4587" + }, + { + "raw": "step_011.jpg", + "png": "step_011.png", + "size": [ + 390, + 844 + ], + "raw_sha256": "8d2b0271185ba2cf29374cd6ce5dccad57919f12476168d426b401d9c759a86e", + "png_sha256": "84e4bc0c34097ab544a5e760104fe3d45c405abc798c7965aff19477124d3c48" + }, + { + "raw": "step_012.jpg", + "png": "step_012.png", + "size": [ + 390, + 844 + ], + "raw_sha256": "8d2b0271185ba2cf29374cd6ce5dccad57919f12476168d426b401d9c759a86e", + "png_sha256": "84e4bc0c34097ab544a5e760104fe3d45c405abc798c7965aff19477124d3c48" + }, + { + "raw": "step_013.jpg", + "png": "step_013.png", + "size": [ + 390, + 844 + ], + "raw_sha256": "a790e71eae361e2e9e74e5c261c8031b2ab22cbe89c1658bdb50d5514bdf741a", + "png_sha256": "28e43465b9bd292adbdd5ec7911aa76e5d27f80b702dbf10a8b8e48ab7e67f77" + }, + { + "raw": "step_014.jpg", + "png": "step_014.png", + "size": [ + 390, + 844 + ], + "raw_sha256": "a790e71eae361e2e9e74e5c261c8031b2ab22cbe89c1658bdb50d5514bdf741a", + "png_sha256": "28e43465b9bd292adbdd5ec7911aa76e5d27f80b702dbf10a8b8e48ab7e67f77" + }, + { + "raw": "step_015.jpg", + "png": "step_015.png", + "size": [ + 390, + 844 + ], + "raw_sha256": "5a97cc7ee7b9d0c0434de0988e1586ca408ff77b155063498c16d4f5d5ba2a39", + "png_sha256": "6a557aa27bb42412429bbfa9c4d103eaeeb5fa82306d9c0b360e71d765abb24c" + } + ] +} diff --git a/sites/compass/docs/visual-review/home/task17/screenshots/step_000.png b/sites/compass/docs/visual-review/home/task17/screenshots/step_000.png new file mode 100644 index 00000000..fbf938c5 Binary files /dev/null and b/sites/compass/docs/visual-review/home/task17/screenshots/step_000.png differ diff --git a/sites/compass/docs/visual-review/home/task17/screenshots/step_001.png b/sites/compass/docs/visual-review/home/task17/screenshots/step_001.png new file mode 100644 index 00000000..2adde7d1 Binary files /dev/null and b/sites/compass/docs/visual-review/home/task17/screenshots/step_001.png differ diff --git a/sites/compass/docs/visual-review/home/task17/screenshots/step_002.png b/sites/compass/docs/visual-review/home/task17/screenshots/step_002.png new file mode 100644 index 00000000..2adde7d1 Binary files /dev/null and b/sites/compass/docs/visual-review/home/task17/screenshots/step_002.png differ diff --git a/sites/compass/docs/visual-review/home/task17/screenshots/step_003.png b/sites/compass/docs/visual-review/home/task17/screenshots/step_003.png new file mode 100644 index 00000000..664aa8ad Binary files /dev/null and b/sites/compass/docs/visual-review/home/task17/screenshots/step_003.png differ diff --git a/sites/compass/docs/visual-review/home/task17/screenshots/step_004.png b/sites/compass/docs/visual-review/home/task17/screenshots/step_004.png new file mode 100644 index 00000000..7d2cb04e Binary files /dev/null and b/sites/compass/docs/visual-review/home/task17/screenshots/step_004.png differ diff --git a/sites/compass/docs/visual-review/home/task17/screenshots/step_005.png b/sites/compass/docs/visual-review/home/task17/screenshots/step_005.png new file mode 100644 index 00000000..307dc8b0 Binary files /dev/null and b/sites/compass/docs/visual-review/home/task17/screenshots/step_005.png differ diff --git a/sites/compass/docs/visual-review/home/task17/screenshots/step_006.png b/sites/compass/docs/visual-review/home/task17/screenshots/step_006.png new file mode 100644 index 00000000..2966718e Binary files /dev/null and b/sites/compass/docs/visual-review/home/task17/screenshots/step_006.png differ diff --git a/sites/compass/docs/visual-review/home/task17/screenshots/step_007.png b/sites/compass/docs/visual-review/home/task17/screenshots/step_007.png new file mode 100644 index 00000000..33f1943c Binary files /dev/null and b/sites/compass/docs/visual-review/home/task17/screenshots/step_007.png differ diff --git a/sites/compass/docs/visual-review/home/task17/screenshots/step_008.png b/sites/compass/docs/visual-review/home/task17/screenshots/step_008.png new file mode 100644 index 00000000..33f1943c Binary files /dev/null and b/sites/compass/docs/visual-review/home/task17/screenshots/step_008.png differ diff --git a/sites/compass/docs/visual-review/home/task17/screenshots/step_009.png b/sites/compass/docs/visual-review/home/task17/screenshots/step_009.png new file mode 100644 index 00000000..912c938a Binary files /dev/null and b/sites/compass/docs/visual-review/home/task17/screenshots/step_009.png differ diff --git a/sites/compass/docs/visual-review/home/task17/screenshots/step_010.png b/sites/compass/docs/visual-review/home/task17/screenshots/step_010.png new file mode 100644 index 00000000..912c938a Binary files /dev/null and b/sites/compass/docs/visual-review/home/task17/screenshots/step_010.png differ diff --git a/sites/compass/docs/visual-review/home/task17/screenshots/step_011.png b/sites/compass/docs/visual-review/home/task17/screenshots/step_011.png new file mode 100644 index 00000000..73da6b2b Binary files /dev/null and b/sites/compass/docs/visual-review/home/task17/screenshots/step_011.png differ diff --git a/sites/compass/docs/visual-review/home/task17/screenshots/step_012.png b/sites/compass/docs/visual-review/home/task17/screenshots/step_012.png new file mode 100644 index 00000000..73da6b2b Binary files /dev/null and b/sites/compass/docs/visual-review/home/task17/screenshots/step_012.png differ diff --git a/sites/compass/docs/visual-review/home/task17/screenshots/step_013.png b/sites/compass/docs/visual-review/home/task17/screenshots/step_013.png new file mode 100644 index 00000000..7d1c465f Binary files /dev/null and b/sites/compass/docs/visual-review/home/task17/screenshots/step_013.png differ diff --git a/sites/compass/docs/visual-review/home/task17/screenshots/step_014.png b/sites/compass/docs/visual-review/home/task17/screenshots/step_014.png new file mode 100644 index 00000000..7d1c465f Binary files /dev/null and b/sites/compass/docs/visual-review/home/task17/screenshots/step_014.png differ diff --git a/sites/compass/docs/visual-review/home/task17/screenshots/step_015.png b/sites/compass/docs/visual-review/home/task17/screenshots/step_015.png new file mode 100644 index 00000000..84db6638 Binary files /dev/null and b/sites/compass/docs/visual-review/home/task17/screenshots/step_015.png differ diff --git a/sites/compass/docs/visual-review/home/task17/state-manifest.json b/sites/compass/docs/visual-review/home/task17/state-manifest.json new file mode 100644 index 00000000..95eb5784 --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/state-manifest.json @@ -0,0 +1,93 @@ +{ + "source_commit": "9741284932adbcb309cf30f0c1de1dfc93ca6063", + "asset_revision": "e06307429dca76a8a7240d507ab69be9e5b84060", + "runtime_files": { + "app.py": "9a3fcd5499e360084637a17a8e5ba0ff09295a09076e1935ca73480a24b9fb26", + "static/css/home.css": "49d8e24ec1a8be39fefb96511e41886dd904f6b66e3b7cccc48b16ed23d7089e", + "static/css/navigation.css": "eebbb1a847565806c08ca6a712690462a3696704e0c9ac9c8ecdce741d725d86", + "static/external_cache/home-appstore.png": "dd0eb8e5c9fc20fe3924d14409c42036d0cf92e6f8b25f468dae187584e831ad", + "static/external_cache/home-concierge-after.jpg": "a4b5fa03c7e16cfd9eaaa7fb1cc1d998e4be1c1aca4e477e011f58ffef3be7ed", + "static/external_cache/home-concierge-before.jpg": "c4eee7f983eb190a04971a62c89a12f8c80f31fbc34449345b24203861465cfd", + "static/external_cache/home-concierge-desktop.jpg": "5c71734dcc1f2a33a5d7a6ddcb53ab9a2cafc0dfb5c4b09cfb526ef714a8d9a6", + "static/external_cache/home-hero-desktop.jpg": "fc3f83a2d774cce82f59de5edce9bf5f1cabf983e54c79488ed56e3bdce685d6", + "static/external_cache/home-hero-mobile.jpg": "fac9caa5ee811fa38cb4fffc37b70da6b94ea45ef9c15ea31bb15e88b56678e2", + "static/external_cache/home-hero-tablet.jpg": "07af38d47be7456623936b01e85493b80ead3c0c11b5fc744f1ef342252c773b", + "static/external_cache/home-mortgage.png": "f5a508ada211c8395caf612733e85dab54166543aa9c84197ff612b35aa15971", + "static/external_cache/home-neighborhood-boston.jpg": "108f1cd5c42c610151290d92ca6a61cf2b59f69380bfc17c82f6ef8a08d59d1e", + "static/external_cache/home-neighborhood-dc.jpg": "7b857c0e299ad9bcfc52bcab7f13b7f01f7400d7688a9648eda967708e6a6ca5", + "static/external_cache/home-neighborhood-hamptons.jpg": "dde78ae24f4cee1be8c3fb79dd8686dbf2fe007c3c2958031f78f9ba3e77c543", + "static/external_cache/home-neighborhood-la.jpg": "7080319f60a36237d08c37d2481afd01048812c99734a19e7c8bbf43d4fe259a", + "static/external_cache/home-neighborhood-miami.jpg": "0b7e26371289120e63d0a5d8040cc4fb468a6afda833c9989a1129a8582a9390", + "static/external_cache/home-neighborhood-nyc.jpg": "1b8283369c25853ba2f9ff0b4bdf0a65732cf152b0431c5e2ef0fe12ba3beb99", + "static/external_cache/home-playstore.png": "c616230f5c421976b54e3e74ff2ca6dfae14b33c3cf0f261df196538881fbd59", + "static/external_cache/home-private-exclusives.svg": "6dace1a24cc63504e47ce06938368d1d70e34c66f5243f73ded9365011837f95", + "static/js/compass.js": "ab736909c1fc6cff1ead1b3c5759a02c041a924d809d3ef9c1e5b3511fef435d", + "templates/_footer.html": "1fad5c09187442ccec2dbef355da40b3e753ab3769849ea751b9db7373667a10", + "templates/_home_card.html": "a6da374c43e170d8be158c5839f687ff220b8a2d115c113b655118e7580afd81", + "templates/_navigation.html": "63c8ddfb653fb9837a94f4baecfd2bda0f0a6018d747d06e9a5c9ab07acc0923", + "templates/base.html": "e2172cbecb85e353d3a9ba8b6fae36f507a4499e9e521616090431714d5f9266", + "templates/concierge.html": "77e487ef472f49bded20935f2fd9e16ca84920badc50a4045c5432faa2fd76bd", + "templates/index.html": "852aa74f5378e155e00fb9baaaf2fcfc17822ab3c798b7daa2b22adc862cc511", + "templates/listing_collection.html": "58ad7305d69432be4ca58c11a75d98bc3207bd020752669e0996107ad2fbfbc1", + "templates/neighborhoods.html": "50f724134782d8a80988696f43a54a137b89d194f5f053fdc1abacbcf8992748", + "templates/sell.html": "c52249ea03712f4fe45939f6d2f9ffbcd268648a4df89d8a76ffe213af764c3c" + }, + "before_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "after_sha256": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "files": { + "trajectory.json": "bb0dba03a7fc568c5604114fe49e90c67ba874e0c99070e65657b50967e3d568", + "final-answer.txt": "0b85aab97d9f40761268d912334cc529c1c613da45883ec5d67644b6bdf14e56", + "screenshot-export.json": "e2b5c32a4bc7d31d5af3db41383965f0e3e9ba6d394b417f432162b8cb4030e9", + "before.db": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "verifier-result.json": "12eb68d7a7869a1826239cf0cd357d04af7fe127a8877f2c8106627ffce58532", + "after.db": "4fbb93f60edd007e3d2af660aec58fa4863672d96c6484e097c0eafb1d767979", + "screenshots/step_008.png": "bfae0211d05c206730539c1d3609d65d9835bfbc0484e71f2224fe6dc19128a6", + "screenshots/step_008.jpg": "90f9f80a096c59fab1e439eb09ce527724e662bf69ea0c2ca5bff2ccc5e81e19", + "screenshots/step_009.jpg": "80a0f93060b5ea9365f7fd70f53e8d16545a792d573d51a1325eb2714eb0fd53", + "screenshots/step_009.png": "e13f63883f9d4dc7c7467dea2c8074eaa43fb952ac564771e5ba9cfece3b4587", + "screenshots/step_013.png": "28e43465b9bd292adbdd5ec7911aa76e5d27f80b702dbf10a8b8e48ab7e67f77", + "screenshots/step_007.png": "bfae0211d05c206730539c1d3609d65d9835bfbc0484e71f2224fe6dc19128a6", + "screenshots/step_007.jpg": "90f9f80a096c59fab1e439eb09ce527724e662bf69ea0c2ca5bff2ccc5e81e19", + "screenshots/step_013.jpg": "a790e71eae361e2e9e74e5c261c8031b2ab22cbe89c1658bdb50d5514bdf741a", + "screenshots/step_012.jpg": "8d2b0271185ba2cf29374cd6ce5dccad57919f12476168d426b401d9c759a86e", + "screenshots/step_006.jpg": "e74eea08e51a21cedc9f76536888d7d81d3eeb145f5b587a2e71b95d8e17dd1f", + "screenshots/step_006.png": "2f38fbaaf3edbf5db493a25136d2f86d153e9cdcf6114e81964bc48a631fd92a", + "screenshots/step_012.png": "84e4bc0c34097ab544a5e760104fe3d45c405abc798c7965aff19477124d3c48", + "screenshots/step_004.png": "e1f68b5f9befe0815d1d0f66a84dab4beb128ef84f25c8faec1c4b51bbcc2f24", + "screenshots/step_010.png": "e13f63883f9d4dc7c7467dea2c8074eaa43fb952ac564771e5ba9cfece3b4587", + "screenshots/step_010.jpg": "80a0f93060b5ea9365f7fd70f53e8d16545a792d573d51a1325eb2714eb0fd53", + "screenshots/step_004.jpg": "3df6b29589cfdd83e6f002fa184a64704dc30c1bfe162f45d6d5601d73469032", + "screenshots/step_005.jpg": "d2e7efb5efa6d18a696fa2ae2d55ee7fbbe2c77226a33fd688a7c80cbcacfdea", + "screenshots/step_011.jpg": "8d2b0271185ba2cf29374cd6ce5dccad57919f12476168d426b401d9c759a86e", + "screenshots/step_011.png": "84e4bc0c34097ab544a5e760104fe3d45c405abc798c7965aff19477124d3c48", + "screenshots/step_005.png": "968a745d1ac21da8cdb8bfea8cb7d8e2252fde1d0b8fc4479937c3ac989dd0f5", + "screenshots/step_001.png": "41be7a8f8439397279b4064ebb50ab50686f122e230e63cec16adf6e3ae9a5a0", + "screenshots/step_015.png": "6a557aa27bb42412429bbfa9c4d103eaeeb5fa82306d9c0b360e71d765abb24c", + "screenshots/step_015.jpg": "5a97cc7ee7b9d0c0434de0988e1586ca408ff77b155063498c16d4f5d5ba2a39", + "screenshots/step_001.jpg": "697d25a2737718071678ecc5c8dc7195faf296d491b0565b594d23fce0fe372f", + "screenshots/step_000.jpg": "ba5a8077ee56f0e9d83c8bd09725eb4b75befd78d4280cc89536f4a4253ccc62", + "screenshots/step_014.jpg": "a790e71eae361e2e9e74e5c261c8031b2ab22cbe89c1658bdb50d5514bdf741a", + "screenshots/step_014.png": "28e43465b9bd292adbdd5ec7911aa76e5d27f80b702dbf10a8b8e48ab7e67f77", + "screenshots/step_000.png": "8e4f763bee701c2c86037bd4920db858da293098a7f1ec17256b60afdd06f718", + "screenshots/step_002.png": "41be7a8f8439397279b4064ebb50ab50686f122e230e63cec16adf6e3ae9a5a0", + "screenshots/step_002.jpg": "697d25a2737718071678ecc5c8dc7195faf296d491b0565b594d23fce0fe372f", + "screenshots/step_003.jpg": "7f88b553e6066cf7d2b8f2ea7846e396288e00dcb3b7fc007dc79990700cd0d0", + "screenshots/step_003.png": "79d738eda2afbd8d2f4b8cff6a5c07581349d4441b7af8bfbef0ffb6280a276d", + "observations/006-after.txt": "6a499e4d8e886f2ad56963c5b3468c6cdc55065239013763bdcef79f51f8beb8", + "observations/004-before.txt": "c4313c88238b9f36be773f1575c7502142b5610bb33add45593a0c4d5710b9c7", + "observations/000-after.txt": "2a71dcdfac216456b602d8f2dd6fa396249533bd248e007f136229d5074f79b4", + "observations/001-before.txt": "2a71dcdfac216456b602d8f2dd6fa396249533bd248e007f136229d5074f79b4", + "observations/006-before.txt": "ba2c1ffd848c5d71958c6eb1c43a782427d2c1e8f28e0defc0b9a776658c2554", + "observations/007-after.txt": "6a499e4d8e886f2ad56963c5b3468c6cdc55065239013763bdcef79f51f8beb8", + "observations/001-after.txt": "cb4a1c50638e57a3cd4958c5faea0ee8e126cb2e743413e44cf34b181afb50f1", + "observations/003-before.txt": "ba4d0ec9e5b28a011e4f3076622af0a86c0277ad4f2641dc60711b5dcfad86f5", + "observations/004-after.txt": "c59e68d20e521041bb4b6afdb6673d5092fdd7c2a2e4885f701d646b632e6e34", + "observations/000-before.txt": "ba4d0ec9e5b28a011e4f3076622af0a86c0277ad4f2641dc60711b5dcfad86f5", + "observations/002-after.txt": "ba4d0ec9e5b28a011e4f3076622af0a86c0277ad4f2641dc60711b5dcfad86f5", + "observations/005-before.txt": "c59e68d20e521041bb4b6afdb6673d5092fdd7c2a2e4885f701d646b632e6e34", + "observations/005-after.txt": "ba2c1ffd848c5d71958c6eb1c43a782427d2c1e8f28e0defc0b9a776658c2554", + "observations/002-before.txt": "cb4a1c50638e57a3cd4958c5faea0ee8e126cb2e743413e44cf34b181afb50f1", + "observations/007-before.txt": "6a499e4d8e886f2ad56963c5b3468c6cdc55065239013763bdcef79f51f8beb8", + "observations/003-after.txt": "c4313c88238b9f36be773f1575c7502142b5610bb33add45593a0c4d5710b9c7" + } +} diff --git a/sites/compass/docs/visual-review/home/task17/trajectory.json b/sites/compass/docs/visual-review/home/task17/trajectory.json new file mode 100644 index 00000000..1191aad3 --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/trajectory.json @@ -0,0 +1,215 @@ +{ + "task_id": "Compass--17", + "start_url": "http://localhost:42019/", + "run_id": "guided-006-home-nav", + "source_commit": "9741284932adbcb309cf30f0c1de1dfc93ca6063", + "asset_revision": "e06307429dca76a8a7240d507ab69be9e5b84060", + "model": "Codex GPT-6, guided source-aware execution", + "source_aware": true, + "steps": [ + { + "step": 0, + "action": "Expand mobile Explore footer", + "started_at": "2026-09-06T15:43:29.142Z", + "finished_at": "2026-09-06T15:43:29.540Z", + "status": "completed", + "url": "http://localhost:42019/", + "url_after": "http://localhost:42019/", + "screenshot_before": "step_000.png", + "screenshot_after": "step_001.png", + "raw_screenshot_before": "step_000.jpg", + "raw_screenshot_after": "step_001.jpg", + "viewport_before": { + "height": 844, + "scrollX": 0, + "scrollY": 0, + "width": 390 + }, + "viewport_after": { + "height": 844, + "scrollX": 0, + "scrollY": 4049.5, + "width": 390 + } + }, + { + "step": 1, + "action": "Open Compass Luxury", + "started_at": "2026-09-06T15:43:29.648Z", + "finished_at": "2026-09-06T15:43:29.853Z", + "status": "completed", + "url": "http://localhost:42019/", + "url_after": "http://localhost:42019/luxury", + "screenshot_before": "step_002.png", + "screenshot_after": "step_003.png", + "raw_screenshot_before": "step_002.jpg", + "raw_screenshot_after": "step_003.jpg", + "viewport_before": { + "height": 844, + "scrollX": 0, + "scrollY": 4049.5, + "width": 390 + }, + "viewport_after": { + "height": 844, + "scrollX": 0, + "scrollY": 0, + "width": 390 + } + }, + { + "step": 2, + "action": "Return home for search filters", + "started_at": "2026-09-06T15:43:30.052Z", + "finished_at": "2026-09-06T15:43:30.258Z", + "status": "completed", + "url": "http://localhost:42019/luxury", + "url_after": "http://localhost:42019/", + "screenshot_before": "step_004.png", + "screenshot_after": "step_005.png", + "raw_screenshot_before": "step_004.jpg", + "raw_screenshot_after": "step_005.jpg", + "viewport_before": { + "height": 844, + "scrollX": 0, + "scrollY": 0, + "width": 390 + }, + "viewport_after": { + "height": 844, + "scrollX": 0, + "scrollY": 0, + "width": 390 + } + }, + { + "step": 3, + "action": "Open local search", + "started_at": "2026-09-06T15:43:30.460Z", + "finished_at": "2026-09-06T15:43:30.880Z", + "status": "completed", + "url": "http://localhost:42019/", + "url_after": "http://localhost:42019/search?status=for-sale&q=", + "screenshot_before": "step_006.png", + "screenshot_after": "step_007.png", + "raw_screenshot_before": "step_006.jpg", + "raw_screenshot_after": "step_007.jpg", + "viewport_before": { + "height": 844, + "scrollX": 0, + "scrollY": 0, + "width": 390 + }, + "viewport_after": { + "height": 844, + "scrollX": 0, + "scrollY": 0, + "width": 390 + } + }, + { + "step": 4, + "action": "Select Condo and descending price; open filters", + "started_at": "2026-09-06T15:43:31.081Z", + "finished_at": "2026-09-06T15:43:31.583Z", + "status": "completed", + "url": "http://localhost:42019/search?status=for-sale&q=", + "url_after": "http://localhost:42019/search?status=for-sale&q=", + "screenshot_before": "step_008.png", + "screenshot_after": "step_009.png", + "raw_screenshot_before": "step_008.jpg", + "raw_screenshot_after": "step_009.jpg", + "viewport_before": { + "height": 844, + "scrollX": 0, + "scrollY": 0, + "width": 390 + }, + "viewport_after": { + "height": 844, + "scrollX": 0, + "scrollY": 0, + "width": 390 + } + }, + { + "step": 5, + "action": "Apply minimum price $5 million", + "started_at": "2026-09-06T15:43:31.791Z", + "finished_at": "2026-09-06T15:43:32.006Z", + "status": "completed", + "url": "http://localhost:42019/search?status=for-sale&q=", + "url_after": "http://localhost:42019/search?q=&status=for-sale&property_type=Condo&beds=&price_max=&price_min=5000000&baths=&sqft_min=&year_built_min=&sort=price_desc", + "screenshot_before": "step_010.png", + "screenshot_after": "step_011.png", + "raw_screenshot_before": "step_010.jpg", + "raw_screenshot_after": "step_011.jpg", + "viewport_before": { + "height": 844, + "scrollX": 0, + "scrollY": 0, + "width": 390 + }, + "viewport_after": { + "height": 844, + "scrollX": 0, + "scrollY": 0, + "width": 390 + } + }, + { + "step": 6, + "action": "Open highest-priced qualifying condo", + "started_at": "2026-09-06T15:43:40.888Z", + "finished_at": "2026-09-06T15:43:41.081Z", + "status": "completed", + "url": "http://localhost:42019/search?q=&status=for-sale&property_type=Condo&beds=&price_max=&price_min=5000000&baths=&sqft_min=&year_built_min=&sort=price_desc", + "url_after": "http://localhost:42019/listing/150-charles-street-unit-m10-new-york-ny-81286569", + "screenshot_before": "step_012.png", + "screenshot_after": "step_013.png", + "raw_screenshot_before": "step_012.jpg", + "raw_screenshot_after": "step_013.jpg", + "viewport_before": { + "height": 844, + "scrollX": 0, + "scrollY": 0, + "width": 390 + }, + "viewport_after": { + "height": 844, + "scrollX": 0, + "scrollY": 0, + "width": 390 + } + }, + { + "step": 7, + "action": "Inspect property details and year", + "started_at": "2026-09-06T15:43:41.283Z", + "finished_at": "2026-09-06T15:43:41.703Z", + "status": "completed", + "url": "http://localhost:42019/listing/150-charles-street-unit-m10-new-york-ny-81286569", + "url_after": "http://localhost:42019/listing/150-charles-street-unit-m10-new-york-ny-81286569", + "screenshot_before": "step_014.png", + "screenshot_after": "step_015.png", + "raw_screenshot_before": "step_014.jpg", + "raw_screenshot_after": "step_015.jpg", + "viewport_before": { + "height": 844, + "scrollX": 0, + "scrollY": 0, + "width": 390 + }, + "viewport_after": { + "height": 844, + "scrollX": 0, + "scrollY": 2445.5, + "width": 390 + } + } + ], + "terminated": true, + "final_answer": "The highest-priced qualifying for-sale Condo is 150 Charles Street, Unit M10, Manhattan, NY 10014, listed at $21,500,000. Its listing agent is Holly Parker and its year built is 2013. The recorded source status is Contract Signed, included in the local for-sale collection.", + "termination_reason": "guided_done", + "finished_at": "2026-09-06T15:43:41.708Z" +} \ No newline at end of file diff --git a/sites/compass/docs/visual-review/home/task17/verifier-result.json b/sites/compass/docs/visual-review/home/task17/verifier-result.json new file mode 100644 index 00000000..e0aae3a7 --- /dev/null +++ b/sites/compass/docs/visual-review/home/task17/verifier-result.json @@ -0,0 +1 @@ +{"task_id": "Compass--17", "pass": true, "reason": "All applicable checks passed", "evidence": [{"check": "task_identity", "pass": true, "detail": ""}, {"check": "local_ui_evidence", "pass": true, "detail": ""}, {"check": "final_answer", "pass": true, "detail": ""}, {"check": "completed_run", "pass": true, "detail": ""}, {"check": "step_screenshot_package", "pass": true, "detail": ""}, {"check": "unchanged_users", "pass": true, "detail": ""}, {"check": "unchanged_saved_searches", "pass": true, "detail": ""}, {"check": "unchanged_listings", "pass": true, "detail": ""}, {"check": "unchanged_collections", "pass": true, "detail": ""}, {"check": "unchanged_saved_homes", "pass": true, "detail": ""}, {"check": "unchanged_cities", "pass": true, "detail": ""}, {"check": "unchanged_tours", "pass": true, "detail": ""}, {"check": "unchanged_inquiries", "pass": true, "detail": ""}, {"check": "unchanged_agents", "pass": true, "detail": ""}, {"check": "answer_target_address", "pass": true, "detail": ""}, {"check": "target_property_details", "pass": true, "detail": ""}, {"check": "answer_agent_name", "pass": true, "detail": ""}, {"check": "answer_year_built", "pass": true, "detail": ""}]} diff --git a/sites/compass/docs/visual-review/landing/before-concierge-top-1440.jpg b/sites/compass/docs/visual-review/landing/before-concierge-top-1440.jpg new file mode 100644 index 00000000..777d5674 Binary files /dev/null and b/sites/compass/docs/visual-review/landing/before-concierge-top-1440.jpg differ diff --git a/sites/compass/docs/visual-review/landing/before-concierge-top-390.jpg b/sites/compass/docs/visual-review/landing/before-concierge-top-390.jpg new file mode 100644 index 00000000..10730b5c Binary files /dev/null and b/sites/compass/docs/visual-review/landing/before-concierge-top-390.jpg differ diff --git a/sites/compass/docs/visual-review/landing/before-concierge-top-815.jpg b/sites/compass/docs/visual-review/landing/before-concierge-top-815.jpg new file mode 100644 index 00000000..b809f1cf Binary files /dev/null and b/sites/compass/docs/visual-review/landing/before-concierge-top-815.jpg differ diff --git a/sites/compass/docs/visual-review/landing/before-guides-top-1440.jpg b/sites/compass/docs/visual-review/landing/before-guides-top-1440.jpg new file mode 100644 index 00000000..3d65af07 Binary files /dev/null and b/sites/compass/docs/visual-review/landing/before-guides-top-1440.jpg differ diff --git a/sites/compass/docs/visual-review/landing/before-guides-top-390.jpg b/sites/compass/docs/visual-review/landing/before-guides-top-390.jpg new file mode 100644 index 00000000..1c4e2feb Binary files /dev/null and b/sites/compass/docs/visual-review/landing/before-guides-top-390.jpg differ diff --git a/sites/compass/docs/visual-review/landing/before-guides-top-815.jpg b/sites/compass/docs/visual-review/landing/before-guides-top-815.jpg new file mode 100644 index 00000000..4f4b68db Binary files /dev/null and b/sites/compass/docs/visual-review/landing/before-guides-top-815.jpg differ diff --git a/sites/compass/docs/visual-review/landing/source-final-concierge-faq-1440.jpg b/sites/compass/docs/visual-review/landing/source-final-concierge-faq-1440.jpg new file mode 100644 index 00000000..2783f5ae Binary files /dev/null and b/sites/compass/docs/visual-review/landing/source-final-concierge-faq-1440.jpg differ diff --git a/sites/compass/docs/visual-review/landing/source-final-concierge-services-1440.jpg b/sites/compass/docs/visual-review/landing/source-final-concierge-services-1440.jpg new file mode 100644 index 00000000..221bc1b7 Binary files /dev/null and b/sites/compass/docs/visual-review/landing/source-final-concierge-services-1440.jpg differ diff --git a/sites/compass/docs/visual-review/landing/source-final-concierge-stories-1440.jpg b/sites/compass/docs/visual-review/landing/source-final-concierge-stories-1440.jpg new file mode 100644 index 00000000..8350f563 Binary files /dev/null and b/sites/compass/docs/visual-review/landing/source-final-concierge-stories-1440.jpg differ diff --git a/sites/compass/docs/visual-review/landing/source-final-concierge-video-1440.jpg b/sites/compass/docs/visual-review/landing/source-final-concierge-video-1440.jpg new file mode 100644 index 00000000..383ec810 Binary files /dev/null and b/sites/compass/docs/visual-review/landing/source-final-concierge-video-1440.jpg differ diff --git a/sites/compass/docs/visual-review/landing/source-screen-concierge-top-1440.jpg b/sites/compass/docs/visual-review/landing/source-screen-concierge-top-1440.jpg new file mode 100644 index 00000000..a0da6ddb Binary files /dev/null and b/sites/compass/docs/visual-review/landing/source-screen-concierge-top-1440.jpg differ diff --git a/sites/compass/docs/visual-review/landing/source-screen-concierge-top-390.jpg b/sites/compass/docs/visual-review/landing/source-screen-concierge-top-390.jpg new file mode 100644 index 00000000..f97691d2 Binary files /dev/null and b/sites/compass/docs/visual-review/landing/source-screen-concierge-top-390.jpg differ diff --git a/sites/compass/docs/visual-review/landing/source-screen-concierge-top-815.jpg b/sites/compass/docs/visual-review/landing/source-screen-concierge-top-815.jpg new file mode 100644 index 00000000..190c7a62 Binary files /dev/null and b/sites/compass/docs/visual-review/landing/source-screen-concierge-top-815.jpg differ diff --git a/sites/compass/docs/visual-review/landing/source-verified-guides-top-1440.jpg b/sites/compass/docs/visual-review/landing/source-verified-guides-top-1440.jpg new file mode 100644 index 00000000..4d35247d Binary files /dev/null and b/sites/compass/docs/visual-review/landing/source-verified-guides-top-1440.jpg differ diff --git a/sites/compass/docs/visual-review/landing/source-verified-guides-top-390.jpg b/sites/compass/docs/visual-review/landing/source-verified-guides-top-390.jpg new file mode 100644 index 00000000..0ec35ad1 Binary files /dev/null and b/sites/compass/docs/visual-review/landing/source-verified-guides-top-390.jpg differ diff --git a/sites/compass/docs/visual-review/landing/source-verified-guides-top-815.jpg b/sites/compass/docs/visual-review/landing/source-verified-guides-top-815.jpg new file mode 100644 index 00000000..30ae808a Binary files /dev/null and b/sites/compass/docs/visual-review/landing/source-verified-guides-top-815.jpg differ diff --git a/sites/compass/docs/visual-review/landing/verified-concierge-faq-1440.jpg b/sites/compass/docs/visual-review/landing/verified-concierge-faq-1440.jpg new file mode 100644 index 00000000..d0b0b7a0 Binary files /dev/null and b/sites/compass/docs/visual-review/landing/verified-concierge-faq-1440.jpg differ diff --git a/sites/compass/docs/visual-review/landing/verified-concierge-services-1440.jpg b/sites/compass/docs/visual-review/landing/verified-concierge-services-1440.jpg new file mode 100644 index 00000000..20cb2803 Binary files /dev/null and b/sites/compass/docs/visual-review/landing/verified-concierge-services-1440.jpg differ diff --git a/sites/compass/docs/visual-review/landing/verified-concierge-stories-1440.jpg b/sites/compass/docs/visual-review/landing/verified-concierge-stories-1440.jpg new file mode 100644 index 00000000..6951bb2f Binary files /dev/null and b/sites/compass/docs/visual-review/landing/verified-concierge-stories-1440.jpg differ diff --git a/sites/compass/docs/visual-review/landing/verified-concierge-top-1440.jpg b/sites/compass/docs/visual-review/landing/verified-concierge-top-1440.jpg new file mode 100644 index 00000000..3562fb72 Binary files /dev/null and b/sites/compass/docs/visual-review/landing/verified-concierge-top-1440.jpg differ diff --git a/sites/compass/docs/visual-review/landing/verified-concierge-top-390.jpg b/sites/compass/docs/visual-review/landing/verified-concierge-top-390.jpg new file mode 100644 index 00000000..b9f38778 Binary files /dev/null and b/sites/compass/docs/visual-review/landing/verified-concierge-top-390.jpg differ diff --git a/sites/compass/docs/visual-review/landing/verified-concierge-top-815.jpg b/sites/compass/docs/visual-review/landing/verified-concierge-top-815.jpg new file mode 100644 index 00000000..bdb90f34 Binary files /dev/null and b/sites/compass/docs/visual-review/landing/verified-concierge-top-815.jpg differ diff --git a/sites/compass/docs/visual-review/landing/verified-concierge-video-1440.jpg b/sites/compass/docs/visual-review/landing/verified-concierge-video-1440.jpg new file mode 100644 index 00000000..16927443 Binary files /dev/null and b/sites/compass/docs/visual-review/landing/verified-concierge-video-1440.jpg differ diff --git a/sites/compass/docs/visual-review/landing/verified-guides-top-1440.jpg b/sites/compass/docs/visual-review/landing/verified-guides-top-1440.jpg new file mode 100644 index 00000000..0c23b66b Binary files /dev/null and b/sites/compass/docs/visual-review/landing/verified-guides-top-1440.jpg differ diff --git a/sites/compass/docs/visual-review/landing/verified-guides-top-390.jpg b/sites/compass/docs/visual-review/landing/verified-guides-top-390.jpg new file mode 100644 index 00000000..8e432bb1 Binary files /dev/null and b/sites/compass/docs/visual-review/landing/verified-guides-top-390.jpg differ diff --git a/sites/compass/docs/visual-review/landing/verified-guides-top-815.jpg b/sites/compass/docs/visual-review/landing/verified-guides-top-815.jpg new file mode 100644 index 00000000..92cfcd4f Binary files /dev/null and b/sites/compass/docs/visual-review/landing/verified-guides-top-815.jpg differ diff --git a/sites/compass/docs/visual-review/original-detail-aspen-1440.jpg b/sites/compass/docs/visual-review/original-detail-aspen-1440.jpg new file mode 100644 index 00000000..c3706b4b Binary files /dev/null and b/sites/compass/docs/visual-review/original-detail-aspen-1440.jpg differ diff --git a/sites/compass/docs/visual-review/original-detail-aspen-390.jpg b/sites/compass/docs/visual-review/original-detail-aspen-390.jpg new file mode 100644 index 00000000..8ad7310e Binary files /dev/null and b/sites/compass/docs/visual-review/original-detail-aspen-390.jpg differ diff --git a/sites/compass/docs/visual-review/original-detail-miami-1440.jpg b/sites/compass/docs/visual-review/original-detail-miami-1440.jpg new file mode 100644 index 00000000..30ff15fb Binary files /dev/null and b/sites/compass/docs/visual-review/original-detail-miami-1440.jpg differ diff --git a/sites/compass/docs/visual-review/original-home-1440.jpg b/sites/compass/docs/visual-review/original-home-1440.jpg new file mode 100644 index 00000000..b818c567 Binary files /dev/null and b/sites/compass/docs/visual-review/original-home-1440.jpg differ diff --git a/sites/compass/docs/visual-review/original-home-390.jpg b/sites/compass/docs/visual-review/original-home-390.jpg new file mode 100644 index 00000000..5868f80a Binary files /dev/null and b/sites/compass/docs/visual-review/original-home-390.jpg differ diff --git a/sites/compass/docs/visual-review/original-miami-list-1440.jpg b/sites/compass/docs/visual-review/original-miami-list-1440.jpg new file mode 100644 index 00000000..6af8ee8e Binary files /dev/null and b/sites/compass/docs/visual-review/original-miami-list-1440.jpg differ diff --git a/sites/compass/docs/visual-review/responsive/account-320.jpg b/sites/compass/docs/visual-review/responsive/account-320.jpg new file mode 100644 index 00000000..aec63330 Binary files /dev/null and b/sites/compass/docs/visual-review/responsive/account-320.jpg differ diff --git a/sites/compass/docs/visual-review/responsive/collections-320.jpg b/sites/compass/docs/visual-review/responsive/collections-320.jpg new file mode 100644 index 00000000..ca25b570 Binary files /dev/null and b/sites/compass/docs/visual-review/responsive/collections-320.jpg differ diff --git a/sites/compass/docs/visual-review/responsive/detail-two-photo-320.jpg b/sites/compass/docs/visual-review/responsive/detail-two-photo-320.jpg new file mode 100644 index 00000000..56d6bcad Binary files /dev/null and b/sites/compass/docs/visual-review/responsive/detail-two-photo-320.jpg differ diff --git a/sites/compass/docs/visual-review/responsive/detail-two-photo-390.jpg b/sites/compass/docs/visual-review/responsive/detail-two-photo-390.jpg new file mode 100644 index 00000000..88f142ae Binary files /dev/null and b/sites/compass/docs/visual-review/responsive/detail-two-photo-390.jpg differ diff --git a/sites/compass/docs/visual-review/responsive/filters-390.jpg b/sites/compass/docs/visual-review/responsive/filters-390.jpg new file mode 100644 index 00000000..07338b68 Binary files /dev/null and b/sites/compass/docs/visual-review/responsive/filters-390.jpg differ diff --git a/sites/compass/docs/visual-review/responsive/home-390.jpg b/sites/compass/docs/visual-review/responsive/home-390.jpg new file mode 100644 index 00000000..40879d55 Binary files /dev/null and b/sites/compass/docs/visual-review/responsive/home-390.jpg differ diff --git a/sites/compass/docs/visual-review/responsive/home-768.jpg b/sites/compass/docs/visual-review/responsive/home-768.jpg new file mode 100644 index 00000000..021e6a3f Binary files /dev/null and b/sites/compass/docs/visual-review/responsive/home-768.jpg differ diff --git a/sites/compass/docs/visual-review/responsive/list-390.jpg b/sites/compass/docs/visual-review/responsive/list-390.jpg new file mode 100644 index 00000000..f075a4cd Binary files /dev/null and b/sites/compass/docs/visual-review/responsive/list-390.jpg differ diff --git a/sites/compass/docs/visual-review/responsive/list-768.jpg b/sites/compass/docs/visual-review/responsive/list-768.jpg new file mode 100644 index 00000000..da3c93f3 Binary files /dev/null and b/sites/compass/docs/visual-review/responsive/list-768.jpg differ diff --git a/sites/compass/docs/visual-review/responsive/login-320.jpg b/sites/compass/docs/visual-review/responsive/login-320.jpg new file mode 100644 index 00000000..2ca3e7ee Binary files /dev/null and b/sites/compass/docs/visual-review/responsive/login-320.jpg differ diff --git a/sites/compass/docs/visual-review/responsive/photo-dialog-390.jpg b/sites/compass/docs/visual-review/responsive/photo-dialog-390.jpg new file mode 100644 index 00000000..a7c2404f Binary files /dev/null and b/sites/compass/docs/visual-review/responsive/photo-dialog-390.jpg differ diff --git a/sites/compass/docs/visual-review/responsive/profile-form-320.jpg b/sites/compass/docs/visual-review/responsive/profile-form-320.jpg new file mode 100644 index 00000000..68d68da7 Binary files /dev/null and b/sites/compass/docs/visual-review/responsive/profile-form-320.jpg differ diff --git a/sites/compass/docs/visual-review/responsive/saved-searches-320.jpg b/sites/compass/docs/visual-review/responsive/saved-searches-320.jpg new file mode 100644 index 00000000..85650a53 Binary files /dev/null and b/sites/compass/docs/visual-review/responsive/saved-searches-320.jpg differ diff --git a/sites/compass/docs/visual-review/responsive/share-dialog-390.jpg b/sites/compass/docs/visual-review/responsive/share-dialog-390.jpg new file mode 100644 index 00000000..e9825d06 Binary files /dev/null and b/sites/compass/docs/visual-review/responsive/share-dialog-390.jpg differ diff --git a/sites/compass/docs/visual-review/responsive/tour-form-320.jpg b/sites/compass/docs/visual-review/responsive/tour-form-320.jpg new file mode 100644 index 00000000..aec63330 Binary files /dev/null and b/sites/compass/docs/visual-review/responsive/tour-form-320.jpg differ diff --git a/sites/compass/docs/visual-review/responsive/tours-table-320.jpg b/sites/compass/docs/visual-review/responsive/tours-table-320.jpg new file mode 100644 index 00000000..3b0270b9 Binary files /dev/null and b/sites/compass/docs/visual-review/responsive/tours-table-320.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/before-region-nyc-full-1440.jpg b/sites/compass/docs/visual-review/sell-guides/before-region-nyc-full-1440.jpg new file mode 100644 index 00000000..ae6a6c1a Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/before-region-nyc-full-1440.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/before-region-nyc-top-1440.jpg b/sites/compass/docs/visual-review/sell-guides/before-region-nyc-top-1440.jpg new file mode 100644 index 00000000..3ca75391 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/before-region-nyc-top-1440.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/before-region-nyc-top-390.jpg b/sites/compass/docs/visual-review/sell-guides/before-region-nyc-top-390.jpg new file mode 100644 index 00000000..5b641bc1 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/before-region-nyc-top-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/before-region-nyc-top-815.jpg b/sites/compass/docs/visual-review/sell-guides/before-region-nyc-top-815.jpg new file mode 100644 index 00000000..31e5408a Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/before-region-nyc-top-815.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/before-sell-full-1440.jpg b/sites/compass/docs/visual-review/sell-guides/before-sell-full-1440.jpg new file mode 100644 index 00000000..f6791319 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/before-sell-full-1440.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/before-sell-top-1440.jpg b/sites/compass/docs/visual-review/sell-guides/before-sell-top-1440.jpg new file mode 100644 index 00000000..2404b4cb Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/before-sell-top-1440.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/before-sell-top-390.jpg b/sites/compass/docs/visual-review/sell-guides/before-sell-top-390.jpg new file mode 100644 index 00000000..c5b9853b Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/before-sell-top-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/before-sell-top-815.jpg b/sites/compass/docs/visual-review/sell-guides/before-sell-top-815.jpg new file mode 100644 index 00000000..27c209d8 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/before-sell-top-815.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/final-region-nearby-expanded-1440.jpg b/sites/compass/docs/visual-review/sell-guides/final-region-nearby-expanded-1440.jpg new file mode 100644 index 00000000..d34e2947 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/final-region-nearby-expanded-1440.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/final-region-nearby-expanded-390.jpg b/sites/compass/docs/visual-review/sell-guides/final-region-nearby-expanded-390.jpg new file mode 100644 index 00000000..f34f7be0 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/final-region-nearby-expanded-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/final-region-nyc-full-1440.jpg b/sites/compass/docs/visual-review/sell-guides/final-region-nyc-full-1440.jpg new file mode 100644 index 00000000..952a219b Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/final-region-nyc-full-1440.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/final-region-nyc-top-1440.jpg b/sites/compass/docs/visual-review/sell-guides/final-region-nyc-top-1440.jpg new file mode 100644 index 00000000..fb977781 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/final-region-nyc-top-1440.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/final-region-nyc-top-390.jpg b/sites/compass/docs/visual-review/sell-guides/final-region-nyc-top-390.jpg new file mode 100644 index 00000000..0955b614 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/final-region-nyc-top-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/final-region-nyc-top-815.jpg b/sites/compass/docs/visual-review/sell-guides/final-region-nyc-top-815.jpg new file mode 100644 index 00000000..d42a917d Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/final-region-nyc-top-815.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/final-sell-comparison-6-390.jpg b/sites/compass/docs/visual-review/sell-guides/final-sell-comparison-6-390.jpg new file mode 100644 index 00000000..a4549acb Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/final-sell-comparison-6-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/final-sell-form-empty-390.jpg b/sites/compass/docs/visual-review/sell-guides/final-sell-form-empty-390.jpg new file mode 100644 index 00000000..7bb13844 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/final-sell-form-empty-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/final-sell-form-reset-390.jpg b/sites/compass/docs/visual-review/sell-guides/final-sell-form-reset-390.jpg new file mode 100644 index 00000000..7bb13844 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/final-sell-form-reset-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/final-sell-form-saved-390.jpg b/sites/compass/docs/visual-review/sell-guides/final-sell-form-saved-390.jpg new file mode 100644 index 00000000..942ccb0f Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/final-sell-form-saved-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/final-sell-full-1440.jpg b/sites/compass/docs/visual-review/sell-guides/final-sell-full-1440.jpg new file mode 100644 index 00000000..9b217929 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/final-sell-full-1440.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/final-sell-full-390.jpg b/sites/compass/docs/visual-review/sell-guides/final-sell-full-390.jpg new file mode 100644 index 00000000..5ad28031 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/final-sell-full-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/final-sell-top-1440.jpg b/sites/compass/docs/visual-review/sell-guides/final-sell-top-1440.jpg new file mode 100644 index 00000000..254f205c Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/final-sell-top-1440.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/final-sell-top-390.jpg b/sites/compass/docs/visual-review/sell-guides/final-sell-top-390.jpg new file mode 100644 index 00000000..008d8339 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/final-sell-top-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/final-sell-top-815.jpg b/sites/compass/docs/visual-review/sell-guides/final-sell-top-815.jpg new file mode 100644 index 00000000..ed1c068f Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/final-sell-top-815.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/final-source-shading-advantage-2-390.jpg b/sites/compass/docs/visual-review/sell-guides/final-source-shading-advantage-2-390.jpg new file mode 100644 index 00000000..e98d691f Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/final-source-shading-advantage-2-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/source-region-nearby-expanded-1440.jpg b/sites/compass/docs/visual-review/sell-guides/source-region-nearby-expanded-1440.jpg new file mode 100644 index 00000000..50532dfc Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/source-region-nearby-expanded-1440.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/source-region-nyc-full-1440.jpg b/sites/compass/docs/visual-review/sell-guides/source-region-nyc-full-1440.jpg new file mode 100644 index 00000000..d0aa6584 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/source-region-nyc-full-1440.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/source-region-nyc-top-1440.jpg b/sites/compass/docs/visual-review/sell-guides/source-region-nyc-top-1440.jpg new file mode 100644 index 00000000..97d432f4 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/source-region-nyc-top-1440.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/source-region-nyc-top-390.jpg b/sites/compass/docs/visual-review/sell-guides/source-region-nyc-top-390.jpg new file mode 100644 index 00000000..bac7cbb6 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/source-region-nyc-top-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/source-region-nyc-top-815.jpg b/sites/compass/docs/visual-review/sell-guides/source-region-nyc-top-815.jpg new file mode 100644 index 00000000..7e130449 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/source-region-nyc-top-815.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/source-sell-advantage-2-390.jpg b/sites/compass/docs/visual-review/sell-guides/source-sell-advantage-2-390.jpg new file mode 100644 index 00000000..9f7d66f2 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/source-sell-advantage-2-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/source-sell-comparison-6-390.jpg b/sites/compass/docs/visual-review/sell-guides/source-sell-comparison-6-390.jpg new file mode 100644 index 00000000..cd15c886 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/source-sell-comparison-6-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/source-sell-full-1440.jpg b/sites/compass/docs/visual-review/sell-guides/source-sell-full-1440.jpg new file mode 100644 index 00000000..9f2f3f1e Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/source-sell-full-1440.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/source-sell-full-390.jpg b/sites/compass/docs/visual-review/sell-guides/source-sell-full-390.jpg new file mode 100644 index 00000000..1f2022f3 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/source-sell-full-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/source-sell-top-1440.jpg b/sites/compass/docs/visual-review/sell-guides/source-sell-top-1440.jpg new file mode 100644 index 00000000..479f8a3a Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/source-sell-top-1440.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/source-sell-top-390.jpg b/sites/compass/docs/visual-review/sell-guides/source-sell-top-390.jpg new file mode 100644 index 00000000..6e444966 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/source-sell-top-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell-guides/source-sell-top-815.jpg b/sites/compass/docs/visual-review/sell-guides/source-sell-top-815.jpg new file mode 100644 index 00000000..d8f2c3a6 Binary files /dev/null and b/sites/compass/docs/visual-review/sell-guides/source-sell-top-815.jpg differ diff --git a/sites/compass/docs/visual-review/sell/after-account-768.jpg b/sites/compass/docs/visual-review/sell/after-account-768.jpg new file mode 100644 index 00000000..4f92dd93 Binary files /dev/null and b/sites/compass/docs/visual-review/sell/after-account-768.jpg differ diff --git a/sites/compass/docs/visual-review/sell/after-agent-link-1440.jpg b/sites/compass/docs/visual-review/sell/after-agent-link-1440.jpg new file mode 100644 index 00000000..2e8367ff Binary files /dev/null and b/sites/compass/docs/visual-review/sell/after-agent-link-1440.jpg differ diff --git a/sites/compass/docs/visual-review/sell/after-authenticated-nav-1100.jpg b/sites/compass/docs/visual-review/sell/after-authenticated-nav-1100.jpg new file mode 100644 index 00000000..a043f68c Binary files /dev/null and b/sites/compass/docs/visual-review/sell/after-authenticated-nav-1100.jpg differ diff --git a/sites/compass/docs/visual-review/sell/after-authenticated-sell-768.jpg b/sites/compass/docs/visual-review/sell/after-authenticated-sell-768.jpg new file mode 100644 index 00000000..a2b40129 Binary files /dev/null and b/sites/compass/docs/visual-review/sell/after-authenticated-sell-768.jpg differ diff --git a/sites/compass/docs/visual-review/sell/after-existing-buy-search.jpg b/sites/compass/docs/visual-review/sell/after-existing-buy-search.jpg new file mode 100644 index 00000000..c71d7d85 Binary files /dev/null and b/sites/compass/docs/visual-review/sell/after-existing-buy-search.jpg differ diff --git a/sites/compass/docs/visual-review/sell/after-existing-rent-search.jpg b/sites/compass/docs/visual-review/sell/after-existing-rent-search.jpg new file mode 100644 index 00000000..4be78cff Binary files /dev/null and b/sites/compass/docs/visual-review/sell/after-existing-rent-search.jpg differ diff --git a/sites/compass/docs/visual-review/sell/after-home-390.jpg b/sites/compass/docs/visual-review/sell/after-home-390.jpg new file mode 100644 index 00000000..5844bbb0 Binary files /dev/null and b/sites/compass/docs/visual-review/sell/after-home-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell/after-home-desktop-final.jpg b/sites/compass/docs/visual-review/sell/after-home-desktop-final.jpg new file mode 100644 index 00000000..18236e06 Binary files /dev/null and b/sites/compass/docs/visual-review/sell/after-home-desktop-final.jpg differ diff --git a/sites/compass/docs/visual-review/sell/after-home-sell-keyboard.jpg b/sites/compass/docs/visual-review/sell/after-home-sell-keyboard.jpg new file mode 100644 index 00000000..6b02ea22 Binary files /dev/null and b/sites/compass/docs/visual-review/sell/after-home-sell-keyboard.jpg differ diff --git a/sites/compass/docs/visual-review/sell/after-menu-390.jpg b/sites/compass/docs/visual-review/sell/after-menu-390.jpg new file mode 100644 index 00000000..c58afeb4 Binary files /dev/null and b/sites/compass/docs/visual-review/sell/after-menu-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell/after-sell-320.jpg b/sites/compass/docs/visual-review/sell/after-sell-320.jpg new file mode 100644 index 00000000..77ce0106 Binary files /dev/null and b/sites/compass/docs/visual-review/sell/after-sell-320.jpg differ diff --git a/sites/compass/docs/visual-review/sell/after-sell-390-final.jpg b/sites/compass/docs/visual-review/sell/after-sell-390-final.jpg new file mode 100644 index 00000000..bccd846a Binary files /dev/null and b/sites/compass/docs/visual-review/sell/after-sell-390-final.jpg differ diff --git a/sites/compass/docs/visual-review/sell/after-sell-contact-1440-final.jpg b/sites/compass/docs/visual-review/sell/after-sell-contact-1440-final.jpg new file mode 100644 index 00000000..b94ad387 Binary files /dev/null and b/sites/compass/docs/visual-review/sell/after-sell-contact-1440-final.jpg differ diff --git a/sites/compass/docs/visual-review/sell/after-sell-contact-320.jpg b/sites/compass/docs/visual-review/sell/after-sell-contact-320.jpg new file mode 100644 index 00000000..fba0c980 Binary files /dev/null and b/sites/compass/docs/visual-review/sell/after-sell-contact-320.jpg differ diff --git a/sites/compass/docs/visual-review/sell/after-sell-desktop-final.jpg b/sites/compass/docs/visual-review/sell/after-sell-desktop-final.jpg new file mode 100644 index 00000000..765ca0ca Binary files /dev/null and b/sites/compass/docs/visual-review/sell/after-sell-desktop-final.jpg differ diff --git a/sites/compass/docs/visual-review/sell/after-sell-tablet-final.jpg b/sites/compass/docs/visual-review/sell/after-sell-tablet-final.jpg new file mode 100644 index 00000000..17d08370 Binary files /dev/null and b/sites/compass/docs/visual-review/sell/after-sell-tablet-final.jpg differ diff --git a/sites/compass/docs/visual-review/sell/before-home-390.jpg b/sites/compass/docs/visual-review/sell/before-home-390.jpg new file mode 100644 index 00000000..40879d55 Binary files /dev/null and b/sites/compass/docs/visual-review/sell/before-home-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell/before-home-desktop.jpg b/sites/compass/docs/visual-review/sell/before-home-desktop.jpg new file mode 100644 index 00000000..396485ce Binary files /dev/null and b/sites/compass/docs/visual-review/sell/before-home-desktop.jpg differ diff --git a/sites/compass/docs/visual-review/sell/before-sell-390.jpg b/sites/compass/docs/visual-review/sell/before-sell-390.jpg new file mode 100644 index 00000000..a6a5c83f Binary files /dev/null and b/sites/compass/docs/visual-review/sell/before-sell-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell/before-sell-desktop.jpg b/sites/compass/docs/visual-review/sell/before-sell-desktop.jpg new file mode 100644 index 00000000..046f0be9 Binary files /dev/null and b/sites/compass/docs/visual-review/sell/before-sell-desktop.jpg differ diff --git a/sites/compass/docs/visual-review/sell/source-home-390.jpg b/sites/compass/docs/visual-review/sell/source-home-390.jpg new file mode 100644 index 00000000..dff891f5 Binary files /dev/null and b/sites/compass/docs/visual-review/sell/source-home-390.jpg differ diff --git a/sites/compass/docs/visual-review/sell/source-home-desktop-final.jpg b/sites/compass/docs/visual-review/sell/source-home-desktop-final.jpg new file mode 100644 index 00000000..119af4e9 Binary files /dev/null and b/sites/compass/docs/visual-review/sell/source-home-desktop-final.jpg differ diff --git a/sites/compass/docs/visual-review/sell/source-sell-1440.jpg b/sites/compass/docs/visual-review/sell/source-sell-1440.jpg new file mode 100644 index 00000000..d2932919 Binary files /dev/null and b/sites/compass/docs/visual-review/sell/source-sell-1440.jpg differ diff --git a/sites/compass/docs/visual-review/sell/source-sell-390.jpg b/sites/compass/docs/visual-review/sell/source-sell-390.jpg new file mode 100644 index 00000000..3bab2617 Binary files /dev/null and b/sites/compass/docs/visual-review/sell/source-sell-390.jpg differ diff --git a/sites/compass/gallery_sources.json b/sites/compass/gallery_sources.json new file mode 100644 index 00000000..4762a0db --- /dev/null +++ b/sites/compass/gallery_sources.json @@ -0,0 +1,3669 @@ +{ + "schema_version": 1, + "images": [ + { + "listing_id": "1531201878968659849", + "index": 4, + "source_url": "https://www.compass.com/m/0/92e6cc4b-a119-48b1-8e25-a596a76f1190/1499x1000.jpg", + "path": "static/external_cache/listings/1531201878968659849/gallery_4.jpg", + "sha256": "429d754835209ea46754fa0d35968aea4301a8d25a97871fc5eb1955b5b99db5", + "retrieved_at": "2026-09-06T05:07:49.112176+00:00" + }, + { + "listing_id": "1713881232348223185", + "index": 4, + "source_url": "https://www.compass.com/m/3fe3b8346d6f3a7981728f4bcfa71468f2fff42b_img_4_f6b22/640x480.jpg", + "path": "static/external_cache/listings/1713881232348223185/gallery_4.jpg", + "sha256": "4715ca308833273e127f148a04c6984e4a9cc8cbfd1d5bd5f787b2b41471b525", + "retrieved_at": "2026-09-06T05:07:11.894230+00:00" + }, + { + "listing_id": "1714599076187132233", + "index": 4, + "source_url": "https://www.compass.com/m/4203f1a3ee6f529ea8dfb5cdd688c347c3f50d1a_img_4_6c247/640x480.jpg", + "path": "static/external_cache/listings/1714599076187132233/gallery_4.jpg", + "sha256": "fc7f6d5d49f6f824b774c28c4d43b9288f4ca7f6fbd6adaf22502bc96ff3fae5", + "retrieved_at": "2026-09-06T05:07:10.039585+00:00" + }, + { + "listing_id": "1727622680580487609", + "index": 4, + "source_url": "https://www.compass.com/m/51e66dbaf027d3fbfaafdaa494482b25b8b353a0_img_4_ab5f6/640x480.jpg", + "path": "static/external_cache/listings/1727622680580487609/gallery_4.jpg", + "sha256": "830fb747e85dc250b3ce9cf2a26ee42f47849d13fcda5c3b2bfc56149ac5c683", + "retrieved_at": "2026-09-06T05:07:18.059090+00:00" + }, + { + "listing_id": "1729195892532402377", + "index": 4, + "source_url": "https://www.compass.com/m/0/695e972d-ea6f-46e6-9264-002ec722363c/1500x1000.jpg", + "path": "static/external_cache/listings/1729195892532402377/gallery_4.jpg", + "sha256": "11fdee71fffc4384b7882d64546f936d33ad46b5a62a5f89c7a803b71cc26453", + "retrieved_at": "2026-09-06T05:05:49.746217+00:00" + }, + { + "listing_id": "1764776333397921937", + "index": 4, + "source_url": "https://www.compass.com/m/72989d05b4c77cd9fa377c0dbbd40eaa583768f5_img_4_120b2/640x480.jpg", + "path": "static/external_cache/listings/1764776333397921937/gallery_4.jpg", + "sha256": "54c51c4e737361df058e85d9a4cfc3702ee229fc42f888ac31dac0ebf31bf115", + "retrieved_at": "2026-09-06T05:07:21.207551+00:00" + }, + { + "listing_id": "1768378618058228761", + "index": 4, + "source_url": "https://www.compass.com/m/0/e08f9c72-20ec-4c72-93b8-41c5c0fab003/1024x681.jpg", + "path": "static/external_cache/listings/1768378618058228761/gallery_4.jpg", + "sha256": "67fc43a035ca956b0df8d3f401cbf2591b98e5d9aed3a2a6a07769bddf6e0011", + "retrieved_at": "2026-09-06T05:05:55.413698+00:00" + }, + { + "listing_id": "1769165095591571489", + "index": 4, + "source_url": "https://www.compass.com/m/0/0be6b31b-31bd-49d6-bd0b-b13fc6e1c170/1024x681.jpg", + "path": "static/external_cache/listings/1769165095591571489/gallery_4.jpg", + "sha256": "6484b3912b90018441889f75b64cc22c7400e53ac943e3d2431d0517a1af6c49", + "retrieved_at": "2026-09-06T05:05:58.092083+00:00" + }, + { + "listing_id": "1795365010515361945", + "index": 4, + "source_url": "https://www.compass.com/m/0/9d9a2ed8-6558-435b-9237-6d2d7438f239/1500x1000.jpg", + "path": "static/external_cache/listings/1795365010515361945/gallery_4.jpg", + "sha256": "efac182670540bb5c596fc1b53f0d8eeb58ad972faf9d3216938001df98f1f26", + "retrieved_at": "2026-09-06T05:04:24.156686+00:00" + }, + { + "listing_id": "1809571495064367481", + "index": 4, + "source_url": "https://www.compass.com/m/e9d7be731a3341c4297629ebb7da2f1c35a1e0ef_img_4_9278c/640x480.jpg", + "path": "static/external_cache/listings/1809571495064367481/gallery_4.jpg", + "sha256": "9d75de40aa6946cc1ecf07dd0bb5326ec457d6c51926fd15bebf6d4eaa379eae", + "retrieved_at": "2026-09-06T05:07:23.141023+00:00" + }, + { + "listing_id": "1836600798260165145", + "index": 4, + "source_url": "https://www.compass.com/m/aa4058b6dde21476572e5c7806466994c5d7ed97_img_4_04b33/640x480.jpg", + "path": "static/external_cache/listings/1836600798260165145/gallery_4.jpg", + "sha256": "6072556812964bf029b05b4df31d8e5ad930e66dfb277e2330b25350d3f55b53", + "retrieved_at": "2026-09-06T05:04:57.136245+00:00" + }, + { + "listing_id": "1845716871705171257", + "index": 4, + "source_url": "https://www.compass.com/m/0/a58bb2c9-7f36-4553-82cb-edc9406cb812/1500x1000.jpg", + "path": "static/external_cache/listings/1845716871705171257/gallery_4.jpg", + "sha256": "f84b1b3a0836d8ed6f17d80e940626595ebe0c919d8ab41eb71c555db059e20c", + "retrieved_at": "2026-09-06T05:05:56.987536+00:00" + }, + { + "listing_id": "1854157687172248057", + "index": 4, + "source_url": "https://www.compass.com/m/9a92dfa7f615b65180db42f2a61f6c57d90a099d_img_4_41eb9/640x480.jpg", + "path": "static/external_cache/listings/1854157687172248057/gallery_4.jpg", + "sha256": "c5ce005b890e8c359d80bd819bea88ba7564fef2a6e92bd215e6417360d630c8", + "retrieved_at": "2026-09-06T05:07:17.620595+00:00" + }, + { + "listing_id": "1866786123233328601", + "index": 4, + "source_url": "https://www.compass.com/m/b8afb0bd254f172f3bbcf06ec982a2cf7a865d4c_img_4_045bb/640x480.jpg", + "path": "static/external_cache/listings/1866786123233328601/gallery_4.jpg", + "sha256": "d67ebd80d72f21f851d71bbb6eb03aaf073d598aa1584b32b5dc1a3d13079ea8", + "retrieved_at": "2026-09-06T05:03:56.452350+00:00" + }, + { + "listing_id": "1868196854122259585", + "index": 4, + "source_url": "https://www.compass.com/m/9912bef6416650160962b201eb9cb738e37d1683_img_4_862d9/640x480.jpg", + "path": "static/external_cache/listings/1868196854122259585/gallery_4.jpg", + "sha256": "c806b4f34ab83c6e927faf1437016ab86546c7c00cf900311d3a1dddfacb52a3", + "retrieved_at": "2026-09-06T05:07:23.435692+00:00" + }, + { + "listing_id": "1871944718124827361", + "index": 4, + "source_url": "https://www.compass.com/m/18ef5d5e73921c1e4aa65117bd2ffee768ed7a36_img_4_67805/640x480.jpg", + "path": "static/external_cache/listings/1871944718124827361/gallery_4.jpg", + "sha256": "059cf92994116d77678c16ce2c7c0fadf5fa352daefc4ceff1468e9f3e81263b", + "retrieved_at": "2026-09-06T05:07:18.721287+00:00" + }, + { + "listing_id": "1876845444290959137", + "index": 4, + "source_url": "https://www.compass.com/m/ce3ad32a40f9550e954eb7e73c357a8fefbac947_img_4_3ee65/640x480.jpg", + "path": "static/external_cache/listings/1876845444290959137/gallery_4.jpg", + "sha256": "6fe2356351c18a2d5dc1c861b9a8ad98541b36dfac0cfcc15c057504d0867d53", + "retrieved_at": "2026-09-06T05:07:04.944508+00:00" + }, + { + "listing_id": "1883563231270707233", + "index": 4, + "source_url": "https://www.compass.com/m/0/9960a1dd-dcb7-4267-b3fa-4987c5d3362e/1498x1000.jpg", + "path": "static/external_cache/listings/1883563231270707233/gallery_4.jpg", + "sha256": "8fbe33eef28ff785b7c744c526b481eee1f219df95ffa5c5a926c9c7f8cf9cfe", + "retrieved_at": "2026-09-06T05:05:32.869145+00:00" + }, + { + "listing_id": "1884851573551904881", + "index": 4, + "source_url": "https://www.compass.com/m/0/a904c285-613e-418b-ace9-0d81b20be91d/1499x1000.jpg", + "path": "static/external_cache/listings/1884851573551904881/gallery_4.jpg", + "sha256": "13e950d26fc77e264e072878f15396f85c1b9f8ac54af79a2a47057b0d58954c", + "retrieved_at": "2026-09-06T05:07:43.085129+00:00" + }, + { + "listing_id": "1884965168297642673", + "index": 4, + "source_url": "https://www.compass.com/m/0/eb6b2773-a6fb-4486-be8d-0883f4802893/1500x1000.jpg", + "path": "static/external_cache/listings/1884965168297642673/gallery_4.jpg", + "sha256": "fa4e6d45d28d138095cc6ec2dfb2ee0f210a8e25ac24127438cc17daf4bc81dd", + "retrieved_at": "2026-09-06T05:07:39.843054+00:00" + }, + { + "listing_id": "1903065816685552009", + "index": 4, + "source_url": "https://www.compass.com/m/4dd595e48ae093d51564e7ec0df07a038c32c886_img_4_7c7dc/640x480.jpg", + "path": "static/external_cache/listings/1903065816685552009/gallery_4.jpg", + "sha256": "b5c48f6320510d53c82b058a72b58d5c2382db34b15d56970c8667e936e02090", + "retrieved_at": "2026-09-06T05:07:12.270502+00:00" + }, + { + "listing_id": "1916891292675064801", + "index": 4, + "source_url": "https://www.compass.com/m/2e423d25086a612a38d61b96d0ce57e60defa01c_img_4_307fd/640x480.jpg", + "path": "static/external_cache/listings/1916891292675064801/gallery_4.jpg", + "sha256": "b8183c78406d38639086fd3f8891a9041e15aab8234d4d97199dca7cdc897086", + "retrieved_at": "2026-09-06T05:07:20.178899+00:00" + }, + { + "listing_id": "1921893066529157649", + "index": 4, + "source_url": "https://www.compass.com/m/0/b955da7d-4e7e-4283-9aaf-626d7bc09faf/1500x1000.jpg", + "path": "static/external_cache/listings/1921893066529157649/gallery_4.jpg", + "sha256": "47beaae8678c16889529c7ca0a9143a3deb3c7f5b38d3cb48bb92972c2e90b90", + "retrieved_at": "2026-09-06T05:07:50.973015+00:00" + }, + { + "listing_id": "1922022213150257457", + "index": 4, + "source_url": "https://www.compass.com/m/9bf80dc36fd4192025a82853398a3821d1a408f3_img_4_6f135/640x480.jpg", + "path": "static/external_cache/listings/1922022213150257457/gallery_4.jpg", + "sha256": "86269d7aba9436b7a251ea51f80a5664b183cd5a77bf9c270aeba25d6ba29251", + "retrieved_at": "2026-09-06T05:07:11.728774+00:00" + }, + { + "listing_id": "1926269156959548849", + "index": 4, + "source_url": "https://www.compass.com/m/0/48eab814-f5ef-4150-ae53-219d06894602/1024x683.jpg", + "path": "static/external_cache/listings/1926269156959548849/gallery_4.jpg", + "sha256": "73fa20daa3026447a39253ef91cf305ddd0061006709cdaa42debbfcd7dd7a06", + "retrieved_at": "2026-09-06T05:05:45.962389+00:00" + }, + { + "listing_id": "1927103338444070521", + "index": 4, + "source_url": "https://www.compass.com/m/0b5c1b47ae78e277e7892deafa49e8810e594e8f_img_4_d0717/640x480.jpg", + "path": "static/external_cache/listings/1927103338444070521/gallery_4.jpg", + "sha256": "b782fc5aab741f87008573a6db0e6a882536654fc88de24371989e86990036a7", + "retrieved_at": "2026-09-06T05:07:20.989335+00:00" + }, + { + "listing_id": "1929546519660550161", + "index": 4, + "source_url": "https://www.compass.com/m/0/c0b34a0d-dadf-45b6-867e-54f844615ddd/1333x1000.jpg", + "path": "static/external_cache/listings/1929546519660550161/gallery_4.jpg", + "sha256": "b680258bad2e1c8d5072aee59532a20b232709e1db20cae1c4ac52e92fa125f3", + "retrieved_at": "2026-09-06T05:04:58.880624+00:00" + }, + { + "listing_id": "1931449999593831713", + "index": 4, + "source_url": "https://www.compass.com/m/5b3a81ff5d444ccb39f864ef036968e932999ee5_img_4_2e374/640x480.jpg", + "path": "static/external_cache/listings/1931449999593831713/gallery_4.jpg", + "sha256": "5be8260e75877dd3d06c9f5fef306dff780f72591496fb20e81c39e0ad980047", + "retrieved_at": "2026-09-06T05:07:16.532009+00:00" + }, + { + "listing_id": "1937764922298397657", + "index": 4, + "source_url": "https://www.compass.com/m/0/2f976706-e16c-4c96-ae4c-c3f5db67b72f/1024x683.jpg", + "path": "static/external_cache/listings/1937764922298397657/gallery_4.jpg", + "sha256": "05803df598a20bb53acb0278f0390a76b4bb10423936e41a3bda21a7d54338fe", + "retrieved_at": "2026-09-06T05:05:40.950530+00:00" + }, + { + "listing_id": "1940902821421093121", + "index": 4, + "source_url": "https://www.compass.com/m/eeac95d4c55380fe534a421b5ec3cbc1d3999548_img_4_b74d1/640x480.jpg", + "path": "static/external_cache/listings/1940902821421093121/gallery_4.jpg", + "sha256": "416b657d1874ed5845e329517cfe6209b6fac8e5d58a5c0816f2dbfbecd29b52", + "retrieved_at": "2026-09-06T05:07:22.015762+00:00" + }, + { + "listing_id": "1942957581307470537", + "index": 4, + "source_url": "https://www.compass.com/m/2509ff9bcdcfd87811a7c7cdfbd6159b1a0bfcb5_img_4_c9b77/640x480.jpg", + "path": "static/external_cache/listings/1942957581307470537/gallery_4.jpg", + "sha256": "329ffa15bdeb568ac06aad353ea71347604ad56eced18e5f71faf272efaba0ed", + "retrieved_at": "2026-09-06T05:05:18.686994+00:00" + }, + { + "listing_id": "1942978768674847953", + "index": 4, + "source_url": "https://www.compass.com/m/0/96b55875-fe94-4e9a-bda2-b8d3ca8583ce/1500x1000.jpg", + "path": "static/external_cache/listings/1942978768674847953/gallery_4.jpg", + "sha256": "710a849e947b9ceaf6cc8069d5e7e0d90af4d035e838a12e3efcc1825c676590", + "retrieved_at": "2026-09-06T05:07:35.085439+00:00" + }, + { + "listing_id": "1951565555154767201", + "index": 4, + "source_url": "https://www.compass.com/m/13b9974cde69e37fb09c288343c1acf43f9f3647_img_4_d3bb7/640x480.jpg", + "path": "static/external_cache/listings/1951565555154767201/gallery_4.jpg", + "sha256": "efeaee9e896d194ec56655b6ec3ecaedc0c7bedc485f8499335514c565cf9209", + "retrieved_at": "2026-09-06T05:07:19.655292+00:00" + }, + { + "listing_id": "1951672067306878497", + "index": 4, + "source_url": "https://www.compass.com/m/75761f8d822bfa882ded2b39bbcc126f1342a3fc_img_4_005aa/640x480.jpg", + "path": "static/external_cache/listings/1951672067306878497/gallery_4.jpg", + "sha256": "1acc4cc27aa9db13d0018b3ad5aafc9f3c280fb968439fa51122d467abdd8815", + "retrieved_at": "2026-09-06T05:07:16.223450+00:00" + }, + { + "listing_id": "1952597186755126769", + "index": 4, + "source_url": "https://www.compass.com/m/0/33173473-b6c8-402a-9000-67f66e699b91/750x1000.jpg", + "path": "static/external_cache/listings/1952597186755126769/gallery_4.jpg", + "sha256": "ecd95dbe61d46340885b39f37079f374bc2f48ec6e745f100298be0d2209f33b", + "retrieved_at": "2026-09-06T05:05:01.809531+00:00" + }, + { + "listing_id": "1953270100630407017", + "index": 4, + "source_url": "https://www.compass.com/m/0/6c005392-5942-4821-9bbb-845ba162bcfb/750x1000.jpg", + "path": "static/external_cache/listings/1953270100630407017/gallery_4.jpg", + "sha256": "17df5f1b343d4a9e0a9ef31ad9e7d2051fe09f4ba8d03567ab5440cb0ff584c8", + "retrieved_at": "2026-09-06T05:04:55.314811+00:00" + }, + { + "listing_id": "1956041055605751361", + "index": 4, + "source_url": "https://www.compass.com/m/0/8801bb8f-efe1-45b3-a600-0750bc701560/1499x1000.jpg", + "path": "static/external_cache/listings/1956041055605751361/gallery_4.jpg", + "sha256": "a7d3af08a215e730f93726380569a3e42ca656497ec591a3711251dcfd2ac189", + "retrieved_at": "2026-09-06T05:03:38.348961+00:00" + }, + { + "listing_id": "1961864764333808601", + "index": 4, + "source_url": "https://www.compass.com/m/a4e339f5b73c9198886b22b08e7d787221c5ec04_img_4_287be/640x480.jpg", + "path": "static/external_cache/listings/1961864764333808601/gallery_4.jpg", + "sha256": "ac9b5c8944b830141952b89a946c2b488996f5ffd0b3e0a463501014a5f9ed1f", + "retrieved_at": "2026-09-06T05:07:07.488882+00:00" + }, + { + "listing_id": "1966819555246556249", + "index": 4, + "source_url": "https://www.compass.com/m/885973f862da022b0a2601e5ac4b2c529a18217d_img_4_f5507/640x480.jpg", + "path": "static/external_cache/listings/1966819555246556249/gallery_4.jpg", + "sha256": "7f22c9454b2c2c209e76d102cf49e94b31c012a6e598c5916882155f0bd89bf0", + "retrieved_at": "2026-09-06T05:07:08.465424+00:00" + }, + { + "listing_id": "1967539321536067401", + "index": 4, + "source_url": "https://www.compass.com/m/0/157221fb-788f-42d5-a41d-73d76bef48ee/1500x844.jpg", + "path": "static/external_cache/listings/1967539321536067401/gallery_4.jpg", + "sha256": "0ee65fd82672fe2f9b889438a28d0149009f8d4117a67edee0c4215a9b901cbb", + "retrieved_at": "2026-09-06T05:04:17.577403+00:00" + }, + { + "listing_id": "1970580822273265497", + "index": 4, + "source_url": "https://www.compass.com/m/0/77f65838-f783-42c9-bfc2-eebc7d6ea5fb/1499x1000.jpg", + "path": "static/external_cache/listings/1970580822273265497/gallery_4.jpg", + "sha256": "8fd31aed6249df6033be5f0aab39de5b3a12aac56f1333cffb31bec67d057814", + "retrieved_at": "2026-09-06T05:03:50.644028+00:00" + }, + { + "listing_id": "1971667828977703721", + "index": 4, + "source_url": "https://www.compass.com/m/52b74bd0cde8a849dc3559bee9b3a95bfe3823d8_img_4_61fb3/640x480.jpg", + "path": "static/external_cache/listings/1971667828977703721/gallery_4.jpg", + "sha256": "d3f9529c96281fddf2a33bdb483a1a9f931085f693d18530c63dcd7a441fb0c8", + "retrieved_at": "2026-09-06T05:05:23.807031+00:00" + }, + { + "listing_id": "1971956027583144857", + "index": 4, + "source_url": "https://www.compass.com/m/0/4445e77d-7c3d-4b46-b93a-23d1e9d35211/1499x1000.jpg", + "path": "static/external_cache/listings/1971956027583144857/gallery_4.jpg", + "sha256": "ab7635e2f0ab8de493ddeb437535e1aa4847f50f1e68c9af7551ce0033777986", + "retrieved_at": "2026-09-06T05:04:20.514656+00:00" + }, + { + "listing_id": "1972541164406932321", + "index": 4, + "source_url": "https://www.compass.com/m/82ed3c2cfce9567ae31c11dd642ee8081d402627_img_4_44323/640x480.jpg", + "path": "static/external_cache/listings/1972541164406932321/gallery_4.jpg", + "sha256": "de87a81681da5ecdc3fdf2f46e2a96dc1ffe91154ad75155847f82b8966b46c8", + "retrieved_at": "2026-09-06T05:06:11.152269+00:00" + }, + { + "listing_id": "1977208754577401065", + "index": 4, + "source_url": "https://www.compass.com/m/0/24baf9e8-8fc3-44ea-ac43-2b153ba9f691/1500x844.jpg", + "path": "static/external_cache/listings/1977208754577401065/gallery_4.jpg", + "sha256": "9b3b32eb71700ffb3261cd7a6fa1a4c9336fbdab30cc5d5e5d29b95ecc29214d", + "retrieved_at": "2026-09-06T05:06:02.708147+00:00" + }, + { + "listing_id": "1977215870457428705", + "index": 4, + "source_url": "https://www.compass.com/m/0/6395b55a-1474-49a4-888b-e01bbb4e92fa/1500x844.jpg", + "path": "static/external_cache/listings/1977215870457428705/gallery_4.jpg", + "sha256": "c67f3d0620c3fc362ff0933eea7223f7aa78255f8082cdbb358f13bd28eebe2f", + "retrieved_at": "2026-09-06T05:06:08.961652+00:00" + }, + { + "listing_id": "1977766518458693761", + "index": 4, + "source_url": "https://www.compass.com/m/f0a11e9526a56f1515ddaa9d07ae3842d2afec33_img_4_d3f4d/640x480.jpg", + "path": "static/external_cache/listings/1977766518458693761/gallery_4.jpg", + "sha256": "29e30e6e93cb52aca8f587cdc548c5de31415e63a7e5c594a9a00d0daf02e911", + "retrieved_at": "2026-09-06T05:07:23.007957+00:00" + }, + { + "listing_id": "1977806263674661849", + "index": 4, + "source_url": "https://www.compass.com/m/0b85604bb64dc07d1abb254fa39e058b02f0180a_img_4_d6de7/640x480.jpg", + "path": "static/external_cache/listings/1977806263674661849/gallery_4.jpg", + "sha256": "8f91a0c3224c8a6eb4e6cde457a3eb60bd76efeaceac5a0ad3b1e367bf1c830e", + "retrieved_at": "2026-09-06T05:08:30.757049+00:00" + }, + { + "listing_id": "1981397852464551841", + "index": 4, + "source_url": "https://www.compass.com/m/08c62c73103853513a3b02476005869f0231f146_img_4_16510/640x480.jpg", + "path": "static/external_cache/listings/1981397852464551841/gallery_4.jpg", + "sha256": "1e2a08289db27af8c9a36b0fdabad7ff7dc966c8f11ee9b346f5dbc6dbfa9e6b", + "retrieved_at": "2026-09-06T05:07:07.465110+00:00" + }, + { + "listing_id": "1987285135257096177", + "index": 4, + "source_url": "https://www.compass.com/m/91514cb72a23e257b858812e57b7c8b1f8285f97_img_4_1c2f7/640x480.jpg", + "path": "static/external_cache/listings/1987285135257096177/gallery_4.jpg", + "sha256": "e55a97aa4236ad393b6decd2af6a4ae4b85a36a1d9d6d3519bb08f8daac2e8b1", + "retrieved_at": "2026-09-06T05:07:14.083574+00:00" + }, + { + "listing_id": "1988681691840304113", + "index": 4, + "source_url": "https://www.compass.com/m/7499be4e2e9790c90c9b948df00f4c37c45f1527_img_4_a3ab1/640x480.jpg", + "path": "static/external_cache/listings/1988681691840304113/gallery_4.jpg", + "sha256": "649a7817187cf2678d664cd6a83e402fae76ed5fbe8e2231edee78e885646fe9", + "retrieved_at": "2026-09-06T05:07:18.636296+00:00" + }, + { + "listing_id": "1991494172450990729", + "index": 4, + "source_url": "https://www.compass.com/m/5bbacb68a49828780a4e96cbae4f12e4e1ae6621_img_4_fdd0d/640x480.jpg", + "path": "static/external_cache/listings/1991494172450990729/gallery_4.jpg", + "sha256": "32862b2d48ea5ff790ea5e9a2471ad1b7b01bda2a235f5a1144cf7db540fc4d8", + "retrieved_at": "2026-09-06T05:07:24.126658+00:00" + }, + { + "listing_id": "2000153565416491801", + "index": 4, + "source_url": "https://www.compass.com/m/0/cd4de208-bb71-4a64-b6f7-30121701ed35/1150x768.jpg", + "path": "static/external_cache/listings/2000153565416491801/gallery_4.jpg", + "sha256": "8a31514a1618a07582e501b803e03da3520226d14d36d7453ce6c4f6bd01135c", + "retrieved_at": "2026-09-06T05:06:06.715429+00:00" + }, + { + "listing_id": "2001655522861527849", + "index": 4, + "source_url": "https://www.compass.com/m/1b77549a221ba2a23712974b0b8b972f721301e8_img_4_73a36/640x480.jpg", + "path": "static/external_cache/listings/2001655522861527849/gallery_4.jpg", + "sha256": "16f2c336b6873f5aa61d545dcc21530a636c7b4f3dd8bab950dd569a49a5aff9", + "retrieved_at": "2026-09-06T05:07:15.495498+00:00" + }, + { + "listing_id": "2004098274682072873", + "index": 4, + "source_url": "https://www.compass.com/m/dd59a407ca2840154f30dddf71caf65debafd0ea_img_4_0c757/640x480.jpg", + "path": "static/external_cache/listings/2004098274682072873/gallery_4.jpg", + "sha256": "2265fee1b083cef03b0567cf9515f11414e2da6f2707badf5ed86e7e53cc17dc", + "retrieved_at": "2026-09-06T05:07:04.150944+00:00" + }, + { + "listing_id": "2008346842162298705", + "index": 4, + "source_url": "https://www.compass.com/m/a2f76ecdd86c5883499d7aeae098b2f60fc94d2b_img_4_cd1fb/640x480.jpg", + "path": "static/external_cache/listings/2008346842162298705/gallery_4.jpg", + "sha256": "2782d2bcd2a0c86028fb70d5653355d5f2ce3bfd83b14beedbd12a193212f446", + "retrieved_at": "2026-09-06T05:07:25.456564+00:00" + }, + { + "listing_id": "2011904179804361681", + "index": 4, + "source_url": "https://www.compass.com/m/d47b84352e53368ec622bec5362a8935406b1d6d_img_4_33a29/640x480.jpg", + "path": "static/external_cache/listings/2011904179804361681/gallery_4.jpg", + "sha256": "0c5247f10fdfa87aedcc7d30de536fe67409f8659ab34520c92bd1133c79e9bf", + "retrieved_at": "2026-09-06T05:04:43.627395+00:00" + }, + { + "listing_id": "2014657704352455905", + "index": 4, + "source_url": "https://www.compass.com/m/0f45ba8738169750f2baa9411aefe68f32789ecb_img_4_1c2f7/640x480.jpg", + "path": "static/external_cache/listings/2014657704352455905/gallery_4.jpg", + "sha256": "e55a97aa4236ad393b6decd2af6a4ae4b85a36a1d9d6d3519bb08f8daac2e8b1", + "retrieved_at": "2026-09-06T05:07:13.590530+00:00" + }, + { + "listing_id": "2023800878451375689", + "index": 4, + "source_url": "https://www.compass.com/m/eac0f3f4c58aef3b78dc8d0c315373ea33230c15_img_4_03f1b/640x480.jpg", + "path": "static/external_cache/listings/2023800878451375689/gallery_4.jpg", + "sha256": "eb12bc44059d431aa27e434877ec147173cfd66988053230c4793f6cb74590b5", + "retrieved_at": "2026-09-06T05:05:19.372043+00:00" + }, + { + "listing_id": "2024239871727304937", + "index": 4, + "source_url": "https://www.compass.com/m/36039fd72d6e1bfe016c653f894f282e20e06e9f_img_4_d3037/640x480.jpg", + "path": "static/external_cache/listings/2024239871727304937/gallery_4.jpg", + "sha256": "96285f0395a811b44f4fb70f7d4984c9a1bae878f20d12ff13a95e8e4a138186", + "retrieved_at": "2026-09-06T05:05:03.512434+00:00" + }, + { + "listing_id": "2026979539362870169", + "index": 4, + "source_url": "https://www.compass.com/m/2aef6628b7c784c7a278a6a46839a82d407402a8_img_4_1c2f7/640x480.jpg", + "path": "static/external_cache/listings/2026979539362870169/gallery_4.jpg", + "sha256": "e55a97aa4236ad393b6decd2af6a4ae4b85a36a1d9d6d3519bb08f8daac2e8b1", + "retrieved_at": "2026-09-06T05:07:06.196025+00:00" + }, + { + "listing_id": "2029213104600093465", + "index": 4, + "source_url": "https://www.compass.com/m/9df9e048c80e0f07ecd9b8c5ce867e31640fad28_img_4_5583b/640x480.jpg", + "path": "static/external_cache/listings/2029213104600093465/gallery_4.jpg", + "sha256": "5e0baf995f341ba47a328a755cd21eeb2e3e611312f721144a63c32f93f63b25", + "retrieved_at": "2026-09-06T05:07:28.040942+00:00" + }, + { + "listing_id": "2029252096787926185", + "index": 4, + "source_url": "https://www.compass.com/m/d02a003d275320c8e5f5195fef6d54c20d203b9d_img_4_73a36/640x480.jpg", + "path": "static/external_cache/listings/2029252096787926185/gallery_4.jpg", + "sha256": "16f2c336b6873f5aa61d545dcc21530a636c7b4f3dd8bab950dd569a49a5aff9", + "retrieved_at": "2026-09-06T05:07:14.291114+00:00" + }, + { + "listing_id": "2029481186232648585", + "index": 4, + "source_url": "https://www.compass.com/m/d2a0f575a61cb6c52afa5c52d29487b97b855f00_img_4_1f15b/640x480.jpg", + "path": "static/external_cache/listings/2029481186232648585/gallery_4.jpg", + "sha256": "af12ba89f285806f2782cb7599e7adb48eb79bdf0ad4be6c25505b4a2be79624", + "retrieved_at": "2026-09-06T05:05:04.385196+00:00" + }, + { + "listing_id": "2031338722812374913", + "index": 4, + "source_url": "https://www.compass.com/m/63e8469f044c24fc2cd6cfecdc096844b47ed912_img_4_c41ee/640x480.jpg", + "path": "static/external_cache/listings/2031338722812374913/gallery_4.jpg", + "sha256": "6ad449295f47ec4d5a12bd4565753c220feb7f4f592e1a081ef8888193da3a2e", + "retrieved_at": "2026-09-06T05:07:29.321539+00:00" + }, + { + "listing_id": "2031484899441120841", + "index": 4, + "source_url": "https://www.compass.com/m/0/df2c435f-6b7a-4f4f-8aa1-1c4e7c1c3d51/1333x1000.jpg", + "path": "static/external_cache/listings/2031484899441120841/gallery_4.jpg", + "sha256": "8633a781a17a4c8eee4c4437d06e0b161f1731e8c3bef8d2b08569664f110683", + "retrieved_at": "2026-09-06T05:05:46.887569+00:00" + }, + { + "listing_id": "2033615864404325137", + "index": 4, + "source_url": "https://www.compass.com/m/bd24496d663abdd7d0eedf7ced2771b47e3b2087_img_4_c42f1/640x480.jpg", + "path": "static/external_cache/listings/2033615864404325137/gallery_4.jpg", + "sha256": "a9f14e37ab8453dc96740d2c7b61f7ac4b9535f2c89abb8e3e97b0e90b05d8e6", + "retrieved_at": "2026-09-06T05:05:12.272296+00:00" + }, + { + "listing_id": "2034361121030986649", + "index": 4, + "source_url": "https://www.compass.com/m/0/f85b4627-58cb-48e1-bc90-c178c63c3778/1499x1000.jpg", + "path": "static/external_cache/listings/2034361121030986649/gallery_4.jpg", + "sha256": "75e3e02290f7b4c714c83cf3f48b96fa8ee926e8ef1b8957bd39b6779727e55c", + "retrieved_at": "2026-09-06T05:07:50.477641+00:00" + }, + { + "listing_id": "2038763065666255609", + "index": 4, + "source_url": "https://www.compass.com/m/8770ea0610c75f0e42cef29c9d33b85e9492ad20_img_4_7d0f1/640x480.jpg", + "path": "static/external_cache/listings/2038763065666255609/gallery_4.jpg", + "sha256": "cd9fc3cd7ec5d627e71337ba57263f7b1c3fd3ee9cf854aee1b8c2bba217d155", + "retrieved_at": "2026-09-06T05:04:53.720732+00:00" + }, + { + "listing_id": "2039739777685968689", + "index": 4, + "source_url": "https://www.compass.com/m/1b250de6fa4a41883537db24f114f1921edef291_img_4_0cbb9/640x480.jpg", + "path": "static/external_cache/listings/2039739777685968689/gallery_4.jpg", + "sha256": "0d0ac7d2917247e490723df3ea677ec4eda61970d8a446706e3413936f33f36b", + "retrieved_at": "2026-09-06T05:07:09.721179+00:00" + }, + { + "listing_id": "2043839811034030889", + "index": 4, + "source_url": "https://www.compass.com/m/0/0045cf5d-ef13-47d8-b021-a4f2ad58508b/1024x683.jpg", + "path": "static/external_cache/listings/2043839811034030889/gallery_4.jpg", + "sha256": "68f410a87addc28238b66d0a09be1d0854cf18fb1923e05742b07a71d59f7d88", + "retrieved_at": "2026-09-06T05:05:49.262404+00:00" + }, + { + "listing_id": "2044075882472469257", + "index": 4, + "source_url": "https://www.compass.com/m/52cef48af43c225c0a71f686ac4d9e5ce055746c_img_4_05009/640x480.jpg", + "path": "static/external_cache/listings/2044075882472469257/gallery_4.jpg", + "sha256": "6b85001bffc71851ed25ee922e820390bb4218a5204bba6ceadb611461a1c697", + "retrieved_at": "2026-09-06T05:04:48.933086+00:00" + }, + { + "listing_id": "2045193238054391729", + "index": 4, + "source_url": "https://www.compass.com/m/9e261466dedc2e8423045d5d6f56efb6a90213f7_img_4_01bff/640x480.jpg", + "path": "static/external_cache/listings/2045193238054391729/gallery_4.jpg", + "sha256": "78b26a8d7e8a3a3d73bc9ad5ce0f8b449c02e9bf69baa58c561f30797dcf8c9d", + "retrieved_at": "2026-09-06T05:05:21.086562+00:00" + }, + { + "listing_id": "2045193330521720449", + "index": 4, + "source_url": "https://www.compass.com/m/60f967c0e3596a977b26187e2fbb555891eca011_img_4_01bff/640x480.jpg", + "path": "static/external_cache/listings/2045193330521720449/gallery_4.jpg", + "sha256": "78b26a8d7e8a3a3d73bc9ad5ce0f8b449c02e9bf69baa58c561f30797dcf8c9d", + "retrieved_at": "2026-09-06T05:05:19.443935+00:00" + }, + { + "listing_id": "2045193417050253617", + "index": 4, + "source_url": "https://www.compass.com/m/53496590fa2c814fe3950d7ac646762bda5f7edc_img_4_01bff/640x480.jpg", + "path": "static/external_cache/listings/2045193417050253617/gallery_4.jpg", + "sha256": "78b26a8d7e8a3a3d73bc9ad5ce0f8b449c02e9bf69baa58c561f30797dcf8c9d", + "retrieved_at": "2026-09-06T05:05:17.116388+00:00" + }, + { + "listing_id": "2048880602039951841", + "index": 4, + "source_url": "https://www.compass.com/m/abefdec656476235bf112536fe0da1cb8add25f4_img_4_191d0/640x480.jpg", + "path": "static/external_cache/listings/2048880602039951841/gallery_4.jpg", + "sha256": "c28a8c578609925cf6d773b4add452302fee8ee71e845f54cbf3614066673322", + "retrieved_at": "2026-09-06T05:06:44.153196+00:00" + }, + { + "listing_id": "2049549024444691825", + "index": 4, + "source_url": "https://www.compass.com/m/4066b993e014231244ccdc359f52139b7ae8bfd2_img_4_c6b6b/640x480.jpg", + "path": "static/external_cache/listings/2049549024444691825/gallery_4.jpg", + "sha256": "03aad66d146e64d876696808417f5ecde365eebeab8a5027121df8d2e54624b4", + "retrieved_at": "2026-09-06T05:05:57.430909+00:00" + }, + { + "listing_id": "2049572693447448697", + "index": 4, + "source_url": "https://www.compass.com/m/4becb7956c413540d512a01c419047ba39a1dc4a_img_4_db45b/640x480.jpg", + "path": "static/external_cache/listings/2049572693447448697/gallery_4.jpg", + "sha256": "71d3df920e59280a5ca2cb52be50adff046b3c1cbc5864a61ab3838f944fff34", + "retrieved_at": "2026-09-06T05:07:15.877470+00:00" + }, + { + "listing_id": "2049586279368920025", + "index": 4, + "source_url": "https://www.compass.com/m/069894bddb637cebc957ae9f2931f4725ab75d13_img_4_a57f8/640x480.jpg", + "path": "static/external_cache/listings/2049586279368920025/gallery_4.jpg", + "sha256": "5a9607f33171ed416df6cfb3d61ec5934cf2d9b37697008c8bbd8cf879fcf8a3", + "retrieved_at": "2026-09-06T05:04:59.635271+00:00" + }, + { + "listing_id": "2049595231070769025", + "index": 4, + "source_url": "https://www.compass.com/m/8d054bb01e35ea7a2bd215269436192aa6e32c2b_img_4_60810/640x480.jpg", + "path": "static/external_cache/listings/2049595231070769025/gallery_4.jpg", + "sha256": "15ee2ed47a1b337825c3822937f4988ab960fac7c62f4f1bd642694e0dd4720d", + "retrieved_at": "2026-09-06T05:07:09.079910+00:00" + }, + { + "listing_id": "2050412430891064289", + "index": 4, + "source_url": "https://www.compass.com/m/dc7a478642003bf236ed11ec55918595db4f2fa8_img_4_cc060/640x480.jpg", + "path": "static/external_cache/listings/2050412430891064289/gallery_4.jpg", + "sha256": "1c4e9eaa98cc18ab4715e4e01621e6cc3c3bcad8f0556376bbe20efa1c89c2f2", + "retrieved_at": "2026-09-06T05:04:46.932957+00:00" + }, + { + "listing_id": "2052487366618989937", + "index": 4, + "source_url": "https://www.compass.com/m/c3f4f6a5aba8cf7016f3558f5014486cb9ba2f60_img_4_0965c/640x480.jpg", + "path": "static/external_cache/listings/2052487366618989937/gallery_4.jpg", + "sha256": "051033296c49df16c95c80d5ed717fde1846be8c276f694f7a10774d948020ba", + "retrieved_at": "2026-09-06T05:05:58.795586+00:00" + }, + { + "listing_id": "2053518968379535417", + "index": 4, + "source_url": "https://www.compass.com/m/079b6bcde4d9ff88428bde5b7ba8403e66814439_img_4_f78f3/640x480.jpg", + "path": "static/external_cache/listings/2053518968379535417/gallery_4.jpg", + "sha256": "b81311f218872c5d4b44ba2b132a1d66d6a30d504aa8beb64140dec71a338513", + "retrieved_at": "2026-09-06T05:04:51.184762+00:00" + }, + { + "listing_id": "2053924700174731745", + "index": 4, + "source_url": "https://www.compass.com/m/0/42a74dc6-3ab4-47d0-9255-72d859ab5f9b/1500x1000.jpg", + "path": "static/external_cache/listings/2053924700174731745/gallery_4.jpg", + "sha256": "9278894347ef3cdd9cae5ef82554d520aeacdda0432fa535b8fdf03abcfc5c6b", + "retrieved_at": "2026-09-06T05:04:16.154017+00:00" + }, + { + "listing_id": "2053924822858538897", + "index": 4, + "source_url": "https://www.compass.com/m/0/e47c76a7-145e-4451-a752-ad7490328336/1500x1000.jpg", + "path": "static/external_cache/listings/2053924822858538897/gallery_4.jpg", + "sha256": "f352e5940b851aaeef333b20a147af39677190496105b12620ec2d2634dd3a4e", + "retrieved_at": "2026-09-06T05:04:28.783933+00:00" + }, + { + "listing_id": "2053942360426125497", + "index": 4, + "source_url": "https://www.compass.com/m/dce5453adb1e77bc9d5e2665fd9be18c42b866a9_img_4_05b8f/640x480.jpg", + "path": "static/external_cache/listings/2053942360426125497/gallery_4.jpg", + "sha256": "8e629a5737c60e49cc5e918816bcc29d1ad981790c3d94bedc66da233be1833f", + "retrieved_at": "2026-09-06T05:05:21.491612+00:00" + }, + { + "listing_id": "2054481027808733073", + "index": 4, + "source_url": "https://www.compass.com/m/2bcd389f2da87f89a52726e029fdb4dd5d1a0079_img_4_09e9e/640x480.jpg", + "path": "static/external_cache/listings/2054481027808733073/gallery_4.jpg", + "sha256": "73aceaad19a27df405d2ca511323c7a2a2608e3286a65de1641edcefb984475c", + "retrieved_at": "2026-09-06T05:08:32.770632+00:00" + }, + { + "listing_id": "2057807162143768129", + "index": 4, + "source_url": "https://www.compass.com/m/53691da1d817df938c9005416a821dcd704d1afb_img_4_48282/640x480.jpg", + "path": "static/external_cache/listings/2057807162143768129/gallery_4.jpg", + "sha256": "1e8f79b57c1e2880c4d488814cc6a9453621f04243c6a4824970e7ee363a8814", + "retrieved_at": "2026-09-06T05:04:49.102099+00:00" + }, + { + "listing_id": "2058964874974707001", + "index": 4, + "source_url": "https://www.compass.com/m/2a668c99d9ac9a6f2e5e5a8ad93585efb8673266_img_4_70f34/640x480.jpg", + "path": "static/external_cache/listings/2058964874974707001/gallery_4.jpg", + "sha256": "64a6223e4153216e99e8fdede3c293ed3bcf949b5f8ab67cc657d92cdaad3fb2", + "retrieved_at": "2026-09-06T05:05:24.971918+00:00" + }, + { + "listing_id": "2059650484278121113", + "index": 4, + "source_url": "https://www.compass.com/m/0235da41df8a2a4b0256ae1af8d96caa626ab288_img_4_899c0/640x480.jpg", + "path": "static/external_cache/listings/2059650484278121113/gallery_4.jpg", + "sha256": "9fc10cf171bc33b503a90b150ded55f68c672d915f585ba5396a35be67de3dc7", + "retrieved_at": "2026-09-06T05:05:06.925708+00:00" + }, + { + "listing_id": "2059709164034176345", + "index": 4, + "source_url": "https://www.compass.com/m/0/ec363a91-6a10-467c-9e74-ce464dab722a/1200x799.jpg", + "path": "static/external_cache/listings/2059709164034176345/gallery_4.jpg", + "sha256": "c7fbced6b05c3248784994818f4c1f8043981c310c8618f50efa47d3e60046af", + "retrieved_at": "2026-09-06T05:06:00.898683+00:00" + }, + { + "listing_id": "2062482365143339697", + "index": 4, + "source_url": "https://www.compass.com/m/9e0f0d6ccea4397e1b1dfde19de1037098f52110_img_4_69987/640x480.jpg", + "path": "static/external_cache/listings/2062482365143339697/gallery_4.jpg", + "sha256": "bc11650eaaa227cb796eba16dfb54fc27a8fa3fae30d8a07eab1d087459e6d1a", + "retrieved_at": "2026-09-06T05:07:10.727581+00:00" + }, + { + "listing_id": "2062615686154056553", + "index": 4, + "source_url": "https://www.compass.com/m/feaf41cc920d09b4a744173af75562aaec8e4713_img_4_05b8f/640x480.jpg", + "path": "static/external_cache/listings/2062615686154056553/gallery_4.jpg", + "sha256": "8e629a5737c60e49cc5e918816bcc29d1ad981790c3d94bedc66da233be1833f", + "retrieved_at": "2026-09-06T05:05:22.108828+00:00" + }, + { + "listing_id": "2063262020096201761", + "index": 4, + "source_url": "https://www.compass.com/m/2acac88b9b04791e5a3eaf3c7201cf55f493900d_img_4_f5fe3/640x480.jpg", + "path": "static/external_cache/listings/2063262020096201761/gallery_4.jpg", + "sha256": "a6fb295f2089bfbf4100ef32869957c9ae0e428bda33fdde007c587c25117cd3", + "retrieved_at": "2026-09-06T05:03:54.533367+00:00" + }, + { + "listing_id": "2063344899282744289", + "index": 4, + "source_url": "https://www.compass.com/m/0/9d3f23a3-0ac4-496a-b089-6760022082c2/771x1000.jpg", + "path": "static/external_cache/listings/2063344899282744289/gallery_4.jpg", + "sha256": "585e25aacb19d6c2816fa32317d0f3cbbeb2c67c1dd7361d44c117f427d2138d", + "retrieved_at": "2026-09-06T05:04:15.239676+00:00" + }, + { + "listing_id": "2063346786165814257", + "index": 4, + "source_url": "https://www.compass.com/m/0/541f9a15-4b44-4f9d-947d-623a59e402d7/1479x1000.jpg", + "path": "static/external_cache/listings/2063346786165814257/gallery_4.jpg", + "sha256": "fc94f37332a8add727dfabc7a74295492ed1bfd467480695fb64a1468397ca44", + "retrieved_at": "2026-09-06T05:05:30.866304+00:00" + }, + { + "listing_id": "2063568587228404361", + "index": 4, + "source_url": "https://www.compass.com/m/0/d1a46453-5a75-4ffa-998d-b9bec760d2ba/1500x1000.jpg", + "path": "static/external_cache/listings/2063568587228404361/gallery_4.jpg", + "sha256": "11412ab463869dd453e27869f1eafac62ef85cce426c7ae03be2f3c418e4e0b0", + "retrieved_at": "2026-09-06T05:05:05.764889+00:00" + }, + { + "listing_id": "2064114763598202257", + "index": 4, + "source_url": "https://www.compass.com/m/e9fd9e56620052b2170a0cf53aad88eb6c8c8ffa_img_4_22d6b/640x480.jpg", + "path": "static/external_cache/listings/2064114763598202257/gallery_4.jpg", + "sha256": "b9db0b7715ddf8e757a9c32ad2a80bb3ab0a4a3884c0d1dc2d6d32fdb289cff8", + "retrieved_at": "2026-09-06T05:05:09.355890+00:00" + }, + { + "listing_id": "2064142478233865425", + "index": 4, + "source_url": "https://www.compass.com/m/0/efe6dc48-5e9c-42f5-b290-bc51a01c78b0/1500x1000.jpg", + "path": "static/external_cache/listings/2064142478233865425/gallery_4.jpg", + "sha256": "718ac307a177b2519e835a420f546141d9064611f925fb4b30096407e29c0bbd", + "retrieved_at": "2026-09-06T05:05:02.209882+00:00" + }, + { + "listing_id": "2065403559912611993", + "index": 4, + "source_url": "https://www.compass.com/m/0/c45ab728-5388-4d6b-9fdd-4d708391b0d3/640x427.jpg", + "path": "static/external_cache/listings/2065403559912611993/gallery_4.jpg", + "sha256": "4ece77afb8d839c8876ee82bca6c8f7dac45a03ebfcee44cde50625844af6f21", + "retrieved_at": "2026-09-06T05:05:33.848740+00:00" + }, + { + "listing_id": "2067619722461442889", + "index": 4, + "source_url": "https://www.compass.com/m/0/31fbed7a-8e36-486e-9e40-b367f81adf2f/1500x1000.jpg", + "path": "static/external_cache/listings/2067619722461442889/gallery_4.jpg", + "sha256": "66ad489f29f34bfe3d5de4246b90cec8dc1a55ba86c8ad9e9bfc4b3d9758a893", + "retrieved_at": "2026-09-06T05:07:41.028622+00:00" + }, + { + "listing_id": "2067619857694195537", + "index": 4, + "source_url": "https://www.compass.com/m/0/ba6eca2b-a05b-4fb9-be7d-878eb032be24/1500x844.jpg", + "path": "static/external_cache/listings/2067619857694195537/gallery_4.jpg", + "sha256": "0d9cb3342bb27d32a96aef656cf43bfdcd4955f8ccc068e48da1964ca2bf29c5", + "retrieved_at": "2026-09-06T05:06:51.391856+00:00" + }, + { + "listing_id": "2069828470462476721", + "index": 4, + "source_url": "https://www.compass.com/m/0/f4be369c-d595-45c8-b9b3-da19bbced213/1333x1000.jpg", + "path": "static/external_cache/listings/2069828470462476721/gallery_4.jpg", + "sha256": "7d2b68747806dd8d61609ba168c9df21ecf7a80d4a3e82575250fda669c13a0d", + "retrieved_at": "2026-09-06T05:04:41.015167+00:00" + }, + { + "listing_id": "2070360234129868217", + "index": 4, + "source_url": "https://www.compass.com/m/0/621cb7ae-4f0c-4c31-8017-5e05617f576b/1200x800.jpg", + "path": "static/external_cache/listings/2070360234129868217/gallery_4.jpg", + "sha256": "ede1e76ba19fdd4a7fa32d3060671f000146a10b57c5ff5f3ef4bc301de9368b", + "retrieved_at": "2026-09-06T05:07:43.235009+00:00" + }, + { + "listing_id": "2070485019447303009", + "index": 4, + "source_url": "https://www.compass.com/m/0/5189ee88-8a32-47f2-b38a-09d28f3a457c/1024x683.jpg", + "path": "static/external_cache/listings/2070485019447303009/gallery_4.jpg", + "sha256": "d687e8325dee2a7ebf102466bc2b8386fecfb816ed21ffc258315a3322a4accd", + "retrieved_at": "2026-09-06T05:05:47.942027+00:00" + }, + { + "listing_id": "2070512157299002433", + "index": 4, + "source_url": "https://www.compass.com/m/0/9e5c6f6c-96cb-47f9-a2ae-29abdd3cd529/1500x1000.jpg", + "path": "static/external_cache/listings/2070512157299002433/gallery_4.jpg", + "sha256": "700830cab7423380afad6ff75ccaf2571adab1cb6acda37a7d30fe3e9fab8707", + "retrieved_at": "2026-09-06T05:03:58.009221+00:00" + }, + { + "listing_id": "2070611723767375329", + "index": 4, + "source_url": "https://www.compass.com/m/0/240a58d6-be32-473f-adb2-b0a67b86aa8c/1500x1000.jpg", + "path": "static/external_cache/listings/2070611723767375329/gallery_4.jpg", + "sha256": "85dc78e690541d40cb4c9859c6f215d3b215c144b2d97a38f03e2614c89dfc79", + "retrieved_at": "2026-09-06T05:07:37.586206+00:00" + }, + { + "listing_id": "2071157297801650385", + "index": 4, + "source_url": "https://www.compass.com/m/0/803f8f75-3942-4160-b7f4-e07ec21a8984/1500x1000.jpg", + "path": "static/external_cache/listings/2071157297801650385/gallery_4.jpg", + "sha256": "86becd447f5d15760ba979a1e3d47cb18bc9956e5d5a94bdf049587a7fcf0f9c", + "retrieved_at": "2026-09-06T05:05:28.382732+00:00" + }, + { + "listing_id": "2072627176681418745", + "index": 4, + "source_url": "https://www.compass.com/m/0/e080fd57-0029-4e96-bfa6-2676fff160a7/1333x1000.jpg", + "path": "static/external_cache/listings/2072627176681418745/gallery_4.jpg", + "sha256": "723fe482aa85cdf24cee0a8dbe9ce9ca93f26fa03770bf12e1ef3244a23c7d69", + "retrieved_at": "2026-09-06T05:04:34.835106+00:00" + }, + { + "listing_id": "2074056462307099409", + "index": 4, + "source_url": "https://www.compass.com/m/0/819594d2-3eb1-4d42-adc1-069741435dc4/1500x998.jpg", + "path": "static/external_cache/listings/2074056462307099409/gallery_4.jpg", + "sha256": "14074889b02f7337b5a10e7bab7dd61edcb4f97e225a2423f6a1745b777f2f11", + "retrieved_at": "2026-09-06T05:05:27.291252+00:00" + }, + { + "listing_id": "2074149882971178969", + "index": 4, + "source_url": "https://www.compass.com/m/0/e74dc60b-d746-44bf-9285-4718b405ed7e/1500x1000.jpg", + "path": "static/external_cache/listings/2074149882971178969/gallery_4.jpg", + "sha256": "e33da3d2efa281efd9fc5566286b176a662eb8998ce3c493e5efee04302a5092", + "retrieved_at": "2026-09-06T05:06:10.110066+00:00" + }, + { + "listing_id": "2074277135160161193", + "index": 4, + "source_url": "https://www.compass.com/m/0/a3c0f38f-6fc8-4500-9a13-4200edb2035a/1334x1000.jpg", + "path": "static/external_cache/listings/2074277135160161193/gallery_4.jpg", + "sha256": "e6791fad638d8b7a86f1d3a055dba894da698be28334a49fd1db5145652b39a3", + "retrieved_at": "2026-09-06T05:07:51.829093+00:00" + }, + { + "listing_id": "2074455926394275209", + "index": 4, + "source_url": "https://www.compass.com/m/0a873618fd16a44931e3f7d9d0e10cfa2d167c71_img_4_a4f7d/640x480.jpg", + "path": "static/external_cache/listings/2074455926394275209/gallery_4.jpg", + "sha256": "198403665a231ac8b6410602b1db3c133b2ab4de759d19d0069a3b32749b1d28", + "retrieved_at": "2026-09-06T05:05:01.119585+00:00" + }, + { + "listing_id": "2074865658539990729", + "index": 4, + "source_url": "https://www.compass.com/m/c12d0c096579836714caa3991f5153eb26bae602_img_4_2646c/640x480.jpg", + "path": "static/external_cache/listings/2074865658539990729/gallery_4.jpg", + "sha256": "4694eafe1f4fa1b98756169e040d6710beca79dc0f18452d6c1ef20df081286d", + "retrieved_at": "2026-09-06T05:07:04.795475+00:00" + }, + { + "listing_id": "2075608533951220497", + "index": 4, + "source_url": "https://www.compass.com/m/0/2d452284-62a6-4b9f-b570-eabf91ccdc12/1500x1000.jpg", + "path": "static/external_cache/listings/2075608533951220497/gallery_4.jpg", + "sha256": "885ac7390961b0d1ac93e75ff1bfee3448a53aad450f4a44ba2909ae0d5bbc2a", + "retrieved_at": "2026-09-06T05:06:42.083831+00:00" + }, + { + "listing_id": "2075621512939701289", + "index": 4, + "source_url": "https://www.compass.com/m/0/0b7a45c9-7f43-4fe5-89b3-5f8ce3b9f0e6/1250x1000.jpg", + "path": "static/external_cache/listings/2075621512939701289/gallery_4.jpg", + "sha256": "b9d524e820c2b194df4dda151f64051947d353ea4c1b0537e520be44a4d7a4d2", + "retrieved_at": "2026-09-06T05:05:35.668642+00:00" + }, + { + "listing_id": "2076355547689262425", + "index": 4, + "source_url": "https://www.compass.com/m/0/babde747-2f99-433c-8bd7-179f120212ff/1024x683.jpg", + "path": "static/external_cache/listings/2076355547689262425/gallery_4.jpg", + "sha256": "6beeaac0a3debd7b520c43a07ce258fbca6814b1a1bfe52f4376555204746308", + "retrieved_at": "2026-09-06T05:06:15.653342+00:00" + }, + { + "listing_id": "2076551998662666769", + "index": 4, + "source_url": "https://www.compass.com/m/84c9fd59964bd9be40fae3de6e8e8f1aff5a393f_img_4_e8224/640x480.jpg", + "path": "static/external_cache/listings/2076551998662666769/gallery_4.jpg", + "sha256": "fc6cb4a1547cc28b080782852e5b0ecf29b5c75932041002cbd3a33f8b254bb1", + "retrieved_at": "2026-09-06T05:06:38.349740+00:00" + }, + { + "listing_id": "2077395926953959097", + "index": 4, + "source_url": "https://www.compass.com/m/d77d41fd44ea6ca19d988f5fc4deccd84af28180_img_4_2fb83/640x480.jpg", + "path": "static/external_cache/listings/2077395926953959097/gallery_4.jpg", + "sha256": "ab98a9088eeeaef80b44ebcea96e4b635285f5ee52ca726dce7aa03dfd376bc0", + "retrieved_at": "2026-09-06T05:07:02.709262+00:00" + }, + { + "listing_id": "2077759953407909369", + "index": 4, + "source_url": "https://www.compass.com/m/0/dd248664-f718-4092-ae34-03ff06e15eff/667x1000.jpg", + "path": "static/external_cache/listings/2077759953407909369/gallery_4.jpg", + "sha256": "fff161bc6ee2e6ba9b5325088e1978416f419d7b6684ce5dbdf08a1a8c1864cd", + "retrieved_at": "2026-09-06T05:03:40.921112+00:00" + }, + { + "listing_id": "2078393202840815033", + "index": 4, + "source_url": "https://www.compass.com/m/0/bf9e5e57-21d3-4761-a80c-4c4f96a5ca43/688x1000.jpg", + "path": "static/external_cache/listings/2078393202840815033/gallery_4.jpg", + "sha256": "b6400126dfdbec85889deaee07ac49e77ad283ee1b985950165f9599a22f6888", + "retrieved_at": "2026-09-06T05:03:28.301733+00:00" + }, + { + "listing_id": "2078424821475758689", + "index": 4, + "source_url": "https://www.compass.com/m/0/1f2a1ebf-b68c-4d7d-84bd-48049e87bd06/1500x1000.jpg", + "path": "static/external_cache/listings/2078424821475758689/gallery_4.jpg", + "sha256": "22d2495af61deedb5a9de7e710aa8991142d4712d12b5e59fab467275aee7c5e", + "retrieved_at": "2026-09-06T05:07:41.127884+00:00" + }, + { + "listing_id": "2078479686554124009", + "index": 4, + "source_url": "https://www.compass.com/m/0/2e4daba6-59f5-42d5-bf72-36dca9a08a87/1333x1000.jpg", + "path": "static/external_cache/listings/2078479686554124009/gallery_4.jpg", + "sha256": "e457d3672fa4b25b6e805336394b2d6d9fe8fb526123a7890eafedb98d44db1e", + "retrieved_at": "2026-09-06T05:07:30.343542+00:00" + }, + { + "listing_id": "2078501167304401553", + "index": 4, + "source_url": "https://www.compass.com/m/0/a9c67e6b-9071-4f49-9aa1-3842c0285880/1499x1000.jpg", + "path": "static/external_cache/listings/2078501167304401553/gallery_4.jpg", + "sha256": "b6bb79e203e10310bfd3411f56227b0ab41856511e30b3e397f65ea8f7a7334a", + "retrieved_at": "2026-09-06T05:07:37.590236+00:00" + }, + { + "listing_id": "2078605962141184241", + "index": 4, + "source_url": "https://www.compass.com/m/0/cc968cb0-e7b1-4a7f-8eff-c0a9294935a4/1500x999.jpg", + "path": "static/external_cache/listings/2078605962141184241/gallery_4.jpg", + "sha256": "3ead0dad8a679c494c3e08d30d91f2045a92d3704b4da64f3f1b048eda886300", + "retrieved_at": "2026-09-06T05:07:32.753103+00:00" + }, + { + "listing_id": "2078645864685447305", + "index": 4, + "source_url": "https://www.compass.com/m/63dc1e6a7891116d7b1e96580f0bbcbff71203c6_img_4_21ab9/640x480.jpg", + "path": "static/external_cache/listings/2078645864685447305/gallery_4.jpg", + "sha256": "ceccca7721acc00fb38f248fb5c338bf046841cdb01111111eca41b0bc6433e8", + "retrieved_at": "2026-09-06T05:04:42.490756+00:00" + }, + { + "listing_id": "2079003982204301553", + "index": 4, + "source_url": "https://www.compass.com/m/0/b2d14a0f-0691-438d-943e-d448e212cf67/1500x1000.jpg", + "path": "static/external_cache/listings/2079003982204301553/gallery_4.jpg", + "sha256": "f42936fbed7955af70764d0809e0d3052b4d4576f0f89e73f51cbc64d8127bb7", + "retrieved_at": "2026-09-06T05:06:10.134005+00:00" + }, + { + "listing_id": "2079308373491549353", + "index": 4, + "source_url": "https://www.compass.com/m/ffb3d4cd915a04fa9170eb306464aa7dfee64ec2_img_4_b9b2c/640x480.jpg", + "path": "static/external_cache/listings/2079308373491549353/gallery_4.jpg", + "sha256": "ea3f2c5910f38904f3d49ff87778377fd62a2dba5986fd2265343dac27b786ae", + "retrieved_at": "2026-09-06T05:04:47.228415+00:00" + }, + { + "listing_id": "2080050999609865353", + "index": 4, + "source_url": "https://www.compass.com/m/0/1fc10e93-99b9-4567-9f33-9eeca34161df/1500x1000.jpg", + "path": "static/external_cache/listings/2080050999609865353/gallery_4.jpg", + "sha256": "2e5c94321e01e64d76035c507275d97d31f1df6bdd490f3f0a6e3a1a32c1be14", + "retrieved_at": "2026-09-06T05:07:45.937861+00:00" + }, + { + "listing_id": "2080328806299006633", + "index": 4, + "source_url": "https://www.compass.com/m/200f892bdcc146480fa42b54a0c46d7ac335c96d_img_4_22b4e/640x480.jpg", + "path": "static/external_cache/listings/2080328806299006633/gallery_4.jpg", + "sha256": "e169119bd1ac48fe677984fab816d879894a65ec8a494120534b118c55c0e158", + "retrieved_at": "2026-09-06T05:04:08.404622+00:00" + }, + { + "listing_id": "2080494945616311449", + "index": 4, + "source_url": "https://www.compass.com/m/0/0ad1cc05-a389-4b84-b532-56e18cf0a95a/1024x683.jpg", + "path": "static/external_cache/listings/2080494945616311449/gallery_4.jpg", + "sha256": "eb7bc6abf0ed9f097e73a431b41acb0b4c0476a2e8e0d822ebfe1525f1e5cfca", + "retrieved_at": "2026-09-06T05:05:52.021768+00:00" + }, + { + "listing_id": "2081381488396660801", + "index": 4, + "source_url": "https://www.compass.com/m/da72012efffd6ef93b3e96afc412d50946dc5e0c_img_4_fbeea/640x480.jpg", + "path": "static/external_cache/listings/2081381488396660801/gallery_4.jpg", + "sha256": "7377e9c5bf41b7408f0af28d774129fb56d86d668c612811536ffeddc7ae75c9", + "retrieved_at": "2026-09-06T05:04:52.368904+00:00" + }, + { + "listing_id": "2082272035478937921", + "index": 4, + "source_url": "https://www.compass.com/m/853839e7a65e1e4739233885ec2799e613e45917_img_4_3d005/640x480.jpg", + "path": "static/external_cache/listings/2082272035478937921/gallery_4.jpg", + "sha256": "18daa7d195d38a3e95d0d4c59b6abe3f12b8dd56ca5977daac8feda732c3a507", + "retrieved_at": "2026-09-06T05:06:56.296814+00:00" + }, + { + "listing_id": "2082783054412235593", + "index": 4, + "source_url": "https://www.compass.com/m/0/94f26c9a-db79-4da5-abde-e2bc4a4afca6/1500x1000.jpg", + "path": "static/external_cache/listings/2082783054412235593/gallery_4.jpg", + "sha256": "3c2761fbb43e7f071d83bdc0954eed188e084825eaec3d9fbfded65382d6a9b4", + "retrieved_at": "2026-09-06T05:06:49.587550+00:00" + }, + { + "listing_id": "2082950701053509025", + "index": 4, + "source_url": "https://www.compass.com/m/0/af2ee7da-46a1-4467-89cc-643b5976bb90/667x1000.jpg", + "path": "static/external_cache/listings/2082950701053509025/gallery_4.jpg", + "sha256": "d821138d46bf474bc76d278584259ba1cb5c4e26b199511f943688e802aaaac1", + "retrieved_at": "2026-09-06T05:07:53.266918+00:00" + }, + { + "listing_id": "2083405751345714505", + "index": 4, + "source_url": "https://www.compass.com/m/0/da5ddc3b-70f8-4e5c-afeb-5ff85be7c6b6/1024x683.jpg", + "path": "static/external_cache/listings/2083405751345714505/gallery_4.jpg", + "sha256": "e89638fd58a5761b10f06c2aaddc35e3373ac6f58e9508d3a541d4a82aa170bd", + "retrieved_at": "2026-09-06T05:05:42.380966+00:00" + }, + { + "listing_id": "2083473358098962857", + "index": 4, + "source_url": "https://www.compass.com/m/0/3364e23c-1b72-470f-b4a8-7207280084ab/1360x1000.jpg", + "path": "static/external_cache/listings/2083473358098962857/gallery_4.jpg", + "sha256": "2f6d8f03331d118634118545f1e97e7f3f317ebdf36f84edbb23bb253cc4aba8", + "retrieved_at": "2026-09-06T05:07:44.531505+00:00" + }, + { + "listing_id": "2083522653841596097", + "index": 4, + "source_url": "https://www.compass.com/m/0/2b5fb07c-251e-4207-9686-ac4692866748/1499x1000.jpg", + "path": "static/external_cache/listings/2083522653841596097/gallery_4.jpg", + "sha256": "7e7f8fc16254581985daf349cae3eb8e1b11736e25a41ec741502899f89faa1f", + "retrieved_at": "2026-09-06T05:04:29.268015+00:00" + }, + { + "listing_id": "2083551080812289809", + "index": 4, + "source_url": "https://www.compass.com/m/0/12b107f4-d82a-4350-924c-4af704c191a7/1337x1000.jpg", + "path": "static/external_cache/listings/2083551080812289809/gallery_4.jpg", + "sha256": "3d0c56d8367153f81118fd94020f628c905b5211cb0b4de7fb927f32b93adb10", + "retrieved_at": "2026-09-06T05:04:29.049488+00:00" + }, + { + "listing_id": "2083715396043941473", + "index": 4, + "source_url": "https://www.compass.com/m/2b391ef462c90ecd5d7ee8ead0c04a6acc4809f3_img_4_b16ed/640x480.jpg", + "path": "static/external_cache/listings/2083715396043941473/gallery_4.jpg", + "sha256": "d209fcabebdf926ee151bcf191b1541d7f52ed904e1e6abc621cf760499a182d", + "retrieved_at": "2026-09-06T05:04:56.266084+00:00" + }, + { + "listing_id": "2083819820825444401", + "index": 4, + "source_url": "https://www.compass.com/m/e65ae2613d050f1ade8fbb313294aadbcd9b27af_img_4_9bc90/640x480.jpg", + "path": "static/external_cache/listings/2083819820825444401/gallery_4.jpg", + "sha256": "0673174d5a541d5d4106039b6dc025c045fc10b232757bcc37e6973f791dc3cf", + "retrieved_at": "2026-09-06T05:04:44.696461+00:00" + }, + { + "listing_id": "2083867658095713321", + "index": 4, + "source_url": "https://www.compass.com/m/507d2db6d3e32704d6891bf9532ccf679f876af9_img_4_45b3e/640x480.jpg", + "path": "static/external_cache/listings/2083867658095713321/gallery_4.jpg", + "sha256": "6554c008358ea5a54a9c79b5e3cd2cd7717abc9029d0698ecc3873555b4ef7a3", + "retrieved_at": "2026-09-06T05:06:40.171995+00:00" + }, + { + "listing_id": "2084372143343598409", + "index": 4, + "source_url": "https://www.compass.com/m/0/18c8ba18-ca0c-4bb8-874b-b55b3b526106/1500x999.jpg", + "path": "static/external_cache/listings/2084372143343598409/gallery_4.jpg", + "sha256": "454bd892352f710786048b2a055b223db47b7fbf2bf0289a538803c526df412d", + "retrieved_at": "2026-09-06T05:07:38.003761+00:00" + }, + { + "listing_id": "2084394305768927185", + "index": 4, + "source_url": "https://www.compass.com/m/0/56dce16e-d2ec-436a-b551-f5ce1bf4ab88/1500x999.jpg", + "path": "static/external_cache/listings/2084394305768927185/gallery_4.jpg", + "sha256": "d0c7abf71d30cf39d43131c5062c7d78d88b4e810daca442b49b7c9c04a17294", + "retrieved_at": "2026-09-06T05:05:32.477963+00:00" + }, + { + "listing_id": "2084997859022574777", + "index": 4, + "source_url": "https://www.compass.com/m/b876097c361b6fe57395d7128ba4dfaf538e1c28_img_4_19fdd/640x480.jpg", + "path": "static/external_cache/listings/2084997859022574777/gallery_4.jpg", + "sha256": "181abc0a147293d4e8b810cd90101174bf266899a2f3d84bee68203613cc000a", + "retrieved_at": "2026-09-06T05:06:13.513202+00:00" + }, + { + "listing_id": "2085017423130603593", + "index": 4, + "source_url": "https://www.compass.com/m/e1d6e7817dc887c4c81cb856664b0834617b4526_img_4_9db26/640x480.jpg", + "path": "static/external_cache/listings/2085017423130603593/gallery_4.jpg", + "sha256": "f74a03a92f1b7e197268db0ece1ae0e4ca68a5e68449f14e48f3e61f5378b123", + "retrieved_at": "2026-09-06T05:05:24.204527+00:00" + }, + { + "listing_id": "2085045859568803729", + "index": 4, + "source_url": "https://www.compass.com/m/0/b06b3726-b2ab-43b7-a0f6-528363d3dcaa/1497x1000.jpg", + "path": "static/external_cache/listings/2085045859568803729/gallery_4.jpg", + "sha256": "660ba37a48f90df342d979aaaa918f102724d967f09d6d31a5dee8e2f7dc5546", + "retrieved_at": "2026-09-06T05:07:48.362075+00:00" + }, + { + "listing_id": "2085116787098362465", + "index": 4, + "source_url": "https://www.compass.com/m/57a996a8186a46ad161a18a3dc7f3817e7a1fd65_img_4_0aa74/640x480.jpg", + "path": "static/external_cache/listings/2085116787098362465/gallery_4.jpg", + "sha256": "f0f7dc170f283499f4c41e9e4d77aadfeebfb4678009a2b65147d6ec6e5f65c2", + "retrieved_at": "2026-09-06T05:04:00.272961+00:00" + }, + { + "listing_id": "2085119372299869049", + "index": 4, + "source_url": "https://www.compass.com/m/0/c658688b-c666-45d2-9e7b-5a979aa74733/1484x1000.jpg", + "path": "static/external_cache/listings/2085119372299869049/gallery_4.jpg", + "sha256": "91144dade17746ce61705f057e6e06959e5b89d80a9881c0505b56c1d3c4eabf", + "retrieved_at": "2026-09-06T05:04:25.663199+00:00" + }, + { + "listing_id": "2085120535770718105", + "index": 4, + "source_url": "https://www.compass.com/m/0/8ffb8165-d7c1-44ee-a8ef-2bc75fb2c3b5/1500x1000.jpg", + "path": "static/external_cache/listings/2085120535770718105/gallery_4.jpg", + "sha256": "e51dea39cae8575fa9bdb8ea536dcf6d55f1e2b1c2d50aef1a0f0681a1eae7a0", + "retrieved_at": "2026-09-06T05:03:48.808515+00:00" + }, + { + "listing_id": "2085143147183541689", + "index": 4, + "source_url": "https://www.compass.com/m/d7138a834b706af55a944a7f060f46ae8f39633b_img_4_127c8/640x480.jpg", + "path": "static/external_cache/listings/2085143147183541689/gallery_4.jpg", + "sha256": "81192954b3a7e9641c11ef2765ebb11d5987b2c05b9fac89365df408cd3d1c1c", + "retrieved_at": "2026-09-06T05:04:51.352797+00:00" + }, + { + "listing_id": "2085607227661634345", + "index": 4, + "source_url": "https://www.compass.com/m/0/ba0835f8-a715-4eb7-8e0b-5c0cef70d8b5/1497x1000.jpg", + "path": "static/external_cache/listings/2085607227661634345/gallery_4.jpg", + "sha256": "c4ab00afc03e792234a38b8fe0680f68639b8847f13845937a06ac71b26e50d5", + "retrieved_at": "2026-09-06T05:06:42.968023+00:00" + }, + { + "listing_id": "2085668456983506497", + "index": 4, + "source_url": "https://www.compass.com/m/0/8505383b-1ba0-4f2a-98f7-fc481c1df591/1500x1000.jpg", + "path": "static/external_cache/listings/2085668456983506497/gallery_4.jpg", + "sha256": "bc0f04478f797f61162b5665b7919999b796d98a535fdbfa83badff1468ba73d", + "retrieved_at": "2026-09-06T05:03:55.781665+00:00" + }, + { + "listing_id": "2085761573384584209", + "index": 4, + "source_url": "https://www.compass.com/m/0/fa1076ea-05a0-41b6-9ee1-8b1236561789/1500x844.jpg", + "path": "static/external_cache/listings/2085761573384584209/gallery_4.jpg", + "sha256": "b2e66591066d81c8ee5c5e5defa16d6f0dd351d6f59c5126dec09e41842faae4", + "retrieved_at": "2026-09-06T05:05:56.550671+00:00" + }, + { + "listing_id": "2085803637547846065", + "index": 4, + "source_url": "https://www.compass.com/m/0/59b363d9-db81-4dde-82fc-b07e56995584/1500x844.jpg", + "path": "static/external_cache/listings/2085803637547846065/gallery_4.jpg", + "sha256": "b2e66591066d81c8ee5c5e5defa16d6f0dd351d6f59c5126dec09e41842faae4", + "retrieved_at": "2026-09-06T05:05:55.857489+00:00" + }, + { + "listing_id": "2085803818984863153", + "index": 4, + "source_url": "https://www.compass.com/m/0/23f0f42f-25b1-45fd-a87a-a285e3a7977c/1498x1000.jpg", + "path": "static/external_cache/listings/2085803818984863153/gallery_4.jpg", + "sha256": "1b1af4e3718180a821fceeacb517242dfd23ab87376fb2933efab1a5794417a8", + "retrieved_at": "2026-09-06T05:06:12.015717+00:00" + }, + { + "listing_id": "2085815781659791705", + "index": 4, + "source_url": "https://www.compass.com/m/0/347b5efe-0151-4f46-85ec-ee7f24a333ed/1152x768.jpg", + "path": "static/external_cache/listings/2085815781659791705/gallery_4.jpg", + "sha256": "7ac91a325ff4c7ac0fc0bcb139272a6567262cbeac6e87894ef58a995722c1d7", + "retrieved_at": "2026-09-06T05:06:15.653696+00:00" + }, + { + "listing_id": "2087832171556297009", + "index": 4, + "source_url": "https://www.compass.com/m/44c7fcda24768b8f8f89498d763a131a280d6c2a_img_4_5cfa7/640x480.jpg", + "path": "static/external_cache/listings/2087832171556297009/gallery_4.jpg", + "sha256": "f92b09ca32a576ce394d273902e7c2b0fd1f0d05b6197d97496f2a7a545c4d16", + "retrieved_at": "2026-09-06T05:06:33.239089+00:00" + }, + { + "listing_id": "2087944413975360473", + "index": 4, + "source_url": "https://www.compass.com/m/376f36e76b1f6528f96cb43679b5c3cb6d508431_img_4_071a0/640x480.jpg", + "path": "static/external_cache/listings/2087944413975360473/gallery_4.jpg", + "sha256": "562f7ff30a4ce708e1a136b9734abd061164b9b693de78f3ed80ad8de817222a", + "retrieved_at": "2026-09-06T05:05:09.671038+00:00" + }, + { + "listing_id": "2088063562122699249", + "index": 4, + "source_url": "https://www.compass.com/m/0/f5b4bb1c-549e-471e-ba46-2427baebe076/1497x1000.jpg", + "path": "static/external_cache/listings/2088063562122699249/gallery_4.jpg", + "sha256": "d13475660d90a9bc66af2000ce3399c61c5a90f7bd3cc3fd45300bbf81807c4e", + "retrieved_at": "2026-09-06T05:04:18.833160+00:00" + }, + { + "listing_id": "2088539773340517209", + "index": 4, + "source_url": "https://www.compass.com/m/0/8e35744f-0522-4082-b407-1df1fdab1caf/1500x1000.jpg", + "path": "static/external_cache/listings/2088539773340517209/gallery_4.jpg", + "sha256": "8460df60a97b52eaec72e5638e7678e8cbf31f3b7a6eea05fe14a605a1b6fb7c", + "retrieved_at": "2026-09-06T05:05:45.390636+00:00" + }, + { + "listing_id": "2088686925983473945", + "index": 4, + "source_url": "https://www.compass.com/m/13e9d8e109e89626f403637c56b3d05b1a081ac2_img_4_d8edc/640x480.jpg", + "path": "static/external_cache/listings/2088686925983473945/gallery_4.jpg", + "sha256": "934821f37f8979f9c9d1808947fe5c6b9bbef1f2df28e6cb7362c4aa8b39b4ea", + "retrieved_at": "2026-09-06T05:05:15.796463+00:00" + }, + { + "listing_id": "2089240722748810625", + "index": 4, + "source_url": "https://www.compass.com/m/0/f22ced09-c4e1-486c-9149-25cacf01e959/1280x853.jpg", + "path": "static/external_cache/listings/2089240722748810625/gallery_4.jpg", + "sha256": "9467643932098d9c31cba4c06d233a19622e704ffcd300c076c975f33ca7b4c7", + "retrieved_at": "2026-09-06T05:05:29.757060+00:00" + }, + { + "listing_id": "2089265470199710337", + "index": 4, + "source_url": "https://www.compass.com/m/181cf18efe614d673330f2a0e89897344954f575_img_4_b4520/640x480.jpg", + "path": "static/external_cache/listings/2089265470199710337/gallery_4.jpg", + "sha256": "7f370219b0f9fcc49fb77f28c628fe57465681ae48b9dfa6c17f6a03387d7b1d", + "retrieved_at": "2026-09-06T05:05:14.734393+00:00" + }, + { + "listing_id": "2089510772869620353", + "index": 4, + "source_url": "https://www.compass.com/m/0/58eee064-7718-457a-b746-d65c1a169116/667x1000.jpg", + "path": "static/external_cache/listings/2089510772869620353/gallery_4.jpg", + "sha256": "9455cdce95daf893e156f1d95b11353ee323c379cca40f73e745bfd5eae76939", + "retrieved_at": "2026-09-06T05:08:14.673979+00:00" + }, + { + "listing_id": "2089911238993390705", + "index": 4, + "source_url": "https://www.compass.com/m/0/679b0744-0036-4c89-8337-e4d74d3f20a7/1500x1000.jpg", + "path": "static/external_cache/listings/2089911238993390705/gallery_4.jpg", + "sha256": "f873921038a0fcff8d8df0ce887a29c0bbc1807d1258df0001ce23728e729061", + "retrieved_at": "2026-09-06T05:06:14.493653+00:00" + }, + { + "listing_id": "2089921531781697025", + "index": 4, + "source_url": "https://www.compass.com/m/0/193a27d5-0a52-42a4-b34a-f84feed4217a/1500x1000.jpg", + "path": "static/external_cache/listings/2089921531781697025/gallery_4.jpg", + "sha256": "0df3083c04397825555e68998b17c7fc9fb8b6c72ac4bbbc522c08dfe35e27d1", + "retrieved_at": "2026-09-06T05:07:43.918764+00:00" + }, + { + "listing_id": "2090048205038846297", + "index": 4, + "source_url": "https://www.compass.com/m/0/87bd88f5-d6e5-4dbd-9c57-a06f54e11b0e/1500x1000.jpg", + "path": "static/external_cache/listings/2090048205038846297/gallery_4.jpg", + "sha256": "470d9fffe6b6b2e7ae7910d028cf55ea0fbb9aa0a4cfaf36a12277d2fff07984", + "retrieved_at": "2026-09-06T05:03:35.578923+00:00" + }, + { + "listing_id": "2090174752702796977", + "index": 4, + "source_url": "https://www.compass.com/m/0/af4665d2-c070-40a7-9431-319ffc720536/1496x1000.jpg", + "path": "static/external_cache/listings/2090174752702796977/gallery_4.jpg", + "sha256": "86cf3fde258952f764b791a08ed25370725985ee42cb73eee1fb35bc6133dac6", + "retrieved_at": "2026-09-06T05:06:05.236670+00:00" + }, + { + "listing_id": "2090750718311068225", + "index": 4, + "source_url": "https://www.compass.com/m/0/a6aa249f-d16f-490d-8880-83f8bd657c08/1152x768.jpg", + "path": "static/external_cache/listings/2090750718311068225/gallery_4.jpg", + "sha256": "b43c49162bc41985e56e20a45b4d02d6285e3b66f5faec096a77ad5e99e4e4a3", + "retrieved_at": "2026-09-06T05:03:52.543963+00:00" + }, + { + "listing_id": "2090833904554638913", + "index": 4, + "source_url": "https://www.compass.com/m/0/d72a4fe1-d05d-46f1-8534-d564cce7bd7d/1500x951.jpg", + "path": "static/external_cache/listings/2090833904554638913/gallery_4.jpg", + "sha256": "5c89d5b076ac72d4822937d3e0970915e38c93fe10cc7a3fee4d1d778bcc0357", + "retrieved_at": "2026-09-06T05:07:42.020063+00:00" + }, + { + "listing_id": "2090873409185950569", + "index": 4, + "source_url": "https://www.compass.com/m/0/c67dafe9-e6bc-4f8e-8d21-58d5f38778af/1440x960.jpg", + "path": "static/external_cache/listings/2090873409185950569/gallery_4.jpg", + "sha256": "e14f63b5651ff7f4f1c4545b729b1c0de95e68e811e27cad6aa86b2fc2b0e7ff", + "retrieved_at": "2026-09-06T05:07:35.787469+00:00" + }, + { + "listing_id": "2090882903353479305", + "index": 4, + "source_url": "https://www.compass.com/m/479c97dfc26d146119b59481edf5838082b18b08_img_4_089c0/640x480.jpg", + "path": "static/external_cache/listings/2090882903353479305/gallery_4.jpg", + "sha256": "c8943ca2e3d84f838213203daf18113692919bc20e50162b2f97a3a6a977e299", + "retrieved_at": "2026-09-06T05:04:59.382389+00:00" + }, + { + "listing_id": "2090918625401703001", + "index": 4, + "source_url": "https://www.compass.com/m/15ce139170de9f051b01638fda98c291d53944e4_img_4_5822b/640x480.jpg", + "path": "static/external_cache/listings/2090918625401703001/gallery_4.jpg", + "sha256": "d4c7bc0c29b5abd34ee9384040db6d03ee031794880503c0ca20428919286138", + "retrieved_at": "2026-09-06T05:03:53.961956+00:00" + }, + { + "listing_id": "2091175616523262961", + "index": 4, + "source_url": "https://www.compass.com/m/7b45ebcddd1bef52146b0c833826d37ea9530b49_img_4_b185e/640x480.jpg", + "path": "static/external_cache/listings/2091175616523262961/gallery_4.jpg", + "sha256": "78f7e4e4f6b401233d562e0f494ee52e1c56fb99bf49c6305e44d88e80098bd4", + "retrieved_at": "2026-09-06T05:06:07.429447+00:00" + }, + { + "listing_id": "2091443059070060769", + "index": 4, + "source_url": "https://www.compass.com/m/0/6cfc61ba-b81c-4f3b-9930-8238f0bf3e6d/667x1000.jpg", + "path": "static/external_cache/listings/2091443059070060769/gallery_4.jpg", + "sha256": "c4ef56e5cf6c2c96e2a43850bc231140f9ebf5ff50e2e025e0fa6a5e770b7387", + "retrieved_at": "2026-09-06T05:05:29.793232+00:00" + }, + { + "listing_id": "2091535249419390513", + "index": 4, + "source_url": "https://www.compass.com/m/592258af5fda4f68d0446157277ef0b914d033e7_img_4_ca0e0/640x480.jpg", + "path": "static/external_cache/listings/2091535249419390513/gallery_4.jpg", + "sha256": "0396565c691d9b6396f98714b6420bd97ae690c2d9d6619f3677ce04ac38ea12", + "retrieved_at": "2026-09-06T05:04:49.236602+00:00" + }, + { + "listing_id": "2092310202112555729", + "index": 4, + "source_url": "https://www.compass.com/m/241218eb832dd3eaea41a9b79ecebae688d45854_img_4_4de9c/640x480.jpg", + "path": "static/external_cache/listings/2092310202112555729/gallery_4.jpg", + "sha256": "c3040682f37c0e64f2b895c2a887ef3f9146892151243c55cbbe3411f266bc9d", + "retrieved_at": "2026-09-06T05:03:52.930690+00:00" + }, + { + "listing_id": "2092880607935969529", + "index": 4, + "source_url": "https://www.compass.com/m/0/982982b1-9639-4323-b200-00eca64c5e6f/1333x1000.jpg", + "path": "static/external_cache/listings/2092880607935969529/gallery_4.jpg", + "sha256": "8120a4f64948355452d76c54242d992006d8d370e926dc103b9753343ab21216", + "retrieved_at": "2026-09-06T05:05:52.151731+00:00" + }, + { + "listing_id": "2092936499796805081", + "index": 4, + "source_url": "https://www.compass.com/m/0/eb4dca46-5020-44a3-9e69-9c62b9b9838d/976x768.jpg", + "path": "static/external_cache/listings/2092936499796805081/gallery_4.jpg", + "sha256": "ef531fc16ce368af6e805216db1a0333c54db5f38d48da89a4614bc0a62acc34", + "retrieved_at": "2026-09-06T05:03:30.464765+00:00" + }, + { + "listing_id": "2092966052787131737", + "index": 4, + "source_url": "https://www.compass.com/m/0/91036bc4-5bb4-45ca-8a09-6f0b5a0c6fe9/1499x1000.jpg", + "path": "static/external_cache/listings/2092966052787131737/gallery_4.jpg", + "sha256": "fdb3fcd063daf7e797425807524285bbf0b2c6183318ee3aac8c20b546736209", + "retrieved_at": "2026-09-06T05:03:56.277478+00:00" + }, + { + "listing_id": "2093074201690899201", + "index": 4, + "source_url": "https://www.compass.com/m/f75ed77e4caea30bde68af7fe31f9771b182a78f_img_4_10db2/640x480.jpg", + "path": "static/external_cache/listings/2093074201690899201/gallery_4.jpg", + "sha256": "7e653160bff1c87a99238fdf49a2eade791d9e2ae1ce57fe197b255495bb3f92", + "retrieved_at": "2026-09-06T05:05:24.411923+00:00" + }, + { + "listing_id": "2093084609319847793", + "index": 4, + "source_url": "https://www.compass.com/m/0/956cb4ab-ddf5-4c98-8676-0f1f49a3e6f0/1499x1000.jpg", + "path": "static/external_cache/listings/2093084609319847793/gallery_4.jpg", + "sha256": "b4f1c6f5f347fd589b1a3dce27116cd40ac22555f8148835ba2bf50801c6ef94", + "retrieved_at": "2026-09-06T05:03:49.024285+00:00" + }, + { + "listing_id": "2093165211737985593", + "index": 4, + "source_url": "https://www.compass.com/m/1a7da76d3e1735cdda1be36a2392877e288882c8_img_4_61822/640x480.jpg", + "path": "static/external_cache/listings/2093165211737985593/gallery_4.jpg", + "sha256": "cae3e94a1c7d6b1d36e6a80b59504dc2410ea860a32c560d89834c66ef32c556", + "retrieved_at": "2026-09-06T05:06:45.024067+00:00" + }, + { + "listing_id": "2093368084769320529", + "index": 4, + "source_url": "https://www.compass.com/m/22e61b15d172417ef842ed35dd2056e81f1382a3_img_4_2d699/640x480.jpg", + "path": "static/external_cache/listings/2093368084769320529/gallery_4.jpg", + "sha256": "a56cd0bb6eee935c06e63e5f92dd00fc2172ebfabd9757b329c92a87592671dd", + "retrieved_at": "2026-09-06T05:06:40.532366+00:00" + }, + { + "listing_id": "2093567991816288225", + "index": 4, + "source_url": "https://www.compass.com/m/0/02d3be18-08ef-4f72-989e-469f4f020741/1500x1000.jpg", + "path": "static/external_cache/listings/2093567991816288225/gallery_4.jpg", + "sha256": "8d1a40d5cbd5498825f3ad16a72c026b810ba5cae20043ffaf59c03fab806831", + "retrieved_at": "2026-09-06T05:04:39.190633+00:00" + }, + { + "listing_id": "2093644774128981633", + "index": 4, + "source_url": "https://www.compass.com/m/12897fe59ecd3f437495e687a79460f5ec5a8b61_img_4_2a303/640x480.jpg", + "path": "static/external_cache/listings/2093644774128981633/gallery_4.jpg", + "sha256": "b34a680b37d26dbcb7428db6ed02e3f53206dda492c03ee5d85197454f89b1dd", + "retrieved_at": "2026-09-06T05:03:56.837761+00:00" + }, + { + "listing_id": "2093821945682826265", + "index": 4, + "source_url": "https://www.compass.com/m/49e42a2b67a77026ee4fad0204490ad2ac1d7bbd_img_4_0edb3/640x480.jpg", + "path": "static/external_cache/listings/2093821945682826265/gallery_4.jpg", + "sha256": "9eb540408ba0dbce1a8537afab30701df42c71ecbb174b4eadc5d80b7d6b1721", + "retrieved_at": "2026-09-06T05:06:49.468763+00:00" + }, + { + "listing_id": "2094258061888190329", + "index": 4, + "source_url": "https://www.compass.com/m/0/8a2803f9-d9c0-40a9-944d-f261648b2220/667x1000.jpg", + "path": "static/external_cache/listings/2094258061888190329/gallery_4.jpg", + "sha256": "3b049a920c0e40472c5405fe7ae5258ff9e6b07b0b1c7ac1693b45aad0b776a8", + "retrieved_at": "2026-09-06T05:08:01.580482+00:00" + }, + { + "listing_id": "2094356142457399105", + "index": 4, + "source_url": "https://www.compass.com/m/ebdb68eee908e325388366d6e81158218798628a_img_4_62d57/640x480.jpg", + "path": "static/external_cache/listings/2094356142457399105/gallery_4.jpg", + "sha256": "aa3e3c4e52dae1a72895cfef3403b0711f569456dc99d43044fba9d02a1489ca", + "retrieved_at": "2026-09-06T05:05:08.003005+00:00" + }, + { + "listing_id": "2094378625269140937", + "index": 4, + "source_url": "https://www.compass.com/m/0/98e08995-c9df-4917-9e78-9201d5f87abd/711x1000.jpg", + "path": "static/external_cache/listings/2094378625269140937/gallery_4.jpg", + "sha256": "fb6c1aa0301ff62ea0fd89e0422281e41ed46f9ffe10cdb29924d73e172da069", + "retrieved_at": "2026-09-06T05:03:58.860975+00:00" + }, + { + "listing_id": "2094449974113275841", + "index": 4, + "source_url": "https://www.compass.com/m/2669568e7ec7d344b4cd8c8f7266dc1d83875e3e_img_4_62a72/640x480.jpg", + "path": "static/external_cache/listings/2094449974113275841/gallery_4.jpg", + "sha256": "4ebd3ab101dc35ee4f1da4e477509f0cc2b385d56966811add181a2ddb577518", + "retrieved_at": "2026-09-06T05:06:40.032263+00:00" + }, + { + "listing_id": "2094470215975252201", + "index": 4, + "source_url": "https://www.compass.com/m/f2d8190cb12bcaed6e1bd49cc18b8ed097794669_img_4_1f8aa/640x480.jpg", + "path": "static/external_cache/listings/2094470215975252201/gallery_4.jpg", + "sha256": "a61ea72ec767bebc02d59089a24abe291d1b965bd520e1cd96e73fa1ce42142d", + "retrieved_at": "2026-09-06T05:06:39.298857+00:00" + }, + { + "listing_id": "2094524796503321457", + "index": 4, + "source_url": "https://www.compass.com/m/2ffaebe6278e898347d4aa8f8cc7f7573b872fa9_img_4_aa472/640x480.jpg", + "path": "static/external_cache/listings/2094524796503321457/gallery_4.jpg", + "sha256": "46cba89a2ab205c2725cf5819869d74a8c908e734072a1aa18e2156216043be2", + "retrieved_at": "2026-09-06T05:04:53.817896+00:00" + }, + { + "listing_id": "2095117238428302473", + "index": 4, + "source_url": "https://www.compass.com/m/4a9be57023e7c54315312b61a4c6250a6813fd58_img_4_70196/640x480.jpg", + "path": "static/external_cache/listings/2095117238428302473/gallery_4.jpg", + "sha256": "9a15983af08cf55fdabc665243cf4447ea23f96810673daf2ee70f10917fc6b1", + "retrieved_at": "2026-09-06T05:06:37.980132+00:00" + }, + { + "listing_id": "2095162584182456857", + "index": 4, + "source_url": "https://www.compass.com/m/0/60a63158-70eb-4e21-88b1-b9c8f52bb007/667x1000.jpg", + "path": "static/external_cache/listings/2095162584182456857/gallery_4.jpg", + "sha256": "962e7726260dbda49d140622aac6497ec478b6eabd62da31a96b0c53e3a95134", + "retrieved_at": "2026-09-06T05:03:29.208322+00:00" + }, + { + "listing_id": "2095177779264693489", + "index": 4, + "source_url": "https://www.compass.com/m/0/46c4f774-8b73-4ece-96ff-42fe8cc3c061/750x1000.jpg", + "path": "static/external_cache/listings/2095177779264693489/gallery_4.jpg", + "sha256": "30375a69b3f2f743d47ae907280f63cb1971c6bf02216206a04b86da1c5f9f27", + "retrieved_at": "2026-09-06T05:10:19.152011+00:00" + }, + { + "listing_id": "2095257869239690273", + "index": 4, + "source_url": "https://www.compass.com/m/0/00a808ba-d2f1-4eaa-8026-b682504418fb/564x1000.jpg", + "path": "static/external_cache/listings/2095257869239690273/gallery_4.jpg", + "sha256": "5d9a466e9a8918fdb13aaeb9bc8bac157148a19c0415d88af42054a98fcc1cf8", + "retrieved_at": "2026-09-06T05:06:46.507041+00:00" + }, + { + "listing_id": "2095303170155802753", + "index": 4, + "source_url": "https://www.compass.com/m/0/19b3a580-82a9-43c9-8296-0d097eac5573/1024x683.jpg", + "path": "static/external_cache/listings/2095303170155802753/gallery_4.jpg", + "sha256": "0a1a7ba388fe11b8eb82a1ad1153e53d190bc6f01b910f1b8bdf113b422d0b09", + "retrieved_at": "2026-09-06T05:05:36.064932+00:00" + }, + { + "listing_id": "2095758880146018681", + "index": 4, + "source_url": "https://www.compass.com/m/0/0f7bd279-59c3-4c0b-9030-605aba99766b/1500x1000.jpg", + "path": "static/external_cache/listings/2095758880146018681/gallery_4.jpg", + "sha256": "41b8f40b2e0ebe9f4e3966190716f0b0d4cef13a90a8a7231785dfeafc8889fc", + "retrieved_at": "2026-09-06T05:03:41.440923+00:00" + }, + { + "listing_id": "2095760251155001393", + "index": 4, + "source_url": "https://www.compass.com/m/0/45ec6931-92f9-4c67-a09e-50eaba901825/1500x1000.jpg", + "path": "static/external_cache/listings/2095760251155001393/gallery_4.jpg", + "sha256": "280d55c5d9b100fe74fe1338d94fca1440a913f770dde8abdb0aaed6d2c4d341", + "retrieved_at": "2026-09-06T05:07:50.814025+00:00" + }, + { + "listing_id": "2095783539130259441", + "index": 4, + "source_url": "https://www.compass.com/m/f817c8009f703850ed28296ed433d52038432f5a_img_4_3176c/640x480.jpg", + "path": "static/external_cache/listings/2095783539130259441/gallery_4.jpg", + "sha256": "2eae86363c99c99bb04b81c088cbb21b002964f882bc3bf02a42f7f4a61bb402", + "retrieved_at": "2026-09-06T05:05:07.119834+00:00" + }, + { + "listing_id": "2095788616787751217", + "index": 4, + "source_url": "https://www.compass.com/m/0/64d675e0-97e8-42b0-b2e8-d1652eba2dd7/1499x1000.jpg", + "path": "static/external_cache/listings/2095788616787751217/gallery_4.jpg", + "sha256": "6af95baf0fb0a6d8c239dcb9bcf9c4e49d239746fd9f9f98c57532dbedeb3d55", + "retrieved_at": "2026-09-06T05:05:40.911773+00:00" + }, + { + "listing_id": "2095840823390943449", + "index": 4, + "source_url": "https://www.compass.com/m/bc51e1ebcbf28239131e98dbbeae513277f1d10a_img_4_8daca/640x480.jpg", + "path": "static/external_cache/listings/2095840823390943449/gallery_4.jpg", + "sha256": "5a603b0f1175883c71d744a9e64e363fc1fdc0b6105bd68a63e6e0beec8ebe4a", + "retrieved_at": "2026-09-06T05:06:59.188377+00:00" + }, + { + "listing_id": "2095855481308818553", + "index": 4, + "source_url": "https://www.compass.com/m/0/3613ebe9-8945-440c-85c6-3bd4da93d89a/1500x999.jpg", + "path": "static/external_cache/listings/2095855481308818553/gallery_4.jpg", + "sha256": "795aef42500df724216edfd9a00cedaff907dcf0e263dde42d46c27bc3ff17cf", + "retrieved_at": "2026-09-06T05:05:46.794945+00:00" + }, + { + "listing_id": "2095859265258995457", + "index": 4, + "source_url": "https://www.compass.com/m/8641c4a43b4e28688ff035258fd45bb8cddf24f5_img_4_0292c/640x480.jpg", + "path": "static/external_cache/listings/2095859265258995457/gallery_4.jpg", + "sha256": "5dc3410e03220d403622bd911141aa7f9df57812ddbb85450fe23469b2f8a24f", + "retrieved_at": "2026-09-06T05:06:15.266649+00:00" + }, + { + "listing_id": "2095934286325029505", + "index": 4, + "source_url": "https://www.compass.com/m/50ef7c38b43978c260dd6ca8339868b9e5957365_img_4_e8429/640x480.jpg", + "path": "static/external_cache/listings/2095934286325029505/gallery_4.jpg", + "sha256": "911dbec1becd3f490a057f7910c1974315896d3e98d6dacefa3f42c8a9563b2c", + "retrieved_at": "2026-09-06T05:07:25.185387+00:00" + }, + { + "listing_id": "2095984449957747233", + "index": 4, + "source_url": "https://www.compass.com/m/0/0bb9309c-dc0c-454a-acc9-4888f441930a/1500x999.jpg", + "path": "static/external_cache/listings/2095984449957747233/gallery_4.jpg", + "sha256": "20bc1ecd9785c08759396f0b7c8867790fdbca3e9626f0b2f7149c5f05e72453", + "retrieved_at": "2026-09-06T05:04:33.894308+00:00" + }, + { + "listing_id": "2096012753724573065", + "index": 4, + "source_url": "https://www.compass.com/m/0/b60b91cb-9c94-41ce-9165-2265af4d6979/1500x1000.jpg", + "path": "static/external_cache/listings/2096012753724573065/gallery_4.jpg", + "sha256": "25379e60d5aa7d953401fc7aab34c7d9dc02c298d67f19064d639863119aaa1c", + "retrieved_at": "2026-09-06T05:07:48.701855+00:00" + }, + { + "listing_id": "2096135370721194649", + "index": 4, + "source_url": "https://www.compass.com/m/23a551089a0f8dc818cf72a5c92be2d4e6d336f2_img_4_acf7e/640x480.jpg", + "path": "static/external_cache/listings/2096135370721194649/gallery_4.jpg", + "sha256": "485ab6cecea53418b71809d0cd067a8628b081cb05d3c5a6ec6c61929f579501", + "retrieved_at": "2026-09-06T05:04:00.045688+00:00" + }, + { + "listing_id": "2096630064751920401", + "index": 4, + "source_url": "https://www.compass.com/m/0/9a57293e-47cf-4626-8b4e-8e076c6e0570/1500x1000.jpg", + "path": "static/external_cache/listings/2096630064751920401/gallery_4.jpg", + "sha256": "0cc08259785083c70a0615314b88f0fd8f15c8fd330006c3ff8093689b8eb4f7", + "retrieved_at": "2026-09-06T05:05:50.389858+00:00" + }, + { + "listing_id": "2097930857405393601", + "index": 4, + "source_url": "https://www.compass.com/m/0/a518e119-2558-4fdf-ba9d-576aa5b51627/1499x1000.jpg", + "path": "static/external_cache/listings/2097930857405393601/gallery_4.jpg", + "sha256": "4d2ff338c8fbc298590b3e40476f397bb17cb8f24c026acebbc400a4a7bb9ae7", + "retrieved_at": "2026-09-06T05:04:35.365322+00:00" + }, + { + "listing_id": "2097930925335885545", + "index": 4, + "source_url": "https://www.compass.com/m/0/6d8d0f16-4d96-4de4-a1be-4df6e98eed6d/1499x1000.jpg", + "path": "static/external_cache/listings/2097930925335885545/gallery_4.jpg", + "sha256": "90509b9dbeb150c9a0ddededb2ff7981d5172ec8ac4b37b8aa93bba7e37d04d8", + "retrieved_at": "2026-09-06T05:04:37.649395+00:00" + }, + { + "listing_id": "2097934634878769001", + "index": 4, + "source_url": "https://www.compass.com/m/17d106f72ef66de15aa44f65de70740dc146f084_img_4_cccd8/640x480.jpg", + "path": "static/external_cache/listings/2097934634878769001/gallery_4.jpg", + "sha256": "301e4b105093e0bf727d43b6641646428b3100f4b55a490817449cee88e01952", + "retrieved_at": "2026-09-06T05:04:12.028925+00:00" + }, + { + "listing_id": "2097945406758037993", + "index": 4, + "source_url": "https://www.compass.com/m/601391486160ef3c03ef514c0f5d8b859eb20381_img_4_56770/640x480.jpg", + "path": "static/external_cache/listings/2097945406758037993/gallery_4.jpg", + "sha256": "cfca21b9ba2533c57fd320bd95498f69cf8a80e6c8f1f7983b9bbdbbad1a5f5f", + "retrieved_at": "2026-09-06T05:05:18.885414+00:00" + }, + { + "listing_id": "2097967731200691625", + "index": 4, + "source_url": "https://www.compass.com/m/134575f905426b9e9ceb363b69679ac7a5c4cd32_img_4_27a7c/640x480.jpg", + "path": "static/external_cache/listings/2097967731200691625/gallery_4.jpg", + "sha256": "5f366c9f70d22c7e63171dff976ad0052c58a50eae146a15ad6f92ae6d677559", + "retrieved_at": "2026-09-06T05:04:06.882154+00:00" + }, + { + "listing_id": "2097970189431891505", + "index": 4, + "source_url": "https://www.compass.com/m/e75845942a65b87b29fe7193a93b7d94f137b008_img_4_bf64f/640x480.jpg", + "path": "static/external_cache/listings/2097970189431891505/gallery_4.jpg", + "sha256": "877756a74cefa30651d02f408d4216bdd4ae275d53f4e46be299692810cf4ff6", + "retrieved_at": "2026-09-06T05:06:51.565548+00:00" + }, + { + "listing_id": "2097973318919536305", + "index": 4, + "source_url": "https://www.compass.com/m/0/07d0b482-2ff2-40e7-a4f4-3fa815b91128/1500x1000.jpg", + "path": "static/external_cache/listings/2097973318919536305/gallery_4.jpg", + "sha256": "d2f9637b5aeab9e1a3b76c63407a31c7fa2b559b2fc467d27be5c081c7a59273", + "retrieved_at": "2026-09-06T05:03:35.542801+00:00" + }, + { + "listing_id": "2097984564385442145", + "index": 4, + "source_url": "https://www.compass.com/m/0/b79056c9-3508-4bfb-b696-4e40ec534f15/1500x1000.jpg", + "path": "static/external_cache/listings/2097984564385442145/gallery_4.jpg", + "sha256": "ee32391081ac61d8776ac09cecc4ef863b434ee8423b795be1e11fac85910888", + "retrieved_at": "2026-09-06T05:03:46.184367+00:00" + }, + { + "listing_id": "2097990989622977241", + "index": 4, + "source_url": "https://www.compass.com/m/0/c80979d8-97b8-49d4-919d-ac9f1fc29f0f/750x1000.jpg", + "path": "static/external_cache/listings/2097990989622977241/gallery_4.jpg", + "sha256": "cbb92e9b86ad18aff783cd59d3f86dfdb3f4eb32de48cde4417aa4dfb2a83721", + "retrieved_at": "2026-09-06T05:04:36.416083+00:00" + }, + { + "listing_id": "2097992927215682265", + "index": 4, + "source_url": "https://www.compass.com/m/0/76e2eac4-9f19-49ab-bc33-a3a474e1aaec/1335x1000.jpg", + "path": "static/external_cache/listings/2097992927215682265/gallery_4.jpg", + "sha256": "5c206ae2b74d52e270fb665bde1603ab1ef1d29176d01b27f4a6ca8c88d76da6", + "retrieved_at": "2026-09-06T05:04:26.185517+00:00" + }, + { + "listing_id": "2097993237191321777", + "index": 4, + "source_url": "https://www.compass.com/m/0/5f18f8d5-6292-4576-8dfa-7ef5f2c72951/1500x1000.jpg", + "path": "static/external_cache/listings/2097993237191321777/gallery_4.jpg", + "sha256": "d639eaf4041c98e740d995e97ec31ae5cc160656ca308192c0f8a9fb2670a5b8", + "retrieved_at": "2026-09-06T05:07:58.044524+00:00" + }, + { + "listing_id": "2098031721222622417", + "index": 4, + "source_url": "https://www.compass.com/m/0/ccbe0eef-8c3b-4bdf-b4db-0c683342ad2d/1500x1000.jpg", + "path": "static/external_cache/listings/2098031721222622417/gallery_4.jpg", + "sha256": "c3bed3249ee06df219d70d99c10192d1dc7a4393c49f51ef0fd61f67fefa31c1", + "retrieved_at": "2026-09-06T05:05:44.101308+00:00" + }, + { + "listing_id": "2098031946624151457", + "index": 4, + "source_url": "https://www.compass.com/m/fc3aeede2f50c8c7893c667f1b091f6c002377b7_img_4_b7918/640x480.jpg", + "path": "static/external_cache/listings/2098031946624151457/gallery_4.jpg", + "sha256": "e6edb8d6599c75b1c032c271cb681d025c67672bd985e5d6a2863d10593e5f39", + "retrieved_at": "2026-09-06T05:08:17.687251+00:00" + }, + { + "listing_id": "2098038012485729881", + "index": 4, + "source_url": "https://www.compass.com/m/0/943c2c06-2c83-4abd-a0d2-86735474afa3/1500x1000.jpg", + "path": "static/external_cache/listings/2098038012485729881/gallery_4.jpg", + "sha256": "1301a98afc0047d5f9be966e59bae953afaa9ee78ff1474dd567fbdcb389a866", + "retrieved_at": "2026-09-06T05:03:44.531202+00:00" + }, + { + "listing_id": "2098042148597621689", + "index": 4, + "source_url": "https://www.compass.com/m/0/7daed9cb-8b66-4682-a1d2-199d6a38939d/1500x999.jpg", + "path": "static/external_cache/listings/2098042148597621689/gallery_4.jpg", + "sha256": "d2a600c95b6a9e945950b87bbcd5843f1879341b1c306d99a4df0cde63e3c324", + "retrieved_at": "2026-09-06T05:05:44.039938+00:00" + }, + { + "listing_id": "2098047198749416809", + "index": 4, + "source_url": "https://www.compass.com/m/44d0fb722bd23e0d55b03cb4264e61b609ffb840_img_4_4ed91/640x480.jpg", + "path": "static/external_cache/listings/2098047198749416809/gallery_4.jpg", + "sha256": "8e5f1c0a18f98b84d69f4bc1f696271ca25c10ea4e51a42682237ec51243459e", + "retrieved_at": "2026-09-06T05:07:01.463996+00:00" + }, + { + "listing_id": "2098049747242103697", + "index": 4, + "source_url": "https://www.compass.com/m/0/47359c8e-800e-4800-9ce6-5bc8544a3207/1500x1000.jpg", + "path": "static/external_cache/listings/2098049747242103697/gallery_4.jpg", + "sha256": "2adc2fd8aac6e0a9c0e68be4f1580d142a6e725da8feecfbeebb552aa56792ef", + "retrieved_at": "2026-09-06T05:07:35.206118+00:00" + }, + { + "listing_id": "2098063543490317537", + "index": 4, + "source_url": "https://www.compass.com/m/0/69fab26e-4c25-4593-99a6-1b3e5c9b7919/1500x1000.jpg", + "path": "static/external_cache/listings/2098063543490317537/gallery_4.jpg", + "sha256": "d142f28c8ac08d75871ec674d8ade56b829f6be3fc526db0edb5ee983b50afb2", + "retrieved_at": "2026-09-06T05:08:04.819661+00:00" + }, + { + "listing_id": "2098071507626581761", + "index": 4, + "source_url": "https://www.compass.com/m/0/432f68cc-399b-4d8c-bbbe-db3680f5f5ac/1500x1000.jpg", + "path": "static/external_cache/listings/2098071507626581761/gallery_4.jpg", + "sha256": "1301a98afc0047d5f9be966e59bae953afaa9ee78ff1474dd567fbdcb389a866", + "retrieved_at": "2026-09-06T05:07:58.358685+00:00" + }, + { + "listing_id": "2098075776052603609", + "index": 4, + "source_url": "https://www.compass.com/m/c38416e1272f5c78041bce595d4efcf714590c0a_img_4_3185b/640x480.jpg", + "path": "static/external_cache/listings/2098075776052603609/gallery_4.jpg", + "sha256": "310c9aeee9d4667a458a45769dee774d7591f05241cca16c53a834f77cc54795", + "retrieved_at": "2026-09-06T05:04:04.158464+00:00" + }, + { + "listing_id": "2098079763736686521", + "index": 4, + "source_url": "https://www.compass.com/m/0/37295343-2a4e-4dd0-8db4-cf4b191e46d6/666x1000.jpg", + "path": "static/external_cache/listings/2098079763736686521/gallery_4.jpg", + "sha256": "9a9c4206c75e8fdab6022991d7d8c71b48d3ece8f3b4851548a7c1169da9544f", + "retrieved_at": "2026-09-06T05:07:59.679968+00:00" + }, + { + "listing_id": "2098090982878987185", + "index": 4, + "source_url": "https://www.compass.com/m/0/fa0909c0-8cab-419a-9ebf-05fface6b289/667x1000.jpg", + "path": "static/external_cache/listings/2098090982878987185/gallery_4.jpg", + "sha256": "b5810d6cc4c25bd64371bc1d4023d9dfe3f2ba29820def09615d5dc0627ecae8", + "retrieved_at": "2026-09-06T05:03:32.732707+00:00" + }, + { + "listing_id": "2098125340638062953", + "index": 4, + "source_url": "https://www.compass.com/m/0/88253303-e3c5-4746-9da6-c4a54407f980/1499x1000.jpg", + "path": "static/external_cache/listings/2098125340638062953/gallery_4.jpg", + "sha256": "f6bbd4e711d4a226453a9f0b564ac9cdb7f4253ad460e69104dff49e63b7d1e9", + "retrieved_at": "2026-09-06T05:08:07.153873+00:00" + }, + { + "listing_id": "2098140028712522937", + "index": 4, + "source_url": "https://www.compass.com/m/0/183427ba-8415-4cae-a595-9331cae35654/1500x1000.jpg", + "path": "static/external_cache/listings/2098140028712522937/gallery_4.jpg", + "sha256": "63784303c8892be1b3b13b0d202dd9c5869e17beadf9711330d56ab42b5ae237", + "retrieved_at": "2026-09-06T05:04:31.814563+00:00" + }, + { + "listing_id": "2098141031780939441", + "index": 4, + "source_url": "https://www.compass.com/m/c6da8f102f85787f250d4ea08f9d4848d4c227f6_img_4_d1a3e/640x480.jpg", + "path": "static/external_cache/listings/2098141031780939441/gallery_4.jpg", + "sha256": "7fbe69af98524b395dd77db7134ce7ae440aada8821f6464feab9078b5eca5de", + "retrieved_at": "2026-09-06T05:08:34.942255+00:00" + }, + { + "listing_id": "2098142923051051441", + "index": 4, + "source_url": "https://www.compass.com/m/1c951cd1a1bd03ab0131adcbebea694e797d7d7f_img_4_3cf74/640x480.jpg", + "path": "static/external_cache/listings/2098142923051051441/gallery_4.jpg", + "sha256": "206915c54ecc9ca3691296069715b4ca83e0d52e194239d3076bae520d4ba6dc", + "retrieved_at": "2026-09-06T05:06:59.307885+00:00" + }, + { + "listing_id": "2098144731936678801", + "index": 4, + "source_url": "https://www.compass.com/m/0/3b286fe7-68d9-43c8-bb92-5b6f799393e7/1500x1000.jpg", + "path": "static/external_cache/listings/2098144731936678801/gallery_4.jpg", + "sha256": "d570117de2f3ef8437a695926d2e419cd98c99447139fc9853c86ef717743b89", + "retrieved_at": "2026-09-06T05:04:41.368774+00:00" + }, + { + "listing_id": "2098144832675737689", + "index": 4, + "source_url": "https://www.compass.com/m/0/1b238618-f2a1-4162-a674-d4a95fbc9e55/1500x1000.jpg", + "path": "static/external_cache/listings/2098144832675737689/gallery_4.jpg", + "sha256": "49cd7de59045023b9484d2c7b4c3a8ed456bdb3e5a7a3e2838fbd3746f6545ca", + "retrieved_at": "2026-09-06T05:07:59.184917+00:00" + }, + { + "listing_id": "2098156354747387689", + "index": 4, + "source_url": "https://www.compass.com/m/11456c8a8e793edcede95eb0a1811ab886d4d9ae_img_4_4d62c/640x480.jpg", + "path": "static/external_cache/listings/2098156354747387689/gallery_4.jpg", + "sha256": "62242f7fee8ddd0f663e446ccf4533a38e7c313663991037667d3f957a0459ba", + "retrieved_at": "2026-09-06T05:08:28.984187+00:00" + }, + { + "listing_id": "2098166596374269265", + "index": 4, + "source_url": "https://www.compass.com/m/41a736d24e1cf1c20df84b6c72a327ee94d6e05e_img_4_0eb26/640x480.jpg", + "path": "static/external_cache/listings/2098166596374269265/gallery_4.jpg", + "sha256": "e8d0d1b4b2829760140dae74323907f0558634fc5159cc3313a0feb3034a9d5c", + "retrieved_at": "2026-09-06T05:04:11.691874+00:00" + }, + { + "listing_id": "2098230702317414385", + "index": 4, + "source_url": "https://www.compass.com/m/0/a5382178-a857-4497-bc33-a168e40835d2/1499x1000.jpg", + "path": "static/external_cache/listings/2098230702317414385/gallery_4.jpg", + "sha256": "58e6343061648da0ede9e122472e276f9c594e5ff17157fbcdc8a82371552c4d", + "retrieved_at": "2026-09-06T05:08:10.091250+00:00" + }, + { + "listing_id": "2098234276795931129", + "index": 4, + "source_url": "https://www.compass.com/m/0/6838066b-f51a-456b-a052-f4843833d379/533x400.jpg", + "path": "static/external_cache/listings/2098234276795931129/gallery_4.jpg", + "sha256": "8e908ff8b77b5c6a5358c03bf45a49efde5869aed0de6474702127692afbddc0", + "retrieved_at": "2026-09-06T05:07:55.528070+00:00" + }, + { + "listing_id": "2098287082387157673", + "index": 4, + "source_url": "https://www.compass.com/m/0/353bc421-cb17-481e-8a0e-d638c95f350e/1500x1000.jpg", + "path": "static/external_cache/listings/2098287082387157673/gallery_4.jpg", + "sha256": "dab979f8bdb847b927d4fe0aefb5a25117df1b9e36d88250ff5b77a2ca705e03", + "retrieved_at": "2026-09-06T05:05:48.774768+00:00" + }, + { + "listing_id": "2098617463065591129", + "index": 4, + "source_url": "https://www.compass.com/m/0/dd625be2-c23a-4740-a725-da7a9e7322b6/1498x1000.jpg", + "path": "static/external_cache/listings/2098617463065591129/gallery_4.jpg", + "sha256": "7ee4b07b7a4929efc6d1742bc2cccc83e679c922921ca2c066765c2c4145d898", + "retrieved_at": "2026-09-06T05:03:32.030440+00:00" + }, + { + "listing_id": "2098670859852220705", + "index": 4, + "source_url": "https://www.compass.com/m/0/680fa11e-652c-4b42-8bd4-b8edfd25852e/1499x1000.jpg", + "path": "static/external_cache/listings/2098670859852220705/gallery_4.jpg", + "sha256": "c58f285780ed0bc08ba335992c21ed2dd76c984f0041299758d33428ae71e3d3", + "retrieved_at": "2026-09-06T05:03:46.619487+00:00" + }, + { + "listing_id": "2098677674774135873", + "index": 4, + "source_url": "https://www.compass.com/m/8b051692edbc7e48b663c7da53fd48fc50c36193_img_4_a913c/640x480.jpg", + "path": "static/external_cache/listings/2098677674774135873/gallery_4.jpg", + "sha256": "088df47008da2de62a20dd80bcc9b0ad9d2a619ceefedcf0c1918b027c826847", + "retrieved_at": "2026-09-06T05:06:36.050673+00:00" + }, + { + "listing_id": "2098678005436583905", + "index": 4, + "source_url": "https://www.compass.com/m/6099c07a887b28f75de07c8ac59c31c1738add02_img_4_99a32/640x480.jpg", + "path": "static/external_cache/listings/2098678005436583905/gallery_4.jpg", + "sha256": "a5f09401995665230fa0d144f4aa9416633b9a8870aca813819b9e17c74ac17b", + "retrieved_at": "2026-09-06T05:04:53.731557+00:00" + }, + { + "listing_id": "2098680140269799641", + "index": 4, + "source_url": "https://www.compass.com/m/0/cb8a26a5-8368-453c-810a-fb24636acd09/1500x1000.jpg", + "path": "static/external_cache/listings/2098680140269799641/gallery_4.jpg", + "sha256": "bb4d217e6f44fc8187ed0e42fc24db1c24d471162676feeb544c30f261d19052", + "retrieved_at": "2026-09-06T05:03:47.698903+00:00" + }, + { + "listing_id": "2098681291724144441", + "index": 4, + "source_url": "https://www.compass.com/m/67fec8af6eed1e7d113b7cc218c168eadebe4f2d_img_4_6ffd5/640x480.jpg", + "path": "static/external_cache/listings/2098681291724144441/gallery_4.jpg", + "sha256": "f5cb0e52fa79425381545d523fefb2f9862ff54cc0a9da77f9e12d6729e8aa41", + "retrieved_at": "2026-09-06T05:05:01.310310+00:00" + }, + { + "listing_id": "2098695916221535001", + "index": 4, + "source_url": "https://www.compass.com/m/1e0b73d275802cf9645513cf5e0bdb177c1be1e5_img_4_bd8cf/640x480.jpg", + "path": "static/external_cache/listings/2098695916221535001/gallery_4.jpg", + "sha256": "fe997440de6d1cbfa8b69feb51541a86dc27a99900ca43cb0466bfb2ea058b92", + "retrieved_at": "2026-09-06T05:06:31.691065+00:00" + }, + { + "listing_id": "2098698929351071737", + "index": 4, + "source_url": "https://www.compass.com/m/aed8fb6e3a64c6ec39a225f37264d56775776cf7_img_4_bd8cf/640x480.jpg", + "path": "static/external_cache/listings/2098698929351071737/gallery_4.jpg", + "sha256": "fe997440de6d1cbfa8b69feb51541a86dc27a99900ca43cb0466bfb2ea058b92", + "retrieved_at": "2026-09-06T05:06:30.415067+00:00" + }, + { + "listing_id": "2098711673928053369", + "index": 4, + "source_url": "https://www.compass.com/m/0/6610cdf7-c10b-4a1b-a85a-0bcba0d0012d/1500x1000.jpg", + "path": "static/external_cache/listings/2098711673928053369/gallery_4.jpg", + "sha256": "8e54cc0d4ecedd542699189968cd4269b109a6709ddce06353e5966b1e851744", + "retrieved_at": "2026-09-06T05:08:13.220368+00:00" + }, + { + "listing_id": "2098730215016681681", + "index": 4, + "source_url": "https://www.compass.com/m/0/9b6f4e4b-2fc2-48d1-b27f-557d146a46c0/810x458.jpg", + "path": "static/external_cache/listings/2098730215016681681/gallery_4.jpg", + "sha256": "91838ea1de1343c8d1639d20b169b5316be6a3d815323ba29c4a559fbd7817de", + "retrieved_at": "2026-09-06T05:04:20.972530+00:00" + }, + { + "listing_id": "2098738763159759137", + "index": 4, + "source_url": "https://www.compass.com/m/0/6b6d3751-037f-4200-8bf4-4330e38ee4a3/1497x1000.jpg", + "path": "static/external_cache/listings/2098738763159759137/gallery_4.jpg", + "sha256": "09ed8b617cb36be2dc1eba3e67dd1f0fbb09904ef218c760d430787464afa13b", + "retrieved_at": "2026-09-06T05:05:35.468435+00:00" + }, + { + "listing_id": "2098744464745260265", + "index": 4, + "source_url": "https://www.compass.com/m/53b398ee6bd498203a0d7b7c0c222d7719f4353d_img_4_54ea3/640x480.jpg", + "path": "static/external_cache/listings/2098744464745260265/gallery_4.jpg", + "sha256": "93ee7edbcbe78d9239e64c1761bc0def8b2b7ae8cb1a4f731a82b13abe3d0cca", + "retrieved_at": "2026-09-06T05:06:32.677153+00:00" + }, + { + "listing_id": "2098802882012995745", + "index": 4, + "source_url": "https://www.compass.com/m/0/2858217e-af9f-461d-a233-572d39b292a6/1500x1000.jpg", + "path": "static/external_cache/listings/2098802882012995745/gallery_4.jpg", + "sha256": "9f9a1cb9195c9621814d1c2adb8a00fb05a22629a0a9c5ff3d6c06b2e380e868", + "retrieved_at": "2026-09-06T05:06:12.837376+00:00" + }, + { + "listing_id": "2098815500249862745", + "index": 4, + "source_url": "https://www.compass.com/m/a13d8abd32031a0f002543403c740cf7201a6410_img_4_0b984/640x480.jpg", + "path": "static/external_cache/listings/2098815500249862745/gallery_4.jpg", + "sha256": "b6b81f473c421ff5e756e85a5e0004b9e465867e5a40fac4f3174d39f1c3219f", + "retrieved_at": "2026-09-06T05:08:28.774033+00:00" + }, + { + "listing_id": "2098864023212997433", + "index": 4, + "source_url": "https://www.compass.com/m/5897bb1c7cff53ce7a62c6a5bd0d92ea9f213e57_img_4_3cc58/640x480.jpg", + "path": "static/external_cache/listings/2098864023212997433/gallery_4.jpg", + "sha256": "bc6808d2e9b1f8cf3b9f37cb130d50b4cc5eea6d768f244f39154dcb9fcf0411", + "retrieved_at": "2026-09-06T05:07:25.106837+00:00" + }, + { + "listing_id": "2098881613679058521", + "index": 4, + "source_url": "https://www.compass.com/m/ef60e4c9601c2ed337e537127d14a9de889f16f3_img_4_ff65d/640x480.jpg", + "path": "static/external_cache/listings/2098881613679058521/gallery_4.jpg", + "sha256": "ac4d7c231d732b8f1fd7a19357db6fa7ba67944e2b6d5cdac39340e0615bf6f4", + "retrieved_at": "2026-09-06T05:05:13.616023+00:00" + }, + { + "listing_id": "2098901119248348881", + "index": 4, + "source_url": "https://www.compass.com/m/ced5210984082a4ad35cfe53ac5c397eb7387d11_img_4_2500e/640x480.jpg", + "path": "static/external_cache/listings/2098901119248348881/gallery_4.jpg", + "sha256": "ba0fc362634b28b5406a6bc8b0269ecc14ac3e36ed53f4c92fa244de77384858", + "retrieved_at": "2026-09-06T05:06:58.462589+00:00" + }, + { + "listing_id": "2098911502742363449", + "index": 4, + "source_url": "https://www.compass.com/m/db145ff0ab02e6c00efa46e5d8c6b1505a262353_img_4_36d4b/640x480.jpg", + "path": "static/external_cache/listings/2098911502742363449/gallery_4.jpg", + "sha256": "ed8b2b097d950a76d4a6e30a683531459aab2edb42e6b04eb90ec859ad44a1ee", + "retrieved_at": "2026-09-06T05:08:23.205781+00:00" + }, + { + "listing_id": "2098948128386800481", + "index": 4, + "source_url": "https://www.compass.com/m/859e2f2777e8e33ec78fb7d4f9c82b8ab8818527_img_4_aa166/640x480.jpg", + "path": "static/external_cache/listings/2098948128386800481/gallery_4.jpg", + "sha256": "7dd7529e198cbe2aebd7627a72d76c94e80b52e24a67988f19f3b35201fa5187", + "retrieved_at": "2026-09-06T05:08:20.896338+00:00" + }, + { + "listing_id": "2098989821731341033", + "index": 4, + "source_url": "https://www.compass.com/m/248bf9170f8e41c089bc143b6cb3206e0b7fbd93_img_4_51b48/640x480.jpg", + "path": "static/external_cache/listings/2098989821731341033/gallery_4.jpg", + "sha256": "a71d59e0b216d0cfdd5287383a26d9fb65d0bbf57ef72944e3e4157dae6f17ad", + "retrieved_at": "2026-09-06T05:05:11.637536+00:00" + }, + { + "listing_id": "2099114825093631745", + "index": 4, + "source_url": "https://www.compass.com/m/60a6648eb9f269aeee48aae9fda79a871db4e8e4_img_4_86b40/640x480.jpg", + "path": "static/external_cache/listings/2099114825093631745/gallery_4.jpg", + "sha256": "cbf675f11433cd9b6e6f5ec2ecedd449c002455bd27c2e02a45eeb353d55bae6", + "retrieved_at": "2026-09-06T05:08:36.535640+00:00" + }, + { + "listing_id": "2099253015792069057", + "index": 4, + "source_url": "https://www.compass.com/m/0/c22d960a-2bf9-4886-aeff-bd794d34ef26/1024x685.jpg", + "path": "static/external_cache/listings/2099253015792069057/gallery_4.jpg", + "sha256": "9a524b0090b906c885f4477cb7a0e7d0ce73c670e60cefd6cb2fbf4753a88c0e", + "retrieved_at": "2026-09-06T05:05:36.861553+00:00" + }, + { + "listing_id": "2099310324706805097", + "index": 4, + "source_url": "https://www.compass.com/m/0/2f1d3753-8818-4217-ba53-4ce21005ee73/1500x1000.jpg", + "path": "static/external_cache/listings/2099310324706805097/gallery_4.jpg", + "sha256": "d03883a0616dfe01bdb2e98ba73c5aac342295d8e52d16191d09798d892ed37c", + "retrieved_at": "2026-09-06T05:03:43.595287+00:00" + }, + { + "listing_id": "2099346785984239625", + "index": 4, + "source_url": "https://www.compass.com/m/3b94d69dda8c4f97d66ec0c24296d20e765445ae_img_4_62f5f/640x480.jpg", + "path": "static/external_cache/listings/2099346785984239625/gallery_4.jpg", + "sha256": "b5ca727bc91fb174efe309d2ead6da0850dffaeba5749203fbbf94f9e8621ee6", + "retrieved_at": "2026-09-06T05:06:29.383414+00:00" + }, + { + "listing_id": "2099359967020959689", + "index": 4, + "source_url": "https://www.compass.com/m/0/863a6a6a-85e1-4c78-9c4f-4f70b20107c1/1499x1000.jpg", + "path": "static/external_cache/listings/2099359967020959689/gallery_4.jpg", + "sha256": "76cd73998ea244ab9f5fdaaff006429340f059224dd0f596fa16d9c406b659d8", + "retrieved_at": "2026-09-06T05:08:16.325506+00:00" + }, + { + "listing_id": "2099379035467802521", + "index": 4, + "source_url": "https://www.compass.com/m/ec243873d079eef0983627f3346cbb9ea39b13a2_img_4_cc263/640x480.jpg", + "path": "static/external_cache/listings/2099379035467802521/gallery_4.jpg", + "sha256": "bff57ef132c7e0051ebfbca8a38de2a8e501ce022c0782f135094354db687e5a", + "retrieved_at": "2026-09-06T05:08:36.685003+00:00" + }, + { + "listing_id": "2099384123821420169", + "index": 4, + "source_url": "https://www.compass.com/m/66449f4fedbf259c7faa4147373d4253946c5c2a_img_4_d780f/640x480.jpg", + "path": "static/external_cache/listings/2099384123821420169/gallery_4.jpg", + "sha256": "26a2be67f12e89bc03666660b066a87f74b1759038470f817aac4e76976661ad", + "retrieved_at": "2026-09-06T05:08:20.507486+00:00" + }, + { + "listing_id": "2099394270681129497", + "index": 4, + "source_url": "https://www.compass.com/m/2a6b6fd85982dada56b2b871743a62f4c4a73168_img_4_9f423/640x480.jpg", + "path": "static/external_cache/listings/2099394270681129497/gallery_4.jpg", + "sha256": "c49d8149d2f0325dabf5f617472f54a85b848f1b0c425a46476b386507d03dc2", + "retrieved_at": "2026-09-06T05:08:21.967593+00:00" + }, + { + "listing_id": "2099403464016671481", + "index": 4, + "source_url": "https://www.compass.com/m/0/eb10820f-5904-4fd6-8be4-2370113231ab/1333x1000.jpg", + "path": "static/external_cache/listings/2099403464016671481/gallery_4.jpg", + "sha256": "0c5785f635d03af140b47bceb5d9d256359f565746dcc4c77454b797014291fe", + "retrieved_at": "2026-09-06T05:08:10.273290+00:00" + }, + { + "listing_id": "2099406452962035657", + "index": 4, + "source_url": "https://www.compass.com/m/e3a213860ed876caaecccf9ef09ce11b18dedb46_img_4_cb558/640x480.jpg", + "path": "static/external_cache/listings/2099406452962035657/gallery_4.jpg", + "sha256": "4fc300b84811410103ce39d2b3897717a5211648d1b70e575596e80c9d01d8e0", + "retrieved_at": "2026-09-06T05:06:34.026663+00:00" + }, + { + "listing_id": "2099410597756723409", + "index": 4, + "source_url": "https://www.compass.com/m/0/bb937119-f5f8-411b-9c43-2ffd439d16b1/1500x1000.jpg", + "path": "static/external_cache/listings/2099410597756723409/gallery_4.jpg", + "sha256": "276b7129a6ed536cb9ad83b16e1c11530750e9ebeef2fa74e94b0e6c0cee9b0c", + "retrieved_at": "2026-09-06T05:03:51.772318+00:00" + }, + { + "listing_id": "2099417930314207729", + "index": 4, + "source_url": "https://www.compass.com/m/0/06322224-a378-409c-bd3e-3255fe306a68/1000x702.jpg", + "path": "static/external_cache/listings/2099417930314207729/gallery_4.jpg", + "sha256": "606e28c00c94fc568374da9747d3337f15ec46d0bc1806dbe264c07e30adfddf", + "retrieved_at": "2026-09-06T05:08:09.028556+00:00" + }, + { + "listing_id": "2099423527520637969", + "index": 4, + "source_url": "https://www.compass.com/m/322c404d26d0a56acce21b2bd08a0fa4703e910f_img_4_fc8bf/640x480.jpg", + "path": "static/external_cache/listings/2099423527520637969/gallery_4.jpg", + "sha256": "5cd57960874afe96e85dca2ba9739f7843caad4043c9b5d240d80d28a5034c54", + "retrieved_at": "2026-09-06T05:06:59.470685+00:00" + }, + { + "listing_id": "2099450121278468961", + "index": 4, + "source_url": "https://www.compass.com/m/0/1aad46f1-ec9e-4316-a304-bab19db3f908/1500x1000.jpg", + "path": "static/external_cache/listings/2099450121278468961/gallery_4.jpg", + "sha256": "2e63c9924abf56373c16e238d8dbbc8f6da171de7346149b5ce35f4b541377d3", + "retrieved_at": "2026-09-06T05:07:46.264601+00:00" + }, + { + "listing_id": "2099456968421234601", + "index": 4, + "source_url": "https://www.compass.com/m/111a009dc2eec77e098781aee372eaefee12b142_img_4_46a18/640x480.jpg", + "path": "static/external_cache/listings/2099456968421234601/gallery_4.jpg", + "sha256": "1734b692220b5611cb205770f5dca139aa408ca3f9f0cc1af8804e5d63a92f40", + "retrieved_at": "2026-09-06T05:06:18.654530+00:00" + }, + { + "listing_id": "2099471767385500449", + "index": 4, + "source_url": "https://www.compass.com/m/0/e31f1641-2971-4fd9-82eb-b0dd7f7d0abe/1500x998.jpg", + "path": "static/external_cache/listings/2099471767385500449/gallery_4.jpg", + "sha256": "e5dc336f289f7fed27926ff0cb703ba2f17ca2683a2278587467204706c6a69c", + "retrieved_at": "2026-09-06T05:08:06.481200+00:00" + }, + { + "listing_id": "2099476263469305881", + "index": 4, + "source_url": "https://www.compass.com/m/0/00ce0799-1b67-4246-b8a7-ae3a5cb9db92/1499x1000.jpg", + "path": "static/external_cache/listings/2099476263469305881/gallery_4.jpg", + "sha256": "973e086cbb45b4420f481b16169732ca60b80757a78a9b44be3fc6bde4c2455b", + "retrieved_at": "2026-09-06T05:07:46.791300+00:00" + }, + { + "listing_id": "2099481009802507913", + "index": 4, + "source_url": "https://www.compass.com/m/e74fe9b3ddbcce6450fc4b2e73db61cc71f9f78f_img_4_63152/640x480.jpg", + "path": "static/external_cache/listings/2099481009802507913/gallery_4.jpg", + "sha256": "1d270fe67c1a1ce18bb24749de7a799ad4804be23d4a62059e40712dd6fb99b1", + "retrieved_at": "2026-09-06T05:04:44.158234+00:00" + }, + { + "listing_id": "2099481680387729625", + "index": 4, + "source_url": "https://www.compass.com/m/0/acf0dc5d-3159-4063-ad36-b9a9157f040e/1143x861.jpg", + "path": "static/external_cache/listings/2099481680387729625/gallery_4.jpg", + "sha256": "1687dd298b0841a14b5266ff5038999b464be553c418fd36991ab4620064b8e7", + "retrieved_at": "2026-09-06T05:03:34.552014+00:00" + }, + { + "listing_id": "2099485044697872137", + "index": 4, + "source_url": "https://www.compass.com/m/0/6e648b51-5fb8-4f5f-a434-c324fbe7d871/1334x1000.jpg", + "path": "static/external_cache/listings/2099485044697872137/gallery_4.jpg", + "sha256": "a347433947f415ecf64e123ae155a0c4815a08e6ec8e73f72ed2addb5165abaa", + "retrieved_at": "2026-09-06T05:04:31.518455+00:00" + }, + { + "listing_id": "2099491363274197241", + "index": 4, + "source_url": "https://www.compass.com/m/96357d33dd07c56d2a0501d348c560c6b8b7bf7a_img_4_ab63d/640x480.jpg", + "path": "static/external_cache/listings/2099491363274197241/gallery_4.jpg", + "sha256": "d3ba6f3c729faccc0c92d134394e2000076642a957317fd523de14d942b425f2", + "retrieved_at": "2026-09-06T05:06:36.868919+00:00" + }, + { + "listing_id": "2099515477745254425", + "index": 4, + "source_url": "https://www.compass.com/m/0/b9a26f8a-fb34-4d1f-b668-9963427321cf/667x1000.jpg", + "path": "static/external_cache/listings/2099515477745254425/gallery_4.jpg", + "sha256": "bbd4d338cf827b66585cba1df9b27530ffd344924d300968da7a84c83a6ffcc1", + "retrieved_at": "2026-09-06T05:03:37.156395+00:00" + }, + { + "listing_id": "2099522833069768625", + "index": 4, + "source_url": "https://www.compass.com/m/a638f6f6026946e400a9828f595870d23cf8d012_img_4_6f403/640x480.jpg", + "path": "static/external_cache/listings/2099522833069768625/gallery_4.jpg", + "sha256": "5165fbcd8b90b8b9c1002b5ff4516f7c9cf2fdcf8b7f907cea7d88ef41ed22c8", + "retrieved_at": "2026-09-06T05:04:02.687699+00:00" + }, + { + "listing_id": "2099535879486057233", + "index": 4, + "source_url": "https://www.compass.com/m/6a992c3a5d13244328440329e4ed8f177be207f3_img_4_ca579/640x480.jpg", + "path": "static/external_cache/listings/2099535879486057233/gallery_4.jpg", + "sha256": "65b707ed81dc4d8df0bea1a6dea6f925557e85f79c74662f3a1980d44ae15196", + "retrieved_at": "2026-09-06T05:04:41.338130+00:00" + }, + { + "listing_id": "2099544667215444585", + "index": 4, + "source_url": "https://www.compass.com/m/0/aa1f6f28-1ff5-47dd-8bd7-1c53298a53cd/1500x1000.jpg", + "path": "static/external_cache/listings/2099544667215444585/gallery_4.jpg", + "sha256": "9e0d9636f153becb6a1ea10f7b90df027688b3ffc258f4ad22a60ca135f4b4c1", + "retrieved_at": "2026-09-06T05:03:43.058100+00:00" + }, + { + "listing_id": "2099552630101970601", + "index": 4, + "source_url": "https://www.compass.com/m/0/f49a4748-26b3-4209-90ad-e6f7e01d2848/412x553.jpg", + "path": "static/external_cache/listings/2099552630101970601/gallery_4.jpg", + "sha256": "2baee0b556825415774f4661b3b73fdf578c57dafecaba8c462d228fa8bd9817", + "retrieved_at": "2026-09-06T05:08:01.555451+00:00" + }, + { + "listing_id": "2099572245494376561", + "index": 4, + "source_url": "https://www.compass.com/m/0/0c6a4e9a-7594-4d10-be2a-568d92f3f0ce/1500x1000.jpg", + "path": "static/external_cache/listings/2099572245494376561/gallery_4.jpg", + "sha256": "4b9cfea0b0b0304b2023720fefab27b083dbcaa4f9f42f07ea5b540a699b9418", + "retrieved_at": "2026-09-06T05:04:26.632552+00:00" + }, + { + "listing_id": "2099586372295740273", + "index": 4, + "source_url": "https://www.compass.com/m/c03bf83f19dbdef4100911aa5f003e419a12dc27_img_4_d04fa/640x480.jpg", + "path": "static/external_cache/listings/2099586372295740273/gallery_4.jpg", + "sha256": "8b9f7a4f1e2ddc1b2691773d17f666e1d1bc10a8d26d175ac2619cfab7b06ce2", + "retrieved_at": "2026-09-06T05:06:38.033190+00:00" + }, + { + "listing_id": "2099646221877080193", + "index": 4, + "source_url": "https://www.compass.com/m/854fceed31ca539adeefc2e4aeb068bc1030fe11_img_4_664a6/640x480.jpg", + "path": "static/external_cache/listings/2099646221877080193/gallery_4.jpg", + "sha256": "b4aecb252e70b566c0f17fc3ae7811db67efec8314e8dea6b3bfcd46998f5b52", + "retrieved_at": "2026-09-06T05:06:56.670246+00:00" + }, + { + "listing_id": "2099650396409116897", + "index": 4, + "source_url": "https://www.compass.com/m/0/d3b8064d-994a-4fef-9fa8-ef77032340c2/658x1000.jpg", + "path": "static/external_cache/listings/2099650396409116897/gallery_4.jpg", + "sha256": "e72fc17c5b3272c3f1a9d2887f67f312f8276ab8b74919138b4ef74da1268973", + "retrieved_at": "2026-09-06T05:03:33.266593+00:00" + }, + { + "listing_id": "2099654964609848473", + "index": 4, + "source_url": "https://www.compass.com/m/702524ad7687edfd960dd89d6b2402c784a4b145_img_4_a97fa/640x480.jpg", + "path": "static/external_cache/listings/2099654964609848473/gallery_4.jpg", + "sha256": "e3c0f993068dab191cdd660b8dd41ac9d8120cc1e9a85410ff62aa713e91cf3f", + "retrieved_at": "2026-09-06T05:05:09.098264+00:00" + }, + { + "listing_id": "2099661280199638449", + "index": 4, + "source_url": "https://www.compass.com/m/dd2867e11349d61618b4087d57869363043e0a61_img_4_e27e0/640x480.jpg", + "path": "static/external_cache/listings/2099661280199638449/gallery_4.jpg", + "sha256": "d7fa2c1218433f40f56572d071a71b00df8645d2192de29fc3d9fd529f9102ab", + "retrieved_at": "2026-09-06T05:04:46.068159+00:00" + }, + { + "listing_id": "2099679468665145089", + "index": 4, + "source_url": "https://www.compass.com/m/0b4a4da45e1f0a866f7a09c5f7dc01b70ae4da4d_img_4_ff99c/640x480.jpg", + "path": "static/external_cache/listings/2099679468665145089/gallery_4.jpg", + "sha256": "c8df98bc6ceedd0a9e8df17fc94b45dc2e39ed64f61619373d41db6a0175857a", + "retrieved_at": "2026-09-06T05:06:17.609554+00:00" + }, + { + "listing_id": "2099685450614835857", + "index": 4, + "source_url": "https://www.compass.com/m/0/11a7ea68-0fd0-4307-b79f-3e7a9a70b8d3/668x1000.jpg", + "path": "static/external_cache/listings/2099685450614835857/gallery_4.jpg", + "sha256": "32fc9d9f0ca1b899f2e147c75d6017ebed28b8364fecf53550ac5f76147c75a5", + "retrieved_at": "2026-09-06T05:03:35.103398+00:00" + }, + { + "listing_id": "2099729084471069345", + "index": 4, + "source_url": "https://www.compass.com/m/3fdd3deccf85f4af9af9bf09adc0dec3543d8ebc_img_4_d54cc/640x480.jpg", + "path": "static/external_cache/listings/2099729084471069345/gallery_4.jpg", + "sha256": "1e822d3d1f9fa0767ec7c41b54641636b99c8d014dc572995e6eddd89c92d206", + "retrieved_at": "2026-09-06T05:08:34.854148+00:00" + }, + { + "listing_id": "2099795740904119657", + "index": 4, + "source_url": "https://www.compass.com/m/3df78b65490f20738eadbedcfc5664f86f74c3b6_img_4_33016/640x480.jpg", + "path": "static/external_cache/listings/2099795740904119657/gallery_4.jpg", + "sha256": "993d0ca44fd1ca12f5b010fc2f13334d02983e45f31496e7d39dc5e655e992d7", + "retrieved_at": "2026-09-06T05:06:35.245432+00:00" + }, + { + "listing_id": "2100062482926279673", + "index": 4, + "source_url": "https://www.compass.com/m/0/e4b98c2c-343d-4bc3-a244-0ab0d4deda21/774x1000.jpg", + "path": "static/external_cache/listings/2100062482926279673/gallery_4.jpg", + "sha256": "32718c1d6f022bf949acdfc50262be1ab5d31d0f3f9b2535a5a11cd374fcd2f3", + "retrieved_at": "2026-09-06T05:08:13.334799+00:00" + }, + { + "listing_id": "2100071455280774377", + "index": 4, + "source_url": "https://www.compass.com/m/6a7fb59c1383f848e2968db3040bd0f8d6e71910_img_4_77567/640x480.jpg", + "path": "static/external_cache/listings/2100071455280774377/gallery_4.jpg", + "sha256": "7474aaa592f5625b66e875e625613acb6afda59c6dae7f8cfb4b856dee369a41", + "retrieved_at": "2026-09-06T05:08:26.677746+00:00" + }, + { + "listing_id": "2100080952913512617", + "index": 4, + "source_url": "https://www.compass.com/m/0/7bb736a5-3ddc-448e-b726-e0cdad76301f/1024x683.jpg", + "path": "static/external_cache/listings/2100080952913512617/gallery_4.jpg", + "sha256": "57d548be6629b66e7cc08c3ef2c38689d8842ee874da47647f737e6850ed198d", + "retrieved_at": "2026-09-06T05:05:26.678834+00:00" + }, + { + "listing_id": "2100089700579120961", + "index": 4, + "source_url": "https://www.compass.com/m/5e563e196bbe7aa567f36dbd94cf15c9f6e2ed7d_img_4_27b98/640x480.jpg", + "path": "static/external_cache/listings/2100089700579120961/gallery_4.jpg", + "sha256": "faa02184ae1684ccec7efadaf84dfffaf53ab3f6c1e7326c239c77369b907b5d", + "retrieved_at": "2026-09-06T05:06:27.531357+00:00" + }, + { + "listing_id": "2100114380475873521", + "index": 4, + "source_url": "https://www.compass.com/m/1243f308904bc7ed88ceff1cfcb92173c29d26ec_img_4_2d684/640x480.jpg", + "path": "static/external_cache/listings/2100114380475873521/gallery_4.jpg", + "sha256": "e1c2d50105b619e1c6f8af40f7fee2429e5637a2ef36e16406c0affdc257e8f2", + "retrieved_at": "2026-09-06T05:04:04.845634+00:00" + }, + { + "listing_id": "2100118003809190737", + "index": 4, + "source_url": "https://www.compass.com/m/84b70ac42cf4b68f197d44e76eaa99601d8ed7a1_img_4_efd2f/640x480.jpg", + "path": "static/external_cache/listings/2100118003809190737/gallery_4.jpg", + "sha256": "d6102d1c855f3612203dbfa8e9191110bc6568d8bd20accb25a3ca93ff7bbf84", + "retrieved_at": "2026-09-06T05:06:26.830382+00:00" + }, + { + "listing_id": "2100124806047513737", + "index": 4, + "source_url": "https://www.compass.com/m/0/82636b8f-8022-4c7b-a7a4-0303f22e7aab/667x1000.jpg", + "path": "static/external_cache/listings/2100124806047513737/gallery_4.jpg", + "sha256": "2855e141605c8d7fd7ee0470c6adb8c24635ba6e01f9e315e2990ca72fd98b37", + "retrieved_at": "2026-09-06T05:07:53.226146+00:00" + }, + { + "listing_id": "2100128100690349753", + "index": 4, + "source_url": "https://www.compass.com/m/1965333192ec23aa16b41923b243fb630d097a38_img_4_0ba38/640x480.jpg", + "path": "static/external_cache/listings/2100128100690349753/gallery_4.jpg", + "sha256": "49db253d15d431e725fd0e46f3a6b1d82461b4568dc9b9ddb36ab6d71474dd48", + "retrieved_at": "2026-09-06T05:06:19.720449+00:00" + }, + { + "listing_id": "2100132165280906185", + "index": 4, + "source_url": "https://www.compass.com/m/2be9d7ccdf8f1f59d206fcf6988f912f540ee334_img_4_81ff4/640x480.jpg", + "path": "static/external_cache/listings/2100132165280906185/gallery_4.jpg", + "sha256": "bcb1f9b4acccd18b87537ac3bb08b833739ec7054f77fcbb1605c29fb460642e", + "retrieved_at": "2026-09-06T05:06:30.413703+00:00" + }, + { + "listing_id": "2100132827855353609", + "index": 4, + "source_url": "https://www.compass.com/m/0/95987ddf-11bc-4599-b17a-d215263fd9b6/1500x1000.jpg", + "path": "static/external_cache/listings/2100132827855353609/gallery_4.jpg", + "sha256": "a37ab02ae383581120a0f22262740029cc83ba388bd37ed763e9b602bc4bb36e", + "retrieved_at": "2026-09-06T05:06:07.304804+00:00" + }, + { + "listing_id": "2100134242526915801", + "index": 4, + "source_url": "https://www.compass.com/m/0/6a507d31-3a3a-41cd-9ed8-2c2afa766356/1500x1000.jpg", + "path": "static/external_cache/listings/2100134242526915801/gallery_4.jpg", + "sha256": "037f61f923f75b58e701e20b509990c1c18c45bf8b73dcd1006125d0e4b00f82", + "retrieved_at": "2026-09-06T05:06:47.469892+00:00" + }, + { + "listing_id": "2100141366401049057", + "index": 4, + "source_url": "https://www.compass.com/m/0/ef0e191d-596d-4175-b76a-78c2cf83e591/1499x1000.jpg", + "path": "static/external_cache/listings/2100141366401049057/gallery_4.jpg", + "sha256": "47c1693a0f5895dd879a4eacc1d154cec7696c96dcc119d9212a87a9d400c380", + "retrieved_at": "2026-09-06T05:03:48.210672+00:00" + }, + { + "listing_id": "2100146160419465409", + "index": 4, + "source_url": "https://www.compass.com/m/0/8822699e-6f46-460a-bb79-b2fc5c57e666/1499x1000.jpg", + "path": "static/external_cache/listings/2100146160419465409/gallery_4.jpg", + "sha256": "dc35ec22b51a30b97d4b83a8d4574ef6bf625f5496a6a583d385470b189825b2", + "retrieved_at": "2026-09-06T05:03:32.053271+00:00" + }, + { + "listing_id": "2100147041265506201", + "index": 4, + "source_url": "https://www.compass.com/m/14a000d8b9b2c22ec1535db0f7200da74da714cb_img_4_75ecc/640x480.jpg", + "path": "static/external_cache/listings/2100147041265506201/gallery_4.jpg", + "sha256": "5699ac0092199304841227f7ad055a2ccae58b86410e75753fbdf1646aba3b7d", + "retrieved_at": "2026-09-06T05:06:57.117677+00:00" + }, + { + "listing_id": "2100152382590403177", + "index": 4, + "source_url": "https://www.compass.com/m/591b516180ee870a3155f5ac57d566a66657bf9b_img_4_8ef58/640x480.jpg", + "path": "static/external_cache/listings/2100152382590403177/gallery_4.jpg", + "sha256": "bd043a4c480cbcdfdd7ad2f861f196cba29068dc9b7a2d0491132d0ea7a553eb", + "retrieved_at": "2026-09-06T05:06:17.665686+00:00" + }, + { + "listing_id": "2100185774790250753", + "index": 4, + "source_url": "https://www.compass.com/m/047911df414e465ed40ff271f75cd282fca9c193_img_4_c3218/640x480.jpg", + "path": "static/external_cache/listings/2100185774790250753/gallery_4.jpg", + "sha256": "ab6da43541355959ed5a10cc8a55526e14be0fa740b4736a0b3009bafc4a1be7", + "retrieved_at": "2026-09-06T05:06:20.111350+00:00" + }, + { + "listing_id": "2100190828864379729", + "index": 4, + "source_url": "https://www.compass.com/m/13c8c8a926bc7844e0cb0110f5ffb712890b7455_img_4_fefd7/640x480.jpg", + "path": "static/external_cache/listings/2100190828864379729/gallery_4.jpg", + "sha256": "dcde0d38122c35d05aa978762c5416c1abe3a25f2af36de06791a08c457ff57b", + "retrieved_at": "2026-09-06T05:06:34.638950+00:00" + }, + { + "listing_id": "2100193524907712233", + "index": 4, + "source_url": "https://www.compass.com/m/0/8992657b-131a-4056-b175-6a1ab396b0fe/1500x1000.jpg", + "path": "static/external_cache/listings/2100193524907712233/gallery_4.jpg", + "sha256": "ce6c255b323405263bacd8717f1dd3436c329cc2f98eddde59caba52f135abfb", + "retrieved_at": "2026-09-06T05:03:37.533900+00:00" + }, + { + "listing_id": "2100200675160687425", + "index": 4, + "source_url": "https://www.compass.com/m/f44206a0c98add3c5dfb2fd3191b5490416f7f62_img_4_83355/640x480.jpg", + "path": "static/external_cache/listings/2100200675160687425/gallery_4.jpg", + "sha256": "3aae720db0cb2243b441b5f77b4a3593a875b864b96ba0fcaee9120f85ec79de", + "retrieved_at": "2026-09-06T05:06:53.671307+00:00" + }, + { + "listing_id": "2100209925689857969", + "index": 4, + "source_url": "https://www.compass.com/m/0/6f9ca6e6-75c3-4b84-b5db-562a876ee53f/1500x1000.jpg", + "path": "static/external_cache/listings/2100209925689857969/gallery_4.jpg", + "sha256": "adac1ee07fa9dd99f92d530d253300e10b17d5527c33239a6c4fdc38ee11b45d", + "retrieved_at": "2026-09-06T05:08:00.802484+00:00" + }, + { + "listing_id": "2100217447100274601", + "index": 4, + "source_url": "https://www.compass.com/m/0/3cd6e9a3-4eab-4fe8-8466-893374935609/1500x1000.jpg", + "path": "static/external_cache/listings/2100217447100274601/gallery_4.jpg", + "sha256": "347179ffd91e21679fb6638f7c6cfdae6100b53ac67f1677363afabcdfd9a729", + "retrieved_at": "2026-09-06T05:08:12.536018+00:00" + }, + { + "listing_id": "2100222781369429673", + "index": 4, + "source_url": "https://www.compass.com/m/888d15a577f84ab7f8d44d3d4db9cc8fa85e8469_img_4_e011e/640x480.jpg", + "path": "static/external_cache/listings/2100222781369429673/gallery_4.jpg", + "sha256": "7c15759d59680a9397203625e1d9a6f9e7a06c2b1371026a233794e4fe3f52fa", + "retrieved_at": "2026-09-06T05:06:25.786627+00:00" + }, + { + "listing_id": "2100222800844142641", + "index": 4, + "source_url": "https://www.compass.com/m/27326da878cc1b916a042be2f183d6804e3db646_img_4_796d6/640x480.jpg", + "path": "static/external_cache/listings/2100222800844142641/gallery_4.jpg", + "sha256": "c6521ce58f80bd859f0a19ed7d94cd715c1423b8d87ec95cbaf1817fe6558c55", + "retrieved_at": "2026-09-06T05:07:25.987436+00:00" + }, + { + "listing_id": "2100222800844142641", + "index": 5, + "source_url": "https://www.compass.com/m/27326da878cc1b916a042be2f183d6804e3db646_img_5_52d5e/640x480.jpg", + "path": "static/external_cache/listings/2100222800844142641/gallery_5.jpg", + "sha256": "fac15af543f8f17b2db764fdeab2b1c9e49c356e64f3cfa31d9aa0ac678387e9", + "retrieved_at": "2026-09-06T05:07:27.420820+00:00" + }, + { + "listing_id": "2100222800844142641", + "index": 6, + "source_url": "https://www.compass.com/m/27326da878cc1b916a042be2f183d6804e3db646_img_6_52d51/640x480.jpg", + "path": "static/external_cache/listings/2100222800844142641/gallery_6.jpg", + "sha256": "1f70507e4b4c77a9106501bcfa1ec1dc722d185ea149e1bc87476194685081ba", + "retrieved_at": "2026-09-06T05:07:26.972945+00:00" + }, + { + "listing_id": "2100222800844142641", + "index": 7, + "source_url": "https://www.compass.com/m/27326da878cc1b916a042be2f183d6804e3db646_img_7_51c3e/640x480.jpg", + "path": "static/external_cache/listings/2100222800844142641/gallery_7.jpg", + "sha256": "46455df1b7f2879505a212efdea54d837906a08fe3f0f83e5bbfe2bb6a70d427", + "retrieved_at": "2026-09-06T05:07:27.906779+00:00" + }, + { + "listing_id": "2100223580422490329", + "index": 4, + "source_url": "https://www.compass.com/m/0/8a489119-36aa-43b8-bee0-5904bc027e07/1499x1000.jpg", + "path": "static/external_cache/listings/2100223580422490329/gallery_4.jpg", + "sha256": "a7d3af08a215e730f93726380569a3e42ca656497ec591a3711251dcfd2ac189", + "retrieved_at": "2026-09-06T05:03:40.792451+00:00" + }, + { + "listing_id": "2100224755796085721", + "index": 4, + "source_url": "https://www.compass.com/m/f8d29d3090ae9a9267b0515a9e5c6785f22ecb85_img_4_7fbe0/640x480.jpg", + "path": "static/external_cache/listings/2100224755796085721/gallery_4.jpg", + "sha256": "d26d5491d1bd2a03364fbdf44ab12d0f81da7eff922b5cb68f596f6acf6dd5da", + "retrieved_at": "2026-09-06T05:06:31.011652+00:00" + }, + { + "listing_id": "2100227614806075617", + "index": 4, + "source_url": "https://www.compass.com/m/e72f25ff2dc8e8f7a31f30c660e50411de0e2e20_img_4_4eaa4/640x480.jpg", + "path": "static/external_cache/listings/2100227614806075617/gallery_4.jpg", + "sha256": "be81b1c8cff178a67acff68061dd13ab8202e53fa364a742c3846be5c7403bf0", + "retrieved_at": "2026-09-06T05:06:17.820760+00:00" + }, + { + "listing_id": "2100231674963141689", + "index": 4, + "source_url": "https://www.compass.com/m/44c39f27688b52268d7b3743b3a97af618e5d9c6_img_4_affbe/640x480.jpg", + "path": "static/external_cache/listings/2100231674963141689/gallery_4.jpg", + "sha256": "0e75b9e3aa6d9e47487e5fc72de5667e9245655c2ea7a3776be9fc714b998bfb", + "retrieved_at": "2026-09-06T05:06:28.154993+00:00" + }, + { + "listing_id": "2100232556169721649", + "index": 4, + "source_url": "https://www.compass.com/m/6229052ced1f6aff3a163b63dbf448bc27a2b44e_img_4_9baa2/640x480.jpg", + "path": "static/external_cache/listings/2100232556169721649/gallery_4.jpg", + "sha256": "0b3fe804366b9ddda7569ffd95b911225890acb4d22bfc10293cab2f79c9cbc5", + "retrieved_at": "2026-09-06T05:04:10.787661+00:00" + }, + { + "listing_id": "2100237732100082185", + "index": 4, + "source_url": "https://www.compass.com/m/a9a3fa156897f7f25d26e01347340ea84ee9c858_img_4_c5a58/640x480.jpg", + "path": "static/external_cache/listings/2100237732100082185/gallery_4.jpg", + "sha256": "b2d15e13a71739dc3312a9d8097962a15fffb08a9381814a5db0686dcf77f09f", + "retrieved_at": "2026-09-06T05:07:01.611144+00:00" + }, + { + "listing_id": "2100277638428332313", + "index": 4, + "source_url": "https://www.compass.com/m/828e5b3ed9c38c896495ae9af6f9d7101f9b2ebd_img_4_ee397/640x480.jpg", + "path": "static/external_cache/listings/2100277638428332313/gallery_4.jpg", + "sha256": "2fa271962a0adc9c728151071f7f7ec1b095c1b762eae8e4da5caee3d5b27b02", + "retrieved_at": "2026-09-06T05:08:29.876232+00:00" + }, + { + "listing_id": "2100281232280226201", + "index": 4, + "source_url": "https://www.compass.com/m/d4a3c77a939f8e67ca847aa9ed73764c35a61091_img_4_0f06c/640x480.jpg", + "path": "static/external_cache/listings/2100281232280226201/gallery_4.jpg", + "sha256": "efab038edb1696a74ad3157a33635d2201429276aa607a0d03b08d9146b03b90", + "retrieved_at": "2026-09-06T05:06:22.057082+00:00" + }, + { + "listing_id": "2100294315240937585", + "index": 4, + "source_url": "https://www.compass.com/m/0/b7aa1daf-ed67-40e3-9ff8-5cde87f238bf/750x1000.jpg", + "path": "static/external_cache/listings/2100294315240937585/gallery_4.jpg", + "sha256": "21bcd841720745f41948a1db9de7864a300ac6d3d26c311ce8ae3e25d72e6e09", + "retrieved_at": "2026-09-06T05:03:50.030667+00:00" + }, + { + "listing_id": "2100300926747393081", + "index": 4, + "source_url": "https://www.compass.com/m/0/ee3b11f6-81b1-4dd8-949f-3e4c9537f1dc/1380x1000.jpg", + "path": "static/external_cache/listings/2100300926747393081/gallery_4.jpg", + "sha256": "957781ebf3c770ab9a3ac465106e1265bffb0ef4be1684feec85d41bce623c84", + "retrieved_at": "2026-09-06T05:07:55.699983+00:00" + }, + { + "listing_id": "2100304478156765497", + "index": 4, + "source_url": "https://www.compass.com/m/0/ee06114d-0339-4743-bab3-79fc703abb5f/400x562.jpg", + "path": "static/external_cache/listings/2100304478156765497/gallery_4.jpg", + "sha256": "16bcd30a03b38c61c9358018dc264179d2e80efb04f058f95583dc58f0d10548", + "retrieved_at": "2026-09-06T05:07:57.579746+00:00" + }, + { + "listing_id": "2100306091747647641", + "index": 4, + "source_url": "https://www.compass.com/m/0/5618941c-59e5-4d9e-ace8-61bc19bf9608/1024x683.jpg", + "path": "static/external_cache/listings/2100306091747647641/gallery_4.jpg", + "sha256": "e64d15baca5ea32b4724ab350fab7521d72919241193cb87da991e9d53454665", + "retrieved_at": "2026-09-06T05:05:54.765069+00:00" + }, + { + "listing_id": "2100307535628420929", + "index": 4, + "source_url": "https://www.compass.com/m/0/bf53150d-a802-4ed3-9443-4a3164e8ee7d/1500x1000.jpg", + "path": "static/external_cache/listings/2100307535628420929/gallery_4.jpg", + "sha256": "e22b94538b94b2d2434fa178d906545e93bb1eeb07e5bd5cb28ddb74bba1f355", + "retrieved_at": "2026-09-06T05:06:00.666420+00:00" + }, + { + "listing_id": "2100310813146184641", + "index": 4, + "source_url": "https://www.compass.com/m/3518b25f627e8ded1628a8fc0bb59304171a5c40_img_4_6a0b7/640x480.jpg", + "path": "static/external_cache/listings/2100310813146184641/gallery_4.jpg", + "sha256": "48150e5fd5cbd2d3ed46282602ebab732ad612760b21feacdc74750e02d7533b", + "retrieved_at": "2026-09-06T05:08:32.812596+00:00" + }, + { + "listing_id": "2100314198570186201", + "index": 4, + "source_url": "https://www.compass.com/m/0/4da0e0d6-5777-48bb-be82-4517066c5b34/667x1000.jpg", + "path": "static/external_cache/listings/2100314198570186201/gallery_4.jpg", + "sha256": "839198109cd85ab63ccbc5ff5441259cff8a612bf328128c644804f5874bbcab", + "retrieved_at": "2026-09-06T05:05:37.678089+00:00" + }, + { + "listing_id": "2100335854679972441", + "index": 4, + "source_url": "https://www.compass.com/m/1e914dfe3e71d9a02d5156ea453bf14b0195c501_img_4_7efc0/640x480.jpg", + "path": "static/external_cache/listings/2100335854679972441/gallery_4.jpg", + "sha256": "15fc2924d3c39977c4dba860045dc78afee7657191c7d206c2a65c3cc4f310c8", + "retrieved_at": "2026-09-06T05:06:28.014250+00:00" + }, + { + "listing_id": "2100340800888205793", + "index": 4, + "source_url": "https://www.compass.com/m/8d8f2a16e47bf80bd322ee0756a3b13eb4553909_img_4_b848f/640x480.jpg", + "path": "static/external_cache/listings/2100340800888205793/gallery_4.jpg", + "sha256": "e51f454ae8d04f471e7813a403d2549f3fa76ec40ed0a82780cf60ba9e6ff415", + "retrieved_at": "2026-09-06T05:04:51.325768+00:00" + }, + { + "listing_id": "2100342020893986929", + "index": 4, + "source_url": "https://www.compass.com/m/95bfb2eb362d322e0a0d51f6f7ee583e0f98966d_img_4_34ce8/640x480.jpg", + "path": "static/external_cache/listings/2100342020893986929/gallery_4.jpg", + "sha256": "bbebb94943ecc72fa5b16ff214103faa9986c639e27f52dc9715f776894411b6", + "retrieved_at": "2026-09-06T05:06:33.987148+00:00" + }, + { + "listing_id": "2100344984350719249", + "index": 4, + "source_url": "https://www.compass.com/m/fbf586e8169fddcd713dbe7a4f4e770d32c77b9f_img_4_faf99/640x480.jpg", + "path": "static/external_cache/listings/2100344984350719249/gallery_4.jpg", + "sha256": "b4e9e1cf5462790a7d47104e08ec1181a94bd2288f0cdc8e24e86653462927ab", + "retrieved_at": "2026-09-06T05:06:20.689120+00:00" + }, + { + "listing_id": "2100368551737515281", + "index": 4, + "source_url": "https://www.compass.com/m/4f0e251fdacaf6ff1f9e5187e3a43f73906a6885_img_4_5d1b2/640x480.jpg", + "path": "static/external_cache/listings/2100368551737515281/gallery_4.jpg", + "sha256": "e47440a94ba69c963801c863e361c3bc7975d25c19800fdbbd210382e1081930", + "retrieved_at": "2026-09-06T05:04:02.688883+00:00" + }, + { + "listing_id": "2100384433033349817", + "index": 4, + "source_url": "https://www.compass.com/m/1dd6336c954b0573a0c910eb02dee01d66db0a85_img_4_f380b/640x480.jpg", + "path": "static/external_cache/listings/2100384433033349817/gallery_4.jpg", + "sha256": "2f15e388cdb0b0e8e797b4d50f8ea1d408ba8ab416af61d214de5fd6c06f2588", + "retrieved_at": "2026-09-06T05:06:54.191116+00:00" + }, + { + "listing_id": "2100386460878470569", + "index": 4, + "source_url": "https://www.compass.com/m/64b9164d445de938c8591e7ae484a9b09bd3d94c_img_4_58c14/640x480.jpg", + "path": "static/external_cache/listings/2100386460878470569/gallery_4.jpg", + "sha256": "6299f1d44308ac2e569dea710abfc155317699c996b61b7b812e689c5ebc6b6c", + "retrieved_at": "2026-09-06T05:06:56.731939+00:00" + }, + { + "listing_id": "2100390728305882073", + "index": 4, + "source_url": "https://www.compass.com/m/12b06e554fb6d05df56d9a8dc4d0e0f6af49b1a8_img_4_bd8cf/640x480.jpg", + "path": "static/external_cache/listings/2100390728305882073/gallery_4.jpg", + "sha256": "fe997440de6d1cbfa8b69feb51541a86dc27a99900ca43cb0466bfb2ea058b92", + "retrieved_at": "2026-09-06T05:06:22.580298+00:00" + }, + { + "listing_id": "2100401887998411753", + "index": 4, + "source_url": "https://www.compass.com/m/ce7851addb92fef4f0e46fe758a9f68c7be303e5_img_4_325bf/640x480.jpg", + "path": "static/external_cache/listings/2100401887998411753/gallery_4.jpg", + "sha256": "b52ab43cdc3f7f65844b699e769275ee89b5917988627babe78f65c4498bce93", + "retrieved_at": "2026-09-06T05:04:13.255373+00:00" + }, + { + "listing_id": "2100406347311627777", + "index": 4, + "source_url": "https://www.compass.com/m/0/7572f933-9a11-487f-8979-98e34157c937/1500x1000.jpg", + "path": "static/external_cache/listings/2100406347311627777/gallery_4.jpg", + "sha256": "b6b10b12e51611fb7cb547a9f8953e64a64e192c95aae70f1380760d8aa1c299", + "retrieved_at": "2026-09-06T05:05:29.686936+00:00" + }, + { + "listing_id": "2100434722659137577", + "index": 4, + "source_url": "https://www.compass.com/m/0/e8bfeed9-09ac-4e2b-8120-f71682515449/1352x874.jpg", + "path": "static/external_cache/listings/2100434722659137577/gallery_4.jpg", + "sha256": "4774cf66ab30dab77301ef384d7fab5e66eac3b9f81d7a08a76d81c6ee64cf0d", + "retrieved_at": "2026-09-06T05:06:42.199310+00:00" + }, + { + "listing_id": "2100436354708491737", + "index": 4, + "source_url": "https://www.compass.com/m/505ae9b2c912fe9b1ed37a0fb605671435cd58d8_img_4_4272e/640x480.jpg", + "path": "static/external_cache/listings/2100436354708491737/gallery_4.jpg", + "sha256": "181de734a4cae31ed194c37bf11ac35c990e0f368c81e3c593b571a2fd411985", + "retrieved_at": "2026-09-06T05:08:27.445082+00:00" + }, + { + "listing_id": "2100437013713821513", + "index": 4, + "source_url": "https://www.compass.com/m/ddd21faaa4c69f5b1917816296432f246c85d220_img_4_883dc/640x480.jpg", + "path": "static/external_cache/listings/2100437013713821513/gallery_4.jpg", + "sha256": "2f95b3183e9b1e9cd86d9c6ad58b3e86b1b1eafccb5310bfd9b35aed0a81e534", + "retrieved_at": "2026-09-06T05:06:28.865230+00:00" + }, + { + "listing_id": "2100482077441763961", + "index": 4, + "source_url": "https://www.compass.com/m/0/187f9619-365e-4e73-9989-d0310c74acc3/1500x1000.jpg", + "path": "static/external_cache/listings/2100482077441763961/gallery_4.jpg", + "sha256": "727edde4a34e71d5334e97ba5f9b020674771a3e8a43ce72c27f322968461732", + "retrieved_at": "2026-09-06T05:08:08.856788+00:00" + }, + { + "listing_id": "2100484537790562329", + "index": 4, + "source_url": "https://www.compass.com/m/dc66a9704d70bfff83b8a7f53a46850cf97a8ba6_img_4_c9ee7/640x480.jpg", + "path": "static/external_cache/listings/2100484537790562329/gallery_4.jpg", + "sha256": "81f0f721542a265dc14cdb42497c632e8581342c697739a69e940c2e46d54f9f", + "retrieved_at": "2026-09-06T05:07:01.504217+00:00" + }, + { + "listing_id": "2100519969463620289", + "index": 4, + "source_url": "https://www.compass.com/m/0/b2546038-e4e1-458d-9233-de69c9b899dd/1152x768.jpg", + "path": "static/external_cache/listings/2100519969463620289/gallery_4.jpg", + "sha256": "fc66da05e009ad4518dac24a8e9a6f9c53fa3f04dcf04ac190f4977e0ba9e33a", + "retrieved_at": "2026-09-06T05:07:32.211975+00:00" + }, + { + "listing_id": "2100757345972475809", + "index": 4, + "source_url": "https://www.compass.com/m/aa79577552bd7db66e6e89c986c9685b3a6db15b_img_4_24d65/640x480.jpg", + "path": "static/external_cache/listings/2100757345972475809/gallery_4.jpg", + "sha256": "084267c40dfea2ce6492b7c960f0d6f6f0604083db7920f7ed3e8cf2d8a48c36", + "retrieved_at": "2026-09-06T05:06:19.822822+00:00" + }, + { + "listing_id": "2100796465066942449", + "index": 4, + "source_url": "https://www.compass.com/m/0/23580802-d8b1-4333-a609-babf4a6153ea/1333x1000.jpg", + "path": "static/external_cache/listings/2100796465066942449/gallery_4.jpg", + "sha256": "f43333d37041c0d81297d94a6b6d2c79b3336e2860f9993a134d4cdfdebda51e", + "retrieved_at": "2026-09-06T05:06:04.547331+00:00" + }, + { + "listing_id": "2100809739657962025", + "index": 4, + "source_url": "https://www.compass.com/m/660c6dbb5588acd7c9805bb8ff5b0b3487183f8c_img_4_e591a/640x480.jpg", + "path": "static/external_cache/listings/2100809739657962025/gallery_4.jpg", + "sha256": "b8575bb73abe95da90fca09215d437ad6051df01abf819a37c63569c49b4422e", + "retrieved_at": "2026-09-06T05:06:09.140606+00:00" + }, + { + "listing_id": "2100897890040020505", + "index": 4, + "source_url": "https://www.compass.com/m/13694cf4e62bd3b49725d43f7168e51d88cd1697_img_4_75b1b/640x480.jpg", + "path": "static/external_cache/listings/2100897890040020505/gallery_4.jpg", + "sha256": "16e8a99c96711f5273a9169d0301a0a88a2150ab434984fb813eb63140251929", + "retrieved_at": "2026-09-06T05:06:36.022451+00:00" + }, + { + "listing_id": "2100898745909489569", + "index": 4, + "source_url": "https://www.compass.com/m/0/61946f6a-5708-40ac-beaf-730bf63c1ff3/1500x1000.jpg", + "path": "static/external_cache/listings/2100898745909489569/gallery_4.jpg", + "sha256": "7ddaeb5f3d7d53f09cab2f01f7c20933e351aaa41c2dbf9259a6170ce0efb266", + "retrieved_at": "2026-09-06T05:05:27.293664+00:00" + }, + { + "listing_id": "2100902560301619993", + "index": 4, + "source_url": "https://www.compass.com/m/0/ee2d391a-a837-416d-a23c-3b5c6cb8f379/1333x1000.jpg", + "path": "static/external_cache/listings/2100902560301619993/gallery_4.jpg", + "sha256": "a9fae5dd7081f198ae17f905759b573a27b23bfe7d6569bb4e2fab50583d6ec7", + "retrieved_at": "2026-09-06T05:08:17.456714+00:00" + }, + { + "listing_id": "2100904592987192249", + "index": 4, + "source_url": "https://www.compass.com/m/0/c3bf2628-908f-44bd-b124-8a17565aec67/1500x1000.jpg", + "path": "static/external_cache/listings/2100904592987192249/gallery_4.jpg", + "sha256": "ee0aec2607d445c89bb4465eeea676b3cc14f43b63542f989a2824c21f4b876b", + "retrieved_at": "2026-09-06T05:03:59.305278+00:00" + }, + { + "listing_id": "2100916646095080217", + "index": 4, + "source_url": "https://www.compass.com/m/0/892cbffd-c8b6-472f-9027-da2be943ccb0/1500x1000.jpg", + "path": "static/external_cache/listings/2100916646095080217/gallery_4.jpg", + "sha256": "1fbb64cfafc25cd128c7071eebde5167455a6db9d38e3ea56c04f6fdd7b7308f", + "retrieved_at": "2026-09-06T05:06:06.392423+00:00" + }, + { + "listing_id": "2100920214605333337", + "index": 4, + "source_url": "https://www.compass.com/m/ce419a77b4f46daa73c3718bcacf91497c21312b_img_4_0f439/640x480.jpg", + "path": "static/external_cache/listings/2100920214605333337/gallery_4.jpg", + "sha256": "332fda7fcd717879cee40da18524094d6f0da57fb5b64d51f6c6f2d4067f7fde", + "retrieved_at": "2026-09-06T05:04:45.910656+00:00" + }, + { + "listing_id": "2100935784251144513", + "index": 4, + "source_url": "https://www.compass.com/m/d7bb09017287a5fb3e195d69e5b39741807d27ee_img_4_0aadf/640x480.jpg", + "path": "static/external_cache/listings/2100935784251144513/gallery_4.jpg", + "sha256": "9bc2b4168f5e39b2edc4a6603ccb7cf9b8dc847d7b8e34aad3933ce6e9a5b485", + "retrieved_at": "2026-09-06T05:06:46.237566+00:00" + }, + { + "listing_id": "2100954713380043057", + "index": 4, + "source_url": "https://www.compass.com/m/e4c31ca66d3bdbce8ba04beb54c3a242f0b84398_img_4_1d2cf/640x480.jpg", + "path": "static/external_cache/listings/2100954713380043057/gallery_4.jpg", + "sha256": "e7ef1ba7f752be0d1fd73ac6696da9cd8a304b4eee3af2eff8a15dd6c29f9273", + "retrieved_at": "2026-09-06T05:04:04.911329+00:00" + }, + { + "listing_id": "2100959649975304185", + "index": 4, + "source_url": "https://www.compass.com/m/8683359baa8241899ab808ce14b7c1d9522a5283_img_4_44a14/640x480.jpg", + "path": "static/external_cache/listings/2100959649975304185/gallery_4.jpg", + "sha256": "29f0da151ab3904352829f69dd548478a0aac1ad97a8043e791587a094e3361f", + "retrieved_at": "2026-09-06T05:08:28.801000+00:00" + }, + { + "listing_id": "2100973576222022945", + "index": 4, + "source_url": "https://www.compass.com/m/0/2bc45130-4184-4d3a-b002-77e4d85de734/1500x1000.jpg", + "path": "static/external_cache/listings/2100973576222022945/gallery_4.jpg", + "sha256": "3a63d54f7e528f84faad6bfdb2532f597061517a5313641b86082d7de947713c", + "retrieved_at": "2026-09-06T05:03:43.876299+00:00" + }, + { + "listing_id": "2100974601348362657", + "index": 4, + "source_url": "https://www.compass.com/m/dc2b7a700339dd65de3d8bad1927d2f41a3963c7_img_4_565a8/640x480.jpg", + "path": "static/external_cache/listings/2100974601348362657/gallery_4.jpg", + "sha256": "2b01ed10c54ce8742d91786410ee1a7ce10749eece4fc296269410cae8cba4d7", + "retrieved_at": "2026-09-06T05:08:26.691216+00:00" + }, + { + "listing_id": "2100985128207728865", + "index": 4, + "source_url": "https://www.compass.com/m/eb143496d7468e803f50f5a0f9bc1b43a3aea42c_img_4_cc800/640x480.jpg", + "path": "static/external_cache/listings/2100985128207728865/gallery_4.jpg", + "sha256": "961fae4dec9e06fbfb6224e102c0bf6c7f762bfd625b9a58d12e52be6f9288de", + "retrieved_at": "2026-09-06T05:10:21.673984+00:00" + }, + { + "listing_id": "2100988079496276937", + "index": 4, + "source_url": "https://www.compass.com/m/d06af68f916d686a68e8d2948524994cb89ed16e_img_4_5898e/640x480.jpg", + "path": "static/external_cache/listings/2100988079496276937/gallery_4.jpg", + "sha256": "1114e105f5d0bebbbed7f0ced453df31a2657874952563f2c3ac680a33ce41fb", + "retrieved_at": "2026-09-06T05:04:07.000751+00:00" + }, + { + "listing_id": "2100988736991838417", + "index": 4, + "source_url": "https://www.compass.com/m/0/b0a9aae9-4645-447f-9d22-835d2283aa89/1499x1000.jpg", + "path": "static/external_cache/listings/2100988736991838417/gallery_4.jpg", + "sha256": "daeaef7d8a5704489002b056f557415cc7a403ab01c7fef7c97a4db3dda2b15c", + "retrieved_at": "2026-09-06T05:08:11.967674+00:00" + }, + { + "listing_id": "2100991656814388401", + "index": 4, + "source_url": "https://www.compass.com/m/f2102e33a28f3798bf47334a6563873f7d2efe1e_img_4_d840e/640x480.jpg", + "path": "static/external_cache/listings/2100991656814388401/gallery_4.jpg", + "sha256": "73c00f3279a6f2657e293c06a8abada88eff16e1cf726900573034e7e009756f", + "retrieved_at": "2026-09-06T05:07:00.493176+00:00" + }, + { + "listing_id": "2101026366629892833", + "index": 4, + "source_url": "https://www.compass.com/m/7477f5aa532534b17905ceed337fdb2abc3f7b16_img_4_e0485/640x480.jpg", + "path": "static/external_cache/listings/2101026366629892833/gallery_4.jpg", + "sha256": "5e82c290f8d74b1d460a4a48f75a7c574c76a994d18c11bb0d9a11dd09cb6acf", + "retrieved_at": "2026-09-06T05:06:25.650193+00:00" + }, + { + "listing_id": "2101027647331923921", + "index": 4, + "source_url": "https://www.compass.com/m/0/dcbf86cc-2311-484b-9049-7e16993f3c76/1500x999.jpg", + "path": "static/external_cache/listings/2101027647331923921/gallery_4.jpg", + "sha256": "b6cc5f72cf44a294d3af6ed0a4dc1a84a3f505e6f20a73548ab18faa944b8aa9", + "retrieved_at": "2026-09-06T05:04:37.642876+00:00" + }, + { + "listing_id": "2101033665973524889", + "index": 4, + "source_url": "https://www.compass.com/m/6998fba56f26383144af5aa87d3e534cd6bb21f1_img_4_f4a31/640x480.jpg", + "path": "static/external_cache/listings/2101033665973524889/gallery_4.jpg", + "sha256": "690f41377b314e0d2e82f3030006130262eb959b106659ed2b58e83c158d2fe6", + "retrieved_at": "2026-09-06T05:06:54.445693+00:00" + }, + { + "listing_id": "2101088063918874001", + "index": 4, + "source_url": "https://www.compass.com/m/7b72265d9d4a10591c208997863bb8ce953f84c1_img_4_0c455/640x480.jpg", + "path": "static/external_cache/listings/2101088063918874001/gallery_4.jpg", + "sha256": "9302d3f982aa8fdf41b9be6b1abad3a087d39d8e34c18f852009d06f7c7259c2", + "retrieved_at": "2026-09-06T05:06:16.413389+00:00" + }, + { + "listing_id": "2101097044452224137", + "index": 4, + "source_url": "https://www.compass.com/m/0/413d62cc-a7f5-45cc-b47a-f9d878ef0664/1500x1000.jpg", + "path": "static/external_cache/listings/2101097044452224137/gallery_4.jpg", + "sha256": "87e8a4fec75d109591940b0082edcc3ad4818de143755b2b82903333d5fc468b", + "retrieved_at": "2026-09-06T05:04:37.862094+00:00" + }, + { + "listing_id": "2101106970285896585", + "index": 4, + "source_url": "https://www.compass.com/m/0/287376fe-7f94-4a94-a5b2-7e015116306c/1497x1000.jpg", + "path": "static/external_cache/listings/2101106970285896585/gallery_4.jpg", + "sha256": "21580813fc7b0938fb0c305f1b13e9ba44e04099e8d6dac8212701b8efe7a451", + "retrieved_at": "2026-09-06T05:08:14.301778+00:00" + }, + { + "listing_id": "2101115484588736313", + "index": 4, + "source_url": "https://www.compass.com/m/ca0c7e3a95b8c8adf2b238d42e0a977336db450b_img_4_ad344/640x480.jpg", + "path": "static/external_cache/listings/2101115484588736313/gallery_4.jpg", + "sha256": "1f17cc9f09572ff0d9f0854e74ce61be528942ced9ed868559583da57c098cc6", + "retrieved_at": "2026-09-06T05:08:19.332152+00:00" + }, + { + "listing_id": "2101115485070589113", + "index": 4, + "source_url": "https://www.compass.com/m/f3086db710c0536c8159b836c73a2fba51337a33_img_4_cb2b9/640x480.jpg", + "path": "static/external_cache/listings/2101115485070589113/gallery_4.jpg", + "sha256": "5117dc130f58b4dd1e571688a9f6bd9411340258711f86791ec2c6a3baca5f56", + "retrieved_at": "2026-09-06T05:08:19.904284+00:00" + }, + { + "listing_id": "2101117993239374921", + "index": 4, + "source_url": "https://www.compass.com/m/0/24b429c7-63d1-4df1-bc27-7ad2ae48c226/1500x998.jpg", + "path": "static/external_cache/listings/2101117993239374921/gallery_4.jpg", + "sha256": "84c3b42a54641eb6f425f2b27ddfc5dc5e379ec886019a0938fb8ff7e47f746d", + "retrieved_at": "2026-09-06T05:08:03.339244+00:00" + }, + { + "listing_id": "2101146075136535953", + "index": 4, + "source_url": "https://www.compass.com/m/67d828132744962ef9bf9f4f854cb7094e7ce0bb_img_4_06119/640x480.jpg", + "path": "static/external_cache/listings/2101146075136535953/gallery_4.jpg", + "sha256": "edf55b0cf402493c722069a6a893148288353a3b80577193ff18b7040d8bdd07", + "retrieved_at": "2026-09-06T05:05:17.201079+00:00" + }, + { + "listing_id": "2101198770811457321", + "index": 4, + "source_url": "https://www.compass.com/m/dfdc94e3b1087aa760e19f71aefa79119082c8b6_img_4_ddae7/640x480.jpg", + "path": "static/external_cache/listings/2101198770811457321/gallery_4.jpg", + "sha256": "de9b3fb8c52ffadba03d557b4dceefbadb851945e0b033f8fa589914086dd4e4", + "retrieved_at": "2026-09-06T05:08:34.598186+00:00" + }, + { + "listing_id": "2101206004601992545", + "index": 4, + "source_url": "https://www.compass.com/m/eca853f7bda82300c27c0c080cc3e53cc1e42620_img_4_2f55c/640x480.jpg", + "path": "static/external_cache/listings/2101206004601992545/gallery_4.jpg", + "sha256": "3b3b378add64afc0282d8c68a49ea2d24558dd6172af6cfa9e6383e327a4d0f9", + "retrieved_at": "2026-09-06T05:06:51.912229+00:00" + }, + { + "listing_id": "2101256232709041745", + "index": 4, + "source_url": "https://www.compass.com/m/48dcddf7a7475bb8ecfcd713bd36a643725badfa_img_4_f657d/640x480.jpg", + "path": "static/external_cache/listings/2101256232709041745/gallery_4.jpg", + "sha256": "84b25cc49bcea9a80bedc51d1c361338a24267f5b3cc951b9f07bf02cd533aa2", + "retrieved_at": "2026-09-06T05:04:58.561658+00:00" + }, + { + "listing_id": "2101268525165965761", + "index": 4, + "source_url": "https://www.compass.com/m/0/74446301-543f-468a-acae-ee9b001bf4b9/1500x978.jpg", + "path": "static/external_cache/listings/2101268525165965761/gallery_4.jpg", + "sha256": "b3b3311faf3133092aae3213be148a10db8e9755883718ba6b4bd8c86f74f018", + "retrieved_at": "2026-09-06T05:05:34.399503+00:00" + }, + { + "listing_id": "2101271106214428489", + "index": 4, + "source_url": "https://www.compass.com/m/18a2a7e3f53cb8866b042da827de7a08e5f9af5b_img_4_80d41/640x480.jpg", + "path": "static/external_cache/listings/2101271106214428489/gallery_4.jpg", + "sha256": "3ad497e20def121d2c2f465858f5174ea469d1b2db046e2faf8ee255be4ba70e", + "retrieved_at": "2026-09-06T05:06:25.035294+00:00" + }, + { + "listing_id": "2101469648845424521", + "index": 4, + "source_url": "https://www.compass.com/m/0/8c5a76a0-7e51-4497-a8e6-33ac909b7188/1500x1000.jpg", + "path": "static/external_cache/listings/2101469648845424521/gallery_4.jpg", + "sha256": "7d2837c71e9ee7ae93320beb9e3b50980bc162a00a2f16adf1bacee7759bce9c", + "retrieved_at": "2026-09-06T05:04:21.105447+00:00" + }, + { + "listing_id": "2101513908618041457", + "index": 4, + "source_url": "https://www.compass.com/m/0/2361cd85-2bd3-489f-a98b-5a4710f25f2a/1500x1000.jpg", + "path": "static/external_cache/listings/2101513908618041457/gallery_4.jpg", + "sha256": "f7d6625acd86c0fabb0f9bfd43db1b02780fde07c2e5e6a0c6737e7d59cfc09e", + "retrieved_at": "2026-09-06T05:07:39.866865+00:00" + }, + { + "listing_id": "2101542234791447953", + "index": 4, + "source_url": "https://www.compass.com/m/76112d92d0807d889e8b7fc42690acf3e46d135d_img_4_2c1c9/640x480.jpg", + "path": "static/external_cache/listings/2101542234791447953/gallery_4.jpg", + "sha256": "72bf690a7e898df60c31731a42fff0a83745395b41eeb39993dcf50ca94742af", + "retrieved_at": "2026-09-06T05:07:45.848108+00:00" + }, + { + "listing_id": "2101572006195730833", + "index": 4, + "source_url": "https://www.compass.com/m/0/992ab797-bc1a-4dc3-b2c6-a7b0251fed71/667x1000.jpg", + "path": "static/external_cache/listings/2101572006195730833/gallery_4.jpg", + "sha256": "d4b862e2f70b010099426e6f827bae40aef944350375099279f1a02b2a15d101", + "retrieved_at": "2026-09-06T05:08:16.276047+00:00" + }, + { + "listing_id": "2101583685709982353", + "index": 4, + "source_url": "https://www.compass.com/m/a66c4f3838ea4f67a0eb787321d4e169b11ba785_img_4_45290/640x480.jpg", + "path": "static/external_cache/listings/2101583685709982353/gallery_4.jpg", + "sha256": "abd3a5ecdf66d3d923e0d65289d525484afe2ec28420356b274e71eb2113c7bb", + "retrieved_at": "2026-09-06T05:08:24.745113+00:00" + }, + { + "listing_id": "2101593860789227753", + "index": 4, + "source_url": "https://www.compass.com/m/329d9c88affb2c448d8fa7a4a95db161e803fe47_img_4_b34f1/640x480.jpg", + "path": "static/external_cache/listings/2101593860789227753/gallery_4.jpg", + "sha256": "908a32a550f8145607d2863093701eb1c2b0eec3d3545d1af8501f20a5164933", + "retrieved_at": "2026-09-06T05:04:09.113438+00:00" + }, + { + "listing_id": "2101595906346862593", + "index": 4, + "source_url": "https://www.compass.com/m/66378456985aa99c7d05dac41244cc11ee123679_img_4_6ffd5/640x480.jpg", + "path": "static/external_cache/listings/2101595906346862593/gallery_4.jpg", + "sha256": "f5cb0e52fa79425381545d523fefb2f9862ff54cc0a9da77f9e12d6729e8aa41", + "retrieved_at": "2026-09-06T05:05:03.852699+00:00" + }, + { + "listing_id": "2101603950950844857", + "index": 4, + "source_url": "https://www.compass.com/m/1d3849064953ee9146dd5159e9f3e682d981131c_img_4_88326/640x480.jpg", + "path": "static/external_cache/listings/2101603950950844857/gallery_4.jpg", + "sha256": "03a67c6e4bb5394b1e54763780ce219ed57cf4fe3268def38d0ed93d84a76b5f", + "retrieved_at": "2026-09-06T05:08:34.630351+00:00" + }, + { + "listing_id": "2101666954794416105", + "index": 4, + "source_url": "https://www.compass.com/m/0/aeb14efd-2047-45f2-9315-e8e25d2033d4/1500x1000.jpg", + "path": "static/external_cache/listings/2101666954794416105/gallery_4.jpg", + "sha256": "4d24308f0de904a6295b535a1517abb9a50ea19bcd77b592096ee61b5e69cc7b", + "retrieved_at": "2026-09-06T05:07:34.996229+00:00" + }, + { + "listing_id": "2101674648649591921", + "index": 4, + "source_url": "https://www.compass.com/m/e3cb5fdf295c38c1dd845437104f6ed51e85ebae_img_4_a20df/640x480.jpg", + "path": "static/external_cache/listings/2101674648649591921/gallery_4.jpg", + "sha256": "85734285336422c72cea1e0e41097e833f6736796b2825da17234e9840bfc1cc", + "retrieved_at": "2026-09-06T05:05:14.733935+00:00" + }, + { + "listing_id": "2101682324779622529", + "index": 4, + "source_url": "https://www.compass.com/m/6dce7d0b034970970ad4086418f95966d6137fd0_img_4_809d8/640x480.jpg", + "path": "static/external_cache/listings/2101682324779622529/gallery_4.jpg", + "sha256": "c9c9a2a3f8fcb1421cd6c1dcba8aedb0d08ddc2c42f04fa08b287e979aeec0e0", + "retrieved_at": "2026-09-06T05:06:21.936450+00:00" + }, + { + "listing_id": "2101686777931183913", + "index": 4, + "source_url": "https://www.compass.com/m/acf3b43641b7861e344c7af04085926597ebc457_img_4_a20df/640x480.jpg", + "path": "static/external_cache/listings/2101686777931183913/gallery_4.jpg", + "sha256": "85734285336422c72cea1e0e41097e833f6736796b2825da17234e9840bfc1cc", + "retrieved_at": "2026-09-06T05:05:13.579106+00:00" + }, + { + "listing_id": "2101797987477033161", + "index": 4, + "source_url": "https://www.compass.com/m/8f220c480a5ff8a70d9de0fab5a4e934b4dd627a_img_4_ca6eb/640x480.jpg", + "path": "static/external_cache/listings/2101797987477033161/gallery_4.jpg", + "sha256": "07ca5eb940ea0088d6564c70e4913b3e404d5227e7221294cc6bc5cc9d1b5e31", + "retrieved_at": "2026-09-06T05:06:48.782419+00:00" + }, + { + "listing_id": "2102229235249527297", + "index": 4, + "source_url": "https://www.compass.com/m/3c6be7bfc2bb8a58a76e1eb41557b225b83dce12_img_4_36ad8/640x480.jpg", + "path": "static/external_cache/listings/2102229235249527297/gallery_4.jpg", + "sha256": "1349b7bf906f6b51bec5032846feacbca5680d4275bf17762e06e72bf1560e8c", + "retrieved_at": "2026-09-06T05:06:51.915339+00:00" + }, + { + "listing_id": "2102368165533679185", + "index": 4, + "source_url": "https://www.compass.com/m/0/c38ab1e9-7c82-4cf1-9247-e76f272dcaef/1024x1000.jpg", + "path": "static/external_cache/listings/2102368165533679185/gallery_4.jpg", + "sha256": "5ae70b2713d52f2557e3f1a43e5f8460f8c4a5475ef3b64c22b180b327f0a449", + "retrieved_at": "2026-09-06T05:07:53.637977+00:00" + }, + { + "listing_id": "2102470411868642225", + "index": 4, + "source_url": "https://www.compass.com/m/37733f4303fd848f1fdf92aea249b1a7730ba8df_img_4_7c986/640x480.jpg", + "path": "static/external_cache/listings/2102470411868642225/gallery_4.jpg", + "sha256": "33e99da84b859b165647b7258770ecd69055b3b479213732541b4556010c0965", + "retrieved_at": "2026-09-06T05:08:23.473086+00:00" + }, + { + "listing_id": "2102534367317010929", + "index": 4, + "source_url": "https://www.compass.com/m/0/efd6a31c-2bb4-43a3-85e5-91495df11179/1500x844.jpg", + "path": "static/external_cache/listings/2102534367317010929/gallery_4.jpg", + "sha256": "4423ecd983754c6172be377c2a1077b880ed1436602a0a6376a5e515d89c9f75", + "retrieved_at": "2026-09-06T05:08:11.253192+00:00" + }, + { + "listing_id": "2102573612374981985", + "index": 4, + "source_url": "https://www.compass.com/m/0/e1b22499-f4c6-416d-8d4c-9440860ae164/667x1000.jpg", + "path": "static/external_cache/listings/2102573612374981985/gallery_4.jpg", + "sha256": "208aa90e5fc8ff54899efab181e23683c2688ecfb148ed13aa3514aea599892e", + "retrieved_at": "2026-09-06T05:08:07.258011+00:00" + }, + { + "listing_id": "2102606818449475417", + "index": 4, + "source_url": "https://www.compass.com/m/0/d90683f5-42c3-4dd2-9758-66f04d504c2e/1500x1000.jpg", + "path": "static/external_cache/listings/2102606818449475417/gallery_4.jpg", + "sha256": "afd114faeecac5227ec10c827b48091b1a441e2c7c0bd7e3cf6e6bb558a69b4c", + "retrieved_at": "2026-09-06T05:08:03.514573+00:00" + }, + { + "listing_id": "2102648277294495537", + "index": 4, + "source_url": "https://www.compass.com/m/ed523e8530a6f1410d5582589d44aa3f0ce78c59_img_4_dabae/640x480.jpg", + "path": "static/external_cache/listings/2102648277294495537/gallery_4.jpg", + "sha256": "8e293d38dfe3fba89a1c62bbd44599562c1d10b6ae0b4ecb6c2d3cf1e65f7959", + "retrieved_at": "2026-09-06T05:07:31.366889+00:00" + }, + { + "listing_id": "2102741355476499777", + "index": 4, + "source_url": "https://www.compass.com/m/c5bfa4030e64617e950d7b816256429712aa33f7_img_4_7627e/640x480.jpg", + "path": "static/external_cache/listings/2102741355476499777/gallery_4.jpg", + "sha256": "57cef8f8dfbbd92f3d3ccaf91e6e04856469140ba8e9bd0c49b3a8172c4f0f5e", + "retrieved_at": "2026-09-06T05:04:13.846918+00:00" + }, + { + "listing_id": "2102932027232557289", + "index": 4, + "source_url": "https://www.compass.com/m/0/8fb159d2-8bec-4c0d-afb7-0e473983916b/1500x1000.jpg", + "path": "static/external_cache/listings/2102932027232557289/gallery_4.jpg", + "sha256": "5a07008b7d3bfa941db3f6086fbb98512d32b065950ccbf30b06d1108916d92f", + "retrieved_at": "2026-09-06T05:07:31.095771+00:00" + }, + { + "listing_id": "2102975877501630305", + "index": 4, + "source_url": "https://www.compass.com/m/cd8b5eb2cdf62a19ee2e3ce47f3720f398963e91_img_4_cd87a/640x480.jpg", + "path": "static/external_cache/listings/2102975877501630305/gallery_4.jpg", + "sha256": "f6427b1a8754ed9f19999e355e32ef48a811aac85b94ffb410d86b17ee1d49d4", + "retrieved_at": "2026-09-06T05:05:10.037181+00:00" + }, + { + "listing_id": "2102997268314253465", + "index": 4, + "source_url": "https://www.compass.com/m/b55fdcf12ee2e0d86d781d2b2c0e72d288ad416b_img_4_52e9a/640x480.jpg", + "path": "static/external_cache/listings/2102997268314253465/gallery_4.jpg", + "sha256": "f61adcf371d0d17cad44a19583ea26fd21d392cf37c0d099ca929b3ccdee5402", + "retrieved_at": "2026-09-06T05:07:37.379514+00:00" + }, + { + "listing_id": "2103010511052722345", + "index": 4, + "source_url": "https://www.compass.com/m/0/91289c05-a234-4de6-980f-98b1c8d5a959/667x1000.jpg", + "path": "static/external_cache/listings/2103010511052722345/gallery_4.jpg", + "sha256": "f45d3f681029bfaad38e4fc63c97e74472969f6c2371f3218068d9a3aac580c7", + "retrieved_at": "2026-09-06T05:07:29.758336+00:00" + }, + { + "listing_id": "2103039233638300481", + "index": 4, + "source_url": "https://www.compass.com/m/6a50c08402cc9eeaa9cc35bb4f0d0902693e9a9d_img_4_290ab/640x480.jpg", + "path": "static/external_cache/listings/2103039233638300481/gallery_4.jpg", + "sha256": "becde9b8cabeac9994eb54e0773a4dccb6d09915c2d63875906faeb0317e785b", + "retrieved_at": "2026-09-06T05:06:44.179639+00:00" + }, + { + "listing_id": "2103040696091577497", + "index": 4, + "source_url": "https://www.compass.com/m/0/fbf54f75-5196-4809-85af-2558d6c57221/1291x861.jpg", + "path": "static/external_cache/listings/2103040696091577497/gallery_4.jpg", + "sha256": "e49fc5ab5d787b7c393684b17afdc0c27b821cdf79e1e2cbb006b0cb97775e81", + "retrieved_at": "2026-09-06T05:08:15.539603+00:00" + }, + { + "listing_id": "2103052794498683425", + "index": 4, + "source_url": "https://www.compass.com/m/c227686f5f03ef80ac5183fb084169bc948a189e_img_4_9a0d7/640x480.jpg", + "path": "static/external_cache/listings/2103052794498683425/gallery_4.jpg", + "sha256": "4d3c1008f8f80aca7fe1abaf6fb534a18ee0f12d076312c57543439fd4d3d5f9", + "retrieved_at": "2026-09-06T05:05:21.638409+00:00" + }, + { + "listing_id": "2103058970737192393", + "index": 4, + "source_url": "https://www.compass.com/m/550753b0213059e9f9b525e49d1360ef1883baea_img_4_eaf30/640x480.jpg", + "path": "static/external_cache/listings/2103058970737192393/gallery_4.jpg", + "sha256": "9535833e001c5cbfc00d08783f9e5c8b809d97dd6711cd26c4093b682c8991bd", + "retrieved_at": "2026-09-06T05:04:56.065102+00:00" + }, + { + "listing_id": "2103063185496235465", + "index": 4, + "source_url": "https://www.compass.com/m/0/7821e685-2d7c-4db7-968e-90217c31162f/667x1000.jpg", + "path": "static/external_cache/listings/2103063185496235465/gallery_4.jpg", + "sha256": "af42aa14f4b6929d35e98e2ffb218f60cca81505fcb8853afb9f9bac97784df8", + "retrieved_at": "2026-09-06T05:08:00.862207+00:00" + }, + { + "listing_id": "2103084089786276025", + "index": 4, + "source_url": "https://www.compass.com/m/0/2416262a-3475-44d2-9914-ed8e9f4ebead/1500x844.jpg", + "path": "static/external_cache/listings/2103084089786276025/gallery_4.jpg", + "sha256": "f1e7f89a85bbf6c44bcb382d748936875f45e44b4561fced04ea85aa365420e8", + "retrieved_at": "2026-09-06T05:06:47.479383+00:00" + }, + { + "listing_id": "2103086339581286569", + "index": 4, + "source_url": "https://www.compass.com/m/0/2791712e-6651-4ade-8f61-268a310a726c/1500x1000.jpg", + "path": "static/external_cache/listings/2103086339581286569/gallery_4.jpg", + "sha256": "611c39f7d26670c8c479924981bcb657cfcc2adecc4c621474b795a16368d131", + "retrieved_at": "2026-09-06T05:03:37.907385+00:00" + }, + { + "listing_id": "2103096966395518345", + "index": 4, + "source_url": "https://www.compass.com/m/0/c08a9297-4c39-47ea-9265-9c613da4a329/1200x800.jpg", + "path": "static/external_cache/listings/2103096966395518345/gallery_4.jpg", + "sha256": "dc535b93a579fcd6d9a541f29740bda3b346d21d3b93bf9f7144f3f1c6354552", + "retrieved_at": "2026-09-06T05:03:45.324478+00:00" + }, + { + "listing_id": "2103097327265073649", + "index": 4, + "source_url": "https://www.compass.com/m/0/956d7a94-2b6e-45f5-af7b-1cccccdac354/789x1000.jpg", + "path": "static/external_cache/listings/2103097327265073649/gallery_4.jpg", + "sha256": "122ed320e378f66f9e540c460ab3c4169fc8687bd3c006aab9d7fc865951007f", + "retrieved_at": "2026-09-06T05:03:51.865752+00:00" + }, + { + "listing_id": "2103113958138223833", + "index": 4, + "source_url": "https://www.compass.com/m/baf4a36112906f5a1ac6babe88257fe8e8fb5f58_img_4_9d654/640x480.jpg", + "path": "static/external_cache/listings/2103113958138223833/gallery_4.jpg", + "sha256": "bc4c6e6585dfb4532d7d52a65c78d6362a3fc14f4af7f892865cbc9169767adb", + "retrieved_at": "2026-09-06T05:04:07.173670+00:00" + }, + { + "listing_id": "2103121974522072233", + "index": 4, + "source_url": "https://www.compass.com/m/2142f5be9e582055397cb8fcc6623c18af9eef28_img_4_e3b60/640x480.jpg", + "path": "static/external_cache/listings/2103121974522072233/gallery_4.jpg", + "sha256": "15ce40dec2e957ba223d6c0f557a646cef743465f75c4694e1c443118caa0825", + "retrieved_at": "2026-09-06T05:08:24.605645+00:00" + }, + { + "listing_id": "2103126900749239969", + "index": 4, + "source_url": "https://www.compass.com/m/8d07aba368960a9bb3241c34403959e2858d1bd2_img_4_bb41e/640x480.jpg", + "path": "static/external_cache/listings/2103126900749239969/gallery_4.jpg", + "sha256": "e72e718252fa4e71b56f3da77994d3dd7a776099fb3f9ef74aa9d94f0a12e1b7", + "retrieved_at": "2026-09-06T05:08:21.272858+00:00" + }, + { + "listing_id": "2103133743646749561", + "index": 4, + "source_url": "https://www.compass.com/m/6fb487f82c9f77be1a7b246ba3d2167ede1860c1_img_4_f3ca8/640x480.jpg", + "path": "static/external_cache/listings/2103133743646749561/gallery_4.jpg", + "sha256": "136de95e8b3c80f982aa2a6df7db097a33a0b7b058377e235a6f84fe121ee2d9", + "retrieved_at": "2026-09-06T05:08:22.519956+00:00" + }, + { + "listing_id": "2103137999553056777", + "index": 4, + "source_url": "https://www.compass.com/m/0/8b65d9ee-1fdd-4364-829b-61ccc6b739f2/1499x1000.jpg", + "path": "static/external_cache/listings/2103137999553056777/gallery_4.jpg", + "sha256": "e9ebdffa08841e108f72d7ac6c87198f3eb54a2f732f0dbf3ec287bc59dbbe15", + "retrieved_at": "2026-09-06T05:05:41.491200+00:00" + }, + { + "listing_id": "2103143907633028641", + "index": 4, + "source_url": "https://www.compass.com/m/5fa2b887bbcf67c99619ca9833912cbd1d738063_img_4_92d99/640x480.jpg", + "path": "static/external_cache/listings/2103143907633028641/gallery_4.jpg", + "sha256": "7c0410ca3fff47ecd3e5216b889ee0ed743857d6c4483552d4264045e927f7a2", + "retrieved_at": "2026-09-06T05:04:09.962864+00:00" + }, + { + "listing_id": "2103148132718454937", + "index": 4, + "source_url": "https://www.compass.com/m/0/8650b59a-6dfd-40cc-b78c-4a96763ebd26/736x1000.jpg", + "path": "static/external_cache/listings/2103148132718454937/gallery_4.jpg", + "sha256": "56b8d358baa62fcb3725cc5022df1d0d4be8cec22fd71fbfe786820e0fc0f5c0", + "retrieved_at": "2026-09-06T05:04:31.721462+00:00" + }, + { + "listing_id": "2103155017961921225", + "index": 4, + "source_url": "https://www.compass.com/m/431f0906bd3ddce5daa8a96951ddb37fd981014e_img_4_f4d62/640x480.jpg", + "path": "static/external_cache/listings/2103155017961921225/gallery_4.jpg", + "sha256": "297b927bd777225278ca1713ce92e10a1373a5be8ebf50f40e2bc2a4d054353c", + "retrieved_at": "2026-09-06T05:06:54.181274+00:00" + }, + { + "listing_id": "2103158979654813449", + "index": 4, + "source_url": "https://www.compass.com/m/3cdf6a1908d867c4fc560836b9b4e1d5e324822d_img_4_c5045/640x480.jpg", + "path": "static/external_cache/listings/2103158979654813449/gallery_4.jpg", + "sha256": "2eb4ecaa70f49bad7f3685c45816d242882f62f2c6ca573729ac18bfc91c8124", + "retrieved_at": "2026-09-06T05:05:16.430198+00:00" + }, + { + "listing_id": "2103161003217330249", + "index": 4, + "source_url": "https://www.compass.com/m/f114a1697500f71e963e12e39234f397143c695f_img_4_70ecd/640x480.jpg", + "path": "static/external_cache/listings/2103161003217330249/gallery_4.jpg", + "sha256": "5f10f2930e2ae7f187b0e7995f7822259ba29c61a86afacd483ce212beaac9d2", + "retrieved_at": "2026-09-06T05:05:11.197176+00:00" + }, + { + "listing_id": "2103170383086404873", + "index": 4, + "source_url": "https://www.compass.com/m/0/ac4b6b63-4b11-45b0-8255-2bda9037c209/750x1000.jpg", + "path": "static/external_cache/listings/2103170383086404873/gallery_4.jpg", + "sha256": "33b417135e31cc7f2fc89d9d325e577648b95d99e8e485d32539d5da41b59071", + "retrieved_at": "2026-09-06T05:04:14.769761+00:00" + }, + { + "listing_id": "2103180070066443385", + "index": 4, + "source_url": "https://www.compass.com/m/0/2309ba33-7da5-4248-aeda-fb4ace3eb4fd/1498x1000.jpg", + "path": "static/external_cache/listings/2103180070066443385/gallery_4.jpg", + "sha256": "8324f54c518128b6a8d4a6c98bcec59089c4ada6549b4b499218c2bda5e8d351", + "retrieved_at": "2026-09-06T05:04:33.886269+00:00" + }, + { + "listing_id": "2103184068747919969", + "index": 4, + "source_url": "https://www.compass.com/m/0/982505f2-9e4a-4934-a820-dd3d6e8db5aa/1264x842.jpg", + "path": "static/external_cache/listings/2103184068747919969/gallery_4.jpg", + "sha256": "f265b8077c3c54a504c1b26ee6900f5cbb22654b6b1488e03bee6599931971c9", + "retrieved_at": "2026-09-06T05:03:31.230841+00:00" + }, + { + "listing_id": "2103191914893848297", + "index": 4, + "source_url": "https://www.compass.com/m/0/aafa89be-d1a6-4035-a984-f0baa98a3534/750x1000.jpg", + "path": "static/external_cache/listings/2103191914893848297/gallery_4.jpg", + "sha256": "fe898fbfa05ad889ac3b40ec53686977bc4f21a185dbd4b687fab8552fad89c6", + "retrieved_at": "2026-09-06T05:07:55.758587+00:00" + }, + { + "listing_id": "2103199530785366897", + "index": 4, + "source_url": "https://www.compass.com/m/0/79666cf1-0c09-44f6-b4a2-1c462a8607a2/1500x1000.jpg", + "path": "static/external_cache/listings/2103199530785366897/gallery_4.jpg", + "sha256": "1bf02d7b22ab1cda8d999bb0989ea98080427049ac78c1f07f8ad3b79191503d", + "retrieved_at": "2026-09-06T05:04:40.105064+00:00" + }, + { + "listing_id": "2103204820025286625", + "index": 4, + "source_url": "https://www.compass.com/m/0/dd744391-5b37-4728-bcb5-30841ab241db/1500x844.jpg", + "path": "static/external_cache/listings/2103204820025286625/gallery_4.jpg", + "sha256": "77df60f3631f33c4c11870e9b29e35b131a5ad1cada6437a6dbe18241e71432b", + "retrieved_at": "2026-09-06T05:05:38.822856+00:00" + }, + { + "listing_id": "2103206956393888465", + "index": 4, + "source_url": "https://www.compass.com/m/27c1aadcb8d16cbad1fe9bf9d655fed3275ef094_img_4_5ce2b/640x480.jpg", + "path": "static/external_cache/listings/2103206956393888465/gallery_4.jpg", + "sha256": "7a822775dba168d2dd65c181ada2436ae463e08f2a8b7491b8b3370206d4c6e5", + "retrieved_at": "2026-09-06T05:08:31.791412+00:00" + }, + { + "listing_id": "2103222314030815937", + "index": 4, + "source_url": "https://www.compass.com/m/81dedca07fb6c3f2b720f336a7d5c96227820914_img_4_fabb0/640x480.jpg", + "path": "static/external_cache/listings/2103222314030815937/gallery_4.jpg", + "sha256": "738007316f31107a0204972cefeb07a1125b29f1635dafa799d1721ac2ec81e9", + "retrieved_at": "2026-09-06T05:08:18.322144+00:00" + }, + { + "listing_id": "2103225906477497457", + "index": 4, + "source_url": "https://www.compass.com/m/0/28098fc4-97f6-4acb-8f51-2213d3a4679e/1500x1000.jpg", + "path": "static/external_cache/listings/2103225906477497457/gallery_4.jpg", + "sha256": "04d2adbd844b09fa7118f2a743ec536aafc647123d735621ae50fc66a0c64f86", + "retrieved_at": "2026-09-06T05:05:52.755936+00:00" + }, + { + "listing_id": "2103234166324388625", + "index": 4, + "source_url": "https://www.compass.com/m/0/36465457-43b9-46c0-ac1b-862bc8202764/1499x1000.jpg", + "path": "static/external_cache/listings/2103234166324388625/gallery_4.jpg", + "sha256": "9cefbb4180a076c4919580d67fff8535cab939219ae4a0197515ca4612dd6945", + "retrieved_at": "2026-09-06T05:03:29.392557+00:00" + }, + { + "listing_id": "2103241619216722001", + "index": 4, + "source_url": "https://www.compass.com/m/0/cb69f981-3647-4f42-8b9c-89fab3192443/1500x1000.jpg", + "path": "static/external_cache/listings/2103241619216722001/gallery_4.jpg", + "sha256": "2759514a6e11d62e6c2069b17b22b7c3ad90a4262d6eaf6a07486d3c3d081181", + "retrieved_at": "2026-09-06T05:05:52.624958+00:00" + }, + { + "listing_id": "2103247470853851209", + "index": 4, + "source_url": "https://www.compass.com/m/0/dab64a0e-23c6-4842-986f-f72b37b7efa7/1264x843.jpg", + "path": "static/external_cache/listings/2103247470853851209/gallery_4.jpg", + "sha256": "a90da5aee0bbab3b9ccf1039737b03987dee80ec6d49087c6037b6f7fddc88b2", + "retrieved_at": "2026-09-06T05:07:55.579696+00:00" + }, + { + "listing_id": "2103259719743596577", + "index": 4, + "source_url": "https://www.compass.com/m/7c12637a30e563f342083949fdb84e36f720c00b_img_4_a3667/640x480.jpg", + "path": "static/external_cache/listings/2103259719743596577/gallery_4.jpg", + "sha256": "aa05a82d31a006f46f6127488d1a635fd816c2db16a86a384cdfb78ce2eac825", + "retrieved_at": "2026-09-06T05:08:30.684423+00:00" + }, + { + "listing_id": "2103262787751054009", + "index": 4, + "source_url": "https://www.compass.com/m/0a16e2a16b37c08088c9f3a4b03e48bab20b2f97_img_4_c4557/640x480.jpg", + "path": "static/external_cache/listings/2103262787751054009/gallery_4.jpg", + "sha256": "36d76290f7b6edfe9e42cb4e9778fb1e0eb480c6694dac348af16ef8680e2882", + "retrieved_at": "2026-09-06T05:06:42.307863+00:00" + }, + { + "listing_id": "2103279282510648129", + "index": 4, + "source_url": "https://www.compass.com/m/0/d66b55ac-e2e9-4629-9d59-5ebeba60673b/668x1000.jpg", + "path": "static/external_cache/listings/2103279282510648129/gallery_4.jpg", + "sha256": "641e5db4c295b215c187bd3b7969ed1dcc668b175ea041ea7b219f5a2e15e065", + "retrieved_at": "2026-09-06T05:03:39.780914+00:00" + }, + { + "listing_id": "2103280074244401153", + "index": 4, + "source_url": "https://www.compass.com/m/8c056f8317fe5a8a4d9dbfdab2d8ddabe670a252_img_4_2384e/640x480.jpg", + "path": "static/external_cache/listings/2103280074244401153/gallery_4.jpg", + "sha256": "e54d11f1c25bd5b1991f3dff59dd436179b977b5034d3ed1e85c3e72a8606bd3", + "retrieved_at": "2026-09-06T05:08:18.272355+00:00" + }, + { + "listing_id": "2103280393061690665", + "index": 4, + "source_url": "https://www.compass.com/m/f34e77f074fe67c0609d6332c1784f137d5dc27f_img_4_86c9d/640x480.jpg", + "path": "static/external_cache/listings/2103280393061690665/gallery_4.jpg", + "sha256": "b0b6e67b38df63df30b9328c4f9f469d67b4cd853bed4a2677f58dfbb8ac2997", + "retrieved_at": "2026-09-06T05:05:07.442191+00:00" + }, + { + "listing_id": "2103302361391687721", + "index": 4, + "source_url": "https://www.compass.com/m/0/d6fb3e38-0c79-4b87-9bfd-386a637d9e45/1500x997.jpg", + "path": "static/external_cache/listings/2103302361391687721/gallery_4.jpg", + "sha256": "e486a484dea9c4b9505260a65abd05514d841fa5cc4f38a7fcf5d4acfa15a3f9", + "retrieved_at": "2026-09-06T05:04:01.272840+00:00" + }, + { + "listing_id": "2103318401995735673", + "index": 4, + "source_url": "https://www.compass.com/m/07265428c8f206f8b1543937c70e421e1aa2076b_img_4_69e8b/640x480.jpg", + "path": "static/external_cache/listings/2103318401995735673/gallery_4.jpg", + "sha256": "ff3f08fb07ee624746008c3c3e7c5bcadef41e901f0d3039e30b537af42023ff", + "retrieved_at": "2026-09-06T05:06:44.102134+00:00" + }, + { + "listing_id": "2103320929822349377", + "index": 4, + "source_url": "https://www.compass.com/m/0/3f3c5ac9-3536-4895-8c30-ad1dd304666b/1500x1000.jpg", + "path": "static/external_cache/listings/2103320929822349377/gallery_4.jpg", + "sha256": "3a7b6289dac057ab266eebc98eedcbe3375ff1365705ffd566a2924fe5684c03", + "retrieved_at": "2026-09-06T05:04:17.545637+00:00" + }, + { + "listing_id": "2103333555692744361", + "index": 4, + "source_url": "https://www.compass.com/m/703056ce9ae4cea266bae5c9f3a59440e2462baf_img_4_65d8a/640x480.jpg", + "path": "static/external_cache/listings/2103333555692744361/gallery_4.jpg", + "sha256": "a721aaea1995309b6474a437b0008b7994c58f076b70e6ca3da9ebaa18537666", + "retrieved_at": "2026-09-06T05:06:49.449718+00:00" + }, + { + "listing_id": "2103425622016055345", + "index": 4, + "source_url": "https://www.compass.com/m/ffa5f467dd114294dcd22ee88882eaa162812e36_img_4_07e4e/640x480.jpg", + "path": "static/external_cache/listings/2103425622016055345/gallery_4.jpg", + "sha256": "d616eb03ad0a486bc785a4436267664fd430fafb090cd4eb5a955765b7ef07e2", + "retrieved_at": "2026-09-06T05:08:30.949847+00:00" + }, + { + "listing_id": "2103445308816960001", + "index": 4, + "source_url": "https://www.compass.com/m/0/f5fd204f-931c-40c2-8af1-b715b601672a/1499x1000.jpg", + "path": "static/external_cache/listings/2103445308816960001/gallery_4.jpg", + "sha256": "8222ea14db7e4a12bc3c29cdd2595afba7ed3ff481a2d0e277ed98b4e9c00500", + "retrieved_at": "2026-09-06T05:06:00.316406+00:00" + }, + { + "listing_id": "2103484049119892281", + "index": 4, + "source_url": "https://www.compass.com/m/696b8654843812cca3b0c99013c12beed99415c0_img_4_a2e19/640x480.jpg", + "path": "static/external_cache/listings/2103484049119892281/gallery_4.jpg", + "sha256": "af1949ebc7790e35024505f8359836d4bb108a6f3b0cc1f51478391607671241", + "retrieved_at": "2026-09-06T05:08:32.830308+00:00" + } + ] +} diff --git a/sites/compass/listings_clean.json b/sites/compass/listings_clean.json new file mode 100644 index 00000000..f57d7cd4 --- /dev/null +++ b/sites/compass/listings_clean.json @@ -0,0 +1,23220 @@ +[ + { + "listing_id": "2103184068747919969", + "slug": "425-w-24th-st-unit-1f-manhattan-ny-10011", + "title": "$1,325,000", + "price": 1325000, + "is_rent": false, + "street": "425 West 24th Street, Unit 1F", + "neighborhood": "Chelsea", + "city": "New York", + "state": "NY", + "zip": "10011", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1200, + "latitude": 40.747844, + "longitude": -74.00189, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/846e6373-0b3f-402a-8154-4aa99e5c8775", + "gallery_uuids": [ + "uuid/846e6373-0b3f-402a-8154-4aa99e5c8775", + "uuid/8d155b27-57d9-456a-b2fe-a890a377c051", + "uuid/02553219-cf09-4f1d-856d-5a7773fbf3ca", + "uuid/2506a9a6-0492-45b3-99e6-d07fcc88db66", + "uuid/982505f2-9e4a-4934-a820-dd3d6e8db5aa", + "uuid/82429b36-f7b0-4825-a562-2703c9ccd649", + "uuid/81229093-cc02-4692-9c2a-a5a260f7faec", + "uuid/3fe79f77-74b8-4131-ad9b-426f8cad0f17" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/846e6373-0b3f-402a-8154-4aa99e5c8775/1264x842.jpg", + "https://www.compass.com/m/0/8d155b27-57d9-456a-b2fe-a890a377c051/1264x842.jpg", + "https://www.compass.com/m/0/02553219-cf09-4f1d-856d-5a7773fbf3ca/1500x999.jpg", + "https://www.compass.com/m/0/2506a9a6-0492-45b3-99e6-d07fcc88db66/1500x1000.jpg", + "https://www.compass.com/m/0/982505f2-9e4a-4934-a820-dd3d6e8db5aa/1264x842.jpg", + "https://www.compass.com/m/0/82429b36-f7b0-4825-a562-2703c9ccd649/667x1000.jpg", + "https://www.compass.com/m/0/81229093-cc02-4692-9c2a-a5a260f7faec/1264x842.jpg", + "https://www.compass.com/m/0/3fe79f77-74b8-4131-ad9b-426f8cad0f17/1248x832.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/425-W-24th-St-Unit-1F-Manhattan-NY-10011/19CQJC_pid/" + }, + { + "listing_id": "2095177779264693489", + "slug": "305-w-98th-st-unit-4an-manhattan-ny-10025", + "title": "$949,000", + "price": 949000, + "is_rent": false, + "street": "305 West 98th Street, Unit 4AN", + "neighborhood": "Upper West Side", + "city": "New York", + "state": "NY", + "zip": "10025", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.7970607, + "longitude": -73.97274110000001, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/dea665e2-3283-4dd2-919f-54ce9ea3f7d4", + "gallery_uuids": [ + "uuid/dea665e2-3283-4dd2-919f-54ce9ea3f7d4", + "uuid/c4cf267f-fcfb-4438-bd22-165ae9586203", + "uuid/da4ff6cd-9b7c-41bf-a808-7e1469058dc3", + "uuid/09f12a1f-f3ca-4714-ac2a-26a1aea50299", + "uuid/46c4f774-8b73-4ece-96ff-42fe8cc3c061", + "uuid/8a9fb73d-3e8d-468c-b9e0-18c5916b6132", + "uuid/6f1e76f1-d211-4bf1-a9d4-d7deaf249b63", + "uuid/2f08a195-77c2-4e66-8e4f-c5ef86db63a9" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/dea665e2-3283-4dd2-919f-54ce9ea3f7d4/748x1000.jpg", + "https://www.compass.com/m/0/c4cf267f-fcfb-4438-bd22-165ae9586203/1500x1000.jpg", + "https://www.compass.com/m/0/da4ff6cd-9b7c-41bf-a808-7e1469058dc3/1399x1000.jpg", + "https://www.compass.com/m/0/09f12a1f-f3ca-4714-ac2a-26a1aea50299/750x1000.jpg", + "https://www.compass.com/m/0/46c4f774-8b73-4ece-96ff-42fe8cc3c061/750x1000.jpg", + "https://www.compass.com/m/0/8a9fb73d-3e8d-468c-b9e0-18c5916b6132/750x1000.jpg", + "https://www.compass.com/m/0/6f1e76f1-d211-4bf1-a9d4-d7deaf249b63/1499x1000.jpg", + "https://www.compass.com/m/0/2f08a195-77c2-4e66-8e4f-c5ef86db63a9/667x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/305-W-98th-St-Unit-4AN-Manhattan-NY-10025/200DC1_pid/" + }, + { + "listing_id": "2103234166324388625", + "slug": "482-11th-st-brooklyn-ny-11215", + "title": "$2,895,000", + "price": 2895000, + "is_rent": false, + "street": "482 11th Street", + "neighborhood": "Park Slope", + "city": "New York", + "state": "NY", + "zip": "11215", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2553, + "latitude": 40.665664, + "longitude": -73.9830829, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/c7872306-4195-4951-8913-e7a368cf3d90", + "gallery_uuids": [ + "uuid/c7872306-4195-4951-8913-e7a368cf3d90", + "uuid/0ee8d437-32eb-4e94-9cf5-c5863aaeea16", + "uuid/dbdc27ba-f8c3-47b8-828c-2b5b49539c88", + "uuid/8f98e0ae-0f48-4008-91ee-f584fe23f10f", + "uuid/36465457-43b9-46c0-ac1b-862bc8202764", + "uuid/1bcd4636-269c-4561-8142-429d517d4bf9", + "uuid/294c881b-2a45-49e3-9adb-73eba1a2b0c5", + "uuid/cadb9a30-5e55-4052-8d5c-7abdaaad9411" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/c7872306-4195-4951-8913-e7a368cf3d90/667x1000.jpg", + "https://www.compass.com/m/0/0ee8d437-32eb-4e94-9cf5-c5863aaeea16/667x1000.jpg", + "https://www.compass.com/m/0/dbdc27ba-f8c3-47b8-828c-2b5b49539c88/1499x1000.jpg", + "https://www.compass.com/m/0/8f98e0ae-0f48-4008-91ee-f584fe23f10f/1499x1000.jpg", + "https://www.compass.com/m/0/36465457-43b9-46c0-ac1b-862bc8202764/1499x1000.jpg", + "https://www.compass.com/m/0/1bcd4636-269c-4561-8142-429d517d4bf9/1499x1000.jpg", + "https://www.compass.com/m/0/294c881b-2a45-49e3-9adb-73eba1a2b0c5/1499x1000.jpg", + "https://www.compass.com/m/0/cadb9a30-5e55-4052-8d5c-7abdaaad9411/1499x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/482-11th-St-Brooklyn-NY-11215/20SX1R_pid/" + }, + { + "listing_id": "2078393202840815033", + "slug": "400-lincoln-pl-unit-2b-brooklyn-ny-11238", + "title": "$500,000", + "price": 500000, + "is_rent": false, + "street": "400 Lincoln Place, Unit 2B", + "neighborhood": "Prospect Heights", + "city": "New York", + "state": "NY", + "zip": "11238", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.672692, + "longitude": -73.96321329999999, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/40b95e47-633c-4655-9bca-a6914e3a66a0", + "gallery_uuids": [ + "uuid/40b95e47-633c-4655-9bca-a6914e3a66a0", + "uuid/3624fc06-0366-4c5a-bd98-7dd3c0d18e29", + "uuid/bf4e459c-4c8c-4794-8cf5-6c6481a9af77", + "uuid/f842961a-792a-4ce9-a597-3218b50082c9", + "uuid/bf9e5e57-21d3-4761-a80c-4c4f96a5ca43", + "uuid/fa6637ef-3b63-402f-b6a7-6aef03b19fd2", + "uuid/04f9597c-e12d-429a-8880-16c268098374", + "uuid/42f6fc91-e442-47b2-9adf-ad38db3f7ea1" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/40b95e47-633c-4655-9bca-a6914e3a66a0/1500x1000.jpg", + "https://www.compass.com/m/0/3624fc06-0366-4c5a-bd98-7dd3c0d18e29/1500x1000.jpg", + "https://www.compass.com/m/0/bf4e459c-4c8c-4794-8cf5-6c6481a9af77/1500x1000.jpg", + "https://www.compass.com/m/0/f842961a-792a-4ce9-a597-3218b50082c9/1500x1000.jpg", + "https://www.compass.com/m/0/bf9e5e57-21d3-4761-a80c-4c4f96a5ca43/688x1000.jpg", + "https://www.compass.com/m/0/fa6637ef-3b63-402f-b6a7-6aef03b19fd2/1500x1000.jpg", + "https://www.compass.com/m/0/04f9597c-e12d-429a-8880-16c268098374/1500x1000.jpg", + "https://www.compass.com/m/0/42f6fc91-e442-47b2-9adf-ad38db3f7ea1/1500x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/400-Lincoln-Pl-Unit-2B-Brooklyn-NY-11238/19CPKR_pid/" + }, + { + "listing_id": "2095162584182456857", + "slug": "391-3rd-st-unit-1-brooklyn-ny-11215", + "title": "$1,295,000", + "price": 1295000, + "is_rent": false, + "street": "391 3rd Street, Unit 1", + "neighborhood": "Park Slope", + "city": "New York", + "state": "NY", + "zip": "11215", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.6724946, + "longitude": -73.9821602, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/089b1205-8651-4410-8ef0-e6e86b6fa269", + "gallery_uuids": [ + "uuid/089b1205-8651-4410-8ef0-e6e86b6fa269", + "uuid/59f5e6c3-aae8-4d7b-9aee-440036d83ff8", + "uuid/d47630dc-1942-4c9f-92c3-cbbcf079b481", + "uuid/dab6042e-bda3-4246-8f23-1355d9cc72af", + "uuid/60a63158-70eb-4e21-88b1-b9c8f52bb007", + "uuid/25401ec5-4872-4b35-9b86-23ef517e44bb", + "uuid/7ba70bd4-332e-4e21-9fe9-24c5fbf611ea", + "uuid/3823f7a4-50c5-4484-86fc-fbf9a15eae31" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/089b1205-8651-4410-8ef0-e6e86b6fa269/1500x1000.jpg", + "https://www.compass.com/m/0/59f5e6c3-aae8-4d7b-9aee-440036d83ff8/1500x1000.jpg", + "https://www.compass.com/m/0/d47630dc-1942-4c9f-92c3-cbbcf079b481/1500x1000.jpg", + "https://www.compass.com/m/0/dab6042e-bda3-4246-8f23-1355d9cc72af/1500x1000.jpg", + "https://www.compass.com/m/0/60a63158-70eb-4e21-88b1-b9c8f52bb007/667x1000.jpg", + "https://www.compass.com/m/0/25401ec5-4872-4b35-9b86-23ef517e44bb/1500x1000.jpg", + "https://www.compass.com/m/0/7ba70bd4-332e-4e21-9fe9-24c5fbf611ea/1500x1000.jpg", + "https://www.compass.com/m/0/3823f7a4-50c5-4484-86fc-fbf9a15eae31/1500x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/391-3rd-St-Unit-1-Brooklyn-NY-11215/2011UR_pid/" + }, + { + "listing_id": "2092936499796805081", + "slug": "150-joralemon-st-unit-7a-brooklyn-ny-11201", + "title": "$1,350,000", + "price": 1350000, + "is_rent": false, + "street": "150 Joralemon Street, Unit 7A", + "neighborhood": "Brooklyn Heights", + "city": "New York", + "state": "NY", + "zip": "11201", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.6927741, + "longitude": -73.9933156, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Open: 5/12 05:30PM - 06:30PM - By Appt" + ], + "hero_uuid": "uuid/27dcb888-9668-45a1-808e-334edc23945a", + "gallery_uuids": [ + "uuid/27dcb888-9668-45a1-808e-334edc23945a", + "uuid/63f8beab-2473-4525-913b-beca29ba8dab", + "uuid/7eea5578-d45c-407a-b96e-07303f8b55ca", + "uuid/aaa1432b-1eb3-428c-a39e-443c71e2be0b", + "uuid/eb4dca46-5020-44a3-9e69-9c62b9b9838d", + "uuid/b67eee4f-c9ab-4ec1-b2ce-f74fe2eb613f", + "uuid/61c31035-6f25-44de-a12f-bdc06af19653", + "uuid/3ed8e792-f747-4693-a347-f6c3c2df1e2e" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/27dcb888-9668-45a1-808e-334edc23945a/971x1000.jpg", + "https://www.compass.com/m/0/63f8beab-2473-4525-913b-beca29ba8dab/1175x768.jpg", + "https://www.compass.com/m/0/7eea5578-d45c-407a-b96e-07303f8b55ca/760x1000.jpg", + "https://www.compass.com/m/0/aaa1432b-1eb3-428c-a39e-443c71e2be0b/667x1000.jpg", + "https://www.compass.com/m/0/eb4dca46-5020-44a3-9e69-9c62b9b9838d/976x768.jpg", + "https://www.compass.com/m/0/b67eee4f-c9ab-4ec1-b2ce-f74fe2eb613f/733x1000.jpg", + "https://www.compass.com/m/0/61c31035-6f25-44de-a12f-bdc06af19653/667x1000.jpg", + "https://www.compass.com/m/0/3ed8e792-f747-4693-a347-f6c3c2df1e2e/901x768.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/150-Joralemon-St-Unit-7A-Brooklyn-NY-11201/2051X0_pid/" + }, + { + "listing_id": "2098617463065591129", + "slug": "160-columbia-heights-unit-10f-brooklyn-ny-11201", + "title": "$2,400,000", + "price": 2400000, + "is_rent": false, + "street": "160 Columbia Heights, Unit 10F", + "neighborhood": "Brooklyn Heights", + "city": "New York", + "state": "NY", + "zip": "11201", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 40.6982329, + "longitude": -73.9966402, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/c3777a17-c4bc-4fa5-aa13-52cfade2134e", + "gallery_uuids": [ + "uuid/c3777a17-c4bc-4fa5-aa13-52cfade2134e", + "uuid/200fc261-6319-481c-b333-f85d7bd0d07a", + "uuid/c64cef9d-e65e-47bd-9e1a-10c2a831dc42", + "uuid/7710e31c-f98c-474a-9a27-daf5af610177", + "uuid/dd625be2-c23a-4740-a725-da7a9e7322b6", + "uuid/4086d218-e4e2-49eb-b10f-c703a29a22f2", + "uuid/b1b22fc9-d6cb-4327-bc66-28fbdd9f160e", + "uuid/dd23017c-a80b-4377-906a-1e437179a3c9" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/c3777a17-c4bc-4fa5-aa13-52cfade2134e/1498x1000.jpg", + "https://www.compass.com/m/0/200fc261-6319-481c-b333-f85d7bd0d07a/1498x1000.jpg", + "https://www.compass.com/m/0/c64cef9d-e65e-47bd-9e1a-10c2a831dc42/1498x1000.jpg", + "https://www.compass.com/m/0/7710e31c-f98c-474a-9a27-daf5af610177/1498x1000.jpg", + "https://www.compass.com/m/0/dd625be2-c23a-4740-a725-da7a9e7322b6/1498x1000.jpg", + "https://www.compass.com/m/0/4086d218-e4e2-49eb-b10f-c703a29a22f2/668x1000.jpg", + "https://www.compass.com/m/0/b1b22fc9-d6cb-4327-bc66-28fbdd9f160e/1498x1000.jpg", + "https://www.compass.com/m/0/dd23017c-a80b-4377-906a-1e437179a3c9/1498x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/160-Columbia-Heights-Unit-10F-Brooklyn-NY-11201/20XR8C_pid/" + }, + { + "listing_id": "2100146160419465409", + "slug": "58-remsen-st-unit-1r-brooklyn-ny-11201", + "title": "$2,250,000", + "price": 2250000, + "is_rent": false, + "street": "58 Remsen Street, Unit 1R", + "neighborhood": "Brooklyn Heights", + "city": "New York", + "state": "NY", + "zip": "11201", + "beds": 2, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": null, + "latitude": 40.6943975, + "longitude": -73.99643259999999, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/e54abfd6-6369-435a-b3bb-8d09ec4506d2", + "gallery_uuids": [ + "uuid/e54abfd6-6369-435a-b3bb-8d09ec4506d2", + "uuid/79fcbe4b-aa0c-4986-866e-e099a85af9dd", + "uuid/b9afa927-b6d0-4cde-a355-ecb095ac19da", + "uuid/b253449a-6a5a-4ad1-88d5-8dc64d6ee81e", + "uuid/8822699e-6f46-460a-bb79-b2fc5c57e666", + "uuid/91b03845-d0af-4551-8ce9-eafad31fc9e5", + "uuid/bc0b987e-7ea2-4442-bb7f-a6f7ba913cbf", + "uuid/4e2f1eec-b096-4551-9204-c9235b16ee1d" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/e54abfd6-6369-435a-b3bb-8d09ec4506d2/1499x1000.jpg", + "https://www.compass.com/m/0/79fcbe4b-aa0c-4986-866e-e099a85af9dd/1499x1000.jpg", + "https://www.compass.com/m/0/b9afa927-b6d0-4cde-a355-ecb095ac19da/1499x1000.jpg", + "https://www.compass.com/m/0/b253449a-6a5a-4ad1-88d5-8dc64d6ee81e/1499x1000.jpg", + "https://www.compass.com/m/0/8822699e-6f46-460a-bb79-b2fc5c57e666/1499x1000.jpg", + "https://www.compass.com/m/0/91b03845-d0af-4551-8ce9-eafad31fc9e5/1499x1000.jpg", + "https://www.compass.com/m/0/bc0b987e-7ea2-4442-bb7f-a6f7ba913cbf/1499x1000.jpg", + "https://www.compass.com/m/0/4e2f1eec-b096-4551-9204-c9235b16ee1d/1499x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/58-Remsen-St-Unit-1R-Brooklyn-NY-11201/20E6EK_pid/" + }, + { + "listing_id": "2098090982878987185", + "slug": "130-prospect-pl-unit-1-brooklyn-ny-11217", + "title": "$1,495,000", + "price": 1495000, + "is_rent": false, + "street": "130 Prospect Place, Unit 1", + "neighborhood": "Prospect Heights", + "city": "New York", + "state": "NY", + "zip": "11217", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1200, + "latitude": 40.6784144, + "longitude": -73.9729025, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Open: 5/14 05:30PM - 07:00PM" + ], + "hero_uuid": "uuid/b5e1b215-91d6-483e-8a13-3dac42723b5a", + "gallery_uuids": [ + "uuid/b5e1b215-91d6-483e-8a13-3dac42723b5a", + "uuid/d844ec3d-b7b1-49d7-9b31-f92b2d41bb13", + "uuid/66e9df09-ad42-49dc-ae56-2aa8c949548e", + "uuid/30a6e91f-2844-4206-b97c-b7a6b10f43e0", + "uuid/fa0909c0-8cab-419a-9ebf-05fface6b289", + "uuid/c0ff1a61-b6d6-4689-91b7-93bbb081d2ff", + "uuid/2f333383-991c-4d54-b02c-e52bfd70f4b6", + "uuid/0b898a91-079e-471c-b35c-8385fcc3d7b4" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/b5e1b215-91d6-483e-8a13-3dac42723b5a/1500x1000.jpg", + "https://www.compass.com/m/0/d844ec3d-b7b1-49d7-9b31-f92b2d41bb13/1500x1000.jpg", + "https://www.compass.com/m/0/66e9df09-ad42-49dc-ae56-2aa8c949548e/1500x1000.jpg", + "https://www.compass.com/m/0/30a6e91f-2844-4206-b97c-b7a6b10f43e0/1500x1000.jpg", + "https://www.compass.com/m/0/fa0909c0-8cab-419a-9ebf-05fface6b289/667x1000.jpg", + "https://www.compass.com/m/0/c0ff1a61-b6d6-4689-91b7-93bbb081d2ff/1500x1000.jpg", + "https://www.compass.com/m/0/2f333383-991c-4d54-b02c-e52bfd70f4b6/1500x1000.jpg", + "https://www.compass.com/m/0/0b898a91-079e-471c-b35c-8385fcc3d7b4/1500x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/130-Prospect-Pl-Unit-1-Brooklyn-NY-11217/27CHGP_pid/" + }, + { + "listing_id": "2099650396409116897", + "slug": "608-2nd-st-brooklyn-ny-11215", + "title": "$5,200,000", + "price": 5200000, + "is_rent": false, + "street": "608 2nd Street", + "neighborhood": "Park Slope", + "city": "New York", + "state": "NY", + "zip": "11215", + "beds": 5, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 4315, + "latitude": 40.6693968, + "longitude": -73.9749106, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/96a586b8-e5bf-4733-9f45-e75d50cf21ec", + "gallery_uuids": [ + "uuid/96a586b8-e5bf-4733-9f45-e75d50cf21ec", + "uuid/096a2524-945c-46a9-b1fd-9f3ae227de1a", + "uuid/4b8cb784-918b-4d32-b9c0-5d0131e8ff9d", + "uuid/2285106b-1e43-4748-b9bc-8ff92ef209fc", + "uuid/d3b8064d-994a-4fef-9fa8-ef77032340c2", + "uuid/50fee3fe-e257-4d27-9685-54544d4bdd3c", + "uuid/8d74c2a6-b989-48de-80a4-aec15de4abb1", + "uuid/5f0a12c7-e410-4d92-800d-116de9a2bf41" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/96a586b8-e5bf-4733-9f45-e75d50cf21ec/1498x1000.jpg", + "https://www.compass.com/m/0/096a2524-945c-46a9-b1fd-9f3ae227de1a/1499x1000.jpg", + "https://www.compass.com/m/0/4b8cb784-918b-4d32-b9c0-5d0131e8ff9d/667x1000.jpg", + "https://www.compass.com/m/0/2285106b-1e43-4748-b9bc-8ff92ef209fc/1495x1000.jpg", + "https://www.compass.com/m/0/d3b8064d-994a-4fef-9fa8-ef77032340c2/658x1000.jpg", + "https://www.compass.com/m/0/50fee3fe-e257-4d27-9685-54544d4bdd3c/1461x1000.jpg", + "https://www.compass.com/m/0/8d74c2a6-b989-48de-80a4-aec15de4abb1/1494x1000.jpg", + "https://www.compass.com/m/0/5f0a12c7-e410-4d92-800d-116de9a2bf41/667x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/608-2nd-St-Brooklyn-NY-11215/2037Z9_pid/" + }, + { + "listing_id": "2099685450614835857", + "slug": "8-pierrepont-st-unit-3-brooklyn-ny-11201", + "title": "$999,000", + "price": 999000, + "is_rent": false, + "street": "8 Pierrepont Street, Unit 3", + "neighborhood": "Brooklyn Heights", + "city": "New York", + "state": "NY", + "zip": "11201", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.6960719, + "longitude": -73.9968015, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Virtual Tour" + ], + "hero_uuid": "uuid/c34ad235-6497-4c8f-b998-5a674b3734b6", + "gallery_uuids": [ + "uuid/c34ad235-6497-4c8f-b998-5a674b3734b6", + "uuid/3b02cb63-9924-4e47-b0dd-44391176be56", + "uuid/b6024ba8-b4dc-4713-a355-22a2c3bf1f3c", + "uuid/267c22c2-34a4-48e6-ab3d-4a3366691222", + "uuid/11a7ea68-0fd0-4307-b79f-3e7a9a70b8d3", + "uuid/593eaa09-8f00-4776-910f-2b4f9834cdaa", + "uuid/c88d7ef3-aedb-41eb-92e8-7d8074b15f07", + "uuid/5d5faec7-f7f3-49de-9c93-c0a6289ea5bd" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/c34ad235-6497-4c8f-b998-5a674b3734b6/1500x1000.jpg", + "https://www.compass.com/m/0/3b02cb63-9924-4e47-b0dd-44391176be56/1500x1000.jpg", + "https://www.compass.com/m/0/b6024ba8-b4dc-4713-a355-22a2c3bf1f3c/1500x1000.jpg", + "https://www.compass.com/m/0/267c22c2-34a4-48e6-ab3d-4a3366691222/667x1000.jpg", + "https://www.compass.com/m/0/11a7ea68-0fd0-4307-b79f-3e7a9a70b8d3/668x1000.jpg", + "https://www.compass.com/m/0/593eaa09-8f00-4776-910f-2b4f9834cdaa/1500x1000.jpg", + "https://www.compass.com/m/0/c88d7ef3-aedb-41eb-92e8-7d8074b15f07/1500x1000.jpg", + "https://www.compass.com/m/0/5d5faec7-f7f3-49de-9c93-c0a6289ea5bd/1500x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/8-Pierrepont-St-Unit-3-Brooklyn-NY-11201/210LXA_pid/" + }, + { + "listing_id": "2099481680387729625", + "slug": "110-hoyt-st-unit-1-brooklyn-ny-11217", + "title": "$975,000", + "price": 975000, + "is_rent": false, + "street": "110 Hoyt Street, Unit 1", + "neighborhood": "Boerum Hill", + "city": "New York", + "state": "NY", + "zip": "11217", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 753, + "latitude": 40.687109, + "longitude": -73.98772199999999, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/797de414-2679-4a28-99c2-27b3ba36ecac", + "gallery_uuids": [ + "uuid/797de414-2679-4a28-99c2-27b3ba36ecac", + "uuid/be577e83-e7b1-43e1-add2-f0d0e670e121", + "uuid/747c50bc-2f11-4239-8626-8f621423087c", + "uuid/22eee882-ecea-4e5a-8f21-75126481dd34", + "uuid/acf0dc5d-3159-4063-ad36-b9a9157f040e", + "uuid/5f10a697-2126-4be9-9703-7c02bba7ba61" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/797de414-2679-4a28-99c2-27b3ba36ecac/1200x800.jpg", + "https://www.compass.com/m/0/be577e83-e7b1-43e1-add2-f0d0e670e121/1200x800.jpg", + "https://www.compass.com/m/0/747c50bc-2f11-4239-8626-8f621423087c/1200x800.jpg", + "https://www.compass.com/m/0/22eee882-ecea-4e5a-8f21-75126481dd34/1142x853.jpg", + "https://www.compass.com/m/0/acf0dc5d-3159-4063-ad36-b9a9157f040e/1143x861.jpg", + "https://www.compass.com/m/0/5f10a697-2126-4be9-9703-7c02bba7ba61/1141x852.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/110-Hoyt-St-Unit-1-Brooklyn-NY-11217/20MQ04_pid/" + }, + { + "listing_id": "2097973318919536305", + "slug": "21-monroe-pl-unit-5r-brooklyn-ny-11201", + "title": "$765,000", + "price": 765000, + "is_rent": false, + "street": "21 Monroe Place, Unit 5R", + "neighborhood": "Brooklyn Heights", + "city": "New York", + "state": "NY", + "zip": "11201", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.6965907, + "longitude": -73.9926789, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/25945dcf-390e-4fa2-8d59-5d33f21828a8", + "gallery_uuids": [ + "uuid/25945dcf-390e-4fa2-8d59-5d33f21828a8", + "uuid/06ecbd9a-6513-4771-a909-8fe41ac67a5b", + "uuid/387cfd5a-a023-4318-8730-0ae329961e55", + "uuid/a2003186-1cf2-44c6-81eb-09576f4aeb56", + "uuid/07d0b482-2ff2-40e7-a4f4-3fa815b91128", + "uuid/5b84404c-38b0-4ca8-b5be-8c3c94b42474", + "uuid/2ffcd197-3f75-4a7f-b363-3556cdd12b7d", + "uuid/ae9e899f-0f6b-449d-bbdd-15cff613280c" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/25945dcf-390e-4fa2-8d59-5d33f21828a8/1500x957.jpg", + "https://www.compass.com/m/0/06ecbd9a-6513-4771-a909-8fe41ac67a5b/1500x1000.jpg", + "https://www.compass.com/m/0/387cfd5a-a023-4318-8730-0ae329961e55/1500x1000.jpg", + "https://www.compass.com/m/0/a2003186-1cf2-44c6-81eb-09576f4aeb56/1500x1000.jpg", + "https://www.compass.com/m/0/07d0b482-2ff2-40e7-a4f4-3fa815b91128/1500x1000.jpg", + "https://www.compass.com/m/0/5b84404c-38b0-4ca8-b5be-8c3c94b42474/1500x1000.jpg", + "https://www.compass.com/m/0/2ffcd197-3f75-4a7f-b363-3556cdd12b7d/667x1000.jpg", + "https://www.compass.com/m/0/ae9e899f-0f6b-449d-bbdd-15cff613280c/1500x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/21-Monroe-Pl-Unit-5R-Brooklyn-NY-11201/202IEA_pid/" + }, + { + "listing_id": "2090048205038846297", + "slug": "115-spring-st-unit-2-manhattan-ny-10012", + "title": "$6,500,000", + "price": 6500000, + "is_rent": false, + "street": "115 Spring Street, Unit 2", + "neighborhood": "SoHo", + "city": "New York", + "state": "NY", + "zip": "10012", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 40.7238215, + "longitude": -73.99996709999999, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/77171699-a91d-4cdf-859a-48c7af651cd9", + "gallery_uuids": [ + "uuid/77171699-a91d-4cdf-859a-48c7af651cd9", + "uuid/6d794e97-61ad-47fa-94fb-941ea01b8af6", + "uuid/132f693c-f51a-4c14-a2c5-04077a6cf352", + "uuid/fcbb6d47-01b1-4a20-b28a-b4abd7d5a6b7", + "uuid/87bd88f5-d6e5-4dbd-9c57-a06f54e11b0e", + "uuid/3682e523-5d84-41a3-b606-3b8cc1fec416", + "uuid/40e113fb-e839-4a74-beb1-2e44172df634", + "uuid/631dc07f-72fb-426c-bb78-2e5712bac49c" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/77171699-a91d-4cdf-859a-48c7af651cd9/1500x1000.jpg", + "https://www.compass.com/m/0/6d794e97-61ad-47fa-94fb-941ea01b8af6/1500x1000.jpg", + "https://www.compass.com/m/0/132f693c-f51a-4c14-a2c5-04077a6cf352/667x1000.jpg", + "https://www.compass.com/m/0/fcbb6d47-01b1-4a20-b28a-b4abd7d5a6b7/1243x1000.jpg", + "https://www.compass.com/m/0/87bd88f5-d6e5-4dbd-9c57-a06f54e11b0e/1500x1000.jpg", + "https://www.compass.com/m/0/3682e523-5d84-41a3-b606-3b8cc1fec416/1500x1000.jpg", + "https://www.compass.com/m/0/40e113fb-e839-4a74-beb1-2e44172df634/1500x1000.jpg", + "https://www.compass.com/m/0/631dc07f-72fb-426c-bb78-2e5712bac49c/1191x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/115-Spring-St-Unit-2-Manhattan-NY-10012/200S37_pid/" + }, + { + "listing_id": "2099515477745254425", + "slug": "118-perry-st-unit-j45-manhattan-ny-10014", + "title": "$575,000", + "price": 575000, + "is_rent": false, + "street": "118 Perry Street, Unit J45", + "neighborhood": "West Village", + "city": "New York", + "state": "NY", + "zip": "10014", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.734961, + "longitude": -74.0067177, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/f3b0d656-e6c8-4eaf-af2d-bccc88ff121d", + "gallery_uuids": [ + "uuid/f3b0d656-e6c8-4eaf-af2d-bccc88ff121d", + "uuid/0370f7f2-2dcc-4996-91bc-051bf05f185a", + "uuid/d62b8bf3-63cb-4462-aac3-7dd7168df54d", + "uuid/074cdd40-35a9-4408-b0b9-394c8e7a644c", + "uuid/b9a26f8a-fb34-4d1f-b668-9963427321cf" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/f3b0d656-e6c8-4eaf-af2d-bccc88ff121d/1499x1000.jpg", + "https://www.compass.com/m/0/0370f7f2-2dcc-4996-91bc-051bf05f185a/1499x1000.jpg", + "https://www.compass.com/m/0/d62b8bf3-63cb-4462-aac3-7dd7168df54d/1499x1000.jpg", + "https://www.compass.com/m/0/074cdd40-35a9-4408-b0b9-394c8e7a644c/667x1000.jpg", + "https://www.compass.com/m/0/b9a26f8a-fb34-4d1f-b668-9963427321cf/667x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/118-Perry-St-Unit-J45-Manhattan-NY-10014/202YN0_pid/" + }, + { + "listing_id": "2100193524907712233", + "slug": "21-s-portland-ave-unit-2f-brooklyn-ny-11217", + "title": "$775,000", + "price": 775000, + "is_rent": false, + "street": "21 South Portland Avenue, Unit 2F", + "neighborhood": "Fort Greene", + "city": "New York", + "state": "NY", + "zip": "11217", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.6890852, + "longitude": -73.974773, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Open: 5/13 05:00PM - 06:30PM" + ], + "hero_uuid": "uuid/e03f64e7-0800-4f54-937f-15b60f765bac", + "gallery_uuids": [ + "uuid/e03f64e7-0800-4f54-937f-15b60f765bac", + "uuid/e69995a0-85b8-4d73-bfaf-0abf3beb2cee", + "uuid/1fddef44-639a-48f7-b6b0-b9da325aaf54", + "uuid/9e651ae6-8989-45ce-a605-d6e8edcd22fd", + "uuid/8992657b-131a-4056-b175-6a1ab396b0fe", + "uuid/d30a7c74-4408-4cb7-830b-0753ba597de5" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/e03f64e7-0800-4f54-937f-15b60f765bac/1500x1000.jpg", + "https://www.compass.com/m/0/e69995a0-85b8-4d73-bfaf-0abf3beb2cee/667x1000.jpg", + "https://www.compass.com/m/0/1fddef44-639a-48f7-b6b0-b9da325aaf54/1500x1000.jpg", + "https://www.compass.com/m/0/9e651ae6-8989-45ce-a605-d6e8edcd22fd/667x1000.jpg", + "https://www.compass.com/m/0/8992657b-131a-4056-b175-6a1ab396b0fe/1500x1000.jpg", + "https://www.compass.com/m/0/d30a7c74-4408-4cb7-830b-0753ba597de5/668x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/21-S-Portland-Ave-Unit-2F-Brooklyn-NY-11217/27FCV8_pid/" + }, + { + "listing_id": "2103086339581286569", + "slug": "150-charles-st-unit-m10-manhattan-ny-10014", + "title": "$21,500,000", + "price": 21500000, + "is_rent": false, + "street": "150 Charles Street, Unit M10", + "neighborhood": "West Village", + "city": "New York", + "state": "NY", + "zip": "10014", + "beds": 4, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 5612, + "latitude": 40.7338121, + "longitude": -74.0089966, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "uuid/b6e98f7d-9256-4fa0-9b50-46f6d940d69c", + "gallery_uuids": [ + "uuid/b6e98f7d-9256-4fa0-9b50-46f6d940d69c", + "uuid/1d577cb7-473c-4c85-8f15-26475e3d5c35", + "uuid/e5070ae2-cae3-46c9-a35f-83b90d406120", + "uuid/638e20c9-e857-4d81-b03f-95f285559c8c", + "uuid/2791712e-6651-4ade-8f61-268a310a726c", + "uuid/5424cfb6-ac12-4604-99cc-bf48ea130a59", + "uuid/22a996d0-f0cf-4468-a85f-4f22defc5910", + "uuid/07b79844-4427-4b1e-9f99-06ae0dcd2f8e" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/b6e98f7d-9256-4fa0-9b50-46f6d940d69c/1500x1000.jpg", + "https://www.compass.com/m/0/1d577cb7-473c-4c85-8f15-26475e3d5c35/1500x1000.jpg", + "https://www.compass.com/m/0/e5070ae2-cae3-46c9-a35f-83b90d406120/1500x1000.jpg", + "https://www.compass.com/m/0/638e20c9-e857-4d81-b03f-95f285559c8c/667x1000.jpg", + "https://www.compass.com/m/0/2791712e-6651-4ade-8f61-268a310a726c/1500x1000.jpg", + "https://www.compass.com/m/0/5424cfb6-ac12-4604-99cc-bf48ea130a59/1500x1000.jpg", + "https://www.compass.com/m/0/22a996d0-f0cf-4468-a85f-4f22defc5910/1500x1000.jpg", + "https://www.compass.com/m/0/07b79844-4427-4b1e-9f99-06ae0dcd2f8e/1500x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/150-Charles-St-Unit-M10-Manhattan-NY-10014/1K7C1U_pid/" + }, + { + "listing_id": "1956041055605751361", + "slug": "195-willoughby-ave-unit-1517-1518-brooklyn-ny-11205", + "title": "$1,125,000", + "price": 1125000, + "is_rent": false, + "street": "195 Willoughby Avenue, Unit 1517/1518", + "neighborhood": "Clinton Hill", + "city": "New York", + "state": "NY", + "zip": "11205", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1217, + "latitude": 40.6924643, + "longitude": -73.9642235, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/f4af8b6e-75ab-4cfe-8ffc-43443a235861", + "gallery_uuids": [ + "uuid/f4af8b6e-75ab-4cfe-8ffc-43443a235861", + "uuid/879e5304-242a-4b5d-8589-8c01f5d42c76", + "uuid/ab95eee4-6f65-4ad4-9372-795437e609f5", + "uuid/99dbf8e2-dcc7-4fe6-8fd2-2916837305dc", + "uuid/8801bb8f-efe1-45b3-a600-0750bc701560", + "uuid/9ef0a1c8-1f15-4cc8-832a-367096384443", + "uuid/2df38d03-614f-452c-bba1-ab736af21b3e", + "uuid/f057622d-f50f-4bc7-a6ac-61d1b597cc82" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/f4af8b6e-75ab-4cfe-8ffc-43443a235861/1089x727.jpg", + "https://www.compass.com/m/0/879e5304-242a-4b5d-8589-8c01f5d42c76/1499x1000.jpg", + "https://www.compass.com/m/0/ab95eee4-6f65-4ad4-9372-795437e609f5/1499x1000.jpg", + "https://www.compass.com/m/0/99dbf8e2-dcc7-4fe6-8fd2-2916837305dc/1499x1000.jpg", + "https://www.compass.com/m/0/8801bb8f-efe1-45b3-a600-0750bc701560/1499x1000.jpg", + "https://www.compass.com/m/0/9ef0a1c8-1f15-4cc8-832a-367096384443/1499x1000.jpg", + "https://www.compass.com/m/0/2df38d03-614f-452c-bba1-ab736af21b3e/1499x1000.jpg", + "https://www.compass.com/m/0/f057622d-f50f-4bc7-a6ac-61d1b597cc82/1499x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/195-Willoughby-Ave-Unit-1517-1518-Brooklyn-NY-11205/217F32_pid/" + }, + { + "listing_id": "2103279282510648129", + "slug": "20-e-9th-st-unit-4t-manhattan-ny-10003", + "title": "$799,000", + "price": 799000, + "is_rent": false, + "street": "20 East 9th Street, Unit 4T", + "neighborhood": "Greenwich Village", + "city": "New York", + "state": "NY", + "zip": "10003", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.7321377, + "longitude": -73.9947952, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "uuid/fc8884ab-cba8-409a-a206-06c221621f79", + "gallery_uuids": [ + "uuid/fc8884ab-cba8-409a-a206-06c221621f79", + "uuid/369dc83c-700f-4026-8086-73218e526f9a", + "uuid/2917525c-212e-4d9c-8162-c6046147e8b1", + "uuid/81907126-bd10-4608-8872-459342d5438b", + "uuid/d66b55ac-e2e9-4629-9d59-5ebeba60673b" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/fc8884ab-cba8-409a-a206-06c221621f79/1500x998.jpg", + "https://www.compass.com/m/0/369dc83c-700f-4026-8086-73218e526f9a/1497x1000.jpg", + "https://www.compass.com/m/0/2917525c-212e-4d9c-8162-c6046147e8b1/1497x1000.jpg", + "https://www.compass.com/m/0/81907126-bd10-4608-8872-459342d5438b/1497x1000.jpg", + "https://www.compass.com/m/0/d66b55ac-e2e9-4629-9d59-5ebeba60673b/668x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/20-E-9th-St-Unit-4T-Manhattan-NY-10003/20WJ6M_pid/" + }, + { + "listing_id": "2095758880146018681", + "slug": "634-washington-st-unit-4b-manhattan-ny-10014", + "title": "$1,750,000", + "price": 1750000, + "is_rent": false, + "street": "634 Washington Street, Unit 4B", + "neighborhood": "West Village", + "city": "New York", + "state": "NY", + "zip": "10014", + "beds": 3, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": null, + "latitude": 40.732216, + "longitude": -74.0089362, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/ce119cc7-0df9-4333-a1b7-90c42c888a58", + "gallery_uuids": [ + "uuid/ce119cc7-0df9-4333-a1b7-90c42c888a58", + "uuid/305f9179-8ed1-4c13-b503-5a7415d850a7", + "uuid/e58ee6fa-2f1d-43a0-922f-d24391c98f14", + "uuid/db25f635-f885-4708-8f5d-bcb1ebb38e92", + "uuid/0f7bd279-59c3-4c0b-9030-605aba99766b", + "uuid/4c6a4d43-47a8-4e35-944a-1324a3b7604f", + "uuid/909c8095-1867-4783-9935-402bdf63aa07", + "uuid/7d647fd4-4bc6-4d4d-ac38-8743c113bdad" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/ce119cc7-0df9-4333-a1b7-90c42c888a58/1500x1000.jpg", + "https://www.compass.com/m/0/305f9179-8ed1-4c13-b503-5a7415d850a7/1500x1000.jpg", + "https://www.compass.com/m/0/e58ee6fa-2f1d-43a0-922f-d24391c98f14/1500x1000.jpg", + "https://www.compass.com/m/0/db25f635-f885-4708-8f5d-bcb1ebb38e92/1500x1000.jpg", + "https://www.compass.com/m/0/0f7bd279-59c3-4c0b-9030-605aba99766b/1500x1000.jpg", + "https://www.compass.com/m/0/4c6a4d43-47a8-4e35-944a-1324a3b7604f/1500x1000.jpg", + "https://www.compass.com/m/0/909c8095-1867-4783-9935-402bdf63aa07/1500x1000.jpg", + "https://www.compass.com/m/0/7d647fd4-4bc6-4d4d-ac38-8743c113bdad/1500x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/634-Washington-St-Unit-4B-Manhattan-NY-10014/20NKIJ_pid/" + }, + { + "listing_id": "2100223580422490329", + "slug": "195-willoughby-ave-unit-1518-brooklyn-ny-11205", + "title": "$700,000", + "price": 700000, + "is_rent": false, + "street": "195 Willoughby Avenue, Unit 1518", + "neighborhood": "Clinton Hill", + "city": "New York", + "state": "NY", + "zip": "11205", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.6924643, + "longitude": -73.9642235, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/5ec2194c-7b58-448a-b7db-c56c6d96e5cf", + "gallery_uuids": [ + "uuid/5ec2194c-7b58-448a-b7db-c56c6d96e5cf", + "uuid/4c91d72c-53c5-49cc-9adb-9d6643cc3919", + "uuid/10368539-54c8-463c-9306-8f7db5a29739", + "uuid/39c9d26c-c63d-43b9-a04d-0762797af82e", + "uuid/8a489119-36aa-43b8-bee0-5904bc027e07", + "uuid/2b5377fe-59e1-41a2-ac42-c8f993308945", + "uuid/79510867-8c87-48e6-af69-6590d7efb3ff" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/5ec2194c-7b58-448a-b7db-c56c6d96e5cf/1089x727.jpg", + "https://www.compass.com/m/0/4c91d72c-53c5-49cc-9adb-9d6643cc3919/1499x1000.jpg", + "https://www.compass.com/m/0/10368539-54c8-463c-9306-8f7db5a29739/1499x1000.jpg", + "https://www.compass.com/m/0/39c9d26c-c63d-43b9-a04d-0762797af82e/1499x1000.jpg", + "https://www.compass.com/m/0/8a489119-36aa-43b8-bee0-5904bc027e07/1499x1000.jpg", + "https://www.compass.com/m/0/2b5377fe-59e1-41a2-ac42-c8f993308945/1499x1000.jpg", + "https://www.compass.com/m/0/79510867-8c87-48e6-af69-6590d7efb3ff/1499x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/195-Willoughby-Ave-Unit-1518-Brooklyn-NY-11205/27FD75_pid/" + }, + { + "listing_id": "2077759953407909369", + "slug": "787-carroll-st-brooklyn-ny-11215", + "title": "$10,250,000", + "price": 10250000, + "is_rent": false, + "street": "787 Carroll Street", + "neighborhood": "Park Slope", + "city": "New York", + "state": "NY", + "zip": "11215", + "beds": 5, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 6664, + "latitude": 40.672738, + "longitude": -73.97451699999999, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/3e3e2790-5844-45fb-b992-ae129faff1a1", + "gallery_uuids": [ + "uuid/3e3e2790-5844-45fb-b992-ae129faff1a1", + "uuid/62f2af13-c206-4943-b1b1-c6070cd44a55", + "uuid/f5687bb2-1a1e-490d-bf0f-e449cddb70c6", + "uuid/2a0dd399-d00f-43aa-8216-283ebd064531", + "uuid/dd248664-f718-4092-ae34-03ff06e15eff", + "uuid/408a02ad-052c-4a28-9a36-652d6e79abc3", + "uuid/47c1b4e7-a6b1-4b8f-945d-ff6a07ef5bf5", + "uuid/f671560e-9750-4cb9-b712-09eb732f77f1" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/3e3e2790-5844-45fb-b992-ae129faff1a1/1499x1000.jpg", + "https://www.compass.com/m/0/62f2af13-c206-4943-b1b1-c6070cd44a55/1498x1000.jpg", + "https://www.compass.com/m/0/f5687bb2-1a1e-490d-bf0f-e449cddb70c6/800x1000.jpg", + "https://www.compass.com/m/0/2a0dd399-d00f-43aa-8216-283ebd064531/667x1000.jpg", + "https://www.compass.com/m/0/dd248664-f718-4092-ae34-03ff06e15eff/667x1000.jpg", + "https://www.compass.com/m/0/408a02ad-052c-4a28-9a36-652d6e79abc3/667x1000.jpg", + "https://www.compass.com/m/0/47c1b4e7-a6b1-4b8f-945d-ff6a07ef5bf5/667x1000.jpg", + "https://www.compass.com/m/0/f671560e-9750-4cb9-b712-09eb732f77f1/714x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/787-Carroll-St-Brooklyn-NY-11215/20BSH8_pid/" + }, + { + "listing_id": "2100217884377007633", + "slug": "195-willoughby-ave-unit-1517-brooklyn-ny-11205", + "title": "$425,000", + "price": 425000, + "is_rent": false, + "street": "195 Willoughby Avenue, Unit 1517", + "neighborhood": "Clinton Hill", + "city": "New York", + "state": "NY", + "zip": "11205", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.6924643, + "longitude": -73.9642235, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/7b7e7995-f81c-4d62-a376-e8b27cf9e55a", + "gallery_uuids": [ + "uuid/7b7e7995-f81c-4d62-a376-e8b27cf9e55a", + "uuid/55beca50-0c63-4e5a-ac25-d53b209134c8", + "uuid/ca438833-7fdb-4377-b740-123b86b4eb68", + "uuid/c0495d1c-4b33-44e2-ad84-c047b9bb015b" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/7b7e7995-f81c-4d62-a376-e8b27cf9e55a/1089x727.jpg", + "https://www.compass.com/m/0/55beca50-0c63-4e5a-ac25-d53b209134c8/1499x1000.jpg", + "https://www.compass.com/m/0/ca438833-7fdb-4377-b740-123b86b4eb68/1499x1000.jpg", + "https://www.compass.com/m/0/c0495d1c-4b33-44e2-ad84-c047b9bb015b/1499x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/195-Willoughby-Ave-Unit-1517-Brooklyn-NY-11205/208DRC_pid/" + }, + { + "listing_id": "2099544667215444585", + "slug": "270-5th-st-unit-4c-brooklyn-ny-11215", + "title": "$1,380,000", + "price": 1380000, + "is_rent": false, + "street": "270 5th Street, Unit 4C", + "neighborhood": "Park Slope", + "city": "New York", + "state": "NY", + "zip": "11215", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.67231880000001, + "longitude": -73.9861713, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/bea66c16-e5b1-44e3-9cc6-bc4fae2674b6", + "gallery_uuids": [ + "uuid/bea66c16-e5b1-44e3-9cc6-bc4fae2674b6", + "uuid/b968714e-39c8-461e-a04a-f00cd41bc5a2", + "uuid/04b2d64b-e58d-423e-adef-c7a546c95664", + "uuid/c121bca2-e312-4a90-8bec-03830d2de235", + "uuid/aa1f6f28-1ff5-47dd-8bd7-1c53298a53cd", + "uuid/965f22c7-903a-4fba-96ce-dedcef8302dd", + "uuid/83c03d57-295d-4d03-815d-e7e74b195d09", + "uuid/76e2115a-99c6-4430-b00c-727a695c6550" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/bea66c16-e5b1-44e3-9cc6-bc4fae2674b6/1500x1000.jpg", + "https://www.compass.com/m/0/b968714e-39c8-461e-a04a-f00cd41bc5a2/1500x1000.jpg", + "https://www.compass.com/m/0/04b2d64b-e58d-423e-adef-c7a546c95664/1500x1000.jpg", + "https://www.compass.com/m/0/c121bca2-e312-4a90-8bec-03830d2de235/1500x1000.jpg", + "https://www.compass.com/m/0/aa1f6f28-1ff5-47dd-8bd7-1c53298a53cd/1500x1000.jpg", + "https://www.compass.com/m/0/965f22c7-903a-4fba-96ce-dedcef8302dd/1500x1000.jpg", + "https://www.compass.com/m/0/83c03d57-295d-4d03-815d-e7e74b195d09/1500x1000.jpg", + "https://www.compass.com/m/0/76e2115a-99c6-4430-b00c-727a695c6550/1500x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/270-5th-St-Unit-4C-Brooklyn-NY-11215/1Q6DH7_pid/" + }, + { + "listing_id": "2099310324706805097", + "slug": "228-w-21st-st-unit-2-manhattan-ny-10011", + "title": "$1,800,000", + "price": 1800000, + "is_rent": false, + "street": "228 West 21st Street, Unit 2", + "neighborhood": "Chelsea", + "city": "New York", + "state": "NY", + "zip": "10011", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 40.743199, + "longitude": -73.9980625, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/59303779-ffea-4a68-bb1a-3ee997a84f13", + "gallery_uuids": [ + "uuid/59303779-ffea-4a68-bb1a-3ee997a84f13", + "uuid/0f4c9c2d-a0b9-47c0-b262-e40587f87b70", + "uuid/65cc9e6f-00ca-46e4-b0eb-b312c66cab48", + "uuid/2fb26628-48fe-4e88-89a7-f125b143c487", + "uuid/2f1d3753-8818-4217-ba53-4ce21005ee73", + "uuid/94b820af-e0f3-46f3-87a7-59aec9ca3d2b", + "uuid/8b364b8e-28ae-4793-9dbf-cf0638f6565d", + "uuid/a13ad47e-af6c-44d7-a487-971bfe6989e0" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/59303779-ffea-4a68-bb1a-3ee997a84f13/1500x1000.jpg", + "https://www.compass.com/m/0/0f4c9c2d-a0b9-47c0-b262-e40587f87b70/1500x1000.jpg", + "https://www.compass.com/m/0/65cc9e6f-00ca-46e4-b0eb-b312c66cab48/1500x1000.jpg", + "https://www.compass.com/m/0/2fb26628-48fe-4e88-89a7-f125b143c487/1500x1000.jpg", + "https://www.compass.com/m/0/2f1d3753-8818-4217-ba53-4ce21005ee73/1500x1000.jpg", + "https://www.compass.com/m/0/94b820af-e0f3-46f3-87a7-59aec9ca3d2b/1500x1000.jpg", + "https://www.compass.com/m/0/8b364b8e-28ae-4793-9dbf-cf0638f6565d/1500x1000.jpg", + "https://www.compass.com/m/0/a13ad47e-af6c-44d7-a487-971bfe6989e0/1500x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/228-W-21st-St-Unit-2-Manhattan-NY-10011/18ZIL7_pid/" + }, + { + "listing_id": "2100973576222022945", + "slug": "230-e-15th-st-unit-9b-manhattan-ny-10003", + "title": "$550,000", + "price": 550000, + "is_rent": false, + "street": "230 East 15th Street, Unit 9B", + "neighborhood": "Gramercy", + "city": "New York", + "state": "NY", + "zip": "10003", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 600, + "latitude": 40.7332359, + "longitude": -73.98542479999999, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "uuid/f1395304-5a61-49b2-b173-61d440c9f5a2", + "gallery_uuids": [ + "uuid/f1395304-5a61-49b2-b173-61d440c9f5a2", + "uuid/3b88f37c-f3ea-4e5a-a661-3a61d7f45c55", + "uuid/9b5cc1da-e3ed-4ddc-bee0-7b4fc5e7ebaf", + "uuid/ada10a50-0ecc-4b4d-88d5-65ce2e843d75", + "uuid/2bc45130-4184-4d3a-b002-77e4d85de734", + "uuid/e34717fc-6768-4a93-a0c8-8e55b523c740", + "uuid/3a9372cf-1a2a-4951-a885-be28e9ddd023", + "uuid/addec2aa-3d8b-4dc7-91ba-efa356eb715c" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/f1395304-5a61-49b2-b173-61d440c9f5a2/1500x1000.jpg", + "https://www.compass.com/m/0/3b88f37c-f3ea-4e5a-a661-3a61d7f45c55/1500x998.jpg", + "https://www.compass.com/m/0/9b5cc1da-e3ed-4ddc-bee0-7b4fc5e7ebaf/1499x1000.jpg", + "https://www.compass.com/m/0/ada10a50-0ecc-4b4d-88d5-65ce2e843d75/1500x1000.jpg", + "https://www.compass.com/m/0/2bc45130-4184-4d3a-b002-77e4d85de734/1500x1000.jpg", + "https://www.compass.com/m/0/e34717fc-6768-4a93-a0c8-8e55b523c740/667x1000.jpg", + "https://www.compass.com/m/0/3a9372cf-1a2a-4951-a885-be28e9ddd023/640x427.jpg", + "https://www.compass.com/m/0/addec2aa-3d8b-4dc7-91ba-efa356eb715c/933x622.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/230-E-15th-St-Unit-9B-Manhattan-NY-10003/20OQAH_pid/" + }, + { + "listing_id": "2098038012485729881", + "slug": "470-w-24th-st-unit-11g-manhattan-ny-10011", + "title": "$1,150,000", + "price": 1150000, + "is_rent": false, + "street": "470 West 24th Street, Unit 11G", + "neighborhood": "Chelsea", + "city": "New York", + "state": "NY", + "zip": "10011", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.7480377, + "longitude": -74.00347339999999, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/4bd275c7-e682-431b-974c-facb4b0defa5", + "gallery_uuids": [ + "uuid/4bd275c7-e682-431b-974c-facb4b0defa5", + "uuid/f098a127-bcae-46a2-ab1e-0fa91358afbb", + "uuid/ede05d70-2824-4c08-960b-7aabea0021f7", + "uuid/dfab5fad-4904-43b3-a423-a1cf241e017f", + "uuid/943c2c06-2c83-4abd-a0d2-86735474afa3", + "uuid/ed5732a2-b3be-4725-aa3f-730e1595811b", + "uuid/32c47b84-1218-4acd-8287-d38ff3dc6e70", + "uuid/5a7e05fa-44dc-47e4-8025-2288b4df9ce5" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/4bd275c7-e682-431b-974c-facb4b0defa5/1500x1000.jpg", + "https://www.compass.com/m/0/f098a127-bcae-46a2-ab1e-0fa91358afbb/1500x1000.jpg", + "https://www.compass.com/m/0/ede05d70-2824-4c08-960b-7aabea0021f7/1500x1000.jpg", + "https://www.compass.com/m/0/dfab5fad-4904-43b3-a423-a1cf241e017f/1500x1000.jpg", + "https://www.compass.com/m/0/943c2c06-2c83-4abd-a0d2-86735474afa3/1500x1000.jpg", + "https://www.compass.com/m/0/ed5732a2-b3be-4725-aa3f-730e1595811b/640x427.jpg", + "https://www.compass.com/m/0/32c47b84-1218-4acd-8287-d38ff3dc6e70/984x656.jpg", + "https://www.compass.com/m/0/5a7e05fa-44dc-47e4-8025-2288b4df9ce5/1000x672.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/470-W-24th-St-Unit-11G-Manhattan-NY-10011/201N81_pid/" + }, + { + "listing_id": "1896691635271890545", + "slug": "155-w-20th-st-unit-6h-manhattan-ny-10011", + "title": "$895,000", + "price": 895000, + "is_rent": false, + "street": "155 West 20th Street, Unit 6H", + "neighborhood": "Chelsea", + "city": "New York", + "state": "NY", + "zip": "10011", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 850, + "latitude": 40.7421198, + "longitude": -73.9962714, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/dfbc02ba-425a-48fa-862c-6dce263d5b28", + "gallery_uuids": [ + "uuid/dfbc02ba-425a-48fa-862c-6dce263d5b28" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/dfbc02ba-425a-48fa-862c-6dce263d5b28/1500x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/155-W-20th-St-Unit-6H-Manhattan-NY-10011/1P5HYE_pid/" + }, + { + "listing_id": "2103096966395518345", + "slug": "1-northside-piers-unit-24j-brooklyn-ny-11249", + "title": "$2,100,000", + "price": 2100000, + "is_rent": false, + "street": "1 Northside Piers, Unit 24J", + "neighborhood": "Williamsburg", + "city": "New York", + "state": "NY", + "zip": "11249", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1064, + "latitude": 40.719249, + "longitude": -73.963953, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "uuid/ed8fab35-0102-44cd-bbbc-9939450deb1f", + "gallery_uuids": [ + "uuid/ed8fab35-0102-44cd-bbbc-9939450deb1f", + "uuid/1d3bf62f-3d1d-4b68-b731-b7ccf4d2876c", + "uuid/287d9c80-0f44-4afa-9804-c5c3ef1b4db4", + "uuid/7e34532a-bfa0-48dd-9b06-696b18cb21f8", + "uuid/c08a9297-4c39-47ea-9265-9c613da4a329", + "uuid/99a0265d-8050-43c7-a690-e845302463aa", + "uuid/36b1442f-f292-4194-9b78-48d17e678e4b", + "uuid/b9b4f24f-b048-4c4b-a1fe-daeed76d8dcc" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/ed8fab35-0102-44cd-bbbc-9939450deb1f/1200x800.jpg", + "https://www.compass.com/m/0/1d3bf62f-3d1d-4b68-b731-b7ccf4d2876c/1200x800.jpg", + "https://www.compass.com/m/0/287d9c80-0f44-4afa-9804-c5c3ef1b4db4/1200x800.jpg", + "https://www.compass.com/m/0/7e34532a-bfa0-48dd-9b06-696b18cb21f8/1200x800.jpg", + "https://www.compass.com/m/0/c08a9297-4c39-47ea-9265-9c613da4a329/1200x800.jpg", + "https://www.compass.com/m/0/99a0265d-8050-43c7-a690-e845302463aa/1200x800.jpg", + "https://www.compass.com/m/0/36b1442f-f292-4194-9b78-48d17e678e4b/1200x800.jpg", + "https://www.compass.com/m/0/b9b4f24f-b048-4c4b-a1fe-daeed76d8dcc/1200x800.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/1-Northside-Piers-Unit-24J-Brooklyn-NY-11249/200GB3_pid/" + }, + { + "listing_id": "2097984564385442145", + "slug": "150-charles-st-unit-3as-manhattan-ny-10014", + "title": "$9,500,000", + "price": 9500000, + "is_rent": false, + "street": "150 Charles Street, Unit 3AS", + "neighborhood": "West Village", + "city": "New York", + "state": "NY", + "zip": "10014", + "beds": 3, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2461, + "latitude": 40.7338121, + "longitude": -74.0089966, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/42943685-e3cc-42d4-aa33-ddeb5ba7a55f", + "gallery_uuids": [ + "uuid/42943685-e3cc-42d4-aa33-ddeb5ba7a55f", + "uuid/8f1a8659-13ea-4557-83d7-fdf85713733c", + "uuid/a525fbc1-4b13-479c-9168-16ab768e665c", + "uuid/f7d680c3-9883-4745-829e-cda64e6526e9", + "uuid/b79056c9-3508-4bfb-b696-4e40ec534f15", + "uuid/d9473f1c-245d-4ef0-8f8c-8bb53850cbc8", + "uuid/525a7069-1407-49f2-9e09-e8df54250dd2", + "uuid/ecd20953-809e-4049-acab-6048760b142f" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/42943685-e3cc-42d4-aa33-ddeb5ba7a55f/1500x1000.jpg", + "https://www.compass.com/m/0/8f1a8659-13ea-4557-83d7-fdf85713733c/1500x1000.jpg", + "https://www.compass.com/m/0/a525fbc1-4b13-479c-9168-16ab768e665c/1500x1000.jpg", + "https://www.compass.com/m/0/f7d680c3-9883-4745-829e-cda64e6526e9/1500x1000.jpg", + "https://www.compass.com/m/0/b79056c9-3508-4bfb-b696-4e40ec534f15/1500x1000.jpg", + "https://www.compass.com/m/0/d9473f1c-245d-4ef0-8f8c-8bb53850cbc8/1500x1000.jpg", + "https://www.compass.com/m/0/525a7069-1407-49f2-9e09-e8df54250dd2/1500x1000.jpg", + "https://www.compass.com/m/0/ecd20953-809e-4049-acab-6048760b142f/1399x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/150-Charles-St-Unit-3AS-Manhattan-NY-10014/1K6RPP_pid/" + }, + { + "listing_id": "2098670859852220705", + "slug": "10-quincy-st-unit-2c-brooklyn-ny-11238", + "title": "$1,199,000", + "price": 1199000, + "is_rent": false, + "street": "10 Quincy Street, Unit 2C", + "neighborhood": "Clinton Hill", + "city": "New York", + "state": "NY", + "zip": "11238", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 730, + "latitude": 40.6856857, + "longitude": -73.9608599, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/ffb94d13-8320-4897-8210-21ae03ff5f17", + "gallery_uuids": [ + "uuid/ffb94d13-8320-4897-8210-21ae03ff5f17", + "uuid/56ca0c85-9548-48ef-8bee-5dee114d3835", + "uuid/04709fd5-67fe-4b9a-b79c-f33b3f1c2feb", + "uuid/55bc83ec-a25a-40e4-8f41-b76bfa942ebd", + "uuid/680fa11e-652c-4b42-8bd4-b8edfd25852e", + "uuid/8589eb7e-1d58-45a9-ae27-839bf1d8865c", + "uuid/a54996aa-100a-4148-9ccd-9777cd109b13", + "uuid/6c55ce44-a384-4d14-9a6c-4a65b421f1e2" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/ffb94d13-8320-4897-8210-21ae03ff5f17/1499x1000.jpg", + "https://www.compass.com/m/0/56ca0c85-9548-48ef-8bee-5dee114d3835/1499x1000.jpg", + "https://www.compass.com/m/0/04709fd5-67fe-4b9a-b79c-f33b3f1c2feb/667x1000.jpg", + "https://www.compass.com/m/0/55bc83ec-a25a-40e4-8f41-b76bfa942ebd/667x1000.jpg", + "https://www.compass.com/m/0/680fa11e-652c-4b42-8bd4-b8edfd25852e/1499x1000.jpg", + "https://www.compass.com/m/0/8589eb7e-1d58-45a9-ae27-839bf1d8865c/667x1000.jpg", + "https://www.compass.com/m/0/a54996aa-100a-4148-9ccd-9777cd109b13/859x1000.jpg", + "https://www.compass.com/m/0/6c55ce44-a384-4d14-9a6c-4a65b421f1e2/1500x844.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/10-Quincy-St-Unit-2C-Brooklyn-NY-11238/20BIWX_pid/" + }, + { + "listing_id": "2100141366401049057", + "slug": "273-state-st-brooklyn-ny-11201", + "title": "$4,750,000", + "price": 4750000, + "is_rent": false, + "street": "273 State Street", + "neighborhood": "Boerum Hill", + "city": "New York", + "state": "NY", + "zip": "11201", + "beds": 4, + "baths": 4.0, + "baths_full": 4, + "baths_half": null, + "sqft": 3837, + "latitude": 40.6890942, + "longitude": -73.9878633, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Open: 5/12 05:00PM - 06:00PM" + ], + "hero_uuid": "uuid/d0b04f1b-891d-4ade-bc37-06ebc95b67b2", + "gallery_uuids": [ + "uuid/d0b04f1b-891d-4ade-bc37-06ebc95b67b2", + "uuid/be778f63-552b-493a-880d-7f1126db2b22", + "uuid/14e0eed2-306d-4eca-aeb8-2e4f151a89c8", + "uuid/e5f50ea4-8a4f-4ca0-9f44-77105b36ab95", + "uuid/ef0e191d-596d-4175-b76a-78c2cf83e591", + "uuid/f8ee57aa-5326-4685-8fe8-fb2b5fccf5ad", + "uuid/ec3b5954-58fd-4e2e-bd99-73c4beacfae0", + "uuid/405ffa4a-73fe-49d2-848a-b78896f7080c" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/d0b04f1b-891d-4ade-bc37-06ebc95b67b2/1499x1000.jpg", + "https://www.compass.com/m/0/be778f63-552b-493a-880d-7f1126db2b22/1500x999.jpg", + "https://www.compass.com/m/0/14e0eed2-306d-4eca-aeb8-2e4f151a89c8/1499x1000.jpg", + "https://www.compass.com/m/0/e5f50ea4-8a4f-4ca0-9f44-77105b36ab95/1499x1000.jpg", + "https://www.compass.com/m/0/ef0e191d-596d-4175-b76a-78c2cf83e591/1499x1000.jpg", + "https://www.compass.com/m/0/f8ee57aa-5326-4685-8fe8-fb2b5fccf5ad/1499x1000.jpg", + "https://www.compass.com/m/0/ec3b5954-58fd-4e2e-bd99-73c4beacfae0/1041x1000.jpg", + "https://www.compass.com/m/0/405ffa4a-73fe-49d2-848a-b78896f7080c/1499x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/273-State-St-Brooklyn-NY-11201/201HPL_pid/" + }, + { + "listing_id": "2098680140269799641", + "slug": "137-putnam-ave-brooklyn-ny-11238", + "title": "$2,850,000", + "price": 2850000, + "is_rent": false, + "street": "137 Putnam Avenue", + "neighborhood": "Bedford-Stuyvesant", + "city": "New York", + "state": "NY", + "zip": "11238", + "beds": 5, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2753, + "latitude": 40.683479, + "longitude": -73.956666, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/359274f5-2653-4b67-9b81-0af112f18734", + "gallery_uuids": [ + "uuid/359274f5-2653-4b67-9b81-0af112f18734", + "uuid/27045312-5c10-458b-b2fe-c2c4d78435b5", + "uuid/f3c011ff-9dd5-4ca8-acb3-74d974316e37", + "uuid/8bdc22c1-5a5d-431e-aedb-4ea67c49f8b4", + "uuid/cb8a26a5-8368-453c-810a-fb24636acd09", + "uuid/784bd536-89bc-4a05-8f7d-466da63a48be", + "uuid/29cca26e-0826-4051-9675-fa733ee43c25", + "uuid/1f1a5605-8ddf-4f0f-abc2-4ed6f2a8f4d3" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/359274f5-2653-4b67-9b81-0af112f18734/1500x1000.jpg", + "https://www.compass.com/m/0/27045312-5c10-458b-b2fe-c2c4d78435b5/1500x1000.jpg", + "https://www.compass.com/m/0/f3c011ff-9dd5-4ca8-acb3-74d974316e37/1500x1000.jpg", + "https://www.compass.com/m/0/8bdc22c1-5a5d-431e-aedb-4ea67c49f8b4/1500x1000.jpg", + "https://www.compass.com/m/0/cb8a26a5-8368-453c-810a-fb24636acd09/1500x1000.jpg", + "https://www.compass.com/m/0/784bd536-89bc-4a05-8f7d-466da63a48be/667x1000.jpg", + "https://www.compass.com/m/0/29cca26e-0826-4051-9675-fa733ee43c25/1500x1000.jpg", + "https://www.compass.com/m/0/1f1a5605-8ddf-4f0f-abc2-4ed6f2a8f4d3/1500x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/137-Putnam-Ave-Brooklyn-NY-11238/2072SR_pid/" + }, + { + "listing_id": "2085120535770718105", + "slug": "389-classon-ave-brooklyn-ny-11238", + "title": "$3,995,000", + "price": 3995000, + "is_rent": false, + "street": "389 Classon Avenue", + "neighborhood": "Bedford-Stuyvesant", + "city": "New York", + "state": "NY", + "zip": "11238", + "beds": 4, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2565, + "latitude": 40.6877378, + "longitude": -73.959644, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Open: 5/17 01:30PM - 03:00PM" + ], + "hero_uuid": "uuid/196bba09-0d94-4772-a549-a430c219b7a3", + "gallery_uuids": [ + "uuid/196bba09-0d94-4772-a549-a430c219b7a3", + "uuid/d9b4dc05-8085-4e9e-8064-c01dee51bd4b", + "uuid/eac056d9-d1a3-480a-9e95-825d5bc3f36a", + "uuid/1ab3ab18-47e6-4924-b1e4-8a681caaff9e", + "uuid/8ffb8165-d7c1-44ee-a8ef-2bc75fb2c3b5", + "uuid/790cfa78-d740-419e-84c6-6cb8d2527b0c", + "uuid/01cc2983-58af-4813-942c-5e8763ae33f6", + "uuid/c8d283f3-a51a-47a7-a182-5ef3c2b03088" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/196bba09-0d94-4772-a549-a430c219b7a3/1499x1000.jpg", + "https://www.compass.com/m/0/d9b4dc05-8085-4e9e-8064-c01dee51bd4b/1384x1000.jpg", + "https://www.compass.com/m/0/eac056d9-d1a3-480a-9e95-825d5bc3f36a/667x1000.jpg", + "https://www.compass.com/m/0/1ab3ab18-47e6-4924-b1e4-8a681caaff9e/667x1000.jpg", + "https://www.compass.com/m/0/8ffb8165-d7c1-44ee-a8ef-2bc75fb2c3b5/1500x1000.jpg", + "https://www.compass.com/m/0/790cfa78-d740-419e-84c6-6cb8d2527b0c/1500x1000.jpg", + "https://www.compass.com/m/0/01cc2983-58af-4813-942c-5e8763ae33f6/1500x1000.jpg", + "https://www.compass.com/m/0/c8d283f3-a51a-47a7-a182-5ef3c2b03088/1500x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/389-Classon-Ave-Brooklyn-NY-11238/1OIALP_pid/" + }, + { + "listing_id": "2093084609319847793", + "slug": "479-henry-st-brooklyn-ny-11231", + "title": "$9,950,000", + "price": 9950000, + "is_rent": false, + "street": "479 Henry Street", + "neighborhood": "Cobble Hill", + "city": "New York", + "state": "NY", + "zip": "11231", + "beds": 5, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 4800, + "latitude": 40.6852857, + "longitude": -73.99862999999999, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/658435d4-1f4c-4d4d-993c-2946a9aac646", + "gallery_uuids": [ + "uuid/658435d4-1f4c-4d4d-993c-2946a9aac646", + "uuid/870defec-b601-4a53-9fc7-119988ad829b", + "uuid/5758752a-c854-41af-b7e3-06fbb3019ab9", + "uuid/6519b988-0389-4c48-bfc4-4c925a47e8cd", + "uuid/956cb4ab-ddf5-4c98-8676-0f1f49a3e6f0", + "uuid/d193004f-20b4-42ba-9fc1-97cdbb8e6a0b", + "uuid/1b1ae363-3e3b-4fa7-861a-975da2219621", + "uuid/de786113-7141-4830-88b8-8488e6d1c7f9" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/658435d4-1f4c-4d4d-993c-2946a9aac646/1499x1000.jpg", + "https://www.compass.com/m/0/870defec-b601-4a53-9fc7-119988ad829b/1499x1000.jpg", + "https://www.compass.com/m/0/5758752a-c854-41af-b7e3-06fbb3019ab9/1499x1000.jpg", + "https://www.compass.com/m/0/6519b988-0389-4c48-bfc4-4c925a47e8cd/1498x1000.jpg", + "https://www.compass.com/m/0/956cb4ab-ddf5-4c98-8676-0f1f49a3e6f0/1499x1000.jpg", + "https://www.compass.com/m/0/d193004f-20b4-42ba-9fc1-97cdbb8e6a0b/1498x1000.jpg", + "https://www.compass.com/m/0/1b1ae363-3e3b-4fa7-861a-975da2219621/1499x1000.jpg", + "https://www.compass.com/m/0/de786113-7141-4830-88b8-8488e6d1c7f9/750x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/479-Henry-St-Brooklyn-NY-11231/20VW71_pid/" + }, + { + "listing_id": "2100294315240937585", + "slug": "50-king-st-unit-9a-manhattan-ny-10014", + "title": "$565,000", + "price": 565000, + "is_rent": false, + "street": "50 King Street, Unit 9A", + "neighborhood": "Hudson Square", + "city": "New York", + "state": "NY", + "zip": "10014", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.7277436, + "longitude": -74.00471, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/cc2cbc2f-811e-4963-ad46-177d77778c5c", + "gallery_uuids": [ + "uuid/cc2cbc2f-811e-4963-ad46-177d77778c5c", + "uuid/f00a470c-3d5d-4fd2-91d9-5f66786e9ee0", + "uuid/4a7bf244-a132-494d-803c-2f5eaadd4758", + "uuid/5a3ba315-cfc7-4b70-b599-ba600c2922af", + "uuid/b7aa1daf-ed67-40e3-9ff8-5cde87f238bf", + "uuid/824c2841-23e9-4d41-bc1e-9a08d11799a9", + "uuid/9336bb3d-c8a7-4714-b83a-f7fd29b6a64c", + "uuid/ab058869-1dd3-49a8-8a4e-f665c9591036" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/cc2cbc2f-811e-4963-ad46-177d77778c5c/1500x999.jpg", + "https://www.compass.com/m/0/f00a470c-3d5d-4fd2-91d9-5f66786e9ee0/1500x1000.jpg", + "https://www.compass.com/m/0/4a7bf244-a132-494d-803c-2f5eaadd4758/666x1000.jpg", + "https://www.compass.com/m/0/5a3ba315-cfc7-4b70-b599-ba600c2922af/1500x1000.jpg", + "https://www.compass.com/m/0/b7aa1daf-ed67-40e3-9ff8-5cde87f238bf/750x1000.jpg", + "https://www.compass.com/m/0/824c2841-23e9-4d41-bc1e-9a08d11799a9/666x1000.jpg", + "https://www.compass.com/m/0/9336bb3d-c8a7-4714-b83a-f7fd29b6a64c/1333x1000.jpg", + "https://www.compass.com/m/0/ab058869-1dd3-49a8-8a4e-f665c9591036/1500x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/50-King-St-Unit-9A-Manhattan-NY-10014/27FE4K_pid/" + }, + { + "listing_id": "1970580822273265497", + "slug": "195-garfield-pl-unit-1l-brooklyn-ny-11215", + "title": "$1,375,000", + "price": 1375000, + "is_rent": false, + "street": "195 Garfield Place, Unit 1L", + "neighborhood": "Park Slope", + "city": "New York", + "state": "NY", + "zip": "11215", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 40.6728233, + "longitude": -73.97757899999999, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/ba1ec991-3751-4a6b-9fae-b728178a2c66", + "gallery_uuids": [ + "uuid/ba1ec991-3751-4a6b-9fae-b728178a2c66", + "uuid/29ff78cc-8b83-41e0-b472-865cfbd1b330", + "uuid/1bc82f3c-ce8b-498f-9531-87e04ddba495", + "uuid/1ed843d2-438c-4284-8b3e-f0595dd71b31", + "uuid/77f65838-f783-42c9-bfc2-eebc7d6ea5fb", + "uuid/624df7a3-fcf9-4f09-9522-504325624bb0", + "uuid/24df91ad-d3d9-4da1-912d-9f3d4d7395ce", + "uuid/978e36db-d98a-4597-9a82-991699b7c6ce" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/ba1ec991-3751-4a6b-9fae-b728178a2c66/1499x1000.jpg", + "https://www.compass.com/m/0/29ff78cc-8b83-41e0-b472-865cfbd1b330/1477x1000.jpg", + "https://www.compass.com/m/0/1bc82f3c-ce8b-498f-9531-87e04ddba495/1499x1000.jpg", + "https://www.compass.com/m/0/1ed843d2-438c-4284-8b3e-f0595dd71b31/1499x1000.jpg", + "https://www.compass.com/m/0/77f65838-f783-42c9-bfc2-eebc7d6ea5fb/1499x1000.jpg", + "https://www.compass.com/m/0/624df7a3-fcf9-4f09-9522-504325624bb0/667x1000.jpg", + "https://www.compass.com/m/0/24df91ad-d3d9-4da1-912d-9f3d4d7395ce/1499x1000.jpg", + "https://www.compass.com/m/0/978e36db-d98a-4597-9a82-991699b7c6ce/1499x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/195-Garfield-Pl-Unit-1L-Brooklyn-NY-11215/21HWK4_pid/" + }, + { + "listing_id": "2103097327265073649", + "slug": "669-saint-marks-ave-unit-2b-brooklyn-ny-11216", + "title": "$1,799,000", + "price": 1799000, + "is_rent": false, + "street": "669 Saint Marks Avenue, Unit 2B", + "neighborhood": "Crown Heights", + "city": "New York", + "state": "NY", + "zip": "11216", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1285, + "latitude": 40.6754594, + "longitude": -73.9509199, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "uuid/136339f6-9ff9-4568-b03f-627e57a43feb", + "gallery_uuids": [ + "uuid/136339f6-9ff9-4568-b03f-627e57a43feb", + "uuid/d1cd0227-5f3a-4432-9881-dcc3821dfe54", + "uuid/d5136a69-3b48-472d-8fcd-3535462b5772", + "uuid/9c425708-670c-48fc-a49e-27f0462eb452", + "uuid/956d7a94-2b6e-45f5-af7b-1cccccdac354", + "uuid/b91e5d0b-41cf-4b54-889c-d94e837bced8", + "uuid/2c9caf75-8c68-4ebb-b548-9a400425bdf2", + "uuid/ce9e06c2-ff83-4271-a591-338b9f8fa23c" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/136339f6-9ff9-4568-b03f-627e57a43feb/1500x1000.jpg", + "https://www.compass.com/m/0/d1cd0227-5f3a-4432-9881-dcc3821dfe54/1500x1000.jpg", + "https://www.compass.com/m/0/d5136a69-3b48-472d-8fcd-3535462b5772/1500x1000.jpg", + "https://www.compass.com/m/0/9c425708-670c-48fc-a49e-27f0462eb452/1500x1000.jpg", + "https://www.compass.com/m/0/956d7a94-2b6e-45f5-af7b-1cccccdac354/789x1000.jpg", + "https://www.compass.com/m/0/b91e5d0b-41cf-4b54-889c-d94e837bced8/786x1000.jpg", + "https://www.compass.com/m/0/2c9caf75-8c68-4ebb-b548-9a400425bdf2/1500x1000.jpg", + "https://www.compass.com/m/0/ce9e06c2-ff83-4271-a591-338b9f8fa23c/711x1000.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/669-Saint-Marks-Ave-Unit-2B-Brooklyn-NY-11216/21321X_pid/" + }, + { + "listing_id": "2099410597756723409", + "slug": "140-142-west-end-ave-unit-30m-manhattan-ny-10023", + "title": "$950,000", + "price": 950000, + "is_rent": false, + "street": "140-142 West End Avenue, Unit 30M", + "neighborhood": "Upper West Side", + "city": "New York", + "state": "NY", + "zip": "10023", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.7759205, + "longitude": -73.98610339999999, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/ba2d79d6-3ee4-4eb5-84f4-5bc9f5c2566f", + "gallery_uuids": [ + "uuid/ba2d79d6-3ee4-4eb5-84f4-5bc9f5c2566f", + "uuid/0dab9797-f376-47f3-9417-ad30d605071a", + "uuid/338f2f66-1779-471d-a0c2-724019b2e183", + "uuid/b6774d0c-42d4-4a99-8469-2ad0b256ce74", + "uuid/bb937119-f5f8-411b-9c43-2ffd439d16b1", + "uuid/4ac31938-f627-4a2f-8dae-0a2a00d0a8ed", + "uuid/ee6ed7a1-32ee-4422-8e1e-f6cce1031717", + "uuid/102921c5-9fb5-4a03-8df0-19713c05b17f" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/ba2d79d6-3ee4-4eb5-84f4-5bc9f5c2566f/1500x1000.jpg", + "https://www.compass.com/m/0/0dab9797-f376-47f3-9417-ad30d605071a/1500x1000.jpg", + "https://www.compass.com/m/0/338f2f66-1779-471d-a0c2-724019b2e183/667x1000.jpg", + "https://www.compass.com/m/0/b6774d0c-42d4-4a99-8469-2ad0b256ce74/1500x1000.jpg", + "https://www.compass.com/m/0/bb937119-f5f8-411b-9c43-2ffd439d16b1/1500x1000.jpg", + "https://www.compass.com/m/0/4ac31938-f627-4a2f-8dae-0a2a00d0a8ed/667x1000.jpg", + "https://www.compass.com/m/0/ee6ed7a1-32ee-4422-8e1e-f6cce1031717/640x427.jpg", + "https://www.compass.com/m/0/102921c5-9fb5-4a03-8df0-19713c05b17f/640x427.jpg" + ], + "source_city": "ny", + "detail_url": "https://www.compass.com/homedetails/140-142-West-End-Ave-Unit-30M-Manhattan-NY-10023/27F2DB_pid/" + }, + { + "listing_id": "2090750718311068225", + "slug": "1718-occidental-blvd-los-angeles-ca-90026", + "title": "$1,299,000", + "price": 1299000, + "is_rent": false, + "street": "1718 Occidental Boulevard", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90026", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1113, + "latitude": 34.0894164, + "longitude": -118.2675832, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/4b27ce22-22bc-401f-80f3-f9c48a633e89", + "gallery_uuids": [ + "uuid/4b27ce22-22bc-401f-80f3-f9c48a633e89", + "uuid/2f86d4aa-2c06-41ce-be87-f70280dc6447", + "uuid/09133ac0-b165-4cb3-bc01-c06e9b71265d", + "uuid/42f86c6a-98fe-47ab-ae4e-552445905e25", + "uuid/a6aa249f-d16f-490d-8880-83f8bd657c08", + "uuid/0399acfe-3b81-4de1-90db-5e7eed06b0f4", + "uuid/a739ffff-6c24-4df4-b0a6-51b9d698f847", + "uuid/8eca71d7-6d3d-4023-969d-14706afd8bdd" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/4b27ce22-22bc-401f-80f3-f9c48a633e89/1264x842.jpg", + "https://www.compass.com/m/0/2f86d4aa-2c06-41ce-be87-f70280dc6447/1264x842.jpg", + "https://www.compass.com/m/0/09133ac0-b165-4cb3-bc01-c06e9b71265d/1152x768.jpg", + "https://www.compass.com/m/0/42f86c6a-98fe-47ab-ae4e-552445905e25/1152x768.jpg", + "https://www.compass.com/m/0/a6aa249f-d16f-490d-8880-83f8bd657c08/1152x768.jpg", + "https://www.compass.com/m/0/0399acfe-3b81-4de1-90db-5e7eed06b0f4/667x1000.jpg", + "https://www.compass.com/m/0/a739ffff-6c24-4df4-b0a6-51b9d698f847/1152x768.jpg", + "https://www.compass.com/m/0/8eca71d7-6d3d-4023-969d-14706afd8bdd/1152x768.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/1718-Occidental-Blvd-Los-Angeles-CA-90026/1JQ6UE_pid/" + }, + { + "listing_id": "2092310202112555729", + "slug": "undisclosed-address-los-angeles-ca-90066", + "title": "$1,995,000", + "price": 1995000, + "is_rent": false, + "street": "Undisclosed Address", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90066", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1688, + "latitude": 34.0072021, + "longitude": -118.4253693, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/241218eb832dd3eaea41a9b79ecebae688d45854_img_0_fed57", + "gallery_uuids": [ + "legacy/241218eb832dd3eaea41a9b79ecebae688d45854_img_0_fed57", + "legacy/241218eb832dd3eaea41a9b79ecebae688d45854_img_1_72364", + "legacy/241218eb832dd3eaea41a9b79ecebae688d45854_img_2_8cdf1", + "legacy/241218eb832dd3eaea41a9b79ecebae688d45854_img_3_7015c", + "legacy/241218eb832dd3eaea41a9b79ecebae688d45854_img_4_4de9c", + "legacy/241218eb832dd3eaea41a9b79ecebae688d45854_img_5_b66f4", + "legacy/241218eb832dd3eaea41a9b79ecebae688d45854_img_6_e2276", + "legacy/241218eb832dd3eaea41a9b79ecebae688d45854_img_7_83088" + ], + "gallery_urls": [ + "https://www.compass.com/m/241218eb832dd3eaea41a9b79ecebae688d45854_img_0_fed57/640x480.jpg", + "https://www.compass.com/m/241218eb832dd3eaea41a9b79ecebae688d45854_img_1_72364/640x480.jpg", + "https://www.compass.com/m/241218eb832dd3eaea41a9b79ecebae688d45854_img_2_8cdf1/640x480.jpg", + "https://www.compass.com/m/241218eb832dd3eaea41a9b79ecebae688d45854_img_3_7015c/640x480.jpg", + "https://www.compass.com/m/241218eb832dd3eaea41a9b79ecebae688d45854_img_4_4de9c/640x480.jpg", + "https://www.compass.com/m/241218eb832dd3eaea41a9b79ecebae688d45854_img_5_b66f4/640x480.jpg", + "https://www.compass.com/m/241218eb832dd3eaea41a9b79ecebae688d45854_img_6_e2276/640x480.jpg", + "https://www.compass.com/m/241218eb832dd3eaea41a9b79ecebae688d45854_img_7_83088/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/Undisclosed-Address-Los-Angeles-CA-90066/2092310202112555729_lid/" + }, + { + "listing_id": "2085093375214988561", + "slug": "undisclosed-address-los-angeles-ca-90027", + "title": "$4,800,000", + "price": 4800000, + "is_rent": false, + "street": "Undisclosed Address", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90027", + "beds": 8, + "baths": 8.0, + "baths_full": 8, + "baths_half": null, + "sqft": 4989, + "latitude": 34.1062788, + "longitude": -118.2732982, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/0d51340e720b87f13ffae04c5f303c9c2fa82313_img_0_96198", + "gallery_uuids": [ + "legacy/0d51340e720b87f13ffae04c5f303c9c2fa82313_img_0_96198" + ], + "gallery_urls": [ + "https://www.compass.com/m/0d51340e720b87f13ffae04c5f303c9c2fa82313_img_0_96198/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/Undisclosed-Address-Los-Angeles-CA-90027/2085093375214988561_lid/" + }, + { + "listing_id": "2077841444615997937", + "slug": "1915-malcolm-ave-unit-301-los-angeles-ca-90025", + "title": "$1,138,000", + "price": 1138000, + "is_rent": false, + "street": "1915 Malcolm Avenue, Unit 301", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90025", + "beds": 3, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1511, + "latitude": 34.0486704, + "longitude": -118.4334238, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/795a6338211a51a3a6f6bebd9d8bfb7e06bf5a77_img_0_3c115", + "gallery_uuids": [ + "legacy/795a6338211a51a3a6f6bebd9d8bfb7e06bf5a77_img_0_3c115", + "legacy/795a6338211a51a3a6f6bebd9d8bfb7e06bf5a77_img_1_c59d1", + "legacy/795a6338211a51a3a6f6bebd9d8bfb7e06bf5a77_img_2_d4b99", + "legacy/795a6338211a51a3a6f6bebd9d8bfb7e06bf5a77_img_3_4a902" + ], + "gallery_urls": [ + "https://www.compass.com/m/795a6338211a51a3a6f6bebd9d8bfb7e06bf5a77_img_0_3c115/640x480.jpg", + "https://www.compass.com/m/795a6338211a51a3a6f6bebd9d8bfb7e06bf5a77_img_1_c59d1/640x480.jpg", + "https://www.compass.com/m/795a6338211a51a3a6f6bebd9d8bfb7e06bf5a77_img_2_d4b99/640x480.jpg", + "https://www.compass.com/m/795a6338211a51a3a6f6bebd9d8bfb7e06bf5a77_img_3_4a902/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/1915-Malcolm-Ave-Unit-301-Los-Angeles-CA-90025/1IMGPX_pid/" + }, + { + "listing_id": "2092966052787131737", + "slug": "8550-ridpath-dr-los-angeles-ca-90046", + "title": "$2,100,000", + "price": 2100000, + "is_rent": false, + "street": "8550 Ridpath Drive", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90046", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1596, + "latitude": 34.105326, + "longitude": -118.3780193, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/db85f860-ccea-4287-aab1-442f0a96796a", + "gallery_uuids": [ + "uuid/db85f860-ccea-4287-aab1-442f0a96796a", + "uuid/64e341f6-9b51-4378-abb5-2c18a2c0a6d1", + "uuid/03efa7a3-eaea-4590-a8bc-950467b0336c", + "uuid/fede5074-609d-43de-9fdd-f61316184196", + "uuid/91036bc4-5bb4-45ca-8a09-6f0b5a0c6fe9", + "uuid/8c8d74e8-e4c8-4d28-a407-64676414065d", + "uuid/81946c7a-0940-4fab-8dcc-bd257819a3bf", + "uuid/1592722f-4a9d-4a57-b415-1568402c7456" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/db85f860-ccea-4287-aab1-442f0a96796a/1499x1000.jpg", + "https://www.compass.com/m/0/64e341f6-9b51-4378-abb5-2c18a2c0a6d1/1264x843.jpg", + "https://www.compass.com/m/0/03efa7a3-eaea-4590-a8bc-950467b0336c/1264x843.jpg", + "https://www.compass.com/m/0/fede5074-609d-43de-9fdd-f61316184196/1499x1000.jpg", + "https://www.compass.com/m/0/91036bc4-5bb4-45ca-8a09-6f0b5a0c6fe9/1499x1000.jpg", + "https://www.compass.com/m/0/8c8d74e8-e4c8-4d28-a407-64676414065d/1499x1000.jpg", + "https://www.compass.com/m/0/81946c7a-0940-4fab-8dcc-bd257819a3bf/1264x843.jpg", + "https://www.compass.com/m/0/1592722f-4a9d-4a57-b415-1568402c7456/1499x1000.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/8550-Ridpath-Dr-Los-Angeles-CA-90046/1IKBOG_pid/" + }, + { + "listing_id": "2090918625401703001", + "slug": "undisclosed-address-los-angeles-ca-90004", + "title": "$8,995,000", + "price": 8995000, + "is_rent": false, + "street": "Undisclosed Address", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90004", + "beds": 5, + "baths": 7.0, + "baths_full": 5, + "baths_half": null, + "sqft": 6069, + "latitude": 34.0745554, + "longitude": -118.3346433, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Open: 5/12 11:00AM - 02:00PM" + ], + "hero_uuid": "legacy/15ce139170de9f051b01638fda98c291d53944e4_img_0_3ea22", + "gallery_uuids": [ + "legacy/15ce139170de9f051b01638fda98c291d53944e4_img_0_3ea22", + "legacy/15ce139170de9f051b01638fda98c291d53944e4_img_1_3684c", + "legacy/15ce139170de9f051b01638fda98c291d53944e4_img_2_ed3fe", + "legacy/15ce139170de9f051b01638fda98c291d53944e4_img_3_6d3c4", + "legacy/15ce139170de9f051b01638fda98c291d53944e4_img_4_5822b", + "legacy/15ce139170de9f051b01638fda98c291d53944e4_img_5_18d7a", + "legacy/15ce139170de9f051b01638fda98c291d53944e4_img_6_65d67", + "legacy/15ce139170de9f051b01638fda98c291d53944e4_img_7_0c5a9" + ], + "gallery_urls": [ + "https://www.compass.com/m/15ce139170de9f051b01638fda98c291d53944e4_img_0_3ea22/640x480.jpg", + "https://www.compass.com/m/15ce139170de9f051b01638fda98c291d53944e4_img_1_3684c/640x480.jpg", + "https://www.compass.com/m/15ce139170de9f051b01638fda98c291d53944e4_img_2_ed3fe/640x480.jpg", + "https://www.compass.com/m/15ce139170de9f051b01638fda98c291d53944e4_img_3_6d3c4/640x480.jpg", + "https://www.compass.com/m/15ce139170de9f051b01638fda98c291d53944e4_img_4_5822b/640x480.jpg", + "https://www.compass.com/m/15ce139170de9f051b01638fda98c291d53944e4_img_5_18d7a/640x480.jpg", + "https://www.compass.com/m/15ce139170de9f051b01638fda98c291d53944e4_img_6_65d67/640x480.jpg", + "https://www.compass.com/m/15ce139170de9f051b01638fda98c291d53944e4_img_7_0c5a9/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/Undisclosed-Address-Los-Angeles-CA-90004/2090918625401703001_lid/" + }, + { + "listing_id": "2101148584869965641", + "slug": "5226-village-green-los-angeles-ca-90016", + "title": "$685,000", + "price": 685000, + "is_rent": false, + "street": "5226 Village Green", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90016", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 818, + "latitude": 34.01961789877387, + "longitude": -118.35919840046118, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/dc73a442c4768a98f6fd6efbb3347e00abc42369_img_0_f2a9f", + "gallery_uuids": [ + "legacy/dc73a442c4768a98f6fd6efbb3347e00abc42369_img_0_f2a9f" + ], + "gallery_urls": [ + "https://www.compass.com/m/dc73a442c4768a98f6fd6efbb3347e00abc42369_img_0_f2a9f/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/5226-Village-Green-Los-Angeles-CA-90016/1I20XY_pid/" + }, + { + "listing_id": "2090231550893436001", + "slug": "undisclosed-address-los-angeles-ca-90068", + "title": "$3,950,000", + "price": 3950000, + "is_rent": false, + "street": "Undisclosed Address", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90068", + "beds": 5, + "baths": 6.0, + "baths_full": 5, + "baths_half": null, + "sqft": 3855, + "latitude": 34.1265931, + "longitude": -118.3517588, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/eaaf844b9e7f567b8aa43f886d71257c95d61b97_img_0_f1c36", + "gallery_uuids": [ + "legacy/eaaf844b9e7f567b8aa43f886d71257c95d61b97_img_0_f1c36" + ], + "gallery_urls": [ + "https://www.compass.com/m/eaaf844b9e7f567b8aa43f886d71257c95d61b97_img_0_f1c36/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/Undisclosed-Address-Los-Angeles-CA-90068/2090231550893436001_lid/" + }, + { + "listing_id": "1901018048420666961", + "slug": "5516-village-green-los-angeles-ca-90016", + "title": "$585,000", + "price": 585000, + "is_rent": false, + "street": "5516 Village Green", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90016", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 826, + "latitude": 34.0199428, + "longitude": -118.3651269, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/ea6d0d79f431267ea357da5095918b1904117eb2_img_0_263f9", + "gallery_uuids": [ + "legacy/ea6d0d79f431267ea357da5095918b1904117eb2_img_0_263f9" + ], + "gallery_urls": [ + "https://www.compass.com/m/ea6d0d79f431267ea357da5095918b1904117eb2_img_0_263f9/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/5516-Village-Green-Los-Angeles-CA-90016/1KNM7U_pid/" + }, + { + "listing_id": "2063262020096201761", + "slug": "4221-sunnyside-ave-los-angeles-ca-90066", + "title": "$2,799,000", + "price": 2799000, + "is_rent": false, + "street": "4221 Sunnyside Avenue", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90066", + "beds": 5, + "baths": 4.0, + "baths_full": 4, + "baths_half": null, + "sqft": 2098, + "latitude": 33.9894682, + "longitude": -118.43801, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Open: 5/16 02:00PM - 05:00PM" + ], + "hero_uuid": "legacy/2acac88b9b04791e5a3eaf3c7201cf55f493900d_img_0_fda3d", + "gallery_uuids": [ + "legacy/2acac88b9b04791e5a3eaf3c7201cf55f493900d_img_0_fda3d", + "legacy/2acac88b9b04791e5a3eaf3c7201cf55f493900d_img_1_046f7", + "legacy/2acac88b9b04791e5a3eaf3c7201cf55f493900d_img_2_9a911", + "legacy/2acac88b9b04791e5a3eaf3c7201cf55f493900d_img_3_0bc61", + "legacy/2acac88b9b04791e5a3eaf3c7201cf55f493900d_img_4_f5fe3", + "legacy/2acac88b9b04791e5a3eaf3c7201cf55f493900d_img_5_034d3", + "legacy/2acac88b9b04791e5a3eaf3c7201cf55f493900d_img_6_a6bbb", + "legacy/2acac88b9b04791e5a3eaf3c7201cf55f493900d_img_7_38461" + ], + "gallery_urls": [ + "https://www.compass.com/m/2acac88b9b04791e5a3eaf3c7201cf55f493900d_img_0_fda3d/640x480.jpg", + "https://www.compass.com/m/2acac88b9b04791e5a3eaf3c7201cf55f493900d_img_1_046f7/640x480.jpg", + "https://www.compass.com/m/2acac88b9b04791e5a3eaf3c7201cf55f493900d_img_2_9a911/640x480.jpg", + "https://www.compass.com/m/2acac88b9b04791e5a3eaf3c7201cf55f493900d_img_3_0bc61/640x480.jpg", + "https://www.compass.com/m/2acac88b9b04791e5a3eaf3c7201cf55f493900d_img_4_f5fe3/640x480.jpg", + "https://www.compass.com/m/2acac88b9b04791e5a3eaf3c7201cf55f493900d_img_5_034d3/640x480.jpg", + "https://www.compass.com/m/2acac88b9b04791e5a3eaf3c7201cf55f493900d_img_6_a6bbb/640x480.jpg", + "https://www.compass.com/m/2acac88b9b04791e5a3eaf3c7201cf55f493900d_img_7_38461/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/4221-Sunnyside-Ave-Los-Angeles-CA-90066/1IVQ4P_pid/" + }, + { + "listing_id": "2065549979030704945", + "slug": "undisclosed-address-los-angeles-ca-90042", + "title": "$1,300,000", + "price": 1300000, + "is_rent": false, + "street": "Undisclosed Address", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90042", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/b97c9df27067439e77cd6333d5a67b13cc03630b_img_0_f2ac1", + "gallery_uuids": [ + "legacy/b97c9df27067439e77cd6333d5a67b13cc03630b_img_0_f2ac1", + "legacy/b97c9df27067439e77cd6333d5a67b13cc03630b_img_1_43b93", + "legacy/b97c9df27067439e77cd6333d5a67b13cc03630b_img_2_039ec" + ], + "gallery_urls": [ + "https://www.compass.com/m/b97c9df27067439e77cd6333d5a67b13cc03630b_img_0_f2ac1/640x480.jpg", + "https://www.compass.com/m/b97c9df27067439e77cd6333d5a67b13cc03630b_img_1_43b93/640x480.jpg", + "https://www.compass.com/m/b97c9df27067439e77cd6333d5a67b13cc03630b_img_2_039ec/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/Undisclosed-Address-Los-Angeles-CA-90042/2065549979030704945_lid/" + }, + { + "listing_id": "2085668456983506497", + "slug": "11307-morrison-st-north-hollywood-ca-91601", + "title": "$989,000", + "price": 989000, + "is_rent": false, + "street": "11307 Morrison Street", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "91601", + "beds": 3, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 1676, + "latitude": 34.1610642, + "longitude": -118.3776197, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/fa5d2166-adc0-45a0-a719-b2b2b555e586", + "gallery_uuids": [ + "uuid/fa5d2166-adc0-45a0-a719-b2b2b555e586", + "uuid/a1d04d83-0898-4ac1-937d-4e8b02673742", + "uuid/97dfab78-f79a-4b6c-9cfc-5b08f864ca6c", + "uuid/60c3e3d1-a7df-4d82-b234-be42de803e2d", + "uuid/8505383b-1ba0-4f2a-98f7-fc481c1df591", + "uuid/2084382c-2f11-45f7-8cd8-2ef24ec4f25b", + "uuid/7b9afe4d-2dc3-46f0-beec-66a59635c985", + "uuid/4566f5a9-7795-4b65-8e7e-346aec57e54b" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/fa5d2166-adc0-45a0-a719-b2b2b555e586/1003x1000.jpg", + "https://www.compass.com/m/0/a1d04d83-0898-4ac1-937d-4e8b02673742/1500x1000.jpg", + "https://www.compass.com/m/0/97dfab78-f79a-4b6c-9cfc-5b08f864ca6c/1500x1000.jpg", + "https://www.compass.com/m/0/60c3e3d1-a7df-4d82-b234-be42de803e2d/1500x1000.jpg", + "https://www.compass.com/m/0/8505383b-1ba0-4f2a-98f7-fc481c1df591/1500x1000.jpg", + "https://www.compass.com/m/0/2084382c-2f11-45f7-8cd8-2ef24ec4f25b/1500x1000.jpg", + "https://www.compass.com/m/0/7b9afe4d-2dc3-46f0-beec-66a59635c985/1500x1000.jpg", + "https://www.compass.com/m/0/4566f5a9-7795-4b65-8e7e-346aec57e54b/1489x1000.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/11307-Morrison-St-North-Hollywood-CA-91601/1KAISN_pid/" + }, + { + "listing_id": "2083030962038580513", + "slug": "248-n-glenroy-ave-los-angeles-ca-90049", + "title": "$8,995,000", + "price": 8995000, + "is_rent": false, + "street": "248 North Glenroy Avenue", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90049", + "beds": 5, + "baths": 6.0, + "baths_full": 6, + "baths_half": null, + "sqft": 4899, + "latitude": 34.0788398, + "longitude": -118.4597218, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/e9d58877-6f22-4b92-a091-8c0c7845a236", + "gallery_uuids": [ + "uuid/e9d58877-6f22-4b92-a091-8c0c7845a236", + "uuid/82c2befc-93db-4632-bc51-592f3cc7cea5" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/e9d58877-6f22-4b92-a091-8c0c7845a236/1500x1000.jpg", + "https://www.compass.com/m/0/82c2befc-93db-4632-bc51-592f3cc7cea5/1335x1000.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/248-N-Glenroy-Ave-Los-Angeles-CA-90049/1H3YXM_pid/" + }, + { + "listing_id": "2093644774128981633", + "slug": "417-venice-way-venice-ca-90291", + "title": "$2,799,000", + "price": 2799000, + "is_rent": false, + "street": "417 Venice Way", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90291", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 3154, + "latitude": 33.9876554, + "longitude": -118.4680186, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/12897fe59ecd3f437495e687a79460f5ec5a8b61_img_0_484ae", + "gallery_uuids": [ + "legacy/12897fe59ecd3f437495e687a79460f5ec5a8b61_img_0_484ae", + "legacy/12897fe59ecd3f437495e687a79460f5ec5a8b61_img_1_53f9d", + "legacy/12897fe59ecd3f437495e687a79460f5ec5a8b61_img_2_2632a", + "legacy/12897fe59ecd3f437495e687a79460f5ec5a8b61_img_3_2f137", + "legacy/12897fe59ecd3f437495e687a79460f5ec5a8b61_img_4_2a303", + "legacy/12897fe59ecd3f437495e687a79460f5ec5a8b61_img_5_edb62", + "legacy/12897fe59ecd3f437495e687a79460f5ec5a8b61_img_6_1de2e", + "legacy/12897fe59ecd3f437495e687a79460f5ec5a8b61_img_7_99afb" + ], + "gallery_urls": [ + "https://www.compass.com/m/12897fe59ecd3f437495e687a79460f5ec5a8b61_img_0_484ae/640x480.jpg", + "https://www.compass.com/m/12897fe59ecd3f437495e687a79460f5ec5a8b61_img_1_53f9d/640x480.jpg", + "https://www.compass.com/m/12897fe59ecd3f437495e687a79460f5ec5a8b61_img_2_2632a/640x480.jpg", + "https://www.compass.com/m/12897fe59ecd3f437495e687a79460f5ec5a8b61_img_3_2f137/640x480.jpg", + "https://www.compass.com/m/12897fe59ecd3f437495e687a79460f5ec5a8b61_img_4_2a303/640x480.jpg", + "https://www.compass.com/m/12897fe59ecd3f437495e687a79460f5ec5a8b61_img_5_edb62/640x480.jpg", + "https://www.compass.com/m/12897fe59ecd3f437495e687a79460f5ec5a8b61_img_6_1de2e/640x480.jpg", + "https://www.compass.com/m/12897fe59ecd3f437495e687a79460f5ec5a8b61_img_7_99afb/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/417-Venice-Way-Venice-CA-90291/1JQS2O_pid/" + }, + { + "listing_id": "2100977648564262489", + "slug": "4060-glencoe-ave-unit-302-marina-del-rey-ca-90292", + "title": "$680,000", + "price": 680000, + "is_rent": false, + "street": "4060 Glencoe Avenue, Unit 302", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90292", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 774, + "latitude": 33.9908509, + "longitude": -118.4427061, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/f52c563cd41924e438fce0aabb185c85d7a2ceb0_img_0_dcdae", + "gallery_uuids": [ + "legacy/f52c563cd41924e438fce0aabb185c85d7a2ceb0_img_0_dcdae" + ], + "gallery_urls": [ + "https://www.compass.com/m/f52c563cd41924e438fce0aabb185c85d7a2ceb0_img_0_dcdae/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/4060-Glencoe-Ave-Unit-302-Marina-Del-Rey-CA-90292/1KJWBW_pid/" + }, + { + "listing_id": "1866786123233328601", + "slug": "undisclosed-address-north-hollywood-ca-91606", + "title": "$800,000", + "price": 800000, + "is_rent": false, + "street": "Undisclosed Address", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "91606", + "beds": 3, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1199, + "latitude": 34.1899092, + "longitude": -118.4083918, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/b8afb0bd254f172f3bbcf06ec982a2cf7a865d4c_img_0_0ff59", + "gallery_uuids": [ + "legacy/b8afb0bd254f172f3bbcf06ec982a2cf7a865d4c_img_0_0ff59", + "legacy/b8afb0bd254f172f3bbcf06ec982a2cf7a865d4c_img_1_706a2", + "legacy/b8afb0bd254f172f3bbcf06ec982a2cf7a865d4c_img_2_4eb41", + "legacy/b8afb0bd254f172f3bbcf06ec982a2cf7a865d4c_img_3_7a54e", + "legacy/b8afb0bd254f172f3bbcf06ec982a2cf7a865d4c_img_4_045bb", + "legacy/b8afb0bd254f172f3bbcf06ec982a2cf7a865d4c_img_5_0b149", + "legacy/b8afb0bd254f172f3bbcf06ec982a2cf7a865d4c_img_6_14dac", + "legacy/b8afb0bd254f172f3bbcf06ec982a2cf7a865d4c_img_7_ea1ca" + ], + "gallery_urls": [ + "https://www.compass.com/m/b8afb0bd254f172f3bbcf06ec982a2cf7a865d4c_img_0_0ff59/640x480.jpg", + "https://www.compass.com/m/b8afb0bd254f172f3bbcf06ec982a2cf7a865d4c_img_1_706a2/640x480.jpg", + "https://www.compass.com/m/b8afb0bd254f172f3bbcf06ec982a2cf7a865d4c_img_2_4eb41/640x480.jpg", + "https://www.compass.com/m/b8afb0bd254f172f3bbcf06ec982a2cf7a865d4c_img_3_7a54e/640x480.jpg", + "https://www.compass.com/m/b8afb0bd254f172f3bbcf06ec982a2cf7a865d4c_img_4_045bb/640x480.jpg", + "https://www.compass.com/m/b8afb0bd254f172f3bbcf06ec982a2cf7a865d4c_img_5_0b149/640x480.jpg", + "https://www.compass.com/m/b8afb0bd254f172f3bbcf06ec982a2cf7a865d4c_img_6_14dac/640x480.jpg", + "https://www.compass.com/m/b8afb0bd254f172f3bbcf06ec982a2cf7a865d4c_img_7_ea1ca/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/Undisclosed-Address-North-Hollywood-CA-91606/1866786123233328601_lid/" + }, + { + "listing_id": "2070512157299002433", + "slug": "6001-carlton-way-unit-106-los-angeles-ca-90028", + "title": "$705,000", + "price": 705000, + "is_rent": false, + "street": "6001 Carlton Way, Unit 106", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90028", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1200, + "latitude": 34.1008045, + "longitude": -118.3202069, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/107603c5-429e-44aa-9512-e4c0759d512d", + "gallery_uuids": [ + "uuid/107603c5-429e-44aa-9512-e4c0759d512d", + "uuid/80c38598-36cb-4b00-ae9b-a207e047fffc", + "uuid/c4f13f0e-9909-47ea-b576-235d909dc9b1", + "uuid/ccf144ab-f894-4787-b3d4-a398d9c8315f", + "uuid/9e5c6f6c-96cb-47f9-a2ae-29abdd3cd529", + "uuid/68d6b501-efb0-4592-9b31-eae0db43ee22", + "uuid/111deac5-91f4-4ec1-a863-3ebede3df3bc", + "uuid/be3be96d-6838-4a9c-9e77-f9205ff166f7" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/107603c5-429e-44aa-9512-e4c0759d512d/1500x1000.jpg", + "https://www.compass.com/m/0/80c38598-36cb-4b00-ae9b-a207e047fffc/1500x1000.jpg", + "https://www.compass.com/m/0/c4f13f0e-9909-47ea-b576-235d909dc9b1/1500x1000.jpg", + "https://www.compass.com/m/0/ccf144ab-f894-4787-b3d4-a398d9c8315f/1500x1000.jpg", + "https://www.compass.com/m/0/9e5c6f6c-96cb-47f9-a2ae-29abdd3cd529/1500x1000.jpg", + "https://www.compass.com/m/0/68d6b501-efb0-4592-9b31-eae0db43ee22/1500x1000.jpg", + "https://www.compass.com/m/0/111deac5-91f4-4ec1-a863-3ebede3df3bc/1500x1000.jpg", + "https://www.compass.com/m/0/be3be96d-6838-4a9c-9e77-f9205ff166f7/1500x1000.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/6001-Carlton-Way-Unit-106-Los-Angeles-CA-90028/1IBNOG_pid/" + }, + { + "listing_id": "2100904592987192249", + "slug": "8344-mcconnell-ave-los-angeles-ca-90045", + "title": "$3,495,000", + "price": 3495000, + "is_rent": false, + "street": "8344 McConnell Avenue", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90045", + "beds": 5, + "baths": 6.0, + "baths_full": 6, + "baths_half": null, + "sqft": 3128, + "latitude": 33.9621755, + "longitude": -118.4109009, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/c8b3c91d-8466-4dc2-91ba-9b4e18803396", + "gallery_uuids": [ + "uuid/c8b3c91d-8466-4dc2-91ba-9b4e18803396", + "uuid/6a543f00-5ac0-4d41-b20a-22f873a99fb6", + "uuid/f451bc44-647c-4851-8f49-ff17cb39a1e6", + "uuid/b143d166-44b5-4518-9bae-a809d4e5c27c", + "uuid/c3bf2628-908f-44bd-b124-8a17565aec67", + "uuid/cc6d521a-5ca2-445e-9083-8d4fa33d8b18", + "uuid/ec243aa4-a81d-46ab-b201-17f63181012e", + "uuid/5dbd42a2-9195-414c-bcae-c9e91b88bafd" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/c8b3c91d-8466-4dc2-91ba-9b4e18803396/1500x1000.jpg", + "https://www.compass.com/m/0/6a543f00-5ac0-4d41-b20a-22f873a99fb6/1500x1000.jpg", + "https://www.compass.com/m/0/f451bc44-647c-4851-8f49-ff17cb39a1e6/1500x1000.jpg", + "https://www.compass.com/m/0/b143d166-44b5-4518-9bae-a809d4e5c27c/1500x1000.jpg", + "https://www.compass.com/m/0/c3bf2628-908f-44bd-b124-8a17565aec67/1500x1000.jpg", + "https://www.compass.com/m/0/cc6d521a-5ca2-445e-9083-8d4fa33d8b18/1500x1000.jpg", + "https://www.compass.com/m/0/ec243aa4-a81d-46ab-b201-17f63181012e/1500x1000.jpg", + "https://www.compass.com/m/0/5dbd42a2-9195-414c-bcae-c9e91b88bafd/1500x1000.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/8344-McConnell-Ave-Los-Angeles-CA-90045/1J83L7_pid/" + }, + { + "listing_id": "2094378625269140937", + "slug": "928-croft-ave-unit-303-los-angeles-ca-90069", + "title": "$2,089,000", + "price": 2089000, + "is_rent": false, + "street": "928 Croft Avenue, Unit 303", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90069", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 1980, + "latitude": 34.0879246, + "longitude": -118.3739198, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/6e5951d7-b33e-422a-80a0-bdd22c327a85", + "gallery_uuids": [ + "uuid/6e5951d7-b33e-422a-80a0-bdd22c327a85", + "uuid/3a37eb77-5512-4fdd-aaa2-af9740a04706", + "uuid/b553f76a-774a-46c5-8944-7bdd42e115a1", + "uuid/6836bd0a-e4bf-47a1-b497-4cd2ebc51205", + "uuid/98e08995-c9df-4917-9e78-9201d5f87abd", + "uuid/7b98083d-9fd5-495c-b47e-82d1c06e2f58", + "uuid/dbef7522-0eb7-4355-b53d-1595972aa7f7", + "uuid/cca8fed7-9dc7-4b8b-83a1-4d2933109f54" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/6e5951d7-b33e-422a-80a0-bdd22c327a85/1500x988.jpg", + "https://www.compass.com/m/0/3a37eb77-5512-4fdd-aaa2-af9740a04706/1500x1000.jpg", + "https://www.compass.com/m/0/b553f76a-774a-46c5-8944-7bdd42e115a1/1500x1000.jpg", + "https://www.compass.com/m/0/6836bd0a-e4bf-47a1-b497-4cd2ebc51205/1500x1000.jpg", + "https://www.compass.com/m/0/98e08995-c9df-4917-9e78-9201d5f87abd/711x1000.jpg", + "https://www.compass.com/m/0/7b98083d-9fd5-495c-b47e-82d1c06e2f58/668x1000.jpg", + "https://www.compass.com/m/0/dbef7522-0eb7-4355-b53d-1595972aa7f7/563x1000.jpg", + "https://www.compass.com/m/0/cca8fed7-9dc7-4b8b-83a1-4d2933109f54/1500x1000.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/928-Croft-Ave-Unit-303-Los-Angeles-CA-90069/27DK3G_pid/" + }, + { + "listing_id": "2096135370721194649", + "slug": "13070-kiyot-way-playa-vista-ca-90094", + "title": "$3,650,000", + "price": 3650000, + "is_rent": false, + "street": "13070 Kiyot Way", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90094", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 3458, + "latitude": 33.971015, + "longitude": -118.424258, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/23a551089a0f8dc818cf72a5c92be2d4e6d336f2_img_0_8192f", + "gallery_uuids": [ + "legacy/23a551089a0f8dc818cf72a5c92be2d4e6d336f2_img_0_8192f", + "legacy/23a551089a0f8dc818cf72a5c92be2d4e6d336f2_img_1_9a158", + "legacy/23a551089a0f8dc818cf72a5c92be2d4e6d336f2_img_2_47cf1", + "legacy/23a551089a0f8dc818cf72a5c92be2d4e6d336f2_img_3_e6126", + "legacy/23a551089a0f8dc818cf72a5c92be2d4e6d336f2_img_4_acf7e", + "legacy/23a551089a0f8dc818cf72a5c92be2d4e6d336f2_img_5_55a69" + ], + "gallery_urls": [ + "https://www.compass.com/m/23a551089a0f8dc818cf72a5c92be2d4e6d336f2_img_0_8192f/640x480.jpg", + "https://www.compass.com/m/23a551089a0f8dc818cf72a5c92be2d4e6d336f2_img_1_9a158/640x480.jpg", + "https://www.compass.com/m/23a551089a0f8dc818cf72a5c92be2d4e6d336f2_img_2_47cf1/640x480.jpg", + "https://www.compass.com/m/23a551089a0f8dc818cf72a5c92be2d4e6d336f2_img_3_e6126/640x480.jpg", + "https://www.compass.com/m/23a551089a0f8dc818cf72a5c92be2d4e6d336f2_img_4_acf7e/640x480.jpg", + "https://www.compass.com/m/23a551089a0f8dc818cf72a5c92be2d4e6d336f2_img_5_55a69/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/13070-Kiyot-Way-Playa-Vista-CA-90094/1I3U3O_pid/" + }, + { + "listing_id": "2085116787098362465", + "slug": "12765-bluff-creek-dr-unit-1-los-angeles-ca-90094", + "title": "$3,150,000", + "price": 3150000, + "is_rent": false, + "street": "12765 Bluff Creek Drive, Unit 1", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90094", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2674, + "latitude": 33.9746134, + "longitude": -118.4162995, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/57a996a8186a46ad161a18a3dc7f3817e7a1fd65_img_0_a7c5b", + "gallery_uuids": [ + "legacy/57a996a8186a46ad161a18a3dc7f3817e7a1fd65_img_0_a7c5b", + "legacy/57a996a8186a46ad161a18a3dc7f3817e7a1fd65_img_1_cebe6", + "legacy/57a996a8186a46ad161a18a3dc7f3817e7a1fd65_img_2_3eb08", + "legacy/57a996a8186a46ad161a18a3dc7f3817e7a1fd65_img_3_a4707", + "legacy/57a996a8186a46ad161a18a3dc7f3817e7a1fd65_img_4_0aa74", + "legacy/57a996a8186a46ad161a18a3dc7f3817e7a1fd65_img_5_544a1", + "legacy/57a996a8186a46ad161a18a3dc7f3817e7a1fd65_img_6_8dab9", + "legacy/57a996a8186a46ad161a18a3dc7f3817e7a1fd65_img_7_e9e4f" + ], + "gallery_urls": [ + "https://www.compass.com/m/57a996a8186a46ad161a18a3dc7f3817e7a1fd65_img_0_a7c5b/640x480.jpg", + "https://www.compass.com/m/57a996a8186a46ad161a18a3dc7f3817e7a1fd65_img_1_cebe6/640x480.jpg", + "https://www.compass.com/m/57a996a8186a46ad161a18a3dc7f3817e7a1fd65_img_2_3eb08/640x480.jpg", + "https://www.compass.com/m/57a996a8186a46ad161a18a3dc7f3817e7a1fd65_img_3_a4707/640x480.jpg", + "https://www.compass.com/m/57a996a8186a46ad161a18a3dc7f3817e7a1fd65_img_4_0aa74/640x480.jpg", + "https://www.compass.com/m/57a996a8186a46ad161a18a3dc7f3817e7a1fd65_img_5_544a1/640x480.jpg", + "https://www.compass.com/m/57a996a8186a46ad161a18a3dc7f3817e7a1fd65_img_6_8dab9/640x480.jpg", + "https://www.compass.com/m/57a996a8186a46ad161a18a3dc7f3817e7a1fd65_img_7_e9e4f/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/12765-Bluff-Creek-Dr-Unit-1-Los-Angeles-CA-90094/1KGFHH_pid/" + }, + { + "listing_id": "2103302361391687721", + "slug": "1100-s-hope-st-unit-1006-los-angeles-ca-90015", + "title": "$595,000", + "price": 595000, + "is_rent": false, + "street": "1100 South Hope Street, Unit 1006", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90015", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 990, + "latitude": 34.0417686, + "longitude": -118.2631233, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/4b34d9b0-12b1-4ea5-9af6-2edd694c4fb1", + "gallery_uuids": [ + "uuid/4b34d9b0-12b1-4ea5-9af6-2edd694c4fb1", + "uuid/10e72084-8f45-4437-a1c9-0e2b59dde808", + "uuid/c186d0d4-7741-4476-b5b2-a5aa9e8001f2", + "uuid/52675c83-2ff9-4ab7-ab17-a145f28c916e", + "uuid/d6fb3e38-0c79-4b87-9bfd-386a637d9e45", + "uuid/dcb439b9-5050-4e2f-9226-7581d67c0820", + "uuid/633514bc-6881-4a1e-8097-b0a5b12765e8", + "uuid/401fdd9d-a2b8-4f59-8fa7-1a1262b26d10" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/4b34d9b0-12b1-4ea5-9af6-2edd694c4fb1/1500x999.jpg", + "https://www.compass.com/m/0/10e72084-8f45-4437-a1c9-0e2b59dde808/1500x999.jpg", + "https://www.compass.com/m/0/c186d0d4-7741-4476-b5b2-a5aa9e8001f2/1500x998.jpg", + "https://www.compass.com/m/0/52675c83-2ff9-4ab7-ab17-a145f28c916e/1500x996.jpg", + "https://www.compass.com/m/0/d6fb3e38-0c79-4b87-9bfd-386a637d9e45/1500x997.jpg", + "https://www.compass.com/m/0/dcb439b9-5050-4e2f-9226-7581d67c0820/1500x999.jpg", + "https://www.compass.com/m/0/633514bc-6881-4a1e-8097-b0a5b12765e8/1500x998.jpg", + "https://www.compass.com/m/0/401fdd9d-a2b8-4f59-8fa7-1a1262b26d10/1500x999.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/1100-S-Hope-St-Unit-1006-Los-Angeles-CA-90015/1IJC61_pid/" + }, + { + "listing_id": "2090063303014835353", + "slug": "13626-shablow-ave-sylmar-ca-91342", + "title": "$695,000", + "price": 695000, + "is_rent": false, + "street": "13626 Shablow Avenue", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "91342", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1068, + "latitude": 34.3205845, + "longitude": -118.4080723, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/7e031a573503fbdd56c62715915a7dc25bfd38a9_img_0_3bfa8", + "gallery_uuids": [ + "legacy/7e031a573503fbdd56c62715915a7dc25bfd38a9_img_0_3bfa8" + ], + "gallery_urls": [ + "https://www.compass.com/m/7e031a573503fbdd56c62715915a7dc25bfd38a9_img_0_3bfa8/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/13626-Shablow-Ave-Sylmar-CA-91342/1KRR16_pid/" + }, + { + "listing_id": "1978138900377088801", + "slug": "333-e-colden-ave-los-angeles-ca-90003", + "title": "$450,000", + "price": 450000, + "is_rent": false, + "street": "333 East Colden Avenue", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90003", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 33.9494501, + "longitude": -118.2683627, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/61791c6f-d120-4e69-b6e8-916dc471a4fa", + "gallery_uuids": [ + "uuid/61791c6f-d120-4e69-b6e8-916dc471a4fa" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/61791c6f-d120-4e69-b6e8-916dc471a4fa/1125x750.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/333-E-Colden-Ave-Los-Angeles-CA-90003/21KMZJ_pid/" + }, + { + "listing_id": "2080328806299006633", + "slug": "889-francisco-st-unit-1206-los-angeles-ca-90017", + "title": "$998,000", + "price": 998000, + "is_rent": false, + "street": "889 Francisco Street, Unit 1206", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90017", + "beds": 2, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 1489, + "latitude": 34.04786199999999, + "longitude": -118.2643371, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/200f892bdcc146480fa42b54a0c46d7ac335c96d_img_0_81ac9", + "gallery_uuids": [ + "legacy/200f892bdcc146480fa42b54a0c46d7ac335c96d_img_0_81ac9", + "legacy/200f892bdcc146480fa42b54a0c46d7ac335c96d_img_1_1499f", + "legacy/200f892bdcc146480fa42b54a0c46d7ac335c96d_img_2_cae7b", + "legacy/200f892bdcc146480fa42b54a0c46d7ac335c96d_img_3_f3b0d", + "legacy/200f892bdcc146480fa42b54a0c46d7ac335c96d_img_4_22b4e", + "legacy/200f892bdcc146480fa42b54a0c46d7ac335c96d_img_5_cc3eb", + "legacy/200f892bdcc146480fa42b54a0c46d7ac335c96d_img_6_0bc73", + "legacy/200f892bdcc146480fa42b54a0c46d7ac335c96d_img_7_df8a6" + ], + "gallery_urls": [ + "https://www.compass.com/m/200f892bdcc146480fa42b54a0c46d7ac335c96d_img_0_81ac9/640x480.jpg", + "https://www.compass.com/m/200f892bdcc146480fa42b54a0c46d7ac335c96d_img_1_1499f/640x480.jpg", + "https://www.compass.com/m/200f892bdcc146480fa42b54a0c46d7ac335c96d_img_2_cae7b/640x480.jpg", + "https://www.compass.com/m/200f892bdcc146480fa42b54a0c46d7ac335c96d_img_3_f3b0d/640x480.jpg", + "https://www.compass.com/m/200f892bdcc146480fa42b54a0c46d7ac335c96d_img_4_22b4e/640x480.jpg", + "https://www.compass.com/m/200f892bdcc146480fa42b54a0c46d7ac335c96d_img_5_cc3eb/640x480.jpg", + "https://www.compass.com/m/200f892bdcc146480fa42b54a0c46d7ac335c96d_img_6_0bc73/640x480.jpg", + "https://www.compass.com/m/200f892bdcc146480fa42b54a0c46d7ac335c96d_img_7_df8a6/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/889-Francisco-St-Unit-1206-Los-Angeles-CA-90017/1HZZ01_pid/" + }, + { + "listing_id": "2099522833069768625", + "slug": "2813-herkimer-st-los-angeles-ca-90039", + "title": "$1,195,000", + "price": 1195000, + "is_rent": false, + "street": "2813 Herkimer Street", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90039", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 962, + "latitude": 34.108788, + "longitude": -118.2678879, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/a638f6f6026946e400a9828f595870d23cf8d012_img_0_50f44", + "gallery_uuids": [ + "legacy/a638f6f6026946e400a9828f595870d23cf8d012_img_0_50f44", + "legacy/a638f6f6026946e400a9828f595870d23cf8d012_img_1_92b7a", + "legacy/a638f6f6026946e400a9828f595870d23cf8d012_img_2_e871b", + "legacy/a638f6f6026946e400a9828f595870d23cf8d012_img_3_52b43", + "legacy/a638f6f6026946e400a9828f595870d23cf8d012_img_4_6f403", + "legacy/a638f6f6026946e400a9828f595870d23cf8d012_img_5_1bc95", + "legacy/a638f6f6026946e400a9828f595870d23cf8d012_img_6_0c7af", + "legacy/a638f6f6026946e400a9828f595870d23cf8d012_img_7_528d4" + ], + "gallery_urls": [ + "https://www.compass.com/m/a638f6f6026946e400a9828f595870d23cf8d012_img_0_50f44/640x480.jpg", + "https://www.compass.com/m/a638f6f6026946e400a9828f595870d23cf8d012_img_1_92b7a/640x480.jpg", + "https://www.compass.com/m/a638f6f6026946e400a9828f595870d23cf8d012_img_2_e871b/640x480.jpg", + "https://www.compass.com/m/a638f6f6026946e400a9828f595870d23cf8d012_img_3_52b43/640x480.jpg", + "https://www.compass.com/m/a638f6f6026946e400a9828f595870d23cf8d012_img_4_6f403/640x480.jpg", + "https://www.compass.com/m/a638f6f6026946e400a9828f595870d23cf8d012_img_5_1bc95/640x480.jpg", + "https://www.compass.com/m/a638f6f6026946e400a9828f595870d23cf8d012_img_6_0c7af/640x480.jpg", + "https://www.compass.com/m/a638f6f6026946e400a9828f595870d23cf8d012_img_7_528d4/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/2813-Herkimer-St-Los-Angeles-CA-90039/1J5DO1_pid/" + }, + { + "listing_id": "2100368551737515281", + "slug": "3536-1-2-arroyo-seco-ave-los-angeles-ca-90065", + "title": "$499,000", + "price": 499000, + "is_rent": false, + "street": "3536 1/2 Arroyo Seco Avenue", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90065", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 840, + "latitude": 34.08827, + "longitude": -118.2139, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/4f0e251fdacaf6ff1f9e5187e3a43f73906a6885_img_0_e897f", + "gallery_uuids": [ + "legacy/4f0e251fdacaf6ff1f9e5187e3a43f73906a6885_img_0_e897f", + "legacy/4f0e251fdacaf6ff1f9e5187e3a43f73906a6885_img_1_300d1", + "legacy/4f0e251fdacaf6ff1f9e5187e3a43f73906a6885_img_2_a561e", + "legacy/4f0e251fdacaf6ff1f9e5187e3a43f73906a6885_img_3_68755", + "legacy/4f0e251fdacaf6ff1f9e5187e3a43f73906a6885_img_4_5d1b2", + "legacy/4f0e251fdacaf6ff1f9e5187e3a43f73906a6885_img_5_aead1", + "legacy/4f0e251fdacaf6ff1f9e5187e3a43f73906a6885_img_6_3db98", + "legacy/4f0e251fdacaf6ff1f9e5187e3a43f73906a6885_img_7_84adf" + ], + "gallery_urls": [ + "https://www.compass.com/m/4f0e251fdacaf6ff1f9e5187e3a43f73906a6885_img_0_e897f/640x480.jpg", + "https://www.compass.com/m/4f0e251fdacaf6ff1f9e5187e3a43f73906a6885_img_1_300d1/640x480.jpg", + "https://www.compass.com/m/4f0e251fdacaf6ff1f9e5187e3a43f73906a6885_img_2_a561e/640x480.jpg", + "https://www.compass.com/m/4f0e251fdacaf6ff1f9e5187e3a43f73906a6885_img_3_68755/640x480.jpg", + "https://www.compass.com/m/4f0e251fdacaf6ff1f9e5187e3a43f73906a6885_img_4_5d1b2/640x480.jpg", + "https://www.compass.com/m/4f0e251fdacaf6ff1f9e5187e3a43f73906a6885_img_5_aead1/640x480.jpg", + "https://www.compass.com/m/4f0e251fdacaf6ff1f9e5187e3a43f73906a6885_img_6_3db98/640x480.jpg", + "https://www.compass.com/m/4f0e251fdacaf6ff1f9e5187e3a43f73906a6885_img_7_84adf/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/3536-1-2-Arroyo-Seco-Ave-Los-Angeles-CA-90065/27FEXD_pid/" + }, + { + "listing_id": "2098075776052603609", + "slug": "2516-ivan-hill-ter-los-angeles-ca-90039", + "title": "$2,395,000", + "price": 2395000, + "is_rent": false, + "street": "2516 Ivan Hill Terrace", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90039", + "beds": 4, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2922, + "latitude": 34.1038919, + "longitude": -118.2601316, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/c38416e1272f5c78041bce595d4efcf714590c0a_img_0_b1c68", + "gallery_uuids": [ + "legacy/c38416e1272f5c78041bce595d4efcf714590c0a_img_0_b1c68", + "legacy/c38416e1272f5c78041bce595d4efcf714590c0a_img_1_8e3b7", + "legacy/c38416e1272f5c78041bce595d4efcf714590c0a_img_2_4483c", + "legacy/c38416e1272f5c78041bce595d4efcf714590c0a_img_3_ccdae", + "legacy/c38416e1272f5c78041bce595d4efcf714590c0a_img_4_3185b", + "legacy/c38416e1272f5c78041bce595d4efcf714590c0a_img_5_354d9", + "legacy/c38416e1272f5c78041bce595d4efcf714590c0a_img_6_2a001", + "legacy/c38416e1272f5c78041bce595d4efcf714590c0a_img_7_b990f" + ], + "gallery_urls": [ + "https://www.compass.com/m/c38416e1272f5c78041bce595d4efcf714590c0a_img_0_b1c68/640x480.jpg", + "https://www.compass.com/m/c38416e1272f5c78041bce595d4efcf714590c0a_img_1_8e3b7/640x480.jpg", + "https://www.compass.com/m/c38416e1272f5c78041bce595d4efcf714590c0a_img_2_4483c/640x480.jpg", + "https://www.compass.com/m/c38416e1272f5c78041bce595d4efcf714590c0a_img_3_ccdae/640x480.jpg", + "https://www.compass.com/m/c38416e1272f5c78041bce595d4efcf714590c0a_img_4_3185b/640x480.jpg", + "https://www.compass.com/m/c38416e1272f5c78041bce595d4efcf714590c0a_img_5_354d9/640x480.jpg", + "https://www.compass.com/m/c38416e1272f5c78041bce595d4efcf714590c0a_img_6_2a001/640x480.jpg", + "https://www.compass.com/m/c38416e1272f5c78041bce595d4efcf714590c0a_img_7_b990f/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/2516-Ivan-Hill-Ter-Los-Angeles-CA-90039/1L482W_pid/" + }, + { + "listing_id": "2100114380475873521", + "slug": "948-elyria-dr-los-angeles-ca-90065", + "title": "$1,950,000", + "price": 1950000, + "is_rent": false, + "street": "948 Elyria Drive", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90065", + "beds": 4, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2362, + "latitude": 34.1019007, + "longitude": -118.2215267, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Open: 5/12 11:00AM - 02:00PM" + ], + "hero_uuid": "legacy/1243f308904bc7ed88ceff1cfcb92173c29d26ec_img_0_98259", + "gallery_uuids": [ + "legacy/1243f308904bc7ed88ceff1cfcb92173c29d26ec_img_0_98259", + "legacy/1243f308904bc7ed88ceff1cfcb92173c29d26ec_img_1_da3c4", + "legacy/1243f308904bc7ed88ceff1cfcb92173c29d26ec_img_2_38db8", + "legacy/1243f308904bc7ed88ceff1cfcb92173c29d26ec_img_3_f00db", + "legacy/1243f308904bc7ed88ceff1cfcb92173c29d26ec_img_4_2d684", + "legacy/1243f308904bc7ed88ceff1cfcb92173c29d26ec_img_5_62f00", + "legacy/1243f308904bc7ed88ceff1cfcb92173c29d26ec_img_6_b63cd", + "legacy/1243f308904bc7ed88ceff1cfcb92173c29d26ec_img_7_0591d" + ], + "gallery_urls": [ + "https://www.compass.com/m/1243f308904bc7ed88ceff1cfcb92173c29d26ec_img_0_98259/640x480.jpg", + "https://www.compass.com/m/1243f308904bc7ed88ceff1cfcb92173c29d26ec_img_1_da3c4/640x480.jpg", + "https://www.compass.com/m/1243f308904bc7ed88ceff1cfcb92173c29d26ec_img_2_38db8/640x480.jpg", + "https://www.compass.com/m/1243f308904bc7ed88ceff1cfcb92173c29d26ec_img_3_f00db/640x480.jpg", + "https://www.compass.com/m/1243f308904bc7ed88ceff1cfcb92173c29d26ec_img_4_2d684/640x480.jpg", + "https://www.compass.com/m/1243f308904bc7ed88ceff1cfcb92173c29d26ec_img_5_62f00/640x480.jpg", + "https://www.compass.com/m/1243f308904bc7ed88ceff1cfcb92173c29d26ec_img_6_b63cd/640x480.jpg", + "https://www.compass.com/m/1243f308904bc7ed88ceff1cfcb92173c29d26ec_img_7_0591d/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/948-Elyria-Dr-Los-Angeles-CA-90065/1KD77T_pid/" + }, + { + "listing_id": "2100954713380043057", + "slug": "1967-micheltorena-st-los-angeles-ca-90039", + "title": "$3,185,000", + "price": 3185000, + "is_rent": false, + "street": "1967 Micheltorena Street", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90039", + "beds": 4, + "baths": 4.0, + "baths_full": 4, + "baths_half": null, + "sqft": 3267, + "latitude": 34.0964176, + "longitude": -118.2709802, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Open: 5/12 11:00AM - 02:00PM" + ], + "hero_uuid": "legacy/e4c31ca66d3bdbce8ba04beb54c3a242f0b84398_img_0_83795", + "gallery_uuids": [ + "legacy/e4c31ca66d3bdbce8ba04beb54c3a242f0b84398_img_0_83795", + "legacy/e4c31ca66d3bdbce8ba04beb54c3a242f0b84398_img_1_3f801", + "legacy/e4c31ca66d3bdbce8ba04beb54c3a242f0b84398_img_2_a3d13", + "legacy/e4c31ca66d3bdbce8ba04beb54c3a242f0b84398_img_3_34cf0", + "legacy/e4c31ca66d3bdbce8ba04beb54c3a242f0b84398_img_4_1d2cf", + "legacy/e4c31ca66d3bdbce8ba04beb54c3a242f0b84398_img_5_45ff9", + "legacy/e4c31ca66d3bdbce8ba04beb54c3a242f0b84398_img_6_895bc", + "legacy/e4c31ca66d3bdbce8ba04beb54c3a242f0b84398_img_7_2b73f" + ], + "gallery_urls": [ + "https://www.compass.com/m/e4c31ca66d3bdbce8ba04beb54c3a242f0b84398_img_0_83795/640x480.jpg", + "https://www.compass.com/m/e4c31ca66d3bdbce8ba04beb54c3a242f0b84398_img_1_3f801/640x480.jpg", + "https://www.compass.com/m/e4c31ca66d3bdbce8ba04beb54c3a242f0b84398_img_2_a3d13/640x480.jpg", + "https://www.compass.com/m/e4c31ca66d3bdbce8ba04beb54c3a242f0b84398_img_3_34cf0/640x480.jpg", + "https://www.compass.com/m/e4c31ca66d3bdbce8ba04beb54c3a242f0b84398_img_4_1d2cf/640x480.jpg", + "https://www.compass.com/m/e4c31ca66d3bdbce8ba04beb54c3a242f0b84398_img_5_45ff9/640x480.jpg", + "https://www.compass.com/m/e4c31ca66d3bdbce8ba04beb54c3a242f0b84398_img_6_895bc/640x480.jpg", + "https://www.compass.com/m/e4c31ca66d3bdbce8ba04beb54c3a242f0b84398_img_7_2b73f/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/1967-Micheltorena-St-Los-Angeles-CA-90039/1L31EU_pid/" + }, + { + "listing_id": "2097967731200691625", + "slug": "654-frontenac-ave-los-angeles-ca-90065", + "title": "$725,000", + "price": 725000, + "is_rent": false, + "street": "654 Frontenac Avenue", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90065", + "beds": null, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 851, + "latitude": 34.1022903, + "longitude": -118.2119313, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/134575f905426b9e9ceb363b69679ac7a5c4cd32_img_0_017ac", + "gallery_uuids": [ + "legacy/134575f905426b9e9ceb363b69679ac7a5c4cd32_img_0_017ac", + "legacy/134575f905426b9e9ceb363b69679ac7a5c4cd32_img_1_50548", + "legacy/134575f905426b9e9ceb363b69679ac7a5c4cd32_img_2_7cc42", + "legacy/134575f905426b9e9ceb363b69679ac7a5c4cd32_img_3_9eb75", + "legacy/134575f905426b9e9ceb363b69679ac7a5c4cd32_img_4_27a7c", + "legacy/134575f905426b9e9ceb363b69679ac7a5c4cd32_img_5_15f7a", + "legacy/134575f905426b9e9ceb363b69679ac7a5c4cd32_img_6_3dee7", + "legacy/134575f905426b9e9ceb363b69679ac7a5c4cd32_img_7_2f62f" + ], + "gallery_urls": [ + "https://www.compass.com/m/134575f905426b9e9ceb363b69679ac7a5c4cd32_img_0_017ac/640x480.jpg", + "https://www.compass.com/m/134575f905426b9e9ceb363b69679ac7a5c4cd32_img_1_50548/640x480.jpg", + "https://www.compass.com/m/134575f905426b9e9ceb363b69679ac7a5c4cd32_img_2_7cc42/640x480.jpg", + "https://www.compass.com/m/134575f905426b9e9ceb363b69679ac7a5c4cd32_img_3_9eb75/640x480.jpg", + "https://www.compass.com/m/134575f905426b9e9ceb363b69679ac7a5c4cd32_img_4_27a7c/640x480.jpg", + "https://www.compass.com/m/134575f905426b9e9ceb363b69679ac7a5c4cd32_img_5_15f7a/640x480.jpg", + "https://www.compass.com/m/134575f905426b9e9ceb363b69679ac7a5c4cd32_img_6_3dee7/640x480.jpg", + "https://www.compass.com/m/134575f905426b9e9ceb363b69679ac7a5c4cd32_img_7_2f62f/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/654-Frontenac-Ave-Los-Angeles-CA-90065/1KSEZO_pid/" + }, + { + "listing_id": "2103113958138223833", + "slug": "3770-may-st-los-angeles-ca-90066", + "title": "$3,395,000", + "price": 3395000, + "is_rent": false, + "street": "3770 May Street", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90066", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2280, + "latitude": 34.0020968, + "longitude": -118.4393333, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Open: 5/12 11:00AM - 02:00PM" + ], + "hero_uuid": "legacy/baf4a36112906f5a1ac6babe88257fe8e8fb5f58_img_0_23ec2", + "gallery_uuids": [ + "legacy/baf4a36112906f5a1ac6babe88257fe8e8fb5f58_img_0_23ec2", + "legacy/baf4a36112906f5a1ac6babe88257fe8e8fb5f58_img_1_fe189", + "legacy/baf4a36112906f5a1ac6babe88257fe8e8fb5f58_img_2_6a33b", + "legacy/baf4a36112906f5a1ac6babe88257fe8e8fb5f58_img_3_48342", + "legacy/baf4a36112906f5a1ac6babe88257fe8e8fb5f58_img_4_9d654", + "legacy/baf4a36112906f5a1ac6babe88257fe8e8fb5f58_img_5_a3576", + "legacy/baf4a36112906f5a1ac6babe88257fe8e8fb5f58_img_6_c853d", + "legacy/baf4a36112906f5a1ac6babe88257fe8e8fb5f58_img_7_5a6ad" + ], + "gallery_urls": [ + "https://www.compass.com/m/baf4a36112906f5a1ac6babe88257fe8e8fb5f58_img_0_23ec2/640x480.jpg", + "https://www.compass.com/m/baf4a36112906f5a1ac6babe88257fe8e8fb5f58_img_1_fe189/640x480.jpg", + "https://www.compass.com/m/baf4a36112906f5a1ac6babe88257fe8e8fb5f58_img_2_6a33b/640x480.jpg", + "https://www.compass.com/m/baf4a36112906f5a1ac6babe88257fe8e8fb5f58_img_3_48342/640x480.jpg", + "https://www.compass.com/m/baf4a36112906f5a1ac6babe88257fe8e8fb5f58_img_4_9d654/640x480.jpg", + "https://www.compass.com/m/baf4a36112906f5a1ac6babe88257fe8e8fb5f58_img_5_a3576/640x480.jpg", + "https://www.compass.com/m/baf4a36112906f5a1ac6babe88257fe8e8fb5f58_img_6_c853d/640x480.jpg", + "https://www.compass.com/m/baf4a36112906f5a1ac6babe88257fe8e8fb5f58_img_7_5a6ad/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/3770-May-St-Los-Angeles-CA-90066/1IHZX0_pid/" + }, + { + "listing_id": "2100988079496276937", + "slug": "2050-n-las-palmas-ave-los-angeles-ca-90068", + "title": "$1,850,000", + "price": 1850000, + "is_rent": false, + "street": "2050 North Las Palmas Avenue", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90068", + "beds": 3, + "baths": 4.0, + "baths_full": null, + "baths_half": null, + "sqft": 1830, + "latitude": 34.1075845, + "longitude": -118.3361717, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Open: 5/12 11:00AM - 02:00PM" + ], + "hero_uuid": "legacy/d06af68f916d686a68e8d2948524994cb89ed16e_img_0_f5713", + "gallery_uuids": [ + "legacy/d06af68f916d686a68e8d2948524994cb89ed16e_img_0_f5713", + "legacy/d06af68f916d686a68e8d2948524994cb89ed16e_img_1_7c995", + "legacy/d06af68f916d686a68e8d2948524994cb89ed16e_img_2_be810", + "legacy/d06af68f916d686a68e8d2948524994cb89ed16e_img_3_65582", + "legacy/d06af68f916d686a68e8d2948524994cb89ed16e_img_4_5898e", + "legacy/d06af68f916d686a68e8d2948524994cb89ed16e_img_5_0d6f7", + "legacy/d06af68f916d686a68e8d2948524994cb89ed16e_img_6_19e16", + "legacy/d06af68f916d686a68e8d2948524994cb89ed16e_img_7_3cca3" + ], + "gallery_urls": [ + "https://www.compass.com/m/d06af68f916d686a68e8d2948524994cb89ed16e_img_0_f5713/640x480.jpg", + "https://www.compass.com/m/d06af68f916d686a68e8d2948524994cb89ed16e_img_1_7c995/640x480.jpg", + "https://www.compass.com/m/d06af68f916d686a68e8d2948524994cb89ed16e_img_2_be810/640x480.jpg", + "https://www.compass.com/m/d06af68f916d686a68e8d2948524994cb89ed16e_img_3_65582/640x480.jpg", + "https://www.compass.com/m/d06af68f916d686a68e8d2948524994cb89ed16e_img_4_5898e/640x480.jpg", + "https://www.compass.com/m/d06af68f916d686a68e8d2948524994cb89ed16e_img_5_0d6f7/640x480.jpg", + "https://www.compass.com/m/d06af68f916d686a68e8d2948524994cb89ed16e_img_6_19e16/640x480.jpg", + "https://www.compass.com/m/d06af68f916d686a68e8d2948524994cb89ed16e_img_7_3cca3/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/2050-N-Las-Palmas-Ave-Los-Angeles-CA-90068/1KI290_pid/" + }, + { + "listing_id": "2101593860789227753", + "slug": "404-n-avenue-52-los-angeles-ca-90042", + "title": "$1,150,000", + "price": 1150000, + "is_rent": false, + "street": "404 North Avenue 52", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90042", + "beds": 3, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1124, + "latitude": 34.1107351, + "longitude": -118.2029625, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Open: 5/12 11:00AM - 01:30PM" + ], + "hero_uuid": "legacy/329d9c88affb2c448d8fa7a4a95db161e803fe47_img_0_fba78", + "gallery_uuids": [ + "legacy/329d9c88affb2c448d8fa7a4a95db161e803fe47_img_0_fba78", + "legacy/329d9c88affb2c448d8fa7a4a95db161e803fe47_img_1_f5d5b", + "legacy/329d9c88affb2c448d8fa7a4a95db161e803fe47_img_2_a8021", + "legacy/329d9c88affb2c448d8fa7a4a95db161e803fe47_img_3_cb920", + "legacy/329d9c88affb2c448d8fa7a4a95db161e803fe47_img_4_b34f1", + "legacy/329d9c88affb2c448d8fa7a4a95db161e803fe47_img_5_1f7ef", + "legacy/329d9c88affb2c448d8fa7a4a95db161e803fe47_img_6_b8fb0", + "legacy/329d9c88affb2c448d8fa7a4a95db161e803fe47_img_7_87d13" + ], + "gallery_urls": [ + "https://www.compass.com/m/329d9c88affb2c448d8fa7a4a95db161e803fe47_img_0_fba78/640x480.jpg", + "https://www.compass.com/m/329d9c88affb2c448d8fa7a4a95db161e803fe47_img_1_f5d5b/640x480.jpg", + "https://www.compass.com/m/329d9c88affb2c448d8fa7a4a95db161e803fe47_img_2_a8021/640x480.jpg", + "https://www.compass.com/m/329d9c88affb2c448d8fa7a4a95db161e803fe47_img_3_cb920/640x480.jpg", + "https://www.compass.com/m/329d9c88affb2c448d8fa7a4a95db161e803fe47_img_4_b34f1/640x480.jpg", + "https://www.compass.com/m/329d9c88affb2c448d8fa7a4a95db161e803fe47_img_5_1f7ef/640x480.jpg", + "https://www.compass.com/m/329d9c88affb2c448d8fa7a4a95db161e803fe47_img_6_b8fb0/640x480.jpg", + "https://www.compass.com/m/329d9c88affb2c448d8fa7a4a95db161e803fe47_img_7_87d13/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/404-N-Avenue-52-Los-Angeles-CA-90042/1J00AI_pid/" + }, + { + "listing_id": "2103143907633028641", + "slug": "6190-temple-hill-dr-los-angeles-ca-90068", + "title": "$1,499,000", + "price": 1499000, + "is_rent": false, + "street": "6190 Temple Hill Drive", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90068", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1330, + "latitude": 34.1114341, + "longitude": -118.3246202, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Open: 5/17 02:00PM - 05:00PM" + ], + "hero_uuid": "legacy/5fa2b887bbcf67c99619ca9833912cbd1d738063_img_0_ca339", + "gallery_uuids": [ + "legacy/5fa2b887bbcf67c99619ca9833912cbd1d738063_img_0_ca339", + "legacy/5fa2b887bbcf67c99619ca9833912cbd1d738063_img_1_2266b", + "legacy/5fa2b887bbcf67c99619ca9833912cbd1d738063_img_2_b546e", + "legacy/5fa2b887bbcf67c99619ca9833912cbd1d738063_img_3_d2e4e", + "legacy/5fa2b887bbcf67c99619ca9833912cbd1d738063_img_4_92d99", + "legacy/5fa2b887bbcf67c99619ca9833912cbd1d738063_img_5_9ff2c", + "legacy/5fa2b887bbcf67c99619ca9833912cbd1d738063_img_6_c41bd", + "legacy/5fa2b887bbcf67c99619ca9833912cbd1d738063_img_7_b5875" + ], + "gallery_urls": [ + "https://www.compass.com/m/5fa2b887bbcf67c99619ca9833912cbd1d738063_img_0_ca339/640x480.jpg", + "https://www.compass.com/m/5fa2b887bbcf67c99619ca9833912cbd1d738063_img_1_2266b/640x480.jpg", + "https://www.compass.com/m/5fa2b887bbcf67c99619ca9833912cbd1d738063_img_2_b546e/640x480.jpg", + "https://www.compass.com/m/5fa2b887bbcf67c99619ca9833912cbd1d738063_img_3_d2e4e/640x480.jpg", + "https://www.compass.com/m/5fa2b887bbcf67c99619ca9833912cbd1d738063_img_4_92d99/640x480.jpg", + "https://www.compass.com/m/5fa2b887bbcf67c99619ca9833912cbd1d738063_img_5_9ff2c/640x480.jpg", + "https://www.compass.com/m/5fa2b887bbcf67c99619ca9833912cbd1d738063_img_6_c41bd/640x480.jpg", + "https://www.compass.com/m/5fa2b887bbcf67c99619ca9833912cbd1d738063_img_7_b5875/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/6190-Temple-Hill-Dr-Los-Angeles-CA-90068/1HZITQ_pid/" + }, + { + "listing_id": "2100985128207728865", + "slug": "2267-duane-st-unit-3-los-angeles-ca-90039", + "title": "$1,699,000", + "price": 1699000, + "is_rent": false, + "street": "2267 Duane Street, Unit 3", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90039", + "beds": 3, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2644, + "latitude": 34.091129, + "longitude": -118.26115, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Open: 5/14 05:30PM - 07:00PM" + ], + "hero_uuid": "legacy/eb143496d7468e803f50f5a0f9bc1b43a3aea42c_img_0_e79db", + "gallery_uuids": [ + "legacy/eb143496d7468e803f50f5a0f9bc1b43a3aea42c_img_0_e79db", + "legacy/eb143496d7468e803f50f5a0f9bc1b43a3aea42c_img_1_b9c00", + "legacy/eb143496d7468e803f50f5a0f9bc1b43a3aea42c_img_2_0f717", + "legacy/eb143496d7468e803f50f5a0f9bc1b43a3aea42c_img_3_7f713", + "legacy/eb143496d7468e803f50f5a0f9bc1b43a3aea42c_img_4_cc800", + "legacy/eb143496d7468e803f50f5a0f9bc1b43a3aea42c_img_5_f4bda", + "legacy/eb143496d7468e803f50f5a0f9bc1b43a3aea42c_img_6_7f184", + "legacy/eb143496d7468e803f50f5a0f9bc1b43a3aea42c_img_7_b34f7" + ], + "gallery_urls": [ + "https://www.compass.com/m/eb143496d7468e803f50f5a0f9bc1b43a3aea42c_img_0_e79db/640x480.jpg", + "https://www.compass.com/m/eb143496d7468e803f50f5a0f9bc1b43a3aea42c_img_1_b9c00/640x480.jpg", + "https://www.compass.com/m/eb143496d7468e803f50f5a0f9bc1b43a3aea42c_img_2_0f717/640x480.jpg", + "https://www.compass.com/m/eb143496d7468e803f50f5a0f9bc1b43a3aea42c_img_3_7f713/640x480.jpg", + "https://www.compass.com/m/eb143496d7468e803f50f5a0f9bc1b43a3aea42c_img_4_cc800/640x480.jpg", + "https://www.compass.com/m/eb143496d7468e803f50f5a0f9bc1b43a3aea42c_img_5_f4bda/640x480.jpg", + "https://www.compass.com/m/eb143496d7468e803f50f5a0f9bc1b43a3aea42c_img_6_7f184/640x480.jpg", + "https://www.compass.com/m/eb143496d7468e803f50f5a0f9bc1b43a3aea42c_img_7_b34f7/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/2267-Duane-St-Unit-3-Los-Angeles-CA-90039/1JVZEA_pid/" + }, + { + "listing_id": "2100232556169721649", + "slug": "9149-hillsboro-dr-los-angeles-ca-90034", + "title": "$2,299,000", + "price": 2299000, + "is_rent": false, + "street": "9149 Hillsboro Drive", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90034", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2740, + "latitude": 34.0423816, + "longitude": -118.3900432, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/6229052ced1f6aff3a163b63dbf448bc27a2b44e_img_0_8a986", + "gallery_uuids": [ + "legacy/6229052ced1f6aff3a163b63dbf448bc27a2b44e_img_0_8a986", + "legacy/6229052ced1f6aff3a163b63dbf448bc27a2b44e_img_1_6d7c4", + "legacy/6229052ced1f6aff3a163b63dbf448bc27a2b44e_img_2_fdfc7", + "legacy/6229052ced1f6aff3a163b63dbf448bc27a2b44e_img_3_05133", + "legacy/6229052ced1f6aff3a163b63dbf448bc27a2b44e_img_4_9baa2", + "legacy/6229052ced1f6aff3a163b63dbf448bc27a2b44e_img_5_7b559", + "legacy/6229052ced1f6aff3a163b63dbf448bc27a2b44e_img_6_e4c95", + "legacy/6229052ced1f6aff3a163b63dbf448bc27a2b44e_img_7_7a53e" + ], + "gallery_urls": [ + "https://www.compass.com/m/6229052ced1f6aff3a163b63dbf448bc27a2b44e_img_0_8a986/640x480.jpg", + "https://www.compass.com/m/6229052ced1f6aff3a163b63dbf448bc27a2b44e_img_1_6d7c4/640x480.jpg", + "https://www.compass.com/m/6229052ced1f6aff3a163b63dbf448bc27a2b44e_img_2_fdfc7/640x480.jpg", + "https://www.compass.com/m/6229052ced1f6aff3a163b63dbf448bc27a2b44e_img_3_05133/640x480.jpg", + "https://www.compass.com/m/6229052ced1f6aff3a163b63dbf448bc27a2b44e_img_4_9baa2/640x480.jpg", + "https://www.compass.com/m/6229052ced1f6aff3a163b63dbf448bc27a2b44e_img_5_7b559/640x480.jpg", + "https://www.compass.com/m/6229052ced1f6aff3a163b63dbf448bc27a2b44e_img_6_e4c95/640x480.jpg", + "https://www.compass.com/m/6229052ced1f6aff3a163b63dbf448bc27a2b44e_img_7_7a53e/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/9149-Hillsboro-Dr-Los-Angeles-CA-90034/1KHL9S_pid/" + }, + { + "listing_id": "2098166596374269265", + "slug": "2230-fink-st-los-angeles-ca-90068", + "title": "$1,495,000", + "price": 1495000, + "is_rent": false, + "street": "2230 Fink Street", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90068", + "beds": 3, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1230, + "latitude": 34.1113808, + "longitude": -118.3302784, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/41a736d24e1cf1c20df84b6c72a327ee94d6e05e_img_0_fc7f0", + "gallery_uuids": [ + "legacy/41a736d24e1cf1c20df84b6c72a327ee94d6e05e_img_0_fc7f0", + "legacy/41a736d24e1cf1c20df84b6c72a327ee94d6e05e_img_1_47ad8", + "legacy/41a736d24e1cf1c20df84b6c72a327ee94d6e05e_img_2_4d62c", + "legacy/41a736d24e1cf1c20df84b6c72a327ee94d6e05e_img_3_05ad5", + "legacy/41a736d24e1cf1c20df84b6c72a327ee94d6e05e_img_4_0eb26", + "legacy/41a736d24e1cf1c20df84b6c72a327ee94d6e05e_img_5_b36c0", + "legacy/41a736d24e1cf1c20df84b6c72a327ee94d6e05e_img_6_c10a8" + ], + "gallery_urls": [ + "https://www.compass.com/m/41a736d24e1cf1c20df84b6c72a327ee94d6e05e_img_0_fc7f0/640x480.jpg", + "https://www.compass.com/m/41a736d24e1cf1c20df84b6c72a327ee94d6e05e_img_1_47ad8/640x480.jpg", + "https://www.compass.com/m/41a736d24e1cf1c20df84b6c72a327ee94d6e05e_img_2_4d62c/640x480.jpg", + "https://www.compass.com/m/41a736d24e1cf1c20df84b6c72a327ee94d6e05e_img_3_05ad5/640x480.jpg", + "https://www.compass.com/m/41a736d24e1cf1c20df84b6c72a327ee94d6e05e_img_4_0eb26/640x480.jpg", + "https://www.compass.com/m/41a736d24e1cf1c20df84b6c72a327ee94d6e05e_img_5_b36c0/640x480.jpg", + "https://www.compass.com/m/41a736d24e1cf1c20df84b6c72a327ee94d6e05e_img_6_c10a8/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/2230-Fink-St-Los-Angeles-CA-90068/1KEWGN_pid/" + }, + { + "listing_id": "2097934634878769001", + "slug": "2816-s-bentley-ave-los-angeles-ca-90064", + "title": "$1,249,000", + "price": 1249000, + "is_rent": false, + "street": "2816 South Bentley Avenue", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90064", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1443, + "latitude": 34.0300148, + "longitude": -118.428655, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/17d106f72ef66de15aa44f65de70740dc146f084_img_0_1ca80", + "gallery_uuids": [ + "legacy/17d106f72ef66de15aa44f65de70740dc146f084_img_0_1ca80", + "legacy/17d106f72ef66de15aa44f65de70740dc146f084_img_1_6cc79", + "legacy/17d106f72ef66de15aa44f65de70740dc146f084_img_2_13182", + "legacy/17d106f72ef66de15aa44f65de70740dc146f084_img_3_2714c", + "legacy/17d106f72ef66de15aa44f65de70740dc146f084_img_4_cccd8", + "legacy/17d106f72ef66de15aa44f65de70740dc146f084_img_5_10e2a", + "legacy/17d106f72ef66de15aa44f65de70740dc146f084_img_6_7047a", + "legacy/17d106f72ef66de15aa44f65de70740dc146f084_img_7_ca96f" + ], + "gallery_urls": [ + "https://www.compass.com/m/17d106f72ef66de15aa44f65de70740dc146f084_img_0_1ca80/640x480.jpg", + "https://www.compass.com/m/17d106f72ef66de15aa44f65de70740dc146f084_img_1_6cc79/640x480.jpg", + "https://www.compass.com/m/17d106f72ef66de15aa44f65de70740dc146f084_img_2_13182/640x480.jpg", + "https://www.compass.com/m/17d106f72ef66de15aa44f65de70740dc146f084_img_3_2714c/640x480.jpg", + "https://www.compass.com/m/17d106f72ef66de15aa44f65de70740dc146f084_img_4_cccd8/640x480.jpg", + "https://www.compass.com/m/17d106f72ef66de15aa44f65de70740dc146f084_img_5_10e2a/640x480.jpg", + "https://www.compass.com/m/17d106f72ef66de15aa44f65de70740dc146f084_img_6_7047a/640x480.jpg", + "https://www.compass.com/m/17d106f72ef66de15aa44f65de70740dc146f084_img_7_ca96f/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/2816-S-Bentley-Ave-Los-Angeles-CA-90064/1JQGYH_pid/" + }, + { + "listing_id": "2100401887998411753", + "slug": "1215-brockton-ave-unit-203-los-angeles-ca-90025", + "title": "$949,000", + "price": 949000, + "is_rent": false, + "street": "1215 Brockton Avenue, Unit 203", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90025", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1581, + "latitude": 34.0452613, + "longitude": -118.4649545, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/ce7851addb92fef4f0e46fe758a9f68c7be303e5_img_0_80bb1", + "gallery_uuids": [ + "legacy/ce7851addb92fef4f0e46fe758a9f68c7be303e5_img_0_80bb1", + "legacy/ce7851addb92fef4f0e46fe758a9f68c7be303e5_img_1_dafbe", + "legacy/ce7851addb92fef4f0e46fe758a9f68c7be303e5_img_2_36803", + "legacy/ce7851addb92fef4f0e46fe758a9f68c7be303e5_img_3_eebd5", + "legacy/ce7851addb92fef4f0e46fe758a9f68c7be303e5_img_4_325bf", + "legacy/ce7851addb92fef4f0e46fe758a9f68c7be303e5_img_5_55bff", + "legacy/ce7851addb92fef4f0e46fe758a9f68c7be303e5_img_6_606d9", + "legacy/ce7851addb92fef4f0e46fe758a9f68c7be303e5_img_7_14d0d" + ], + "gallery_urls": [ + "https://www.compass.com/m/ce7851addb92fef4f0e46fe758a9f68c7be303e5_img_0_80bb1/640x480.jpg", + "https://www.compass.com/m/ce7851addb92fef4f0e46fe758a9f68c7be303e5_img_1_dafbe/640x480.jpg", + "https://www.compass.com/m/ce7851addb92fef4f0e46fe758a9f68c7be303e5_img_2_36803/640x480.jpg", + "https://www.compass.com/m/ce7851addb92fef4f0e46fe758a9f68c7be303e5_img_3_eebd5/640x480.jpg", + "https://www.compass.com/m/ce7851addb92fef4f0e46fe758a9f68c7be303e5_img_4_325bf/640x480.jpg", + "https://www.compass.com/m/ce7851addb92fef4f0e46fe758a9f68c7be303e5_img_5_55bff/640x480.jpg", + "https://www.compass.com/m/ce7851addb92fef4f0e46fe758a9f68c7be303e5_img_6_606d9/640x480.jpg", + "https://www.compass.com/m/ce7851addb92fef4f0e46fe758a9f68c7be303e5_img_7_14d0d/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/1215-Brockton-Ave-Unit-203-Los-Angeles-CA-90025/1J0RA0_pid/" + }, + { + "listing_id": "2102741355476499777", + "slug": "6374-macal-pl-los-angeles-ca-90068", + "title": "$1,495,000", + "price": 1495000, + "is_rent": false, + "street": "6374 Macal Place", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90068", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1532, + "latitude": 34.112711, + "longitude": -118.3284554, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Open: 5/12 11:00AM - 02:00PM" + ], + "hero_uuid": "legacy/c5bfa4030e64617e950d7b816256429712aa33f7_img_0_e9875", + "gallery_uuids": [ + "legacy/c5bfa4030e64617e950d7b816256429712aa33f7_img_0_e9875", + "legacy/c5bfa4030e64617e950d7b816256429712aa33f7_img_1_02d4d", + "legacy/c5bfa4030e64617e950d7b816256429712aa33f7_img_2_e06fd", + "legacy/c5bfa4030e64617e950d7b816256429712aa33f7_img_3_90e52", + "legacy/c5bfa4030e64617e950d7b816256429712aa33f7_img_4_7627e", + "legacy/c5bfa4030e64617e950d7b816256429712aa33f7_img_5_81d13", + "legacy/c5bfa4030e64617e950d7b816256429712aa33f7_img_6_095c4", + "legacy/c5bfa4030e64617e950d7b816256429712aa33f7_img_7_5a23a" + ], + "gallery_urls": [ + "https://www.compass.com/m/c5bfa4030e64617e950d7b816256429712aa33f7_img_0_e9875/640x480.jpg", + "https://www.compass.com/m/c5bfa4030e64617e950d7b816256429712aa33f7_img_1_02d4d/640x480.jpg", + "https://www.compass.com/m/c5bfa4030e64617e950d7b816256429712aa33f7_img_2_e06fd/640x480.jpg", + "https://www.compass.com/m/c5bfa4030e64617e950d7b816256429712aa33f7_img_3_90e52/640x480.jpg", + "https://www.compass.com/m/c5bfa4030e64617e950d7b816256429712aa33f7_img_4_7627e/640x480.jpg", + "https://www.compass.com/m/c5bfa4030e64617e950d7b816256429712aa33f7_img_5_81d13/640x480.jpg", + "https://www.compass.com/m/c5bfa4030e64617e950d7b816256429712aa33f7_img_6_095c4/640x480.jpg", + "https://www.compass.com/m/c5bfa4030e64617e950d7b816256429712aa33f7_img_7_5a23a/640x480.jpg" + ], + "source_city": "la", + "detail_url": "https://www.compass.com/homedetails/6374-Macal-Pl-Los-Angeles-CA-90068/1JSLO9_pid/" + }, + { + "listing_id": "2103170383086404873", + "slug": "725-ne-76th-st-miami-fl-33138", + "title": "$2,850,000", + "price": 2850000, + "is_rent": false, + "street": "725 Northeast 76th Street", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33138", + "beds": 5, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2839, + "latitude": 25.8452621, + "longitude": -80.1817088, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/7309193b-b8ba-4398-9e43-6344b2edf8ab", + "gallery_uuids": [ + "uuid/7309193b-b8ba-4398-9e43-6344b2edf8ab", + "uuid/55afb2aa-2071-44d4-95af-8c967413537f", + "uuid/474ad97f-1ea5-475e-9284-645dd1017ab4", + "uuid/2583352f-de6b-4c4e-af6b-90ce52dcd8ae", + "uuid/ac4b6b63-4b11-45b0-8255-2bda9037c209", + "uuid/25acf79a-aa84-490e-95b1-0ad98d88c1af" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/7309193b-b8ba-4398-9e43-6344b2edf8ab/750x1000.jpg", + "https://www.compass.com/m/0/55afb2aa-2071-44d4-95af-8c967413537f/750x1000.jpg", + "https://www.compass.com/m/0/474ad97f-1ea5-475e-9284-645dd1017ab4/750x1000.jpg", + "https://www.compass.com/m/0/2583352f-de6b-4c4e-af6b-90ce52dcd8ae/750x1000.jpg", + "https://www.compass.com/m/0/ac4b6b63-4b11-45b0-8255-2bda9037c209/750x1000.jpg", + "https://www.compass.com/m/0/25acf79a-aa84-490e-95b1-0ad98d88c1af/750x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/725-NE-76th-St-Miami-FL-33138/1CWMSP_pid/" + }, + { + "listing_id": "2083780977904271137", + "slug": "14-ne-108th-st-miami-fl-33161", + "title": "$945,000", + "price": 945000, + "is_rent": false, + "street": "14 Northeast 108th Street", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33161", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1519, + "latitude": 25.8739747, + "longitude": -80.19742269999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/0901c9ad-79c3-4c8a-8b6f-6142eb1b23fc", + "gallery_uuids": [ + "uuid/0901c9ad-79c3-4c8a-8b6f-6142eb1b23fc", + "uuid/0c70ac78-bf9e-434f-a879-6ea7de95e0f6", + "uuid/14fc3a06-7e41-4682-ab41-dd50a76c7bc1", + "uuid/8f4ba7a5-128d-4de2-83be-88103a8cd7d6" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/0901c9ad-79c3-4c8a-8b6f-6142eb1b23fc/1333x1000.jpg", + "https://www.compass.com/m/0/0c70ac78-bf9e-434f-a879-6ea7de95e0f6/1333x1000.jpg", + "https://www.compass.com/m/0/14fc3a06-7e41-4682-ab41-dd50a76c7bc1/1333x1000.jpg", + "https://www.compass.com/m/0/8f4ba7a5-128d-4de2-83be-88103a8cd7d6/1333x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/14-NE-108th-St-Miami-FL-33161/1CZBPR_pid/" + }, + { + "listing_id": "2063344899282744289", + "slug": "3310-elizabeth-st-miami-fl-33133", + "title": "$2,985,000", + "price": 2985000, + "is_rent": false, + "street": "3310 Elizabeth Street", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33133", + "beds": 4, + "baths": 4.0, + "baths_full": 4, + "baths_half": null, + "sqft": 2643, + "latitude": 25.7296157, + "longitude": -80.24848940000001, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "New Construction" + ], + "hero_uuid": "uuid/a449549d-da3e-418d-9e20-a272f85de669", + "gallery_uuids": [ + "uuid/a449549d-da3e-418d-9e20-a272f85de669", + "uuid/6d7f460a-d640-47a1-8f74-fc05b4d9248d", + "uuid/ccc15924-a62c-4c12-84bb-98f356a87a36", + "uuid/884687c7-8673-4818-978c-21541963cf59", + "uuid/9d3f23a3-0ac4-496a-b089-6760022082c2", + "uuid/b4e4308f-349f-4dd8-906f-8b535ccb60aa", + "uuid/212f9ad7-7675-4a02-85d4-e5bdda4aaca1", + "uuid/7ad083b3-62b5-497d-aea1-b1859eee533d" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/a449549d-da3e-418d-9e20-a272f85de669/1500x844.jpg", + "https://www.compass.com/m/0/6d7f460a-d640-47a1-8f74-fc05b4d9248d/1500x844.jpg", + "https://www.compass.com/m/0/ccc15924-a62c-4c12-84bb-98f356a87a36/904x712.jpg", + "https://www.compass.com/m/0/884687c7-8673-4818-978c-21541963cf59/838x1000.jpg", + "https://www.compass.com/m/0/9d3f23a3-0ac4-496a-b089-6760022082c2/771x1000.jpg", + "https://www.compass.com/m/0/b4e4308f-349f-4dd8-906f-8b535ccb60aa/804x1000.jpg", + "https://www.compass.com/m/0/212f9ad7-7675-4a02-85d4-e5bdda4aaca1/739x1000.jpg", + "https://www.compass.com/m/0/7ad083b3-62b5-497d-aea1-b1859eee533d/933x911.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/3310-Elizabeth-St-Miami-FL-33133/1EO3A4_pid/" + }, + { + "listing_id": "2053924700174731745", + "slug": "3770-kumquat-ave-miami-fl-33133", + "title": "$4,950,000", + "price": 4950000, + "is_rent": false, + "street": "3770 Kumquat Avenue", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33133", + "beds": 5, + "baths": 7.0, + "baths_full": 5, + "baths_half": null, + "sqft": 3875, + "latitude": 25.7241259, + "longitude": -80.254493, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/3c87e21c-4582-4d4f-9ea7-3e923ca8eb1e", + "gallery_uuids": [ + "uuid/3c87e21c-4582-4d4f-9ea7-3e923ca8eb1e", + "uuid/0e05a930-e9b4-4ae3-9275-3230ee0eee10", + "uuid/ffd59e6a-8796-4726-bc0e-7983f3219ee9", + "uuid/1e6c95ce-2d46-4c98-be28-f83981224efb", + "uuid/42a74dc6-3ab4-47d0-9255-72d859ab5f9b", + "uuid/c2be854d-a307-4123-b059-c23b0b3dbcc0", + "uuid/e3c6c21e-f70e-4253-bd98-78951c6e537f", + "uuid/98df531f-e9bc-4aab-9112-5c7a32890b9c" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/3c87e21c-4582-4d4f-9ea7-3e923ca8eb1e/1500x1000.jpg", + "https://www.compass.com/m/0/0e05a930-e9b4-4ae3-9275-3230ee0eee10/1500x1000.jpg", + "https://www.compass.com/m/0/ffd59e6a-8796-4726-bc0e-7983f3219ee9/1500x1000.jpg", + "https://www.compass.com/m/0/1e6c95ce-2d46-4c98-be28-f83981224efb/1500x1000.jpg", + "https://www.compass.com/m/0/42a74dc6-3ab4-47d0-9255-72d859ab5f9b/1500x1000.jpg", + "https://www.compass.com/m/0/c2be854d-a307-4123-b059-c23b0b3dbcc0/1500x1000.jpg", + "https://www.compass.com/m/0/e3c6c21e-f70e-4253-bd98-78951c6e537f/1500x1000.jpg", + "https://www.compass.com/m/0/98df531f-e9bc-4aab-9112-5c7a32890b9c/1500x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/3770-Kumquat-Ave-Miami-FL-33133/1C8HD6_pid/" + }, + { + "listing_id": "1967539321536067401", + "slug": "1698-tigertail-ave-miami-fl-33133", + "title": "$7,950,000", + "price": 7950000, + "is_rent": false, + "street": "1698 Tigertail Avenue", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33133", + "beds": 6, + "baths": 7.0, + "baths_full": 7, + "baths_half": null, + "sqft": 5300, + "latitude": 25.7421111, + "longitude": -80.22134770000001, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/6ec20444-f25e-4c4d-9aa8-a64f3e43e286", + "gallery_uuids": [ + "uuid/6ec20444-f25e-4c4d-9aa8-a64f3e43e286", + "uuid/020e03e5-a672-40bc-99d8-a10200ea114a", + "uuid/64ab590b-e0ac-4f21-a9af-8a554e70fce8", + "uuid/48e73175-e43d-4e50-9752-cb9a54aa37f6", + "uuid/157221fb-788f-42d5-a41d-73d76bef48ee", + "uuid/60925678-58b2-4457-a58d-cec15406f4ba", + "uuid/5d3fc0e9-2ce2-49e5-8343-875248f6d0ea", + "uuid/ce0d1f87-f0af-4c6d-b090-4bb32a8da7a7" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/6ec20444-f25e-4c4d-9aa8-a64f3e43e286/1500x844.jpg", + "https://www.compass.com/m/0/020e03e5-a672-40bc-99d8-a10200ea114a/1333x1000.jpg", + "https://www.compass.com/m/0/64ab590b-e0ac-4f21-a9af-8a554e70fce8/1500x844.jpg", + "https://www.compass.com/m/0/48e73175-e43d-4e50-9752-cb9a54aa37f6/1500x426.jpg", + "https://www.compass.com/m/0/157221fb-788f-42d5-a41d-73d76bef48ee/1500x844.jpg", + "https://www.compass.com/m/0/60925678-58b2-4457-a58d-cec15406f4ba/1500x844.jpg", + "https://www.compass.com/m/0/5d3fc0e9-2ce2-49e5-8343-875248f6d0ea/1500x855.jpg", + "https://www.compass.com/m/0/ce0d1f87-f0af-4c6d-b090-4bb32a8da7a7/1500x844.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/1698-Tigertail-Ave-Miami-FL-33133/1D9WQ2_pid/" + }, + { + "listing_id": "2103320929822349377", + "slug": "9715-sw-89th-ct-miami-fl-33176", + "title": "$4,900,000", + "price": 4900000, + "is_rent": false, + "street": "9715 Southwest 89th Court", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33176", + "beds": 6, + "baths": 7.0, + "baths_full": 6, + "baths_half": null, + "sqft": 6718, + "latitude": 25.6796293, + "longitude": -80.3398053, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/8077bd9f-8876-44c2-989e-c48d90a56604", + "gallery_uuids": [ + "uuid/8077bd9f-8876-44c2-989e-c48d90a56604", + "uuid/2fb65aa2-00a8-4030-8547-02b63a521d4e", + "uuid/f3ba22a7-3221-4bc4-aad7-2ff1321ea56d", + "uuid/2c0e849e-b6d6-4e30-8e02-5e4ae48d1a0c", + "uuid/3f3c5ac9-3536-4895-8c30-ad1dd304666b", + "uuid/f66d06f5-01cb-4e46-b90d-213d0f6b392a", + "uuid/d2063bc5-024b-4688-8257-731b286da933", + "uuid/e1ca5d54-6c50-43d9-a3f3-5bf50b92081f" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/8077bd9f-8876-44c2-989e-c48d90a56604/1500x844.jpg", + "https://www.compass.com/m/0/2fb65aa2-00a8-4030-8547-02b63a521d4e/1500x1000.jpg", + "https://www.compass.com/m/0/f3ba22a7-3221-4bc4-aad7-2ff1321ea56d/1500x1000.jpg", + "https://www.compass.com/m/0/2c0e849e-b6d6-4e30-8e02-5e4ae48d1a0c/1500x1000.jpg", + "https://www.compass.com/m/0/3f3c5ac9-3536-4895-8c30-ad1dd304666b/1500x1000.jpg", + "https://www.compass.com/m/0/f66d06f5-01cb-4e46-b90d-213d0f6b392a/1500x1000.jpg", + "https://www.compass.com/m/0/d2063bc5-024b-4688-8257-731b286da933/1500x1000.jpg", + "https://www.compass.com/m/0/e1ca5d54-6c50-43d9-a3f3-5bf50b92081f/1500x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/9715-SW-89th-Ct-Miami-FL-33176/1D0FWF_pid/" + }, + { + "listing_id": "2088063562122699249", + "slug": "199-caoba-ct-miami-fl-33143", + "title": "$13,995,000", + "price": 13995000, + "is_rent": false, + "street": "199 Caoba Court", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33143", + "beds": 5, + "baths": 8.0, + "baths_full": 5, + "baths_half": null, + "sqft": 5342, + "latitude": 25.6977725, + "longitude": -80.2550883, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/2ab07100-b3c5-4def-a941-9b391e117650", + "gallery_uuids": [ + "uuid/2ab07100-b3c5-4def-a941-9b391e117650", + "uuid/6627a9a0-2062-4790-b5ff-1b0b19e82e30", + "uuid/d45bb754-3147-457c-a955-65020e77b31a", + "uuid/4a945873-7973-49b1-a205-c34d5f6eb2d8", + "uuid/f5b4bb1c-549e-471e-ba46-2427baebe076", + "uuid/6e0d4ade-37fa-4808-94d2-c84471b67d4b", + "uuid/a857ac76-c966-4ee7-af86-b8e6222b5381", + "uuid/2ee08011-0fa8-4ff1-b74a-b9631e6c1c6a" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/2ab07100-b3c5-4def-a941-9b391e117650/1500x1000.jpg", + "https://www.compass.com/m/0/6627a9a0-2062-4790-b5ff-1b0b19e82e30/1497x1000.jpg", + "https://www.compass.com/m/0/d45bb754-3147-457c-a955-65020e77b31a/1499x1000.jpg", + "https://www.compass.com/m/0/4a945873-7973-49b1-a205-c34d5f6eb2d8/1499x1000.jpg", + "https://www.compass.com/m/0/f5b4bb1c-549e-471e-ba46-2427baebe076/1497x1000.jpg", + "https://www.compass.com/m/0/6e0d4ade-37fa-4808-94d2-c84471b67d4b/1499x1000.jpg", + "https://www.compass.com/m/0/a857ac76-c966-4ee7-af86-b8e6222b5381/1499x1000.jpg", + "https://www.compass.com/m/0/2ee08011-0fa8-4ff1-b74a-b9631e6c1c6a/1499x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/199-Caoba-Ct-Miami-FL-33143/1CW7C1_pid/" + }, + { + "listing_id": "2095770675132879425", + "slug": "2655-s-bayshore-dr-unit-1801-02-miami-fl-33133", + "title": "$15,750,000", + "price": 15750000, + "is_rent": false, + "street": "2655 South Bayshore Drive, Unit 1801/02", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33133", + "beds": 6, + "baths": 7.0, + "baths_full": 6, + "baths_half": null, + "sqft": 5353, + "latitude": 25.7308165, + "longitude": -80.235877, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "New Construction" + ], + "hero_uuid": "uuid/551e77bd-492b-45be-b8fb-eec2eaf50f8f", + "gallery_uuids": [ + "uuid/551e77bd-492b-45be-b8fb-eec2eaf50f8f", + "uuid/440bc610-9c30-4392-b396-0b66a9731d27", + "uuid/3d688a90-a22f-4a82-84cc-26f18101f75b", + "uuid/a909d741-183c-43e8-a81b-475c2269ea0d" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/551e77bd-492b-45be-b8fb-eec2eaf50f8f/800x1000.jpg", + "https://www.compass.com/m/0/440bc610-9c30-4392-b396-0b66a9731d27/1333x1000.jpg", + "https://www.compass.com/m/0/3d688a90-a22f-4a82-84cc-26f18101f75b/1333x1000.jpg", + "https://www.compass.com/m/0/a909d741-183c-43e8-a81b-475c2269ea0d/1333x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/2655-S-Bayshore-Dr-Unit-1801-02-Miami-FL-33133/1DUJ6M_pid/" + }, + { + "listing_id": "2078407869357531361", + "slug": "17145-sw-90th-ave-miami-fl-33157", + "title": "$1,650,000", + "price": 1650000, + "is_rent": false, + "street": "17145 Southwest 90th Avenue", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33157", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1514, + "latitude": 25.6107339, + "longitude": -80.3383803, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/8268cead-c47c-49ab-b715-299e99e86a6e", + "gallery_uuids": [ + "uuid/8268cead-c47c-49ab-b715-299e99e86a6e", + "uuid/2ce11d98-27be-4f23-b787-e69f681a6da5" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/8268cead-c47c-49ab-b715-299e99e86a6e/1284x756.jpg", + "https://www.compass.com/m/0/2ce11d98-27be-4f23-b787-e69f681a6da5/1284x692.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/17145-SW-90th-Ave-Miami-FL-33157/1C7AS8_pid/" + }, + { + "listing_id": "2101469648845424521", + "slug": "6716-san-vicente-st-miami-fl-33146", + "title": "$8,250,000", + "price": 8250000, + "is_rent": false, + "street": "6716 San Vicente Street", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33146", + "beds": 6, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 25.7082122, + "longitude": -80.2616432, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "New Construction" + ], + "hero_uuid": "uuid/de61b90d-b344-46f8-b487-f3254c3c896b", + "gallery_uuids": [ + "uuid/de61b90d-b344-46f8-b487-f3254c3c896b", + "uuid/b4e18029-331f-4782-835e-bff9a03ce74e", + "uuid/acbb9cb0-a503-4629-9334-957fc67e8a93", + "uuid/c0aa1ba6-abe1-49a2-afec-4f5591119c78", + "uuid/8c5a76a0-7e51-4497-a8e6-33ac909b7188", + "uuid/04374b88-1467-414f-9465-9a92a3edb7f6", + "uuid/a9d5f6ab-9e57-4753-99c5-3d18920c6578", + "uuid/61b67c96-1d14-4bf7-ae40-6c4d5e3704d3" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/de61b90d-b344-46f8-b487-f3254c3c896b/1500x1000.jpg", + "https://www.compass.com/m/0/b4e18029-331f-4782-835e-bff9a03ce74e/1500x1000.jpg", + "https://www.compass.com/m/0/acbb9cb0-a503-4629-9334-957fc67e8a93/1500x1000.jpg", + "https://www.compass.com/m/0/c0aa1ba6-abe1-49a2-afec-4f5591119c78/1500x1000.jpg", + "https://www.compass.com/m/0/8c5a76a0-7e51-4497-a8e6-33ac909b7188/1500x1000.jpg", + "https://www.compass.com/m/0/04374b88-1467-414f-9465-9a92a3edb7f6/1500x1000.jpg", + "https://www.compass.com/m/0/a9d5f6ab-9e57-4753-99c5-3d18920c6578/1500x1000.jpg", + "https://www.compass.com/m/0/61b67c96-1d14-4bf7-ae40-6c4d5e3704d3/1500x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/6716-San-Vicente-St-Miami-FL-33146/1DWSGN_pid/" + }, + { + "listing_id": "1971956027583144857", + "slug": "1247-anastasia-ave-miami-fl-33134", + "title": "$2,500,000", + "price": 2500000, + "is_rent": false, + "street": "1247 Anastasia Avenue", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33134", + "beds": 3, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2525, + "latitude": 25.7434282, + "longitude": -80.28110889999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/9fec6323-c992-4ed6-9061-6956dc9afecc", + "gallery_uuids": [ + "uuid/9fec6323-c992-4ed6-9061-6956dc9afecc", + "uuid/8bc76ac4-6e4c-4173-b049-f7b0fa6c2ba7", + "uuid/769ee1c8-76fd-407a-8e2a-e45d18f64113", + "uuid/4e576ed4-9c23-43e9-91d2-98f711a7bc37", + "uuid/4445e77d-7c3d-4b46-b93a-23d1e9d35211", + "uuid/e0ca8f67-7fb8-4f45-9998-b231b8d1b194", + "uuid/efed6c6b-3b29-4444-89f6-977be2526c8c", + "uuid/c8c9546d-655e-4e90-b7c6-f5791df920b4" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/9fec6323-c992-4ed6-9061-6956dc9afecc/1499x1000.jpg", + "https://www.compass.com/m/0/8bc76ac4-6e4c-4173-b049-f7b0fa6c2ba7/1500x1000.jpg", + "https://www.compass.com/m/0/769ee1c8-76fd-407a-8e2a-e45d18f64113/1499x1000.jpg", + "https://www.compass.com/m/0/4e576ed4-9c23-43e9-91d2-98f711a7bc37/1333x1000.jpg", + "https://www.compass.com/m/0/4445e77d-7c3d-4b46-b93a-23d1e9d35211/1499x1000.jpg", + "https://www.compass.com/m/0/e0ca8f67-7fb8-4f45-9998-b231b8d1b194/1499x1000.jpg", + "https://www.compass.com/m/0/efed6c6b-3b29-4444-89f6-977be2526c8c/1499x1000.jpg", + "https://www.compass.com/m/0/c8c9546d-655e-4e90-b7c6-f5791df920b4/1499x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/1247-Anastasia-Ave-Miami-FL-33134/1DREN6_pid/" + }, + { + "listing_id": "2098730215016681681", + "slug": "170-nw-44th-st-miami-fl-33127", + "title": "$2,950,000", + "price": 2950000, + "is_rent": false, + "street": "170 Northwest 44th Street", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33127", + "beds": 4, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": null, + "latitude": 25.8157176, + "longitude": -80.19894819999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "New Construction" + ], + "hero_uuid": "uuid/9bfd8958-5e2c-4e2f-b017-8acc9f0254e6", + "gallery_uuids": [ + "uuid/9bfd8958-5e2c-4e2f-b017-8acc9f0254e6", + "uuid/77c688da-6dc9-40a8-bbdf-9e424dd69e24", + "uuid/1ddf941e-ab93-4e69-979e-3b3b101f9fb9", + "uuid/523ed5f2-8227-404e-a8d7-84a0382c8348", + "uuid/9b6f4e4b-2fc2-48d1-b27f-557d146a46c0", + "uuid/28df49aa-6287-4142-afff-a018fcad4517", + "uuid/d9c9a7ae-cb35-4067-9956-5aa90fca2ffc", + "uuid/941420e0-0409-4f21-b454-9c3bf8bec2f2" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/9bfd8958-5e2c-4e2f-b017-8acc9f0254e6/1500x862.jpg", + "https://www.compass.com/m/0/77c688da-6dc9-40a8-bbdf-9e424dd69e24/1498x1000.jpg", + "https://www.compass.com/m/0/1ddf941e-ab93-4e69-979e-3b3b101f9fb9/1500x857.jpg", + "https://www.compass.com/m/0/523ed5f2-8227-404e-a8d7-84a0382c8348/1498x1000.jpg", + "https://www.compass.com/m/0/9b6f4e4b-2fc2-48d1-b27f-557d146a46c0/810x458.jpg", + "https://www.compass.com/m/0/28df49aa-6287-4142-afff-a018fcad4517/1498x1000.jpg", + "https://www.compass.com/m/0/d9c9a7ae-cb35-4067-9956-5aa90fca2ffc/1498x1000.jpg", + "https://www.compass.com/m/0/941420e0-0409-4f21-b454-9c3bf8bec2f2/1498x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/170-NW-44th-St-Miami-FL-33127/1DXC7A_pid/" + }, + { + "listing_id": "2097992927215682265", + "slug": "8365-sw-163rd-st-miami-fl-33157", + "title": "$1,299,000", + "price": 1299000, + "is_rent": false, + "street": "8365 Southwest 163rd Street", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33157", + "beds": 4, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 4042, + "latitude": 25.61934, + "longitude": -80.328325, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/58263343-6811-4476-87d5-a556f3e03404", + "gallery_uuids": [ + "uuid/58263343-6811-4476-87d5-a556f3e03404", + "uuid/61be6d3d-ca2c-4c2d-a2f9-b0dbc41585ec", + "uuid/53087784-8479-4772-8ff8-b912ca7faf9f", + "uuid/e138ad72-39ba-4fc0-937c-f48d573a6726", + "uuid/76e2eac4-9f19-49ab-bc33-a3a474e1aaec" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/58263343-6811-4476-87d5-a556f3e03404/1335x1000.jpg", + "https://www.compass.com/m/0/61be6d3d-ca2c-4c2d-a2f9-b0dbc41585ec/1335x1000.jpg", + "https://www.compass.com/m/0/53087784-8479-4772-8ff8-b912ca7faf9f/1335x1000.jpg", + "https://www.compass.com/m/0/e138ad72-39ba-4fc0-937c-f48d573a6726/1335x1000.jpg", + "https://www.compass.com/m/0/76e2eac4-9f19-49ab-bc33-a3a474e1aaec/1335x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/8365-SW-163rd-St-Miami-FL-33157/1E0ITS_pid/" + }, + { + "listing_id": "1795365010515361945", + "slug": "8768-sw-62nd-ct-miami-fl-33156", + "title": "$3,600,000", + "price": 3600000, + "is_rent": false, + "street": "8768 Southwest 62nd Court", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33156", + "beds": 5, + "baths": 4.0, + "baths_full": 4, + "baths_half": null, + "sqft": 4154, + "latitude": 25.6903302, + "longitude": -80.295346, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/78a24713-539a-4f57-9df0-87eac739096a", + "gallery_uuids": [ + "uuid/78a24713-539a-4f57-9df0-87eac739096a", + "uuid/9201a03e-dedf-4517-8550-fc603781baab", + "uuid/86238295-9420-4163-9e57-338b98740fb4", + "uuid/2286e05f-0c76-4e42-9188-5cbabaa9324c", + "uuid/9d9a2ed8-6558-435b-9237-6d2d7438f239", + "uuid/85075f43-bf03-4a61-8f4f-65d2703cf1ee", + "uuid/06c7ea38-7f07-46f9-a7ed-4eb1e4f59a25", + "uuid/23284b4d-9b2a-44a9-a3c8-fa6c33d2cff1" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/78a24713-539a-4f57-9df0-87eac739096a/1500x1000.jpg", + "https://www.compass.com/m/0/9201a03e-dedf-4517-8550-fc603781baab/1500x1000.jpg", + "https://www.compass.com/m/0/86238295-9420-4163-9e57-338b98740fb4/1500x1000.jpg", + "https://www.compass.com/m/0/2286e05f-0c76-4e42-9188-5cbabaa9324c/667x1000.jpg", + "https://www.compass.com/m/0/9d9a2ed8-6558-435b-9237-6d2d7438f239/1500x1000.jpg", + "https://www.compass.com/m/0/85075f43-bf03-4a61-8f4f-65d2703cf1ee/1500x1000.jpg", + "https://www.compass.com/m/0/06c7ea38-7f07-46f9-a7ed-4eb1e4f59a25/1500x1000.jpg", + "https://www.compass.com/m/0/23284b4d-9b2a-44a9-a3c8-fa6c33d2cff1/1500x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/8768-SW-62nd-Ct-Miami-FL-33156/1DME6C_pid/" + }, + { + "listing_id": "2085119372299869049", + "slug": "79-sw-12th-st-unit-2201s-miami-fl-33130", + "title": "$680,000", + "price": 680000, + "is_rent": false, + "street": "79 Southwest 12th Street, Unit 2201S", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33130", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1099, + "latitude": 25.762752, + "longitude": -80.19466899999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/0565ff18-ec20-40de-a90f-91e44402dbef", + "gallery_uuids": [ + "uuid/0565ff18-ec20-40de-a90f-91e44402dbef", + "uuid/695a6a1f-9042-41c6-a907-0879a130f6ba", + "uuid/85006707-a26f-4be9-b65d-5bebdb34a1f7", + "uuid/5562a461-968a-4975-b84f-24945999b40e", + "uuid/c658688b-c666-45d2-9e7b-5a979aa74733", + "uuid/c3455f7c-e505-459f-bdd7-b770e6521f1e", + "uuid/68e5a8a3-5373-4c1a-85b3-1535f5fa3d91", + "uuid/5810ff01-3582-4159-bcee-a9ba0d73a248" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/0565ff18-ec20-40de-a90f-91e44402dbef/1497x1000.jpg", + "https://www.compass.com/m/0/695a6a1f-9042-41c6-a907-0879a130f6ba/1495x1000.jpg", + "https://www.compass.com/m/0/85006707-a26f-4be9-b65d-5bebdb34a1f7/1497x1000.jpg", + "https://www.compass.com/m/0/5562a461-968a-4975-b84f-24945999b40e/1494x1000.jpg", + "https://www.compass.com/m/0/c658688b-c666-45d2-9e7b-5a979aa74733/1484x1000.jpg", + "https://www.compass.com/m/0/c3455f7c-e505-459f-bdd7-b770e6521f1e/1479x1000.jpg", + "https://www.compass.com/m/0/68e5a8a3-5373-4c1a-85b3-1535f5fa3d91/1495x1000.jpg", + "https://www.compass.com/m/0/5810ff01-3582-4159-bcee-a9ba0d73a248/1500x993.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/79-SW-12th-St-Unit-2201S-Miami-FL-33130/1CBN4F_pid/" + }, + { + "listing_id": "2099572245494376561", + "slug": "rockwell-island-miami-fl-33133", + "title": "$4,300,000", + "price": 4300000, + "is_rent": false, + "street": "Rockwell Island", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33133", + "beds": 4, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 4588, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/6704a23e-1c52-42d5-b0fb-0df35ed471cd", + "gallery_uuids": [ + "uuid/6704a23e-1c52-42d5-b0fb-0df35ed471cd", + "uuid/5adade34-25d4-4829-8c9e-4886ecea2d72", + "uuid/3bd679e3-1055-42e9-a819-f1e636f13b6b", + "uuid/b840bda0-602a-4978-8e1b-41037c511eab", + "uuid/0c6a4e9a-7594-4d10-be2a-568d92f3f0ce", + "uuid/e5400e6b-271d-43ed-9fca-10d59ce0a820", + "uuid/6e9862fb-222d-41a0-9b12-1ca9f37cc647", + "uuid/2c55b352-463e-47a0-9479-6b7304176e5a" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/6704a23e-1c52-42d5-b0fb-0df35ed471cd/1500x1000.jpg", + "https://www.compass.com/m/0/5adade34-25d4-4829-8c9e-4886ecea2d72/1500x1000.jpg", + "https://www.compass.com/m/0/3bd679e3-1055-42e9-a819-f1e636f13b6b/1335x1000.jpg", + "https://www.compass.com/m/0/b840bda0-602a-4978-8e1b-41037c511eab/1500x1000.jpg", + "https://www.compass.com/m/0/0c6a4e9a-7594-4d10-be2a-568d92f3f0ce/1500x1000.jpg", + "https://www.compass.com/m/0/e5400e6b-271d-43ed-9fca-10d59ce0a820/1335x1000.jpg", + "https://www.compass.com/m/0/6e9862fb-222d-41a0-9b12-1ca9f37cc647/1500x1000.jpg", + "https://www.compass.com/m/0/2c55b352-463e-47a0-9479-6b7304176e5a/1500x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/Rockwell-Island-Miami-FL-33133/2099572245494376561_lid/" + }, + { + "listing_id": "2053924822858538897", + "slug": "3770-3792-kumquat-ave-miami-fl-33133", + "title": "$6,495,000", + "price": 6495000, + "is_rent": false, + "street": "3770-3792 Kumquat Avenue", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33133", + "beds": 5, + "baths": 7.0, + "baths_full": 5, + "baths_half": null, + "sqft": 3875, + "latitude": 25.7240949, + "longitude": -80.2544918, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/5c8f1cae-e154-4f1c-9691-d49f0d67f837", + "gallery_uuids": [ + "uuid/5c8f1cae-e154-4f1c-9691-d49f0d67f837", + "uuid/a0877f62-d26e-4eae-8dbd-b08fe280dcbe", + "uuid/df644abe-2a36-4836-9a01-efe3651c1a47", + "uuid/b885f67c-8f1b-4de4-9349-9d1edddcfd8e", + "uuid/e47c76a7-145e-4451-a752-ad7490328336", + "uuid/fb2d8062-a754-4a10-9c28-963ccd50d4f7", + "uuid/8e04007a-ac02-472f-b831-eecc7e3d097f", + "uuid/7ccd8f45-bbc2-479e-a58c-d57a33afed46" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/5c8f1cae-e154-4f1c-9691-d49f0d67f837/1335x1000.jpg", + "https://www.compass.com/m/0/a0877f62-d26e-4eae-8dbd-b08fe280dcbe/1335x1000.jpg", + "https://www.compass.com/m/0/df644abe-2a36-4836-9a01-efe3651c1a47/1500x1000.jpg", + "https://www.compass.com/m/0/b885f67c-8f1b-4de4-9349-9d1edddcfd8e/1499x1000.jpg", + "https://www.compass.com/m/0/e47c76a7-145e-4451-a752-ad7490328336/1500x1000.jpg", + "https://www.compass.com/m/0/fb2d8062-a754-4a10-9c28-963ccd50d4f7/1500x1000.jpg", + "https://www.compass.com/m/0/8e04007a-ac02-472f-b831-eecc7e3d097f/1500x1000.jpg", + "https://www.compass.com/m/0/7ccd8f45-bbc2-479e-a58c-d57a33afed46/1500x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/3770-3792-Kumquat-Ave-Miami-FL-33133/26PT5K_pid/" + }, + { + "listing_id": "2083522653841596097", + "slug": "8610-sw-83rd-st-miami-fl-33143", + "title": "$1,275,000", + "price": 1275000, + "is_rent": false, + "street": "8610 Southwest 83rd Street", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33143", + "beds": 4, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2660, + "latitude": 25.692179033015314, + "longitude": -80.33343597865361, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Virtual Tour" + ], + "hero_uuid": "uuid/09c0efd0-12bd-4d2e-9a09-1548496a97f3", + "gallery_uuids": [ + "uuid/09c0efd0-12bd-4d2e-9a09-1548496a97f3", + "uuid/c6618de3-ef09-4dad-bbb1-8c9f3a8d6cee", + "uuid/cea25aa3-c79d-412f-9b15-d40f90d81459", + "uuid/b38b3749-d6c6-4f04-9e71-a22af9dcbfd9", + "uuid/2b5fb07c-251e-4207-9686-ac4692866748", + "uuid/22de04b4-523f-45bb-a98e-684f17f65d85", + "uuid/a135c363-2261-4c1f-8878-c7503835ae6f", + "uuid/06904411-1f29-45e9-bf6c-f588cbec5b0e" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/09c0efd0-12bd-4d2e-9a09-1548496a97f3/1000x1000.jpg", + "https://www.compass.com/m/0/c6618de3-ef09-4dad-bbb1-8c9f3a8d6cee/1500x1000.jpg", + "https://www.compass.com/m/0/cea25aa3-c79d-412f-9b15-d40f90d81459/1500x1000.jpg", + "https://www.compass.com/m/0/b38b3749-d6c6-4f04-9e71-a22af9dcbfd9/1499x1000.jpg", + "https://www.compass.com/m/0/2b5fb07c-251e-4207-9686-ac4692866748/1499x1000.jpg", + "https://www.compass.com/m/0/22de04b4-523f-45bb-a98e-684f17f65d85/1500x1000.jpg", + "https://www.compass.com/m/0/a135c363-2261-4c1f-8878-c7503835ae6f/1500x1000.jpg", + "https://www.compass.com/m/0/06904411-1f29-45e9-bf6c-f588cbec5b0e/1499x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/8610-SW-83rd-St-Miami-FL-33143/1DXTGC_pid/" + }, + { + "listing_id": "2083551080812289809", + "slug": "88-sw-7th-st-unit-ph4303-miami-fl-33130", + "title": "$5,799,900", + "price": 5799900, + "is_rent": false, + "street": "88 Southwest 7th Street, Unit PH4303", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33130", + "beds": 4, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 3115, + "latitude": 25.7671967, + "longitude": -80.1945134, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/4c80876d-7970-4c56-aaaf-ebbae6871400", + "gallery_uuids": [ + "uuid/4c80876d-7970-4c56-aaaf-ebbae6871400", + "uuid/63e25f41-6a0e-4211-8981-07b7fdfa0579", + "uuid/c75cd42a-9df7-44f6-94b7-29871e9cc5af", + "uuid/161270cd-2528-408a-87f5-bf17f8283f77", + "uuid/12b107f4-d82a-4350-924c-4af704c191a7", + "uuid/65c9be8d-670d-426b-b87b-0b01c693deef", + "uuid/0de07d28-959d-4e30-b55e-9f555418a88a", + "uuid/801b0621-45e6-4ebf-abbf-2c416199679f" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/4c80876d-7970-4c56-aaaf-ebbae6871400/1500x998.jpg", + "https://www.compass.com/m/0/63e25f41-6a0e-4211-8981-07b7fdfa0579/1500x998.jpg", + "https://www.compass.com/m/0/c75cd42a-9df7-44f6-94b7-29871e9cc5af/1500x999.jpg", + "https://www.compass.com/m/0/161270cd-2528-408a-87f5-bf17f8283f77/1500x1000.jpg", + "https://www.compass.com/m/0/12b107f4-d82a-4350-924c-4af704c191a7/1337x1000.jpg", + "https://www.compass.com/m/0/65c9be8d-670d-426b-b87b-0b01c693deef/1500x998.jpg", + "https://www.compass.com/m/0/0de07d28-959d-4e30-b55e-9f555418a88a/1500x999.jpg", + "https://www.compass.com/m/0/801b0621-45e6-4ebf-abbf-2c416199679f/1500x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/88-SW-7th-St-Unit-PH4303-Miami-FL-33130/1CZD9G_pid/" + }, + { + "listing_id": "2099485044697872137", + "slug": "rockwell-island-miami-fl-33133", + "title": "$6,350,000", + "price": 6350000, + "is_rent": false, + "street": "Rockwell Island", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33133", + "beds": 6, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 6501, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/b8eb5e36-d983-4bf2-b2e4-3b5c36528db1", + "gallery_uuids": [ + "uuid/b8eb5e36-d983-4bf2-b2e4-3b5c36528db1", + "uuid/eb57d278-5d17-45ac-8919-6e8137d106e0", + "uuid/dd8a50ea-a6c7-4b2d-97d1-96566d9e3952", + "uuid/78d4225f-f948-4ec6-bbb9-cdc8dd4f46a0", + "uuid/6e648b51-5fb8-4f5f-a434-c324fbe7d871", + "uuid/ce018afa-ccd0-40a3-8dd4-f5e81bf51042", + "uuid/5320ed90-5871-4d34-96e0-90cfcbd37c52", + "uuid/88c90528-a23a-4358-b8bf-a52fa07c0918" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/b8eb5e36-d983-4bf2-b2e4-3b5c36528db1/1496x1000.jpg", + "https://www.compass.com/m/0/eb57d278-5d17-45ac-8919-6e8137d106e0/1500x1000.jpg", + "https://www.compass.com/m/0/dd8a50ea-a6c7-4b2d-97d1-96566d9e3952/1500x1000.jpg", + "https://www.compass.com/m/0/78d4225f-f948-4ec6-bbb9-cdc8dd4f46a0/1334x1000.jpg", + "https://www.compass.com/m/0/6e648b51-5fb8-4f5f-a434-c324fbe7d871/1334x1000.jpg", + "https://www.compass.com/m/0/ce018afa-ccd0-40a3-8dd4-f5e81bf51042/1494x1000.jpg", + "https://www.compass.com/m/0/5320ed90-5871-4d34-96e0-90cfcbd37c52/1500x1000.jpg", + "https://www.compass.com/m/0/88c90528-a23a-4358-b8bf-a52fa07c0918/1499x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/Rockwell-Island-Miami-FL-33133/2099485044697872137_lid/" + }, + { + "listing_id": "2103148132718454937", + "slug": "6228-nw-4th-ave-miami-fl-33150", + "title": "$640,000", + "price": 640000, + "is_rent": false, + "street": "6228 Northwest 4th Avenue", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33150", + "beds": 5, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1639, + "latitude": 25.832904, + "longitude": -80.203701, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/034e1cae-ae18-4946-899e-64b45dbf9573", + "gallery_uuids": [ + "uuid/034e1cae-ae18-4946-899e-64b45dbf9573", + "uuid/b8beefe3-515f-4964-a4b8-97dbdb4ff17e", + "uuid/16691aea-6114-42eb-bc6a-1f7145274443", + "uuid/5f8da6b4-0d33-40dd-9138-319a508f881d", + "uuid/8650b59a-6dfd-40cc-b78c-4a96763ebd26", + "uuid/54cb020f-e2b1-4932-b457-6ae695c76ccb", + "uuid/0444be76-9668-41b1-9159-b7e7dbbdd5bb", + "uuid/9d32659a-e78f-4006-8c59-2832c625a9d4" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/034e1cae-ae18-4946-899e-64b45dbf9573/640x480.jpg", + "https://www.compass.com/m/0/b8beefe3-515f-4964-a4b8-97dbdb4ff17e/1333x1000.jpg", + "https://www.compass.com/m/0/16691aea-6114-42eb-bc6a-1f7145274443/750x1000.jpg", + "https://www.compass.com/m/0/5f8da6b4-0d33-40dd-9138-319a508f881d/1334x1000.jpg", + "https://www.compass.com/m/0/8650b59a-6dfd-40cc-b78c-4a96763ebd26/736x1000.jpg", + "https://www.compass.com/m/0/54cb020f-e2b1-4932-b457-6ae695c76ccb/1333x1000.jpg", + "https://www.compass.com/m/0/0444be76-9668-41b1-9159-b7e7dbbdd5bb/737x1000.jpg", + "https://www.compass.com/m/0/9d32659a-e78f-4006-8c59-2832c625a9d4/750x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/6228-NW-4th-Ave-Miami-FL-33150/1C880T_pid/" + }, + { + "listing_id": "2069801875370937905", + "slug": "8430-sw-98th-st-miami-fl-33156", + "title": "$4,300,000", + "price": 4300000, + "is_rent": false, + "street": "8430 Southwest 98th Street", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33156", + "beds": 5, + "baths": 5.0, + "baths_full": 5, + "baths_half": null, + "sqft": 5289, + "latitude": 25.678576, + "longitude": -80.331991, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/c41e5d93-245a-458f-b10d-843beb5a064a", + "gallery_uuids": [ + "uuid/c41e5d93-245a-458f-b10d-843beb5a064a" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/c41e5d93-245a-458f-b10d-843beb5a064a/1499x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/8430-SW-98th-St-Miami-FL-33156/1D7YEM_pid/" + }, + { + "listing_id": "2098140028712522937", + "slug": "227-ne-2nd-st-unit-1909-miami-fl-33132", + "title": "$400,000", + "price": 400000, + "is_rent": false, + "street": "227 Northeast 2nd Street, Unit 1909", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33132", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 549, + "latitude": 25.7765046, + "longitude": -80.189686, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/b6c23bf7-9579-4278-b9c2-69122abd49d8", + "gallery_uuids": [ + "uuid/b6c23bf7-9579-4278-b9c2-69122abd49d8", + "uuid/896101dc-f2f7-4106-afe1-e93c03f8a0e9", + "uuid/68a862c0-dfa6-43c2-b601-cf4b0366fa3d", + "uuid/a009c3a1-fc7d-4965-a1d8-c76054731746", + "uuid/183427ba-8415-4cae-a595-9331cae35654", + "uuid/5ab0683c-1506-4435-bf18-73e52228547d", + "uuid/1a3b94e3-fbda-40ef-bdc0-bf9e98597a00", + "uuid/1747621d-8b9b-4731-943c-6c71a369440a" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/b6c23bf7-9579-4278-b9c2-69122abd49d8/1500x1000.jpg", + "https://www.compass.com/m/0/896101dc-f2f7-4106-afe1-e93c03f8a0e9/1500x1000.jpg", + "https://www.compass.com/m/0/68a862c0-dfa6-43c2-b601-cf4b0366fa3d/1500x1000.jpg", + "https://www.compass.com/m/0/a009c3a1-fc7d-4965-a1d8-c76054731746/1500x1000.jpg", + "https://www.compass.com/m/0/183427ba-8415-4cae-a595-9331cae35654/1500x1000.jpg", + "https://www.compass.com/m/0/5ab0683c-1506-4435-bf18-73e52228547d/1500x1000.jpg", + "https://www.compass.com/m/0/1a3b94e3-fbda-40ef-bdc0-bf9e98597a00/1500x1000.jpg", + "https://www.compass.com/m/0/1747621d-8b9b-4731-943c-6c71a369440a/1500x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/227-NE-2nd-St-Unit-1909-Miami-FL-33132/1CJXII_pid/" + }, + { + "listing_id": "2103180070066443385", + "slug": "9955-sw-215th-st-miami-fl-33189", + "title": "$515,000", + "price": 515000, + "is_rent": false, + "street": "9955 Southwest 215th Street", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33189", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1011, + "latitude": 25.5676366, + "longitude": -80.3533147, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/7327ea3c-0063-4fa0-911a-5e9debf709fa", + "gallery_uuids": [ + "uuid/7327ea3c-0063-4fa0-911a-5e9debf709fa", + "uuid/565d0692-75a2-4903-9958-4d25304f56eb", + "uuid/1e8ce5c8-6d2d-4c78-9a2f-fac9b8413995", + "uuid/5671d06a-b367-40d6-9ab6-d90182c77e92", + "uuid/2309ba33-7da5-4248-aeda-fb4ace3eb4fd", + "uuid/66f483b8-b3b5-456a-84cf-088dbda841df", + "uuid/21e2812e-f783-4f25-9df9-f666974fe76c", + "uuid/7d01b527-0545-4502-b9b2-e362cd4d4e8a" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/7327ea3c-0063-4fa0-911a-5e9debf709fa/1499x1000.jpg", + "https://www.compass.com/m/0/565d0692-75a2-4903-9958-4d25304f56eb/1498x1000.jpg", + "https://www.compass.com/m/0/1e8ce5c8-6d2d-4c78-9a2f-fac9b8413995/1498x1000.jpg", + "https://www.compass.com/m/0/5671d06a-b367-40d6-9ab6-d90182c77e92/1498x1000.jpg", + "https://www.compass.com/m/0/2309ba33-7da5-4248-aeda-fb4ace3eb4fd/1498x1000.jpg", + "https://www.compass.com/m/0/66f483b8-b3b5-456a-84cf-088dbda841df/1498x1000.jpg", + "https://www.compass.com/m/0/21e2812e-f783-4f25-9df9-f666974fe76c/1498x1000.jpg", + "https://www.compass.com/m/0/7d01b527-0545-4502-b9b2-e362cd4d4e8a/1499x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/9955-SW-215th-St-Miami-FL-33189/1DBOLO_pid/" + }, + { + "listing_id": "2095984449957747233", + "slug": "3341-3433-sw-16th-ter-miami-fl-33145", + "title": "$1,798,000", + "price": 1798000, + "is_rent": false, + "street": "3341-3433 Southwest 16th Terrace", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33145", + "beds": 6, + "baths": 6.0, + "baths_full": 4, + "baths_half": null, + "sqft": 3704, + "latitude": 25.757051, + "longitude": -80.249911, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "New Construction" + ], + "hero_uuid": "uuid/380775be-dcef-48b7-9549-29c396689438", + "gallery_uuids": [ + "uuid/380775be-dcef-48b7-9549-29c396689438", + "uuid/ac321fe3-437b-4ac7-b331-4e34fe224b85", + "uuid/94dd868d-1988-4f07-a0fb-c11b1b2dc8b9", + "uuid/c95ec868-0866-45c8-9132-0c5293e8d103", + "uuid/0bb9309c-dc0c-454a-acc9-4888f441930a", + "uuid/a56ef858-8f9a-4ca7-be87-b0058dfbe17f", + "uuid/7ba24c91-399f-4362-bffb-513d08b061d8", + "uuid/94f370fd-6cf2-42b5-b714-71aa39c673cc" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/380775be-dcef-48b7-9549-29c396689438/1500x999.jpg", + "https://www.compass.com/m/0/ac321fe3-437b-4ac7-b331-4e34fe224b85/1500x999.jpg", + "https://www.compass.com/m/0/94dd868d-1988-4f07-a0fb-c11b1b2dc8b9/1500x999.jpg", + "https://www.compass.com/m/0/c95ec868-0866-45c8-9132-0c5293e8d103/1499x1000.jpg", + "https://www.compass.com/m/0/0bb9309c-dc0c-454a-acc9-4888f441930a/1500x999.jpg", + "https://www.compass.com/m/0/a56ef858-8f9a-4ca7-be87-b0058dfbe17f/1500x1000.jpg", + "https://www.compass.com/m/0/7ba24c91-399f-4362-bffb-513d08b061d8/1500x996.jpg", + "https://www.compass.com/m/0/94f370fd-6cf2-42b5-b714-71aa39c673cc/1499x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/3341-3433-SW-16th-Ter-Miami-FL-33145/2784G1_pid/" + }, + { + "listing_id": "2072627176681418745", + "slug": "229-ridgewood-rd-miami-fl-33133", + "title": "$8,888,000", + "price": 8888000, + "is_rent": false, + "street": "229 Ridgewood Road", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33133", + "beds": 6, + "baths": 7.0, + "baths_full": 6, + "baths_half": null, + "sqft": 5437, + "latitude": 25.7088548, + "longitude": -80.2589429, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/23d4c06d-0593-4ff8-8c4e-131bc1521a2d", + "gallery_uuids": [ + "uuid/23d4c06d-0593-4ff8-8c4e-131bc1521a2d", + "uuid/200f7faa-c7cd-4c93-b317-ee59eb916869", + "uuid/027145c5-9fbc-46b8-9a81-4d526417b17d", + "uuid/598e587c-eab0-45e6-90b2-4c4dc460a8a5", + "uuid/e080fd57-0029-4e96-bfa6-2676fff160a7", + "uuid/6eae985f-81f6-4f78-9238-b2baad76b20b", + "uuid/4a8ea821-a60a-414e-a85c-cb29d9073ebd", + "uuid/1d7c92bd-7c4b-4494-b6c8-717ed3dbe89c" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/23d4c06d-0593-4ff8-8c4e-131bc1521a2d/1334x1000.jpg", + "https://www.compass.com/m/0/200f7faa-c7cd-4c93-b317-ee59eb916869/1333x1000.jpg", + "https://www.compass.com/m/0/027145c5-9fbc-46b8-9a81-4d526417b17d/1389x1000.jpg", + "https://www.compass.com/m/0/598e587c-eab0-45e6-90b2-4c4dc460a8a5/1356x1000.jpg", + "https://www.compass.com/m/0/e080fd57-0029-4e96-bfa6-2676fff160a7/1333x1000.jpg", + "https://www.compass.com/m/0/6eae985f-81f6-4f78-9238-b2baad76b20b/1333x1000.jpg", + "https://www.compass.com/m/0/4a8ea821-a60a-414e-a85c-cb29d9073ebd/1333x1000.jpg", + "https://www.compass.com/m/0/1d7c92bd-7c4b-4494-b6c8-717ed3dbe89c/1500x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/229-Ridgewood-Rd-Miami-FL-33133/1D1Q5T_pid/" + }, + { + "listing_id": "2093826804842752145", + "slug": "6760-sw-62nd-ter-miami-fl-33143", + "title": "$1,650,000", + "price": 1650000, + "is_rent": false, + "street": "6760 Southwest 62nd Terrace", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33143", + "beds": 5, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2764, + "latitude": 25.712168, + "longitude": -80.303365, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/70821ee4-892d-450a-9748-18816d35b74d", + "gallery_uuids": [ + "uuid/70821ee4-892d-450a-9748-18816d35b74d" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/70821ee4-892d-450a-9748-18816d35b74d/1333x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/6760-SW-62nd-Ter-Miami-FL-33143/1D0URF_pid/" + }, + { + "listing_id": "2097930857405393601", + "slug": "485-brickell-ave-unit-1909-miami-fl-33131", + "title": "$875,000", + "price": 875000, + "is_rent": false, + "street": "485 Brickell Avenue, Unit 1909", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33131", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 953, + "latitude": 25.7686625, + "longitude": -80.188727, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/a1a004c9-4591-4e93-a37a-ac599f9344fa", + "gallery_uuids": [ + "uuid/a1a004c9-4591-4e93-a37a-ac599f9344fa", + "uuid/0ba2091a-ec24-4731-9037-dabfe3981ae5", + "uuid/15d5ee39-7963-46f3-80dc-6570c9f75c05", + "uuid/ca99aafb-5abe-4da1-8c15-57f2018587d1", + "uuid/a518e119-2558-4fdf-ba9d-576aa5b51627", + "uuid/f2f56c15-a5f3-430b-8ea9-9b500b6145c9", + "uuid/4ba1a087-f8e9-4bc8-ac77-62d14c91ba8a", + "uuid/ad2f3fc2-e780-4729-864e-01f8a87938f4" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/a1a004c9-4591-4e93-a37a-ac599f9344fa/1500x1000.jpg", + "https://www.compass.com/m/0/0ba2091a-ec24-4731-9037-dabfe3981ae5/1499x1000.jpg", + "https://www.compass.com/m/0/15d5ee39-7963-46f3-80dc-6570c9f75c05/1500x1000.jpg", + "https://www.compass.com/m/0/ca99aafb-5abe-4da1-8c15-57f2018587d1/1499x1000.jpg", + "https://www.compass.com/m/0/a518e119-2558-4fdf-ba9d-576aa5b51627/1499x1000.jpg", + "https://www.compass.com/m/0/f2f56c15-a5f3-430b-8ea9-9b500b6145c9/1500x1000.jpg", + "https://www.compass.com/m/0/4ba1a087-f8e9-4bc8-ac77-62d14c91ba8a/1500x1000.jpg", + "https://www.compass.com/m/0/ad2f3fc2-e780-4729-864e-01f8a87938f4/1499x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/485-Brickell-Ave-Unit-1909-Miami-FL-33131/1CZS9I_pid/" + }, + { + "listing_id": "2097990989622977241", + "slug": "808-brickell-key-dr-unit-408-miami-fl-33131", + "title": "$2,100,000", + "price": 2100000, + "is_rent": false, + "street": "808 Brickell Key Drive, Unit 408", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33131", + "beds": 2, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2093, + "latitude": 25.7686993, + "longitude": -80.183191, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/ddd37dd6-febe-4c1f-8d3c-0542d935e450", + "gallery_uuids": [ + "uuid/ddd37dd6-febe-4c1f-8d3c-0542d935e450", + "uuid/e7fb6c38-b9a4-451d-80e5-701429b97796", + "uuid/0940718f-d6ca-4c48-855d-ff68b05e9ba6", + "uuid/f9f65a2d-33be-4459-804c-90ae5f6d8911", + "uuid/c80979d8-97b8-49d4-919d-ac9f1fc29f0f", + "uuid/8f2e7cfe-a17d-4a3f-ab6e-8ffd578fc58f", + "uuid/8ec5a8e2-8734-468f-bb4b-e1ae7801c6be", + "uuid/ef4b8b20-d74b-43d9-bd6a-fd38447f865f" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/ddd37dd6-febe-4c1f-8d3c-0542d935e450/1500x1000.jpg", + "https://www.compass.com/m/0/e7fb6c38-b9a4-451d-80e5-701429b97796/750x1000.jpg", + "https://www.compass.com/m/0/0940718f-d6ca-4c48-855d-ff68b05e9ba6/1500x1000.jpg", + "https://www.compass.com/m/0/f9f65a2d-33be-4459-804c-90ae5f6d8911/1500x1000.jpg", + "https://www.compass.com/m/0/c80979d8-97b8-49d4-919d-ac9f1fc29f0f/750x1000.jpg", + "https://www.compass.com/m/0/8f2e7cfe-a17d-4a3f-ab6e-8ffd578fc58f/750x1000.jpg", + "https://www.compass.com/m/0/8ec5a8e2-8734-468f-bb4b-e1ae7801c6be/1500x1000.jpg", + "https://www.compass.com/m/0/ef4b8b20-d74b-43d9-bd6a-fd38447f865f/750x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/808-Brickell-Key-Dr-Unit-408-Miami-FL-33131/1D1FFL_pid/" + }, + { + "listing_id": "2101027647331923921", + "slug": "480-ne-31st-st-unit-ph5402-miami-fl-33137", + "title": "$4,500,000", + "price": 4500000, + "is_rent": false, + "street": "480 Northeast 31st Street, Unit PH5402", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33137", + "beds": 3, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 2112, + "latitude": 25.8061373, + "longitude": -80.1871886, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/dc8cc59c-0027-49de-b685-93459f73295e", + "gallery_uuids": [ + "uuid/dc8cc59c-0027-49de-b685-93459f73295e", + "uuid/3f72e396-9e73-4ad1-a81e-d41a1a16b199", + "uuid/7d7180c4-c0f8-4807-a6e0-d29587c5232d", + "uuid/be69730e-9326-4c52-aecc-9ed8c23b7944", + "uuid/dcbf86cc-2311-484b-9049-7e16993f3c76", + "uuid/9306eddc-348f-42a6-92d4-c3fd4a3d073f", + "uuid/7dfaa4ae-908b-4355-880f-7f4b7c08ea37", + "uuid/009bbfbb-5dd3-49f6-8687-03945c5406b8" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/dc8cc59c-0027-49de-b685-93459f73295e/1337x1000.jpg", + "https://www.compass.com/m/0/3f72e396-9e73-4ad1-a81e-d41a1a16b199/1500x997.jpg", + "https://www.compass.com/m/0/7d7180c4-c0f8-4807-a6e0-d29587c5232d/1500x997.jpg", + "https://www.compass.com/m/0/be69730e-9326-4c52-aecc-9ed8c23b7944/1500x999.jpg", + "https://www.compass.com/m/0/dcbf86cc-2311-484b-9049-7e16993f3c76/1500x999.jpg", + "https://www.compass.com/m/0/9306eddc-348f-42a6-92d4-c3fd4a3d073f/1500x999.jpg", + "https://www.compass.com/m/0/7dfaa4ae-908b-4355-880f-7f4b7c08ea37/1500x999.jpg", + "https://www.compass.com/m/0/009bbfbb-5dd3-49f6-8687-03945c5406b8/1500x999.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/480-NE-31st-St-Unit-PH5402-Miami-FL-33137/1DSOXY_pid/" + }, + { + "listing_id": "2097930925335885545", + "slug": "485-brickell-ave-unit-1609-miami-fl-33131", + "title": "$875,000", + "price": 875000, + "is_rent": false, + "street": "485 Brickell Avenue, Unit 1609", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33131", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 953, + "latitude": 25.7686625, + "longitude": -80.188727, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/3f87b4f7-5d22-40f5-bd81-f1e56eb9da01", + "gallery_uuids": [ + "uuid/3f87b4f7-5d22-40f5-bd81-f1e56eb9da01", + "uuid/3265e61e-deb1-4833-96f5-4c485ad8f299", + "uuid/ac260b18-770e-4665-afb6-fb845ddfba8a", + "uuid/cbad6d85-130a-4031-8f27-1ecba39383fc", + "uuid/6d8d0f16-4d96-4de4-a1be-4df6e98eed6d", + "uuid/95e7a078-c837-4e69-b064-adca68313a1a", + "uuid/fb5132be-6f22-4dd5-942c-16afa246770c", + "uuid/5ced245a-ba2a-4931-9db8-8d882197b7e8" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/3f87b4f7-5d22-40f5-bd81-f1e56eb9da01/1500x1000.jpg", + "https://www.compass.com/m/0/3265e61e-deb1-4833-96f5-4c485ad8f299/1499x1000.jpg", + "https://www.compass.com/m/0/ac260b18-770e-4665-afb6-fb845ddfba8a/1499x1000.jpg", + "https://www.compass.com/m/0/cbad6d85-130a-4031-8f27-1ecba39383fc/1499x1000.jpg", + "https://www.compass.com/m/0/6d8d0f16-4d96-4de4-a1be-4df6e98eed6d/1499x1000.jpg", + "https://www.compass.com/m/0/95e7a078-c837-4e69-b064-adca68313a1a/1499x1000.jpg", + "https://www.compass.com/m/0/fb5132be-6f22-4dd5-942c-16afa246770c/1499x1000.jpg", + "https://www.compass.com/m/0/5ced245a-ba2a-4931-9db8-8d882197b7e8/1499x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/485-Brickell-Ave-Unit-1609-Miami-FL-33131/1CJJ5K_pid/" + }, + { + "listing_id": "2101097044452224137", + "slug": "1900-n-bayshore-dr-unit-4606-miami-fl-33132", + "title": "$539,999", + "price": 539999, + "is_rent": false, + "street": "1900 North Bayshore Drive, Unit 4606", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33132", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 951, + "latitude": 25.7950577, + "longitude": -80.187207, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/5bbaca87-413f-44c6-8e48-1368115cf695", + "gallery_uuids": [ + "uuid/5bbaca87-413f-44c6-8e48-1368115cf695", + "uuid/db00a1c5-2b32-42ec-aebb-bbd8c186705a", + "uuid/d4ef3f6d-6757-486b-84b6-64082f6dbb51", + "uuid/9c576ae3-89fa-4bd2-a223-bef434bbef27", + "uuid/413d62cc-a7f5-45cc-b47a-f9d878ef0664", + "uuid/584c76e4-0e71-4ca9-86cd-bc3632b6dd9a", + "uuid/06d578d1-d9dc-427f-bd62-39ae127bb06e", + "uuid/1958a11d-860d-4741-8e49-6868945b88ef" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/5bbaca87-413f-44c6-8e48-1368115cf695/1500x1000.jpg", + "https://www.compass.com/m/0/db00a1c5-2b32-42ec-aebb-bbd8c186705a/1500x995.jpg", + "https://www.compass.com/m/0/d4ef3f6d-6757-486b-84b6-64082f6dbb51/1499x1000.jpg", + "https://www.compass.com/m/0/9c576ae3-89fa-4bd2-a223-bef434bbef27/1500x1000.jpg", + "https://www.compass.com/m/0/413d62cc-a7f5-45cc-b47a-f9d878ef0664/1500x1000.jpg", + "https://www.compass.com/m/0/584c76e4-0e71-4ca9-86cd-bc3632b6dd9a/1500x998.jpg", + "https://www.compass.com/m/0/06d578d1-d9dc-427f-bd62-39ae127bb06e/1500x997.jpg", + "https://www.compass.com/m/0/1958a11d-860d-4741-8e49-6868945b88ef/1500x999.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/1900-N-Bayshore-Dr-Unit-4606-Miami-FL-33132/1CX9MC_pid/" + }, + { + "listing_id": "2063250049594615185", + "slug": "13052-sw-26th-st-miami-fl-33175", + "title": "$1,600,000", + "price": 1600000, + "is_rent": false, + "street": "13052 Southwest 26th Street", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33175", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 25.7433091, + "longitude": -80.40694599999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/034e1cae-ae18-4946-899e-64b45dbf9573", + "gallery_uuids": [ + "uuid/034e1cae-ae18-4946-899e-64b45dbf9573" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/034e1cae-ae18-4946-899e-64b45dbf9573/640x480.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/13052-SW-26th-St-Miami-FL-33175/26YKF7_pid/" + }, + { + "listing_id": "2093567991816288225", + "slug": "address-upon-request-miami-fl-33129", + "title": "$1,199,000", + "price": 1199000, + "is_rent": false, + "street": "Address Upon Request", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33129", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 1527, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/9951a2d0-059c-436b-83ed-9fe5e763d619", + "gallery_uuids": [ + "uuid/9951a2d0-059c-436b-83ed-9fe5e763d619", + "uuid/19eb4029-cc63-4a09-94e7-e3ba38b20528", + "uuid/d0d83a20-72fb-41e0-9dff-99c2a4819fa7", + "uuid/f2b4eefc-0ef4-47c5-b968-b5631408d4da", + "uuid/02d3be18-08ef-4f72-989e-469f4f020741", + "uuid/680df333-ba2e-49fd-a46b-884a7e071822", + "uuid/ca3989df-afbc-48ba-9649-4e7a49abb114", + "uuid/c683f026-80b1-41cf-a7e6-5a6668347b17" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/9951a2d0-059c-436b-83ed-9fe5e763d619/1500x1000.jpg", + "https://www.compass.com/m/0/19eb4029-cc63-4a09-94e7-e3ba38b20528/1500x1000.jpg", + "https://www.compass.com/m/0/d0d83a20-72fb-41e0-9dff-99c2a4819fa7/1500x1000.jpg", + "https://www.compass.com/m/0/f2b4eefc-0ef4-47c5-b968-b5631408d4da/1500x1000.jpg", + "https://www.compass.com/m/0/02d3be18-08ef-4f72-989e-469f4f020741/1500x1000.jpg", + "https://www.compass.com/m/0/680df333-ba2e-49fd-a46b-884a7e071822/1500x1000.jpg", + "https://www.compass.com/m/0/ca3989df-afbc-48ba-9649-4e7a49abb114/1500x1000.jpg", + "https://www.compass.com/m/0/c683f026-80b1-41cf-a7e6-5a6668347b17/1500x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/Address-Upon-Request-Miami-FL-33129/2093567991816288225_lid/" + }, + { + "listing_id": "2103199530785366897", + "slug": "1425-brickell-ave-unit-42f-miami-fl-33131", + "title": "$11,750,000", + "price": 11750000, + "is_rent": false, + "street": "1425 Brickell Avenue, Unit 42F", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33131", + "beds": 3, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 3913, + "latitude": 25.759088, + "longitude": -80.19181669999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/3f6ac50a-b8d5-4622-b497-5d3269269d85", + "gallery_uuids": [ + "uuid/3f6ac50a-b8d5-4622-b497-5d3269269d85", + "uuid/0cceedb6-4dea-4d4b-b554-756f01f60bd5", + "uuid/32a3cfa2-52f4-4ab8-9293-0fc1649d5e9e", + "uuid/d0a20104-bb5a-4715-85b3-bbaf39497e17", + "uuid/79666cf1-0c09-44f6-b4a2-1c462a8607a2", + "uuid/58ca0ad0-5cb9-4a67-80de-9ee5338e0944", + "uuid/95657047-e034-4511-afda-7023a486419a", + "uuid/b0020716-f037-46b5-99a8-ba25d33ee53d" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/3f6ac50a-b8d5-4622-b497-5d3269269d85/1500x1000.jpg", + "https://www.compass.com/m/0/0cceedb6-4dea-4d4b-b554-756f01f60bd5/1500x1000.jpg", + "https://www.compass.com/m/0/32a3cfa2-52f4-4ab8-9293-0fc1649d5e9e/1500x1000.jpg", + "https://www.compass.com/m/0/d0a20104-bb5a-4715-85b3-bbaf39497e17/1500x1000.jpg", + "https://www.compass.com/m/0/79666cf1-0c09-44f6-b4a2-1c462a8607a2/1500x1000.jpg", + "https://www.compass.com/m/0/58ca0ad0-5cb9-4a67-80de-9ee5338e0944/1500x1000.jpg", + "https://www.compass.com/m/0/95657047-e034-4511-afda-7023a486419a/1500x1000.jpg", + "https://www.compass.com/m/0/b0020716-f037-46b5-99a8-ba25d33ee53d/1500x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/1425-Brickell-Ave-Unit-42F-Miami-FL-33131/1D84HX_pid/" + }, + { + "listing_id": "2093861804010928377", + "slug": "3245-sw-59th-ave-miami-fl-33155", + "title": "$1,895,000", + "price": 1895000, + "is_rent": false, + "street": "3245 Southwest 59th Avenue", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33155", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 3269, + "latitude": 25.740181, + "longitude": -80.290612, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/034e1cae-ae18-4946-899e-64b45dbf9573", + "gallery_uuids": [ + "uuid/034e1cae-ae18-4946-899e-64b45dbf9573" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/034e1cae-ae18-4946-899e-64b45dbf9573/640x480.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/3245-SW-59th-Ave-Miami-FL-33155/1E0FPO_pid/" + }, + { + "listing_id": "2098144731936678801", + "slug": "200-biscayne-blvd-way-unit-4812-miami-fl-33131", + "title": "$975,000", + "price": 975000, + "is_rent": false, + "street": "200 Biscayne Blvd Way, Unit 4812", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33131", + "beds": 2, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1237, + "latitude": 25.770523, + "longitude": -80.18954099999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/3af62408-5fe0-465d-bf35-8b6f63c462e6", + "gallery_uuids": [ + "uuid/3af62408-5fe0-465d-bf35-8b6f63c462e6", + "uuid/a2696748-fc6a-4d7b-95c8-3d0fa968d8ee", + "uuid/1f702215-fced-4be5-bdd0-12280cfb57e3", + "uuid/105388be-3e21-4d9c-a027-ae1431c011fd", + "uuid/3b286fe7-68d9-43c8-bb92-5b6f799393e7", + "uuid/e05e926a-4f2c-4f3e-8a13-af1ee743b7e3", + "uuid/eea6b250-9906-4617-b092-e8cd39c61094", + "uuid/2fdd908c-141d-489d-bccc-874af947e906" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/3af62408-5fe0-465d-bf35-8b6f63c462e6/1500x1000.jpg", + "https://www.compass.com/m/0/a2696748-fc6a-4d7b-95c8-3d0fa968d8ee/1500x1000.jpg", + "https://www.compass.com/m/0/1f702215-fced-4be5-bdd0-12280cfb57e3/1500x1000.jpg", + "https://www.compass.com/m/0/105388be-3e21-4d9c-a027-ae1431c011fd/1500x1000.jpg", + "https://www.compass.com/m/0/3b286fe7-68d9-43c8-bb92-5b6f799393e7/1500x1000.jpg", + "https://www.compass.com/m/0/e05e926a-4f2c-4f3e-8a13-af1ee743b7e3/1500x1000.jpg", + "https://www.compass.com/m/0/eea6b250-9906-4617-b092-e8cd39c61094/1500x1000.jpg", + "https://www.compass.com/m/0/2fdd908c-141d-489d-bccc-874af947e906/1500x1000.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/200-Biscayne-Blvd-Way-Unit-4812-Miami-FL-33131/1C32AY_pid/" + }, + { + "listing_id": "2069828470462476721", + "slug": "300-biscayne-blvd-way-unit-2103-miami-fl-33131", + "title": "$4,690,000", + "price": 4690000, + "is_rent": false, + "street": "300 Biscayne Blvd Way, Unit 2103", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33131", + "beds": 3, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 3078, + "latitude": 25.7707769, + "longitude": -80.1875213, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/2241183e-7c80-4b42-adc5-d079f9eb81e2", + "gallery_uuids": [ + "uuid/2241183e-7c80-4b42-adc5-d079f9eb81e2", + "uuid/702fb62d-86d9-4b74-98b5-8da9c21899c4", + "uuid/83534e27-6e38-434a-8785-7e292f028368", + "uuid/e8125be4-64b7-4887-ba75-ac6e9802a33d", + "uuid/f4be369c-d595-45c8-b9b3-da19bbced213", + "uuid/a24ba646-5317-4df3-b6b5-330a3f7a8392", + "uuid/dfba0aed-7b91-4741-9df4-fc1b1ec60bf1", + "uuid/053bdaa8-18de-4071-bd27-23b861be016c" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/2241183e-7c80-4b42-adc5-d079f9eb81e2/1333x1000.jpg", + "https://www.compass.com/m/0/702fb62d-86d9-4b74-98b5-8da9c21899c4/1333x1000.jpg", + "https://www.compass.com/m/0/83534e27-6e38-434a-8785-7e292f028368/1333x1000.jpg", + "https://www.compass.com/m/0/e8125be4-64b7-4887-ba75-ac6e9802a33d/1333x1000.jpg", + "https://www.compass.com/m/0/f4be369c-d595-45c8-b9b3-da19bbced213/1333x1000.jpg", + "https://www.compass.com/m/0/a24ba646-5317-4df3-b6b5-330a3f7a8392/1500x999.jpg", + "https://www.compass.com/m/0/dfba0aed-7b91-4741-9df4-fc1b1ec60bf1/1500x999.jpg", + "https://www.compass.com/m/0/053bdaa8-18de-4071-bd27-23b861be016c/1500x999.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/300-Biscayne-Blvd-Way-Unit-2103-Miami-FL-33131/1EDKDU_pid/" + }, + { + "listing_id": "2092521007319369297", + "slug": "302134005-0535-miami-fl-33167", + "title": "$315,000", + "price": 315000, + "is_rent": false, + "street": "302134005-0535 ", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33167", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/6c8594f5-a5a1-429c-a21a-0cac594ed30a", + "gallery_uuids": [ + "uuid/6c8594f5-a5a1-429c-a21a-0cac594ed30a" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/6c8594f5-a5a1-429c-a21a-0cac594ed30a/507x640.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/302134005-0535-Miami-FL-33167/27CY43_pid/" + }, + { + "listing_id": "2099535879486057233", + "slug": "1201-ne-83rd-st-miami-fl-33138", + "title": "$9,800,000", + "price": 9800000, + "is_rent": false, + "street": "1201 Northeast 83rd Street", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33138", + "beds": 10, + "baths": 10.0, + "baths_full": 9, + "baths_half": null, + "sqft": 8573, + "latitude": 25.8522649, + "longitude": -80.1735716, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/6a992c3a5d13244328440329e4ed8f177be207f3_img_0_5454a", + "gallery_uuids": [ + "legacy/6a992c3a5d13244328440329e4ed8f177be207f3_img_0_5454a", + "legacy/6a992c3a5d13244328440329e4ed8f177be207f3_img_1_f77d3", + "legacy/6a992c3a5d13244328440329e4ed8f177be207f3_img_2_b9b6a", + "legacy/6a992c3a5d13244328440329e4ed8f177be207f3_img_3_c4d34", + "legacy/6a992c3a5d13244328440329e4ed8f177be207f3_img_4_ca579", + "legacy/6a992c3a5d13244328440329e4ed8f177be207f3_img_5_592f9", + "legacy/6a992c3a5d13244328440329e4ed8f177be207f3_img_6_85d4d", + "legacy/6a992c3a5d13244328440329e4ed8f177be207f3_img_7_3c97c" + ], + "gallery_urls": [ + "https://www.compass.com/m/6a992c3a5d13244328440329e4ed8f177be207f3_img_0_5454a/640x480.jpg", + "https://www.compass.com/m/6a992c3a5d13244328440329e4ed8f177be207f3_img_1_f77d3/640x480.jpg", + "https://www.compass.com/m/6a992c3a5d13244328440329e4ed8f177be207f3_img_2_b9b6a/640x480.jpg", + "https://www.compass.com/m/6a992c3a5d13244328440329e4ed8f177be207f3_img_3_c4d34/640x480.jpg", + "https://www.compass.com/m/6a992c3a5d13244328440329e4ed8f177be207f3_img_4_ca579/640x480.jpg", + "https://www.compass.com/m/6a992c3a5d13244328440329e4ed8f177be207f3_img_5_592f9/640x480.jpg", + "https://www.compass.com/m/6a992c3a5d13244328440329e4ed8f177be207f3_img_6_85d4d/640x480.jpg", + "https://www.compass.com/m/6a992c3a5d13244328440329e4ed8f177be207f3_img_7_3c97c/640x480.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/1201-NE-83rd-St-Miami-FL-33138/1DCMPT_pid/" + }, + { + "listing_id": "2078645864685447305", + "slug": "2385-nw-32nd-st-miami-fl-33142", + "title": "$649,999", + "price": 649999, + "is_rent": false, + "street": "2385 Northwest 32nd Street", + "neighborhood": "", + "city": "Miami", + "state": "FL", + "zip": "33142", + "beds": 4, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2180, + "latitude": 25.8058432, + "longitude": -80.2355949, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/63dc1e6a7891116d7b1e96580f0bbcbff71203c6_img_0_37a01", + "gallery_uuids": [ + "legacy/63dc1e6a7891116d7b1e96580f0bbcbff71203c6_img_0_37a01", + "legacy/63dc1e6a7891116d7b1e96580f0bbcbff71203c6_img_1_9265a", + "legacy/63dc1e6a7891116d7b1e96580f0bbcbff71203c6_img_2_05853", + "legacy/63dc1e6a7891116d7b1e96580f0bbcbff71203c6_img_3_7443f", + "legacy/63dc1e6a7891116d7b1e96580f0bbcbff71203c6_img_4_21ab9", + "legacy/63dc1e6a7891116d7b1e96580f0bbcbff71203c6_img_5_ca8c8", + "legacy/63dc1e6a7891116d7b1e96580f0bbcbff71203c6_img_6_ab5f1", + "legacy/63dc1e6a7891116d7b1e96580f0bbcbff71203c6_img_7_013ed" + ], + "gallery_urls": [ + "https://www.compass.com/m/63dc1e6a7891116d7b1e96580f0bbcbff71203c6_img_0_37a01/640x480.jpg", + "https://www.compass.com/m/63dc1e6a7891116d7b1e96580f0bbcbff71203c6_img_1_9265a/640x480.jpg", + "https://www.compass.com/m/63dc1e6a7891116d7b1e96580f0bbcbff71203c6_img_2_05853/640x480.jpg", + "https://www.compass.com/m/63dc1e6a7891116d7b1e96580f0bbcbff71203c6_img_3_7443f/640x480.jpg", + "https://www.compass.com/m/63dc1e6a7891116d7b1e96580f0bbcbff71203c6_img_4_21ab9/640x480.jpg", + "https://www.compass.com/m/63dc1e6a7891116d7b1e96580f0bbcbff71203c6_img_5_ca8c8/640x480.jpg", + "https://www.compass.com/m/63dc1e6a7891116d7b1e96580f0bbcbff71203c6_img_6_ab5f1/640x480.jpg", + "https://www.compass.com/m/63dc1e6a7891116d7b1e96580f0bbcbff71203c6_img_7_013ed/640x480.jpg" + ], + "source_city": "miami", + "detail_url": "https://www.compass.com/homedetails/2385-NW-32nd-St-Miami-FL-33142/1CEECU_pid/" + }, + { + "listing_id": "2081473239644057905", + "slug": "1423-quesada-ave-san-francisco-ca-94124", + "title": "$999,000", + "price": 999000, + "is_rent": false, + "street": "1423 Quesada Avenue", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94124", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1975, + "latitude": 37.7303316, + "longitude": -122.3864616, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/9bea03a0113857e4475c3263cce3586f83be1267_img_0_ec46d", + "gallery_uuids": [ + "legacy/9bea03a0113857e4475c3263cce3586f83be1267_img_0_ec46d", + "legacy/9bea03a0113857e4475c3263cce3586f83be1267_img_1_f62e1", + "legacy/9bea03a0113857e4475c3263cce3586f83be1267_img_2_ef418" + ], + "gallery_urls": [ + "https://www.compass.com/m/9bea03a0113857e4475c3263cce3586f83be1267_img_0_ec46d/640x480.jpg", + "https://www.compass.com/m/9bea03a0113857e4475c3263cce3586f83be1267_img_1_f62e1/640x480.jpg", + "https://www.compass.com/m/9bea03a0113857e4475c3263cce3586f83be1267_img_2_ef418/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/1423-Quesada-Ave-San-Francisco-CA-94124/1PPSTX_pid/" + }, + { + "listing_id": "2099481009802507913", + "slug": "washington-st-san-francisco-ca-94118", + "title": "$3,950,000", + "price": 3950000, + "is_rent": false, + "street": "Washington Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94118", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2761, + "latitude": 37.789158, + "longitude": -122.451364, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/e74fe9b3ddbcce6450fc4b2e73db61cc71f9f78f_img_0_325f7", + "gallery_uuids": [ + "legacy/e74fe9b3ddbcce6450fc4b2e73db61cc71f9f78f_img_0_325f7", + "legacy/e74fe9b3ddbcce6450fc4b2e73db61cc71f9f78f_img_1_2a385", + "legacy/e74fe9b3ddbcce6450fc4b2e73db61cc71f9f78f_img_2_df90c", + "legacy/e74fe9b3ddbcce6450fc4b2e73db61cc71f9f78f_img_3_660c3", + "legacy/e74fe9b3ddbcce6450fc4b2e73db61cc71f9f78f_img_4_63152", + "legacy/e74fe9b3ddbcce6450fc4b2e73db61cc71f9f78f_img_5_b5546", + "legacy/e74fe9b3ddbcce6450fc4b2e73db61cc71f9f78f_img_6_139b2", + "legacy/e74fe9b3ddbcce6450fc4b2e73db61cc71f9f78f_img_7_9a86a" + ], + "gallery_urls": [ + "https://www.compass.com/m/e74fe9b3ddbcce6450fc4b2e73db61cc71f9f78f_img_0_325f7/640x480.jpg", + "https://www.compass.com/m/e74fe9b3ddbcce6450fc4b2e73db61cc71f9f78f_img_1_2a385/640x480.jpg", + "https://www.compass.com/m/e74fe9b3ddbcce6450fc4b2e73db61cc71f9f78f_img_2_df90c/640x480.jpg", + "https://www.compass.com/m/e74fe9b3ddbcce6450fc4b2e73db61cc71f9f78f_img_3_660c3/640x480.jpg", + "https://www.compass.com/m/e74fe9b3ddbcce6450fc4b2e73db61cc71f9f78f_img_4_63152/640x480.jpg", + "https://www.compass.com/m/e74fe9b3ddbcce6450fc4b2e73db61cc71f9f78f_img_5_b5546/640x480.jpg", + "https://www.compass.com/m/e74fe9b3ddbcce6450fc4b2e73db61cc71f9f78f_img_6_139b2/640x480.jpg", + "https://www.compass.com/m/e74fe9b3ddbcce6450fc4b2e73db61cc71f9f78f_img_7_9a86a/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/Washington-St-San-Francisco-CA-94118/2099481009802507913_lid/" + }, + { + "listing_id": "2083819820825444401", + "slug": "1942-buchanan-st-san-francisco-ca-94115", + "title": "$2,195,000", + "price": 2195000, + "is_rent": false, + "street": "1942 Buchanan Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94115", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1480, + "latitude": 37.788038, + "longitude": -122.430024, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/e65ae2613d050f1ade8fbb313294aadbcd9b27af_img_0_af254", + "gallery_uuids": [ + "legacy/e65ae2613d050f1ade8fbb313294aadbcd9b27af_img_0_af254", + "legacy/e65ae2613d050f1ade8fbb313294aadbcd9b27af_img_1_40890", + "legacy/e65ae2613d050f1ade8fbb313294aadbcd9b27af_img_2_7a8b4", + "legacy/e65ae2613d050f1ade8fbb313294aadbcd9b27af_img_3_d4c81", + "legacy/e65ae2613d050f1ade8fbb313294aadbcd9b27af_img_4_9bc90", + "legacy/e65ae2613d050f1ade8fbb313294aadbcd9b27af_img_5_a2baa", + "legacy/e65ae2613d050f1ade8fbb313294aadbcd9b27af_img_6_84653", + "legacy/e65ae2613d050f1ade8fbb313294aadbcd9b27af_img_7_64c96" + ], + "gallery_urls": [ + "https://www.compass.com/m/e65ae2613d050f1ade8fbb313294aadbcd9b27af_img_0_af254/640x480.jpg", + "https://www.compass.com/m/e65ae2613d050f1ade8fbb313294aadbcd9b27af_img_1_40890/640x480.jpg", + "https://www.compass.com/m/e65ae2613d050f1ade8fbb313294aadbcd9b27af_img_2_7a8b4/640x480.jpg", + "https://www.compass.com/m/e65ae2613d050f1ade8fbb313294aadbcd9b27af_img_3_d4c81/640x480.jpg", + "https://www.compass.com/m/e65ae2613d050f1ade8fbb313294aadbcd9b27af_img_4_9bc90/640x480.jpg", + "https://www.compass.com/m/e65ae2613d050f1ade8fbb313294aadbcd9b27af_img_5_a2baa/640x480.jpg", + "https://www.compass.com/m/e65ae2613d050f1ade8fbb313294aadbcd9b27af_img_6_84653/640x480.jpg", + "https://www.compass.com/m/e65ae2613d050f1ade8fbb313294aadbcd9b27af_img_7_64c96/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/1942-Buchanan-St-San-Francisco-CA-94115/1P856O_pid/" + }, + { + "listing_id": "2011904179804361681", + "slug": "566-6th-ave-san-francisco-ca-94118", + "title": "$2,495,000", + "price": 2495000, + "is_rent": false, + "street": "566 6th Avenue", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94118", + "beds": 4, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2498, + "latitude": 37.7778927, + "longitude": -122.4639313, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/d47b84352e53368ec622bec5362a8935406b1d6d_img_0_40357", + "gallery_uuids": [ + "legacy/d47b84352e53368ec622bec5362a8935406b1d6d_img_0_40357", + "legacy/d47b84352e53368ec622bec5362a8935406b1d6d_img_1_0da1f", + "legacy/d47b84352e53368ec622bec5362a8935406b1d6d_img_2_1df10", + "legacy/d47b84352e53368ec622bec5362a8935406b1d6d_img_3_43140", + "legacy/d47b84352e53368ec622bec5362a8935406b1d6d_img_4_33a29", + "legacy/d47b84352e53368ec622bec5362a8935406b1d6d_img_5_04096", + "legacy/d47b84352e53368ec622bec5362a8935406b1d6d_img_6_4e3b0", + "legacy/d47b84352e53368ec622bec5362a8935406b1d6d_img_7_441d6" + ], + "gallery_urls": [ + "https://www.compass.com/m/d47b84352e53368ec622bec5362a8935406b1d6d_img_0_40357/640x480.jpg", + "https://www.compass.com/m/d47b84352e53368ec622bec5362a8935406b1d6d_img_1_0da1f/640x480.jpg", + "https://www.compass.com/m/d47b84352e53368ec622bec5362a8935406b1d6d_img_2_1df10/640x480.jpg", + "https://www.compass.com/m/d47b84352e53368ec622bec5362a8935406b1d6d_img_3_43140/640x480.jpg", + "https://www.compass.com/m/d47b84352e53368ec622bec5362a8935406b1d6d_img_4_33a29/640x480.jpg", + "https://www.compass.com/m/d47b84352e53368ec622bec5362a8935406b1d6d_img_5_04096/640x480.jpg", + "https://www.compass.com/m/d47b84352e53368ec622bec5362a8935406b1d6d_img_6_4e3b0/640x480.jpg", + "https://www.compass.com/m/d47b84352e53368ec622bec5362a8935406b1d6d_img_7_441d6/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/566-6th-Ave-San-Francisco-CA-94118/1PBCCF_pid/" + }, + { + "listing_id": "2100920214605333337", + "slug": "walnut-st-san-francisco-ca-94118", + "title": "$5,500,000", + "price": 5500000, + "is_rent": false, + "street": "Walnut Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94118", + "beds": 6, + "baths": 5.0, + "baths_full": 5, + "baths_half": null, + "sqft": 4300, + "latitude": 37.788203, + "longitude": -122.448426, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/ce419a77b4f46daa73c3718bcacf91497c21312b_img_0_cbe05", + "gallery_uuids": [ + "legacy/ce419a77b4f46daa73c3718bcacf91497c21312b_img_0_cbe05", + "legacy/ce419a77b4f46daa73c3718bcacf91497c21312b_img_1_48d71", + "legacy/ce419a77b4f46daa73c3718bcacf91497c21312b_img_2_70568", + "legacy/ce419a77b4f46daa73c3718bcacf91497c21312b_img_3_c4981", + "legacy/ce419a77b4f46daa73c3718bcacf91497c21312b_img_4_0f439", + "legacy/ce419a77b4f46daa73c3718bcacf91497c21312b_img_5_ad101", + "legacy/ce419a77b4f46daa73c3718bcacf91497c21312b_img_6_83a75", + "legacy/ce419a77b4f46daa73c3718bcacf91497c21312b_img_7_4c970" + ], + "gallery_urls": [ + "https://www.compass.com/m/ce419a77b4f46daa73c3718bcacf91497c21312b_img_0_cbe05/640x480.jpg", + "https://www.compass.com/m/ce419a77b4f46daa73c3718bcacf91497c21312b_img_1_48d71/640x480.jpg", + "https://www.compass.com/m/ce419a77b4f46daa73c3718bcacf91497c21312b_img_2_70568/640x480.jpg", + "https://www.compass.com/m/ce419a77b4f46daa73c3718bcacf91497c21312b_img_3_c4981/640x480.jpg", + "https://www.compass.com/m/ce419a77b4f46daa73c3718bcacf91497c21312b_img_4_0f439/640x480.jpg", + "https://www.compass.com/m/ce419a77b4f46daa73c3718bcacf91497c21312b_img_5_ad101/640x480.jpg", + "https://www.compass.com/m/ce419a77b4f46daa73c3718bcacf91497c21312b_img_6_83a75/640x480.jpg", + "https://www.compass.com/m/ce419a77b4f46daa73c3718bcacf91497c21312b_img_7_4c970/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/Walnut-St-San-Francisco-CA-94118/2100920214605333337_lid/" + }, + { + "listing_id": "2050412430891064289", + "slug": "jackson-st-san-francisco-ca-94118", + "title": "$16,250,000", + "price": 16250000, + "is_rent": false, + "street": "Jackson Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94118", + "beds": 7, + "baths": 7.0, + "baths_full": 5, + "baths_half": null, + "sqft": 6300, + "latitude": 37.7904839, + "longitude": -122.4519013, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/dc7a478642003bf236ed11ec55918595db4f2fa8_img_0_6bc8f", + "gallery_uuids": [ + "legacy/dc7a478642003bf236ed11ec55918595db4f2fa8_img_0_6bc8f", + "legacy/dc7a478642003bf236ed11ec55918595db4f2fa8_img_1_46137", + "legacy/dc7a478642003bf236ed11ec55918595db4f2fa8_img_2_ea943", + "legacy/dc7a478642003bf236ed11ec55918595db4f2fa8_img_3_5ad13", + "legacy/dc7a478642003bf236ed11ec55918595db4f2fa8_img_4_cc060", + "legacy/dc7a478642003bf236ed11ec55918595db4f2fa8_img_5_a71bd", + "legacy/dc7a478642003bf236ed11ec55918595db4f2fa8_img_6_0c62e", + "legacy/dc7a478642003bf236ed11ec55918595db4f2fa8_img_7_e5239" + ], + "gallery_urls": [ + "https://www.compass.com/m/dc7a478642003bf236ed11ec55918595db4f2fa8_img_0_6bc8f/640x480.jpg", + "https://www.compass.com/m/dc7a478642003bf236ed11ec55918595db4f2fa8_img_1_46137/640x480.jpg", + "https://www.compass.com/m/dc7a478642003bf236ed11ec55918595db4f2fa8_img_2_ea943/640x480.jpg", + "https://www.compass.com/m/dc7a478642003bf236ed11ec55918595db4f2fa8_img_3_5ad13/640x480.jpg", + "https://www.compass.com/m/dc7a478642003bf236ed11ec55918595db4f2fa8_img_4_cc060/640x480.jpg", + "https://www.compass.com/m/dc7a478642003bf236ed11ec55918595db4f2fa8_img_5_a71bd/640x480.jpg", + "https://www.compass.com/m/dc7a478642003bf236ed11ec55918595db4f2fa8_img_6_0c62e/640x480.jpg", + "https://www.compass.com/m/dc7a478642003bf236ed11ec55918595db4f2fa8_img_7_e5239/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/Jackson-St-San-Francisco-CA-94118/2050412430891064289_lid/" + }, + { + "listing_id": "2099661280199638449", + "slug": "2040-broadway-unit-102-san-francisco-ca-94115", + "title": "$1,650,000", + "price": 1650000, + "is_rent": false, + "street": "2040 Broadway, Unit 102", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94115", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1330, + "latitude": 37.7950974, + "longitude": -122.431284, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/dd2867e11349d61618b4087d57869363043e0a61_img_0_309c5", + "gallery_uuids": [ + "legacy/dd2867e11349d61618b4087d57869363043e0a61_img_0_309c5", + "legacy/dd2867e11349d61618b4087d57869363043e0a61_img_1_5046e", + "legacy/dd2867e11349d61618b4087d57869363043e0a61_img_2_48eab", + "legacy/dd2867e11349d61618b4087d57869363043e0a61_img_3_9e140", + "legacy/dd2867e11349d61618b4087d57869363043e0a61_img_4_e27e0", + "legacy/dd2867e11349d61618b4087d57869363043e0a61_img_5_e9ee9", + "legacy/dd2867e11349d61618b4087d57869363043e0a61_img_6_bfef2", + "legacy/dd2867e11349d61618b4087d57869363043e0a61_img_7_dbacd" + ], + "gallery_urls": [ + "https://www.compass.com/m/dd2867e11349d61618b4087d57869363043e0a61_img_0_309c5/640x480.jpg", + "https://www.compass.com/m/dd2867e11349d61618b4087d57869363043e0a61_img_1_5046e/640x480.jpg", + "https://www.compass.com/m/dd2867e11349d61618b4087d57869363043e0a61_img_2_48eab/640x480.jpg", + "https://www.compass.com/m/dd2867e11349d61618b4087d57869363043e0a61_img_3_9e140/640x480.jpg", + "https://www.compass.com/m/dd2867e11349d61618b4087d57869363043e0a61_img_4_e27e0/640x480.jpg", + "https://www.compass.com/m/dd2867e11349d61618b4087d57869363043e0a61_img_5_e9ee9/640x480.jpg", + "https://www.compass.com/m/dd2867e11349d61618b4087d57869363043e0a61_img_6_bfef2/640x480.jpg", + "https://www.compass.com/m/dd2867e11349d61618b4087d57869363043e0a61_img_7_dbacd/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/2040-Broadway-Unit-102-San-Francisco-CA-94115/1LNE7O_pid/" + }, + { + "listing_id": "2079308373491549353", + "slug": "1336-chestnut-st-san-francisco-ca-94123", + "title": "$4,195,000", + "price": 4195000, + "is_rent": false, + "street": "1336 Chestnut Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94123", + "beds": 3, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2930, + "latitude": 37.80236970000001, + "longitude": -122.4255342, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/ffb3d4cd915a04fa9170eb306464aa7dfee64ec2_img_0_69621", + "gallery_uuids": [ + "legacy/ffb3d4cd915a04fa9170eb306464aa7dfee64ec2_img_0_69621", + "legacy/ffb3d4cd915a04fa9170eb306464aa7dfee64ec2_img_1_af725", + "legacy/ffb3d4cd915a04fa9170eb306464aa7dfee64ec2_img_2_3a324", + "legacy/ffb3d4cd915a04fa9170eb306464aa7dfee64ec2_img_3_df9c9", + "legacy/ffb3d4cd915a04fa9170eb306464aa7dfee64ec2_img_4_b9b2c", + "legacy/ffb3d4cd915a04fa9170eb306464aa7dfee64ec2_img_5_051c6", + "legacy/ffb3d4cd915a04fa9170eb306464aa7dfee64ec2_img_6_4639e", + "legacy/ffb3d4cd915a04fa9170eb306464aa7dfee64ec2_img_7_157d3" + ], + "gallery_urls": [ + "https://www.compass.com/m/ffb3d4cd915a04fa9170eb306464aa7dfee64ec2_img_0_69621/640x480.jpg", + "https://www.compass.com/m/ffb3d4cd915a04fa9170eb306464aa7dfee64ec2_img_1_af725/640x480.jpg", + "https://www.compass.com/m/ffb3d4cd915a04fa9170eb306464aa7dfee64ec2_img_2_3a324/640x480.jpg", + "https://www.compass.com/m/ffb3d4cd915a04fa9170eb306464aa7dfee64ec2_img_3_df9c9/640x480.jpg", + "https://www.compass.com/m/ffb3d4cd915a04fa9170eb306464aa7dfee64ec2_img_4_b9b2c/640x480.jpg", + "https://www.compass.com/m/ffb3d4cd915a04fa9170eb306464aa7dfee64ec2_img_5_051c6/640x480.jpg", + "https://www.compass.com/m/ffb3d4cd915a04fa9170eb306464aa7dfee64ec2_img_6_4639e/640x480.jpg", + "https://www.compass.com/m/ffb3d4cd915a04fa9170eb306464aa7dfee64ec2_img_7_157d3/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/1336-Chestnut-St-San-Francisco-CA-94123/1HRDYZ_pid/" + }, + { + "listing_id": "2044075882472469257", + "slug": "420-mission-bay-blvd-n-unit-120-san-francisco-ca-94158", + "title": "$899,000", + "price": 899000, + "is_rent": false, + "street": "420 Mission Bay Boulevard North, Unit 120", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94158", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 928, + "latitude": 37.7715936, + "longitude": -122.3885893, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/52cef48af43c225c0a71f686ac4d9e5ce055746c_img_0_8ba4e", + "gallery_uuids": [ + "legacy/52cef48af43c225c0a71f686ac4d9e5ce055746c_img_0_8ba4e", + "legacy/52cef48af43c225c0a71f686ac4d9e5ce055746c_img_1_a6bf6", + "legacy/52cef48af43c225c0a71f686ac4d9e5ce055746c_img_2_a519b", + "legacy/52cef48af43c225c0a71f686ac4d9e5ce055746c_img_3_08b34", + "legacy/52cef48af43c225c0a71f686ac4d9e5ce055746c_img_4_05009", + "legacy/52cef48af43c225c0a71f686ac4d9e5ce055746c_img_5_84674", + "legacy/52cef48af43c225c0a71f686ac4d9e5ce055746c_img_6_c500e", + "legacy/52cef48af43c225c0a71f686ac4d9e5ce055746c_img_7_3c415" + ], + "gallery_urls": [ + "https://www.compass.com/m/52cef48af43c225c0a71f686ac4d9e5ce055746c_img_0_8ba4e/640x480.jpg", + "https://www.compass.com/m/52cef48af43c225c0a71f686ac4d9e5ce055746c_img_1_a6bf6/640x480.jpg", + "https://www.compass.com/m/52cef48af43c225c0a71f686ac4d9e5ce055746c_img_2_a519b/640x480.jpg", + "https://www.compass.com/m/52cef48af43c225c0a71f686ac4d9e5ce055746c_img_3_08b34/640x480.jpg", + "https://www.compass.com/m/52cef48af43c225c0a71f686ac4d9e5ce055746c_img_4_05009/640x480.jpg", + "https://www.compass.com/m/52cef48af43c225c0a71f686ac4d9e5ce055746c_img_5_84674/640x480.jpg", + "https://www.compass.com/m/52cef48af43c225c0a71f686ac4d9e5ce055746c_img_6_c500e/640x480.jpg", + "https://www.compass.com/m/52cef48af43c225c0a71f686ac4d9e5ce055746c_img_7_3c415/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/420-Mission-Bay-Blvd-N-Unit-120-San-Francisco-CA-94158/1OZVW1_pid/" + }, + { + "listing_id": "2085143147183541689", + "slug": "715-page-st-san-francisco-ca-94117", + "title": "$1,895,000", + "price": 1895000, + "is_rent": false, + "street": "715 Page Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94117", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1326, + "latitude": 37.772567, + "longitude": -122.432674, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/d7138a834b706af55a944a7f060f46ae8f39633b_img_0_36105", + "gallery_uuids": [ + "legacy/d7138a834b706af55a944a7f060f46ae8f39633b_img_0_36105", + "legacy/d7138a834b706af55a944a7f060f46ae8f39633b_img_1_7b12a", + "legacy/d7138a834b706af55a944a7f060f46ae8f39633b_img_2_ddfc1", + "legacy/d7138a834b706af55a944a7f060f46ae8f39633b_img_3_e0d4b", + "legacy/d7138a834b706af55a944a7f060f46ae8f39633b_img_4_127c8", + "legacy/d7138a834b706af55a944a7f060f46ae8f39633b_img_5_e830f" + ], + "gallery_urls": [ + "https://www.compass.com/m/d7138a834b706af55a944a7f060f46ae8f39633b_img_0_36105/640x480.jpg", + "https://www.compass.com/m/d7138a834b706af55a944a7f060f46ae8f39633b_img_1_7b12a/640x480.jpg", + "https://www.compass.com/m/d7138a834b706af55a944a7f060f46ae8f39633b_img_2_ddfc1/640x480.jpg", + "https://www.compass.com/m/d7138a834b706af55a944a7f060f46ae8f39633b_img_3_e0d4b/640x480.jpg", + "https://www.compass.com/m/d7138a834b706af55a944a7f060f46ae8f39633b_img_4_127c8/640x480.jpg", + "https://www.compass.com/m/d7138a834b706af55a944a7f060f46ae8f39633b_img_5_e830f/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/715-Page-St-San-Francisco-CA-94117/1RDS6S_pid/" + }, + { + "listing_id": "2057807162143768129", + "slug": "738-long-bridge-st-unit-205-san-francisco-ca-94158", + "title": "$1,820,000", + "price": 1820000, + "is_rent": false, + "street": "738 Long Bridge Street, Unit 205", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94158", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1437, + "latitude": 37.7720304, + "longitude": -122.3935768, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/53691da1d817df938c9005416a821dcd704d1afb_img_0_2d0eb", + "gallery_uuids": [ + "legacy/53691da1d817df938c9005416a821dcd704d1afb_img_0_2d0eb", + "legacy/53691da1d817df938c9005416a821dcd704d1afb_img_1_3727f", + "legacy/53691da1d817df938c9005416a821dcd704d1afb_img_2_eed7b", + "legacy/53691da1d817df938c9005416a821dcd704d1afb_img_3_9900d", + "legacy/53691da1d817df938c9005416a821dcd704d1afb_img_4_48282", + "legacy/53691da1d817df938c9005416a821dcd704d1afb_img_5_0aa94", + "legacy/53691da1d817df938c9005416a821dcd704d1afb_img_6_eae36", + "legacy/53691da1d817df938c9005416a821dcd704d1afb_img_7_0a815" + ], + "gallery_urls": [ + "https://www.compass.com/m/53691da1d817df938c9005416a821dcd704d1afb_img_0_2d0eb/640x480.jpg", + "https://www.compass.com/m/53691da1d817df938c9005416a821dcd704d1afb_img_1_3727f/640x480.jpg", + "https://www.compass.com/m/53691da1d817df938c9005416a821dcd704d1afb_img_2_eed7b/640x480.jpg", + "https://www.compass.com/m/53691da1d817df938c9005416a821dcd704d1afb_img_3_9900d/640x480.jpg", + "https://www.compass.com/m/53691da1d817df938c9005416a821dcd704d1afb_img_4_48282/640x480.jpg", + "https://www.compass.com/m/53691da1d817df938c9005416a821dcd704d1afb_img_5_0aa94/640x480.jpg", + "https://www.compass.com/m/53691da1d817df938c9005416a821dcd704d1afb_img_6_eae36/640x480.jpg", + "https://www.compass.com/m/53691da1d817df938c9005416a821dcd704d1afb_img_7_0a815/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/738-Long-Bridge-St-Unit-205-San-Francisco-CA-94158/1PTO2I_pid/" + }, + { + "listing_id": "2091535249419390513", + "slug": "2238-market-st-unit-407-san-francisco-ca-94114", + "title": "$1,450,000", + "price": 1450000, + "is_rent": false, + "street": "2238 Market Street, Unit 407", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94114", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1142, + "latitude": 37.76547800000001, + "longitude": -122.4320361, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Virtual Tour" + ], + "hero_uuid": "legacy/592258af5fda4f68d0446157277ef0b914d033e7_img_0_5e9f8", + "gallery_uuids": [ + "legacy/592258af5fda4f68d0446157277ef0b914d033e7_img_0_5e9f8", + "legacy/592258af5fda4f68d0446157277ef0b914d033e7_img_1_5ed4f", + "legacy/592258af5fda4f68d0446157277ef0b914d033e7_img_2_77f56", + "legacy/592258af5fda4f68d0446157277ef0b914d033e7_img_3_003e8", + "legacy/592258af5fda4f68d0446157277ef0b914d033e7_img_4_ca0e0", + "legacy/592258af5fda4f68d0446157277ef0b914d033e7_img_5_faaa4", + "legacy/592258af5fda4f68d0446157277ef0b914d033e7_img_6_24e00", + "legacy/592258af5fda4f68d0446157277ef0b914d033e7_img_7_688a3" + ], + "gallery_urls": [ + "https://www.compass.com/m/592258af5fda4f68d0446157277ef0b914d033e7_img_0_5e9f8/640x480.jpg", + "https://www.compass.com/m/592258af5fda4f68d0446157277ef0b914d033e7_img_1_5ed4f/640x480.jpg", + "https://www.compass.com/m/592258af5fda4f68d0446157277ef0b914d033e7_img_2_77f56/640x480.jpg", + "https://www.compass.com/m/592258af5fda4f68d0446157277ef0b914d033e7_img_3_003e8/640x480.jpg", + "https://www.compass.com/m/592258af5fda4f68d0446157277ef0b914d033e7_img_4_ca0e0/640x480.jpg", + "https://www.compass.com/m/592258af5fda4f68d0446157277ef0b914d033e7_img_5_faaa4/640x480.jpg", + "https://www.compass.com/m/592258af5fda4f68d0446157277ef0b914d033e7_img_6_24e00/640x480.jpg", + "https://www.compass.com/m/592258af5fda4f68d0446157277ef0b914d033e7_img_7_688a3/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/2238-Market-St-Unit-407-San-Francisco-CA-94114/1P6IRB_pid/" + }, + { + "listing_id": "2099624805744139113", + "slug": "54-richland-ave-san-francisco-ca-94110", + "title": "$1,498,000", + "price": 1498000, + "is_rent": false, + "street": "54 Richland Avenue", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94110", + "beds": 3, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1896, + "latitude": 37.735882, + "longitude": -122.425721, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Open: 5/16 02:00PM - 04:00PM" + ], + "hero_uuid": "legacy/d98c31688455c4c12340ead657c8cf03f812cb94_img_0_2706e", + "gallery_uuids": [ + "legacy/d98c31688455c4c12340ead657c8cf03f812cb94_img_0_2706e", + "legacy/d98c31688455c4c12340ead657c8cf03f812cb94_img_1_09575" + ], + "gallery_urls": [ + "https://www.compass.com/m/d98c31688455c4c12340ead657c8cf03f812cb94_img_0_2706e/640x480.jpg", + "https://www.compass.com/m/d98c31688455c4c12340ead657c8cf03f812cb94_img_1_09575/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/54-Richland-Ave-San-Francisco-CA-94110/1Q3L6U_pid/" + }, + { + "listing_id": "2053518968379535417", + "slug": "2145-franklin-st-unit-1-san-francisco-ca-94109", + "title": "$1,448,000", + "price": 1448000, + "is_rent": false, + "street": "2145 Franklin Street, Unit 1", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94109", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1700, + "latitude": 37.79435470000001, + "longitude": -122.4250422, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/079b6bcde4d9ff88428bde5b7ba8403e66814439_img_0_7d4cf", + "gallery_uuids": [ + "legacy/079b6bcde4d9ff88428bde5b7ba8403e66814439_img_0_7d4cf", + "legacy/079b6bcde4d9ff88428bde5b7ba8403e66814439_img_1_fd505", + "legacy/079b6bcde4d9ff88428bde5b7ba8403e66814439_img_2_279cc", + "legacy/079b6bcde4d9ff88428bde5b7ba8403e66814439_img_3_2b015", + "legacy/079b6bcde4d9ff88428bde5b7ba8403e66814439_img_4_f78f3", + "legacy/079b6bcde4d9ff88428bde5b7ba8403e66814439_img_5_5f02a", + "legacy/079b6bcde4d9ff88428bde5b7ba8403e66814439_img_6_29f2c", + "legacy/079b6bcde4d9ff88428bde5b7ba8403e66814439_img_7_6ab7a" + ], + "gallery_urls": [ + "https://www.compass.com/m/079b6bcde4d9ff88428bde5b7ba8403e66814439_img_0_7d4cf/640x480.jpg", + "https://www.compass.com/m/079b6bcde4d9ff88428bde5b7ba8403e66814439_img_1_fd505/640x480.jpg", + "https://www.compass.com/m/079b6bcde4d9ff88428bde5b7ba8403e66814439_img_2_279cc/640x480.jpg", + "https://www.compass.com/m/079b6bcde4d9ff88428bde5b7ba8403e66814439_img_3_2b015/640x480.jpg", + "https://www.compass.com/m/079b6bcde4d9ff88428bde5b7ba8403e66814439_img_4_f78f3/640x480.jpg", + "https://www.compass.com/m/079b6bcde4d9ff88428bde5b7ba8403e66814439_img_5_5f02a/640x480.jpg", + "https://www.compass.com/m/079b6bcde4d9ff88428bde5b7ba8403e66814439_img_6_29f2c/640x480.jpg", + "https://www.compass.com/m/079b6bcde4d9ff88428bde5b7ba8403e66814439_img_7_6ab7a/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/2145-Franklin-St-Unit-1-San-Francisco-CA-94109/18ZHPC_pid/" + }, + { + "listing_id": "2081381488396660801", + "slug": "415-buena-vista-ave-e-san-francisco-ca-94117", + "title": "$5,950,000", + "price": 5950000, + "is_rent": false, + "street": "415 Buena Vista Avenue East", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94117", + "beds": 5, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": null, + "latitude": 37.7663875, + "longitude": -122.4410176, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/da72012efffd6ef93b3e96afc412d50946dc5e0c_img_0_5898f", + "gallery_uuids": [ + "legacy/da72012efffd6ef93b3e96afc412d50946dc5e0c_img_0_5898f", + "legacy/da72012efffd6ef93b3e96afc412d50946dc5e0c_img_1_bad0d", + "legacy/da72012efffd6ef93b3e96afc412d50946dc5e0c_img_2_038de", + "legacy/da72012efffd6ef93b3e96afc412d50946dc5e0c_img_3_c65dc", + "legacy/da72012efffd6ef93b3e96afc412d50946dc5e0c_img_4_fbeea", + "legacy/da72012efffd6ef93b3e96afc412d50946dc5e0c_img_5_64c0a", + "legacy/da72012efffd6ef93b3e96afc412d50946dc5e0c_img_6_0fbc1", + "legacy/da72012efffd6ef93b3e96afc412d50946dc5e0c_img_7_a435f" + ], + "gallery_urls": [ + "https://www.compass.com/m/da72012efffd6ef93b3e96afc412d50946dc5e0c_img_0_5898f/640x480.jpg", + "https://www.compass.com/m/da72012efffd6ef93b3e96afc412d50946dc5e0c_img_1_bad0d/640x480.jpg", + "https://www.compass.com/m/da72012efffd6ef93b3e96afc412d50946dc5e0c_img_2_038de/640x480.jpg", + "https://www.compass.com/m/da72012efffd6ef93b3e96afc412d50946dc5e0c_img_3_c65dc/640x480.jpg", + "https://www.compass.com/m/da72012efffd6ef93b3e96afc412d50946dc5e0c_img_4_fbeea/640x480.jpg", + "https://www.compass.com/m/da72012efffd6ef93b3e96afc412d50946dc5e0c_img_5_64c0a/640x480.jpg", + "https://www.compass.com/m/da72012efffd6ef93b3e96afc412d50946dc5e0c_img_6_0fbc1/640x480.jpg", + "https://www.compass.com/m/da72012efffd6ef93b3e96afc412d50946dc5e0c_img_7_a435f/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/415-Buena-Vista-Ave-E-San-Francisco-CA-94117/1Q1AQO_pid/" + }, + { + "listing_id": "2069803915438681177", + "slug": "3620-19th-st-unit-29-san-francisco-ca-94110", + "title": "$1,725,000", + "price": 1725000, + "is_rent": false, + "street": "3620 19th Street, Unit 29", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94110", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 37.7601561, + "longitude": -122.4243176, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/44028a7cca8966b1452c80ce94bb2daa8d8fb444_img_0_9326f", + "gallery_uuids": [ + "legacy/44028a7cca8966b1452c80ce94bb2daa8d8fb444_img_0_9326f", + "legacy/44028a7cca8966b1452c80ce94bb2daa8d8fb444_img_1_4b841", + "legacy/44028a7cca8966b1452c80ce94bb2daa8d8fb444_img_2_d0bff", + "legacy/44028a7cca8966b1452c80ce94bb2daa8d8fb444_img_3_d7d56" + ], + "gallery_urls": [ + "https://www.compass.com/m/44028a7cca8966b1452c80ce94bb2daa8d8fb444_img_0_9326f/640x480.jpg", + "https://www.compass.com/m/44028a7cca8966b1452c80ce94bb2daa8d8fb444_img_1_4b841/640x480.jpg", + "https://www.compass.com/m/44028a7cca8966b1452c80ce94bb2daa8d8fb444_img_2_d0bff/640x480.jpg", + "https://www.compass.com/m/44028a7cca8966b1452c80ce94bb2daa8d8fb444_img_3_d7d56/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/3620-19th-St-Unit-29-San-Francisco-CA-94110/1QYYS9_pid/" + }, + { + "listing_id": "2100340800888205793", + "slug": "haight-st-san-francisco-ca-94102", + "title": "$3,995,000", + "price": 3995000, + "is_rent": false, + "street": "Haight Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94102", + "beds": 4, + "baths": 5.0, + "baths_full": 3, + "baths_half": null, + "sqft": 3325, + "latitude": 37.77302299999999, + "longitude": -122.425304, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Livestream: 5/12 11:00AM - 01:00PM" + ], + "hero_uuid": "legacy/8d8f2a16e47bf80bd322ee0756a3b13eb4553909_img_0_5b00c", + "gallery_uuids": [ + "legacy/8d8f2a16e47bf80bd322ee0756a3b13eb4553909_img_0_5b00c", + "legacy/8d8f2a16e47bf80bd322ee0756a3b13eb4553909_img_1_fc502", + "legacy/8d8f2a16e47bf80bd322ee0756a3b13eb4553909_img_2_f8d71", + "legacy/8d8f2a16e47bf80bd322ee0756a3b13eb4553909_img_3_6f946", + "legacy/8d8f2a16e47bf80bd322ee0756a3b13eb4553909_img_4_b848f", + "legacy/8d8f2a16e47bf80bd322ee0756a3b13eb4553909_img_5_80c5a", + "legacy/8d8f2a16e47bf80bd322ee0756a3b13eb4553909_img_6_03acd", + "legacy/8d8f2a16e47bf80bd322ee0756a3b13eb4553909_img_7_9dec1" + ], + "gallery_urls": [ + "https://www.compass.com/m/8d8f2a16e47bf80bd322ee0756a3b13eb4553909_img_0_5b00c/640x480.jpg", + "https://www.compass.com/m/8d8f2a16e47bf80bd322ee0756a3b13eb4553909_img_1_fc502/640x480.jpg", + "https://www.compass.com/m/8d8f2a16e47bf80bd322ee0756a3b13eb4553909_img_2_f8d71/640x480.jpg", + "https://www.compass.com/m/8d8f2a16e47bf80bd322ee0756a3b13eb4553909_img_3_6f946/640x480.jpg", + "https://www.compass.com/m/8d8f2a16e47bf80bd322ee0756a3b13eb4553909_img_4_b848f/640x480.jpg", + "https://www.compass.com/m/8d8f2a16e47bf80bd322ee0756a3b13eb4553909_img_5_80c5a/640x480.jpg", + "https://www.compass.com/m/8d8f2a16e47bf80bd322ee0756a3b13eb4553909_img_6_03acd/640x480.jpg", + "https://www.compass.com/m/8d8f2a16e47bf80bd322ee0756a3b13eb4553909_img_7_9dec1/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/Haight-St-San-Francisco-CA-94102/2100340800888205793_lid/" + }, + { + "listing_id": "2094524796503321457", + "slug": "2470-43rd-ave-san-francisco-ca-94116", + "title": "$1,750,000", + "price": 1750000, + "is_rent": false, + "street": "2470 43rd Avenue", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94116", + "beds": 4, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 1821, + "latitude": 37.7406232, + "longitude": -122.5010612, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Virtual Tour" + ], + "hero_uuid": "legacy/2ffaebe6278e898347d4aa8f8cc7f7573b872fa9_img_0_b8f3f", + "gallery_uuids": [ + "legacy/2ffaebe6278e898347d4aa8f8cc7f7573b872fa9_img_0_b8f3f", + "legacy/2ffaebe6278e898347d4aa8f8cc7f7573b872fa9_img_1_7a623", + "legacy/2ffaebe6278e898347d4aa8f8cc7f7573b872fa9_img_2_00c88", + "legacy/2ffaebe6278e898347d4aa8f8cc7f7573b872fa9_img_3_a5186", + "legacy/2ffaebe6278e898347d4aa8f8cc7f7573b872fa9_img_4_aa472", + "legacy/2ffaebe6278e898347d4aa8f8cc7f7573b872fa9_img_5_187f9", + "legacy/2ffaebe6278e898347d4aa8f8cc7f7573b872fa9_img_6_a5a5c", + "legacy/2ffaebe6278e898347d4aa8f8cc7f7573b872fa9_img_7_6975f" + ], + "gallery_urls": [ + "https://www.compass.com/m/2ffaebe6278e898347d4aa8f8cc7f7573b872fa9_img_0_b8f3f/640x480.jpg", + "https://www.compass.com/m/2ffaebe6278e898347d4aa8f8cc7f7573b872fa9_img_1_7a623/640x480.jpg", + "https://www.compass.com/m/2ffaebe6278e898347d4aa8f8cc7f7573b872fa9_img_2_00c88/640x480.jpg", + "https://www.compass.com/m/2ffaebe6278e898347d4aa8f8cc7f7573b872fa9_img_3_a5186/640x480.jpg", + "https://www.compass.com/m/2ffaebe6278e898347d4aa8f8cc7f7573b872fa9_img_4_aa472/640x480.jpg", + "https://www.compass.com/m/2ffaebe6278e898347d4aa8f8cc7f7573b872fa9_img_5_187f9/640x480.jpg", + "https://www.compass.com/m/2ffaebe6278e898347d4aa8f8cc7f7573b872fa9_img_6_a5a5c/640x480.jpg", + "https://www.compass.com/m/2ffaebe6278e898347d4aa8f8cc7f7573b872fa9_img_7_6975f/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/2470-43rd-Ave-San-Francisco-CA-94116/1Q39AU_pid/" + }, + { + "listing_id": "2098678005436583905", + "slug": "1330-greenwich-st-san-francisco-ca-94109", + "title": "$2,495,000", + "price": 2495000, + "is_rent": false, + "street": "1330 Greenwich Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94109", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1905, + "latitude": 37.8008935, + "longitude": -122.4217536, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/6099c07a887b28f75de07c8ac59c31c1738add02_img_0_c1daf", + "gallery_uuids": [ + "legacy/6099c07a887b28f75de07c8ac59c31c1738add02_img_0_c1daf", + "legacy/6099c07a887b28f75de07c8ac59c31c1738add02_img_1_98e19", + "legacy/6099c07a887b28f75de07c8ac59c31c1738add02_img_2_12b59", + "legacy/6099c07a887b28f75de07c8ac59c31c1738add02_img_3_da710", + "legacy/6099c07a887b28f75de07c8ac59c31c1738add02_img_4_99a32", + "legacy/6099c07a887b28f75de07c8ac59c31c1738add02_img_5_ccc2a", + "legacy/6099c07a887b28f75de07c8ac59c31c1738add02_img_6_3a3a6", + "legacy/6099c07a887b28f75de07c8ac59c31c1738add02_img_7_909d5" + ], + "gallery_urls": [ + "https://www.compass.com/m/6099c07a887b28f75de07c8ac59c31c1738add02_img_0_c1daf/640x480.jpg", + "https://www.compass.com/m/6099c07a887b28f75de07c8ac59c31c1738add02_img_1_98e19/640x480.jpg", + "https://www.compass.com/m/6099c07a887b28f75de07c8ac59c31c1738add02_img_2_12b59/640x480.jpg", + "https://www.compass.com/m/6099c07a887b28f75de07c8ac59c31c1738add02_img_3_da710/640x480.jpg", + "https://www.compass.com/m/6099c07a887b28f75de07c8ac59c31c1738add02_img_4_99a32/640x480.jpg", + "https://www.compass.com/m/6099c07a887b28f75de07c8ac59c31c1738add02_img_5_ccc2a/640x480.jpg", + "https://www.compass.com/m/6099c07a887b28f75de07c8ac59c31c1738add02_img_6_3a3a6/640x480.jpg", + "https://www.compass.com/m/6099c07a887b28f75de07c8ac59c31c1738add02_img_7_909d5/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/1330-Greenwich-St-San-Francisco-CA-94109/1R4GCG_pid/" + }, + { + "listing_id": "2038763065666255609", + "slug": "522-hickory-st-san-francisco-ca-94102", + "title": "$3,800,000", + "price": 3800000, + "is_rent": false, + "street": "522 Hickory Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94102", + "beds": 3, + "baths": 5.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2982, + "latitude": 37.7747989, + "longitude": -122.4286173, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/8770ea0610c75f0e42cef29c9d33b85e9492ad20_img_0_a2d9b", + "gallery_uuids": [ + "legacy/8770ea0610c75f0e42cef29c9d33b85e9492ad20_img_0_a2d9b", + "legacy/8770ea0610c75f0e42cef29c9d33b85e9492ad20_img_1_724fe", + "legacy/8770ea0610c75f0e42cef29c9d33b85e9492ad20_img_2_d57a0", + "legacy/8770ea0610c75f0e42cef29c9d33b85e9492ad20_img_3_79498", + "legacy/8770ea0610c75f0e42cef29c9d33b85e9492ad20_img_4_7d0f1", + "legacy/8770ea0610c75f0e42cef29c9d33b85e9492ad20_img_5_04a40", + "legacy/8770ea0610c75f0e42cef29c9d33b85e9492ad20_img_6_f874f", + "legacy/8770ea0610c75f0e42cef29c9d33b85e9492ad20_img_7_75a6e" + ], + "gallery_urls": [ + "https://www.compass.com/m/8770ea0610c75f0e42cef29c9d33b85e9492ad20_img_0_a2d9b/640x480.jpg", + "https://www.compass.com/m/8770ea0610c75f0e42cef29c9d33b85e9492ad20_img_1_724fe/640x480.jpg", + "https://www.compass.com/m/8770ea0610c75f0e42cef29c9d33b85e9492ad20_img_2_d57a0/640x480.jpg", + "https://www.compass.com/m/8770ea0610c75f0e42cef29c9d33b85e9492ad20_img_3_79498/640x480.jpg", + "https://www.compass.com/m/8770ea0610c75f0e42cef29c9d33b85e9492ad20_img_4_7d0f1/640x480.jpg", + "https://www.compass.com/m/8770ea0610c75f0e42cef29c9d33b85e9492ad20_img_5_04a40/640x480.jpg", + "https://www.compass.com/m/8770ea0610c75f0e42cef29c9d33b85e9492ad20_img_6_f874f/640x480.jpg", + "https://www.compass.com/m/8770ea0610c75f0e42cef29c9d33b85e9492ad20_img_7_75a6e/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/522-Hickory-St-San-Francisco-CA-94102/1QW15S_pid/" + }, + { + "listing_id": "1953270100630407017", + "slug": "2401-16th-st-san-francisco-ca-94110", + "title": "$993,775", + "price": 993775, + "is_rent": false, + "street": "2401 16th Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94110", + "beds": null, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2384, + "latitude": 37.7653592, + "longitude": -122.4106189, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/67393115-b333-4651-9e11-c6b619586e2d", + "gallery_uuids": [ + "uuid/67393115-b333-4651-9e11-c6b619586e2d", + "uuid/e90b645d-635a-435a-a767-801de42fc54a", + "uuid/c57c4c2e-ccd2-435f-be02-b7cee4ae28c2", + "uuid/4ccc6618-ba00-48e7-861f-0bd509b45135", + "uuid/6c005392-5942-4821-9bbb-845ba162bcfb", + "uuid/2e8b51a4-f1c2-4c79-be34-6d40c5bacb19", + "uuid/b2032228-44c2-4c33-87f3-fa58e84410fc", + "uuid/33d9392c-ad6f-462b-808f-bcadad7e313e" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/67393115-b333-4651-9e11-c6b619586e2d/656x840.jpg", + "https://www.compass.com/m/0/e90b645d-635a-435a-a767-801de42fc54a/656x840.jpg", + "https://www.compass.com/m/0/c57c4c2e-ccd2-435f-be02-b7cee4ae28c2/750x1000.jpg", + "https://www.compass.com/m/0/4ccc6618-ba00-48e7-861f-0bd509b45135/750x1000.jpg", + "https://www.compass.com/m/0/6c005392-5942-4821-9bbb-845ba162bcfb/750x1000.jpg", + "https://www.compass.com/m/0/2e8b51a4-f1c2-4c79-be34-6d40c5bacb19/750x1000.jpg", + "https://www.compass.com/m/0/b2032228-44c2-4c33-87f3-fa58e84410fc/1333x1000.jpg", + "https://www.compass.com/m/0/33d9392c-ad6f-462b-808f-bcadad7e313e/1333x1000.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/2401-16th-St-San-Francisco-CA-94110/21589J_pid/" + }, + { + "listing_id": "2103058970737192393", + "slug": "733-front-st-unit-203-san-francisco-ca-94111", + "title": "$1,049,000", + "price": 1049000, + "is_rent": false, + "street": "733 Front Street, Unit 203", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94111", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 949, + "latitude": 37.7980575, + "longitude": -122.4000623, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/550753b0213059e9f9b525e49d1360ef1883baea_img_0_6cb70", + "gallery_uuids": [ + "legacy/550753b0213059e9f9b525e49d1360ef1883baea_img_0_6cb70", + "legacy/550753b0213059e9f9b525e49d1360ef1883baea_img_1_1675f", + "legacy/550753b0213059e9f9b525e49d1360ef1883baea_img_2_89737", + "legacy/550753b0213059e9f9b525e49d1360ef1883baea_img_3_6ae90", + "legacy/550753b0213059e9f9b525e49d1360ef1883baea_img_4_eaf30", + "legacy/550753b0213059e9f9b525e49d1360ef1883baea_img_5_a747a", + "legacy/550753b0213059e9f9b525e49d1360ef1883baea_img_6_1bfd7", + "legacy/550753b0213059e9f9b525e49d1360ef1883baea_img_7_c3a48" + ], + "gallery_urls": [ + "https://www.compass.com/m/550753b0213059e9f9b525e49d1360ef1883baea_img_0_6cb70/640x480.jpg", + "https://www.compass.com/m/550753b0213059e9f9b525e49d1360ef1883baea_img_1_1675f/640x480.jpg", + "https://www.compass.com/m/550753b0213059e9f9b525e49d1360ef1883baea_img_2_89737/640x480.jpg", + "https://www.compass.com/m/550753b0213059e9f9b525e49d1360ef1883baea_img_3_6ae90/640x480.jpg", + "https://www.compass.com/m/550753b0213059e9f9b525e49d1360ef1883baea_img_4_eaf30/640x480.jpg", + "https://www.compass.com/m/550753b0213059e9f9b525e49d1360ef1883baea_img_5_a747a/640x480.jpg", + "https://www.compass.com/m/550753b0213059e9f9b525e49d1360ef1883baea_img_6_1bfd7/640x480.jpg", + "https://www.compass.com/m/550753b0213059e9f9b525e49d1360ef1883baea_img_7_c3a48/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/733-Front-St-Unit-203-San-Francisco-CA-94111/1Q5PVP_pid/" + }, + { + "listing_id": "1836600798260165145", + "slug": "999-green-st-unit-1401-san-francisco-ca-94133", + "title": "$2,695,000", + "price": 2695000, + "is_rent": false, + "street": "999 Green Street, Unit 1401", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94133", + "beds": null, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1473, + "latitude": 37.798447, + "longitude": -122.415218, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/aa4058b6dde21476572e5c7806466994c5d7ed97_img_0_274da", + "gallery_uuids": [ + "legacy/aa4058b6dde21476572e5c7806466994c5d7ed97_img_0_274da", + "legacy/aa4058b6dde21476572e5c7806466994c5d7ed97_img_1_5412b", + "legacy/aa4058b6dde21476572e5c7806466994c5d7ed97_img_2_a2fe9", + "legacy/aa4058b6dde21476572e5c7806466994c5d7ed97_img_3_3a8ca", + "legacy/aa4058b6dde21476572e5c7806466994c5d7ed97_img_4_04b33", + "legacy/aa4058b6dde21476572e5c7806466994c5d7ed97_img_5_222cf", + "legacy/aa4058b6dde21476572e5c7806466994c5d7ed97_img_6_5edd9", + "legacy/aa4058b6dde21476572e5c7806466994c5d7ed97_img_7_9c63a" + ], + "gallery_urls": [ + "https://www.compass.com/m/aa4058b6dde21476572e5c7806466994c5d7ed97_img_0_274da/640x480.jpg", + "https://www.compass.com/m/aa4058b6dde21476572e5c7806466994c5d7ed97_img_1_5412b/640x480.jpg", + "https://www.compass.com/m/aa4058b6dde21476572e5c7806466994c5d7ed97_img_2_a2fe9/640x480.jpg", + "https://www.compass.com/m/aa4058b6dde21476572e5c7806466994c5d7ed97_img_3_3a8ca/640x480.jpg", + "https://www.compass.com/m/aa4058b6dde21476572e5c7806466994c5d7ed97_img_4_04b33/640x480.jpg", + "https://www.compass.com/m/aa4058b6dde21476572e5c7806466994c5d7ed97_img_5_222cf/640x480.jpg", + "https://www.compass.com/m/aa4058b6dde21476572e5c7806466994c5d7ed97_img_6_5edd9/640x480.jpg", + "https://www.compass.com/m/aa4058b6dde21476572e5c7806466994c5d7ed97_img_7_9c63a/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/999-Green-St-Unit-1401-San-Francisco-CA-94133/1QDTFC_pid/" + }, + { + "listing_id": "2083715396043941473", + "slug": "400-grove-st-unit-504-san-francisco-ca-94102", + "title": "$1,695,000", + "price": 1695000, + "is_rent": false, + "street": "400 Grove Street, Unit 504", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94102", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 37.7779287, + "longitude": -122.4235873, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/2b391ef462c90ecd5d7ee8ead0c04a6acc4809f3_img_0_1b03e", + "gallery_uuids": [ + "legacy/2b391ef462c90ecd5d7ee8ead0c04a6acc4809f3_img_0_1b03e", + "legacy/2b391ef462c90ecd5d7ee8ead0c04a6acc4809f3_img_1_11ea7", + "legacy/2b391ef462c90ecd5d7ee8ead0c04a6acc4809f3_img_2_b741d", + "legacy/2b391ef462c90ecd5d7ee8ead0c04a6acc4809f3_img_3_7ec9c", + "legacy/2b391ef462c90ecd5d7ee8ead0c04a6acc4809f3_img_4_b16ed", + "legacy/2b391ef462c90ecd5d7ee8ead0c04a6acc4809f3_img_5_7bda5", + "legacy/2b391ef462c90ecd5d7ee8ead0c04a6acc4809f3_img_6_431d3", + "legacy/2b391ef462c90ecd5d7ee8ead0c04a6acc4809f3_img_7_7423d" + ], + "gallery_urls": [ + "https://www.compass.com/m/2b391ef462c90ecd5d7ee8ead0c04a6acc4809f3_img_0_1b03e/640x480.jpg", + "https://www.compass.com/m/2b391ef462c90ecd5d7ee8ead0c04a6acc4809f3_img_1_11ea7/640x480.jpg", + "https://www.compass.com/m/2b391ef462c90ecd5d7ee8ead0c04a6acc4809f3_img_2_b741d/640x480.jpg", + "https://www.compass.com/m/2b391ef462c90ecd5d7ee8ead0c04a6acc4809f3_img_3_7ec9c/640x480.jpg", + "https://www.compass.com/m/2b391ef462c90ecd5d7ee8ead0c04a6acc4809f3_img_4_b16ed/640x480.jpg", + "https://www.compass.com/m/2b391ef462c90ecd5d7ee8ead0c04a6acc4809f3_img_5_7bda5/640x480.jpg", + "https://www.compass.com/m/2b391ef462c90ecd5d7ee8ead0c04a6acc4809f3_img_6_431d3/640x480.jpg", + "https://www.compass.com/m/2b391ef462c90ecd5d7ee8ead0c04a6acc4809f3_img_7_7423d/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/400-Grove-St-Unit-504-San-Francisco-CA-94102/1PVOVN_pid/" + }, + { + "listing_id": "2101256232709041745", + "slug": "1335-filbert-st-unit-303-san-francisco-ca-94109", + "title": "$1,095,000", + "price": 1095000, + "is_rent": false, + "street": "1335 Filbert Street, Unit 303", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94109", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 990, + "latitude": 37.7996192, + "longitude": -122.4215521, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/48dcddf7a7475bb8ecfcd713bd36a643725badfa_img_0_9d019", + "gallery_uuids": [ + "legacy/48dcddf7a7475bb8ecfcd713bd36a643725badfa_img_0_9d019", + "legacy/48dcddf7a7475bb8ecfcd713bd36a643725badfa_img_1_fe9ea", + "legacy/48dcddf7a7475bb8ecfcd713bd36a643725badfa_img_2_0e79e", + "legacy/48dcddf7a7475bb8ecfcd713bd36a643725badfa_img_3_a9e7c", + "legacy/48dcddf7a7475bb8ecfcd713bd36a643725badfa_img_4_f657d", + "legacy/48dcddf7a7475bb8ecfcd713bd36a643725badfa_img_5_4cf2d", + "legacy/48dcddf7a7475bb8ecfcd713bd36a643725badfa_img_6_975f2", + "legacy/48dcddf7a7475bb8ecfcd713bd36a643725badfa_img_7_11e13" + ], + "gallery_urls": [ + "https://www.compass.com/m/48dcddf7a7475bb8ecfcd713bd36a643725badfa_img_0_9d019/640x480.jpg", + "https://www.compass.com/m/48dcddf7a7475bb8ecfcd713bd36a643725badfa_img_1_fe9ea/640x480.jpg", + "https://www.compass.com/m/48dcddf7a7475bb8ecfcd713bd36a643725badfa_img_2_0e79e/640x480.jpg", + "https://www.compass.com/m/48dcddf7a7475bb8ecfcd713bd36a643725badfa_img_3_a9e7c/640x480.jpg", + "https://www.compass.com/m/48dcddf7a7475bb8ecfcd713bd36a643725badfa_img_4_f657d/640x480.jpg", + "https://www.compass.com/m/48dcddf7a7475bb8ecfcd713bd36a643725badfa_img_5_4cf2d/640x480.jpg", + "https://www.compass.com/m/48dcddf7a7475bb8ecfcd713bd36a643725badfa_img_6_975f2/640x480.jpg", + "https://www.compass.com/m/48dcddf7a7475bb8ecfcd713bd36a643725badfa_img_7_11e13/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/1335-Filbert-St-Unit-303-San-Francisco-CA-94109/1PALJH_pid/" + }, + { + "listing_id": "2103119594485966337", + "slug": "3822-22nd-st-san-francisco-ca-94114", + "title": "$1,795,000", + "price": 1795000, + "is_rent": false, + "street": "3822 22nd Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94114", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1188, + "latitude": 37.75481, + "longitude": -122.433175, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/9a86acce72b8201593d072b62cd6ad19da87d9d7_img_0_19fe6", + "gallery_uuids": [ + "legacy/9a86acce72b8201593d072b62cd6ad19da87d9d7_img_0_19fe6", + "legacy/9a86acce72b8201593d072b62cd6ad19da87d9d7_img_1_2724a" + ], + "gallery_urls": [ + "https://www.compass.com/m/9a86acce72b8201593d072b62cd6ad19da87d9d7_img_0_19fe6/640x480.jpg", + "https://www.compass.com/m/9a86acce72b8201593d072b62cd6ad19da87d9d7_img_1_2724a/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/3822-22nd-St-San-Francisco-CA-94114/1QJFHE_pid/" + }, + { + "listing_id": "2090882903353479305", + "slug": "88-king-st-unit-504-san-francisco-ca-94107", + "title": "$999,900", + "price": 999900, + "is_rent": false, + "street": "88 King Street, Unit 504", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94107", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1154, + "latitude": 37.7806744, + "longitude": -122.3892218, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/479c97dfc26d146119b59481edf5838082b18b08_img_0_7fc07", + "gallery_uuids": [ + "legacy/479c97dfc26d146119b59481edf5838082b18b08_img_0_7fc07", + "legacy/479c97dfc26d146119b59481edf5838082b18b08_img_1_ee076", + "legacy/479c97dfc26d146119b59481edf5838082b18b08_img_2_1b283", + "legacy/479c97dfc26d146119b59481edf5838082b18b08_img_3_680e5", + "legacy/479c97dfc26d146119b59481edf5838082b18b08_img_4_089c0", + "legacy/479c97dfc26d146119b59481edf5838082b18b08_img_5_79acb", + "legacy/479c97dfc26d146119b59481edf5838082b18b08_img_6_b493e", + "legacy/479c97dfc26d146119b59481edf5838082b18b08_img_7_e8364" + ], + "gallery_urls": [ + "https://www.compass.com/m/479c97dfc26d146119b59481edf5838082b18b08_img_0_7fc07/640x480.jpg", + "https://www.compass.com/m/479c97dfc26d146119b59481edf5838082b18b08_img_1_ee076/640x480.jpg", + "https://www.compass.com/m/479c97dfc26d146119b59481edf5838082b18b08_img_2_1b283/640x480.jpg", + "https://www.compass.com/m/479c97dfc26d146119b59481edf5838082b18b08_img_3_680e5/640x480.jpg", + "https://www.compass.com/m/479c97dfc26d146119b59481edf5838082b18b08_img_4_089c0/640x480.jpg", + "https://www.compass.com/m/479c97dfc26d146119b59481edf5838082b18b08_img_5_79acb/640x480.jpg", + "https://www.compass.com/m/479c97dfc26d146119b59481edf5838082b18b08_img_6_b493e/640x480.jpg", + "https://www.compass.com/m/479c97dfc26d146119b59481edf5838082b18b08_img_7_e8364/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/88-King-St-Unit-504-San-Francisco-CA-94107/1PU2M7_pid/" + }, + { + "listing_id": "2099704849698538665", + "slug": "3620-cesar-chavez-unit-404-san-francisco-ca-94110", + "title": "$1,090,000", + "price": 1090000, + "is_rent": false, + "street": "3620 Cesar Chavez, Unit 404", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94110", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1038, + "latitude": 37.7483761, + "longitude": -122.4219282, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/af47409c0de47f8c2d1eeb01accce17a17e8c8a3_img_0_a360b", + "gallery_uuids": [ + "legacy/af47409c0de47f8c2d1eeb01accce17a17e8c8a3_img_0_a360b" + ], + "gallery_urls": [ + "https://www.compass.com/m/af47409c0de47f8c2d1eeb01accce17a17e8c8a3_img_0_a360b/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/3620-Cesar-Chavez-Unit-404-San-Francisco-CA-94110/1QR261_pid/" + }, + { + "listing_id": "2099697747651666593", + "slug": "6121-california-st-san-francisco-ca-94121", + "title": "$1,495,000", + "price": 1495000, + "is_rent": false, + "street": "6121 California Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94121", + "beds": 3, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1900, + "latitude": 37.7837986, + "longitude": -122.4833127, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/0adfc749bf12e4fbfe28b6c4a09d8595d37b3caa_img_0_175f9", + "gallery_uuids": [ + "legacy/0adfc749bf12e4fbfe28b6c4a09d8595d37b3caa_img_0_175f9" + ], + "gallery_urls": [ + "https://www.compass.com/m/0adfc749bf12e4fbfe28b6c4a09d8595d37b3caa_img_0_175f9/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/6121-California-St-San-Francisco-CA-94121/1R5RPM_pid/" + }, + { + "listing_id": "1929546519660550161", + "slug": "201-fell-st-san-francisco-ca-94102", + "title": "$67,000", + "price": 67000, + "is_rent": false, + "street": "201 Fell Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94102", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 350, + "latitude": 37.7760366, + "longitude": -122.4212977, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/3f882b9a-f4d3-4f0b-b58c-e455ff63786e", + "gallery_uuids": [ + "uuid/3f882b9a-f4d3-4f0b-b58c-e455ff63786e", + "uuid/08dcaa4f-c59f-49aa-9882-afb638cdb377", + "uuid/d96f64ba-8b67-41e3-b6de-0e3dea53a006", + "uuid/9e2b9165-24fe-4cdd-b767-465c3a789af7", + "uuid/c0b34a0d-dadf-45b6-867e-54f844615ddd", + "uuid/49fa5330-6c27-46e9-a638-8df86cf07262", + "uuid/661761b7-ad9c-4c6e-91d9-75aaad941df9", + "uuid/9757edba-46ad-4be8-80a0-2d2eb6b97df2" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/3f882b9a-f4d3-4f0b-b58c-e455ff63786e/1333x1000.jpg", + "https://www.compass.com/m/0/08dcaa4f-c59f-49aa-9882-afb638cdb377/1333x1000.jpg", + "https://www.compass.com/m/0/d96f64ba-8b67-41e3-b6de-0e3dea53a006/1333x1000.jpg", + "https://www.compass.com/m/0/9e2b9165-24fe-4cdd-b767-465c3a789af7/1333x1000.jpg", + "https://www.compass.com/m/0/c0b34a0d-dadf-45b6-867e-54f844615ddd/1333x1000.jpg", + "https://www.compass.com/m/0/49fa5330-6c27-46e9-a638-8df86cf07262/1333x1000.jpg", + "https://www.compass.com/m/0/661761b7-ad9c-4c6e-91d9-75aaad941df9/1333x1000.jpg", + "https://www.compass.com/m/0/9757edba-46ad-4be8-80a0-2d2eb6b97df2/750x1000.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/201-Fell-St-San-Francisco-CA-94102/1QXTMU_pid/" + }, + { + "listing_id": "2049586279368920025", + "slug": "1542-15th-st-san-francisco-ca-94103", + "title": "$1,295,000", + "price": 1295000, + "is_rent": false, + "street": "1542 15th Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94103", + "beds": 3, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1380, + "latitude": 37.766958, + "longitude": -122.41862, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/069894bddb637cebc957ae9f2931f4725ab75d13_img_0_76f38", + "gallery_uuids": [ + "legacy/069894bddb637cebc957ae9f2931f4725ab75d13_img_0_76f38", + "legacy/069894bddb637cebc957ae9f2931f4725ab75d13_img_1_9edb4", + "legacy/069894bddb637cebc957ae9f2931f4725ab75d13_img_2_0ab1b", + "legacy/069894bddb637cebc957ae9f2931f4725ab75d13_img_3_ce8a3", + "legacy/069894bddb637cebc957ae9f2931f4725ab75d13_img_4_a57f8", + "legacy/069894bddb637cebc957ae9f2931f4725ab75d13_img_5_38ca8", + "legacy/069894bddb637cebc957ae9f2931f4725ab75d13_img_6_0ef9e", + "legacy/069894bddb637cebc957ae9f2931f4725ab75d13_img_7_d89df" + ], + "gallery_urls": [ + "https://www.compass.com/m/069894bddb637cebc957ae9f2931f4725ab75d13_img_0_76f38/640x480.jpg", + "https://www.compass.com/m/069894bddb637cebc957ae9f2931f4725ab75d13_img_1_9edb4/640x480.jpg", + "https://www.compass.com/m/069894bddb637cebc957ae9f2931f4725ab75d13_img_2_0ab1b/640x480.jpg", + "https://www.compass.com/m/069894bddb637cebc957ae9f2931f4725ab75d13_img_3_ce8a3/640x480.jpg", + "https://www.compass.com/m/069894bddb637cebc957ae9f2931f4725ab75d13_img_4_a57f8/640x480.jpg", + "https://www.compass.com/m/069894bddb637cebc957ae9f2931f4725ab75d13_img_5_38ca8/640x480.jpg", + "https://www.compass.com/m/069894bddb637cebc957ae9f2931f4725ab75d13_img_6_0ef9e/640x480.jpg", + "https://www.compass.com/m/069894bddb637cebc957ae9f2931f4725ab75d13_img_7_d89df/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/1542-15th-St-San-Francisco-CA-94103/1R90JV_pid/" + }, + { + "listing_id": "2102061493988427281", + "slug": "1701-40th-ave-san-francisco-ca-94122", + "title": "$1,388,000", + "price": 1388000, + "is_rent": false, + "street": "1701 40th Avenue", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94122", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1377, + "latitude": 37.7549644, + "longitude": -122.4993441, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/e69f71ad47c563f3f1c35655d13ecdb4ee6a237f_img_0_be43a", + "gallery_uuids": [ + "legacy/e69f71ad47c563f3f1c35655d13ecdb4ee6a237f_img_0_be43a" + ], + "gallery_urls": [ + "https://www.compass.com/m/e69f71ad47c563f3f1c35655d13ecdb4ee6a237f_img_0_be43a/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/1701-40th-Ave-San-Francisco-CA-94122/2102061493988427281_lid/" + }, + { + "listing_id": "2077913668911779665", + "slug": "417-buena-vista-ave-e-san-francisco-ca-94117", + "title": "$1,590,000", + "price": 1590000, + "is_rent": false, + "street": "417 Buena Vista Avenue East", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94117", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 37.76638700000001, + "longitude": -122.440847, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/a32732ae4a1ca089cd329a30c2a09b0bbcc0b04b_img_0_9c751", + "gallery_uuids": [ + "legacy/a32732ae4a1ca089cd329a30c2a09b0bbcc0b04b_img_0_9c751", + "legacy/a32732ae4a1ca089cd329a30c2a09b0bbcc0b04b_img_1_0fbc1" + ], + "gallery_urls": [ + "https://www.compass.com/m/a32732ae4a1ca089cd329a30c2a09b0bbcc0b04b_img_0_9c751/640x480.jpg", + "https://www.compass.com/m/a32732ae4a1ca089cd329a30c2a09b0bbcc0b04b_img_1_0fbc1/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/417-Buena-Vista-Ave-E-San-Francisco-CA-94117/1R3CTY_pid/" + }, + { + "listing_id": "2098681291724144441", + "slug": "1332-greenwich-st-san-francisco-ca-94109", + "title": "$6,500,000", + "price": 6500000, + "is_rent": false, + "street": "1332 Greenwich Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94109", + "beds": 3, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2542, + "latitude": 37.801038, + "longitude": -122.421733, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/67fec8af6eed1e7d113b7cc218c168eadebe4f2d_img_0_27041", + "gallery_uuids": [ + "legacy/67fec8af6eed1e7d113b7cc218c168eadebe4f2d_img_0_27041", + "legacy/67fec8af6eed1e7d113b7cc218c168eadebe4f2d_img_1_8947d", + "legacy/67fec8af6eed1e7d113b7cc218c168eadebe4f2d_img_2_f39a4", + "legacy/67fec8af6eed1e7d113b7cc218c168eadebe4f2d_img_3_d312c", + "legacy/67fec8af6eed1e7d113b7cc218c168eadebe4f2d_img_4_6ffd5", + "legacy/67fec8af6eed1e7d113b7cc218c168eadebe4f2d_img_5_e2e58", + "legacy/67fec8af6eed1e7d113b7cc218c168eadebe4f2d_img_6_ff3eb", + "legacy/67fec8af6eed1e7d113b7cc218c168eadebe4f2d_img_7_27155" + ], + "gallery_urls": [ + "https://www.compass.com/m/67fec8af6eed1e7d113b7cc218c168eadebe4f2d_img_0_27041/640x480.jpg", + "https://www.compass.com/m/67fec8af6eed1e7d113b7cc218c168eadebe4f2d_img_1_8947d/640x480.jpg", + "https://www.compass.com/m/67fec8af6eed1e7d113b7cc218c168eadebe4f2d_img_2_f39a4/640x480.jpg", + "https://www.compass.com/m/67fec8af6eed1e7d113b7cc218c168eadebe4f2d_img_3_d312c/640x480.jpg", + "https://www.compass.com/m/67fec8af6eed1e7d113b7cc218c168eadebe4f2d_img_4_6ffd5/640x480.jpg", + "https://www.compass.com/m/67fec8af6eed1e7d113b7cc218c168eadebe4f2d_img_5_e2e58/640x480.jpg", + "https://www.compass.com/m/67fec8af6eed1e7d113b7cc218c168eadebe4f2d_img_6_ff3eb/640x480.jpg", + "https://www.compass.com/m/67fec8af6eed1e7d113b7cc218c168eadebe4f2d_img_7_27155/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/1332-Greenwich-St-San-Francisco-CA-94109/1P29MP_pid/" + }, + { + "listing_id": "2074455926394275209", + "slug": "198-dolores-st-unit-6-san-francisco-ca-94103", + "title": "$750,000", + "price": 750000, + "is_rent": false, + "street": "198 Dolores Street, Unit 6", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94103", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 650, + "latitude": 37.7665063, + "longitude": -122.4268377, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/0a873618fd16a44931e3f7d9d0e10cfa2d167c71_img_0_d1fad", + "gallery_uuids": [ + "legacy/0a873618fd16a44931e3f7d9d0e10cfa2d167c71_img_0_d1fad", + "legacy/0a873618fd16a44931e3f7d9d0e10cfa2d167c71_img_1_5a5eb", + "legacy/0a873618fd16a44931e3f7d9d0e10cfa2d167c71_img_2_9d769", + "legacy/0a873618fd16a44931e3f7d9d0e10cfa2d167c71_img_3_3fbe0", + "legacy/0a873618fd16a44931e3f7d9d0e10cfa2d167c71_img_4_a4f7d", + "legacy/0a873618fd16a44931e3f7d9d0e10cfa2d167c71_img_5_5e2a3" + ], + "gallery_urls": [ + "https://www.compass.com/m/0a873618fd16a44931e3f7d9d0e10cfa2d167c71_img_0_d1fad/640x480.jpg", + "https://www.compass.com/m/0a873618fd16a44931e3f7d9d0e10cfa2d167c71_img_1_5a5eb/640x480.jpg", + "https://www.compass.com/m/0a873618fd16a44931e3f7d9d0e10cfa2d167c71_img_2_9d769/640x480.jpg", + "https://www.compass.com/m/0a873618fd16a44931e3f7d9d0e10cfa2d167c71_img_3_3fbe0/640x480.jpg", + "https://www.compass.com/m/0a873618fd16a44931e3f7d9d0e10cfa2d167c71_img_4_a4f7d/640x480.jpg", + "https://www.compass.com/m/0a873618fd16a44931e3f7d9d0e10cfa2d167c71_img_5_5e2a3/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/198-Dolores-St-Unit-6-San-Francisco-CA-94103/1P99JE_pid/" + }, + { + "listing_id": "1952597186755126769", + "slug": "211-steiner-st-san-francisco-ca-94117", + "title": "$213,000", + "price": 213000, + "is_rent": false, + "street": "211 Steiner Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94117", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1400, + "latitude": 37.7711548, + "longitude": -122.4321311, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/9dd1a6e0-6686-4aa3-9d6e-2f73e9028661", + "gallery_uuids": [ + "uuid/9dd1a6e0-6686-4aa3-9d6e-2f73e9028661", + "uuid/8b5caced-3781-4f4a-8fd9-ec7535e3829d", + "uuid/aa0a1ad1-9a01-43c0-a438-80c8868f873c", + "uuid/0a450fa1-00b8-4a3d-bf0f-065eeeb8ec95", + "uuid/33173473-b6c8-402a-9000-67f66e699b91", + "uuid/11816ad0-8728-4d95-8266-7f0dcf0bd2b5", + "uuid/7d218a7d-cf4c-4d5c-8fb6-6dceb71ee3f5", + "uuid/42993284-9016-43a8-8f7c-f0da5c9d77ef" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/9dd1a6e0-6686-4aa3-9d6e-2f73e9028661/1333x1000.jpg", + "https://www.compass.com/m/0/8b5caced-3781-4f4a-8fd9-ec7535e3829d/1333x1000.jpg", + "https://www.compass.com/m/0/aa0a1ad1-9a01-43c0-a438-80c8868f873c/1333x1000.jpg", + "https://www.compass.com/m/0/0a450fa1-00b8-4a3d-bf0f-065eeeb8ec95/1333x1000.jpg", + "https://www.compass.com/m/0/33173473-b6c8-402a-9000-67f66e699b91/750x1000.jpg", + "https://www.compass.com/m/0/11816ad0-8728-4d95-8266-7f0dcf0bd2b5/1333x1000.jpg", + "https://www.compass.com/m/0/7d218a7d-cf4c-4d5c-8fb6-6dceb71ee3f5/1333x1000.jpg", + "https://www.compass.com/m/0/42993284-9016-43a8-8f7c-f0da5c9d77ef/1333x1000.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/211-Steiner-St-San-Francisco-CA-94117/2145C1_pid/" + }, + { + "listing_id": "2064142478233865425", + "slug": "2740-38th-ave-san-francisco-ca-94116", + "title": "$1,900,000", + "price": 1900000, + "is_rent": false, + "street": "2740 38th Avenue", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94116", + "beds": 6, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2990, + "latitude": 37.7357448, + "longitude": -122.4953076, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/4cf5e6c2-3309-4422-bbbe-c640d9913702", + "gallery_uuids": [ + "uuid/4cf5e6c2-3309-4422-bbbe-c640d9913702", + "uuid/a48e74a7-c82b-4d46-bbe8-097af27acfed", + "uuid/9cd80364-6cc0-49c2-a69e-7333b89ad28c", + "uuid/b1dd21fc-6a0e-4841-aedd-a372a8fd31c8", + "uuid/efe6dc48-5e9c-42f5-b290-bc51a01c78b0", + "uuid/bbf01ef0-860a-4098-b8df-2443d9eeb286", + "uuid/d684e7ad-0477-4182-8833-d5a89c766937", + "uuid/71900bf1-7926-47be-a62a-416e1504e6a5" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/4cf5e6c2-3309-4422-bbbe-c640d9913702/1491x1000.jpg", + "https://www.compass.com/m/0/a48e74a7-c82b-4d46-bbe8-097af27acfed/1500x1000.jpg", + "https://www.compass.com/m/0/9cd80364-6cc0-49c2-a69e-7333b89ad28c/1500x1000.jpg", + "https://www.compass.com/m/0/b1dd21fc-6a0e-4841-aedd-a372a8fd31c8/1500x1000.jpg", + "https://www.compass.com/m/0/efe6dc48-5e9c-42f5-b290-bc51a01c78b0/1500x1000.jpg", + "https://www.compass.com/m/0/bbf01ef0-860a-4098-b8df-2443d9eeb286/1500x999.jpg", + "https://www.compass.com/m/0/d684e7ad-0477-4182-8833-d5a89c766937/1491x1000.jpg", + "https://www.compass.com/m/0/71900bf1-7926-47be-a62a-416e1504e6a5/1491x1000.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/2740-38th-Ave-San-Francisco-CA-94116/1QP5AE_pid/" + }, + { + "listing_id": "2101595906346862593", + "slug": "1330-1332-greenwich-st-san-francisco-ca-94109", + "title": "$8,995,000", + "price": 8995000, + "is_rent": false, + "street": "1330-1332 Greenwich Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94109", + "beds": 5, + "baths": 6.0, + "baths_full": 5, + "baths_half": null, + "sqft": 4447, + "latitude": 37.8008935, + "longitude": -122.4217536, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/66378456985aa99c7d05dac41244cc11ee123679_img_0_27041", + "gallery_uuids": [ + "legacy/66378456985aa99c7d05dac41244cc11ee123679_img_0_27041", + "legacy/66378456985aa99c7d05dac41244cc11ee123679_img_1_8947d", + "legacy/66378456985aa99c7d05dac41244cc11ee123679_img_2_f39a4", + "legacy/66378456985aa99c7d05dac41244cc11ee123679_img_3_d312c", + "legacy/66378456985aa99c7d05dac41244cc11ee123679_img_4_6ffd5", + "legacy/66378456985aa99c7d05dac41244cc11ee123679_img_5_e2e58", + "legacy/66378456985aa99c7d05dac41244cc11ee123679_img_6_ff3eb", + "legacy/66378456985aa99c7d05dac41244cc11ee123679_img_7_27155" + ], + "gallery_urls": [ + "https://www.compass.com/m/66378456985aa99c7d05dac41244cc11ee123679_img_0_27041/640x480.jpg", + "https://www.compass.com/m/66378456985aa99c7d05dac41244cc11ee123679_img_1_8947d/640x480.jpg", + "https://www.compass.com/m/66378456985aa99c7d05dac41244cc11ee123679_img_2_f39a4/640x480.jpg", + "https://www.compass.com/m/66378456985aa99c7d05dac41244cc11ee123679_img_3_d312c/640x480.jpg", + "https://www.compass.com/m/66378456985aa99c7d05dac41244cc11ee123679_img_4_6ffd5/640x480.jpg", + "https://www.compass.com/m/66378456985aa99c7d05dac41244cc11ee123679_img_5_e2e58/640x480.jpg", + "https://www.compass.com/m/66378456985aa99c7d05dac41244cc11ee123679_img_6_ff3eb/640x480.jpg", + "https://www.compass.com/m/66378456985aa99c7d05dac41244cc11ee123679_img_7_27155/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/1330-1332-Greenwich-St-San-Francisco-CA-94109/1R98SD_pid/" + }, + { + "listing_id": "2024239871727304937", + "slug": "eddy-st-san-francisco-ca-94109", + "title": "$625,000", + "price": 625000, + "is_rent": false, + "street": "Eddy Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94109", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 816, + "latitude": 37.7822775, + "longitude": -122.4269298, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/36039fd72d6e1bfe016c653f894f282e20e06e9f_img_0_7c336", + "gallery_uuids": [ + "legacy/36039fd72d6e1bfe016c653f894f282e20e06e9f_img_0_7c336", + "legacy/36039fd72d6e1bfe016c653f894f282e20e06e9f_img_1_25da1", + "legacy/36039fd72d6e1bfe016c653f894f282e20e06e9f_img_2_fe708", + "legacy/36039fd72d6e1bfe016c653f894f282e20e06e9f_img_3_94331", + "legacy/36039fd72d6e1bfe016c653f894f282e20e06e9f_img_4_d3037", + "legacy/36039fd72d6e1bfe016c653f894f282e20e06e9f_img_5_51e2d", + "legacy/36039fd72d6e1bfe016c653f894f282e20e06e9f_img_6_f711d", + "legacy/36039fd72d6e1bfe016c653f894f282e20e06e9f_img_7_c0107" + ], + "gallery_urls": [ + "https://www.compass.com/m/36039fd72d6e1bfe016c653f894f282e20e06e9f_img_0_7c336/640x480.jpg", + "https://www.compass.com/m/36039fd72d6e1bfe016c653f894f282e20e06e9f_img_1_25da1/640x480.jpg", + "https://www.compass.com/m/36039fd72d6e1bfe016c653f894f282e20e06e9f_img_2_fe708/640x480.jpg", + "https://www.compass.com/m/36039fd72d6e1bfe016c653f894f282e20e06e9f_img_3_94331/640x480.jpg", + "https://www.compass.com/m/36039fd72d6e1bfe016c653f894f282e20e06e9f_img_4_d3037/640x480.jpg", + "https://www.compass.com/m/36039fd72d6e1bfe016c653f894f282e20e06e9f_img_5_51e2d/640x480.jpg", + "https://www.compass.com/m/36039fd72d6e1bfe016c653f894f282e20e06e9f_img_6_f711d/640x480.jpg", + "https://www.compass.com/m/36039fd72d6e1bfe016c653f894f282e20e06e9f_img_7_c0107/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/Eddy-St-San-Francisco-CA-94109/2024239871727304937_lid/" + }, + { + "listing_id": "2029481186232648585", + "slug": "200-brannan-st-unit-130-san-francisco-ca-94107", + "title": "$1,525,000", + "price": 1525000, + "is_rent": false, + "street": "200 Brannan Street, Unit 130", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94107", + "beds": null, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1645, + "latitude": 37.7838833, + "longitude": -122.3906104, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/d2a0f575a61cb6c52afa5c52d29487b97b855f00_img_0_f4659", + "gallery_uuids": [ + "legacy/d2a0f575a61cb6c52afa5c52d29487b97b855f00_img_0_f4659", + "legacy/d2a0f575a61cb6c52afa5c52d29487b97b855f00_img_1_29794", + "legacy/d2a0f575a61cb6c52afa5c52d29487b97b855f00_img_2_68978", + "legacy/d2a0f575a61cb6c52afa5c52d29487b97b855f00_img_3_8a5e4", + "legacy/d2a0f575a61cb6c52afa5c52d29487b97b855f00_img_4_1f15b", + "legacy/d2a0f575a61cb6c52afa5c52d29487b97b855f00_img_5_44004", + "legacy/d2a0f575a61cb6c52afa5c52d29487b97b855f00_img_6_00e3c", + "legacy/d2a0f575a61cb6c52afa5c52d29487b97b855f00_img_7_64365" + ], + "gallery_urls": [ + "https://www.compass.com/m/d2a0f575a61cb6c52afa5c52d29487b97b855f00_img_0_f4659/640x480.jpg", + "https://www.compass.com/m/d2a0f575a61cb6c52afa5c52d29487b97b855f00_img_1_29794/640x480.jpg", + "https://www.compass.com/m/d2a0f575a61cb6c52afa5c52d29487b97b855f00_img_2_68978/640x480.jpg", + "https://www.compass.com/m/d2a0f575a61cb6c52afa5c52d29487b97b855f00_img_3_8a5e4/640x480.jpg", + "https://www.compass.com/m/d2a0f575a61cb6c52afa5c52d29487b97b855f00_img_4_1f15b/640x480.jpg", + "https://www.compass.com/m/d2a0f575a61cb6c52afa5c52d29487b97b855f00_img_5_44004/640x480.jpg", + "https://www.compass.com/m/d2a0f575a61cb6c52afa5c52d29487b97b855f00_img_6_00e3c/640x480.jpg", + "https://www.compass.com/m/d2a0f575a61cb6c52afa5c52d29487b97b855f00_img_7_64365/640x480.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/200-Brannan-St-Unit-130-San-Francisco-CA-94107/1PS0NG_pid/" + }, + { + "listing_id": "2063568587228404361", + "slug": "brannan-st-san-francisco-ca-94107", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "Brannan Street", + "neighborhood": "", + "city": "San Francisco", + "state": "CA", + "zip": "94107", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1173, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/a894b30e-eb9b-48c5-806d-a83e418dc413", + "gallery_uuids": [ + "uuid/a894b30e-eb9b-48c5-806d-a83e418dc413", + "uuid/01eca381-fa83-469d-812d-8026d79185b0", + "uuid/5889395a-b810-4dac-9791-e318b55afe6c", + "uuid/07e691f4-b999-4478-bf8d-9ec97252f73a", + "uuid/d1a46453-5a75-4ffa-998d-b9bec760d2ba", + "uuid/83c3ad67-28a3-4071-bbb6-0aa870309872", + "uuid/cddd3923-2cf9-4fab-875d-c2d933ac4843", + "uuid/fa93847b-06f4-423b-ad31-6a739fddbea2" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/a894b30e-eb9b-48c5-806d-a83e418dc413/1500x1000.jpg", + "https://www.compass.com/m/0/01eca381-fa83-469d-812d-8026d79185b0/1500x1000.jpg", + "https://www.compass.com/m/0/5889395a-b810-4dac-9791-e318b55afe6c/1500x1000.jpg", + "https://www.compass.com/m/0/07e691f4-b999-4478-bf8d-9ec97252f73a/1500x1000.jpg", + "https://www.compass.com/m/0/d1a46453-5a75-4ffa-998d-b9bec760d2ba/1500x1000.jpg", + "https://www.compass.com/m/0/83c3ad67-28a3-4071-bbb6-0aa870309872/1500x1000.jpg", + "https://www.compass.com/m/0/cddd3923-2cf9-4fab-875d-c2d933ac4843/1500x1000.jpg", + "https://www.compass.com/m/0/fa93847b-06f4-423b-ad31-6a739fddbea2/1500x1000.jpg" + ], + "source_city": "sf", + "detail_url": "https://www.compass.com/homedetails/Brannan-St-San-Francisco-CA-94107/2063568587228404361_lid/" + }, + { + "listing_id": "2103280393061690665", + "slug": "2771-w-francis-pl-unit-302n-chicago-il-60647", + "title": "$449,000", + "price": 449000, + "is_rent": false, + "street": "2771 West Francis Place, Unit 302N", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60647", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 41.91797340000001, + "longitude": -87.6964375, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Open: 5/16 11:00AM - 01:00PM" + ], + "hero_uuid": "legacy/f34e77f074fe67c0609d6332c1784f137d5dc27f_img_0_d5d41", + "gallery_uuids": [ + "legacy/f34e77f074fe67c0609d6332c1784f137d5dc27f_img_0_d5d41", + "legacy/f34e77f074fe67c0609d6332c1784f137d5dc27f_img_1_0ef4c", + "legacy/f34e77f074fe67c0609d6332c1784f137d5dc27f_img_2_5e54e", + "legacy/f34e77f074fe67c0609d6332c1784f137d5dc27f_img_3_a3993", + "legacy/f34e77f074fe67c0609d6332c1784f137d5dc27f_img_4_86c9d", + "legacy/f34e77f074fe67c0609d6332c1784f137d5dc27f_img_5_bc457", + "legacy/f34e77f074fe67c0609d6332c1784f137d5dc27f_img_6_e34a9", + "legacy/f34e77f074fe67c0609d6332c1784f137d5dc27f_img_7_5fddd" + ], + "gallery_urls": [ + "https://www.compass.com/m/f34e77f074fe67c0609d6332c1784f137d5dc27f_img_0_d5d41/640x480.jpg", + "https://www.compass.com/m/f34e77f074fe67c0609d6332c1784f137d5dc27f_img_1_0ef4c/640x480.jpg", + "https://www.compass.com/m/f34e77f074fe67c0609d6332c1784f137d5dc27f_img_2_5e54e/640x480.jpg", + "https://www.compass.com/m/f34e77f074fe67c0609d6332c1784f137d5dc27f_img_3_a3993/640x480.jpg", + "https://www.compass.com/m/f34e77f074fe67c0609d6332c1784f137d5dc27f_img_4_86c9d/640x480.jpg", + "https://www.compass.com/m/f34e77f074fe67c0609d6332c1784f137d5dc27f_img_5_bc457/640x480.jpg", + "https://www.compass.com/m/f34e77f074fe67c0609d6332c1784f137d5dc27f_img_6_e34a9/640x480.jpg", + "https://www.compass.com/m/f34e77f074fe67c0609d6332c1784f137d5dc27f_img_7_5fddd/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2771-W-Francis-Pl-Unit-302N-Chicago-IL-60647/1VX0T9_pid/" + }, + { + "listing_id": "2059650484278121113", + "slug": "1821-n-milwaukee-ave-unit-401-chicago-il-60647", + "title": "$650,000", + "price": 650000, + "is_rent": false, + "street": "1821 North Milwaukee Avenue, Unit 401", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60647", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1445, + "latitude": 41.9145943, + "longitude": -87.6835636, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/0235da41df8a2a4b0256ae1af8d96caa626ab288_img_0_43d60", + "gallery_uuids": [ + "legacy/0235da41df8a2a4b0256ae1af8d96caa626ab288_img_0_43d60", + "legacy/0235da41df8a2a4b0256ae1af8d96caa626ab288_img_1_77ffa", + "legacy/0235da41df8a2a4b0256ae1af8d96caa626ab288_img_2_0f4f3", + "legacy/0235da41df8a2a4b0256ae1af8d96caa626ab288_img_3_2d5a8", + "legacy/0235da41df8a2a4b0256ae1af8d96caa626ab288_img_4_899c0", + "legacy/0235da41df8a2a4b0256ae1af8d96caa626ab288_img_5_c3e4d", + "legacy/0235da41df8a2a4b0256ae1af8d96caa626ab288_img_6_5e771", + "legacy/0235da41df8a2a4b0256ae1af8d96caa626ab288_img_7_a4bfc" + ], + "gallery_urls": [ + "https://www.compass.com/m/0235da41df8a2a4b0256ae1af8d96caa626ab288_img_0_43d60/640x480.jpg", + "https://www.compass.com/m/0235da41df8a2a4b0256ae1af8d96caa626ab288_img_1_77ffa/640x480.jpg", + "https://www.compass.com/m/0235da41df8a2a4b0256ae1af8d96caa626ab288_img_2_0f4f3/640x480.jpg", + "https://www.compass.com/m/0235da41df8a2a4b0256ae1af8d96caa626ab288_img_3_2d5a8/640x480.jpg", + "https://www.compass.com/m/0235da41df8a2a4b0256ae1af8d96caa626ab288_img_4_899c0/640x480.jpg", + "https://www.compass.com/m/0235da41df8a2a4b0256ae1af8d96caa626ab288_img_5_c3e4d/640x480.jpg", + "https://www.compass.com/m/0235da41df8a2a4b0256ae1af8d96caa626ab288_img_6_5e771/640x480.jpg", + "https://www.compass.com/m/0235da41df8a2a4b0256ae1af8d96caa626ab288_img_7_a4bfc/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/1821-N-Milwaukee-Ave-Unit-401-Chicago-IL-60647/1XFY02_pid/" + }, + { + "listing_id": "2095783539130259441", + "slug": "1555-n-wood-st-unit-201-chicago-il-60622", + "title": "$820,000", + "price": 820000, + "is_rent": false, + "street": "1555 North Wood Street, Unit 201", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60622", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 41.91030019999999, + "longitude": -87.6722226, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Open: 5/16 11:00AM - 01:00PM" + ], + "hero_uuid": "legacy/f817c8009f703850ed28296ed433d52038432f5a_img_0_e632f", + "gallery_uuids": [ + "legacy/f817c8009f703850ed28296ed433d52038432f5a_img_0_e632f", + "legacy/f817c8009f703850ed28296ed433d52038432f5a_img_1_4bbfc", + "legacy/f817c8009f703850ed28296ed433d52038432f5a_img_2_42aef", + "legacy/f817c8009f703850ed28296ed433d52038432f5a_img_3_b0b20", + "legacy/f817c8009f703850ed28296ed433d52038432f5a_img_4_3176c", + "legacy/f817c8009f703850ed28296ed433d52038432f5a_img_5_63885", + "legacy/f817c8009f703850ed28296ed433d52038432f5a_img_6_a8185", + "legacy/f817c8009f703850ed28296ed433d52038432f5a_img_7_a174b" + ], + "gallery_urls": [ + "https://www.compass.com/m/f817c8009f703850ed28296ed433d52038432f5a_img_0_e632f/640x480.jpg", + "https://www.compass.com/m/f817c8009f703850ed28296ed433d52038432f5a_img_1_4bbfc/640x480.jpg", + "https://www.compass.com/m/f817c8009f703850ed28296ed433d52038432f5a_img_2_42aef/640x480.jpg", + "https://www.compass.com/m/f817c8009f703850ed28296ed433d52038432f5a_img_3_b0b20/640x480.jpg", + "https://www.compass.com/m/f817c8009f703850ed28296ed433d52038432f5a_img_4_3176c/640x480.jpg", + "https://www.compass.com/m/f817c8009f703850ed28296ed433d52038432f5a_img_5_63885/640x480.jpg", + "https://www.compass.com/m/f817c8009f703850ed28296ed433d52038432f5a_img_6_a8185/640x480.jpg", + "https://www.compass.com/m/f817c8009f703850ed28296ed433d52038432f5a_img_7_a174b/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/1555-N-Wood-St-Unit-201-Chicago-IL-60622/1X46M8_pid/" + }, + { + "listing_id": "1983047348118888593", + "slug": "1000-w-adams-st-unit-817-chicago-il-60607", + "title": "", + "price": null, + "is_rent": false, + "street": "1000 West Adams Street, Unit 817", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60607", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 41.8794696, + "longitude": -87.6523003, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/178723ed40b86c8069f1addc9544f1a71a1a8b5d_img_0_4c2c2", + "gallery_uuids": [ + "legacy/178723ed40b86c8069f1addc9544f1a71a1a8b5d_img_0_4c2c2" + ], + "gallery_urls": [ + "https://www.compass.com/m/178723ed40b86c8069f1addc9544f1a71a1a8b5d_img_0_4c2c2/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/1000-W-Adams-St-Unit-817-Chicago-IL-60607/1I2REX_pid/" + }, + { + "listing_id": "2090125255159432873", + "slug": "2846-n-christiana-ave-unit-2-chicago-il-60618", + "title": "$310,000", + "price": 310000, + "is_rent": false, + "street": "2846 North Christiana Avenue, Unit 2", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60618", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 41.933428, + "longitude": -87.71132290000001, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/9139d6d175cd422e1bb946e36938708a4336c650_img_0_402d3", + "gallery_uuids": [ + "legacy/9139d6d175cd422e1bb946e36938708a4336c650_img_0_402d3" + ], + "gallery_urls": [ + "https://www.compass.com/m/9139d6d175cd422e1bb946e36938708a4336c650_img_0_402d3/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2846-N-Christiana-Ave-Unit-2-Chicago-IL-60618/1WG9AW_pid/" + }, + { + "listing_id": "2094356142457399105", + "slug": "2544-w-north-ave-unit-2b-chicago-il-60647", + "title": "$499,900", + "price": 499900, + "is_rent": false, + "street": "2544 West North Avenue, Unit 2B", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60647", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1500, + "latitude": 41.910518, + "longitude": -87.6915709, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Virtual Tour" + ], + "hero_uuid": "legacy/ebdb68eee908e325388366d6e81158218798628a_img_0_d80a5", + "gallery_uuids": [ + "legacy/ebdb68eee908e325388366d6e81158218798628a_img_0_d80a5", + "legacy/ebdb68eee908e325388366d6e81158218798628a_img_1_9dc16", + "legacy/ebdb68eee908e325388366d6e81158218798628a_img_2_c1fdf", + "legacy/ebdb68eee908e325388366d6e81158218798628a_img_3_a46a4", + "legacy/ebdb68eee908e325388366d6e81158218798628a_img_4_62d57", + "legacy/ebdb68eee908e325388366d6e81158218798628a_img_5_13930", + "legacy/ebdb68eee908e325388366d6e81158218798628a_img_6_16a61", + "legacy/ebdb68eee908e325388366d6e81158218798628a_img_7_3fa77" + ], + "gallery_urls": [ + "https://www.compass.com/m/ebdb68eee908e325388366d6e81158218798628a_img_0_d80a5/640x480.jpg", + "https://www.compass.com/m/ebdb68eee908e325388366d6e81158218798628a_img_1_9dc16/640x480.jpg", + "https://www.compass.com/m/ebdb68eee908e325388366d6e81158218798628a_img_2_c1fdf/640x480.jpg", + "https://www.compass.com/m/ebdb68eee908e325388366d6e81158218798628a_img_3_a46a4/640x480.jpg", + "https://www.compass.com/m/ebdb68eee908e325388366d6e81158218798628a_img_4_62d57/640x480.jpg", + "https://www.compass.com/m/ebdb68eee908e325388366d6e81158218798628a_img_5_13930/640x480.jpg", + "https://www.compass.com/m/ebdb68eee908e325388366d6e81158218798628a_img_6_16a61/640x480.jpg", + "https://www.compass.com/m/ebdb68eee908e325388366d6e81158218798628a_img_7_3fa77/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2544-W-North-Ave-Unit-2B-Chicago-IL-60647/1XOFDT_pid/" + }, + { + "listing_id": "2103259434388621545", + "slug": "1600-w-greenleaf-ave-unit-303-chicago-il-60626", + "title": "$163,000", + "price": 163000, + "is_rent": false, + "street": "1600 West Greenleaf Avenue, Unit 303", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60626", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 42.0106249, + "longitude": -87.670519, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/8c2b0da7-1e41-4c13-8422-97dce9a9ce18", + "gallery_uuids": [ + "uuid/8c2b0da7-1e41-4c13-8422-97dce9a9ce18", + "uuid/55838156-03b7-435e-bccd-419de41f0455" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/8c2b0da7-1e41-4c13-8422-97dce9a9ce18/1500x844.jpg", + "https://www.compass.com/m/0/55838156-03b7-435e-bccd-419de41f0455/1500x844.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/1600-W-Greenleaf-Ave-Unit-303-Chicago-IL-60626/1VLSNL_pid/" + }, + { + "listing_id": "2087944413975360473", + "slug": "1946-w-armitage-ave-chicago-il-60622", + "title": "$1,099,000", + "price": 1099000, + "is_rent": false, + "street": "1946 West Armitage Avenue", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60622", + "beds": 5, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": null, + "latitude": 41.9179803, + "longitude": -87.6770214, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/376f36e76b1f6528f96cb43679b5c3cb6d508431_img_0_29059", + "gallery_uuids": [ + "legacy/376f36e76b1f6528f96cb43679b5c3cb6d508431_img_0_29059", + "legacy/376f36e76b1f6528f96cb43679b5c3cb6d508431_img_1_449c2", + "legacy/376f36e76b1f6528f96cb43679b5c3cb6d508431_img_2_736dc", + "legacy/376f36e76b1f6528f96cb43679b5c3cb6d508431_img_3_4961b", + "legacy/376f36e76b1f6528f96cb43679b5c3cb6d508431_img_4_071a0", + "legacy/376f36e76b1f6528f96cb43679b5c3cb6d508431_img_5_d3eed", + "legacy/376f36e76b1f6528f96cb43679b5c3cb6d508431_img_6_850c5", + "legacy/376f36e76b1f6528f96cb43679b5c3cb6d508431_img_7_c84bf" + ], + "gallery_urls": [ + "https://www.compass.com/m/376f36e76b1f6528f96cb43679b5c3cb6d508431_img_0_29059/640x480.jpg", + "https://www.compass.com/m/376f36e76b1f6528f96cb43679b5c3cb6d508431_img_1_449c2/640x480.jpg", + "https://www.compass.com/m/376f36e76b1f6528f96cb43679b5c3cb6d508431_img_2_736dc/640x480.jpg", + "https://www.compass.com/m/376f36e76b1f6528f96cb43679b5c3cb6d508431_img_3_4961b/640x480.jpg", + "https://www.compass.com/m/376f36e76b1f6528f96cb43679b5c3cb6d508431_img_4_071a0/640x480.jpg", + "https://www.compass.com/m/376f36e76b1f6528f96cb43679b5c3cb6d508431_img_5_d3eed/640x480.jpg", + "https://www.compass.com/m/376f36e76b1f6528f96cb43679b5c3cb6d508431_img_6_850c5/640x480.jpg", + "https://www.compass.com/m/376f36e76b1f6528f96cb43679b5c3cb6d508431_img_7_c84bf/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/1946-W-Armitage-Ave-Chicago-IL-60622/1UADSP_pid/" + }, + { + "listing_id": "2099654964609848473", + "slug": "2926-w-lyndale-st-chicago-il-60647", + "title": "$1,100,000", + "price": 1100000, + "is_rent": false, + "street": "2926 West Lyndale Street", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60647", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": null, + "latitude": 41.9225787, + "longitude": -87.70103809999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/702524ad7687edfd960dd89d6b2402c784a4b145_img_0_b2c71", + "gallery_uuids": [ + "legacy/702524ad7687edfd960dd89d6b2402c784a4b145_img_0_b2c71", + "legacy/702524ad7687edfd960dd89d6b2402c784a4b145_img_1_fec7f", + "legacy/702524ad7687edfd960dd89d6b2402c784a4b145_img_2_217f7", + "legacy/702524ad7687edfd960dd89d6b2402c784a4b145_img_3_50004", + "legacy/702524ad7687edfd960dd89d6b2402c784a4b145_img_4_a97fa", + "legacy/702524ad7687edfd960dd89d6b2402c784a4b145_img_5_8aa8a", + "legacy/702524ad7687edfd960dd89d6b2402c784a4b145_img_6_f3a3f", + "legacy/702524ad7687edfd960dd89d6b2402c784a4b145_img_7_b2dd9" + ], + "gallery_urls": [ + "https://www.compass.com/m/702524ad7687edfd960dd89d6b2402c784a4b145_img_0_b2c71/640x480.jpg", + "https://www.compass.com/m/702524ad7687edfd960dd89d6b2402c784a4b145_img_1_fec7f/640x480.jpg", + "https://www.compass.com/m/702524ad7687edfd960dd89d6b2402c784a4b145_img_2_217f7/640x480.jpg", + "https://www.compass.com/m/702524ad7687edfd960dd89d6b2402c784a4b145_img_3_50004/640x480.jpg", + "https://www.compass.com/m/702524ad7687edfd960dd89d6b2402c784a4b145_img_4_a97fa/640x480.jpg", + "https://www.compass.com/m/702524ad7687edfd960dd89d6b2402c784a4b145_img_5_8aa8a/640x480.jpg", + "https://www.compass.com/m/702524ad7687edfd960dd89d6b2402c784a4b145_img_6_f3a3f/640x480.jpg", + "https://www.compass.com/m/702524ad7687edfd960dd89d6b2402c784a4b145_img_7_b2dd9/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2926-W-Lyndale-St-Chicago-IL-60647/1VR6CO_pid/" + }, + { + "listing_id": "2064114763598202257", + "slug": "253-e-delaware-pl-unit-22b-chicago-il-60611", + "title": "$189,000", + "price": 189000, + "is_rent": false, + "street": "253 East Delaware Place, Unit 22B", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60611", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 650, + "latitude": 41.8990955, + "longitude": -87.6198735, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Virtual Tour" + ], + "hero_uuid": "legacy/e9fd9e56620052b2170a0cf53aad88eb6c8c8ffa_img_0_f0414", + "gallery_uuids": [ + "legacy/e9fd9e56620052b2170a0cf53aad88eb6c8c8ffa_img_0_f0414", + "legacy/e9fd9e56620052b2170a0cf53aad88eb6c8c8ffa_img_1_b1f4b", + "legacy/e9fd9e56620052b2170a0cf53aad88eb6c8c8ffa_img_2_ab7f9", + "legacy/e9fd9e56620052b2170a0cf53aad88eb6c8c8ffa_img_3_cccd9", + "legacy/e9fd9e56620052b2170a0cf53aad88eb6c8c8ffa_img_4_22d6b", + "legacy/e9fd9e56620052b2170a0cf53aad88eb6c8c8ffa_img_5_c2e0a", + "legacy/e9fd9e56620052b2170a0cf53aad88eb6c8c8ffa_img_6_36521", + "legacy/e9fd9e56620052b2170a0cf53aad88eb6c8c8ffa_img_7_48a6e" + ], + "gallery_urls": [ + "https://www.compass.com/m/e9fd9e56620052b2170a0cf53aad88eb6c8c8ffa_img_0_f0414/640x480.jpg", + "https://www.compass.com/m/e9fd9e56620052b2170a0cf53aad88eb6c8c8ffa_img_1_b1f4b/640x480.jpg", + "https://www.compass.com/m/e9fd9e56620052b2170a0cf53aad88eb6c8c8ffa_img_2_ab7f9/640x480.jpg", + "https://www.compass.com/m/e9fd9e56620052b2170a0cf53aad88eb6c8c8ffa_img_3_cccd9/640x480.jpg", + "https://www.compass.com/m/e9fd9e56620052b2170a0cf53aad88eb6c8c8ffa_img_4_22d6b/640x480.jpg", + "https://www.compass.com/m/e9fd9e56620052b2170a0cf53aad88eb6c8c8ffa_img_5_c2e0a/640x480.jpg", + "https://www.compass.com/m/e9fd9e56620052b2170a0cf53aad88eb6c8c8ffa_img_6_36521/640x480.jpg", + "https://www.compass.com/m/e9fd9e56620052b2170a0cf53aad88eb6c8c8ffa_img_7_48a6e/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/253-E-Delaware-Pl-Unit-22B-Chicago-IL-60611/1VPBJC_pid/" + }, + { + "listing_id": "2102975877501630305", + "slug": "4627-n-kenmore-ave-unit-1e-chicago-il-60640", + "title": "$425,000", + "price": 425000, + "is_rent": false, + "street": "4627 North Kenmore Avenue, Unit 1E", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60640", + "beds": 2, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1500, + "latitude": 41.96628339999999, + "longitude": -87.6558975, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/cd8b5eb2cdf62a19ee2e3ce47f3720f398963e91_img_0_44307", + "gallery_uuids": [ + "legacy/cd8b5eb2cdf62a19ee2e3ce47f3720f398963e91_img_0_44307", + "legacy/cd8b5eb2cdf62a19ee2e3ce47f3720f398963e91_img_1_22dad", + "legacy/cd8b5eb2cdf62a19ee2e3ce47f3720f398963e91_img_2_975da", + "legacy/cd8b5eb2cdf62a19ee2e3ce47f3720f398963e91_img_3_2071c", + "legacy/cd8b5eb2cdf62a19ee2e3ce47f3720f398963e91_img_4_cd87a", + "legacy/cd8b5eb2cdf62a19ee2e3ce47f3720f398963e91_img_5_b2e5b", + "legacy/cd8b5eb2cdf62a19ee2e3ce47f3720f398963e91_img_6_bdefe", + "legacy/cd8b5eb2cdf62a19ee2e3ce47f3720f398963e91_img_7_8cb97" + ], + "gallery_urls": [ + "https://www.compass.com/m/cd8b5eb2cdf62a19ee2e3ce47f3720f398963e91_img_0_44307/640x480.jpg", + "https://www.compass.com/m/cd8b5eb2cdf62a19ee2e3ce47f3720f398963e91_img_1_22dad/640x480.jpg", + "https://www.compass.com/m/cd8b5eb2cdf62a19ee2e3ce47f3720f398963e91_img_2_975da/640x480.jpg", + "https://www.compass.com/m/cd8b5eb2cdf62a19ee2e3ce47f3720f398963e91_img_3_2071c/640x480.jpg", + "https://www.compass.com/m/cd8b5eb2cdf62a19ee2e3ce47f3720f398963e91_img_4_cd87a/640x480.jpg", + "https://www.compass.com/m/cd8b5eb2cdf62a19ee2e3ce47f3720f398963e91_img_5_b2e5b/640x480.jpg", + "https://www.compass.com/m/cd8b5eb2cdf62a19ee2e3ce47f3720f398963e91_img_6_bdefe/640x480.jpg", + "https://www.compass.com/m/cd8b5eb2cdf62a19ee2e3ce47f3720f398963e91_img_7_8cb97/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/4627-N-Kenmore-Ave-Unit-1E-Chicago-IL-60640/1W167Y_pid/" + }, + { + "listing_id": "2101488691888105137", + "slug": "4043-n-damen-ave-unit-4-chicago-il-60618", + "title": "$789,000", + "price": 789000, + "is_rent": false, + "street": "4043 North Damen Avenue, Unit 4", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60618", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 41.9555113, + "longitude": -87.6785163, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/cdd936db5908c7d65357e1c538d94510ad263c42_img_0_5097c", + "gallery_uuids": [ + "legacy/cdd936db5908c7d65357e1c538d94510ad263c42_img_0_5097c", + "legacy/cdd936db5908c7d65357e1c538d94510ad263c42_img_1_66d2e" + ], + "gallery_urls": [ + "https://www.compass.com/m/cdd936db5908c7d65357e1c538d94510ad263c42_img_0_5097c/640x480.jpg", + "https://www.compass.com/m/cdd936db5908c7d65357e1c538d94510ad263c42_img_1_66d2e/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/4043-N-Damen-Ave-Unit-4-Chicago-IL-60618/1WP1DF_pid/" + }, + { + "listing_id": "2103161003217330249", + "slug": "1639-n-dayton-st-chicago-il-60614", + "title": "$2,795,000", + "price": 2795000, + "is_rent": false, + "street": "1639 North Dayton Street", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60614", + "beds": 6, + "baths": 6.0, + "baths_full": 4, + "baths_half": null, + "sqft": null, + "latitude": 41.9120419, + "longitude": -87.6492688, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/f114a1697500f71e963e12e39234f397143c695f_img_0_2d381", + "gallery_uuids": [ + "legacy/f114a1697500f71e963e12e39234f397143c695f_img_0_2d381", + "legacy/f114a1697500f71e963e12e39234f397143c695f_img_1_770f0", + "legacy/f114a1697500f71e963e12e39234f397143c695f_img_2_3ddaf", + "legacy/f114a1697500f71e963e12e39234f397143c695f_img_3_ccdc4", + "legacy/f114a1697500f71e963e12e39234f397143c695f_img_4_70ecd", + "legacy/f114a1697500f71e963e12e39234f397143c695f_img_5_23b71", + "legacy/f114a1697500f71e963e12e39234f397143c695f_img_6_713e3", + "legacy/f114a1697500f71e963e12e39234f397143c695f_img_7_a0300" + ], + "gallery_urls": [ + "https://www.compass.com/m/f114a1697500f71e963e12e39234f397143c695f_img_0_2d381/640x480.jpg", + "https://www.compass.com/m/f114a1697500f71e963e12e39234f397143c695f_img_1_770f0/640x480.jpg", + "https://www.compass.com/m/f114a1697500f71e963e12e39234f397143c695f_img_2_3ddaf/640x480.jpg", + "https://www.compass.com/m/f114a1697500f71e963e12e39234f397143c695f_img_3_ccdc4/640x480.jpg", + "https://www.compass.com/m/f114a1697500f71e963e12e39234f397143c695f_img_4_70ecd/640x480.jpg", + "https://www.compass.com/m/f114a1697500f71e963e12e39234f397143c695f_img_5_23b71/640x480.jpg", + "https://www.compass.com/m/f114a1697500f71e963e12e39234f397143c695f_img_6_713e3/640x480.jpg", + "https://www.compass.com/m/f114a1697500f71e963e12e39234f397143c695f_img_7_a0300/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/1639-N-Dayton-St-Chicago-IL-60614/1VTVUT_pid/" + }, + { + "listing_id": "2064533834487885121", + "slug": "815-n-marshfield-ave-unit-204-chicago-il-60622", + "title": "$550,000", + "price": 550000, + "is_rent": false, + "street": "815 North Marshfield Avenue, Unit 204", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60622", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1100, + "latitude": 41.8966357, + "longitude": -87.6682134, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/87d848bfa23029599b8dddfe3d23136b0aaf57b9_img_0_e2f02", + "gallery_uuids": [ + "legacy/87d848bfa23029599b8dddfe3d23136b0aaf57b9_img_0_e2f02" + ], + "gallery_urls": [ + "https://www.compass.com/m/87d848bfa23029599b8dddfe3d23136b0aaf57b9_img_0_e2f02/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/815-N-Marshfield-Ave-Unit-204-Chicago-IL-60622/1WRZR0_pid/" + }, + { + "listing_id": "2098989821731341033", + "slug": "4152-n-damen-ave-chicago-il-60618", + "title": "$1,095,000", + "price": 1095000, + "is_rent": false, + "street": "4152 North Damen Avenue", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60618", + "beds": 5, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": null, + "latitude": 41.95752840000001, + "longitude": -87.6791052, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/248bf9170f8e41c089bc143b6cb3206e0b7fbd93_img_0_5b225", + "gallery_uuids": [ + "legacy/248bf9170f8e41c089bc143b6cb3206e0b7fbd93_img_0_5b225", + "legacy/248bf9170f8e41c089bc143b6cb3206e0b7fbd93_img_1_964c8", + "legacy/248bf9170f8e41c089bc143b6cb3206e0b7fbd93_img_2_2392f", + "legacy/248bf9170f8e41c089bc143b6cb3206e0b7fbd93_img_3_c4495", + "legacy/248bf9170f8e41c089bc143b6cb3206e0b7fbd93_img_4_51b48", + "legacy/248bf9170f8e41c089bc143b6cb3206e0b7fbd93_img_5_3d6cf", + "legacy/248bf9170f8e41c089bc143b6cb3206e0b7fbd93_img_6_8a3f6", + "legacy/248bf9170f8e41c089bc143b6cb3206e0b7fbd93_img_7_5577d" + ], + "gallery_urls": [ + "https://www.compass.com/m/248bf9170f8e41c089bc143b6cb3206e0b7fbd93_img_0_5b225/640x480.jpg", + "https://www.compass.com/m/248bf9170f8e41c089bc143b6cb3206e0b7fbd93_img_1_964c8/640x480.jpg", + "https://www.compass.com/m/248bf9170f8e41c089bc143b6cb3206e0b7fbd93_img_2_2392f/640x480.jpg", + "https://www.compass.com/m/248bf9170f8e41c089bc143b6cb3206e0b7fbd93_img_3_c4495/640x480.jpg", + "https://www.compass.com/m/248bf9170f8e41c089bc143b6cb3206e0b7fbd93_img_4_51b48/640x480.jpg", + "https://www.compass.com/m/248bf9170f8e41c089bc143b6cb3206e0b7fbd93_img_5_3d6cf/640x480.jpg", + "https://www.compass.com/m/248bf9170f8e41c089bc143b6cb3206e0b7fbd93_img_6_8a3f6/640x480.jpg", + "https://www.compass.com/m/248bf9170f8e41c089bc143b6cb3206e0b7fbd93_img_7_5577d/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/4152-N-Damen-Ave-Chicago-IL-60618/1W7N03_pid/" + }, + { + "listing_id": "2101686777931183913", + "slug": "2252-w-chicago-ave-unit-5s-chicago-il-60622", + "title": "$965,000", + "price": 965000, + "is_rent": false, + "street": "2252 West Chicago Avenue, Unit 5S", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60622", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 41.896059, + "longitude": -87.684026, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/acf3b43641b7861e344c7af04085926597ebc457_img_0_adf70", + "gallery_uuids": [ + "legacy/acf3b43641b7861e344c7af04085926597ebc457_img_0_adf70", + "legacy/acf3b43641b7861e344c7af04085926597ebc457_img_1_dcbec", + "legacy/acf3b43641b7861e344c7af04085926597ebc457_img_2_1e896", + "legacy/acf3b43641b7861e344c7af04085926597ebc457_img_3_b6d1a", + "legacy/acf3b43641b7861e344c7af04085926597ebc457_img_4_a20df", + "legacy/acf3b43641b7861e344c7af04085926597ebc457_img_5_829a8", + "legacy/acf3b43641b7861e344c7af04085926597ebc457_img_6_095e9", + "legacy/acf3b43641b7861e344c7af04085926597ebc457_img_7_581f8" + ], + "gallery_urls": [ + "https://www.compass.com/m/acf3b43641b7861e344c7af04085926597ebc457_img_0_adf70/640x480.jpg", + "https://www.compass.com/m/acf3b43641b7861e344c7af04085926597ebc457_img_1_dcbec/640x480.jpg", + "https://www.compass.com/m/acf3b43641b7861e344c7af04085926597ebc457_img_2_1e896/640x480.jpg", + "https://www.compass.com/m/acf3b43641b7861e344c7af04085926597ebc457_img_3_b6d1a/640x480.jpg", + "https://www.compass.com/m/acf3b43641b7861e344c7af04085926597ebc457_img_4_a20df/640x480.jpg", + "https://www.compass.com/m/acf3b43641b7861e344c7af04085926597ebc457_img_5_829a8/640x480.jpg", + "https://www.compass.com/m/acf3b43641b7861e344c7af04085926597ebc457_img_6_095e9/640x480.jpg", + "https://www.compass.com/m/acf3b43641b7861e344c7af04085926597ebc457_img_7_581f8/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2252-W-Chicago-Ave-Unit-5S-Chicago-IL-60622/27H2RE_pid/" + }, + { + "listing_id": "2033615864404325137", + "slug": "1702-n-campbell-ave-chicago-il-60647", + "title": "$1,200,000", + "price": 1200000, + "is_rent": false, + "street": "1702 North Campbell Avenue", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60647", + "beds": 7, + "baths": 4.0, + "baths_full": 4, + "baths_half": null, + "sqft": null, + "latitude": 41.9123167, + "longitude": -87.6899866, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/bd24496d663abdd7d0eedf7ced2771b47e3b2087_img_0_3b517", + "gallery_uuids": [ + "legacy/bd24496d663abdd7d0eedf7ced2771b47e3b2087_img_0_3b517", + "legacy/bd24496d663abdd7d0eedf7ced2771b47e3b2087_img_1_641cf", + "legacy/bd24496d663abdd7d0eedf7ced2771b47e3b2087_img_2_24174", + "legacy/bd24496d663abdd7d0eedf7ced2771b47e3b2087_img_3_3b9ad", + "legacy/bd24496d663abdd7d0eedf7ced2771b47e3b2087_img_4_c42f1", + "legacy/bd24496d663abdd7d0eedf7ced2771b47e3b2087_img_5_7a167", + "legacy/bd24496d663abdd7d0eedf7ced2771b47e3b2087_img_6_2be61", + "legacy/bd24496d663abdd7d0eedf7ced2771b47e3b2087_img_7_3c8cb" + ], + "gallery_urls": [ + "https://www.compass.com/m/bd24496d663abdd7d0eedf7ced2771b47e3b2087_img_0_3b517/640x480.jpg", + "https://www.compass.com/m/bd24496d663abdd7d0eedf7ced2771b47e3b2087_img_1_641cf/640x480.jpg", + "https://www.compass.com/m/bd24496d663abdd7d0eedf7ced2771b47e3b2087_img_2_24174/640x480.jpg", + "https://www.compass.com/m/bd24496d663abdd7d0eedf7ced2771b47e3b2087_img_3_3b9ad/640x480.jpg", + "https://www.compass.com/m/bd24496d663abdd7d0eedf7ced2771b47e3b2087_img_4_c42f1/640x480.jpg", + "https://www.compass.com/m/bd24496d663abdd7d0eedf7ced2771b47e3b2087_img_5_7a167/640x480.jpg", + "https://www.compass.com/m/bd24496d663abdd7d0eedf7ced2771b47e3b2087_img_6_2be61/640x480.jpg", + "https://www.compass.com/m/bd24496d663abdd7d0eedf7ced2771b47e3b2087_img_7_3c8cb/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/1702-N-Campbell-Ave-Chicago-IL-60647/1WTGJW_pid/" + }, + { + "listing_id": "2101674648649591921", + "slug": "2252-w-chicago-ave-unit-2s-chicago-il-60622", + "title": "$845,000", + "price": 845000, + "is_rent": false, + "street": "2252 West Chicago Avenue, Unit 2S", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60622", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 41.896059, + "longitude": -87.684026, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/e3cb5fdf295c38c1dd845437104f6ed51e85ebae_img_0_adf70", + "gallery_uuids": [ + "legacy/e3cb5fdf295c38c1dd845437104f6ed51e85ebae_img_0_adf70", + "legacy/e3cb5fdf295c38c1dd845437104f6ed51e85ebae_img_1_dcbec", + "legacy/e3cb5fdf295c38c1dd845437104f6ed51e85ebae_img_2_1e896", + "legacy/e3cb5fdf295c38c1dd845437104f6ed51e85ebae_img_3_b6d1a", + "legacy/e3cb5fdf295c38c1dd845437104f6ed51e85ebae_img_4_a20df", + "legacy/e3cb5fdf295c38c1dd845437104f6ed51e85ebae_img_5_829a8", + "legacy/e3cb5fdf295c38c1dd845437104f6ed51e85ebae_img_6_1d8cc" + ], + "gallery_urls": [ + "https://www.compass.com/m/e3cb5fdf295c38c1dd845437104f6ed51e85ebae_img_0_adf70/640x480.jpg", + "https://www.compass.com/m/e3cb5fdf295c38c1dd845437104f6ed51e85ebae_img_1_dcbec/640x480.jpg", + "https://www.compass.com/m/e3cb5fdf295c38c1dd845437104f6ed51e85ebae_img_2_1e896/640x480.jpg", + "https://www.compass.com/m/e3cb5fdf295c38c1dd845437104f6ed51e85ebae_img_3_b6d1a/640x480.jpg", + "https://www.compass.com/m/e3cb5fdf295c38c1dd845437104f6ed51e85ebae_img_4_a20df/640x480.jpg", + "https://www.compass.com/m/e3cb5fdf295c38c1dd845437104f6ed51e85ebae_img_5_829a8/640x480.jpg", + "https://www.compass.com/m/e3cb5fdf295c38c1dd845437104f6ed51e85ebae_img_6_1d8cc/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2252-W-Chicago-Ave-Unit-2S-Chicago-IL-60622/26ZSO2_pid/" + }, + { + "listing_id": "2098881613679058521", + "slug": "2707-w-belmont-ave-unit-3e-chicago-il-60618", + "title": "$625,000", + "price": 625000, + "is_rent": false, + "street": "2707 West Belmont Avenue, Unit 3E", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60618", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1700, + "latitude": 41.9391861, + "longitude": -87.6957357, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Virtual Tour" + ], + "hero_uuid": "legacy/ef60e4c9601c2ed337e537127d14a9de889f16f3_img_0_91c54", + "gallery_uuids": [ + "legacy/ef60e4c9601c2ed337e537127d14a9de889f16f3_img_0_91c54", + "legacy/ef60e4c9601c2ed337e537127d14a9de889f16f3_img_1_bf233", + "legacy/ef60e4c9601c2ed337e537127d14a9de889f16f3_img_2_f2981", + "legacy/ef60e4c9601c2ed337e537127d14a9de889f16f3_img_3_947bb", + "legacy/ef60e4c9601c2ed337e537127d14a9de889f16f3_img_4_ff65d", + "legacy/ef60e4c9601c2ed337e537127d14a9de889f16f3_img_5_258ca", + "legacy/ef60e4c9601c2ed337e537127d14a9de889f16f3_img_6_d16ac", + "legacy/ef60e4c9601c2ed337e537127d14a9de889f16f3_img_7_0cfa7" + ], + "gallery_urls": [ + "https://www.compass.com/m/ef60e4c9601c2ed337e537127d14a9de889f16f3_img_0_91c54/640x480.jpg", + "https://www.compass.com/m/ef60e4c9601c2ed337e537127d14a9de889f16f3_img_1_bf233/640x480.jpg", + "https://www.compass.com/m/ef60e4c9601c2ed337e537127d14a9de889f16f3_img_2_f2981/640x480.jpg", + "https://www.compass.com/m/ef60e4c9601c2ed337e537127d14a9de889f16f3_img_3_947bb/640x480.jpg", + "https://www.compass.com/m/ef60e4c9601c2ed337e537127d14a9de889f16f3_img_4_ff65d/640x480.jpg", + "https://www.compass.com/m/ef60e4c9601c2ed337e537127d14a9de889f16f3_img_5_258ca/640x480.jpg", + "https://www.compass.com/m/ef60e4c9601c2ed337e537127d14a9de889f16f3_img_6_d16ac/640x480.jpg", + "https://www.compass.com/m/ef60e4c9601c2ed337e537127d14a9de889f16f3_img_7_0cfa7/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2707-W-Belmont-Ave-Unit-3E-Chicago-IL-60618/1WIDXC_pid/" + }, + { + "listing_id": "2101071258916471945", + "slug": "4755-n-washtenaw-ave-unit-407-chicago-il-60625", + "title": "$425,000", + "price": 425000, + "is_rent": false, + "street": "4755 North Washtenaw Avenue, Unit 407", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60625", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 41.9682995, + "longitude": -87.69596299999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/71713e93080f0263bcf1fee7dd7e6300c403855f_img_0_6a699", + "gallery_uuids": [ + "legacy/71713e93080f0263bcf1fee7dd7e6300c403855f_img_0_6a699" + ], + "gallery_urls": [ + "https://www.compass.com/m/71713e93080f0263bcf1fee7dd7e6300c403855f_img_0_6a699/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/4755-N-Washtenaw-Ave-Unit-407-Chicago-IL-60625/1WKKN7_pid/" + }, + { + "listing_id": "2089265470199710337", + "slug": "2120-n-lincoln-park-w-unit-15-chicago-il-60614", + "title": "$4,100,000", + "price": 4100000, + "is_rent": false, + "street": "2120 North Lincoln Park West, Unit 15", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60614", + "beds": 3, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 4400, + "latitude": 41.9208673, + "longitude": -87.6366482, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/181cf18efe614d673330f2a0e89897344954f575_img_0_3d781", + "gallery_uuids": [ + "legacy/181cf18efe614d673330f2a0e89897344954f575_img_0_3d781", + "legacy/181cf18efe614d673330f2a0e89897344954f575_img_1_72e19", + "legacy/181cf18efe614d673330f2a0e89897344954f575_img_2_f4124", + "legacy/181cf18efe614d673330f2a0e89897344954f575_img_3_eecb4", + "legacy/181cf18efe614d673330f2a0e89897344954f575_img_4_b4520", + "legacy/181cf18efe614d673330f2a0e89897344954f575_img_5_5f9c4", + "legacy/181cf18efe614d673330f2a0e89897344954f575_img_6_73c7f", + "legacy/181cf18efe614d673330f2a0e89897344954f575_img_7_a07df" + ], + "gallery_urls": [ + "https://www.compass.com/m/181cf18efe614d673330f2a0e89897344954f575_img_0_3d781/640x480.jpg", + "https://www.compass.com/m/181cf18efe614d673330f2a0e89897344954f575_img_1_72e19/640x480.jpg", + "https://www.compass.com/m/181cf18efe614d673330f2a0e89897344954f575_img_2_f4124/640x480.jpg", + "https://www.compass.com/m/181cf18efe614d673330f2a0e89897344954f575_img_3_eecb4/640x480.jpg", + "https://www.compass.com/m/181cf18efe614d673330f2a0e89897344954f575_img_4_b4520/640x480.jpg", + "https://www.compass.com/m/181cf18efe614d673330f2a0e89897344954f575_img_5_5f9c4/640x480.jpg", + "https://www.compass.com/m/181cf18efe614d673330f2a0e89897344954f575_img_6_73c7f/640x480.jpg", + "https://www.compass.com/m/181cf18efe614d673330f2a0e89897344954f575_img_7_a07df/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2120-N-Lincoln-Park-W-Unit-15-Chicago-IL-60614/1XBS1G_pid/" + }, + { + "listing_id": "2103158979654813449", + "slug": "2715-n-bosworth-ave-chicago-il-60614", + "title": "$2,295,000", + "price": 2295000, + "is_rent": false, + "street": "2715 North Bosworth Avenue", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60614", + "beds": 5, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": null, + "latitude": 41.9310716, + "longitude": -87.6667993, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/3cdf6a1908d867c4fc560836b9b4e1d5e324822d_img_0_e7983", + "gallery_uuids": [ + "legacy/3cdf6a1908d867c4fc560836b9b4e1d5e324822d_img_0_e7983", + "legacy/3cdf6a1908d867c4fc560836b9b4e1d5e324822d_img_1_4794c", + "legacy/3cdf6a1908d867c4fc560836b9b4e1d5e324822d_img_2_22847", + "legacy/3cdf6a1908d867c4fc560836b9b4e1d5e324822d_img_3_d925e", + "legacy/3cdf6a1908d867c4fc560836b9b4e1d5e324822d_img_4_c5045", + "legacy/3cdf6a1908d867c4fc560836b9b4e1d5e324822d_img_5_67a05", + "legacy/3cdf6a1908d867c4fc560836b9b4e1d5e324822d_img_6_3e36a", + "legacy/3cdf6a1908d867c4fc560836b9b4e1d5e324822d_img_7_abb1e" + ], + "gallery_urls": [ + "https://www.compass.com/m/3cdf6a1908d867c4fc560836b9b4e1d5e324822d_img_0_e7983/640x480.jpg", + "https://www.compass.com/m/3cdf6a1908d867c4fc560836b9b4e1d5e324822d_img_1_4794c/640x480.jpg", + "https://www.compass.com/m/3cdf6a1908d867c4fc560836b9b4e1d5e324822d_img_2_22847/640x480.jpg", + "https://www.compass.com/m/3cdf6a1908d867c4fc560836b9b4e1d5e324822d_img_3_d925e/640x480.jpg", + "https://www.compass.com/m/3cdf6a1908d867c4fc560836b9b4e1d5e324822d_img_4_c5045/640x480.jpg", + "https://www.compass.com/m/3cdf6a1908d867c4fc560836b9b4e1d5e324822d_img_5_67a05/640x480.jpg", + "https://www.compass.com/m/3cdf6a1908d867c4fc560836b9b4e1d5e324822d_img_6_3e36a/640x480.jpg", + "https://www.compass.com/m/3cdf6a1908d867c4fc560836b9b4e1d5e324822d_img_7_abb1e/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2715-N-Bosworth-Ave-Chicago-IL-60614/27I5VS_pid/" + }, + { + "listing_id": "2084062672234643817", + "slug": "449-w-fullerton-ave-chicago-il-60614", + "title": "$1,995,000", + "price": 1995000, + "is_rent": false, + "street": "449 West Fullerton Avenue", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60614", + "beds": 4, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": null, + "latitude": 41.925331465021394, + "longitude": -87.64105148757808, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/c76ccb35b63155bc683e74f27ce6fef04132af2b_img_0_b3466", + "gallery_uuids": [ + "legacy/c76ccb35b63155bc683e74f27ce6fef04132af2b_img_0_b3466" + ], + "gallery_urls": [ + "https://www.compass.com/m/c76ccb35b63155bc683e74f27ce6fef04132af2b_img_0_b3466/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/449-W-Fullerton-Ave-Chicago-IL-60614/1XKIHY_pid/" + }, + { + "listing_id": "2088686925983473945", + "slug": "1032-n-wood-st-chicago-il-60622", + "title": "$2,599,000", + "price": 2599000, + "is_rent": false, + "street": "1032 North Wood Street", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60622", + "beds": 6, + "baths": 6.0, + "baths_full": 4, + "baths_half": null, + "sqft": 5000, + "latitude": 41.9006276, + "longitude": -87.6725318, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/13e9d8e109e89626f403637c56b3d05b1a081ac2_img_0_3e615", + "gallery_uuids": [ + "legacy/13e9d8e109e89626f403637c56b3d05b1a081ac2_img_0_3e615", + "legacy/13e9d8e109e89626f403637c56b3d05b1a081ac2_img_1_13043", + "legacy/13e9d8e109e89626f403637c56b3d05b1a081ac2_img_2_d18b7", + "legacy/13e9d8e109e89626f403637c56b3d05b1a081ac2_img_3_91a14", + "legacy/13e9d8e109e89626f403637c56b3d05b1a081ac2_img_4_d8edc", + "legacy/13e9d8e109e89626f403637c56b3d05b1a081ac2_img_5_f18b5", + "legacy/13e9d8e109e89626f403637c56b3d05b1a081ac2_img_6_1693e", + "legacy/13e9d8e109e89626f403637c56b3d05b1a081ac2_img_7_e6dd1" + ], + "gallery_urls": [ + "https://www.compass.com/m/13e9d8e109e89626f403637c56b3d05b1a081ac2_img_0_3e615/640x480.jpg", + "https://www.compass.com/m/13e9d8e109e89626f403637c56b3d05b1a081ac2_img_1_13043/640x480.jpg", + "https://www.compass.com/m/13e9d8e109e89626f403637c56b3d05b1a081ac2_img_2_d18b7/640x480.jpg", + "https://www.compass.com/m/13e9d8e109e89626f403637c56b3d05b1a081ac2_img_3_91a14/640x480.jpg", + "https://www.compass.com/m/13e9d8e109e89626f403637c56b3d05b1a081ac2_img_4_d8edc/640x480.jpg", + "https://www.compass.com/m/13e9d8e109e89626f403637c56b3d05b1a081ac2_img_5_f18b5/640x480.jpg", + "https://www.compass.com/m/13e9d8e109e89626f403637c56b3d05b1a081ac2_img_6_1693e/640x480.jpg", + "https://www.compass.com/m/13e9d8e109e89626f403637c56b3d05b1a081ac2_img_7_e6dd1/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/1032-N-Wood-St-Chicago-IL-60622/1XCDEY_pid/" + }, + { + "listing_id": "2101146075136535953", + "slug": "2753-n-hermitage-ave-chicago-il-60614", + "title": "$999,000", + "price": 999000, + "is_rent": false, + "street": "2753 North Hermitage Avenue", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60614", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 41.93200239999999, + "longitude": -87.6719731, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/67d828132744962ef9bf9f4f854cb7094e7ce0bb_img_0_a1efb", + "gallery_uuids": [ + "legacy/67d828132744962ef9bf9f4f854cb7094e7ce0bb_img_0_a1efb", + "legacy/67d828132744962ef9bf9f4f854cb7094e7ce0bb_img_1_f0812", + "legacy/67d828132744962ef9bf9f4f854cb7094e7ce0bb_img_2_26217", + "legacy/67d828132744962ef9bf9f4f854cb7094e7ce0bb_img_3_1c3e6", + "legacy/67d828132744962ef9bf9f4f854cb7094e7ce0bb_img_4_06119", + "legacy/67d828132744962ef9bf9f4f854cb7094e7ce0bb_img_5_c658b", + "legacy/67d828132744962ef9bf9f4f854cb7094e7ce0bb_img_6_b3343", + "legacy/67d828132744962ef9bf9f4f854cb7094e7ce0bb_img_7_4c15b" + ], + "gallery_urls": [ + "https://www.compass.com/m/67d828132744962ef9bf9f4f854cb7094e7ce0bb_img_0_a1efb/640x480.jpg", + "https://www.compass.com/m/67d828132744962ef9bf9f4f854cb7094e7ce0bb_img_1_f0812/640x480.jpg", + "https://www.compass.com/m/67d828132744962ef9bf9f4f854cb7094e7ce0bb_img_2_26217/640x480.jpg", + "https://www.compass.com/m/67d828132744962ef9bf9f4f854cb7094e7ce0bb_img_3_1c3e6/640x480.jpg", + "https://www.compass.com/m/67d828132744962ef9bf9f4f854cb7094e7ce0bb_img_4_06119/640x480.jpg", + "https://www.compass.com/m/67d828132744962ef9bf9f4f854cb7094e7ce0bb_img_5_c658b/640x480.jpg", + "https://www.compass.com/m/67d828132744962ef9bf9f4f854cb7094e7ce0bb_img_6_b3343/640x480.jpg", + "https://www.compass.com/m/67d828132744962ef9bf9f4f854cb7094e7ce0bb_img_7_4c15b/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2753-N-Hermitage-Ave-Chicago-IL-60614/27H0UH_pid/" + }, + { + "listing_id": "2093173301929054457", + "slug": "2340-w-roscoe-st-unit-3w-chicago-il-60618", + "title": "$869,000", + "price": 869000, + "is_rent": false, + "street": "2340 West Roscoe Street, Unit 3W", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60618", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2400, + "latitude": 41.943397, + "longitude": -87.68731299999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/da4bb382c6c82ba5cc5cb70f697ec3001016a96b_img_0_71a76", + "gallery_uuids": [ + "legacy/da4bb382c6c82ba5cc5cb70f697ec3001016a96b_img_0_71a76" + ], + "gallery_urls": [ + "https://www.compass.com/m/da4bb382c6c82ba5cc5cb70f697ec3001016a96b_img_0_71a76/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2340-W-Roscoe-St-Unit-3W-Chicago-IL-60618/27D8E8_pid/" + }, + { + "listing_id": "2045193417050253617", + "slug": "2329-n-cambridge-ave-unit-g-chicago-il-60614", + "title": "$1,950,000", + "price": 1950000, + "is_rent": false, + "street": "2329 North Cambridge Avenue, Unit G", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60614", + "beds": 3, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2915, + "latitude": 41.924678360965785, + "longitude": -87.64229123475532, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/53496590fa2c814fe3950d7ac646762bda5f7edc_img_0_5b6e2", + "gallery_uuids": [ + "legacy/53496590fa2c814fe3950d7ac646762bda5f7edc_img_0_5b6e2", + "legacy/53496590fa2c814fe3950d7ac646762bda5f7edc_img_1_5f639", + "legacy/53496590fa2c814fe3950d7ac646762bda5f7edc_img_2_2eafe", + "legacy/53496590fa2c814fe3950d7ac646762bda5f7edc_img_3_f8eea", + "legacy/53496590fa2c814fe3950d7ac646762bda5f7edc_img_4_01bff", + "legacy/53496590fa2c814fe3950d7ac646762bda5f7edc_img_5_db80d", + "legacy/53496590fa2c814fe3950d7ac646762bda5f7edc_img_6_3e47e", + "legacy/53496590fa2c814fe3950d7ac646762bda5f7edc_img_7_c4c85" + ], + "gallery_urls": [ + "https://www.compass.com/m/53496590fa2c814fe3950d7ac646762bda5f7edc_img_0_5b6e2/640x480.jpg", + "https://www.compass.com/m/53496590fa2c814fe3950d7ac646762bda5f7edc_img_1_5f639/640x480.jpg", + "https://www.compass.com/m/53496590fa2c814fe3950d7ac646762bda5f7edc_img_2_2eafe/640x480.jpg", + "https://www.compass.com/m/53496590fa2c814fe3950d7ac646762bda5f7edc_img_3_f8eea/640x480.jpg", + "https://www.compass.com/m/53496590fa2c814fe3950d7ac646762bda5f7edc_img_4_01bff/640x480.jpg", + "https://www.compass.com/m/53496590fa2c814fe3950d7ac646762bda5f7edc_img_5_db80d/640x480.jpg", + "https://www.compass.com/m/53496590fa2c814fe3950d7ac646762bda5f7edc_img_6_3e47e/640x480.jpg", + "https://www.compass.com/m/53496590fa2c814fe3950d7ac646762bda5f7edc_img_7_c4c85/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2329-N-Cambridge-Ave-Unit-G-Chicago-IL-60614/26M089_pid/" + }, + { + "listing_id": "1942957581307470537", + "slug": "2117-n-bingham-st-chicago-il-60647", + "title": "$1,200,000", + "price": 1200000, + "is_rent": false, + "street": "2117 North Bingham Street", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60647", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": null, + "latitude": 41.919218, + "longitude": -87.692624, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/2509ff9bcdcfd87811a7c7cdfbd6159b1a0bfcb5_img_0_90916", + "gallery_uuids": [ + "legacy/2509ff9bcdcfd87811a7c7cdfbd6159b1a0bfcb5_img_0_90916", + "legacy/2509ff9bcdcfd87811a7c7cdfbd6159b1a0bfcb5_img_1_a756c", + "legacy/2509ff9bcdcfd87811a7c7cdfbd6159b1a0bfcb5_img_2_9c63f", + "legacy/2509ff9bcdcfd87811a7c7cdfbd6159b1a0bfcb5_img_3_9e1d4", + "legacy/2509ff9bcdcfd87811a7c7cdfbd6159b1a0bfcb5_img_4_c9b77", + "legacy/2509ff9bcdcfd87811a7c7cdfbd6159b1a0bfcb5_img_5_c1718", + "legacy/2509ff9bcdcfd87811a7c7cdfbd6159b1a0bfcb5_img_6_21d8b", + "legacy/2509ff9bcdcfd87811a7c7cdfbd6159b1a0bfcb5_img_7_c718e" + ], + "gallery_urls": [ + "https://www.compass.com/m/2509ff9bcdcfd87811a7c7cdfbd6159b1a0bfcb5_img_0_90916/640x480.jpg", + "https://www.compass.com/m/2509ff9bcdcfd87811a7c7cdfbd6159b1a0bfcb5_img_1_a756c/640x480.jpg", + "https://www.compass.com/m/2509ff9bcdcfd87811a7c7cdfbd6159b1a0bfcb5_img_2_9c63f/640x480.jpg", + "https://www.compass.com/m/2509ff9bcdcfd87811a7c7cdfbd6159b1a0bfcb5_img_3_9e1d4/640x480.jpg", + "https://www.compass.com/m/2509ff9bcdcfd87811a7c7cdfbd6159b1a0bfcb5_img_4_c9b77/640x480.jpg", + "https://www.compass.com/m/2509ff9bcdcfd87811a7c7cdfbd6159b1a0bfcb5_img_5_c1718/640x480.jpg", + "https://www.compass.com/m/2509ff9bcdcfd87811a7c7cdfbd6159b1a0bfcb5_img_6_21d8b/640x480.jpg", + "https://www.compass.com/m/2509ff9bcdcfd87811a7c7cdfbd6159b1a0bfcb5_img_7_c718e/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2117-N-Bingham-St-Chicago-IL-60647/1X803T_pid/" + }, + { + "listing_id": "2097945406758037993", + "slug": "421-w-huron-st-unit-604-chicago-il-60654", + "title": "$549,900", + "price": 549900, + "is_rent": false, + "street": "421 West Huron Street, Unit 604", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60654", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1195, + "latitude": 41.8944434, + "longitude": -87.6395533, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/601391486160ef3c03ef514c0f5d8b859eb20381_img_0_99638", + "gallery_uuids": [ + "legacy/601391486160ef3c03ef514c0f5d8b859eb20381_img_0_99638", + "legacy/601391486160ef3c03ef514c0f5d8b859eb20381_img_1_b5d90", + "legacy/601391486160ef3c03ef514c0f5d8b859eb20381_img_2_dc04a", + "legacy/601391486160ef3c03ef514c0f5d8b859eb20381_img_3_9a5b5", + "legacy/601391486160ef3c03ef514c0f5d8b859eb20381_img_4_56770", + "legacy/601391486160ef3c03ef514c0f5d8b859eb20381_img_5_3da6c", + "legacy/601391486160ef3c03ef514c0f5d8b859eb20381_img_6_a9a8d", + "legacy/601391486160ef3c03ef514c0f5d8b859eb20381_img_7_b3fbf" + ], + "gallery_urls": [ + "https://www.compass.com/m/601391486160ef3c03ef514c0f5d8b859eb20381_img_0_99638/640x480.jpg", + "https://www.compass.com/m/601391486160ef3c03ef514c0f5d8b859eb20381_img_1_b5d90/640x480.jpg", + "https://www.compass.com/m/601391486160ef3c03ef514c0f5d8b859eb20381_img_2_dc04a/640x480.jpg", + "https://www.compass.com/m/601391486160ef3c03ef514c0f5d8b859eb20381_img_3_9a5b5/640x480.jpg", + "https://www.compass.com/m/601391486160ef3c03ef514c0f5d8b859eb20381_img_4_56770/640x480.jpg", + "https://www.compass.com/m/601391486160ef3c03ef514c0f5d8b859eb20381_img_5_3da6c/640x480.jpg", + "https://www.compass.com/m/601391486160ef3c03ef514c0f5d8b859eb20381_img_6_a9a8d/640x480.jpg", + "https://www.compass.com/m/601391486160ef3c03ef514c0f5d8b859eb20381_img_7_b3fbf/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/421-W-Huron-St-Unit-604-Chicago-IL-60654/1XE4XC_pid/" + }, + { + "listing_id": "2045193330521720449", + "slug": "2329-n-cambridge-ave-unit-c-chicago-il-60614", + "title": "$2,100,000", + "price": 2100000, + "is_rent": false, + "street": "2329 North Cambridge Avenue, Unit C", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60614", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2930, + "latitude": 41.924678360965785, + "longitude": -87.64229123475532, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/60f967c0e3596a977b26187e2fbb555891eca011_img_0_5b6e2", + "gallery_uuids": [ + "legacy/60f967c0e3596a977b26187e2fbb555891eca011_img_0_5b6e2", + "legacy/60f967c0e3596a977b26187e2fbb555891eca011_img_1_5f639", + "legacy/60f967c0e3596a977b26187e2fbb555891eca011_img_2_2eafe", + "legacy/60f967c0e3596a977b26187e2fbb555891eca011_img_3_f8eea", + "legacy/60f967c0e3596a977b26187e2fbb555891eca011_img_4_01bff", + "legacy/60f967c0e3596a977b26187e2fbb555891eca011_img_5_db80d", + "legacy/60f967c0e3596a977b26187e2fbb555891eca011_img_6_3e47e", + "legacy/60f967c0e3596a977b26187e2fbb555891eca011_img_7_c4c85" + ], + "gallery_urls": [ + "https://www.compass.com/m/60f967c0e3596a977b26187e2fbb555891eca011_img_0_5b6e2/640x480.jpg", + "https://www.compass.com/m/60f967c0e3596a977b26187e2fbb555891eca011_img_1_5f639/640x480.jpg", + "https://www.compass.com/m/60f967c0e3596a977b26187e2fbb555891eca011_img_2_2eafe/640x480.jpg", + "https://www.compass.com/m/60f967c0e3596a977b26187e2fbb555891eca011_img_3_f8eea/640x480.jpg", + "https://www.compass.com/m/60f967c0e3596a977b26187e2fbb555891eca011_img_4_01bff/640x480.jpg", + "https://www.compass.com/m/60f967c0e3596a977b26187e2fbb555891eca011_img_5_db80d/640x480.jpg", + "https://www.compass.com/m/60f967c0e3596a977b26187e2fbb555891eca011_img_6_3e47e/640x480.jpg", + "https://www.compass.com/m/60f967c0e3596a977b26187e2fbb555891eca011_img_7_c4c85/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2329-N-Cambridge-Ave-Unit-C-Chicago-IL-60614/26M087_pid/" + }, + { + "listing_id": "2023800878451375689", + "slug": "757-n-orleans-st-unit-1004-chicago-il-60654", + "title": "$455,000", + "price": 455000, + "is_rent": false, + "street": "757 North Orleans Street, Unit 1004", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60654", + "beds": 2, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1181, + "latitude": 41.8963008, + "longitude": -87.6365679, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/eac0f3f4c58aef3b78dc8d0c315373ea33230c15_img_0_ff59b", + "gallery_uuids": [ + "legacy/eac0f3f4c58aef3b78dc8d0c315373ea33230c15_img_0_ff59b", + "legacy/eac0f3f4c58aef3b78dc8d0c315373ea33230c15_img_1_57f73", + "legacy/eac0f3f4c58aef3b78dc8d0c315373ea33230c15_img_2_e0c21", + "legacy/eac0f3f4c58aef3b78dc8d0c315373ea33230c15_img_3_8120f", + "legacy/eac0f3f4c58aef3b78dc8d0c315373ea33230c15_img_4_03f1b", + "legacy/eac0f3f4c58aef3b78dc8d0c315373ea33230c15_img_5_fc6e2", + "legacy/eac0f3f4c58aef3b78dc8d0c315373ea33230c15_img_6_86f32", + "legacy/eac0f3f4c58aef3b78dc8d0c315373ea33230c15_img_7_f9c17" + ], + "gallery_urls": [ + "https://www.compass.com/m/eac0f3f4c58aef3b78dc8d0c315373ea33230c15_img_0_ff59b/640x480.jpg", + "https://www.compass.com/m/eac0f3f4c58aef3b78dc8d0c315373ea33230c15_img_1_57f73/640x480.jpg", + "https://www.compass.com/m/eac0f3f4c58aef3b78dc8d0c315373ea33230c15_img_2_e0c21/640x480.jpg", + "https://www.compass.com/m/eac0f3f4c58aef3b78dc8d0c315373ea33230c15_img_3_8120f/640x480.jpg", + "https://www.compass.com/m/eac0f3f4c58aef3b78dc8d0c315373ea33230c15_img_4_03f1b/640x480.jpg", + "https://www.compass.com/m/eac0f3f4c58aef3b78dc8d0c315373ea33230c15_img_5_fc6e2/640x480.jpg", + "https://www.compass.com/m/eac0f3f4c58aef3b78dc8d0c315373ea33230c15_img_6_86f32/640x480.jpg", + "https://www.compass.com/m/eac0f3f4c58aef3b78dc8d0c315373ea33230c15_img_7_f9c17/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/757-N-Orleans-St-Unit-1004-Chicago-IL-60654/1TSOGQ_pid/" + }, + { + "listing_id": "2103052794498683425", + "slug": "3125-n-clybourn-ave-unit-2n-chicago-il-60618", + "title": "$725,000", + "price": 725000, + "is_rent": false, + "street": "3125 North Clybourn Avenue, Unit 2N", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60618", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1700, + "latitude": 41.9384789, + "longitude": -87.6862092, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/c227686f5f03ef80ac5183fb084169bc948a189e_img_0_83626", + "gallery_uuids": [ + "legacy/c227686f5f03ef80ac5183fb084169bc948a189e_img_0_83626", + "legacy/c227686f5f03ef80ac5183fb084169bc948a189e_img_1_08dde", + "legacy/c227686f5f03ef80ac5183fb084169bc948a189e_img_2_4c3f2", + "legacy/c227686f5f03ef80ac5183fb084169bc948a189e_img_3_90cb2", + "legacy/c227686f5f03ef80ac5183fb084169bc948a189e_img_4_9a0d7", + "legacy/c227686f5f03ef80ac5183fb084169bc948a189e_img_5_b9d72", + "legacy/c227686f5f03ef80ac5183fb084169bc948a189e_img_6_08aa8", + "legacy/c227686f5f03ef80ac5183fb084169bc948a189e_img_7_4475a" + ], + "gallery_urls": [ + "https://www.compass.com/m/c227686f5f03ef80ac5183fb084169bc948a189e_img_0_83626/640x480.jpg", + "https://www.compass.com/m/c227686f5f03ef80ac5183fb084169bc948a189e_img_1_08dde/640x480.jpg", + "https://www.compass.com/m/c227686f5f03ef80ac5183fb084169bc948a189e_img_2_4c3f2/640x480.jpg", + "https://www.compass.com/m/c227686f5f03ef80ac5183fb084169bc948a189e_img_3_90cb2/640x480.jpg", + "https://www.compass.com/m/c227686f5f03ef80ac5183fb084169bc948a189e_img_4_9a0d7/640x480.jpg", + "https://www.compass.com/m/c227686f5f03ef80ac5183fb084169bc948a189e_img_5_b9d72/640x480.jpg", + "https://www.compass.com/m/c227686f5f03ef80ac5183fb084169bc948a189e_img_6_08aa8/640x480.jpg", + "https://www.compass.com/m/c227686f5f03ef80ac5183fb084169bc948a189e_img_7_4475a/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/3125-N-Clybourn-Ave-Unit-2N-Chicago-IL-60618/1VW5AK_pid/" + }, + { + "listing_id": "2045193238054391729", + "slug": "2329-n-cambridge-ave-unit-a-chicago-il-60614", + "title": "$1,680,000", + "price": 1680000, + "is_rent": false, + "street": "2329 North Cambridge Avenue, Unit A", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60614", + "beds": 2, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2220, + "latitude": 41.924678360965785, + "longitude": -87.64229123475532, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/9e261466dedc2e8423045d5d6f56efb6a90213f7_img_0_5b6e2", + "gallery_uuids": [ + "legacy/9e261466dedc2e8423045d5d6f56efb6a90213f7_img_0_5b6e2", + "legacy/9e261466dedc2e8423045d5d6f56efb6a90213f7_img_1_5f639", + "legacy/9e261466dedc2e8423045d5d6f56efb6a90213f7_img_2_2eafe", + "legacy/9e261466dedc2e8423045d5d6f56efb6a90213f7_img_3_f8eea", + "legacy/9e261466dedc2e8423045d5d6f56efb6a90213f7_img_4_01bff", + "legacy/9e261466dedc2e8423045d5d6f56efb6a90213f7_img_5_db80d", + "legacy/9e261466dedc2e8423045d5d6f56efb6a90213f7_img_6_3e47e", + "legacy/9e261466dedc2e8423045d5d6f56efb6a90213f7_img_7_c4c85" + ], + "gallery_urls": [ + "https://www.compass.com/m/9e261466dedc2e8423045d5d6f56efb6a90213f7_img_0_5b6e2/640x480.jpg", + "https://www.compass.com/m/9e261466dedc2e8423045d5d6f56efb6a90213f7_img_1_5f639/640x480.jpg", + "https://www.compass.com/m/9e261466dedc2e8423045d5d6f56efb6a90213f7_img_2_2eafe/640x480.jpg", + "https://www.compass.com/m/9e261466dedc2e8423045d5d6f56efb6a90213f7_img_3_f8eea/640x480.jpg", + "https://www.compass.com/m/9e261466dedc2e8423045d5d6f56efb6a90213f7_img_4_01bff/640x480.jpg", + "https://www.compass.com/m/9e261466dedc2e8423045d5d6f56efb6a90213f7_img_5_db80d/640x480.jpg", + "https://www.compass.com/m/9e261466dedc2e8423045d5d6f56efb6a90213f7_img_6_3e47e/640x480.jpg", + "https://www.compass.com/m/9e261466dedc2e8423045d5d6f56efb6a90213f7_img_7_c4c85/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2329-N-Cambridge-Ave-Unit-A-Chicago-IL-60614/26M085_pid/" + }, + { + "listing_id": "2053942360426125497", + "slug": "2720-n-ashland-ave-unit-2s-chicago-il-60614", + "title": "$850,000", + "price": 850000, + "is_rent": false, + "street": "2720 North Ashland Avenue, Unit 2S", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60614", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1650, + "latitude": 41.93122735747244, + "longitude": -87.6687387552013, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/dce5453adb1e77bc9d5e2665fd9be18c42b866a9_img_0_d8278", + "gallery_uuids": [ + "legacy/dce5453adb1e77bc9d5e2665fd9be18c42b866a9_img_0_d8278", + "legacy/dce5453adb1e77bc9d5e2665fd9be18c42b866a9_img_1_2a1b8", + "legacy/dce5453adb1e77bc9d5e2665fd9be18c42b866a9_img_2_90eec", + "legacy/dce5453adb1e77bc9d5e2665fd9be18c42b866a9_img_3_ef406", + "legacy/dce5453adb1e77bc9d5e2665fd9be18c42b866a9_img_4_05b8f", + "legacy/dce5453adb1e77bc9d5e2665fd9be18c42b866a9_img_5_d5eea", + "legacy/dce5453adb1e77bc9d5e2665fd9be18c42b866a9_img_6_92e08", + "legacy/dce5453adb1e77bc9d5e2665fd9be18c42b866a9_img_7_838cd" + ], + "gallery_urls": [ + "https://www.compass.com/m/dce5453adb1e77bc9d5e2665fd9be18c42b866a9_img_0_d8278/640x480.jpg", + "https://www.compass.com/m/dce5453adb1e77bc9d5e2665fd9be18c42b866a9_img_1_2a1b8/640x480.jpg", + "https://www.compass.com/m/dce5453adb1e77bc9d5e2665fd9be18c42b866a9_img_2_90eec/640x480.jpg", + "https://www.compass.com/m/dce5453adb1e77bc9d5e2665fd9be18c42b866a9_img_3_ef406/640x480.jpg", + "https://www.compass.com/m/dce5453adb1e77bc9d5e2665fd9be18c42b866a9_img_4_05b8f/640x480.jpg", + "https://www.compass.com/m/dce5453adb1e77bc9d5e2665fd9be18c42b866a9_img_5_d5eea/640x480.jpg", + "https://www.compass.com/m/dce5453adb1e77bc9d5e2665fd9be18c42b866a9_img_6_92e08/640x480.jpg", + "https://www.compass.com/m/dce5453adb1e77bc9d5e2665fd9be18c42b866a9_img_7_838cd/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2720-N-Ashland-Ave-Unit-2S-Chicago-IL-60614/26PX1S_pid/" + }, + { + "listing_id": "2062615686154056553", + "slug": "2720-n-ashland-ave-unit-3s-chicago-il-60614", + "title": "$950,000", + "price": 950000, + "is_rent": false, + "street": "2720 North Ashland Avenue, Unit 3S", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60614", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1800, + "latitude": 41.93122735747244, + "longitude": -87.6687387552013, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/feaf41cc920d09b4a744173af75562aaec8e4713_img_0_d8278", + "gallery_uuids": [ + "legacy/feaf41cc920d09b4a744173af75562aaec8e4713_img_0_d8278", + "legacy/feaf41cc920d09b4a744173af75562aaec8e4713_img_1_a9621", + "legacy/feaf41cc920d09b4a744173af75562aaec8e4713_img_2_90eec", + "legacy/feaf41cc920d09b4a744173af75562aaec8e4713_img_3_ef406", + "legacy/feaf41cc920d09b4a744173af75562aaec8e4713_img_4_05b8f", + "legacy/feaf41cc920d09b4a744173af75562aaec8e4713_img_5_d5eea", + "legacy/feaf41cc920d09b4a744173af75562aaec8e4713_img_6_92e08", + "legacy/feaf41cc920d09b4a744173af75562aaec8e4713_img_7_838cd" + ], + "gallery_urls": [ + "https://www.compass.com/m/feaf41cc920d09b4a744173af75562aaec8e4713_img_0_d8278/640x480.jpg", + "https://www.compass.com/m/feaf41cc920d09b4a744173af75562aaec8e4713_img_1_a9621/640x480.jpg", + "https://www.compass.com/m/feaf41cc920d09b4a744173af75562aaec8e4713_img_2_90eec/640x480.jpg", + "https://www.compass.com/m/feaf41cc920d09b4a744173af75562aaec8e4713_img_3_ef406/640x480.jpg", + "https://www.compass.com/m/feaf41cc920d09b4a744173af75562aaec8e4713_img_4_05b8f/640x480.jpg", + "https://www.compass.com/m/feaf41cc920d09b4a744173af75562aaec8e4713_img_5_d5eea/640x480.jpg", + "https://www.compass.com/m/feaf41cc920d09b4a744173af75562aaec8e4713_img_6_92e08/640x480.jpg", + "https://www.compass.com/m/feaf41cc920d09b4a744173af75562aaec8e4713_img_7_838cd/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2720-N-Ashland-Ave-Unit-3S-Chicago-IL-60614/26YFT6_pid/" + }, + { + "listing_id": "1971667828977703721", + "slug": "1951-w-huron-st-chicago-il-60622", + "title": "$2,150,000", + "price": 2150000, + "is_rent": false, + "street": "1951 West Huron Street", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60622", + "beds": 5, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 4500, + "latitude": 41.8938399, + "longitude": -87.6765566, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/52b74bd0cde8a849dc3559bee9b3a95bfe3823d8_img_0_2a804", + "gallery_uuids": [ + "legacy/52b74bd0cde8a849dc3559bee9b3a95bfe3823d8_img_0_2a804", + "legacy/52b74bd0cde8a849dc3559bee9b3a95bfe3823d8_img_1_ffd87", + "legacy/52b74bd0cde8a849dc3559bee9b3a95bfe3823d8_img_2_8658c", + "legacy/52b74bd0cde8a849dc3559bee9b3a95bfe3823d8_img_3_dda48", + "legacy/52b74bd0cde8a849dc3559bee9b3a95bfe3823d8_img_4_61fb3", + "legacy/52b74bd0cde8a849dc3559bee9b3a95bfe3823d8_img_5_fd7a7", + "legacy/52b74bd0cde8a849dc3559bee9b3a95bfe3823d8_img_6_6751a", + "legacy/52b74bd0cde8a849dc3559bee9b3a95bfe3823d8_img_7_95e34" + ], + "gallery_urls": [ + "https://www.compass.com/m/52b74bd0cde8a849dc3559bee9b3a95bfe3823d8_img_0_2a804/640x480.jpg", + "https://www.compass.com/m/52b74bd0cde8a849dc3559bee9b3a95bfe3823d8_img_1_ffd87/640x480.jpg", + "https://www.compass.com/m/52b74bd0cde8a849dc3559bee9b3a95bfe3823d8_img_2_8658c/640x480.jpg", + "https://www.compass.com/m/52b74bd0cde8a849dc3559bee9b3a95bfe3823d8_img_3_dda48/640x480.jpg", + "https://www.compass.com/m/52b74bd0cde8a849dc3559bee9b3a95bfe3823d8_img_4_61fb3/640x480.jpg", + "https://www.compass.com/m/52b74bd0cde8a849dc3559bee9b3a95bfe3823d8_img_5_fd7a7/640x480.jpg", + "https://www.compass.com/m/52b74bd0cde8a849dc3559bee9b3a95bfe3823d8_img_6_6751a/640x480.jpg", + "https://www.compass.com/m/52b74bd0cde8a849dc3559bee9b3a95bfe3823d8_img_7_95e34/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/1951-W-Huron-St-Chicago-IL-60622/1XU1P6_pid/" + }, + { + "listing_id": "2058964874974707001", + "slug": "2471-n-albany-ave-chicago-il-60647", + "title": "$900,000", + "price": 900000, + "is_rent": false, + "street": "2471 North Albany Avenue", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60647", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 41.9263593, + "longitude": -87.70608089999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/2a668c99d9ac9a6f2e5e5a8ad93585efb8673266_img_0_153f2", + "gallery_uuids": [ + "legacy/2a668c99d9ac9a6f2e5e5a8ad93585efb8673266_img_0_153f2", + "legacy/2a668c99d9ac9a6f2e5e5a8ad93585efb8673266_img_1_bb734", + "legacy/2a668c99d9ac9a6f2e5e5a8ad93585efb8673266_img_2_34a85", + "legacy/2a668c99d9ac9a6f2e5e5a8ad93585efb8673266_img_3_2c5dc", + "legacy/2a668c99d9ac9a6f2e5e5a8ad93585efb8673266_img_4_70f34", + "legacy/2a668c99d9ac9a6f2e5e5a8ad93585efb8673266_img_5_c7a6a" + ], + "gallery_urls": [ + "https://www.compass.com/m/2a668c99d9ac9a6f2e5e5a8ad93585efb8673266_img_0_153f2/640x480.jpg", + "https://www.compass.com/m/2a668c99d9ac9a6f2e5e5a8ad93585efb8673266_img_1_bb734/640x480.jpg", + "https://www.compass.com/m/2a668c99d9ac9a6f2e5e5a8ad93585efb8673266_img_2_34a85/640x480.jpg", + "https://www.compass.com/m/2a668c99d9ac9a6f2e5e5a8ad93585efb8673266_img_3_2c5dc/640x480.jpg", + "https://www.compass.com/m/2a668c99d9ac9a6f2e5e5a8ad93585efb8673266_img_4_70f34/640x480.jpg", + "https://www.compass.com/m/2a668c99d9ac9a6f2e5e5a8ad93585efb8673266_img_5_c7a6a/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2471-N-Albany-Ave-Chicago-IL-60647/1W17RT_pid/" + }, + { + "listing_id": "2085017423130603593", + "slug": "21-w-goethe-st-unit-15a-chicago-il-60610", + "title": "$274,900", + "price": 274900, + "is_rent": false, + "street": "21 West Goethe Street, Unit 15A", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60610", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 41.90545849999999, + "longitude": -87.62962639999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/e1d6e7817dc887c4c81cb856664b0834617b4526_img_0_ca51d", + "gallery_uuids": [ + "legacy/e1d6e7817dc887c4c81cb856664b0834617b4526_img_0_ca51d", + "legacy/e1d6e7817dc887c4c81cb856664b0834617b4526_img_1_67b64", + "legacy/e1d6e7817dc887c4c81cb856664b0834617b4526_img_2_d4a35", + "legacy/e1d6e7817dc887c4c81cb856664b0834617b4526_img_3_7cd82", + "legacy/e1d6e7817dc887c4c81cb856664b0834617b4526_img_4_9db26", + "legacy/e1d6e7817dc887c4c81cb856664b0834617b4526_img_5_d54f1", + "legacy/e1d6e7817dc887c4c81cb856664b0834617b4526_img_6_0114c", + "legacy/e1d6e7817dc887c4c81cb856664b0834617b4526_img_7_3d360" + ], + "gallery_urls": [ + "https://www.compass.com/m/e1d6e7817dc887c4c81cb856664b0834617b4526_img_0_ca51d/640x480.jpg", + "https://www.compass.com/m/e1d6e7817dc887c4c81cb856664b0834617b4526_img_1_67b64/640x480.jpg", + "https://www.compass.com/m/e1d6e7817dc887c4c81cb856664b0834617b4526_img_2_d4a35/640x480.jpg", + "https://www.compass.com/m/e1d6e7817dc887c4c81cb856664b0834617b4526_img_3_7cd82/640x480.jpg", + "https://www.compass.com/m/e1d6e7817dc887c4c81cb856664b0834617b4526_img_4_9db26/640x480.jpg", + "https://www.compass.com/m/e1d6e7817dc887c4c81cb856664b0834617b4526_img_5_d54f1/640x480.jpg", + "https://www.compass.com/m/e1d6e7817dc887c4c81cb856664b0834617b4526_img_6_0114c/640x480.jpg", + "https://www.compass.com/m/e1d6e7817dc887c4c81cb856664b0834617b4526_img_7_3d360/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/21-W-Goethe-St-Unit-15A-Chicago-IL-60610/1W3UDC_pid/" + }, + { + "listing_id": "2093074201690899201", + "slug": "2232-n-dayton-st-chicago-il-60614", + "title": "$3,100,000", + "price": 3100000, + "is_rent": false, + "street": "2232 North Dayton Street", + "neighborhood": "", + "city": "Chicago", + "state": "IL", + "zip": "60614", + "beds": 4, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 3986, + "latitude": 41.9227932, + "longitude": -87.6502323, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/f75ed77e4caea30bde68af7fe31f9771b182a78f_img_0_17113", + "gallery_uuids": [ + "legacy/f75ed77e4caea30bde68af7fe31f9771b182a78f_img_0_17113", + "legacy/f75ed77e4caea30bde68af7fe31f9771b182a78f_img_1_ae3ea", + "legacy/f75ed77e4caea30bde68af7fe31f9771b182a78f_img_2_6a591", + "legacy/f75ed77e4caea30bde68af7fe31f9771b182a78f_img_3_c0e82", + "legacy/f75ed77e4caea30bde68af7fe31f9771b182a78f_img_4_10db2", + "legacy/f75ed77e4caea30bde68af7fe31f9771b182a78f_img_5_c95fb", + "legacy/f75ed77e4caea30bde68af7fe31f9771b182a78f_img_6_c33e8", + "legacy/f75ed77e4caea30bde68af7fe31f9771b182a78f_img_7_ec16b" + ], + "gallery_urls": [ + "https://www.compass.com/m/f75ed77e4caea30bde68af7fe31f9771b182a78f_img_0_17113/640x480.jpg", + "https://www.compass.com/m/f75ed77e4caea30bde68af7fe31f9771b182a78f_img_1_ae3ea/640x480.jpg", + "https://www.compass.com/m/f75ed77e4caea30bde68af7fe31f9771b182a78f_img_2_6a591/640x480.jpg", + "https://www.compass.com/m/f75ed77e4caea30bde68af7fe31f9771b182a78f_img_3_c0e82/640x480.jpg", + "https://www.compass.com/m/f75ed77e4caea30bde68af7fe31f9771b182a78f_img_4_10db2/640x480.jpg", + "https://www.compass.com/m/f75ed77e4caea30bde68af7fe31f9771b182a78f_img_5_c95fb/640x480.jpg", + "https://www.compass.com/m/f75ed77e4caea30bde68af7fe31f9771b182a78f_img_6_c33e8/640x480.jpg", + "https://www.compass.com/m/f75ed77e4caea30bde68af7fe31f9771b182a78f_img_7_ec16b/640x480.jpg" + ], + "source_city": "chicago", + "detail_url": "https://www.compass.com/homedetails/2232-N-Dayton-St-Chicago-IL-60614/1X9RX1_pid/" + }, + { + "listing_id": "2100080952913512617", + "slug": "187-warren-ave-unit-2-boston-ma-02116", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "187 Warren Avenue, Unit 2", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02116", + "beds": 2, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 959, + "latitude": 42.34386, + "longitude": -71.0767858, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/a0761227-85b3-4b07-8596-021e39fa3873", + "gallery_uuids": [ + "uuid/a0761227-85b3-4b07-8596-021e39fa3873", + "uuid/f1ce70d9-6bef-4364-ae72-7230393a2fa2", + "uuid/02a67be5-e5e8-4002-a723-1e1e1288d575", + "uuid/0fde069b-b7fe-46ee-8ddb-f3e4fef4628e", + "uuid/7bb736a5-3ddc-448e-b726-e0cdad76301f", + "uuid/936d6c33-e718-49dd-9999-1b5f408ed4fc", + "uuid/ff9cba03-648b-42bf-84d5-e4c4d858bd86", + "uuid/1ef2a9f0-2415-47b3-9060-df3a5e109d74" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/a0761227-85b3-4b07-8596-021e39fa3873/1024x683.jpg", + "https://www.compass.com/m/0/f1ce70d9-6bef-4364-ae72-7230393a2fa2/1024x683.jpg", + "https://www.compass.com/m/0/02a67be5-e5e8-4002-a723-1e1e1288d575/1024x683.jpg", + "https://www.compass.com/m/0/0fde069b-b7fe-46ee-8ddb-f3e4fef4628e/1024x683.jpg", + "https://www.compass.com/m/0/7bb736a5-3ddc-448e-b726-e0cdad76301f/1024x683.jpg", + "https://www.compass.com/m/0/936d6c33-e718-49dd-9999-1b5f408ed4fc/1024x683.jpg", + "https://www.compass.com/m/0/ff9cba03-648b-42bf-84d5-e4c4d858bd86/1024x683.jpg", + "https://www.compass.com/m/0/1ef2a9f0-2415-47b3-9060-df3a5e109d74/1024x683.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/187-Warren-Ave-Unit-2-Boston-MA-02116/1ZP7U8_pid/" + }, + { + "listing_id": "2100898745909489569", + "slug": "27-parker-st-unit-2-charlestown-ma-02129", + "title": "$815,000", + "price": 815000, + "is_rent": false, + "street": "27 Parker Street, Unit 2", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02129", + "beds": 2, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1029, + "latitude": 42.3830489, + "longitude": -71.0794204, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/7d2f5cdc-3c7f-4311-9b47-057cb235d03e", + "gallery_uuids": [ + "uuid/7d2f5cdc-3c7f-4311-9b47-057cb235d03e", + "uuid/b25c3589-537f-4828-82fd-33c511614c8f", + "uuid/d9b4a368-5e9c-4832-8944-8e09ced98df1", + "uuid/ba6f76f2-781f-4826-8ca0-07c0e3e2583b", + "uuid/61946f6a-5708-40ac-beaf-730bf63c1ff3", + "uuid/e69c9cb3-b419-4c7f-9236-9de6e7de5c99", + "uuid/d20ec5fb-61fa-4879-92fd-bb41ced113c0", + "uuid/1ae4e740-4d00-4495-aafc-f35161e049af" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/7d2f5cdc-3c7f-4311-9b47-057cb235d03e/1500x1000.jpg", + "https://www.compass.com/m/0/b25c3589-537f-4828-82fd-33c511614c8f/1500x1000.jpg", + "https://www.compass.com/m/0/d9b4a368-5e9c-4832-8944-8e09ced98df1/1500x1000.jpg", + "https://www.compass.com/m/0/ba6f76f2-781f-4826-8ca0-07c0e3e2583b/1500x1000.jpg", + "https://www.compass.com/m/0/61946f6a-5708-40ac-beaf-730bf63c1ff3/1500x1000.jpg", + "https://www.compass.com/m/0/e69c9cb3-b419-4c7f-9236-9de6e7de5c99/1500x1000.jpg", + "https://www.compass.com/m/0/d20ec5fb-61fa-4879-92fd-bb41ced113c0/1500x1000.jpg", + "https://www.compass.com/m/0/1ae4e740-4d00-4495-aafc-f35161e049af/1500x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/27-Parker-St-Unit-2-Charlestown-MA-02129/1YXMIF_pid/" + }, + { + "listing_id": "2074056462307099409", + "slug": "e-brookline-st-boston-ma-02118", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "East Brookline Street", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02118", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 716, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/e4312b52-047b-4fa6-b1dd-084bd574b460", + "gallery_uuids": [ + "uuid/e4312b52-047b-4fa6-b1dd-084bd574b460", + "uuid/5569aa92-ba66-4da7-a1a7-07ca4429fa19", + "uuid/b183c976-0a8d-4546-97bf-21ebc6198090", + "uuid/3bf6320c-c394-403f-a0d1-3cf07cc748f1", + "uuid/819594d2-3eb1-4d42-adc1-069741435dc4", + "uuid/3c9d1766-a8fa-4f71-8588-1e38e1527098", + "uuid/b5c608de-8ad8-49c9-acaf-76ea39a40b1a", + "uuid/f6f87969-e17a-463c-8bf6-ac51b4bedcc1" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/e4312b52-047b-4fa6-b1dd-084bd574b460/1500x1000.jpg", + "https://www.compass.com/m/0/5569aa92-ba66-4da7-a1a7-07ca4429fa19/1499x1000.jpg", + "https://www.compass.com/m/0/b183c976-0a8d-4546-97bf-21ebc6198090/1500x1000.jpg", + "https://www.compass.com/m/0/3bf6320c-c394-403f-a0d1-3cf07cc748f1/1499x1000.jpg", + "https://www.compass.com/m/0/819594d2-3eb1-4d42-adc1-069741435dc4/1500x998.jpg", + "https://www.compass.com/m/0/3c9d1766-a8fa-4f71-8588-1e38e1527098/1500x999.jpg", + "https://www.compass.com/m/0/b5c608de-8ad8-49c9-acaf-76ea39a40b1a/1499x1000.jpg", + "https://www.compass.com/m/0/f6f87969-e17a-463c-8bf6-ac51b4bedcc1/1499x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/E-Brookline-St-Boston-MA-02118/2074056462307099409_lid/" + }, + { + "listing_id": "2071157297801650385", + "slug": "7-upton-st-unit-1-boston-ma-02118", + "title": "$1,995,000", + "price": 1995000, + "is_rent": false, + "street": "7 Upton Street, Unit 1", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02118", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1750, + "latitude": 42.3419507, + "longitude": -71.071528, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/53d2683a-d9fe-44d6-847c-23019731e19b", + "gallery_uuids": [ + "uuid/53d2683a-d9fe-44d6-847c-23019731e19b", + "uuid/01715acd-2a39-46b4-8b1b-1bc8eacfd194", + "uuid/4f3657f5-9730-43e7-b071-e301b2c71ce1", + "uuid/f31e64c0-d150-4069-8952-bc5dc8c4f04e", + "uuid/803f8f75-3942-4160-b7f4-e07ec21a8984", + "uuid/1131bfe4-ca6a-4a97-b75d-a1a4d33dbf75", + "uuid/c63908f5-d59c-44e0-af3c-42ed3ee6e013", + "uuid/f2f883c5-bb65-406e-9c81-cc1fb7db82c0" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/53d2683a-d9fe-44d6-847c-23019731e19b/1500x1000.jpg", + "https://www.compass.com/m/0/01715acd-2a39-46b4-8b1b-1bc8eacfd194/1500x1000.jpg", + "https://www.compass.com/m/0/4f3657f5-9730-43e7-b071-e301b2c71ce1/1500x1000.jpg", + "https://www.compass.com/m/0/f31e64c0-d150-4069-8952-bc5dc8c4f04e/1500x1000.jpg", + "https://www.compass.com/m/0/803f8f75-3942-4160-b7f4-e07ec21a8984/1500x1000.jpg", + "https://www.compass.com/m/0/1131bfe4-ca6a-4a97-b75d-a1a4d33dbf75/1499x1000.jpg", + "https://www.compass.com/m/0/c63908f5-d59c-44e0-af3c-42ed3ee6e013/1499x1000.jpg", + "https://www.compass.com/m/0/f2f883c5-bb65-406e-9c81-cc1fb7db82c0/1500x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/7-Upton-St-Unit-1-Boston-MA-02118/1ZABYS_pid/" + }, + { + "listing_id": "2099546520544139993", + "slug": "2-douglass-park-unit-5-boston-ma-02118", + "title": "$390,175", + "price": 390175, + "is_rent": false, + "street": "2 Douglass Park, Unit 5", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02118", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 985, + "latitude": 42.3380291, + "longitude": -71.0834843, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/034e1cae-ae18-4946-899e-64b45dbf9573", + "gallery_uuids": [ + "uuid/034e1cae-ae18-4946-899e-64b45dbf9573", + "uuid/0edfd883-7165-4576-bf55-f28968617487" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/034e1cae-ae18-4946-899e-64b45dbf9573/640x480.jpg", + "https://www.compass.com/m/0/0edfd883-7165-4576-bf55-f28968617487/1333x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/2-Douglass-Park-Unit-5-Boston-MA-02118/1ZIKXV_pid/" + }, + { + "listing_id": "2100406347311627777", + "slug": "11-fayette-st-unit-1-boston-ma-02116", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "11 Fayette Street, Unit 1", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02116", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1234, + "latitude": 42.3492495, + "longitude": -71.0670363, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/c86bab85-e543-4753-ab8e-ecae452979d5", + "gallery_uuids": [ + "uuid/c86bab85-e543-4753-ab8e-ecae452979d5", + "uuid/2f1a4752-5b75-4638-b8a5-938b9dc0458b", + "uuid/ec75b974-0bc8-43da-b8b6-e9ba4e7c368b", + "uuid/738ef41f-ae68-4de5-95e0-323cc6e570c0", + "uuid/7572f933-9a11-487f-8979-98e34157c937", + "uuid/8c2e3c19-baa6-42b0-bb55-e86566cf15f3", + "uuid/120efe68-85f3-4e6b-a675-7d78544b0976", + "uuid/bea0428d-754f-47f6-a354-76631c22f3b5" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/c86bab85-e543-4753-ab8e-ecae452979d5/666x1000.jpg", + "https://www.compass.com/m/0/2f1a4752-5b75-4638-b8a5-938b9dc0458b/1500x1000.jpg", + "https://www.compass.com/m/0/ec75b974-0bc8-43da-b8b6-e9ba4e7c368b/1500x1000.jpg", + "https://www.compass.com/m/0/738ef41f-ae68-4de5-95e0-323cc6e570c0/1500x1000.jpg", + "https://www.compass.com/m/0/7572f933-9a11-487f-8979-98e34157c937/1500x1000.jpg", + "https://www.compass.com/m/0/8c2e3c19-baa6-42b0-bb55-e86566cf15f3/1500x1000.jpg", + "https://www.compass.com/m/0/120efe68-85f3-4e6b-a675-7d78544b0976/1500x1000.jpg", + "https://www.compass.com/m/0/bea0428d-754f-47f6-a354-76631c22f3b5/1500x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/11-Fayette-St-Unit-1-Boston-MA-02116/1YTSGQ_pid/" + }, + { + "listing_id": "2091443059070060769", + "slug": "40-fay-st-unit-h706-boston-ma-02118", + "title": "$1,495,000", + "price": 1495000, + "is_rent": false, + "street": "40 Fay Street, Unit H706", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02118", + "beds": 2, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1400, + "latitude": 42.3433259, + "longitude": -71.0647962, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/d44e86ac-5ab5-4f8e-bef8-084c28afd519", + "gallery_uuids": [ + "uuid/d44e86ac-5ab5-4f8e-bef8-084c28afd519", + "uuid/1232c4f4-c2c7-4c99-b1ca-ee8f9b6043c7", + "uuid/b331b204-4be6-457f-94c7-f23e2448e030", + "uuid/caa61166-149f-4d79-bf0d-a0ad6c80c8fa", + "uuid/6cfc61ba-b81c-4f3b-9930-8238f0bf3e6d", + "uuid/0a92f8c2-280d-46a3-862d-f0b69f469189", + "uuid/63ea0510-58d4-49a1-9dc9-457f5bdb3110", + "uuid/a088cd1f-622c-4f32-ae5d-b94f2aafeebf" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/d44e86ac-5ab5-4f8e-bef8-084c28afd519/1499x1000.jpg", + "https://www.compass.com/m/0/1232c4f4-c2c7-4c99-b1ca-ee8f9b6043c7/1499x1000.jpg", + "https://www.compass.com/m/0/b331b204-4be6-457f-94c7-f23e2448e030/1499x1000.jpg", + "https://www.compass.com/m/0/caa61166-149f-4d79-bf0d-a0ad6c80c8fa/1499x1000.jpg", + "https://www.compass.com/m/0/6cfc61ba-b81c-4f3b-9930-8238f0bf3e6d/667x1000.jpg", + "https://www.compass.com/m/0/0a92f8c2-280d-46a3-862d-f0b69f469189/1499x1000.jpg", + "https://www.compass.com/m/0/63ea0510-58d4-49a1-9dc9-457f5bdb3110/1499x1000.jpg", + "https://www.compass.com/m/0/a088cd1f-622c-4f32-ae5d-b94f2aafeebf/1499x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/40-Fay-St-Unit-H706-Boston-MA-02118/1ZLNRR_pid/" + }, + { + "listing_id": "2089240722748810625", + "slug": "554-e-5th-st-unit-1-south-boston-ma-02127", + "title": "$899,000", + "price": 899000, + "is_rent": false, + "street": "554 East 5th Street, Unit 1", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02127", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1140, + "latitude": 42.3340013, + "longitude": -71.0383849, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/32ffe1f8-d653-40eb-846b-a26d00189296", + "gallery_uuids": [ + "uuid/32ffe1f8-d653-40eb-846b-a26d00189296", + "uuid/fd8d6e89-d835-43c6-b1a5-ef2c16952eff", + "uuid/f3dd8a47-5c47-4aa3-94c3-5eb7c4dbfdbb", + "uuid/53298d3d-8598-4fbf-a854-1e70c8babaeb", + "uuid/f22ced09-c4e1-486c-9149-25cacf01e959", + "uuid/cc3e935a-ec8e-4dd8-b457-bb09b0b2ae3b", + "uuid/682f5ded-304c-46b2-904e-b2bdd31e5b40", + "uuid/c35357c6-8766-4b0d-b39b-76f8bece81ec" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/32ffe1f8-d653-40eb-846b-a26d00189296/1280x853.jpg", + "https://www.compass.com/m/0/fd8d6e89-d835-43c6-b1a5-ef2c16952eff/1280x853.jpg", + "https://www.compass.com/m/0/f3dd8a47-5c47-4aa3-94c3-5eb7c4dbfdbb/1280x853.jpg", + "https://www.compass.com/m/0/53298d3d-8598-4fbf-a854-1e70c8babaeb/1280x853.jpg", + "https://www.compass.com/m/0/f22ced09-c4e1-486c-9149-25cacf01e959/1280x853.jpg", + "https://www.compass.com/m/0/cc3e935a-ec8e-4dd8-b457-bb09b0b2ae3b/1280x853.jpg", + "https://www.compass.com/m/0/682f5ded-304c-46b2-904e-b2bdd31e5b40/1280x853.jpg", + "https://www.compass.com/m/0/c35357c6-8766-4b0d-b39b-76f8bece81ec/1280x853.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/554-E-5th-St-Unit-1-South-Boston-MA-02127/1YZ72H_pid/" + }, + { + "listing_id": "2078529746754764753", + "slug": "25-isabella-st-unit-502-boston-ma-02116", + "title": "$3,000,000", + "price": 3000000, + "is_rent": false, + "street": "25 Isabella Street, Unit 502", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02116", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1519, + "latitude": 42.3488844, + "longitude": -71.0705256, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/a6639f1c-6c59-4b6c-8f7c-00bbcd20f090", + "gallery_uuids": [ + "uuid/a6639f1c-6c59-4b6c-8f7c-00bbcd20f090" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/a6639f1c-6c59-4b6c-8f7c-00bbcd20f090/1250x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/25-Isabella-St-Unit-502-Boston-MA-02116/278F6Q_pid/" + }, + { + "listing_id": "2063346786165814257", + "slug": "124-w-newton-st-unit-2-boston-ma-02118", + "title": "$3,850,000", + "price": 3850000, + "is_rent": false, + "street": "124 West Newton Street, Unit 2", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02118", + "beds": 4, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2350, + "latitude": 42.3418083, + "longitude": -71.0772732, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/2a20cb23-9fb3-469f-a43d-691206b17ed8", + "gallery_uuids": [ + "uuid/2a20cb23-9fb3-469f-a43d-691206b17ed8", + "uuid/645a86c4-fe0c-49dd-b362-c02dfd18c41f", + "uuid/208410c7-b6ba-4a45-a65d-41d2335c6d0b", + "uuid/6a38a843-24cb-4a2a-860e-ddbc7534ab3e", + "uuid/541f9a15-4b44-4f9d-947d-623a59e402d7", + "uuid/40ee4473-4017-41f1-8a63-67835ace5f37" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/2a20cb23-9fb3-469f-a43d-691206b17ed8/1474x1000.jpg", + "https://www.compass.com/m/0/645a86c4-fe0c-49dd-b362-c02dfd18c41f/1456x1000.jpg", + "https://www.compass.com/m/0/208410c7-b6ba-4a45-a65d-41d2335c6d0b/1500x1000.jpg", + "https://www.compass.com/m/0/6a38a843-24cb-4a2a-860e-ddbc7534ab3e/1472x1000.jpg", + "https://www.compass.com/m/0/541f9a15-4b44-4f9d-947d-623a59e402d7/1479x1000.jpg", + "https://www.compass.com/m/0/40ee4473-4017-41f1-8a63-67835ace5f37/1328x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/124-W-Newton-St-Unit-2-Boston-MA-02118/1Y4P0V_pid/" + }, + { + "listing_id": "1883563231270707233", + "slug": "address-upon-request-boston-ma-02114", + "title": "$1,400,000", + "price": 1400000, + "is_rent": false, + "street": "Address Upon Request", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02114", + "beds": 2, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1000, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/86e04750-778c-4b84-8fb7-96c3e430a44d", + "gallery_uuids": [ + "uuid/86e04750-778c-4b84-8fb7-96c3e430a44d", + "uuid/7bcb9832-5304-463c-98e4-6c7f2bf28c26", + "uuid/0a15605a-a258-47f2-8a59-00fe3e4e8c46", + "uuid/ea74354a-c36e-41a5-96a3-315d721bb386", + "uuid/9960a1dd-dcb7-4267-b3fa-4987c5d3362e", + "uuid/20aa2277-b8f7-44f4-9fa4-6c89eb44bae6", + "uuid/892de58d-9662-4c95-9f9f-f18a359fbfa8", + "uuid/83dbf149-fa90-4ddb-9571-8651e8355046" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/86e04750-778c-4b84-8fb7-96c3e430a44d/1500x1000.jpg", + "https://www.compass.com/m/0/7bcb9832-5304-463c-98e4-6c7f2bf28c26/1499x1000.jpg", + "https://www.compass.com/m/0/0a15605a-a258-47f2-8a59-00fe3e4e8c46/1500x1000.jpg", + "https://www.compass.com/m/0/ea74354a-c36e-41a5-96a3-315d721bb386/1499x1000.jpg", + "https://www.compass.com/m/0/9960a1dd-dcb7-4267-b3fa-4987c5d3362e/1498x1000.jpg", + "https://www.compass.com/m/0/20aa2277-b8f7-44f4-9fa4-6c89eb44bae6/1500x1000.jpg", + "https://www.compass.com/m/0/892de58d-9662-4c95-9f9f-f18a359fbfa8/1499x1000.jpg", + "https://www.compass.com/m/0/83dbf149-fa90-4ddb-9571-8651e8355046/1500x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/Address-Upon-Request-Boston-MA-02114/1883563231270707233_lid/" + }, + { + "listing_id": "2084394305768927185", + "slug": "457-w-broadway-unit-undisclosed-south-boston-ma-02127", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "457 West Broadway, Unit Undisclosed", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02127", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 929, + "latitude": 42.3358413, + "longitude": -71.04648399999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/3d09da14-4daf-48a1-9b3d-a2d222223841", + "gallery_uuids": [ + "uuid/3d09da14-4daf-48a1-9b3d-a2d222223841", + "uuid/df57ebe6-07ce-4119-949f-6ec1fb2c8280", + "uuid/6c269c8e-1807-4bd2-8980-07aaeaffaa87", + "uuid/0a00e82c-3ba1-4322-9d98-1012c6281915", + "uuid/56dce16e-d2ec-436a-b551-f5ce1bf4ab88", + "uuid/0d74b9a1-2a1d-4ba9-aa95-b564b57b60d9", + "uuid/ca4daa84-ed6d-4841-bc57-ac0fd34b027e", + "uuid/1e57e859-c748-4c21-b62e-6d444da03116" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/3d09da14-4daf-48a1-9b3d-a2d222223841/1500x999.jpg", + "https://www.compass.com/m/0/df57ebe6-07ce-4119-949f-6ec1fb2c8280/1500x999.jpg", + "https://www.compass.com/m/0/6c269c8e-1807-4bd2-8980-07aaeaffaa87/1500x999.jpg", + "https://www.compass.com/m/0/0a00e82c-3ba1-4322-9d98-1012c6281915/1500x999.jpg", + "https://www.compass.com/m/0/56dce16e-d2ec-436a-b551-f5ce1bf4ab88/1500x999.jpg", + "https://www.compass.com/m/0/0d74b9a1-2a1d-4ba9-aa95-b564b57b60d9/1500x999.jpg", + "https://www.compass.com/m/0/ca4daa84-ed6d-4841-bc57-ac0fd34b027e/1500x999.jpg", + "https://www.compass.com/m/0/1e57e859-c748-4c21-b62e-6d444da03116/1500x999.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/457-W-Broadway-Unit-Undisclosed-South-Boston-MA-02127/2084394305768927185_lid/" + }, + { + "listing_id": "2065403559912611993", + "slug": "758-e-6th-st-unit-3-south-boston-ma-02127", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "758 East 6th Street, Unit 3", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02127", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 520, + "latitude": 42.333298, + "longitude": -71.03001979999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/d1d29fbb-00e7-4e8a-9bd6-bf8ecbdf3f16", + "gallery_uuids": [ + "uuid/d1d29fbb-00e7-4e8a-9bd6-bf8ecbdf3f16", + "uuid/89f3eed0-41b7-4c40-91cd-8ed81c8f9d94", + "uuid/d8ac9c2c-30f6-48d8-b4d4-cc786bef6ecd", + "uuid/b2cb5d11-812d-455f-9554-e86627cbd1a9", + "uuid/c45ab728-5388-4d6b-9fdd-4d708391b0d3", + "uuid/f02f7acd-7952-4992-8deb-fcef854f7c6e", + "uuid/d3ac3288-4500-411b-8e23-32537894f240", + "uuid/71941473-81ff-4edf-9fc7-3caaf0a8046b" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/d1d29fbb-00e7-4e8a-9bd6-bf8ecbdf3f16/640x427.jpg", + "https://www.compass.com/m/0/89f3eed0-41b7-4c40-91cd-8ed81c8f9d94/640x427.jpg", + "https://www.compass.com/m/0/d8ac9c2c-30f6-48d8-b4d4-cc786bef6ecd/640x427.jpg", + "https://www.compass.com/m/0/b2cb5d11-812d-455f-9554-e86627cbd1a9/640x427.jpg", + "https://www.compass.com/m/0/c45ab728-5388-4d6b-9fdd-4d708391b0d3/640x427.jpg", + "https://www.compass.com/m/0/f02f7acd-7952-4992-8deb-fcef854f7c6e/640x427.jpg", + "https://www.compass.com/m/0/d3ac3288-4500-411b-8e23-32537894f240/640x427.jpg", + "https://www.compass.com/m/0/71941473-81ff-4edf-9fc7-3caaf0a8046b/640x427.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/758-E-6th-St-Unit-3-South-Boston-MA-02127/1Y3TNO_pid/" + }, + { + "listing_id": "2101268525165965761", + "slug": "48-gates-st-unit-1-boston-ma-02127", + "title": "$1,050,000", + "price": 1050000, + "is_rent": false, + "street": "48 Gates Street, Unit 1", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02127", + "beds": 2, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1112, + "latitude": 42.3322864, + "longitude": -71.047988, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/a1ecf9f5-be6b-45a0-be23-de2c113ff456", + "gallery_uuids": [ + "uuid/a1ecf9f5-be6b-45a0-be23-de2c113ff456", + "uuid/e07ce539-f545-45fd-884c-ee34c68d6f54", + "uuid/59d031eb-aac3-4105-b777-1ddf0dcc2ef9", + "uuid/c8e82ce3-d9a5-4c25-af6e-2b10b4f017b7", + "uuid/74446301-543f-468a-acae-ee9b001bf4b9", + "uuid/1827e549-6553-48dd-a7e5-6f1281abbbf3", + "uuid/9cf018a8-c1f8-4b3b-bd81-81bc87edc719", + "uuid/d5bed4b1-5ff9-4395-847c-2b199f6cd706" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/a1ecf9f5-be6b-45a0-be23-de2c113ff456/1500x995.jpg", + "https://www.compass.com/m/0/e07ce539-f545-45fd-884c-ee34c68d6f54/1500x1000.jpg", + "https://www.compass.com/m/0/59d031eb-aac3-4105-b777-1ddf0dcc2ef9/1468x1000.jpg", + "https://www.compass.com/m/0/c8e82ce3-d9a5-4c25-af6e-2b10b4f017b7/1500x1000.jpg", + "https://www.compass.com/m/0/74446301-543f-468a-acae-ee9b001bf4b9/1500x978.jpg", + "https://www.compass.com/m/0/1827e549-6553-48dd-a7e5-6f1281abbbf3/1500x1000.jpg", + "https://www.compass.com/m/0/9cf018a8-c1f8-4b3b-bd81-81bc87edc719/1500x1000.jpg", + "https://www.compass.com/m/0/d5bed4b1-5ff9-4395-847c-2b199f6cd706/1500x999.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/48-Gates-St-Unit-1-Boston-MA-02127/1ZHQ90_pid/" + }, + { + "listing_id": "2075621512939701289", + "slug": "90-revere-st-unit-2-boston-ma-02114", + "title": "$3,000,000", + "price": 3000000, + "is_rent": false, + "street": "90 Revere Street, Unit 2", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02114", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1712, + "latitude": 42.3595047, + "longitude": -71.06969029999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/61dabf14-21a6-41f4-ad98-5995cc05c7f6", + "gallery_uuids": [ + "uuid/61dabf14-21a6-41f4-ad98-5995cc05c7f6", + "uuid/d1935334-2edb-4cca-885a-5c486101c632", + "uuid/d2242b30-c384-477a-8fb2-cacc1d44afad", + "uuid/f48bf015-4b58-47e3-9987-0908f5232278", + "uuid/0b7a45c9-7f43-4fe5-89b3-5f8ce3b9f0e6", + "uuid/79a23d2c-dd97-4d43-853f-1a4ae339e978", + "uuid/11362f00-ab20-4b21-b8cb-04e58c268eee", + "uuid/aa7c2d5f-f143-4c52-8e32-bfa0bb7e1c27" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/61dabf14-21a6-41f4-ad98-5995cc05c7f6/1500x844.jpg", + "https://www.compass.com/m/0/d1935334-2edb-4cca-885a-5c486101c632/800x1000.jpg", + "https://www.compass.com/m/0/d2242b30-c384-477a-8fb2-cacc1d44afad/1254x1000.jpg", + "https://www.compass.com/m/0/f48bf015-4b58-47e3-9987-0908f5232278/1250x1000.jpg", + "https://www.compass.com/m/0/0b7a45c9-7f43-4fe5-89b3-5f8ce3b9f0e6/1250x1000.jpg", + "https://www.compass.com/m/0/79a23d2c-dd97-4d43-853f-1a4ae339e978/800x1000.jpg", + "https://www.compass.com/m/0/11362f00-ab20-4b21-b8cb-04e58c268eee/1250x1000.jpg", + "https://www.compass.com/m/0/aa7c2d5f-f143-4c52-8e32-bfa0bb7e1c27/1189x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/90-Revere-St-Unit-2-Boston-MA-02114/277ZA0_pid/" + }, + { + "listing_id": "2098738763159759137", + "slug": "128-marlborough-st-unit-1-boston-ma-02116", + "title": "$1,250,000", + "price": 1250000, + "is_rent": false, + "street": "128 Marlborough Street, Unit 1", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02116", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1041, + "latitude": 42.35294409999999, + "longitude": -71.0774241, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/eb0471c4-69cf-40e3-9d00-0f4e8bf32434", + "gallery_uuids": [ + "uuid/eb0471c4-69cf-40e3-9d00-0f4e8bf32434", + "uuid/4114001c-4c84-4cea-9783-3eaca67e6028", + "uuid/4ed65e72-1e2e-4872-ae7b-91a705e6d1fd", + "uuid/c8253f75-3f8c-44e4-a5a2-99b2a1954b2d", + "uuid/6b6d3751-037f-4200-8bf4-4330e38ee4a3", + "uuid/bb857c33-b342-498b-baa0-e1273d3a862a", + "uuid/e546190d-3f66-4e81-9a94-33554be48dc3", + "uuid/5fc2b354-7133-4b9e-ad0c-c29db4e40d20" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/eb0471c4-69cf-40e3-9d00-0f4e8bf32434/1500x1000.jpg", + "https://www.compass.com/m/0/4114001c-4c84-4cea-9783-3eaca67e6028/1500x1000.jpg", + "https://www.compass.com/m/0/4ed65e72-1e2e-4872-ae7b-91a705e6d1fd/1499x1000.jpg", + "https://www.compass.com/m/0/c8253f75-3f8c-44e4-a5a2-99b2a1954b2d/1500x1000.jpg", + "https://www.compass.com/m/0/6b6d3751-037f-4200-8bf4-4330e38ee4a3/1497x1000.jpg", + "https://www.compass.com/m/0/bb857c33-b342-498b-baa0-e1273d3a862a/1497x1000.jpg", + "https://www.compass.com/m/0/e546190d-3f66-4e81-9a94-33554be48dc3/667x1000.jpg", + "https://www.compass.com/m/0/5fc2b354-7133-4b9e-ad0c-c29db4e40d20/667x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/128-Marlborough-St-Unit-1-Boston-MA-02116/1ZXDY7_pid/" + }, + { + "listing_id": "2095303170155802753", + "slug": "725-e-6th-st-unit-1-boston-ma-02127", + "title": "$1,100,000", + "price": 1100000, + "is_rent": false, + "street": "725 East 6th Street, Unit 1", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02127", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 1622, + "latitude": 42.3330098, + "longitude": -71.0315995, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/e921a24b-1d84-4a90-bca9-f84dd26c51b3", + "gallery_uuids": [ + "uuid/e921a24b-1d84-4a90-bca9-f84dd26c51b3", + "uuid/d7c4a59f-ce8b-42c9-a054-d15a6e93de0a", + "uuid/7cb7edf3-d327-4614-bab3-ebeca168ede3", + "uuid/9b04c890-9ac9-4afb-8d57-6bd457775439", + "uuid/19b3a580-82a9-43c9-8296-0d097eac5573", + "uuid/6c06d2d5-a715-4b12-ac9b-238275da6157", + "uuid/f92f13cb-b338-4768-9580-9b699e58de6a", + "uuid/08074da5-b6c7-43a1-a842-734b43131771" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/e921a24b-1d84-4a90-bca9-f84dd26c51b3/1024x683.jpg", + "https://www.compass.com/m/0/d7c4a59f-ce8b-42c9-a054-d15a6e93de0a/1024x683.jpg", + "https://www.compass.com/m/0/7cb7edf3-d327-4614-bab3-ebeca168ede3/1024x683.jpg", + "https://www.compass.com/m/0/9b04c890-9ac9-4afb-8d57-6bd457775439/1024x683.jpg", + "https://www.compass.com/m/0/19b3a580-82a9-43c9-8296-0d097eac5573/1024x683.jpg", + "https://www.compass.com/m/0/6c06d2d5-a715-4b12-ac9b-238275da6157/1024x683.jpg", + "https://www.compass.com/m/0/f92f13cb-b338-4768-9580-9b699e58de6a/1024x683.jpg", + "https://www.compass.com/m/0/08074da5-b6c7-43a1-a842-734b43131771/1024x683.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/725-E-6th-St-Unit-1-Boston-MA-02127/1ZDHX3_pid/" + }, + { + "listing_id": "2099253015792069057", + "slug": "140-shawmut-ave-unit-7a-boston-ma-02118", + "title": "$2,695,000", + "price": 2695000, + "is_rent": false, + "street": "140 Shawmut Avenue, Unit 7A", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02118", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2596, + "latitude": 42.3459644, + "longitude": -71.0657809, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/13d9fa79-4551-4af6-b21f-7b69582912ff", + "gallery_uuids": [ + "uuid/13d9fa79-4551-4af6-b21f-7b69582912ff", + "uuid/dd14f47f-f29a-43dc-aa5c-3296b255f231", + "uuid/85d5304e-435b-416b-8c5f-e1505dcfcdc5", + "uuid/66c1219a-6421-4aaf-878b-6c5ca9f66788", + "uuid/c22d960a-2bf9-4886-aeff-bd794d34ef26", + "uuid/c6e6daba-ff3c-44b1-b3e6-37dd059b87ee", + "uuid/53a07751-1060-492c-9d5f-002acfca9430", + "uuid/6a9656c5-2d0f-4bde-8da6-a23b90d715cb" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/13d9fa79-4551-4af6-b21f-7b69582912ff/1024x682.jpg", + "https://www.compass.com/m/0/dd14f47f-f29a-43dc-aa5c-3296b255f231/1024x683.jpg", + "https://www.compass.com/m/0/85d5304e-435b-416b-8c5f-e1505dcfcdc5/1024x687.jpg", + "https://www.compass.com/m/0/66c1219a-6421-4aaf-878b-6c5ca9f66788/1024x683.jpg", + "https://www.compass.com/m/0/c22d960a-2bf9-4886-aeff-bd794d34ef26/1024x685.jpg", + "https://www.compass.com/m/0/c6e6daba-ff3c-44b1-b3e6-37dd059b87ee/1024x683.jpg", + "https://www.compass.com/m/0/53a07751-1060-492c-9d5f-002acfca9430/1024x683.jpg", + "https://www.compass.com/m/0/6a9656c5-2d0f-4bde-8da6-a23b90d715cb/1024x683.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/140-Shawmut-Ave-Unit-7A-Boston-MA-02118/1YANT8_pid/" + }, + { + "listing_id": "2100314198570186201", + "slug": "60-commonwealth-ave-unit-7-boston-ma-02116", + "title": "$2,680,000", + "price": 2680000, + "is_rent": false, + "street": "60 Commonwealth Avenue, Unit 7", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02116", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1500, + "latitude": 42.35243699999999, + "longitude": -71.0744529, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/48af598a-9143-4d7e-bc2d-7e412fa8883e", + "gallery_uuids": [ + "uuid/48af598a-9143-4d7e-bc2d-7e412fa8883e", + "uuid/a588bcba-51a1-4c57-8e65-fe0d2f9bb268", + "uuid/0210d178-4047-4549-bc5f-05fcba23ab1a", + "uuid/4a44c9a6-efed-4783-b59e-70262892a481", + "uuid/4da0e0d6-5777-48bb-be82-4517066c5b34", + "uuid/b700d82a-f2df-48a1-8dae-1df948721e96", + "uuid/5b7f5eeb-59c8-404a-857b-7a9cb1deb3f8", + "uuid/f9b85f64-4e1f-47e9-b5e5-a1ce77170dc7" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/48af598a-9143-4d7e-bc2d-7e412fa8883e/1500x1000.jpg", + "https://www.compass.com/m/0/a588bcba-51a1-4c57-8e65-fe0d2f9bb268/1499x1000.jpg", + "https://www.compass.com/m/0/0210d178-4047-4549-bc5f-05fcba23ab1a/1500x1000.jpg", + "https://www.compass.com/m/0/4a44c9a6-efed-4783-b59e-70262892a481/1500x1000.jpg", + "https://www.compass.com/m/0/4da0e0d6-5777-48bb-be82-4517066c5b34/667x1000.jpg", + "https://www.compass.com/m/0/b700d82a-f2df-48a1-8dae-1df948721e96/1500x1000.jpg", + "https://www.compass.com/m/0/5b7f5eeb-59c8-404a-857b-7a9cb1deb3f8/1500x1000.jpg", + "https://www.compass.com/m/0/f9b85f64-4e1f-47e9-b5e5-a1ce77170dc7/1500x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/60-Commonwealth-Ave-Unit-7-Boston-MA-02116/1BZP1X_pid/" + }, + { + "listing_id": "2103204820025286625", + "slug": "90-revere-st-unit-3-boston-ma-02114", + "title": "$3,500,000", + "price": 3500000, + "is_rent": false, + "street": "90 Revere Street, Unit 3", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02114", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1800, + "latitude": 42.3595047, + "longitude": -71.06969029999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/5566b888-657b-4ef0-a188-3c597e4907d7", + "gallery_uuids": [ + "uuid/5566b888-657b-4ef0-a188-3c597e4907d7", + "uuid/c5002f83-6bbc-42ba-9705-23de119a0380", + "uuid/2a4798ab-a236-4f56-8a43-0301ec687321", + "uuid/b7ba85fe-6d43-4243-8100-da46a56d282e", + "uuid/dd744391-5b37-4728-bcb5-30841ab241db", + "uuid/2b551ef0-9b63-4095-9c70-00ff7a12521e", + "uuid/e9698939-2561-43fc-9ff2-9e652890e9a4", + "uuid/14aaf4b5-b9de-461b-9af0-368aff826d46" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/5566b888-657b-4ef0-a188-3c597e4907d7/1500x844.jpg", + "https://www.compass.com/m/0/c5002f83-6bbc-42ba-9705-23de119a0380/824x1000.jpg", + "https://www.compass.com/m/0/2a4798ab-a236-4f56-8a43-0301ec687321/1254x1000.jpg", + "https://www.compass.com/m/0/b7ba85fe-6d43-4243-8100-da46a56d282e/1250x1000.jpg", + "https://www.compass.com/m/0/dd744391-5b37-4728-bcb5-30841ab241db/1500x844.jpg", + "https://www.compass.com/m/0/2b551ef0-9b63-4095-9c70-00ff7a12521e/996x1000.jpg", + "https://www.compass.com/m/0/e9698939-2561-43fc-9ff2-9e652890e9a4/800x1000.jpg", + "https://www.compass.com/m/0/14aaf4b5-b9de-461b-9af0-368aff826d46/1189x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/90-Revere-St-Unit-3-Boston-MA-02114/1ZGL6K_pid/" + }, + { + "listing_id": "2095788616787751217", + "slug": "2-haven-st-boston-ma-02118", + "title": "$3,095,000", + "price": 3095000, + "is_rent": false, + "street": "2 Haven Street", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02118", + "beds": 4, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2391, + "latitude": 42.339128, + "longitude": -71.0746805, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/863225eb-7e91-4aa1-9352-196f2eb122be", + "gallery_uuids": [ + "uuid/863225eb-7e91-4aa1-9352-196f2eb122be", + "uuid/4d6d3672-ec1a-40ef-af1f-d84947b0b512", + "uuid/3c2c7525-5ebd-4940-aa8b-300eb4f20e5e", + "uuid/c2dd554f-3d1d-4eac-b3ed-23b36979bf41", + "uuid/64d675e0-97e8-42b0-b2e8-d1652eba2dd7", + "uuid/c60c10e5-9e6e-4224-b9ae-ee6ae98949e1", + "uuid/52d8b62e-8791-46b0-98bd-66df787eced1", + "uuid/1f941fc0-5021-4eb6-a69a-8419d37a051e" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/863225eb-7e91-4aa1-9352-196f2eb122be/1499x1000.jpg", + "https://www.compass.com/m/0/4d6d3672-ec1a-40ef-af1f-d84947b0b512/667x1000.jpg", + "https://www.compass.com/m/0/3c2c7525-5ebd-4940-aa8b-300eb4f20e5e/1499x1000.jpg", + "https://www.compass.com/m/0/c2dd554f-3d1d-4eac-b3ed-23b36979bf41/1499x1000.jpg", + "https://www.compass.com/m/0/64d675e0-97e8-42b0-b2e8-d1652eba2dd7/1499x1000.jpg", + "https://www.compass.com/m/0/c60c10e5-9e6e-4224-b9ae-ee6ae98949e1/1499x1000.jpg", + "https://www.compass.com/m/0/52d8b62e-8791-46b0-98bd-66df787eced1/667x1000.jpg", + "https://www.compass.com/m/0/1f941fc0-5021-4eb6-a69a-8419d37a051e/667x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/2-Haven-St-Boston-MA-02118/1Z6WDG_pid/" + }, + { + "listing_id": "1937764922298397657", + "slug": "795-e-4th-st-boston-ma-02127", + "title": "$2,799,000", + "price": 2799000, + "is_rent": false, + "street": "795 East 4th Street", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02127", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2783, + "latitude": 42.3346736, + "longitude": -71.0318618, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/48b75f82-3b97-49cb-9b73-0b676f41cc07", + "gallery_uuids": [ + "uuid/48b75f82-3b97-49cb-9b73-0b676f41cc07", + "uuid/57750861-bfc2-444a-a6e0-36a2f3aff3cb", + "uuid/d8adcb6d-6263-4bf1-9500-da9e95c84579", + "uuid/fa974150-b2a3-41c2-818e-bd18cd1d3d32", + "uuid/2f976706-e16c-4c96-ae4c-c3f5db67b72f", + "uuid/443627e4-6f62-4c0a-8941-3f5e0407c0cd", + "uuid/bed4575a-d311-4d00-87d2-c0681f9e8b4b", + "uuid/5c026203-a2d5-4a27-a57b-e69094aac692" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/48b75f82-3b97-49cb-9b73-0b676f41cc07/1024x683.jpg", + "https://www.compass.com/m/0/57750861-bfc2-444a-a6e0-36a2f3aff3cb/1024x683.jpg", + "https://www.compass.com/m/0/d8adcb6d-6263-4bf1-9500-da9e95c84579/1024x683.jpg", + "https://www.compass.com/m/0/fa974150-b2a3-41c2-818e-bd18cd1d3d32/1024x683.jpg", + "https://www.compass.com/m/0/2f976706-e16c-4c96-ae4c-c3f5db67b72f/1024x683.jpg", + "https://www.compass.com/m/0/443627e4-6f62-4c0a-8941-3f5e0407c0cd/1024x683.jpg", + "https://www.compass.com/m/0/bed4575a-d311-4d00-87d2-c0681f9e8b4b/1024x683.jpg", + "https://www.compass.com/m/0/5c026203-a2d5-4a27-a57b-e69094aac692/1024x683.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/795-E-4th-St-Boston-MA-02127/1HT8FT_pid/" + }, + { + "listing_id": "2103137999553056777", + "slug": "193-beacon-st-unit-ph-boston-ma-02116", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "193 Beacon Street, Unit PH", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02116", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2030, + "latitude": 42.3541062, + "longitude": -71.0764028, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/08f91948-4722-4844-97aa-2f73cb8a5aea", + "gallery_uuids": [ + "uuid/08f91948-4722-4844-97aa-2f73cb8a5aea", + "uuid/8c67bdd4-c420-4778-a7a4-dd7661615c96", + "uuid/634e1e44-9eb1-44f3-8182-3ab10973b160", + "uuid/022ee062-4c84-45ea-80e5-122084916634", + "uuid/8b65d9ee-1fdd-4364-829b-61ccc6b739f2", + "uuid/8b90776d-a271-4abc-9f92-58bafa083d47", + "uuid/9f8b925a-702f-4a22-a16c-0de6e310635f", + "uuid/7c4b9c61-2385-445f-b8f0-5cd4bfc44db8" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/08f91948-4722-4844-97aa-2f73cb8a5aea/1499x1000.jpg", + "https://www.compass.com/m/0/8c67bdd4-c420-4778-a7a4-dd7661615c96/1500x998.jpg", + "https://www.compass.com/m/0/634e1e44-9eb1-44f3-8182-3ab10973b160/1494x1000.jpg", + "https://www.compass.com/m/0/022ee062-4c84-45ea-80e5-122084916634/1500x999.jpg", + "https://www.compass.com/m/0/8b65d9ee-1fdd-4364-829b-61ccc6b739f2/1499x1000.jpg", + "https://www.compass.com/m/0/8b90776d-a271-4abc-9f92-58bafa083d47/1500x998.jpg", + "https://www.compass.com/m/0/9f8b925a-702f-4a22-a16c-0de6e310635f/1500x999.jpg", + "https://www.compass.com/m/0/7c4b9c61-2385-445f-b8f0-5cd4bfc44db8/1500x998.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/193-Beacon-St-Unit-PH-Boston-MA-02116/27HY1C_pid/" + }, + { + "listing_id": "2083405751345714505", + "slug": "tremont-st-boston-ma-02118", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "Tremont Street", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02118", + "beds": 10, + "baths": 10.0, + "baths_full": 6, + "baths_half": null, + "sqft": 3800, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/c2ee568f-bc34-4165-8af6-2495c8835f47", + "gallery_uuids": [ + "uuid/c2ee568f-bc34-4165-8af6-2495c8835f47", + "uuid/e0f10d47-6953-4c00-a838-bb8675781827", + "uuid/16b86acd-59e0-4439-b829-61773669d5c2", + "uuid/0f719288-9a81-4fbf-8192-c9cfbf447f14", + "uuid/da5ddc3b-70f8-4e5c-afeb-5ff85be7c6b6", + "uuid/73202da8-d86f-4292-989e-0d5bb3b01e96", + "uuid/d7fb5063-5d2a-4122-a6c5-46a7b06234eb", + "uuid/9573fa48-8604-4073-9550-bb424c210c0b" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/c2ee568f-bc34-4165-8af6-2495c8835f47/1024x682.jpg", + "https://www.compass.com/m/0/e0f10d47-6953-4c00-a838-bb8675781827/1024x683.jpg", + "https://www.compass.com/m/0/16b86acd-59e0-4439-b829-61773669d5c2/1024x683.jpg", + "https://www.compass.com/m/0/0f719288-9a81-4fbf-8192-c9cfbf447f14/1024x696.jpg", + "https://www.compass.com/m/0/da5ddc3b-70f8-4e5c-afeb-5ff85be7c6b6/1024x683.jpg", + "https://www.compass.com/m/0/73202da8-d86f-4292-989e-0d5bb3b01e96/1024x683.jpg", + "https://www.compass.com/m/0/d7fb5063-5d2a-4122-a6c5-46a7b06234eb/1024x683.jpg", + "https://www.compass.com/m/0/9573fa48-8604-4073-9550-bb424c210c0b/1024x683.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/Tremont-St-Boston-MA-02118/2083405751345714505_lid/" + }, + { + "listing_id": "2098042148597621689", + "slug": "321-commonwealth-ave-unit-40-boston-ma-02115", + "title": "$2,350,000", + "price": 2350000, + "is_rent": false, + "street": "321 Commonwealth Avenue, Unit 40", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02115", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1425, + "latitude": 42.3499646, + "longitude": -71.08694129999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/d81439ca-7d86-459e-9c6b-ffb1221b641b", + "gallery_uuids": [ + "uuid/d81439ca-7d86-459e-9c6b-ffb1221b641b", + "uuid/307251fd-6a42-4f12-bace-6c4c5c82e091", + "uuid/e34529c6-e810-475c-a118-8a7c9313a5a9", + "uuid/9ae96f52-8f76-47b9-9de7-8f1aa86dfa2d", + "uuid/7daed9cb-8b66-4682-a1d2-199d6a38939d", + "uuid/1f9c5219-2f12-4a7a-bd75-a4143d1027aa", + "uuid/92b53dae-8823-4e3e-b9df-e644dba21204", + "uuid/4709951a-8491-4c84-b538-998daf68b492" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/d81439ca-7d86-459e-9c6b-ffb1221b641b/1500x999.jpg", + "https://www.compass.com/m/0/307251fd-6a42-4f12-bace-6c4c5c82e091/1500x999.jpg", + "https://www.compass.com/m/0/e34529c6-e810-475c-a118-8a7c9313a5a9/1500x999.jpg", + "https://www.compass.com/m/0/9ae96f52-8f76-47b9-9de7-8f1aa86dfa2d/1500x999.jpg", + "https://www.compass.com/m/0/7daed9cb-8b66-4682-a1d2-199d6a38939d/1500x999.jpg", + "https://www.compass.com/m/0/1f9c5219-2f12-4a7a-bd75-a4143d1027aa/1500x999.jpg", + "https://www.compass.com/m/0/92b53dae-8823-4e3e-b9df-e644dba21204/1500x999.jpg", + "https://www.compass.com/m/0/4709951a-8491-4c84-b538-998daf68b492/1500x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/321-Commonwealth-Ave-Unit-40-Boston-MA-02115/1YMLQZ_pid/" + }, + { + "listing_id": "2098031721222622417", + "slug": "377-w-first-st-unit-2-south-boston-ma-02127", + "title": "$1,775,000", + "price": 1775000, + "is_rent": false, + "street": "377 West First Street, Unit 2", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02127", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2272, + "latitude": 42.3380516, + "longitude": -71.04492069999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/b14adbcc-317e-4727-a57b-e4c5cd61093a", + "gallery_uuids": [ + "uuid/b14adbcc-317e-4727-a57b-e4c5cd61093a", + "uuid/a402cab1-7f31-471a-959e-4065954eee94", + "uuid/31d78987-7d28-40f7-bddd-78a1179f8be6", + "uuid/d9f2d198-c7a5-4d15-91ad-f57f8f879811", + "uuid/ccbe0eef-8c3b-4bdf-b4db-0c683342ad2d", + "uuid/3a2110dc-cb76-4c92-a508-0d74f1cabbf5", + "uuid/75c96c03-4116-4b87-8c8f-cb935292fca7", + "uuid/b2d1a80d-c44e-43e0-98ae-ae4f54bf6854" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/b14adbcc-317e-4727-a57b-e4c5cd61093a/1500x999.jpg", + "https://www.compass.com/m/0/a402cab1-7f31-471a-959e-4065954eee94/1500x999.jpg", + "https://www.compass.com/m/0/31d78987-7d28-40f7-bddd-78a1179f8be6/1500x999.jpg", + "https://www.compass.com/m/0/d9f2d198-c7a5-4d15-91ad-f57f8f879811/1500x999.jpg", + "https://www.compass.com/m/0/ccbe0eef-8c3b-4bdf-b4db-0c683342ad2d/1500x1000.jpg", + "https://www.compass.com/m/0/3a2110dc-cb76-4c92-a508-0d74f1cabbf5/1500x999.jpg", + "https://www.compass.com/m/0/75c96c03-4116-4b87-8c8f-cb935292fca7/1500x999.jpg", + "https://www.compass.com/m/0/b2d1a80d-c44e-43e0-98ae-ae4f54bf6854/1500x999.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/377-W-First-St-Unit-2-South-Boston-MA-02127/1Y8A01_pid/" + }, + { + "listing_id": "2039960093113405161", + "slug": "131-mt-vernon-st-unit-2-boston-ma-02108", + "title": "$3,200,000", + "price": 3200000, + "is_rent": false, + "street": "131 Mt Vernon Street, Unit 2", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02108", + "beds": 4, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2183, + "latitude": 42.35775, + "longitude": -71.07104559999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/e09b25c8-af2d-44db-b9b8-d9a234b7c452", + "gallery_uuids": [ + "uuid/e09b25c8-af2d-44db-b9b8-d9a234b7c452", + "uuid/10e7b435-c19a-44f2-93f2-0ec5e2f6bc90", + "uuid/ddd9555c-056b-4895-9071-973e5d02a566" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/e09b25c8-af2d-44db-b9b8-d9a234b7c452/1333x1000.jpg", + "https://www.compass.com/m/0/10e7b435-c19a-44f2-93f2-0ec5e2f6bc90/1500x998.jpg", + "https://www.compass.com/m/0/ddd9555c-056b-4895-9071-973e5d02a566/1333x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/131-Mt-Vernon-St-Unit-2-Boston-MA-02108/1Z91PH_pid/" + }, + { + "listing_id": "1926269156959548849", + "slug": "666-massachusetts-ave-boston-ma-02118", + "title": "$4,100,000", + "price": 4100000, + "is_rent": false, + "street": "666 Massachusetts Avenue", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02118", + "beds": 9, + "baths": 7.0, + "baths_full": 7, + "baths_half": null, + "sqft": 5050, + "latitude": 42.3360024, + "longitude": -71.0760331, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/dfc58159-beb1-4421-9f2c-865d10752cbe", + "gallery_uuids": [ + "uuid/dfc58159-beb1-4421-9f2c-865d10752cbe", + "uuid/14d36419-8203-4918-a3d4-01eb2066e975", + "uuid/38428eff-f2ea-4313-873b-c5742ef17d21", + "uuid/6eaa7323-38e4-4d72-a984-92a151e405e2", + "uuid/48eab814-f5ef-4150-ae53-219d06894602", + "uuid/5a0b171e-eddc-47cc-9b5c-68364149b0e4", + "uuid/a46b19d2-8861-4659-b3f0-0348d430a217", + "uuid/70296eda-0a7a-47dd-a871-2131a73859c4" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/dfc58159-beb1-4421-9f2c-865d10752cbe/512x768.jpg", + "https://www.compass.com/m/0/14d36419-8203-4918-a3d4-01eb2066e975/1024x683.jpg", + "https://www.compass.com/m/0/38428eff-f2ea-4313-873b-c5742ef17d21/1024x683.jpg", + "https://www.compass.com/m/0/6eaa7323-38e4-4d72-a984-92a151e405e2/512x768.jpg", + "https://www.compass.com/m/0/48eab814-f5ef-4150-ae53-219d06894602/1024x683.jpg", + "https://www.compass.com/m/0/5a0b171e-eddc-47cc-9b5c-68364149b0e4/1024x683.jpg", + "https://www.compass.com/m/0/a46b19d2-8861-4659-b3f0-0348d430a217/1024x683.jpg", + "https://www.compass.com/m/0/70296eda-0a7a-47dd-a871-2131a73859c4/1024x683.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/666-Massachusetts-Ave-Boston-MA-02118/1ZH6D8_pid/" + }, + { + "listing_id": "2099386722704543969", + "slug": "kenney-st-jamaica-plain-ma-02130", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "Kenney Street", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02130", + "beds": 3, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 924, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/2bb425fe-6c45-499f-a29e-b86e797eb932", + "gallery_uuids": [ + "uuid/2bb425fe-6c45-499f-a29e-b86e797eb932" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/2bb425fe-6c45-499f-a29e-b86e797eb932/750x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/Kenney-St-Jamaica-Plain-MA-02130/2099386722704543969_lid/" + }, + { + "listing_id": "2095873168370080441", + "slug": "kingsboro-park-jamaica-plain-ma-02130", + "title": "$789,000", + "price": 789000, + "is_rent": false, + "street": "Kingsboro Park", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02130", + "beds": 3, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1184, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/692e8247-100b-47dc-8cd0-6abd90d5e310", + "gallery_uuids": [ + "uuid/692e8247-100b-47dc-8cd0-6abd90d5e310", + "uuid/fb299d24-4ed2-407f-9951-3c5638688892" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/692e8247-100b-47dc-8cd0-6abd90d5e310/1333x1000.jpg", + "https://www.compass.com/m/0/fb299d24-4ed2-407f-9951-3c5638688892/750x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/Kingsboro-Park-Jamaica-Plain-MA-02130/2095873168370080441_lid/" + }, + { + "listing_id": "2088539773340517209", + "slug": "address-upon-request-jamaica-plain-ma-02130", + "title": "$850,000", + "price": 850000, + "is_rent": false, + "street": "Address Upon Request", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02130", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1450, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/8fb59421-1596-4630-be79-48fc770f846e", + "gallery_uuids": [ + "uuid/8fb59421-1596-4630-be79-48fc770f846e", + "uuid/763371da-0ffc-449c-9115-18542f45ab68", + "uuid/f2370494-5146-4ae3-a0c8-2d653457452a", + "uuid/8f7c3da8-a389-450d-b692-be2c628fd391", + "uuid/8e35744f-0522-4082-b407-1df1fdab1caf", + "uuid/2c954e17-c14e-45a1-b339-b283d10ffc8b", + "uuid/979155d9-2e74-4ec0-9a8f-ead413f799c2", + "uuid/9386078b-3f43-4b71-b619-05591fdd4194" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/8fb59421-1596-4630-be79-48fc770f846e/1500x1000.jpg", + "https://www.compass.com/m/0/763371da-0ffc-449c-9115-18542f45ab68/1491x1000.jpg", + "https://www.compass.com/m/0/f2370494-5146-4ae3-a0c8-2d653457452a/1500x1000.jpg", + "https://www.compass.com/m/0/8f7c3da8-a389-450d-b692-be2c628fd391/1500x1000.jpg", + "https://www.compass.com/m/0/8e35744f-0522-4082-b407-1df1fdab1caf/1500x1000.jpg", + "https://www.compass.com/m/0/2c954e17-c14e-45a1-b339-b283d10ffc8b/1500x1000.jpg", + "https://www.compass.com/m/0/979155d9-2e74-4ec0-9a8f-ead413f799c2/1500x1000.jpg", + "https://www.compass.com/m/0/9386078b-3f43-4b71-b619-05591fdd4194/1500x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/Address-Upon-Request-Jamaica-Plain-MA-02130/2088539773340517209_lid/" + }, + { + "listing_id": "2031484899441120841", + "slug": "address-upon-request-boston-ma-02125", + "title": "$899,000", + "price": 899000, + "is_rent": false, + "street": "Address Upon Request", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02125", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1713, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/e0a74bb9-d089-4df1-b2c9-7b547b273db9", + "gallery_uuids": [ + "uuid/e0a74bb9-d089-4df1-b2c9-7b547b273db9", + "uuid/22d8a261-3602-42f5-82ac-ed0e06abd863", + "uuid/6a5bcc35-653a-448e-8c61-4b87c8546264", + "uuid/f87f138e-0d28-4e34-9aee-fbb1ee2ac2cd", + "uuid/df2c435f-6b7a-4f4f-8aa1-1c4e7c1c3d51", + "uuid/c52c2dda-9f3f-4813-9f74-1c1e84015e71" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/e0a74bb9-d089-4df1-b2c9-7b547b273db9/1416x1000.jpg", + "https://www.compass.com/m/0/22d8a261-3602-42f5-82ac-ed0e06abd863/1333x1000.jpg", + "https://www.compass.com/m/0/6a5bcc35-653a-448e-8c61-4b87c8546264/1333x1000.jpg", + "https://www.compass.com/m/0/f87f138e-0d28-4e34-9aee-fbb1ee2ac2cd/1333x1000.jpg", + "https://www.compass.com/m/0/df2c435f-6b7a-4f4f-8aa1-1c4e7c1c3d51/1333x1000.jpg", + "https://www.compass.com/m/0/c52c2dda-9f3f-4813-9f74-1c1e84015e71/667x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/Address-Upon-Request-Boston-MA-02125/2031484899441120841_lid/" + }, + { + "listing_id": "2095855481308818553", + "slug": "address-upon-request-jamaica-plain-ma-02130", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "Address Upon Request", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02130", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1188, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Virtual Tour" + ], + "hero_uuid": "uuid/2d56104a-6b33-4670-bd05-326b79222fe9", + "gallery_uuids": [ + "uuid/2d56104a-6b33-4670-bd05-326b79222fe9", + "uuid/3ceef9a7-2d67-430e-b108-f751176304f9", + "uuid/c28c83cd-bbec-4e14-8c60-ab9850c5f2f9", + "uuid/42cc87c9-1689-438f-b780-fffc2e2a4430", + "uuid/3613ebe9-8945-440c-85c6-3bd4da93d89a", + "uuid/6ee96467-498e-4183-8da9-823cca422b4b", + "uuid/14c03385-f50c-4f55-8ff2-8b36edc513c7", + "uuid/edf073e6-6eed-46ae-9423-d8cf397a02c4" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/2d56104a-6b33-4670-bd05-326b79222fe9/1499x1000.jpg", + "https://www.compass.com/m/0/3ceef9a7-2d67-430e-b108-f751176304f9/1500x999.jpg", + "https://www.compass.com/m/0/c28c83cd-bbec-4e14-8c60-ab9850c5f2f9/1500x999.jpg", + "https://www.compass.com/m/0/42cc87c9-1689-438f-b780-fffc2e2a4430/1500x999.jpg", + "https://www.compass.com/m/0/3613ebe9-8945-440c-85c6-3bd4da93d89a/1500x999.jpg", + "https://www.compass.com/m/0/6ee96467-498e-4183-8da9-823cca422b4b/1500x999.jpg", + "https://www.compass.com/m/0/14c03385-f50c-4f55-8ff2-8b36edc513c7/1500x999.jpg", + "https://www.compass.com/m/0/edf073e6-6eed-46ae-9423-d8cf397a02c4/1500x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/Address-Upon-Request-Jamaica-Plain-MA-02130/2095855481308818553_lid/" + }, + { + "listing_id": "2099381091675141849", + "slug": "21-glen-rd-unit-10-jamaica-plain-ma-02130", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "21 Glen Road, Unit 10", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02130", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1005, + "latitude": 42.309057, + "longitude": -71.104165, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/0e1ab256-5080-4a12-8722-72f900f3041a", + "gallery_uuids": [ + "uuid/0e1ab256-5080-4a12-8722-72f900f3041a", + "uuid/9b75b614-bf85-4f2b-b208-332df5549432", + "uuid/1b3ae69e-3e8f-4fdb-b676-871233bbe157" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/0e1ab256-5080-4a12-8722-72f900f3041a/750x1000.jpg", + "https://www.compass.com/m/0/9b75b614-bf85-4f2b-b208-332df5549432/1334x1000.jpg", + "https://www.compass.com/m/0/1b3ae69e-3e8f-4fdb-b676-871233bbe157/1350x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/21-Glen-Rd-Unit-10-Jamaica-Plain-MA-02130/1ZH6AJ_pid/" + }, + { + "listing_id": "2070485019447303009", + "slug": "137-princeton-st-unit-2-boston-ma-02128", + "title": "$599,000", + "price": 599000, + "is_rent": false, + "street": "137 Princeton Street, Unit 2", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02128", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1108, + "latitude": 42.377971, + "longitude": -71.03429249999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/7df4dd22-bad6-4df7-b446-0028025bb26c", + "gallery_uuids": [ + "uuid/7df4dd22-bad6-4df7-b446-0028025bb26c", + "uuid/52c012d1-266c-4e8b-8a33-e880a663dee1", + "uuid/d0ce0747-d43f-4e8c-9cd3-2673ca2aef59", + "uuid/b0efef49-1b8b-4d73-9b1c-144967fdc9ae", + "uuid/5189ee88-8a32-47f2-b38a-09d28f3a457c", + "uuid/17f5798d-6b38-4de5-83c3-430913b7bd68", + "uuid/58923270-77c7-47b0-bc14-4d0d6fe6035e", + "uuid/ad7d8cae-8a5a-4e75-be21-70b1ea40e588" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/7df4dd22-bad6-4df7-b446-0028025bb26c/1024x683.jpg", + "https://www.compass.com/m/0/52c012d1-266c-4e8b-8a33-e880a663dee1/1024x683.jpg", + "https://www.compass.com/m/0/d0ce0747-d43f-4e8c-9cd3-2673ca2aef59/1024x683.jpg", + "https://www.compass.com/m/0/b0efef49-1b8b-4d73-9b1c-144967fdc9ae/1024x683.jpg", + "https://www.compass.com/m/0/5189ee88-8a32-47f2-b38a-09d28f3a457c/1024x683.jpg", + "https://www.compass.com/m/0/17f5798d-6b38-4de5-83c3-430913b7bd68/1024x683.jpg", + "https://www.compass.com/m/0/58923270-77c7-47b0-bc14-4d0d6fe6035e/1024x683.jpg", + "https://www.compass.com/m/0/ad7d8cae-8a5a-4e75-be21-70b1ea40e588/1024x683.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/137-Princeton-St-Unit-2-Boston-MA-02128/1YYB25_pid/" + }, + { + "listing_id": "2098287082387157673", + "slug": "16-a-meehan-st-unit-1-jamaica-plain-ma-02130", + "title": "$899,000", + "price": 899000, + "is_rent": false, + "street": "16 A Meehan Street, Unit 1", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02130", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1217, + "latitude": 42.3054521, + "longitude": -71.1070459, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/039f1a6e-6ffe-46e4-a417-3dd9d292db05", + "gallery_uuids": [ + "uuid/039f1a6e-6ffe-46e4-a417-3dd9d292db05", + "uuid/36a3e19d-09bf-43d8-9bf7-f77c31324fa7", + "uuid/2f655757-cb99-4a13-b2b7-83ebd0ca66eb", + "uuid/c0cdc5ec-c845-4544-ac10-d04acd56dd9a", + "uuid/353bc421-cb17-481e-8a0e-d638c95f350e", + "uuid/03312bbe-a3f5-4a60-9ce8-c5feab45d759", + "uuid/fc8d6e2c-f675-437f-8588-fc9c33709212", + "uuid/f5b90166-13e8-455b-83a2-7b1bfe1069ae" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/039f1a6e-6ffe-46e4-a417-3dd9d292db05/1500x1000.jpg", + "https://www.compass.com/m/0/36a3e19d-09bf-43d8-9bf7-f77c31324fa7/1500x1000.jpg", + "https://www.compass.com/m/0/2f655757-cb99-4a13-b2b7-83ebd0ca66eb/1500x1000.jpg", + "https://www.compass.com/m/0/c0cdc5ec-c845-4544-ac10-d04acd56dd9a/1500x1000.jpg", + "https://www.compass.com/m/0/353bc421-cb17-481e-8a0e-d638c95f350e/1500x1000.jpg", + "https://www.compass.com/m/0/03312bbe-a3f5-4a60-9ce8-c5feab45d759/1500x1000.jpg", + "https://www.compass.com/m/0/fc8d6e2c-f675-437f-8588-fc9c33709212/1500x1000.jpg", + "https://www.compass.com/m/0/f5b90166-13e8-455b-83a2-7b1bfe1069ae/1333x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/16-A-Meehan-St-Unit-1-Jamaica-Plain-MA-02130/27ENQU_pid/" + }, + { + "listing_id": "1729195892532402377", + "slug": "167-lexington-st-unit-2-east-boston-ma-02128", + "title": "$650,000", + "price": 650000, + "is_rent": false, + "street": "167 Lexington Street, Unit 2", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02128", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 634, + "latitude": 42.37896550000001, + "longitude": -71.03365409999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/25fcfabc-8b5b-42b6-bed0-4fca913fbb02", + "gallery_uuids": [ + "uuid/25fcfabc-8b5b-42b6-bed0-4fca913fbb02", + "uuid/8cf260ca-e4f8-48af-8f92-aa8f05ea96d0", + "uuid/9a4391aa-0aa0-4c80-b905-b84f51736ac7", + "uuid/81adba25-c493-472d-aeb3-ff530f4b22a4", + "uuid/695e972d-ea6f-46e6-9264-002ec722363c", + "uuid/a78528c5-d753-4682-b9cf-90f6b803112d", + "uuid/e3a21671-270e-46df-a0cd-91bcf4c701a0", + "uuid/e96afde7-7a78-4704-a2eb-c416970d15ca" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/25fcfabc-8b5b-42b6-bed0-4fca913fbb02/753x1000.jpg", + "https://www.compass.com/m/0/8cf260ca-e4f8-48af-8f92-aa8f05ea96d0/753x1000.jpg", + "https://www.compass.com/m/0/9a4391aa-0aa0-4c80-b905-b84f51736ac7/1500x1000.jpg", + "https://www.compass.com/m/0/81adba25-c493-472d-aeb3-ff530f4b22a4/1500x1000.jpg", + "https://www.compass.com/m/0/695e972d-ea6f-46e6-9264-002ec722363c/1500x1000.jpg", + "https://www.compass.com/m/0/a78528c5-d753-4682-b9cf-90f6b803112d/1500x1000.jpg", + "https://www.compass.com/m/0/e3a21671-270e-46df-a0cd-91bcf4c701a0/1500x1000.jpg", + "https://www.compass.com/m/0/e96afde7-7a78-4704-a2eb-c416970d15ca/1500x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/167-Lexington-St-Unit-2-East-Boston-MA-02128/1YB3L7_pid/" + }, + { + "listing_id": "2043839811034030889", + "slug": "319-a-st-unit-211-boston-ma-02210", + "title": "$998,500", + "price": 998500, + "is_rent": false, + "street": "319 A Street, Unit 211", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02210", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 813, + "latitude": 42.3488895, + "longitude": -71.0488567, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/84a47a00-de8a-4c5c-832c-42a355eda044", + "gallery_uuids": [ + "uuid/84a47a00-de8a-4c5c-832c-42a355eda044", + "uuid/5814928b-c0fb-4677-bd66-8187ce400177", + "uuid/497b660f-87ab-4bf9-a82e-9691ed5eb1ee", + "uuid/3b9fe2fd-645d-441f-b701-4bf390fd2342", + "uuid/0045cf5d-ef13-47d8-b021-a4f2ad58508b", + "uuid/6cf04e14-a610-40b4-a05e-bcfee658edc7", + "uuid/347cb60b-a439-4ccc-9c3b-b1c5e73dc657", + "uuid/1cd55df6-e5ec-4c6b-8767-e6a6e83b4a22" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/84a47a00-de8a-4c5c-832c-42a355eda044/1024x683.jpg", + "https://www.compass.com/m/0/5814928b-c0fb-4677-bd66-8187ce400177/1024x683.jpg", + "https://www.compass.com/m/0/497b660f-87ab-4bf9-a82e-9691ed5eb1ee/1024x683.jpg", + "https://www.compass.com/m/0/3b9fe2fd-645d-441f-b701-4bf390fd2342/1024x683.jpg", + "https://www.compass.com/m/0/0045cf5d-ef13-47d8-b021-a4f2ad58508b/1024x683.jpg", + "https://www.compass.com/m/0/6cf04e14-a610-40b4-a05e-bcfee658edc7/1024x683.jpg", + "https://www.compass.com/m/0/347cb60b-a439-4ccc-9c3b-b1c5e73dc657/1024x683.jpg", + "https://www.compass.com/m/0/1cd55df6-e5ec-4c6b-8767-e6a6e83b4a22/1024x683.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/319-A-St-Unit-211-Boston-MA-02210/1YBSRQ_pid/" + }, + { + "listing_id": "2063179437127534977", + "slug": "address-upon-request-boston-ma-02130", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "Address Upon Request", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02130", + "beds": 2, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1260, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/1fbf49c0-d8d3-4186-8084-315a83525061", + "gallery_uuids": [ + "uuid/1fbf49c0-d8d3-4186-8084-315a83525061" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/1fbf49c0-d8d3-4186-8084-315a83525061/1024x683.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/Address-Upon-Request-Boston-MA-02130/2063179437127534977_lid/" + }, + { + "listing_id": "2096630064751920401", + "slug": "gordon-st-boston-ma-02130", + "title": "$2,100,000", + "price": 2100000, + "is_rent": false, + "street": "Gordon Street", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02130", + "beds": 5, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 3651, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Open: 5/14 12:00PM - 01:30PM" + ], + "hero_uuid": "uuid/2720d538-7404-4a74-ab84-a71a30b312c2", + "gallery_uuids": [ + "uuid/2720d538-7404-4a74-ab84-a71a30b312c2", + "uuid/1980d423-e61c-46ce-acc6-435526577e94", + "uuid/ae1f4d95-7ead-4482-be67-5a604882c04f", + "uuid/7a7fb8d8-39ae-44ae-b4bc-96f8cc059073", + "uuid/9a57293e-47cf-4626-8b4e-8e076c6e0570", + "uuid/bef7761e-25b1-4b17-a842-5d3e33b8f01c", + "uuid/224dbe63-0376-4d11-9290-17441feb4da4", + "uuid/15a1b680-5464-4840-8068-bbe62aaa308d" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/2720d538-7404-4a74-ab84-a71a30b312c2/1500x1000.jpg", + "https://www.compass.com/m/0/1980d423-e61c-46ce-acc6-435526577e94/1500x1000.jpg", + "https://www.compass.com/m/0/ae1f4d95-7ead-4482-be67-5a604882c04f/1500x1000.jpg", + "https://www.compass.com/m/0/7a7fb8d8-39ae-44ae-b4bc-96f8cc059073/1500x1000.jpg", + "https://www.compass.com/m/0/9a57293e-47cf-4626-8b4e-8e076c6e0570/1500x1000.jpg", + "https://www.compass.com/m/0/bef7761e-25b1-4b17-a842-5d3e33b8f01c/1500x1000.jpg", + "https://www.compass.com/m/0/224dbe63-0376-4d11-9290-17441feb4da4/1500x1000.jpg", + "https://www.compass.com/m/0/15a1b680-5464-4840-8068-bbe62aaa308d/1500x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/Gordon-St-Boston-MA-02130/2096630064751920401_lid/" + }, + { + "listing_id": "2078484039780593441", + "slug": "281-newbury-st-boston-ma-02115", + "title": "$6,000,000", + "price": 6000000, + "is_rent": false, + "street": "281 Newbury Street", + "neighborhood": "", + "city": "Boston", + "state": "MA", + "zip": "02115", + "beds": 8, + "baths": 7.0, + "baths_full": 7, + "baths_half": null, + "sqft": 5510, + "latitude": 42.3492345, + "longitude": -71.08462, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/2a31a6e7-1fff-482d-ad2b-8ebc0cc64de4", + "gallery_uuids": [ + "uuid/2a31a6e7-1fff-482d-ad2b-8ebc0cc64de4", + "uuid/09d9b6b4-dc95-48b2-856d-ba4ae725fdb6" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/2a31a6e7-1fff-482d-ad2b-8ebc0cc64de4/1499x1000.jpg", + "https://www.compass.com/m/0/09d9b6b4-dc95-48b2-856d-ba4ae725fdb6/1499x1000.jpg" + ], + "source_city": "boston", + "detail_url": "https://www.compass.com/homedetails/281-Newbury-St-Boston-MA-02115/1Z0RG2_pid/" + }, + { + "listing_id": "2080494945616311449", + "slug": "205-park-ln-austin-tx-78704", + "title": "$2,400,000", + "price": 2400000, + "is_rent": false, + "street": "205 Park Lane", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78704", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2085, + "latitude": 30.248998, + "longitude": -97.7483139, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Virtual Tour" + ], + "hero_uuid": "uuid/7a332e07-6eaa-44e2-a530-94574956684f", + "gallery_uuids": [ + "uuid/7a332e07-6eaa-44e2-a530-94574956684f", + "uuid/a0199560-2424-417e-964d-62b830736c5d", + "uuid/6fe1717e-e0a1-46ed-8a6e-40bf68ef8aad", + "uuid/37c5005e-f764-4bf9-8488-28ce081b3e2f", + "uuid/0ad1cc05-a389-4b84-b532-56e18cf0a95a", + "uuid/6c8d0a31-3e01-40cd-bd64-ae4054691493", + "uuid/c2d37cac-232f-414b-bc7f-6ce9f196c44f", + "uuid/4211b7ca-27d5-4037-ba34-0376a86aa190" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/7a332e07-6eaa-44e2-a530-94574956684f/1024x683.jpg", + "https://www.compass.com/m/0/a0199560-2424-417e-964d-62b830736c5d/1024x683.jpg", + "https://www.compass.com/m/0/6fe1717e-e0a1-46ed-8a6e-40bf68ef8aad/1024x683.jpg", + "https://www.compass.com/m/0/37c5005e-f764-4bf9-8488-28ce081b3e2f/800x592.jpg", + "https://www.compass.com/m/0/0ad1cc05-a389-4b84-b532-56e18cf0a95a/1024x683.jpg", + "https://www.compass.com/m/0/6c8d0a31-3e01-40cd-bd64-ae4054691493/1024x685.jpg", + "https://www.compass.com/m/0/c2d37cac-232f-414b-bc7f-6ce9f196c44f/1024x683.jpg", + "https://www.compass.com/m/0/4211b7ca-27d5-4037-ba34-0376a86aa190/1024x683.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/205-Park-Ln-Austin-TX-78704/1FT5WE_pid/" + }, + { + "listing_id": "2092880607935969529", + "slug": "2200-de-verne-st-austin-tx-78704", + "title": "$2,075,000", + "price": 2075000, + "is_rent": false, + "street": "2200 De Verne Street", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78704", + "beds": 4, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2602, + "latitude": 30.2500411, + "longitude": -97.7791848, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/bd722919-3748-4351-8d7a-21c40e1ea4e5", + "gallery_uuids": [ + "uuid/bd722919-3748-4351-8d7a-21c40e1ea4e5", + "uuid/034e1cae-ae18-4946-899e-64b45dbf9573", + "uuid/753f094b-33df-486c-a518-8dcdfcf4f45c", + "uuid/2e0ef8bf-2ef4-4f35-977a-274d0834bde4", + "uuid/982982b1-9639-4323-b200-00eca64c5e6f", + "uuid/3036abef-ff0c-4cfd-90ac-5f071c1fb1dd", + "uuid/b8a4ee53-9ce1-48b5-a68e-d17005ee4ade", + "uuid/087d8db4-0ade-4f35-bd5a-7581c46d8f36" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/bd722919-3748-4351-8d7a-21c40e1ea4e5/1333x1000.jpg", + "https://www.compass.com/m/0/034e1cae-ae18-4946-899e-64b45dbf9573/640x480.jpg", + "https://www.compass.com/m/0/753f094b-33df-486c-a518-8dcdfcf4f45c/1333x1000.jpg", + "https://www.compass.com/m/0/2e0ef8bf-2ef4-4f35-977a-274d0834bde4/1333x1000.jpg", + "https://www.compass.com/m/0/982982b1-9639-4323-b200-00eca64c5e6f/1333x1000.jpg", + "https://www.compass.com/m/0/3036abef-ff0c-4cfd-90ac-5f071c1fb1dd/1333x1000.jpg", + "https://www.compass.com/m/0/b8a4ee53-9ce1-48b5-a68e-d17005ee4ade/1334x1000.jpg", + "https://www.compass.com/m/0/087d8db4-0ade-4f35-bd5a-7581c46d8f36/1334x1000.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/2200-De-Verne-St-Austin-TX-78704/1FW646_pid/" + }, + { + "listing_id": "2103241619216722001", + "slug": "5801-valley-cir-austin-tx-78731", + "title": "$2,000,000", + "price": 2000000, + "is_rent": false, + "street": "5801 Valley Circle", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78731", + "beds": 5, + "baths": 4.0, + "baths_full": 4, + "baths_half": null, + "sqft": 3920, + "latitude": 30.3429873, + "longitude": -97.78023569999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/415efe4d-d256-4239-b6dc-e2dd969a96ab", + "gallery_uuids": [ + "uuid/415efe4d-d256-4239-b6dc-e2dd969a96ab", + "uuid/17e8fa18-f7fd-484a-8751-c4548e5eae1d", + "uuid/b493f619-1ef8-48ec-81da-84ba8fc4b25d", + "uuid/12d0b4d3-fd60-477a-9525-83d1467588e3", + "uuid/cb69f981-3647-4f42-8b9c-89fab3192443", + "uuid/04a54056-043b-4e89-9196-751caaff9263", + "uuid/00afadd7-3418-4c30-baf3-fe69786cedd8", + "uuid/adc0b5fb-2116-4bca-bc86-2b455eb5eadc" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/415efe4d-d256-4239-b6dc-e2dd969a96ab/1500x1000.jpg", + "https://www.compass.com/m/0/17e8fa18-f7fd-484a-8751-c4548e5eae1d/1500x1000.jpg", + "https://www.compass.com/m/0/b493f619-1ef8-48ec-81da-84ba8fc4b25d/1500x1000.jpg", + "https://www.compass.com/m/0/12d0b4d3-fd60-477a-9525-83d1467588e3/1500x1000.jpg", + "https://www.compass.com/m/0/cb69f981-3647-4f42-8b9c-89fab3192443/1500x1000.jpg", + "https://www.compass.com/m/0/04a54056-043b-4e89-9196-751caaff9263/1500x1000.jpg", + "https://www.compass.com/m/0/00afadd7-3418-4c30-baf3-fe69786cedd8/1500x1000.jpg", + "https://www.compass.com/m/0/adc0b5fb-2116-4bca-bc86-2b455eb5eadc/1500x1000.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/5801-Valley-Cir-Austin-TX-78731/1FRCEW_pid/" + }, + { + "listing_id": "2103225906477497457", + "slug": "2311-westoak-dr-austin-tx-78704", + "title": "$2,795,000", + "price": 2795000, + "is_rent": false, + "street": "2311 Westoak Drive", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78704", + "beds": 4, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 3662, + "latitude": 30.2427389, + "longitude": -97.7856517, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/2dba5627-26da-445d-8a53-b8422b7dbed3", + "gallery_uuids": [ + "uuid/2dba5627-26da-445d-8a53-b8422b7dbed3", + "uuid/c3b42ea8-3e76-497f-82e8-dd07977dad2e", + "uuid/26fe0a1f-6d8b-4398-9a5b-4c4349364153", + "uuid/9b547ae9-59b2-466f-a968-69f8a84847cb", + "uuid/28098fc4-97f6-4acb-8f51-2213d3a4679e", + "uuid/4404f57a-8516-4ef7-a9b6-fc9b5fe93d33", + "uuid/484fe3be-23f2-4bbf-a066-a5b48c2aaefd", + "uuid/0ab0c2aa-c45a-4a60-8d6b-de684284d6b7" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/2dba5627-26da-445d-8a53-b8422b7dbed3/1500x1000.jpg", + "https://www.compass.com/m/0/c3b42ea8-3e76-497f-82e8-dd07977dad2e/1500x1000.jpg", + "https://www.compass.com/m/0/26fe0a1f-6d8b-4398-9a5b-4c4349364153/1500x1000.jpg", + "https://www.compass.com/m/0/9b547ae9-59b2-466f-a968-69f8a84847cb/1500x1000.jpg", + "https://www.compass.com/m/0/28098fc4-97f6-4acb-8f51-2213d3a4679e/1500x1000.jpg", + "https://www.compass.com/m/0/4404f57a-8516-4ef7-a9b6-fc9b5fe93d33/1500x1000.jpg", + "https://www.compass.com/m/0/484fe3be-23f2-4bbf-a066-a5b48c2aaefd/1500x1000.jpg", + "https://www.compass.com/m/0/0ab0c2aa-c45a-4a60-8d6b-de684284d6b7/1500x1000.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/2311-Westoak-Dr-Austin-TX-78704/1FWHEH_pid/" + }, + { + "listing_id": "2085761573384584209", + "slug": "s-5th-st-austin-tx-78704", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "South 5th Street", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78704", + "beds": 4, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 2732, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "New Construction" + ], + "hero_uuid": "uuid/be380cbe-96f1-4808-9ee4-f11bc3d76eed", + "gallery_uuids": [ + "uuid/be380cbe-96f1-4808-9ee4-f11bc3d76eed", + "uuid/3821aa68-191a-4e39-89f2-6bea9503cdf3", + "uuid/da56789e-fcb0-4101-9ac4-2581f34a7f4a", + "uuid/f4be2c2f-6fad-4319-8b3b-3e47820fe3e2", + "uuid/fa1076ea-05a0-41b6-9ee1-8b1236561789", + "uuid/072692a4-7602-4411-80d5-86be3660dffa", + "uuid/55702529-5322-4e23-abb6-07abe2570291", + "uuid/1b66c1d4-e6d9-4cf8-a7c8-05072e49e89c" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/be380cbe-96f1-4808-9ee4-f11bc3d76eed/1500x844.jpg", + "https://www.compass.com/m/0/3821aa68-191a-4e39-89f2-6bea9503cdf3/1500x844.jpg", + "https://www.compass.com/m/0/da56789e-fcb0-4101-9ac4-2581f34a7f4a/1500x844.jpg", + "https://www.compass.com/m/0/f4be2c2f-6fad-4319-8b3b-3e47820fe3e2/1500x844.jpg", + "https://www.compass.com/m/0/fa1076ea-05a0-41b6-9ee1-8b1236561789/1500x844.jpg", + "https://www.compass.com/m/0/072692a4-7602-4411-80d5-86be3660dffa/1500x844.jpg", + "https://www.compass.com/m/0/55702529-5322-4e23-abb6-07abe2570291/1500x844.jpg", + "https://www.compass.com/m/0/1b66c1d4-e6d9-4cf8-a7c8-05072e49e89c/1500x844.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/S-5th-St-Austin-TX-78704/2085761573384584209_lid/" + }, + { + "listing_id": "2079939711840458601", + "slug": "oaklane-dr-austin-tx-78704", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "Oaklane Drive", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78704", + "beds": 5, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 3850, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "New Construction" + ], + "hero_uuid": "uuid/44e17853-de5b-45d7-b434-ca05db853cb5", + "gallery_uuids": [ + "uuid/44e17853-de5b-45d7-b434-ca05db853cb5", + "uuid/6967e71c-21ed-4853-a242-203aaf114f1c" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/44e17853-de5b-45d7-b434-ca05db853cb5/1500x844.jpg", + "https://www.compass.com/m/0/6967e71c-21ed-4853-a242-203aaf114f1c/1500x844.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/Oaklane-Dr-Austin-TX-78704/2079939711840458601_lid/" + }, + { + "listing_id": "2100306091747647641", + "slug": "4011-greystone-dr-austin-tx-78731", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "4011 Greystone Drive", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78731", + "beds": 4, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2340, + "latitude": 30.36292619999999, + "longitude": -97.76181, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/5ab43226-3753-4934-b138-d95ce872202e", + "gallery_uuids": [ + "uuid/5ab43226-3753-4934-b138-d95ce872202e", + "uuid/b1905cf0-25fd-4a03-a149-de393037cbed", + "uuid/1e8c849c-736b-4fdc-ac59-55ddb8fe5794", + "uuid/9ef32dc4-d66a-4e5d-9ff0-4b10a8cb8637", + "uuid/5618941c-59e5-4d9e-ace8-61bc19bf9608", + "uuid/6d4ee3e1-c856-4935-9d4c-a9280f06dfb7" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/5ab43226-3753-4934-b138-d95ce872202e/1024x683.jpg", + "https://www.compass.com/m/0/b1905cf0-25fd-4a03-a149-de393037cbed/1024x683.jpg", + "https://www.compass.com/m/0/1e8c849c-736b-4fdc-ac59-55ddb8fe5794/1024x683.jpg", + "https://www.compass.com/m/0/9ef32dc4-d66a-4e5d-9ff0-4b10a8cb8637/1024x683.jpg", + "https://www.compass.com/m/0/5618941c-59e5-4d9e-ace8-61bc19bf9608/1024x683.jpg", + "https://www.compass.com/m/0/6d4ee3e1-c856-4935-9d4c-a9280f06dfb7/1024x683.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/4011-Greystone-Dr-Austin-TX-78731/1FOD9P_pid/" + }, + { + "listing_id": "1768378618058228761", + "slug": "1102-clermont-ave-austin-tx-78702", + "title": "$1,400,000", + "price": 1400000, + "is_rent": false, + "street": "1102 Clermont Avenue", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78702", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2387, + "latitude": 30.254886, + "longitude": -97.735795, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/eb7429fa-799c-481d-88dd-794fc3dc9a63", + "gallery_uuids": [ + "uuid/eb7429fa-799c-481d-88dd-794fc3dc9a63", + "uuid/546d0248-ab38-4840-8824-6107840e4b61", + "uuid/f3a438e2-b1d7-4518-a74a-93ecfcf996d1", + "uuid/a867664f-14cd-42d7-9ec4-b1e8e47ce419", + "uuid/e08f9c72-20ec-4c72-93b8-41c5c0fab003", + "uuid/c251a685-115a-43ef-b68d-4c2883f4188d", + "uuid/7ebb7590-db06-438c-afc9-d5c24761421f", + "uuid/58fa942c-1314-460c-9f24-c99e55c5ceb7" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/eb7429fa-799c-481d-88dd-794fc3dc9a63/1024x689.jpg", + "https://www.compass.com/m/0/546d0248-ab38-4840-8824-6107840e4b61/1024x681.jpg", + "https://www.compass.com/m/0/f3a438e2-b1d7-4518-a74a-93ecfcf996d1/1024x681.jpg", + "https://www.compass.com/m/0/a867664f-14cd-42d7-9ec4-b1e8e47ce419/1024x681.jpg", + "https://www.compass.com/m/0/e08f9c72-20ec-4c72-93b8-41c5c0fab003/1024x681.jpg", + "https://www.compass.com/m/0/c251a685-115a-43ef-b68d-4c2883f4188d/1024x691.jpg", + "https://www.compass.com/m/0/7ebb7590-db06-438c-afc9-d5c24761421f/1024x681.jpg", + "https://www.compass.com/m/0/58fa942c-1314-460c-9f24-c99e55c5ceb7/1024x680.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/1102-Clermont-Ave-Austin-TX-78702/1EWCHW_pid/" + }, + { + "listing_id": "2085803637547846065", + "slug": "s-5th-st-austin-tx-78704", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "South 5th Street", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78704", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2176, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "New Construction" + ], + "hero_uuid": "uuid/e539de63-a808-42a9-a39f-510f3a62813f", + "gallery_uuids": [ + "uuid/e539de63-a808-42a9-a39f-510f3a62813f", + "uuid/903970ac-f9de-4ca1-a19a-02f511f135ee", + "uuid/1fa19c49-2bad-459a-b3bb-7314795f792c", + "uuid/e6eb662b-1780-4584-88c4-d2d3bc2ed2d3", + "uuid/59b363d9-db81-4dde-82fc-b07e56995584", + "uuid/2fbdbe24-4fe4-43e3-9d13-5d1959a18379", + "uuid/be7662d8-b0d1-4a1a-8f59-088b3ed554cd", + "uuid/5022b2a4-8b4d-4170-8af8-738e32273b12" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/e539de63-a808-42a9-a39f-510f3a62813f/1500x844.jpg", + "https://www.compass.com/m/0/903970ac-f9de-4ca1-a19a-02f511f135ee/1500x844.jpg", + "https://www.compass.com/m/0/1fa19c49-2bad-459a-b3bb-7314795f792c/1500x844.jpg", + "https://www.compass.com/m/0/e6eb662b-1780-4584-88c4-d2d3bc2ed2d3/1500x844.jpg", + "https://www.compass.com/m/0/59b363d9-db81-4dde-82fc-b07e56995584/1500x844.jpg", + "https://www.compass.com/m/0/2fbdbe24-4fe4-43e3-9d13-5d1959a18379/1500x844.jpg", + "https://www.compass.com/m/0/be7662d8-b0d1-4a1a-8f59-088b3ed554cd/1500x844.jpg", + "https://www.compass.com/m/0/5022b2a4-8b4d-4170-8af8-738e32273b12/1500x844.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/S-5th-St-Austin-TX-78704/2085803637547846065_lid/" + }, + { + "listing_id": "1845716871705171257", + "slug": "3467-n-hills-dr-austin-tx-78731", + "title": "$525,000", + "price": 525000, + "is_rent": false, + "street": "3467 North Hills Drive", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78731", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1896, + "latitude": 30.348225, + "longitude": -97.75341399999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/079c8eac-93c9-41e4-b6fe-de0e62e6d86c", + "gallery_uuids": [ + "uuid/079c8eac-93c9-41e4-b6fe-de0e62e6d86c", + "uuid/6672789b-edd4-4802-9c7c-b343fd229223", + "uuid/1f21dd21-bcc2-417f-ad9e-2797e9b3e96d", + "uuid/f5229f33-715d-42f2-a6d4-5b0f90b672de", + "uuid/a58bb2c9-7f36-4553-82cb-edc9406cb812", + "uuid/0c923e4b-4e46-4810-acfa-719de1291eab", + "uuid/adbb7ee2-5487-412b-b00d-79722c1a2afe", + "uuid/dee43d00-049d-4605-b7c8-dc6437c01a1f" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/079c8eac-93c9-41e4-b6fe-de0e62e6d86c/1500x1000.jpg", + "https://www.compass.com/m/0/6672789b-edd4-4802-9c7c-b343fd229223/1500x1000.jpg", + "https://www.compass.com/m/0/1f21dd21-bcc2-417f-ad9e-2797e9b3e96d/1500x1000.jpg", + "https://www.compass.com/m/0/f5229f33-715d-42f2-a6d4-5b0f90b672de/1500x1000.jpg", + "https://www.compass.com/m/0/a58bb2c9-7f36-4553-82cb-edc9406cb812/1500x1000.jpg", + "https://www.compass.com/m/0/0c923e4b-4e46-4810-acfa-719de1291eab/1500x1000.jpg", + "https://www.compass.com/m/0/adbb7ee2-5487-412b-b00d-79722c1a2afe/1500x1000.jpg", + "https://www.compass.com/m/0/dee43d00-049d-4605-b7c8-dc6437c01a1f/1500x1000.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/3467-N-Hills-Dr-Austin-TX-78731/1845716871705171257_lid/" + }, + { + "listing_id": "2049549024444691825", + "slug": "3467-n-hills-dr-austin-tx-78731", + "title": "$525,000", + "price": 525000, + "is_rent": false, + "street": "3467 North Hills Drive", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78731", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1896, + "latitude": 30.348225, + "longitude": -97.75341399999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/4066b993e014231244ccdc359f52139b7ae8bfd2_img_0_bd083", + "gallery_uuids": [ + "legacy/4066b993e014231244ccdc359f52139b7ae8bfd2_img_0_bd083", + "legacy/4066b993e014231244ccdc359f52139b7ae8bfd2_img_1_abed1", + "legacy/4066b993e014231244ccdc359f52139b7ae8bfd2_img_2_26906", + "legacy/4066b993e014231244ccdc359f52139b7ae8bfd2_img_3_e57f8", + "legacy/4066b993e014231244ccdc359f52139b7ae8bfd2_img_4_c6b6b", + "legacy/4066b993e014231244ccdc359f52139b7ae8bfd2_img_5_f3a6e", + "legacy/4066b993e014231244ccdc359f52139b7ae8bfd2_img_6_bb55d", + "legacy/4066b993e014231244ccdc359f52139b7ae8bfd2_img_7_6c281" + ], + "gallery_urls": [ + "https://www.compass.com/m/4066b993e014231244ccdc359f52139b7ae8bfd2_img_0_bd083/640x480.jpg", + "https://www.compass.com/m/4066b993e014231244ccdc359f52139b7ae8bfd2_img_1_abed1/640x480.jpg", + "https://www.compass.com/m/4066b993e014231244ccdc359f52139b7ae8bfd2_img_2_26906/640x480.jpg", + "https://www.compass.com/m/4066b993e014231244ccdc359f52139b7ae8bfd2_img_3_e57f8/640x480.jpg", + "https://www.compass.com/m/4066b993e014231244ccdc359f52139b7ae8bfd2_img_4_c6b6b/640x480.jpg", + "https://www.compass.com/m/4066b993e014231244ccdc359f52139b7ae8bfd2_img_5_f3a6e/640x480.jpg", + "https://www.compass.com/m/4066b993e014231244ccdc359f52139b7ae8bfd2_img_6_bb55d/640x480.jpg", + "https://www.compass.com/m/4066b993e014231244ccdc359f52139b7ae8bfd2_img_7_6c281/640x480.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/3467-N-Hills-Dr-Austin-TX-78731/1G98CL_pid/" + }, + { + "listing_id": "1769165095591571489", + "slug": "1100-clermont-ave-austin-tx-78702", + "title": "$1,400,000", + "price": 1400000, + "is_rent": false, + "street": "1100 Clermont Avenue", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78702", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2387, + "latitude": 30.25485429999999, + "longitude": -97.73596260000001, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/cb1ce0df-5a49-4697-8c78-4201283fc0a8", + "gallery_uuids": [ + "uuid/cb1ce0df-5a49-4697-8c78-4201283fc0a8", + "uuid/38fcf559-1ab3-4f92-9a19-61a7a7b9aa03", + "uuid/1a42b4ea-2570-4d6d-a601-2e4da9c7e9a0", + "uuid/864493fd-4ccc-4320-8be8-662226538865", + "uuid/0be6b31b-31bd-49d6-bd0b-b13fc6e1c170", + "uuid/01fa4462-ee12-43d2-a2e2-149215e2e256", + "uuid/0acfecf0-1572-4cf7-beeb-7f30f2db79be", + "uuid/095a6610-0d60-4356-ab88-fa95e224e67e" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/cb1ce0df-5a49-4697-8c78-4201283fc0a8/1024x681.jpg", + "https://www.compass.com/m/0/38fcf559-1ab3-4f92-9a19-61a7a7b9aa03/1024x681.jpg", + "https://www.compass.com/m/0/1a42b4ea-2570-4d6d-a601-2e4da9c7e9a0/1024x681.jpg", + "https://www.compass.com/m/0/864493fd-4ccc-4320-8be8-662226538865/1024x681.jpg", + "https://www.compass.com/m/0/0be6b31b-31bd-49d6-bd0b-b13fc6e1c170/1024x681.jpg", + "https://www.compass.com/m/0/01fa4462-ee12-43d2-a2e2-149215e2e256/1024x681.jpg", + "https://www.compass.com/m/0/0acfecf0-1572-4cf7-beeb-7f30f2db79be/1024x681.jpg", + "https://www.compass.com/m/0/095a6610-0d60-4356-ab88-fa95e224e67e/1024x681.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/1100-Clermont-Ave-Austin-TX-78702/1F4RQJ_pid/" + }, + { + "listing_id": "2052487366618989937", + "slug": "2006-mountain-view-rd-austin-tx-78703", + "title": "$6,750,000", + "price": 6750000, + "is_rent": false, + "street": "2006 Mountain View Road", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78703", + "beds": 7, + "baths": 8.0, + "baths_full": 7, + "baths_half": null, + "sqft": 5370, + "latitude": 30.296631, + "longitude": -97.772297, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/c3f4f6a5aba8cf7016f3558f5014486cb9ba2f60_img_0_abc46", + "gallery_uuids": [ + "legacy/c3f4f6a5aba8cf7016f3558f5014486cb9ba2f60_img_0_abc46", + "legacy/c3f4f6a5aba8cf7016f3558f5014486cb9ba2f60_img_1_85e2c", + "legacy/c3f4f6a5aba8cf7016f3558f5014486cb9ba2f60_img_2_6f1db", + "legacy/c3f4f6a5aba8cf7016f3558f5014486cb9ba2f60_img_3_0788e", + "legacy/c3f4f6a5aba8cf7016f3558f5014486cb9ba2f60_img_4_0965c", + "legacy/c3f4f6a5aba8cf7016f3558f5014486cb9ba2f60_img_5_7d382" + ], + "gallery_urls": [ + "https://www.compass.com/m/c3f4f6a5aba8cf7016f3558f5014486cb9ba2f60_img_0_abc46/640x480.jpg", + "https://www.compass.com/m/c3f4f6a5aba8cf7016f3558f5014486cb9ba2f60_img_1_85e2c/640x480.jpg", + "https://www.compass.com/m/c3f4f6a5aba8cf7016f3558f5014486cb9ba2f60_img_2_6f1db/640x480.jpg", + "https://www.compass.com/m/c3f4f6a5aba8cf7016f3558f5014486cb9ba2f60_img_3_0788e/640x480.jpg", + "https://www.compass.com/m/c3f4f6a5aba8cf7016f3558f5014486cb9ba2f60_img_4_0965c/640x480.jpg", + "https://www.compass.com/m/c3f4f6a5aba8cf7016f3558f5014486cb9ba2f60_img_5_7d382/640x480.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/2006-Mountain-View-Rd-Austin-TX-78703/1F5N36_pid/" + }, + { + "listing_id": "2059709164034176345", + "slug": "2512-e-9th-st-austin-tx-78702", + "title": "$725,000", + "price": 725000, + "is_rent": false, + "street": "2512 East 9th Street", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78702", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 750, + "latitude": 30.265437, + "longitude": -97.713832, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Virtual Tour" + ], + "hero_uuid": "uuid/f5fe3be9-32f3-4be3-880d-7049633559a5", + "gallery_uuids": [ + "uuid/f5fe3be9-32f3-4be3-880d-7049633559a5", + "uuid/9fb4c43f-7004-40a0-ac8d-d4be593de6a2", + "uuid/fd50e3bd-0204-4d09-98b0-e1135c7be523", + "uuid/f05aa6ae-4ed2-46e3-bb5f-c49e73c5b814", + "uuid/ec363a91-6a10-467c-9e74-ce464dab722a", + "uuid/f2d1b1d4-8563-4271-8bc2-f82187249474", + "uuid/73e26624-8d08-4eaa-9d4e-2a3581a86b31", + "uuid/9c89a72e-a361-485d-87eb-052d270d83e2" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/f5fe3be9-32f3-4be3-880d-7049633559a5/1200x799.jpg", + "https://www.compass.com/m/0/9fb4c43f-7004-40a0-ac8d-d4be593de6a2/1200x800.jpg", + "https://www.compass.com/m/0/fd50e3bd-0204-4d09-98b0-e1135c7be523/1200x799.jpg", + "https://www.compass.com/m/0/f05aa6ae-4ed2-46e3-bb5f-c49e73c5b814/1200x799.jpg", + "https://www.compass.com/m/0/ec363a91-6a10-467c-9e74-ce464dab722a/1200x799.jpg", + "https://www.compass.com/m/0/f2d1b1d4-8563-4271-8bc2-f82187249474/1200x799.jpg", + "https://www.compass.com/m/0/73e26624-8d08-4eaa-9d4e-2a3581a86b31/1200x799.jpg", + "https://www.compass.com/m/0/9c89a72e-a361-485d-87eb-052d270d83e2/1200x799.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/2512-E-9th-St-Austin-TX-78702/21FE9S_pid/" + }, + { + "listing_id": "2103445308816960001", + "slug": "1501-wilson-heights-dr-austin-tx-78746", + "title": "$1,100,000", + "price": 1100000, + "is_rent": false, + "street": "1501 Wilson Heights Drive", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78746", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1878, + "latitude": 30.278706, + "longitude": -97.825981, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Open: 5/13 10:00AM - 12:00PM" + ], + "hero_uuid": "uuid/7a242eda-fe11-40ce-b0e6-25f0ceda5d21", + "gallery_uuids": [ + "uuid/7a242eda-fe11-40ce-b0e6-25f0ceda5d21", + "uuid/930b98bd-164c-4267-abcc-20a1ace4f595", + "uuid/abd64e24-12a6-413a-a8c6-0ad656827c54", + "uuid/1e2cc338-cd39-4de7-b661-c9d556882a50", + "uuid/f5fd204f-931c-40c2-8af1-b715b601672a", + "uuid/7071509c-11c1-4064-b03e-ec986051df6c", + "uuid/c27d3352-8b2b-4a4e-a3f2-5f9bf6c4edeb", + "uuid/4403cd4c-5d84-455b-af4e-e2d62093b690" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/7a242eda-fe11-40ce-b0e6-25f0ceda5d21/1024x683.jpg", + "https://www.compass.com/m/0/930b98bd-164c-4267-abcc-20a1ace4f595/1024x683.jpg", + "https://www.compass.com/m/0/abd64e24-12a6-413a-a8c6-0ad656827c54/1024x683.jpg", + "https://www.compass.com/m/0/1e2cc338-cd39-4de7-b661-c9d556882a50/1499x1000.jpg", + "https://www.compass.com/m/0/f5fd204f-931c-40c2-8af1-b715b601672a/1499x1000.jpg", + "https://www.compass.com/m/0/7071509c-11c1-4064-b03e-ec986051df6c/1500x1000.jpg", + "https://www.compass.com/m/0/c27d3352-8b2b-4a4e-a3f2-5f9bf6c4edeb/1499x1000.jpg", + "https://www.compass.com/m/0/4403cd4c-5d84-455b-af4e-e2d62093b690/1333x1000.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/1501-Wilson-Heights-Dr-Austin-TX-78746/1F8EQY_pid/" + }, + { + "listing_id": "1932843813647058465", + "slug": "glen-rae-st-austin-tx-78702", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "Glen Rae Street", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78702", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2511, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "New Construction" + ], + "hero_uuid": "uuid/686c2ccf-45bb-4cf0-8cf0-a286e9386b84", + "gallery_uuids": [ + "uuid/686c2ccf-45bb-4cf0-8cf0-a286e9386b84", + "uuid/6ce3402c-8554-4334-a398-018b8e6384d3", + "uuid/2f8d1a25-b81b-4f82-8aae-11ce60d3e198", + "uuid/b5db524e-86a1-4c70-baef-7c645eec5568" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/686c2ccf-45bb-4cf0-8cf0-a286e9386b84/1500x844.jpg", + "https://www.compass.com/m/0/6ce3402c-8554-4334-a398-018b8e6384d3/1500x844.jpg", + "https://www.compass.com/m/0/2f8d1a25-b81b-4f82-8aae-11ce60d3e198/1500x844.jpg", + "https://www.compass.com/m/0/b5db524e-86a1-4c70-baef-7c645eec5568/1500x844.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/Glen-Rae-St-Austin-TX-78702/1932843813647058465_lid/" + }, + { + "listing_id": "2100307535628420929", + "slug": "4614-jinx-ave-austin-tx-78745", + "title": "$550,000", + "price": 550000, + "is_rent": false, + "street": "4614 Jinx Avenue", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78745", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 30.2199306, + "longitude": -97.78176429999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/d13a0903-47dd-4e31-8690-59e9fb984e26", + "gallery_uuids": [ + "uuid/d13a0903-47dd-4e31-8690-59e9fb984e26", + "uuid/1e3a4936-cf9b-4413-a1da-3eab82cd07cc", + "uuid/10393cfe-38bf-4028-ab8a-0f8ff1386b9e", + "uuid/5cc44df6-8624-4082-ba67-23c2ebe3d405", + "uuid/bf53150d-a802-4ed3-9443-4a3164e8ee7d", + "uuid/4dbe0a97-b46a-4e5f-a5ed-636818257fbd", + "uuid/e92215f6-4198-4378-b98c-722d66a11667", + "uuid/fed62f09-8ab4-4605-8da2-802367d9e46d" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/d13a0903-47dd-4e31-8690-59e9fb984e26/1500x1000.jpg", + "https://www.compass.com/m/0/1e3a4936-cf9b-4413-a1da-3eab82cd07cc/1500x1000.jpg", + "https://www.compass.com/m/0/10393cfe-38bf-4028-ab8a-0f8ff1386b9e/1500x1000.jpg", + "https://www.compass.com/m/0/5cc44df6-8624-4082-ba67-23c2ebe3d405/1500x1000.jpg", + "https://www.compass.com/m/0/bf53150d-a802-4ed3-9443-4a3164e8ee7d/1500x1000.jpg", + "https://www.compass.com/m/0/4dbe0a97-b46a-4e5f-a5ed-636818257fbd/1500x1000.jpg", + "https://www.compass.com/m/0/e92215f6-4198-4378-b98c-722d66a11667/1500x1000.jpg", + "https://www.compass.com/m/0/fed62f09-8ab4-4605-8da2-802367d9e46d/1500x1000.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/4614-Jinx-Ave-Austin-TX-78745/1FC35I_pid/" + }, + { + "listing_id": "1977208754577401065", + "slug": "juanita-st-austin-tx-78704", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "Juanita Street", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78704", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2122, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/396eb38f-b87e-4fd3-b38a-e3aa508b9af9", + "gallery_uuids": [ + "uuid/396eb38f-b87e-4fd3-b38a-e3aa508b9af9", + "uuid/d044f022-1ba0-43d1-a774-f634e553cc65", + "uuid/5fcaefc5-efd5-4228-840f-5214039df423", + "uuid/3288a196-1dea-47a8-b2e4-b559821540bb", + "uuid/24baf9e8-8fc3-44ea-ac43-2b153ba9f691", + "uuid/a573f28a-91b3-44ea-856e-3ba94139d04c" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/396eb38f-b87e-4fd3-b38a-e3aa508b9af9/1500x844.jpg", + "https://www.compass.com/m/0/d044f022-1ba0-43d1-a774-f634e553cc65/1500x844.jpg", + "https://www.compass.com/m/0/5fcaefc5-efd5-4228-840f-5214039df423/1500x844.jpg", + "https://www.compass.com/m/0/3288a196-1dea-47a8-b2e4-b559821540bb/1500x844.jpg", + "https://www.compass.com/m/0/24baf9e8-8fc3-44ea-ac43-2b153ba9f691/1500x844.jpg", + "https://www.compass.com/m/0/a573f28a-91b3-44ea-856e-3ba94139d04c/1500x844.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/Juanita-St-Austin-TX-78704/1977208754577401065_lid/" + }, + { + "listing_id": "2090174752702796977", + "slug": "2819-e-22nd-st-austin-tx-78722", + "title": "$2,250,000", + "price": 2250000, + "is_rent": false, + "street": "2819 East 22nd Street", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78722", + "beds": 7, + "baths": 7.0, + "baths_full": 5, + "baths_half": null, + "sqft": 4454, + "latitude": 30.2840737, + "longitude": -97.71063370000002, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Open: 5/17 01:00PM - 03:00PM" + ], + "hero_uuid": "uuid/533228e0-e0c6-4011-8abe-62a5d3960483", + "gallery_uuids": [ + "uuid/533228e0-e0c6-4011-8abe-62a5d3960483", + "uuid/fef1d577-564a-4869-95ac-b24668389839", + "uuid/a4606b00-3d4f-446d-8ca3-096f46420f2a", + "uuid/a7077b7c-8a35-4b67-9889-5c0447accc67", + "uuid/af4665d2-c070-40a7-9431-319ffc720536", + "uuid/ccd87ab6-501f-4d95-8d24-a9dd577da843", + "uuid/4c9e7ff6-b89d-49d9-a11b-9703d0d8b592", + "uuid/8becb73f-3a18-42fd-b773-24b911196157" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/533228e0-e0c6-4011-8abe-62a5d3960483/1496x1000.jpg", + "https://www.compass.com/m/0/fef1d577-564a-4869-95ac-b24668389839/1496x1000.jpg", + "https://www.compass.com/m/0/a4606b00-3d4f-446d-8ca3-096f46420f2a/1496x1000.jpg", + "https://www.compass.com/m/0/a7077b7c-8a35-4b67-9889-5c0447accc67/1496x1000.jpg", + "https://www.compass.com/m/0/af4665d2-c070-40a7-9431-319ffc720536/1496x1000.jpg", + "https://www.compass.com/m/0/ccd87ab6-501f-4d95-8d24-a9dd577da843/1487x1000.jpg", + "https://www.compass.com/m/0/4c9e7ff6-b89d-49d9-a11b-9703d0d8b592/665x1000.jpg", + "https://www.compass.com/m/0/8becb73f-3a18-42fd-b773-24b911196157/1496x1000.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/2819-E-22nd-St-Austin-TX-78722/1FNC7N_pid/" + }, + { + "listing_id": "2100916646095080217", + "slug": "406-franklin-blvd-unit-2-austin-tx-78751", + "title": "$580,000", + "price": 580000, + "is_rent": false, + "street": "406 Franklin Boulevard, Unit 2", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78751", + "beds": 2, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1100, + "latitude": 30.3205565, + "longitude": -97.7252275, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/5dc63d00-aa75-4cfd-b0ae-20001b573dd1", + "gallery_uuids": [ + "uuid/5dc63d00-aa75-4cfd-b0ae-20001b573dd1", + "uuid/dbffd922-acfa-428f-b7ed-a1bd5f1d1c11", + "uuid/0d36a2ce-6931-49cc-b334-ec8fd490a720", + "uuid/17419cbb-1b20-4ddf-a322-dd5e250585e2", + "uuid/892cbffd-c8b6-472f-9027-da2be943ccb0", + "uuid/ff6a1c4d-2aac-44bb-9254-74c4e9f44bf0", + "uuid/099529f5-e157-49c8-8903-acf7bad69aac", + "uuid/3a3732c8-a4f1-444b-8c55-6bcc2b3a8f88" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/5dc63d00-aa75-4cfd-b0ae-20001b573dd1/1424x964.jpg", + "https://www.compass.com/m/0/dbffd922-acfa-428f-b7ed-a1bd5f1d1c11/1500x1000.jpg", + "https://www.compass.com/m/0/0d36a2ce-6931-49cc-b334-ec8fd490a720/1500x1000.jpg", + "https://www.compass.com/m/0/17419cbb-1b20-4ddf-a322-dd5e250585e2/1500x1000.jpg", + "https://www.compass.com/m/0/892cbffd-c8b6-472f-9027-da2be943ccb0/1500x1000.jpg", + "https://www.compass.com/m/0/ff6a1c4d-2aac-44bb-9254-74c4e9f44bf0/1500x1000.jpg", + "https://www.compass.com/m/0/099529f5-e157-49c8-8903-acf7bad69aac/1500x1000.jpg", + "https://www.compass.com/m/0/3a3732c8-a4f1-444b-8c55-6bcc2b3a8f88/1500x1000.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/406-Franklin-Blvd-Unit-2-Austin-TX-78751/1GDJXG_pid/" + }, + { + "listing_id": "2100796465066942449", + "slug": "5108-eilers-ave-austin-tx-78751", + "title": "$975,000", + "price": 975000, + "is_rent": false, + "street": "5108 Eilers Avenue", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78751", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1556, + "latitude": 30.3135147, + "longitude": -97.7170397, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/1ae2151f-868b-432b-b8eb-c854003fa2aa", + "gallery_uuids": [ + "uuid/1ae2151f-868b-432b-b8eb-c854003fa2aa", + "uuid/57dea0e0-746b-4906-9aa3-983415e1645e", + "uuid/369ac3a0-2d88-4cf1-b9d8-d76cdd4ed91d", + "uuid/528c9c5c-729f-4fbe-8f66-ee0d186f4ae5", + "uuid/23580802-d8b1-4333-a609-babf4a6153ea", + "uuid/cb1ce312-d736-430b-be23-ee9a7dc0dbaf", + "uuid/4754dd47-e811-44e7-be9c-e3772e5bd5fc", + "uuid/c3ec8e15-52b1-4828-ab9c-ad87c0a14d09" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/1ae2151f-868b-432b-b8eb-c854003fa2aa/1333x1000.jpg", + "https://www.compass.com/m/0/57dea0e0-746b-4906-9aa3-983415e1645e/1334x1000.jpg", + "https://www.compass.com/m/0/369ac3a0-2d88-4cf1-b9d8-d76cdd4ed91d/1334x1000.jpg", + "https://www.compass.com/m/0/528c9c5c-729f-4fbe-8f66-ee0d186f4ae5/1333x1000.jpg", + "https://www.compass.com/m/0/23580802-d8b1-4333-a609-babf4a6153ea/1333x1000.jpg", + "https://www.compass.com/m/0/cb1ce312-d736-430b-be23-ee9a7dc0dbaf/1334x1000.jpg", + "https://www.compass.com/m/0/4754dd47-e811-44e7-be9c-e3772e5bd5fc/1334x1000.jpg", + "https://www.compass.com/m/0/c3ec8e15-52b1-4828-ab9c-ad87c0a14d09/1334x1000.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/5108-Eilers-Ave-Austin-TX-78751/1FB163_pid/" + }, + { + "listing_id": "2000153565416491801", + "slug": "2102-e-martin-luther-king-jr-blvd-austin-tx-78722", + "title": "$875,000", + "price": 875000, + "is_rent": false, + "street": "2102 East Martin Luther King Jr Boulevard", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78722", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1004, + "latitude": 30.2804426, + "longitude": -97.7189566, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/87759d96-2355-4442-a726-bfc56a725731", + "gallery_uuids": [ + "uuid/87759d96-2355-4442-a726-bfc56a725731", + "uuid/31c4d3a4-2cd2-484e-865c-ff76854cf238", + "uuid/10a516c8-8fd5-49dc-8b9a-a520430d104a", + "uuid/8a733a8e-bcf3-4bba-941e-ae94c609a8b2", + "uuid/cd4de208-bb71-4a64-b6f7-30121701ed35", + "uuid/de8ccf01-e21f-4013-a503-ffcc907bdba3", + "uuid/4f6898cf-3375-483d-869a-4fcb9ea66a05", + "uuid/e6611a52-6ca4-439d-a653-db5656826747" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/87759d96-2355-4442-a726-bfc56a725731/1150x768.jpg", + "https://www.compass.com/m/0/31c4d3a4-2cd2-484e-865c-ff76854cf238/1367x768.jpg", + "https://www.compass.com/m/0/10a516c8-8fd5-49dc-8b9a-a520430d104a/1150x768.jpg", + "https://www.compass.com/m/0/8a733a8e-bcf3-4bba-941e-ae94c609a8b2/1150x768.jpg", + "https://www.compass.com/m/0/cd4de208-bb71-4a64-b6f7-30121701ed35/1150x768.jpg", + "https://www.compass.com/m/0/de8ccf01-e21f-4013-a503-ffcc907bdba3/1150x768.jpg", + "https://www.compass.com/m/0/4f6898cf-3375-483d-869a-4fcb9ea66a05/1150x768.jpg", + "https://www.compass.com/m/0/e6611a52-6ca4-439d-a653-db5656826747/1150x768.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/2102-E-Martin-Luther-King-Jr-Blvd-Austin-TX-78722/1FCP9N_pid/" + }, + { + "listing_id": "2100132827855353609", + "slug": "800-embassy-dr-unit-236-austin-tx-78702", + "title": "$585,000", + "price": 585000, + "is_rent": false, + "street": "800 Embassy Drive, Unit 236", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78702", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1289, + "latitude": 30.2673362, + "longitude": -97.7323084, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/9d6f11e9-0aac-4596-a1c4-e18b3cc69166", + "gallery_uuids": [ + "uuid/9d6f11e9-0aac-4596-a1c4-e18b3cc69166", + "uuid/df16c3a4-2e25-49f2-99d0-e6aef98c5b19", + "uuid/5ad7bf5f-7f0a-4e52-ad5b-019b271fe719", + "uuid/1e126db1-fd86-4a0b-b3b5-eb884cd39c6a", + "uuid/95987ddf-11bc-4599-b17a-d215263fd9b6", + "uuid/e3ae9cc1-e8b4-4c15-827f-2d14277e4c31", + "uuid/b3c6cd43-afa0-4d9e-a467-d93858057068", + "uuid/104dd656-ac49-4a62-b138-1cafe5bc3967" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/9d6f11e9-0aac-4596-a1c4-e18b3cc69166/1500x1000.jpg", + "https://www.compass.com/m/0/df16c3a4-2e25-49f2-99d0-e6aef98c5b19/1500x1000.jpg", + "https://www.compass.com/m/0/5ad7bf5f-7f0a-4e52-ad5b-019b271fe719/1500x1000.jpg", + "https://www.compass.com/m/0/1e126db1-fd86-4a0b-b3b5-eb884cd39c6a/1500x1000.jpg", + "https://www.compass.com/m/0/95987ddf-11bc-4599-b17a-d215263fd9b6/1500x1000.jpg", + "https://www.compass.com/m/0/e3ae9cc1-e8b4-4c15-827f-2d14277e4c31/1500x1000.jpg", + "https://www.compass.com/m/0/b3c6cd43-afa0-4d9e-a467-d93858057068/1500x1000.jpg", + "https://www.compass.com/m/0/104dd656-ac49-4a62-b138-1cafe5bc3967/1500x1000.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/800-Embassy-Dr-Unit-236-Austin-TX-78702/1FP2VI_pid/" + }, + { + "listing_id": "2091175616523262961", + "slug": "3915-tilley-st-austin-tx-78723", + "title": "$918,500", + "price": 918500, + "is_rent": false, + "street": "3915 Tilley Street", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78723", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2241, + "latitude": 30.29224212, + "longitude": -97.69482997, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/7b45ebcddd1bef52146b0c833826d37ea9530b49_img_0_be82e", + "gallery_uuids": [ + "legacy/7b45ebcddd1bef52146b0c833826d37ea9530b49_img_0_be82e", + "legacy/7b45ebcddd1bef52146b0c833826d37ea9530b49_img_1_1e640", + "legacy/7b45ebcddd1bef52146b0c833826d37ea9530b49_img_2_30044", + "legacy/7b45ebcddd1bef52146b0c833826d37ea9530b49_img_3_db7f2", + "legacy/7b45ebcddd1bef52146b0c833826d37ea9530b49_img_4_b185e", + "legacy/7b45ebcddd1bef52146b0c833826d37ea9530b49_img_5_f3176", + "legacy/7b45ebcddd1bef52146b0c833826d37ea9530b49_img_6_aeb56", + "legacy/7b45ebcddd1bef52146b0c833826d37ea9530b49_img_7_f9e4c" + ], + "gallery_urls": [ + "https://www.compass.com/m/7b45ebcddd1bef52146b0c833826d37ea9530b49_img_0_be82e/640x480.jpg", + "https://www.compass.com/m/7b45ebcddd1bef52146b0c833826d37ea9530b49_img_1_1e640/640x480.jpg", + "https://www.compass.com/m/7b45ebcddd1bef52146b0c833826d37ea9530b49_img_2_30044/640x480.jpg", + "https://www.compass.com/m/7b45ebcddd1bef52146b0c833826d37ea9530b49_img_3_db7f2/640x480.jpg", + "https://www.compass.com/m/7b45ebcddd1bef52146b0c833826d37ea9530b49_img_4_b185e/640x480.jpg", + "https://www.compass.com/m/7b45ebcddd1bef52146b0c833826d37ea9530b49_img_5_f3176/640x480.jpg", + "https://www.compass.com/m/7b45ebcddd1bef52146b0c833826d37ea9530b49_img_6_aeb56/640x480.jpg", + "https://www.compass.com/m/7b45ebcddd1bef52146b0c833826d37ea9530b49_img_7_f9e4c/640x480.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/3915-Tilley-St-Austin-TX-78723/1F2WVU_pid/" + }, + { + "listing_id": "1977215870457428705", + "slug": "juanita-st-austin-tx-78704", + "title": "$1,350,000", + "price": 1350000, + "is_rent": false, + "street": "Juanita Street", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78704", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 1976, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/7b0c83c0-ff50-464b-9149-b8b60c74e19c", + "gallery_uuids": [ + "uuid/7b0c83c0-ff50-464b-9149-b8b60c74e19c", + "uuid/950f4406-408c-4247-9990-16ffa4368420", + "uuid/b166562c-34ac-4f3a-a0a5-ef0bd578866d", + "uuid/6b313d64-2e9d-47a0-a4e9-91eef74e9415", + "uuid/6395b55a-1474-49a4-888b-e01bbb4e92fa" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/7b0c83c0-ff50-464b-9149-b8b60c74e19c/1500x844.jpg", + "https://www.compass.com/m/0/950f4406-408c-4247-9990-16ffa4368420/1500x844.jpg", + "https://www.compass.com/m/0/b166562c-34ac-4f3a-a0a5-ef0bd578866d/1500x844.jpg", + "https://www.compass.com/m/0/6b313d64-2e9d-47a0-a4e9-91eef74e9415/1500x844.jpg", + "https://www.compass.com/m/0/6395b55a-1474-49a4-888b-e01bbb4e92fa/1500x844.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/Juanita-St-Austin-TX-78704/1977215870457428705_lid/" + }, + { + "listing_id": "2100809739657962025", + "slug": "2712-s-5th-st-unit-b-austin-tx-78704", + "title": "$699,000", + "price": 699000, + "is_rent": false, + "street": "2712 South 5th Street, Unit B", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78704", + "beds": 2, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1797, + "latitude": 30.23890987, + "longitude": -97.7668421, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/660c6dbb5588acd7c9805bb8ff5b0b3487183f8c_img_0_84e9f", + "gallery_uuids": [ + "legacy/660c6dbb5588acd7c9805bb8ff5b0b3487183f8c_img_0_84e9f", + "legacy/660c6dbb5588acd7c9805bb8ff5b0b3487183f8c_img_1_6f355", + "legacy/660c6dbb5588acd7c9805bb8ff5b0b3487183f8c_img_2_b2938", + "legacy/660c6dbb5588acd7c9805bb8ff5b0b3487183f8c_img_3_46eb9", + "legacy/660c6dbb5588acd7c9805bb8ff5b0b3487183f8c_img_4_e591a", + "legacy/660c6dbb5588acd7c9805bb8ff5b0b3487183f8c_img_5_beb33", + "legacy/660c6dbb5588acd7c9805bb8ff5b0b3487183f8c_img_6_35d92", + "legacy/660c6dbb5588acd7c9805bb8ff5b0b3487183f8c_img_7_eaf2b" + ], + "gallery_urls": [ + "https://www.compass.com/m/660c6dbb5588acd7c9805bb8ff5b0b3487183f8c_img_0_84e9f/640x480.jpg", + "https://www.compass.com/m/660c6dbb5588acd7c9805bb8ff5b0b3487183f8c_img_1_6f355/640x480.jpg", + "https://www.compass.com/m/660c6dbb5588acd7c9805bb8ff5b0b3487183f8c_img_2_b2938/640x480.jpg", + "https://www.compass.com/m/660c6dbb5588acd7c9805bb8ff5b0b3487183f8c_img_3_46eb9/640x480.jpg", + "https://www.compass.com/m/660c6dbb5588acd7c9805bb8ff5b0b3487183f8c_img_4_e591a/640x480.jpg", + "https://www.compass.com/m/660c6dbb5588acd7c9805bb8ff5b0b3487183f8c_img_5_beb33/640x480.jpg", + "https://www.compass.com/m/660c6dbb5588acd7c9805bb8ff5b0b3487183f8c_img_6_35d92/640x480.jpg", + "https://www.compass.com/m/660c6dbb5588acd7c9805bb8ff5b0b3487183f8c_img_7_eaf2b/640x480.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/2712-S-5th-St-Unit-B-Austin-TX-78704/1GHUVR_pid/" + }, + { + "listing_id": "2074149882971178969", + "slug": "2100-apricot-glen-dr-austin-tx-78746", + "title": "$2,350,000", + "price": 2350000, + "is_rent": false, + "street": "2100 Apricot Glen Drive", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78746", + "beds": 4, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 3485, + "latitude": 30.2614047, + "longitude": -97.80440019999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/a3036007-efba-44b1-a772-012a4482672b", + "gallery_uuids": [ + "uuid/a3036007-efba-44b1-a772-012a4482672b", + "uuid/44b3b971-a980-49d3-a7bb-6f6c27f87331", + "uuid/81ae97ed-fab4-4d00-9651-98ddf2c984d5", + "uuid/de8f9fc9-ca14-4727-8a85-cbdc05b69645", + "uuid/e74dc60b-d746-44bf-9285-4718b405ed7e", + "uuid/61d50558-8b46-4498-a915-ffaee38d1fac", + "uuid/9fd25c40-fa55-4402-9791-d873ebce0344", + "uuid/901ee5bc-efea-4477-b257-29ec19be9c26" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/a3036007-efba-44b1-a772-012a4482672b/1500x1000.jpg", + "https://www.compass.com/m/0/44b3b971-a980-49d3-a7bb-6f6c27f87331/1500x1000.jpg", + "https://www.compass.com/m/0/81ae97ed-fab4-4d00-9651-98ddf2c984d5/1500x1000.jpg", + "https://www.compass.com/m/0/de8f9fc9-ca14-4727-8a85-cbdc05b69645/1500x1000.jpg", + "https://www.compass.com/m/0/e74dc60b-d746-44bf-9285-4718b405ed7e/1500x1000.jpg", + "https://www.compass.com/m/0/61d50558-8b46-4498-a915-ffaee38d1fac/1500x1000.jpg", + "https://www.compass.com/m/0/9fd25c40-fa55-4402-9791-d873ebce0344/1500x1000.jpg", + "https://www.compass.com/m/0/901ee5bc-efea-4477-b257-29ec19be9c26/1500x1000.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/2100-Apricot-Glen-Dr-Austin-TX-78746/1FE084_pid/" + }, + { + "listing_id": "2079003982204301553", + "slug": "4330-olenick-st-austin-tx-78723", + "title": "$450,000", + "price": 450000, + "is_rent": false, + "street": "4330 Olenick Street", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78723", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 973, + "latitude": 30.295073, + "longitude": -97.698708, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/5aebd5ef-b29b-49b5-a642-fc74854ccaa0", + "gallery_uuids": [ + "uuid/5aebd5ef-b29b-49b5-a642-fc74854ccaa0", + "uuid/ee661069-3bea-4e2a-a8a8-9e11b6b7434b", + "uuid/eca35836-1643-4b14-80ee-5a8fedcfb98b", + "uuid/097539cf-cd55-43f5-a2fd-e840191ff948", + "uuid/b2d14a0f-0691-438d-943e-d448e212cf67", + "uuid/6b179e12-4c18-41a4-b442-0b1933a760fa", + "uuid/88c5c16a-6567-48c1-80aa-9f1700e30fed", + "uuid/1a5ee30c-9373-4cc0-bef2-a0b564565c29" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/5aebd5ef-b29b-49b5-a642-fc74854ccaa0/1500x1000.jpg", + "https://www.compass.com/m/0/ee661069-3bea-4e2a-a8a8-9e11b6b7434b/1500x1000.jpg", + "https://www.compass.com/m/0/eca35836-1643-4b14-80ee-5a8fedcfb98b/1500x1000.jpg", + "https://www.compass.com/m/0/097539cf-cd55-43f5-a2fd-e840191ff948/1500x1000.jpg", + "https://www.compass.com/m/0/b2d14a0f-0691-438d-943e-d448e212cf67/1500x1000.jpg", + "https://www.compass.com/m/0/6b179e12-4c18-41a4-b442-0b1933a760fa/1500x1000.jpg", + "https://www.compass.com/m/0/88c5c16a-6567-48c1-80aa-9f1700e30fed/1500x999.jpg", + "https://www.compass.com/m/0/1a5ee30c-9373-4cc0-bef2-a0b564565c29/1500x999.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/4330-Olenick-St-Austin-TX-78723/1GCUHW_pid/" + }, + { + "listing_id": "2054692539731707521", + "slug": "3305-dolphin-dr-austin-tx-78704", + "title": "$775,000", + "price": 775000, + "is_rent": false, + "street": "3305 Dolphin Drive", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78704", + "beds": 7, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 3424, + "latitude": 30.2363322, + "longitude": -97.77488579999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/31e8011ae9a4012eb231d9b002a3e4f89904b44b_img_0_0cbf1", + "gallery_uuids": [ + "legacy/31e8011ae9a4012eb231d9b002a3e4f89904b44b_img_0_0cbf1" + ], + "gallery_urls": [ + "https://www.compass.com/m/31e8011ae9a4012eb231d9b002a3e4f89904b44b_img_0_0cbf1/640x480.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/3305-Dolphin-Dr-Austin-TX-78704/1FN86W_pid/" + }, + { + "listing_id": "1972541164406932321", + "slug": "1036-liberty-park-dr-unit-38a-austin-tx-78746", + "title": "$1,400,000", + "price": 1400000, + "is_rent": false, + "street": "1036 Liberty Park Drive, Unit 38A", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78746", + "beds": 4, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2889, + "latitude": 30.2686831, + "longitude": -97.7889654, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/82ed3c2cfce9567ae31c11dd642ee8081d402627_img_0_59f68", + "gallery_uuids": [ + "legacy/82ed3c2cfce9567ae31c11dd642ee8081d402627_img_0_59f68", + "legacy/82ed3c2cfce9567ae31c11dd642ee8081d402627_img_1_1996b", + "legacy/82ed3c2cfce9567ae31c11dd642ee8081d402627_img_2_1dee3", + "legacy/82ed3c2cfce9567ae31c11dd642ee8081d402627_img_3_e05f8", + "legacy/82ed3c2cfce9567ae31c11dd642ee8081d402627_img_4_44323", + "legacy/82ed3c2cfce9567ae31c11dd642ee8081d402627_img_5_cba87", + "legacy/82ed3c2cfce9567ae31c11dd642ee8081d402627_img_6_5fd25", + "legacy/82ed3c2cfce9567ae31c11dd642ee8081d402627_img_7_5b786" + ], + "gallery_urls": [ + "https://www.compass.com/m/82ed3c2cfce9567ae31c11dd642ee8081d402627_img_0_59f68/640x480.jpg", + "https://www.compass.com/m/82ed3c2cfce9567ae31c11dd642ee8081d402627_img_1_1996b/640x480.jpg", + "https://www.compass.com/m/82ed3c2cfce9567ae31c11dd642ee8081d402627_img_2_1dee3/640x480.jpg", + "https://www.compass.com/m/82ed3c2cfce9567ae31c11dd642ee8081d402627_img_3_e05f8/640x480.jpg", + "https://www.compass.com/m/82ed3c2cfce9567ae31c11dd642ee8081d402627_img_4_44323/640x480.jpg", + "https://www.compass.com/m/82ed3c2cfce9567ae31c11dd642ee8081d402627_img_5_cba87/640x480.jpg", + "https://www.compass.com/m/82ed3c2cfce9567ae31c11dd642ee8081d402627_img_6_5fd25/640x480.jpg", + "https://www.compass.com/m/82ed3c2cfce9567ae31c11dd642ee8081d402627_img_7_5b786/640x480.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/1036-Liberty-Park-Dr-Unit-38A-Austin-TX-78746/1F3WH3_pid/" + }, + { + "listing_id": "2085803818984863153", + "slug": "1710-holly-st-austin-tx-78702", + "title": "$670,000", + "price": 670000, + "is_rent": false, + "street": "1710 Holly Street", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78702", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 686, + "latitude": 30.25403379999999, + "longitude": -97.7272959, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/71660299-2638-4532-9f7c-049ae03e9799", + "gallery_uuids": [ + "uuid/71660299-2638-4532-9f7c-049ae03e9799", + "uuid/d23ccb50-d644-4c91-ac48-0f51ea15edd2", + "uuid/51954047-6944-4824-8aac-e3217ef0f476", + "uuid/c006ceff-04d2-4795-b5e3-2791427e5839", + "uuid/23f0f42f-25b1-45fd-a87a-a285e3a7977c", + "uuid/378da58c-dad2-4d94-a51e-3918a50638b0", + "uuid/5066717e-c297-4bdd-9bda-e88b580af1d5", + "uuid/8730d27d-7ae3-4714-ac94-031af3e719f6" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/71660299-2638-4532-9f7c-049ae03e9799/1498x1000.jpg", + "https://www.compass.com/m/0/d23ccb50-d644-4c91-ac48-0f51ea15edd2/1498x1000.jpg", + "https://www.compass.com/m/0/51954047-6944-4824-8aac-e3217ef0f476/1499x1000.jpg", + "https://www.compass.com/m/0/c006ceff-04d2-4795-b5e3-2791427e5839/1498x1000.jpg", + "https://www.compass.com/m/0/23f0f42f-25b1-45fd-a87a-a285e3a7977c/1498x1000.jpg", + "https://www.compass.com/m/0/378da58c-dad2-4d94-a51e-3918a50638b0/1499x1000.jpg", + "https://www.compass.com/m/0/5066717e-c297-4bdd-9bda-e88b580af1d5/1499x1000.jpg", + "https://www.compass.com/m/0/8730d27d-7ae3-4714-ac94-031af3e719f6/1500x844.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/1710-Holly-St-Austin-TX-78702/1FJRJP_pid/" + }, + { + "listing_id": "2098802882012995745", + "slug": "1422-palomino-ridge-dr-austin-tx-78733", + "title": "$3,450,000", + "price": 3450000, + "is_rent": false, + "street": "1422 Palomino Ridge Drive", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78733", + "beds": 5, + "baths": 4.0, + "baths_full": 4, + "baths_half": null, + "sqft": 5185, + "latitude": 30.3094976, + "longitude": -97.88638309999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/741f013c-0116-408c-922b-d823cbbffeaf", + "gallery_uuids": [ + "uuid/741f013c-0116-408c-922b-d823cbbffeaf", + "uuid/94faacee-5f2f-42ed-a90c-51c210a48f86", + "uuid/ea520717-c709-4fc2-b526-514e1fd5985c", + "uuid/fa5d2bc5-8749-4a35-95df-c6c2b4fdbd7d", + "uuid/2858217e-af9f-461d-a233-572d39b292a6", + "uuid/e19fcf41-346d-40b7-8588-3857c8612672", + "uuid/92aea8f3-a4f6-4d55-9092-98686319e035", + "uuid/6b797d1c-ba16-4314-a44f-3ce5270ff84c" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/741f013c-0116-408c-922b-d823cbbffeaf/1500x1000.jpg", + "https://www.compass.com/m/0/94faacee-5f2f-42ed-a90c-51c210a48f86/1500x1000.jpg", + "https://www.compass.com/m/0/ea520717-c709-4fc2-b526-514e1fd5985c/1500x1000.jpg", + "https://www.compass.com/m/0/fa5d2bc5-8749-4a35-95df-c6c2b4fdbd7d/1500x1000.jpg", + "https://www.compass.com/m/0/2858217e-af9f-461d-a233-572d39b292a6/1500x1000.jpg", + "https://www.compass.com/m/0/e19fcf41-346d-40b7-8588-3857c8612672/1500x1000.jpg", + "https://www.compass.com/m/0/92aea8f3-a4f6-4d55-9092-98686319e035/1500x1000.jpg", + "https://www.compass.com/m/0/6b797d1c-ba16-4314-a44f-3ce5270ff84c/1500x1000.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/1422-Palomino-Ridge-Dr-Austin-TX-78733/1FMVA4_pid/" + }, + { + "listing_id": "1870568502376831969", + "slug": "canterbury-st-austin-tx-78702", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "Canterbury Street", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78702", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "New Construction" + ], + "hero_uuid": "uuid/a9e64849-8fab-4b27-9fad-f5bff85ad346", + "gallery_uuids": [ + "uuid/a9e64849-8fab-4b27-9fad-f5bff85ad346", + "uuid/9133ba42-9c89-4ba8-8e10-1f3638a4bd1b" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/a9e64849-8fab-4b27-9fad-f5bff85ad346/1400x1000.jpg", + "https://www.compass.com/m/0/9133ba42-9c89-4ba8-8e10-1f3638a4bd1b/1400x1000.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/Canterbury-St-Austin-TX-78702/1870568502376831969_lid/" + }, + { + "listing_id": "2089911238993390705", + "slug": "7313-carver-ave-austin-tx-78752", + "title": "$465,000", + "price": 465000, + "is_rent": false, + "street": "7313 Carver Avenue", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78752", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1350, + "latitude": 30.3325603, + "longitude": -97.6978243, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/4503c3b1-6798-400d-976e-60f46f565a34", + "gallery_uuids": [ + "uuid/4503c3b1-6798-400d-976e-60f46f565a34", + "uuid/576338a1-594c-40ce-a6e0-5af5d1d304d5", + "uuid/b416071d-9acb-43da-ba7a-71366537514a", + "uuid/f02e8f53-9023-46a4-99dc-b0c849574d77", + "uuid/679b0744-0036-4c89-8337-e4d74d3f20a7", + "uuid/6de3387f-5658-4328-9003-825b5ff77b94", + "uuid/fa4dc9c4-7990-4a64-9762-ead9c1e59a75", + "uuid/9ace88de-c10c-42a0-ba60-93a1d051e518" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/4503c3b1-6798-400d-976e-60f46f565a34/1500x919.jpg", + "https://www.compass.com/m/0/576338a1-594c-40ce-a6e0-5af5d1d304d5/1365x1000.jpg", + "https://www.compass.com/m/0/b416071d-9acb-43da-ba7a-71366537514a/1500x1000.jpg", + "https://www.compass.com/m/0/f02e8f53-9023-46a4-99dc-b0c849574d77/1500x1000.jpg", + "https://www.compass.com/m/0/679b0744-0036-4c89-8337-e4d74d3f20a7/1500x1000.jpg", + "https://www.compass.com/m/0/6de3387f-5658-4328-9003-825b5ff77b94/1359x1000.jpg", + "https://www.compass.com/m/0/fa4dc9c4-7990-4a64-9762-ead9c1e59a75/1500x1000.jpg", + "https://www.compass.com/m/0/9ace88de-c10c-42a0-ba60-93a1d051e518/1500x1000.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/7313-Carver-Ave-Austin-TX-78752/1F62U3_pid/" + }, + { + "listing_id": "2095146936190510225", + "slug": "4907-majestic-dr-austin-tx-78745", + "title": "$745,000", + "price": 745000, + "is_rent": false, + "street": "4907 Majestic Drive", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78745", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1772, + "latitude": 30.2199084, + "longitude": -97.78741199999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/843ae254-ebc5-476b-8352-b2bc1aabf7a7", + "gallery_uuids": [ + "uuid/843ae254-ebc5-476b-8352-b2bc1aabf7a7", + "uuid/2f6552a4-ec06-44d3-99e2-373ec61835b3", + "uuid/aa4c5375-e0e5-4ade-abbe-9d179ad2251c" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/843ae254-ebc5-476b-8352-b2bc1aabf7a7/1500x789.jpg", + "https://www.compass.com/m/0/2f6552a4-ec06-44d3-99e2-373ec61835b3/1500x845.jpg", + "https://www.compass.com/m/0/aa4c5375-e0e5-4ade-abbe-9d179ad2251c/1000x1000.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/4907-Majestic-Dr-Austin-TX-78745/1FHQRA_pid/" + }, + { + "listing_id": "1870549046259276961", + "slug": "canterbury-st-austin-tx-78702", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "Canterbury Street", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78702", + "beds": 5, + "baths": 6.0, + "baths_full": 5, + "baths_half": null, + "sqft": null, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "New Construction" + ], + "hero_uuid": "uuid/c4b556a5-79dd-4d32-b52c-f69d446cd24e", + "gallery_uuids": [ + "uuid/c4b556a5-79dd-4d32-b52c-f69d446cd24e", + "uuid/218b23f0-c259-400f-8db1-84d5719d5338" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/c4b556a5-79dd-4d32-b52c-f69d446cd24e/1400x1000.jpg", + "https://www.compass.com/m/0/218b23f0-c259-400f-8db1-84d5719d5338/1400x1000.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/Canterbury-St-Austin-TX-78702/1870549046259276961_lid/" + }, + { + "listing_id": "2084997859022574777", + "slug": "8718-tallwood-dr-austin-tx-78759", + "title": "$979,000", + "price": 979000, + "is_rent": false, + "street": "8718 Tallwood Drive", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78759", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2408, + "latitude": 30.3794054, + "longitude": -97.7456766, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Virtual Tour" + ], + "hero_uuid": "legacy/b876097c361b6fe57395d7128ba4dfaf538e1c28_img_0_802cb", + "gallery_uuids": [ + "legacy/b876097c361b6fe57395d7128ba4dfaf538e1c28_img_0_802cb", + "legacy/b876097c361b6fe57395d7128ba4dfaf538e1c28_img_1_dfb83", + "legacy/b876097c361b6fe57395d7128ba4dfaf538e1c28_img_2_6c24a", + "legacy/b876097c361b6fe57395d7128ba4dfaf538e1c28_img_3_6230c", + "legacy/b876097c361b6fe57395d7128ba4dfaf538e1c28_img_4_19fdd", + "legacy/b876097c361b6fe57395d7128ba4dfaf538e1c28_img_5_aa69f", + "legacy/b876097c361b6fe57395d7128ba4dfaf538e1c28_img_6_581b2", + "legacy/b876097c361b6fe57395d7128ba4dfaf538e1c28_img_7_dc813" + ], + "gallery_urls": [ + "https://www.compass.com/m/b876097c361b6fe57395d7128ba4dfaf538e1c28_img_0_802cb/640x480.jpg", + "https://www.compass.com/m/b876097c361b6fe57395d7128ba4dfaf538e1c28_img_1_dfb83/640x480.jpg", + "https://www.compass.com/m/b876097c361b6fe57395d7128ba4dfaf538e1c28_img_2_6c24a/640x480.jpg", + "https://www.compass.com/m/b876097c361b6fe57395d7128ba4dfaf538e1c28_img_3_6230c/640x480.jpg", + "https://www.compass.com/m/b876097c361b6fe57395d7128ba4dfaf538e1c28_img_4_19fdd/640x480.jpg", + "https://www.compass.com/m/b876097c361b6fe57395d7128ba4dfaf538e1c28_img_5_aa69f/640x480.jpg", + "https://www.compass.com/m/b876097c361b6fe57395d7128ba4dfaf538e1c28_img_6_581b2/640x480.jpg", + "https://www.compass.com/m/b876097c361b6fe57395d7128ba4dfaf538e1c28_img_7_dc813/640x480.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/8718-Tallwood-Dr-Austin-TX-78759/1GALSN_pid/" + }, + { + "listing_id": "1870576167626994393", + "slug": "canterbury-st-austin-tx-78702", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "Canterbury Street", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78702", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/c31e651e-dfec-40fb-8a2b-d44a913106a2", + "gallery_uuids": [ + "uuid/c31e651e-dfec-40fb-8a2b-d44a913106a2", + "uuid/f76e3519-db95-4a36-abca-da8e5ad50917" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/c31e651e-dfec-40fb-8a2b-d44a913106a2/1400x1000.jpg", + "https://www.compass.com/m/0/f76e3519-db95-4a36-abca-da8e5ad50917/1400x1000.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/Canterbury-St-Austin-TX-78702/1870576167626994393_lid/" + }, + { + "listing_id": "2085815781659791705", + "slug": "1402-singleton-ave-unit-b-austin-tx-78702", + "title": "$515,000", + "price": 515000, + "is_rent": false, + "street": "1402 Singleton Avenue, Unit B", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78702", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1086, + "latitude": 30.2768943, + "longitude": -97.7146637, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/816585de-ea30-43c1-9445-3540de73b8ba", + "gallery_uuids": [ + "uuid/816585de-ea30-43c1-9445-3540de73b8ba", + "uuid/a786f2bd-fc1d-4860-98ef-e3d6cfcce12c", + "uuid/d414d4de-32dc-41b5-87bf-03a36cafb4ec", + "uuid/e4c480f6-39de-4729-ae26-eaf274d45341", + "uuid/347b5efe-0151-4f46-85ec-ee7f24a333ed", + "uuid/b64b0cde-a6f1-4927-a5e0-89183c44be6d", + "uuid/d6f53124-d7c3-4e90-9aa4-5aa5a0e2c7b7", + "uuid/aebbef20-01ff-4292-b176-37c5ff977119" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/816585de-ea30-43c1-9445-3540de73b8ba/1152x768.jpg", + "https://www.compass.com/m/0/a786f2bd-fc1d-4860-98ef-e3d6cfcce12c/1152x768.jpg", + "https://www.compass.com/m/0/d414d4de-32dc-41b5-87bf-03a36cafb4ec/1500x1000.jpg", + "https://www.compass.com/m/0/e4c480f6-39de-4729-ae26-eaf274d45341/1500x1000.jpg", + "https://www.compass.com/m/0/347b5efe-0151-4f46-85ec-ee7f24a333ed/1152x768.jpg", + "https://www.compass.com/m/0/b64b0cde-a6f1-4927-a5e0-89183c44be6d/1152x768.jpg", + "https://www.compass.com/m/0/d6f53124-d7c3-4e90-9aa4-5aa5a0e2c7b7/1152x768.jpg", + "https://www.compass.com/m/0/aebbef20-01ff-4292-b176-37c5ff977119/1152x768.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/1402-Singleton-Ave-Unit-B-Austin-TX-78702/1FMYIJ_pid/" + }, + { + "listing_id": "2095859265258995457", + "slug": "2624-metcalfe-rd-unit-24-austin-tx-78741", + "title": "", + "price": null, + "is_rent": false, + "street": "2624 Metcalfe Road, Unit 24", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78741", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1600, + "latitude": 30.2269226, + "longitude": -97.73787220000001, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/8641c4a43b4e28688ff035258fd45bb8cddf24f5_img_0_df793", + "gallery_uuids": [ + "legacy/8641c4a43b4e28688ff035258fd45bb8cddf24f5_img_0_df793", + "legacy/8641c4a43b4e28688ff035258fd45bb8cddf24f5_img_1_abcd0", + "legacy/8641c4a43b4e28688ff035258fd45bb8cddf24f5_img_2_507a6", + "legacy/8641c4a43b4e28688ff035258fd45bb8cddf24f5_img_3_5905a", + "legacy/8641c4a43b4e28688ff035258fd45bb8cddf24f5_img_4_0292c", + "legacy/8641c4a43b4e28688ff035258fd45bb8cddf24f5_img_5_b17a2", + "legacy/8641c4a43b4e28688ff035258fd45bb8cddf24f5_img_6_a60d5", + "legacy/8641c4a43b4e28688ff035258fd45bb8cddf24f5_img_7_04997" + ], + "gallery_urls": [ + "https://www.compass.com/m/8641c4a43b4e28688ff035258fd45bb8cddf24f5_img_0_df793/640x480.jpg", + "https://www.compass.com/m/8641c4a43b4e28688ff035258fd45bb8cddf24f5_img_1_abcd0/640x480.jpg", + "https://www.compass.com/m/8641c4a43b4e28688ff035258fd45bb8cddf24f5_img_2_507a6/640x480.jpg", + "https://www.compass.com/m/8641c4a43b4e28688ff035258fd45bb8cddf24f5_img_3_5905a/640x480.jpg", + "https://www.compass.com/m/8641c4a43b4e28688ff035258fd45bb8cddf24f5_img_4_0292c/640x480.jpg", + "https://www.compass.com/m/8641c4a43b4e28688ff035258fd45bb8cddf24f5_img_5_b17a2/640x480.jpg", + "https://www.compass.com/m/8641c4a43b4e28688ff035258fd45bb8cddf24f5_img_6_a60d5/640x480.jpg", + "https://www.compass.com/m/8641c4a43b4e28688ff035258fd45bb8cddf24f5_img_7_04997/640x480.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/2624-Metcalfe-Rd-Unit-24-Austin-TX-78741/1GDWVT_pid/" + }, + { + "listing_id": "2076355547689262425", + "slug": "6603-liliana-ln-austin-tx-78746", + "title": "$1,825,000", + "price": 1825000, + "is_rent": false, + "street": "6603 Liliana Lane", + "neighborhood": "", + "city": "Austin", + "state": "TX", + "zip": "78746", + "beds": 4, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 3609, + "latitude": 30.311493, + "longitude": -97.8276089, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Virtual Tour" + ], + "hero_uuid": "uuid/986c1214-9076-4a31-9990-4a4a471afe29", + "gallery_uuids": [ + "uuid/986c1214-9076-4a31-9990-4a4a471afe29", + "uuid/4b253c72-a7d9-4f54-9d1e-f3ff69f43b9a", + "uuid/7ace969e-430c-4788-bb13-078bfbbc66b2", + "uuid/487998c5-985c-4713-bebc-7379b8ff2abb", + "uuid/babde747-2f99-433c-8bd7-179f120212ff", + "uuid/395aac41-c9f0-4993-a3fb-f04c6c118d0d", + "uuid/c1bd9536-58bc-43ab-a2db-42133fa88baf", + "uuid/f9cbce23-522e-4cdf-b18d-88f0323a42f7" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/986c1214-9076-4a31-9990-4a4a471afe29/1024x575.jpg", + "https://www.compass.com/m/0/4b253c72-a7d9-4f54-9d1e-f3ff69f43b9a/1024x683.jpg", + "https://www.compass.com/m/0/7ace969e-430c-4788-bb13-078bfbbc66b2/1024x683.jpg", + "https://www.compass.com/m/0/487998c5-985c-4713-bebc-7379b8ff2abb/1024x683.jpg", + "https://www.compass.com/m/0/babde747-2f99-433c-8bd7-179f120212ff/1024x683.jpg", + "https://www.compass.com/m/0/395aac41-c9f0-4993-a3fb-f04c6c118d0d/1024x683.jpg", + "https://www.compass.com/m/0/c1bd9536-58bc-43ab-a2db-42133fa88baf/1024x683.jpg", + "https://www.compass.com/m/0/f9cbce23-522e-4cdf-b18d-88f0323a42f7/1024x683.jpg" + ], + "source_city": "austin", + "detail_url": "https://www.compass.com/homedetails/6603-Liliana-Ln-Austin-TX-78746/2781L3_pid/" + }, + { + "listing_id": "2101088063918874001", + "slug": "2010-ne-54th-st-seattle-wa-98105", + "title": "$999,000", + "price": 999000, + "is_rent": false, + "street": "2010 Northeast 54th Street", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98105", + "beds": 4, + "baths": 4.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1940, + "latitude": 47.6681378, + "longitude": -122.3059372, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/7b72265d9d4a10591c208997863bb8ce953f84c1_img_0_5975a", + "gallery_uuids": [ + "legacy/7b72265d9d4a10591c208997863bb8ce953f84c1_img_0_5975a", + "legacy/7b72265d9d4a10591c208997863bb8ce953f84c1_img_1_ac03b", + "legacy/7b72265d9d4a10591c208997863bb8ce953f84c1_img_2_4d835", + "legacy/7b72265d9d4a10591c208997863bb8ce953f84c1_img_3_f92cf", + "legacy/7b72265d9d4a10591c208997863bb8ce953f84c1_img_4_0c455", + "legacy/7b72265d9d4a10591c208997863bb8ce953f84c1_img_5_74747", + "legacy/7b72265d9d4a10591c208997863bb8ce953f84c1_img_6_9094e", + "legacy/7b72265d9d4a10591c208997863bb8ce953f84c1_img_7_a6a02" + ], + "gallery_urls": [ + "https://www.compass.com/m/7b72265d9d4a10591c208997863bb8ce953f84c1_img_0_5975a/640x480.jpg", + "https://www.compass.com/m/7b72265d9d4a10591c208997863bb8ce953f84c1_img_1_ac03b/640x480.jpg", + "https://www.compass.com/m/7b72265d9d4a10591c208997863bb8ce953f84c1_img_2_4d835/640x480.jpg", + "https://www.compass.com/m/7b72265d9d4a10591c208997863bb8ce953f84c1_img_3_f92cf/640x480.jpg", + "https://www.compass.com/m/7b72265d9d4a10591c208997863bb8ce953f84c1_img_4_0c455/640x480.jpg", + "https://www.compass.com/m/7b72265d9d4a10591c208997863bb8ce953f84c1_img_5_74747/640x480.jpg", + "https://www.compass.com/m/7b72265d9d4a10591c208997863bb8ce953f84c1_img_6_9094e/640x480.jpg", + "https://www.compass.com/m/7b72265d9d4a10591c208997863bb8ce953f84c1_img_7_a6a02/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/2010-NE-54th-St-Seattle-WA-98105/1SKL8I_pid/" + }, + { + "listing_id": "2099679468665145089", + "slug": "450-s-main-st-unit-305-seattle-wa-98104", + "title": "$335,000", + "price": 335000, + "is_rent": false, + "street": "450 South Main Street, Unit 305", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98104", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 558, + "latitude": 47.6002447, + "longitude": -122.3280012, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/0b4a4da45e1f0a866f7a09c5f7dc01b70ae4da4d_img_0_7c311", + "gallery_uuids": [ + "legacy/0b4a4da45e1f0a866f7a09c5f7dc01b70ae4da4d_img_0_7c311", + "legacy/0b4a4da45e1f0a866f7a09c5f7dc01b70ae4da4d_img_1_e36e6", + "legacy/0b4a4da45e1f0a866f7a09c5f7dc01b70ae4da4d_img_2_34771", + "legacy/0b4a4da45e1f0a866f7a09c5f7dc01b70ae4da4d_img_3_8e1cb", + "legacy/0b4a4da45e1f0a866f7a09c5f7dc01b70ae4da4d_img_4_ff99c", + "legacy/0b4a4da45e1f0a866f7a09c5f7dc01b70ae4da4d_img_5_7c945", + "legacy/0b4a4da45e1f0a866f7a09c5f7dc01b70ae4da4d_img_6_d36db", + "legacy/0b4a4da45e1f0a866f7a09c5f7dc01b70ae4da4d_img_7_0b5e8" + ], + "gallery_urls": [ + "https://www.compass.com/m/0b4a4da45e1f0a866f7a09c5f7dc01b70ae4da4d_img_0_7c311/640x480.jpg", + "https://www.compass.com/m/0b4a4da45e1f0a866f7a09c5f7dc01b70ae4da4d_img_1_e36e6/640x480.jpg", + "https://www.compass.com/m/0b4a4da45e1f0a866f7a09c5f7dc01b70ae4da4d_img_2_34771/640x480.jpg", + "https://www.compass.com/m/0b4a4da45e1f0a866f7a09c5f7dc01b70ae4da4d_img_3_8e1cb/640x480.jpg", + "https://www.compass.com/m/0b4a4da45e1f0a866f7a09c5f7dc01b70ae4da4d_img_4_ff99c/640x480.jpg", + "https://www.compass.com/m/0b4a4da45e1f0a866f7a09c5f7dc01b70ae4da4d_img_5_7c945/640x480.jpg", + "https://www.compass.com/m/0b4a4da45e1f0a866f7a09c5f7dc01b70ae4da4d_img_6_d36db/640x480.jpg", + "https://www.compass.com/m/0b4a4da45e1f0a866f7a09c5f7dc01b70ae4da4d_img_7_0b5e8/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/450-S-Main-St-Unit-305-Seattle-WA-98104/1SIZ37_pid/" + }, + { + "listing_id": "2100152382590403177", + "slug": "453-mcgilvra-blvd-e-seattle-wa-98112", + "title": "$3,495,000", + "price": 3495000, + "is_rent": false, + "street": "453 McGilvra Boulevard East", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98112", + "beds": 4, + "baths": 6.0, + "baths_full": 2, + "baths_half": null, + "sqft": 4940, + "latitude": 47.6240061, + "longitude": -122.2847627, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/591b516180ee870a3155f5ac57d566a66657bf9b_img_0_31c1a", + "gallery_uuids": [ + "legacy/591b516180ee870a3155f5ac57d566a66657bf9b_img_0_31c1a", + "legacy/591b516180ee870a3155f5ac57d566a66657bf9b_img_1_7dbab", + "legacy/591b516180ee870a3155f5ac57d566a66657bf9b_img_2_f9d0f", + "legacy/591b516180ee870a3155f5ac57d566a66657bf9b_img_3_1ffc0", + "legacy/591b516180ee870a3155f5ac57d566a66657bf9b_img_4_8ef58", + "legacy/591b516180ee870a3155f5ac57d566a66657bf9b_img_5_f293c", + "legacy/591b516180ee870a3155f5ac57d566a66657bf9b_img_6_443b8", + "legacy/591b516180ee870a3155f5ac57d566a66657bf9b_img_7_da429" + ], + "gallery_urls": [ + "https://www.compass.com/m/591b516180ee870a3155f5ac57d566a66657bf9b_img_0_31c1a/640x480.jpg", + "https://www.compass.com/m/591b516180ee870a3155f5ac57d566a66657bf9b_img_1_7dbab/640x480.jpg", + "https://www.compass.com/m/591b516180ee870a3155f5ac57d566a66657bf9b_img_2_f9d0f/640x480.jpg", + "https://www.compass.com/m/591b516180ee870a3155f5ac57d566a66657bf9b_img_3_1ffc0/640x480.jpg", + "https://www.compass.com/m/591b516180ee870a3155f5ac57d566a66657bf9b_img_4_8ef58/640x480.jpg", + "https://www.compass.com/m/591b516180ee870a3155f5ac57d566a66657bf9b_img_5_f293c/640x480.jpg", + "https://www.compass.com/m/591b516180ee870a3155f5ac57d566a66657bf9b_img_6_443b8/640x480.jpg", + "https://www.compass.com/m/591b516180ee870a3155f5ac57d566a66657bf9b_img_7_da429/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/453-McGilvra-Blvd-E-Seattle-WA-98112/1T307N_pid/" + }, + { + "listing_id": "2100227614806075617", + "slug": "702-s-director-st-seattle-wa-98108", + "title": "$450,000", + "price": 450000, + "is_rent": false, + "street": "702 South Director Street", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98108", + "beds": 3, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1490, + "latitude": 47.5224001, + "longitude": -122.3254548, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/e72f25ff2dc8e8f7a31f30c660e50411de0e2e20_img_0_447b0", + "gallery_uuids": [ + "legacy/e72f25ff2dc8e8f7a31f30c660e50411de0e2e20_img_0_447b0", + "legacy/e72f25ff2dc8e8f7a31f30c660e50411de0e2e20_img_1_71e37", + "legacy/e72f25ff2dc8e8f7a31f30c660e50411de0e2e20_img_2_97a87", + "legacy/e72f25ff2dc8e8f7a31f30c660e50411de0e2e20_img_3_6524c", + "legacy/e72f25ff2dc8e8f7a31f30c660e50411de0e2e20_img_4_4eaa4", + "legacy/e72f25ff2dc8e8f7a31f30c660e50411de0e2e20_img_5_c36a1", + "legacy/e72f25ff2dc8e8f7a31f30c660e50411de0e2e20_img_6_f95e1", + "legacy/e72f25ff2dc8e8f7a31f30c660e50411de0e2e20_img_7_e5ac6" + ], + "gallery_urls": [ + "https://www.compass.com/m/e72f25ff2dc8e8f7a31f30c660e50411de0e2e20_img_0_447b0/640x480.jpg", + "https://www.compass.com/m/e72f25ff2dc8e8f7a31f30c660e50411de0e2e20_img_1_71e37/640x480.jpg", + "https://www.compass.com/m/e72f25ff2dc8e8f7a31f30c660e50411de0e2e20_img_2_97a87/640x480.jpg", + "https://www.compass.com/m/e72f25ff2dc8e8f7a31f30c660e50411de0e2e20_img_3_6524c/640x480.jpg", + "https://www.compass.com/m/e72f25ff2dc8e8f7a31f30c660e50411de0e2e20_img_4_4eaa4/640x480.jpg", + "https://www.compass.com/m/e72f25ff2dc8e8f7a31f30c660e50411de0e2e20_img_5_c36a1/640x480.jpg", + "https://www.compass.com/m/e72f25ff2dc8e8f7a31f30c660e50411de0e2e20_img_6_f95e1/640x480.jpg", + "https://www.compass.com/m/e72f25ff2dc8e8f7a31f30c660e50411de0e2e20_img_7_e5ac6/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/702-S-Director-St-Seattle-WA-98108/1T0B0W_pid/" + }, + { + "listing_id": "2099456968421234601", + "slug": "941-11th-ave-e-unit-3-seattle-wa-98102", + "title": "$2,350,000", + "price": 2350000, + "is_rent": false, + "street": "941 11th Avenue East, Unit 3", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98102", + "beds": 2, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 2121, + "latitude": 47.62802689999999, + "longitude": -122.3183004, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/111a009dc2eec77e098781aee372eaefee12b142_img_0_fa981", + "gallery_uuids": [ + "legacy/111a009dc2eec77e098781aee372eaefee12b142_img_0_fa981", + "legacy/111a009dc2eec77e098781aee372eaefee12b142_img_1_3ca53", + "legacy/111a009dc2eec77e098781aee372eaefee12b142_img_2_f2e5f", + "legacy/111a009dc2eec77e098781aee372eaefee12b142_img_3_eab1c", + "legacy/111a009dc2eec77e098781aee372eaefee12b142_img_4_46a18", + "legacy/111a009dc2eec77e098781aee372eaefee12b142_img_5_69383", + "legacy/111a009dc2eec77e098781aee372eaefee12b142_img_6_9a4b2", + "legacy/111a009dc2eec77e098781aee372eaefee12b142_img_7_4967f" + ], + "gallery_urls": [ + "https://www.compass.com/m/111a009dc2eec77e098781aee372eaefee12b142_img_0_fa981/640x480.jpg", + "https://www.compass.com/m/111a009dc2eec77e098781aee372eaefee12b142_img_1_3ca53/640x480.jpg", + "https://www.compass.com/m/111a009dc2eec77e098781aee372eaefee12b142_img_2_f2e5f/640x480.jpg", + "https://www.compass.com/m/111a009dc2eec77e098781aee372eaefee12b142_img_3_eab1c/640x480.jpg", + "https://www.compass.com/m/111a009dc2eec77e098781aee372eaefee12b142_img_4_46a18/640x480.jpg", + "https://www.compass.com/m/111a009dc2eec77e098781aee372eaefee12b142_img_5_69383/640x480.jpg", + "https://www.compass.com/m/111a009dc2eec77e098781aee372eaefee12b142_img_6_9a4b2/640x480.jpg", + "https://www.compass.com/m/111a009dc2eec77e098781aee372eaefee12b142_img_7_4967f/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/941-11th-Ave-E-Unit-3-Seattle-WA-98102/1SPS60_pid/" + }, + { + "listing_id": "2100185774790250753", + "slug": "5807-55th-ave-ne-unit-b-seattle-wa-98105", + "title": "$749,000", + "price": 749000, + "is_rent": false, + "street": "5807 55th Avenue Northeast, Unit B", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98105", + "beds": 3, + "baths": 4.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1510, + "latitude": 47.6707251, + "longitude": -122.2695716, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Virtual Tour" + ], + "hero_uuid": "legacy/047911df414e465ed40ff271f75cd282fca9c193_img_0_11de5", + "gallery_uuids": [ + "legacy/047911df414e465ed40ff271f75cd282fca9c193_img_0_11de5", + "legacy/047911df414e465ed40ff271f75cd282fca9c193_img_1_9b39f", + "legacy/047911df414e465ed40ff271f75cd282fca9c193_img_2_79422", + "legacy/047911df414e465ed40ff271f75cd282fca9c193_img_3_e83fe", + "legacy/047911df414e465ed40ff271f75cd282fca9c193_img_4_c3218", + "legacy/047911df414e465ed40ff271f75cd282fca9c193_img_5_35f67", + "legacy/047911df414e465ed40ff271f75cd282fca9c193_img_6_fe68d", + "legacy/047911df414e465ed40ff271f75cd282fca9c193_img_7_bcce3" + ], + "gallery_urls": [ + "https://www.compass.com/m/047911df414e465ed40ff271f75cd282fca9c193_img_0_11de5/640x480.jpg", + "https://www.compass.com/m/047911df414e465ed40ff271f75cd282fca9c193_img_1_9b39f/640x480.jpg", + "https://www.compass.com/m/047911df414e465ed40ff271f75cd282fca9c193_img_2_79422/640x480.jpg", + "https://www.compass.com/m/047911df414e465ed40ff271f75cd282fca9c193_img_3_e83fe/640x480.jpg", + "https://www.compass.com/m/047911df414e465ed40ff271f75cd282fca9c193_img_4_c3218/640x480.jpg", + "https://www.compass.com/m/047911df414e465ed40ff271f75cd282fca9c193_img_5_35f67/640x480.jpg", + "https://www.compass.com/m/047911df414e465ed40ff271f75cd282fca9c193_img_6_fe68d/640x480.jpg", + "https://www.compass.com/m/047911df414e465ed40ff271f75cd282fca9c193_img_7_bcce3/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/5807-55th-Ave-NE-Unit-B-Seattle-WA-98105/1RIXOL_pid/" + }, + { + "listing_id": "2100128100690349753", + "slug": "610-27th-ave-e-seattle-wa-98112", + "title": "$1,399,950", + "price": 1399950, + "is_rent": false, + "street": "610 27th Avenue East", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98112", + "beds": 5, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2180, + "latitude": 47.6246671, + "longitude": -122.2973841, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Open: 5/16 10:00AM - 01:00PM" + ], + "hero_uuid": "legacy/1965333192ec23aa16b41923b243fb630d097a38_img_0_b0e2e", + "gallery_uuids": [ + "legacy/1965333192ec23aa16b41923b243fb630d097a38_img_0_b0e2e", + "legacy/1965333192ec23aa16b41923b243fb630d097a38_img_1_4a7dd", + "legacy/1965333192ec23aa16b41923b243fb630d097a38_img_2_73d96", + "legacy/1965333192ec23aa16b41923b243fb630d097a38_img_3_28b73", + "legacy/1965333192ec23aa16b41923b243fb630d097a38_img_4_0ba38", + "legacy/1965333192ec23aa16b41923b243fb630d097a38_img_5_f829b", + "legacy/1965333192ec23aa16b41923b243fb630d097a38_img_6_56715", + "legacy/1965333192ec23aa16b41923b243fb630d097a38_img_7_6e94f" + ], + "gallery_urls": [ + "https://www.compass.com/m/1965333192ec23aa16b41923b243fb630d097a38_img_0_b0e2e/640x480.jpg", + "https://www.compass.com/m/1965333192ec23aa16b41923b243fb630d097a38_img_1_4a7dd/640x480.jpg", + "https://www.compass.com/m/1965333192ec23aa16b41923b243fb630d097a38_img_2_73d96/640x480.jpg", + "https://www.compass.com/m/1965333192ec23aa16b41923b243fb630d097a38_img_3_28b73/640x480.jpg", + "https://www.compass.com/m/1965333192ec23aa16b41923b243fb630d097a38_img_4_0ba38/640x480.jpg", + "https://www.compass.com/m/1965333192ec23aa16b41923b243fb630d097a38_img_5_f829b/640x480.jpg", + "https://www.compass.com/m/1965333192ec23aa16b41923b243fb630d097a38_img_6_56715/640x480.jpg", + "https://www.compass.com/m/1965333192ec23aa16b41923b243fb630d097a38_img_7_6e94f/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/610-27th-Ave-E-Seattle-WA-98112/1RRWJL_pid/" + }, + { + "listing_id": "2100757345972475809", + "slug": "2818-boyer-ave-e-unit-6-seattle-wa-98102", + "title": "$780,000", + "price": 780000, + "is_rent": false, + "street": "2818 Boyer Avenue East, Unit 6", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98102", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 635, + "latitude": 47.6462284, + "longitude": -122.3161973, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Open: 5/14 11:00AM - 01:00PM" + ], + "hero_uuid": "legacy/aa79577552bd7db66e6e89c986c9685b3a6db15b_img_0_48b63", + "gallery_uuids": [ + "legacy/aa79577552bd7db66e6e89c986c9685b3a6db15b_img_0_48b63", + "legacy/aa79577552bd7db66e6e89c986c9685b3a6db15b_img_1_3f2e7", + "legacy/aa79577552bd7db66e6e89c986c9685b3a6db15b_img_2_87d60", + "legacy/aa79577552bd7db66e6e89c986c9685b3a6db15b_img_3_0b4ff", + "legacy/aa79577552bd7db66e6e89c986c9685b3a6db15b_img_4_24d65", + "legacy/aa79577552bd7db66e6e89c986c9685b3a6db15b_img_5_e1a0a", + "legacy/aa79577552bd7db66e6e89c986c9685b3a6db15b_img_6_528d5", + "legacy/aa79577552bd7db66e6e89c986c9685b3a6db15b_img_7_e742f" + ], + "gallery_urls": [ + "https://www.compass.com/m/aa79577552bd7db66e6e89c986c9685b3a6db15b_img_0_48b63/640x480.jpg", + "https://www.compass.com/m/aa79577552bd7db66e6e89c986c9685b3a6db15b_img_1_3f2e7/640x480.jpg", + "https://www.compass.com/m/aa79577552bd7db66e6e89c986c9685b3a6db15b_img_2_87d60/640x480.jpg", + "https://www.compass.com/m/aa79577552bd7db66e6e89c986c9685b3a6db15b_img_3_0b4ff/640x480.jpg", + "https://www.compass.com/m/aa79577552bd7db66e6e89c986c9685b3a6db15b_img_4_24d65/640x480.jpg", + "https://www.compass.com/m/aa79577552bd7db66e6e89c986c9685b3a6db15b_img_5_e1a0a/640x480.jpg", + "https://www.compass.com/m/aa79577552bd7db66e6e89c986c9685b3a6db15b_img_6_528d5/640x480.jpg", + "https://www.compass.com/m/aa79577552bd7db66e6e89c986c9685b3a6db15b_img_7_e742f/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/2818-Boyer-Ave-E-Unit-6-Seattle-WA-98102/1S3XMM_pid/" + }, + { + "listing_id": "2100344984350719249", + "slug": "9823-arrowsmith-ave-s-seattle-wa-98118", + "title": "$899,000", + "price": 899000, + "is_rent": false, + "street": "9823 Arrowsmith Avenue South", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98118", + "beds": 5, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 3060, + "latitude": 47.5134823, + "longitude": -122.2529461, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/fbf586e8169fddcd713dbe7a4f4e770d32c77b9f_img_0_9b364", + "gallery_uuids": [ + "legacy/fbf586e8169fddcd713dbe7a4f4e770d32c77b9f_img_0_9b364", + "legacy/fbf586e8169fddcd713dbe7a4f4e770d32c77b9f_img_1_fee6a", + "legacy/fbf586e8169fddcd713dbe7a4f4e770d32c77b9f_img_2_c2bf9", + "legacy/fbf586e8169fddcd713dbe7a4f4e770d32c77b9f_img_3_2b5f4", + "legacy/fbf586e8169fddcd713dbe7a4f4e770d32c77b9f_img_4_faf99", + "legacy/fbf586e8169fddcd713dbe7a4f4e770d32c77b9f_img_5_5ae68", + "legacy/fbf586e8169fddcd713dbe7a4f4e770d32c77b9f_img_6_e6a57", + "legacy/fbf586e8169fddcd713dbe7a4f4e770d32c77b9f_img_7_451f2" + ], + "gallery_urls": [ + "https://www.compass.com/m/fbf586e8169fddcd713dbe7a4f4e770d32c77b9f_img_0_9b364/640x480.jpg", + "https://www.compass.com/m/fbf586e8169fddcd713dbe7a4f4e770d32c77b9f_img_1_fee6a/640x480.jpg", + "https://www.compass.com/m/fbf586e8169fddcd713dbe7a4f4e770d32c77b9f_img_2_c2bf9/640x480.jpg", + "https://www.compass.com/m/fbf586e8169fddcd713dbe7a4f4e770d32c77b9f_img_3_2b5f4/640x480.jpg", + "https://www.compass.com/m/fbf586e8169fddcd713dbe7a4f4e770d32c77b9f_img_4_faf99/640x480.jpg", + "https://www.compass.com/m/fbf586e8169fddcd713dbe7a4f4e770d32c77b9f_img_5_5ae68/640x480.jpg", + "https://www.compass.com/m/fbf586e8169fddcd713dbe7a4f4e770d32c77b9f_img_6_e6a57/640x480.jpg", + "https://www.compass.com/m/fbf586e8169fddcd713dbe7a4f4e770d32c77b9f_img_7_451f2/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/9823-Arrowsmith-Ave-S-Seattle-WA-98118/1RJ5AN_pid/" + }, + { + "listing_id": "2101682324779622529", + "slug": "3245-45th-ave-sw-seattle-wa-98116", + "title": "$1,295,000", + "price": 1295000, + "is_rent": false, + "street": "3245 45th Avenue Southwest", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98116", + "beds": 4, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 2195, + "latitude": 47.574359, + "longitude": -122.3897049, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/6dce7d0b034970970ad4086418f95966d6137fd0_img_0_231a0", + "gallery_uuids": [ + "legacy/6dce7d0b034970970ad4086418f95966d6137fd0_img_0_231a0", + "legacy/6dce7d0b034970970ad4086418f95966d6137fd0_img_1_81a1a", + "legacy/6dce7d0b034970970ad4086418f95966d6137fd0_img_2_a1657", + "legacy/6dce7d0b034970970ad4086418f95966d6137fd0_img_3_7c6e6", + "legacy/6dce7d0b034970970ad4086418f95966d6137fd0_img_4_809d8", + "legacy/6dce7d0b034970970ad4086418f95966d6137fd0_img_5_f3c18", + "legacy/6dce7d0b034970970ad4086418f95966d6137fd0_img_6_a3270", + "legacy/6dce7d0b034970970ad4086418f95966d6137fd0_img_7_84976" + ], + "gallery_urls": [ + "https://www.compass.com/m/6dce7d0b034970970ad4086418f95966d6137fd0_img_0_231a0/640x480.jpg", + "https://www.compass.com/m/6dce7d0b034970970ad4086418f95966d6137fd0_img_1_81a1a/640x480.jpg", + "https://www.compass.com/m/6dce7d0b034970970ad4086418f95966d6137fd0_img_2_a1657/640x480.jpg", + "https://www.compass.com/m/6dce7d0b034970970ad4086418f95966d6137fd0_img_3_7c6e6/640x480.jpg", + "https://www.compass.com/m/6dce7d0b034970970ad4086418f95966d6137fd0_img_4_809d8/640x480.jpg", + "https://www.compass.com/m/6dce7d0b034970970ad4086418f95966d6137fd0_img_5_f3c18/640x480.jpg", + "https://www.compass.com/m/6dce7d0b034970970ad4086418f95966d6137fd0_img_6_a3270/640x480.jpg", + "https://www.compass.com/m/6dce7d0b034970970ad4086418f95966d6137fd0_img_7_84976/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/3245-45th-Ave-SW-Seattle-WA-98116/1RQ9JG_pid/" + }, + { + "listing_id": "2100281232280226201", + "slug": "5960-31st-ave-sw-seattle-wa-98126", + "title": "$850,000", + "price": 850000, + "is_rent": false, + "street": "5960 31st Avenue Southwest", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98126", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1780, + "latitude": 47.5486505, + "longitude": -122.3719416, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/d4a3c77a939f8e67ca847aa9ed73764c35a61091_img_0_3b100", + "gallery_uuids": [ + "legacy/d4a3c77a939f8e67ca847aa9ed73764c35a61091_img_0_3b100", + "legacy/d4a3c77a939f8e67ca847aa9ed73764c35a61091_img_1_3c047", + "legacy/d4a3c77a939f8e67ca847aa9ed73764c35a61091_img_2_25f8e", + "legacy/d4a3c77a939f8e67ca847aa9ed73764c35a61091_img_3_8f025", + "legacy/d4a3c77a939f8e67ca847aa9ed73764c35a61091_img_4_0f06c", + "legacy/d4a3c77a939f8e67ca847aa9ed73764c35a61091_img_5_5e95f", + "legacy/d4a3c77a939f8e67ca847aa9ed73764c35a61091_img_6_d31c0", + "legacy/d4a3c77a939f8e67ca847aa9ed73764c35a61091_img_7_1c529" + ], + "gallery_urls": [ + "https://www.compass.com/m/d4a3c77a939f8e67ca847aa9ed73764c35a61091_img_0_3b100/640x480.jpg", + "https://www.compass.com/m/d4a3c77a939f8e67ca847aa9ed73764c35a61091_img_1_3c047/640x480.jpg", + "https://www.compass.com/m/d4a3c77a939f8e67ca847aa9ed73764c35a61091_img_2_25f8e/640x480.jpg", + "https://www.compass.com/m/d4a3c77a939f8e67ca847aa9ed73764c35a61091_img_3_8f025/640x480.jpg", + "https://www.compass.com/m/d4a3c77a939f8e67ca847aa9ed73764c35a61091_img_4_0f06c/640x480.jpg", + "https://www.compass.com/m/d4a3c77a939f8e67ca847aa9ed73764c35a61091_img_5_5e95f/640x480.jpg", + "https://www.compass.com/m/d4a3c77a939f8e67ca847aa9ed73764c35a61091_img_6_d31c0/640x480.jpg", + "https://www.compass.com/m/d4a3c77a939f8e67ca847aa9ed73764c35a61091_img_7_1c529/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/5960-31st-Ave-SW-Seattle-WA-98126/1SCNB8_pid/" + }, + { + "listing_id": "2101271106214428489", + "slug": "3402-48th-ave-sw-seattle-wa-98116", + "title": "$949,000", + "price": 949000, + "is_rent": false, + "street": "3402 48th Avenue Southwest", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98116", + "beds": 3, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1660, + "latitude": 47.5736728, + "longitude": -122.3931237, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/18a2a7e3f53cb8866b042da827de7a08e5f9af5b_img_0_3632a", + "gallery_uuids": [ + "legacy/18a2a7e3f53cb8866b042da827de7a08e5f9af5b_img_0_3632a", + "legacy/18a2a7e3f53cb8866b042da827de7a08e5f9af5b_img_1_2ca83", + "legacy/18a2a7e3f53cb8866b042da827de7a08e5f9af5b_img_2_3c189", + "legacy/18a2a7e3f53cb8866b042da827de7a08e5f9af5b_img_3_c78dc", + "legacy/18a2a7e3f53cb8866b042da827de7a08e5f9af5b_img_4_80d41", + "legacy/18a2a7e3f53cb8866b042da827de7a08e5f9af5b_img_5_e0bed", + "legacy/18a2a7e3f53cb8866b042da827de7a08e5f9af5b_img_6_bb25d", + "legacy/18a2a7e3f53cb8866b042da827de7a08e5f9af5b_img_7_4c43f" + ], + "gallery_urls": [ + "https://www.compass.com/m/18a2a7e3f53cb8866b042da827de7a08e5f9af5b_img_0_3632a/640x480.jpg", + "https://www.compass.com/m/18a2a7e3f53cb8866b042da827de7a08e5f9af5b_img_1_2ca83/640x480.jpg", + "https://www.compass.com/m/18a2a7e3f53cb8866b042da827de7a08e5f9af5b_img_2_3c189/640x480.jpg", + "https://www.compass.com/m/18a2a7e3f53cb8866b042da827de7a08e5f9af5b_img_3_c78dc/640x480.jpg", + "https://www.compass.com/m/18a2a7e3f53cb8866b042da827de7a08e5f9af5b_img_4_80d41/640x480.jpg", + "https://www.compass.com/m/18a2a7e3f53cb8866b042da827de7a08e5f9af5b_img_5_e0bed/640x480.jpg", + "https://www.compass.com/m/18a2a7e3f53cb8866b042da827de7a08e5f9af5b_img_6_bb25d/640x480.jpg", + "https://www.compass.com/m/18a2a7e3f53cb8866b042da827de7a08e5f9af5b_img_7_4c43f/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/3402-48th-Ave-SW-Seattle-WA-98116/1SXVD3_pid/" + }, + { + "listing_id": "2100390728305882073", + "slug": "300-virginia-st-unit-1108-seattle-wa-98101", + "title": "$595,000", + "price": 595000, + "is_rent": false, + "street": "300 Virginia Street, Unit 1108", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98101", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 548, + "latitude": 47.6128082, + "longitude": -122.340875, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/12b06e554fb6d05df56d9a8dc4d0e0f6af49b1a8_img_0_9e758", + "gallery_uuids": [ + "legacy/12b06e554fb6d05df56d9a8dc4d0e0f6af49b1a8_img_0_9e758", + "legacy/12b06e554fb6d05df56d9a8dc4d0e0f6af49b1a8_img_1_8c640", + "legacy/12b06e554fb6d05df56d9a8dc4d0e0f6af49b1a8_img_2_b9d7c", + "legacy/12b06e554fb6d05df56d9a8dc4d0e0f6af49b1a8_img_3_a7606", + "legacy/12b06e554fb6d05df56d9a8dc4d0e0f6af49b1a8_img_4_bd8cf", + "legacy/12b06e554fb6d05df56d9a8dc4d0e0f6af49b1a8_img_5_00be6", + "legacy/12b06e554fb6d05df56d9a8dc4d0e0f6af49b1a8_img_6_683bc", + "legacy/12b06e554fb6d05df56d9a8dc4d0e0f6af49b1a8_img_7_21d26" + ], + "gallery_urls": [ + "https://www.compass.com/m/12b06e554fb6d05df56d9a8dc4d0e0f6af49b1a8_img_0_9e758/640x480.jpg", + "https://www.compass.com/m/12b06e554fb6d05df56d9a8dc4d0e0f6af49b1a8_img_1_8c640/640x480.jpg", + "https://www.compass.com/m/12b06e554fb6d05df56d9a8dc4d0e0f6af49b1a8_img_2_b9d7c/640x480.jpg", + "https://www.compass.com/m/12b06e554fb6d05df56d9a8dc4d0e0f6af49b1a8_img_3_a7606/640x480.jpg", + "https://www.compass.com/m/12b06e554fb6d05df56d9a8dc4d0e0f6af49b1a8_img_4_bd8cf/640x480.jpg", + "https://www.compass.com/m/12b06e554fb6d05df56d9a8dc4d0e0f6af49b1a8_img_5_00be6/640x480.jpg", + "https://www.compass.com/m/12b06e554fb6d05df56d9a8dc4d0e0f6af49b1a8_img_6_683bc/640x480.jpg", + "https://www.compass.com/m/12b06e554fb6d05df56d9a8dc4d0e0f6af49b1a8_img_7_21d26/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/300-Virginia-St-Unit-1108-Seattle-WA-98101/27FF2V_pid/" + }, + { + "listing_id": "2101026366629892833", + "slug": "6735-alonzo-ave-nw-unit-a-seattle-wa-98117", + "title": "$1,075,000", + "price": 1075000, + "is_rent": false, + "street": "6735 Alonzo Avenue Northwest, Unit A", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98117", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1943, + "latitude": 47.678847, + "longitude": -122.37545, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Virtual Tour" + ], + "hero_uuid": "legacy/7477f5aa532534b17905ceed337fdb2abc3f7b16_img_0_0243c", + "gallery_uuids": [ + "legacy/7477f5aa532534b17905ceed337fdb2abc3f7b16_img_0_0243c", + "legacy/7477f5aa532534b17905ceed337fdb2abc3f7b16_img_1_716e7", + "legacy/7477f5aa532534b17905ceed337fdb2abc3f7b16_img_2_a6b2a", + "legacy/7477f5aa532534b17905ceed337fdb2abc3f7b16_img_3_e0128", + "legacy/7477f5aa532534b17905ceed337fdb2abc3f7b16_img_4_e0485", + "legacy/7477f5aa532534b17905ceed337fdb2abc3f7b16_img_5_b25a2", + "legacy/7477f5aa532534b17905ceed337fdb2abc3f7b16_img_6_66e93", + "legacy/7477f5aa532534b17905ceed337fdb2abc3f7b16_img_7_df76e" + ], + "gallery_urls": [ + "https://www.compass.com/m/7477f5aa532534b17905ceed337fdb2abc3f7b16_img_0_0243c/640x480.jpg", + "https://www.compass.com/m/7477f5aa532534b17905ceed337fdb2abc3f7b16_img_1_716e7/640x480.jpg", + "https://www.compass.com/m/7477f5aa532534b17905ceed337fdb2abc3f7b16_img_2_a6b2a/640x480.jpg", + "https://www.compass.com/m/7477f5aa532534b17905ceed337fdb2abc3f7b16_img_3_e0128/640x480.jpg", + "https://www.compass.com/m/7477f5aa532534b17905ceed337fdb2abc3f7b16_img_4_e0485/640x480.jpg", + "https://www.compass.com/m/7477f5aa532534b17905ceed337fdb2abc3f7b16_img_5_b25a2/640x480.jpg", + "https://www.compass.com/m/7477f5aa532534b17905ceed337fdb2abc3f7b16_img_6_66e93/640x480.jpg", + "https://www.compass.com/m/7477f5aa532534b17905ceed337fdb2abc3f7b16_img_7_df76e/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/6735-Alonzo-Ave-NW-Unit-A-Seattle-WA-98117/1SSAGQ_pid/" + }, + { + "listing_id": "2100222781369429673", + "slug": "2400-aurora-ave-n-unit-210-seattle-wa-98109", + "title": "$1,595,000", + "price": 1595000, + "is_rent": false, + "street": "2400 Aurora Avenue North, Unit 210", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98109", + "beds": 3, + "baths": 3.0, + "baths_full": 1, + "baths_half": null, + "sqft": 2517, + "latitude": 47.640245, + "longitude": -122.345754, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Open: 5/12 10:30AM - 12:30PM" + ], + "hero_uuid": "legacy/888d15a577f84ab7f8d44d3d4db9cc8fa85e8469_img_0_248ce", + "gallery_uuids": [ + "legacy/888d15a577f84ab7f8d44d3d4db9cc8fa85e8469_img_0_248ce", + "legacy/888d15a577f84ab7f8d44d3d4db9cc8fa85e8469_img_1_44214", + "legacy/888d15a577f84ab7f8d44d3d4db9cc8fa85e8469_img_2_00c80", + "legacy/888d15a577f84ab7f8d44d3d4db9cc8fa85e8469_img_3_4303d", + "legacy/888d15a577f84ab7f8d44d3d4db9cc8fa85e8469_img_4_e011e", + "legacy/888d15a577f84ab7f8d44d3d4db9cc8fa85e8469_img_5_cc001", + "legacy/888d15a577f84ab7f8d44d3d4db9cc8fa85e8469_img_6_aceb7", + "legacy/888d15a577f84ab7f8d44d3d4db9cc8fa85e8469_img_7_ec2db" + ], + "gallery_urls": [ + "https://www.compass.com/m/888d15a577f84ab7f8d44d3d4db9cc8fa85e8469_img_0_248ce/640x480.jpg", + "https://www.compass.com/m/888d15a577f84ab7f8d44d3d4db9cc8fa85e8469_img_1_44214/640x480.jpg", + "https://www.compass.com/m/888d15a577f84ab7f8d44d3d4db9cc8fa85e8469_img_2_00c80/640x480.jpg", + "https://www.compass.com/m/888d15a577f84ab7f8d44d3d4db9cc8fa85e8469_img_3_4303d/640x480.jpg", + "https://www.compass.com/m/888d15a577f84ab7f8d44d3d4db9cc8fa85e8469_img_4_e011e/640x480.jpg", + "https://www.compass.com/m/888d15a577f84ab7f8d44d3d4db9cc8fa85e8469_img_5_cc001/640x480.jpg", + "https://www.compass.com/m/888d15a577f84ab7f8d44d3d4db9cc8fa85e8469_img_6_aceb7/640x480.jpg", + "https://www.compass.com/m/888d15a577f84ab7f8d44d3d4db9cc8fa85e8469_img_7_ec2db/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/2400-Aurora-Ave-N-Unit-210-Seattle-WA-98109/1RI3J0_pid/" + }, + { + "listing_id": "2100118003809190737", + "slug": "815-2nd-ave-n-unit-a-seattle-wa-98109", + "title": "$995,000", + "price": 995000, + "is_rent": false, + "street": "815 2nd Avenue North, Unit A", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98109", + "beds": 3, + "baths": 3.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1820, + "latitude": 47.626822, + "longitude": -122.353286, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/84b70ac42cf4b68f197d44e76eaa99601d8ed7a1_img_0_e4e90", + "gallery_uuids": [ + "legacy/84b70ac42cf4b68f197d44e76eaa99601d8ed7a1_img_0_e4e90", + "legacy/84b70ac42cf4b68f197d44e76eaa99601d8ed7a1_img_1_dbc80", + "legacy/84b70ac42cf4b68f197d44e76eaa99601d8ed7a1_img_2_5e44c", + "legacy/84b70ac42cf4b68f197d44e76eaa99601d8ed7a1_img_3_32927", + "legacy/84b70ac42cf4b68f197d44e76eaa99601d8ed7a1_img_4_efd2f", + "legacy/84b70ac42cf4b68f197d44e76eaa99601d8ed7a1_img_5_76979", + "legacy/84b70ac42cf4b68f197d44e76eaa99601d8ed7a1_img_6_d7707", + "legacy/84b70ac42cf4b68f197d44e76eaa99601d8ed7a1_img_7_5a153" + ], + "gallery_urls": [ + "https://www.compass.com/m/84b70ac42cf4b68f197d44e76eaa99601d8ed7a1_img_0_e4e90/640x480.jpg", + "https://www.compass.com/m/84b70ac42cf4b68f197d44e76eaa99601d8ed7a1_img_1_dbc80/640x480.jpg", + "https://www.compass.com/m/84b70ac42cf4b68f197d44e76eaa99601d8ed7a1_img_2_5e44c/640x480.jpg", + "https://www.compass.com/m/84b70ac42cf4b68f197d44e76eaa99601d8ed7a1_img_3_32927/640x480.jpg", + "https://www.compass.com/m/84b70ac42cf4b68f197d44e76eaa99601d8ed7a1_img_4_efd2f/640x480.jpg", + "https://www.compass.com/m/84b70ac42cf4b68f197d44e76eaa99601d8ed7a1_img_5_76979/640x480.jpg", + "https://www.compass.com/m/84b70ac42cf4b68f197d44e76eaa99601d8ed7a1_img_6_d7707/640x480.jpg", + "https://www.compass.com/m/84b70ac42cf4b68f197d44e76eaa99601d8ed7a1_img_7_5a153/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/815-2nd-Ave-N-Unit-A-Seattle-WA-98109/26SCFH_pid/" + }, + { + "listing_id": "2100089700579120961", + "slug": "11218-35th-ave-sw-seattle-wa-98146", + "title": "$650,000", + "price": 650000, + "is_rent": false, + "street": "11218 35th Avenue Southwest", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98146", + "beds": 4, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 2200, + "latitude": 47.5021932, + "longitude": -122.3758235, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/5e563e196bbe7aa567f36dbd94cf15c9f6e2ed7d_img_0_71de3", + "gallery_uuids": [ + "legacy/5e563e196bbe7aa567f36dbd94cf15c9f6e2ed7d_img_0_71de3", + "legacy/5e563e196bbe7aa567f36dbd94cf15c9f6e2ed7d_img_1_33b0c", + "legacy/5e563e196bbe7aa567f36dbd94cf15c9f6e2ed7d_img_2_2692e", + "legacy/5e563e196bbe7aa567f36dbd94cf15c9f6e2ed7d_img_3_af356", + "legacy/5e563e196bbe7aa567f36dbd94cf15c9f6e2ed7d_img_4_27b98", + "legacy/5e563e196bbe7aa567f36dbd94cf15c9f6e2ed7d_img_5_8713d", + "legacy/5e563e196bbe7aa567f36dbd94cf15c9f6e2ed7d_img_6_bc0bc", + "legacy/5e563e196bbe7aa567f36dbd94cf15c9f6e2ed7d_img_7_ea18a" + ], + "gallery_urls": [ + "https://www.compass.com/m/5e563e196bbe7aa567f36dbd94cf15c9f6e2ed7d_img_0_71de3/640x480.jpg", + "https://www.compass.com/m/5e563e196bbe7aa567f36dbd94cf15c9f6e2ed7d_img_1_33b0c/640x480.jpg", + "https://www.compass.com/m/5e563e196bbe7aa567f36dbd94cf15c9f6e2ed7d_img_2_2692e/640x480.jpg", + "https://www.compass.com/m/5e563e196bbe7aa567f36dbd94cf15c9f6e2ed7d_img_3_af356/640x480.jpg", + "https://www.compass.com/m/5e563e196bbe7aa567f36dbd94cf15c9f6e2ed7d_img_4_27b98/640x480.jpg", + "https://www.compass.com/m/5e563e196bbe7aa567f36dbd94cf15c9f6e2ed7d_img_5_8713d/640x480.jpg", + "https://www.compass.com/m/5e563e196bbe7aa567f36dbd94cf15c9f6e2ed7d_img_6_bc0bc/640x480.jpg", + "https://www.compass.com/m/5e563e196bbe7aa567f36dbd94cf15c9f6e2ed7d_img_7_ea18a/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/11218-35th-Ave-SW-Seattle-WA-98146/1RJZFR_pid/" + }, + { + "listing_id": "2100335854679972441", + "slug": "12569-37th-ave-ne-seattle-wa-98125", + "title": "$1,194,000", + "price": 1194000, + "is_rent": false, + "street": "12569 37th Avenue Northeast", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98125", + "beds": 4, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2500, + "latitude": 47.721125, + "longitude": -122.2893185, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/1e914dfe3e71d9a02d5156ea453bf14b0195c501_img_0_3eb0f", + "gallery_uuids": [ + "legacy/1e914dfe3e71d9a02d5156ea453bf14b0195c501_img_0_3eb0f", + "legacy/1e914dfe3e71d9a02d5156ea453bf14b0195c501_img_1_54727", + "legacy/1e914dfe3e71d9a02d5156ea453bf14b0195c501_img_2_3e5e3", + "legacy/1e914dfe3e71d9a02d5156ea453bf14b0195c501_img_3_12024", + "legacy/1e914dfe3e71d9a02d5156ea453bf14b0195c501_img_4_7efc0", + "legacy/1e914dfe3e71d9a02d5156ea453bf14b0195c501_img_5_b4faa", + "legacy/1e914dfe3e71d9a02d5156ea453bf14b0195c501_img_6_2a5a3", + "legacy/1e914dfe3e71d9a02d5156ea453bf14b0195c501_img_7_0a138" + ], + "gallery_urls": [ + "https://www.compass.com/m/1e914dfe3e71d9a02d5156ea453bf14b0195c501_img_0_3eb0f/640x480.jpg", + "https://www.compass.com/m/1e914dfe3e71d9a02d5156ea453bf14b0195c501_img_1_54727/640x480.jpg", + "https://www.compass.com/m/1e914dfe3e71d9a02d5156ea453bf14b0195c501_img_2_3e5e3/640x480.jpg", + "https://www.compass.com/m/1e914dfe3e71d9a02d5156ea453bf14b0195c501_img_3_12024/640x480.jpg", + "https://www.compass.com/m/1e914dfe3e71d9a02d5156ea453bf14b0195c501_img_4_7efc0/640x480.jpg", + "https://www.compass.com/m/1e914dfe3e71d9a02d5156ea453bf14b0195c501_img_5_b4faa/640x480.jpg", + "https://www.compass.com/m/1e914dfe3e71d9a02d5156ea453bf14b0195c501_img_6_2a5a3/640x480.jpg", + "https://www.compass.com/m/1e914dfe3e71d9a02d5156ea453bf14b0195c501_img_7_0a138/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/12569-37th-Ave-NE-Seattle-WA-98125/1QIR17_pid/" + }, + { + "listing_id": "2100231674963141689", + "slug": "2040-13th-ave-w-unit-33-seattle-wa-98119", + "title": "$625,000", + "price": 625000, + "is_rent": false, + "street": "2040 13th Avenue West, Unit 33", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98119", + "beds": 2, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 976, + "latitude": 47.6379484, + "longitude": -122.3735173, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Virtual Tour" + ], + "hero_uuid": "legacy/44c39f27688b52268d7b3743b3a97af618e5d9c6_img_0_03c35", + "gallery_uuids": [ + "legacy/44c39f27688b52268d7b3743b3a97af618e5d9c6_img_0_03c35", + "legacy/44c39f27688b52268d7b3743b3a97af618e5d9c6_img_1_76e03", + "legacy/44c39f27688b52268d7b3743b3a97af618e5d9c6_img_2_50c78", + "legacy/44c39f27688b52268d7b3743b3a97af618e5d9c6_img_3_2abee", + "legacy/44c39f27688b52268d7b3743b3a97af618e5d9c6_img_4_affbe", + "legacy/44c39f27688b52268d7b3743b3a97af618e5d9c6_img_5_171d5", + "legacy/44c39f27688b52268d7b3743b3a97af618e5d9c6_img_6_e7edf", + "legacy/44c39f27688b52268d7b3743b3a97af618e5d9c6_img_7_2f8c1" + ], + "gallery_urls": [ + "https://www.compass.com/m/44c39f27688b52268d7b3743b3a97af618e5d9c6_img_0_03c35/640x480.jpg", + "https://www.compass.com/m/44c39f27688b52268d7b3743b3a97af618e5d9c6_img_1_76e03/640x480.jpg", + "https://www.compass.com/m/44c39f27688b52268d7b3743b3a97af618e5d9c6_img_2_50c78/640x480.jpg", + "https://www.compass.com/m/44c39f27688b52268d7b3743b3a97af618e5d9c6_img_3_2abee/640x480.jpg", + "https://www.compass.com/m/44c39f27688b52268d7b3743b3a97af618e5d9c6_img_4_affbe/640x480.jpg", + "https://www.compass.com/m/44c39f27688b52268d7b3743b3a97af618e5d9c6_img_5_171d5/640x480.jpg", + "https://www.compass.com/m/44c39f27688b52268d7b3743b3a97af618e5d9c6_img_6_e7edf/640x480.jpg", + "https://www.compass.com/m/44c39f27688b52268d7b3743b3a97af618e5d9c6_img_7_2f8c1/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/2040-13th-Ave-W-Unit-33-Seattle-WA-98119/1SUWPE_pid/" + }, + { + "listing_id": "2100437013713821513", + "slug": "3333-wallingford-ave-n-unit-203-seattle-wa-98103", + "title": "$615,000", + "price": 615000, + "is_rent": false, + "street": "3333 Wallingford Avenue North, Unit 203", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98103", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1079, + "latitude": 47.64787459999999, + "longitude": -122.3371569, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Virtual Tour" + ], + "hero_uuid": "legacy/ddd21faaa4c69f5b1917816296432f246c85d220_img_0_64a59", + "gallery_uuids": [ + "legacy/ddd21faaa4c69f5b1917816296432f246c85d220_img_0_64a59", + "legacy/ddd21faaa4c69f5b1917816296432f246c85d220_img_1_5365f", + "legacy/ddd21faaa4c69f5b1917816296432f246c85d220_img_2_1f131", + "legacy/ddd21faaa4c69f5b1917816296432f246c85d220_img_3_b5242", + "legacy/ddd21faaa4c69f5b1917816296432f246c85d220_img_4_883dc", + "legacy/ddd21faaa4c69f5b1917816296432f246c85d220_img_5_c3229", + "legacy/ddd21faaa4c69f5b1917816296432f246c85d220_img_6_8ccf0", + "legacy/ddd21faaa4c69f5b1917816296432f246c85d220_img_7_e6619" + ], + "gallery_urls": [ + "https://www.compass.com/m/ddd21faaa4c69f5b1917816296432f246c85d220_img_0_64a59/640x480.jpg", + "https://www.compass.com/m/ddd21faaa4c69f5b1917816296432f246c85d220_img_1_5365f/640x480.jpg", + "https://www.compass.com/m/ddd21faaa4c69f5b1917816296432f246c85d220_img_2_1f131/640x480.jpg", + "https://www.compass.com/m/ddd21faaa4c69f5b1917816296432f246c85d220_img_3_b5242/640x480.jpg", + "https://www.compass.com/m/ddd21faaa4c69f5b1917816296432f246c85d220_img_4_883dc/640x480.jpg", + "https://www.compass.com/m/ddd21faaa4c69f5b1917816296432f246c85d220_img_5_c3229/640x480.jpg", + "https://www.compass.com/m/ddd21faaa4c69f5b1917816296432f246c85d220_img_6_8ccf0/640x480.jpg", + "https://www.compass.com/m/ddd21faaa4c69f5b1917816296432f246c85d220_img_7_e6619/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/3333-Wallingford-Ave-N-Unit-203-Seattle-WA-98103/1SQ92N_pid/" + }, + { + "listing_id": "2099346785984239625", + "slug": "8809-42nd-ave-sw-seattle-wa-98136", + "title": "$2,250,000", + "price": 2250000, + "is_rent": false, + "street": "8809 42nd Avenue Southwest", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98136", + "beds": 4, + "baths": 3.0, + "baths_full": 1, + "baths_half": null, + "sqft": 3050, + "latitude": 47.5249062, + "longitude": -122.3857876, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Virtual Tour" + ], + "hero_uuid": "legacy/3b94d69dda8c4f97d66ec0c24296d20e765445ae_img_0_1a12b", + "gallery_uuids": [ + "legacy/3b94d69dda8c4f97d66ec0c24296d20e765445ae_img_0_1a12b", + "legacy/3b94d69dda8c4f97d66ec0c24296d20e765445ae_img_1_e88b9", + "legacy/3b94d69dda8c4f97d66ec0c24296d20e765445ae_img_2_2a9de", + "legacy/3b94d69dda8c4f97d66ec0c24296d20e765445ae_img_3_e32d3", + "legacy/3b94d69dda8c4f97d66ec0c24296d20e765445ae_img_4_62f5f", + "legacy/3b94d69dda8c4f97d66ec0c24296d20e765445ae_img_5_c527d", + "legacy/3b94d69dda8c4f97d66ec0c24296d20e765445ae_img_6_88abb", + "legacy/3b94d69dda8c4f97d66ec0c24296d20e765445ae_img_7_cb22a" + ], + "gallery_urls": [ + "https://www.compass.com/m/3b94d69dda8c4f97d66ec0c24296d20e765445ae_img_0_1a12b/640x480.jpg", + "https://www.compass.com/m/3b94d69dda8c4f97d66ec0c24296d20e765445ae_img_1_e88b9/640x480.jpg", + "https://www.compass.com/m/3b94d69dda8c4f97d66ec0c24296d20e765445ae_img_2_2a9de/640x480.jpg", + "https://www.compass.com/m/3b94d69dda8c4f97d66ec0c24296d20e765445ae_img_3_e32d3/640x480.jpg", + "https://www.compass.com/m/3b94d69dda8c4f97d66ec0c24296d20e765445ae_img_4_62f5f/640x480.jpg", + "https://www.compass.com/m/3b94d69dda8c4f97d66ec0c24296d20e765445ae_img_5_c527d/640x480.jpg", + "https://www.compass.com/m/3b94d69dda8c4f97d66ec0c24296d20e765445ae_img_6_88abb/640x480.jpg", + "https://www.compass.com/m/3b94d69dda8c4f97d66ec0c24296d20e765445ae_img_7_cb22a/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/8809-42nd-Ave-SW-Seattle-WA-98136/1SS13S_pid/" + }, + { + "listing_id": "2100132165280906185", + "slug": "5519-18th-ave-s-seattle-wa-98108", + "title": "$849,000", + "price": 849000, + "is_rent": false, + "street": "5519 18th Avenue South", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98108", + "beds": 4, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1970, + "latitude": 47.5528428, + "longitude": -122.3101603, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Virtual Tour" + ], + "hero_uuid": "legacy/2be9d7ccdf8f1f59d206fcf6988f912f540ee334_img_0_b4184", + "gallery_uuids": [ + "legacy/2be9d7ccdf8f1f59d206fcf6988f912f540ee334_img_0_b4184", + "legacy/2be9d7ccdf8f1f59d206fcf6988f912f540ee334_img_1_9be9d", + "legacy/2be9d7ccdf8f1f59d206fcf6988f912f540ee334_img_2_b1cf4", + "legacy/2be9d7ccdf8f1f59d206fcf6988f912f540ee334_img_3_fd5ec", + "legacy/2be9d7ccdf8f1f59d206fcf6988f912f540ee334_img_4_81ff4", + "legacy/2be9d7ccdf8f1f59d206fcf6988f912f540ee334_img_5_4e029", + "legacy/2be9d7ccdf8f1f59d206fcf6988f912f540ee334_img_6_6e248", + "legacy/2be9d7ccdf8f1f59d206fcf6988f912f540ee334_img_7_4b339" + ], + "gallery_urls": [ + "https://www.compass.com/m/2be9d7ccdf8f1f59d206fcf6988f912f540ee334_img_0_b4184/640x480.jpg", + "https://www.compass.com/m/2be9d7ccdf8f1f59d206fcf6988f912f540ee334_img_1_9be9d/640x480.jpg", + "https://www.compass.com/m/2be9d7ccdf8f1f59d206fcf6988f912f540ee334_img_2_b1cf4/640x480.jpg", + "https://www.compass.com/m/2be9d7ccdf8f1f59d206fcf6988f912f540ee334_img_3_fd5ec/640x480.jpg", + "https://www.compass.com/m/2be9d7ccdf8f1f59d206fcf6988f912f540ee334_img_4_81ff4/640x480.jpg", + "https://www.compass.com/m/2be9d7ccdf8f1f59d206fcf6988f912f540ee334_img_5_4e029/640x480.jpg", + "https://www.compass.com/m/2be9d7ccdf8f1f59d206fcf6988f912f540ee334_img_6_6e248/640x480.jpg", + "https://www.compass.com/m/2be9d7ccdf8f1f59d206fcf6988f912f540ee334_img_7_4b339/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/5519-18th-Ave-S-Seattle-WA-98108/1SA3TH_pid/" + }, + { + "listing_id": "2098698929351071737", + "slug": "300-virginia-st-unit-811-seattle-wa-98101", + "title": "$595,000", + "price": 595000, + "is_rent": false, + "street": "300 Virginia Street, Unit 811", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98101", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 586, + "latitude": 47.6128082, + "longitude": -122.340875, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/aed8fb6e3a64c6ec39a225f37264d56775776cf7_img_0_9e758", + "gallery_uuids": [ + "legacy/aed8fb6e3a64c6ec39a225f37264d56775776cf7_img_0_9e758", + "legacy/aed8fb6e3a64c6ec39a225f37264d56775776cf7_img_1_b9d7c", + "legacy/aed8fb6e3a64c6ec39a225f37264d56775776cf7_img_2_8c640", + "legacy/aed8fb6e3a64c6ec39a225f37264d56775776cf7_img_3_a7606", + "legacy/aed8fb6e3a64c6ec39a225f37264d56775776cf7_img_4_bd8cf", + "legacy/aed8fb6e3a64c6ec39a225f37264d56775776cf7_img_5_00be6", + "legacy/aed8fb6e3a64c6ec39a225f37264d56775776cf7_img_6_683bc", + "legacy/aed8fb6e3a64c6ec39a225f37264d56775776cf7_img_7_67233" + ], + "gallery_urls": [ + "https://www.compass.com/m/aed8fb6e3a64c6ec39a225f37264d56775776cf7_img_0_9e758/640x480.jpg", + "https://www.compass.com/m/aed8fb6e3a64c6ec39a225f37264d56775776cf7_img_1_b9d7c/640x480.jpg", + "https://www.compass.com/m/aed8fb6e3a64c6ec39a225f37264d56775776cf7_img_2_8c640/640x480.jpg", + "https://www.compass.com/m/aed8fb6e3a64c6ec39a225f37264d56775776cf7_img_3_a7606/640x480.jpg", + "https://www.compass.com/m/aed8fb6e3a64c6ec39a225f37264d56775776cf7_img_4_bd8cf/640x480.jpg", + "https://www.compass.com/m/aed8fb6e3a64c6ec39a225f37264d56775776cf7_img_5_00be6/640x480.jpg", + "https://www.compass.com/m/aed8fb6e3a64c6ec39a225f37264d56775776cf7_img_6_683bc/640x480.jpg", + "https://www.compass.com/m/aed8fb6e3a64c6ec39a225f37264d56775776cf7_img_7_67233/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/300-Virginia-St-Unit-811-Seattle-WA-98101/27ET0L_pid/" + }, + { + "listing_id": "2100224755796085721", + "slug": "7541-seward-park-ave-s-seattle-wa-98118", + "title": "$1,725,000", + "price": 1725000, + "is_rent": false, + "street": "7541 Seward Park Avenue South", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98118", + "beds": 5, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2645, + "latitude": 47.5340988, + "longitude": -122.2673912, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/f8d29d3090ae9a9267b0515a9e5c6785f22ecb85_img_0_71319", + "gallery_uuids": [ + "legacy/f8d29d3090ae9a9267b0515a9e5c6785f22ecb85_img_0_71319", + "legacy/f8d29d3090ae9a9267b0515a9e5c6785f22ecb85_img_1_394f2", + "legacy/f8d29d3090ae9a9267b0515a9e5c6785f22ecb85_img_2_3bc8c", + "legacy/f8d29d3090ae9a9267b0515a9e5c6785f22ecb85_img_3_5c385", + "legacy/f8d29d3090ae9a9267b0515a9e5c6785f22ecb85_img_4_7fbe0", + "legacy/f8d29d3090ae9a9267b0515a9e5c6785f22ecb85_img_5_4cfd8", + "legacy/f8d29d3090ae9a9267b0515a9e5c6785f22ecb85_img_6_85234", + "legacy/f8d29d3090ae9a9267b0515a9e5c6785f22ecb85_img_7_28765" + ], + "gallery_urls": [ + "https://www.compass.com/m/f8d29d3090ae9a9267b0515a9e5c6785f22ecb85_img_0_71319/640x480.jpg", + "https://www.compass.com/m/f8d29d3090ae9a9267b0515a9e5c6785f22ecb85_img_1_394f2/640x480.jpg", + "https://www.compass.com/m/f8d29d3090ae9a9267b0515a9e5c6785f22ecb85_img_2_3bc8c/640x480.jpg", + "https://www.compass.com/m/f8d29d3090ae9a9267b0515a9e5c6785f22ecb85_img_3_5c385/640x480.jpg", + "https://www.compass.com/m/f8d29d3090ae9a9267b0515a9e5c6785f22ecb85_img_4_7fbe0/640x480.jpg", + "https://www.compass.com/m/f8d29d3090ae9a9267b0515a9e5c6785f22ecb85_img_5_4cfd8/640x480.jpg", + "https://www.compass.com/m/f8d29d3090ae9a9267b0515a9e5c6785f22ecb85_img_6_85234/640x480.jpg", + "https://www.compass.com/m/f8d29d3090ae9a9267b0515a9e5c6785f22ecb85_img_7_28765/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/7541-Seward-Park-Ave-S-Seattle-WA-98118/1SL24I_pid/" + }, + { + "listing_id": "2098695916221535001", + "slug": "300-virginia-st-unit-809-seattle-wa-98101", + "title": "$1,080,000", + "price": 1080000, + "is_rent": false, + "street": "300 Virginia Street, Unit 809", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98101", + "beds": 2, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 940, + "latitude": 47.6128082, + "longitude": -122.340875, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/1e0b73d275802cf9645513cf5e0bdb177c1be1e5_img_0_9e758", + "gallery_uuids": [ + "legacy/1e0b73d275802cf9645513cf5e0bdb177c1be1e5_img_0_9e758", + "legacy/1e0b73d275802cf9645513cf5e0bdb177c1be1e5_img_1_8c640", + "legacy/1e0b73d275802cf9645513cf5e0bdb177c1be1e5_img_2_b9d7c", + "legacy/1e0b73d275802cf9645513cf5e0bdb177c1be1e5_img_3_a7606", + "legacy/1e0b73d275802cf9645513cf5e0bdb177c1be1e5_img_4_bd8cf", + "legacy/1e0b73d275802cf9645513cf5e0bdb177c1be1e5_img_5_00be6", + "legacy/1e0b73d275802cf9645513cf5e0bdb177c1be1e5_img_6_683bc", + "legacy/1e0b73d275802cf9645513cf5e0bdb177c1be1e5_img_7_cc569" + ], + "gallery_urls": [ + "https://www.compass.com/m/1e0b73d275802cf9645513cf5e0bdb177c1be1e5_img_0_9e758/640x480.jpg", + "https://www.compass.com/m/1e0b73d275802cf9645513cf5e0bdb177c1be1e5_img_1_8c640/640x480.jpg", + "https://www.compass.com/m/1e0b73d275802cf9645513cf5e0bdb177c1be1e5_img_2_b9d7c/640x480.jpg", + "https://www.compass.com/m/1e0b73d275802cf9645513cf5e0bdb177c1be1e5_img_3_a7606/640x480.jpg", + "https://www.compass.com/m/1e0b73d275802cf9645513cf5e0bdb177c1be1e5_img_4_bd8cf/640x480.jpg", + "https://www.compass.com/m/1e0b73d275802cf9645513cf5e0bdb177c1be1e5_img_5_00be6/640x480.jpg", + "https://www.compass.com/m/1e0b73d275802cf9645513cf5e0bdb177c1be1e5_img_6_683bc/640x480.jpg", + "https://www.compass.com/m/1e0b73d275802cf9645513cf5e0bdb177c1be1e5_img_7_cc569/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/300-Virginia-St-Unit-809-Seattle-WA-98101/27ESWS_pid/" + }, + { + "listing_id": "2098744464745260265", + "slug": "362-ward-st-seattle-wa-98109", + "title": "$5,308,000", + "price": 5308000, + "is_rent": false, + "street": "362 Ward Street", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98109", + "beds": 5, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 4420, + "latitude": 47.6282538, + "longitude": -122.3497183, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/53b398ee6bd498203a0d7b7c0c222d7719f4353d_img_0_4ee4e", + "gallery_uuids": [ + "legacy/53b398ee6bd498203a0d7b7c0c222d7719f4353d_img_0_4ee4e", + "legacy/53b398ee6bd498203a0d7b7c0c222d7719f4353d_img_1_e4fd9", + "legacy/53b398ee6bd498203a0d7b7c0c222d7719f4353d_img_2_d04f0", + "legacy/53b398ee6bd498203a0d7b7c0c222d7719f4353d_img_3_6534d", + "legacy/53b398ee6bd498203a0d7b7c0c222d7719f4353d_img_4_54ea3", + "legacy/53b398ee6bd498203a0d7b7c0c222d7719f4353d_img_5_0ae55", + "legacy/53b398ee6bd498203a0d7b7c0c222d7719f4353d_img_6_5f969", + "legacy/53b398ee6bd498203a0d7b7c0c222d7719f4353d_img_7_ff11f" + ], + "gallery_urls": [ + "https://www.compass.com/m/53b398ee6bd498203a0d7b7c0c222d7719f4353d_img_0_4ee4e/640x480.jpg", + "https://www.compass.com/m/53b398ee6bd498203a0d7b7c0c222d7719f4353d_img_1_e4fd9/640x480.jpg", + "https://www.compass.com/m/53b398ee6bd498203a0d7b7c0c222d7719f4353d_img_2_d04f0/640x480.jpg", + "https://www.compass.com/m/53b398ee6bd498203a0d7b7c0c222d7719f4353d_img_3_6534d/640x480.jpg", + "https://www.compass.com/m/53b398ee6bd498203a0d7b7c0c222d7719f4353d_img_4_54ea3/640x480.jpg", + "https://www.compass.com/m/53b398ee6bd498203a0d7b7c0c222d7719f4353d_img_5_0ae55/640x480.jpg", + "https://www.compass.com/m/53b398ee6bd498203a0d7b7c0c222d7719f4353d_img_6_5f969/640x480.jpg", + "https://www.compass.com/m/53b398ee6bd498203a0d7b7c0c222d7719f4353d_img_7_ff11f/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/362-Ward-St-Seattle-WA-98109/1RN8WQ_pid/" + }, + { + "listing_id": "2100342020893986929", + "slug": "8622-17th-ave-ne-seattle-wa-98115", + "title": "$715,000", + "price": 715000, + "is_rent": false, + "street": "8622 17th Avenue Northeast", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98115", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1830, + "latitude": 47.6920037, + "longitude": -122.3092303, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/95bfb2eb362d322e0a0d51f6f7ee583e0f98966d_img_0_dc537", + "gallery_uuids": [ + "legacy/95bfb2eb362d322e0a0d51f6f7ee583e0f98966d_img_0_dc537", + "legacy/95bfb2eb362d322e0a0d51f6f7ee583e0f98966d_img_1_cdf8a", + "legacy/95bfb2eb362d322e0a0d51f6f7ee583e0f98966d_img_2_b75d2", + "legacy/95bfb2eb362d322e0a0d51f6f7ee583e0f98966d_img_3_cbd90", + "legacy/95bfb2eb362d322e0a0d51f6f7ee583e0f98966d_img_4_34ce8", + "legacy/95bfb2eb362d322e0a0d51f6f7ee583e0f98966d_img_5_57ee1", + "legacy/95bfb2eb362d322e0a0d51f6f7ee583e0f98966d_img_6_d27e0", + "legacy/95bfb2eb362d322e0a0d51f6f7ee583e0f98966d_img_7_74008" + ], + "gallery_urls": [ + "https://www.compass.com/m/95bfb2eb362d322e0a0d51f6f7ee583e0f98966d_img_0_dc537/640x480.jpg", + "https://www.compass.com/m/95bfb2eb362d322e0a0d51f6f7ee583e0f98966d_img_1_cdf8a/640x480.jpg", + "https://www.compass.com/m/95bfb2eb362d322e0a0d51f6f7ee583e0f98966d_img_2_b75d2/640x480.jpg", + "https://www.compass.com/m/95bfb2eb362d322e0a0d51f6f7ee583e0f98966d_img_3_cbd90/640x480.jpg", + "https://www.compass.com/m/95bfb2eb362d322e0a0d51f6f7ee583e0f98966d_img_4_34ce8/640x480.jpg", + "https://www.compass.com/m/95bfb2eb362d322e0a0d51f6f7ee583e0f98966d_img_5_57ee1/640x480.jpg", + "https://www.compass.com/m/95bfb2eb362d322e0a0d51f6f7ee583e0f98966d_img_6_d27e0/640x480.jpg", + "https://www.compass.com/m/95bfb2eb362d322e0a0d51f6f7ee583e0f98966d_img_7_74008/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/8622-17th-Ave-NE-Seattle-WA-98115/1SH8LK_pid/" + }, + { + "listing_id": "2087832171556297009", + "slug": "2501-canterbury-ln-e-unit-322-seattle-wa-98112", + "title": "$575,000", + "price": 575000, + "is_rent": false, + "street": "2501 Canterbury Lane East, Unit 322", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98112", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 891, + "latitude": 47.6425811, + "longitude": -122.2810617, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/44c7fcda24768b8f8f89498d763a131a280d6c2a_img_0_ea20f", + "gallery_uuids": [ + "legacy/44c7fcda24768b8f8f89498d763a131a280d6c2a_img_0_ea20f", + "legacy/44c7fcda24768b8f8f89498d763a131a280d6c2a_img_1_7f0ba", + "legacy/44c7fcda24768b8f8f89498d763a131a280d6c2a_img_2_44132", + "legacy/44c7fcda24768b8f8f89498d763a131a280d6c2a_img_3_c75fe", + "legacy/44c7fcda24768b8f8f89498d763a131a280d6c2a_img_4_5cfa7", + "legacy/44c7fcda24768b8f8f89498d763a131a280d6c2a_img_5_d6324", + "legacy/44c7fcda24768b8f8f89498d763a131a280d6c2a_img_6_57e7a", + "legacy/44c7fcda24768b8f8f89498d763a131a280d6c2a_img_7_a90b7" + ], + "gallery_urls": [ + "https://www.compass.com/m/44c7fcda24768b8f8f89498d763a131a280d6c2a_img_0_ea20f/640x480.jpg", + "https://www.compass.com/m/44c7fcda24768b8f8f89498d763a131a280d6c2a_img_1_7f0ba/640x480.jpg", + "https://www.compass.com/m/44c7fcda24768b8f8f89498d763a131a280d6c2a_img_2_44132/640x480.jpg", + "https://www.compass.com/m/44c7fcda24768b8f8f89498d763a131a280d6c2a_img_3_c75fe/640x480.jpg", + "https://www.compass.com/m/44c7fcda24768b8f8f89498d763a131a280d6c2a_img_4_5cfa7/640x480.jpg", + "https://www.compass.com/m/44c7fcda24768b8f8f89498d763a131a280d6c2a_img_5_d6324/640x480.jpg", + "https://www.compass.com/m/44c7fcda24768b8f8f89498d763a131a280d6c2a_img_6_57e7a/640x480.jpg", + "https://www.compass.com/m/44c7fcda24768b8f8f89498d763a131a280d6c2a_img_7_a90b7/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/2501-Canterbury-Ln-E-Unit-322-Seattle-WA-98112/1SBDYU_pid/" + }, + { + "listing_id": "2099406452962035657", + "slug": "814-31st-ave-s-seattle-wa-98144", + "title": "$1,875,000", + "price": 1875000, + "is_rent": false, + "street": "814 31st Avenue South", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98144", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2961, + "latitude": 47.5952462, + "longitude": -122.2922668, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/e3a213860ed876caaecccf9ef09ce11b18dedb46_img_0_b7119", + "gallery_uuids": [ + "legacy/e3a213860ed876caaecccf9ef09ce11b18dedb46_img_0_b7119", + "legacy/e3a213860ed876caaecccf9ef09ce11b18dedb46_img_1_053a7", + "legacy/e3a213860ed876caaecccf9ef09ce11b18dedb46_img_2_e3c5f", + "legacy/e3a213860ed876caaecccf9ef09ce11b18dedb46_img_3_4b02a", + "legacy/e3a213860ed876caaecccf9ef09ce11b18dedb46_img_4_cb558", + "legacy/e3a213860ed876caaecccf9ef09ce11b18dedb46_img_5_707f9", + "legacy/e3a213860ed876caaecccf9ef09ce11b18dedb46_img_6_7820d", + "legacy/e3a213860ed876caaecccf9ef09ce11b18dedb46_img_7_f9744" + ], + "gallery_urls": [ + "https://www.compass.com/m/e3a213860ed876caaecccf9ef09ce11b18dedb46_img_0_b7119/640x480.jpg", + "https://www.compass.com/m/e3a213860ed876caaecccf9ef09ce11b18dedb46_img_1_053a7/640x480.jpg", + "https://www.compass.com/m/e3a213860ed876caaecccf9ef09ce11b18dedb46_img_2_e3c5f/640x480.jpg", + "https://www.compass.com/m/e3a213860ed876caaecccf9ef09ce11b18dedb46_img_3_4b02a/640x480.jpg", + "https://www.compass.com/m/e3a213860ed876caaecccf9ef09ce11b18dedb46_img_4_cb558/640x480.jpg", + "https://www.compass.com/m/e3a213860ed876caaecccf9ef09ce11b18dedb46_img_5_707f9/640x480.jpg", + "https://www.compass.com/m/e3a213860ed876caaecccf9ef09ce11b18dedb46_img_6_7820d/640x480.jpg", + "https://www.compass.com/m/e3a213860ed876caaecccf9ef09ce11b18dedb46_img_7_f9744/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/814-31st-Ave-S-Seattle-WA-98144/1S4UKX_pid/" + }, + { + "listing_id": "2100190828864379729", + "slug": "4903-50th-ave-s-seattle-wa-98118", + "title": "$1,175,000", + "price": 1175000, + "is_rent": false, + "street": "4903 50th Avenue South", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98118", + "beds": 3, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1800, + "latitude": 47.5580712, + "longitude": -122.2710367, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Open: 5/16 12:00PM - 02:00PM" + ], + "hero_uuid": "legacy/13c8c8a926bc7844e0cb0110f5ffb712890b7455_img_0_cf470", + "gallery_uuids": [ + "legacy/13c8c8a926bc7844e0cb0110f5ffb712890b7455_img_0_cf470", + "legacy/13c8c8a926bc7844e0cb0110f5ffb712890b7455_img_1_a5c29", + "legacy/13c8c8a926bc7844e0cb0110f5ffb712890b7455_img_2_a7c0e", + "legacy/13c8c8a926bc7844e0cb0110f5ffb712890b7455_img_3_4ba88", + "legacy/13c8c8a926bc7844e0cb0110f5ffb712890b7455_img_4_fefd7", + "legacy/13c8c8a926bc7844e0cb0110f5ffb712890b7455_img_5_2aa4c", + "legacy/13c8c8a926bc7844e0cb0110f5ffb712890b7455_img_6_6f002", + "legacy/13c8c8a926bc7844e0cb0110f5ffb712890b7455_img_7_6a707" + ], + "gallery_urls": [ + "https://www.compass.com/m/13c8c8a926bc7844e0cb0110f5ffb712890b7455_img_0_cf470/640x480.jpg", + "https://www.compass.com/m/13c8c8a926bc7844e0cb0110f5ffb712890b7455_img_1_a5c29/640x480.jpg", + "https://www.compass.com/m/13c8c8a926bc7844e0cb0110f5ffb712890b7455_img_2_a7c0e/640x480.jpg", + "https://www.compass.com/m/13c8c8a926bc7844e0cb0110f5ffb712890b7455_img_3_4ba88/640x480.jpg", + "https://www.compass.com/m/13c8c8a926bc7844e0cb0110f5ffb712890b7455_img_4_fefd7/640x480.jpg", + "https://www.compass.com/m/13c8c8a926bc7844e0cb0110f5ffb712890b7455_img_5_2aa4c/640x480.jpg", + "https://www.compass.com/m/13c8c8a926bc7844e0cb0110f5ffb712890b7455_img_6_6f002/640x480.jpg", + "https://www.compass.com/m/13c8c8a926bc7844e0cb0110f5ffb712890b7455_img_7_6a707/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/4903-50th-Ave-S-Seattle-WA-98118/1RJEYD_pid/" + }, + { + "listing_id": "2099795740904119657", + "slug": "7710-57th-ave-ne-seattle-wa-98115", + "title": "$2,150,000", + "price": 2150000, + "is_rent": false, + "street": "7710 57th Avenue Northeast", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98115", + "beds": 4, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 3772, + "latitude": 47.6849955, + "longitude": -122.2667841, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Virtual Tour" + ], + "hero_uuid": "legacy/3df78b65490f20738eadbedcfc5664f86f74c3b6_img_0_22c8c", + "gallery_uuids": [ + "legacy/3df78b65490f20738eadbedcfc5664f86f74c3b6_img_0_22c8c", + "legacy/3df78b65490f20738eadbedcfc5664f86f74c3b6_img_1_95915", + "legacy/3df78b65490f20738eadbedcfc5664f86f74c3b6_img_2_d7621", + "legacy/3df78b65490f20738eadbedcfc5664f86f74c3b6_img_3_9e74d", + "legacy/3df78b65490f20738eadbedcfc5664f86f74c3b6_img_4_33016", + "legacy/3df78b65490f20738eadbedcfc5664f86f74c3b6_img_5_c52ee", + "legacy/3df78b65490f20738eadbedcfc5664f86f74c3b6_img_6_4e3fa", + "legacy/3df78b65490f20738eadbedcfc5664f86f74c3b6_img_7_87e34" + ], + "gallery_urls": [ + "https://www.compass.com/m/3df78b65490f20738eadbedcfc5664f86f74c3b6_img_0_22c8c/640x480.jpg", + "https://www.compass.com/m/3df78b65490f20738eadbedcfc5664f86f74c3b6_img_1_95915/640x480.jpg", + "https://www.compass.com/m/3df78b65490f20738eadbedcfc5664f86f74c3b6_img_2_d7621/640x480.jpg", + "https://www.compass.com/m/3df78b65490f20738eadbedcfc5664f86f74c3b6_img_3_9e74d/640x480.jpg", + "https://www.compass.com/m/3df78b65490f20738eadbedcfc5664f86f74c3b6_img_4_33016/640x480.jpg", + "https://www.compass.com/m/3df78b65490f20738eadbedcfc5664f86f74c3b6_img_5_c52ee/640x480.jpg", + "https://www.compass.com/m/3df78b65490f20738eadbedcfc5664f86f74c3b6_img_6_4e3fa/640x480.jpg", + "https://www.compass.com/m/3df78b65490f20738eadbedcfc5664f86f74c3b6_img_7_87e34/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/7710-57th-Ave-NE-Seattle-WA-98115/1RFZM8_pid/" + }, + { + "listing_id": "2100897890040020505", + "slug": "6546-32nd-ave-ne-unit-a-seattle-wa-98115", + "title": "$1,075,000", + "price": 1075000, + "is_rent": false, + "street": "6546 32nd Avenue Northeast, Unit A", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98115", + "beds": 4, + "baths": 4.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1940, + "latitude": 47.6760724, + "longitude": -122.2927825, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/13694cf4e62bd3b49725d43f7168e51d88cd1697_img_0_f0188", + "gallery_uuids": [ + "legacy/13694cf4e62bd3b49725d43f7168e51d88cd1697_img_0_f0188", + "legacy/13694cf4e62bd3b49725d43f7168e51d88cd1697_img_1_9c8f1", + "legacy/13694cf4e62bd3b49725d43f7168e51d88cd1697_img_2_2479e", + "legacy/13694cf4e62bd3b49725d43f7168e51d88cd1697_img_3_c2fbb", + "legacy/13694cf4e62bd3b49725d43f7168e51d88cd1697_img_4_75b1b", + "legacy/13694cf4e62bd3b49725d43f7168e51d88cd1697_img_5_8d18c", + "legacy/13694cf4e62bd3b49725d43f7168e51d88cd1697_img_6_6be3d", + "legacy/13694cf4e62bd3b49725d43f7168e51d88cd1697_img_7_45ac4" + ], + "gallery_urls": [ + "https://www.compass.com/m/13694cf4e62bd3b49725d43f7168e51d88cd1697_img_0_f0188/640x480.jpg", + "https://www.compass.com/m/13694cf4e62bd3b49725d43f7168e51d88cd1697_img_1_9c8f1/640x480.jpg", + "https://www.compass.com/m/13694cf4e62bd3b49725d43f7168e51d88cd1697_img_2_2479e/640x480.jpg", + "https://www.compass.com/m/13694cf4e62bd3b49725d43f7168e51d88cd1697_img_3_c2fbb/640x480.jpg", + "https://www.compass.com/m/13694cf4e62bd3b49725d43f7168e51d88cd1697_img_4_75b1b/640x480.jpg", + "https://www.compass.com/m/13694cf4e62bd3b49725d43f7168e51d88cd1697_img_5_8d18c/640x480.jpg", + "https://www.compass.com/m/13694cf4e62bd3b49725d43f7168e51d88cd1697_img_6_6be3d/640x480.jpg", + "https://www.compass.com/m/13694cf4e62bd3b49725d43f7168e51d88cd1697_img_7_45ac4/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/6546-32nd-Ave-NE-Unit-A-Seattle-WA-98115/1SI1YG_pid/" + }, + { + "listing_id": "2098677674774135873", + "slug": "3413-48th-ave-sw-seattle-wa-98116", + "title": "$998,000", + "price": 998000, + "is_rent": false, + "street": "3413 48th Avenue Southwest", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98116", + "beds": 3, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1680, + "latitude": 47.5734066, + "longitude": -122.3937015, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/8b051692edbc7e48b663c7da53fd48fc50c36193_img_0_7bb98", + "gallery_uuids": [ + "legacy/8b051692edbc7e48b663c7da53fd48fc50c36193_img_0_7bb98", + "legacy/8b051692edbc7e48b663c7da53fd48fc50c36193_img_1_a4c66", + "legacy/8b051692edbc7e48b663c7da53fd48fc50c36193_img_2_5403e", + "legacy/8b051692edbc7e48b663c7da53fd48fc50c36193_img_3_88bc2", + "legacy/8b051692edbc7e48b663c7da53fd48fc50c36193_img_4_a913c", + "legacy/8b051692edbc7e48b663c7da53fd48fc50c36193_img_5_c0b80", + "legacy/8b051692edbc7e48b663c7da53fd48fc50c36193_img_6_287b2", + "legacy/8b051692edbc7e48b663c7da53fd48fc50c36193_img_7_6e267" + ], + "gallery_urls": [ + "https://www.compass.com/m/8b051692edbc7e48b663c7da53fd48fc50c36193_img_0_7bb98/640x480.jpg", + "https://www.compass.com/m/8b051692edbc7e48b663c7da53fd48fc50c36193_img_1_a4c66/640x480.jpg", + "https://www.compass.com/m/8b051692edbc7e48b663c7da53fd48fc50c36193_img_2_5403e/640x480.jpg", + "https://www.compass.com/m/8b051692edbc7e48b663c7da53fd48fc50c36193_img_3_88bc2/640x480.jpg", + "https://www.compass.com/m/8b051692edbc7e48b663c7da53fd48fc50c36193_img_4_a913c/640x480.jpg", + "https://www.compass.com/m/8b051692edbc7e48b663c7da53fd48fc50c36193_img_5_c0b80/640x480.jpg", + "https://www.compass.com/m/8b051692edbc7e48b663c7da53fd48fc50c36193_img_6_287b2/640x480.jpg", + "https://www.compass.com/m/8b051692edbc7e48b663c7da53fd48fc50c36193_img_7_6e267/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/3413-48th-Ave-SW-Seattle-WA-98116/1SL1GT_pid/" + }, + { + "listing_id": "2099491363274197241", + "slug": "2349-harbor-ave-sw-unit-701-seattle-wa-98126", + "title": "$750,000", + "price": 750000, + "is_rent": false, + "street": "2349 Harbor Avenue Southwest, Unit 701", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98126", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1414, + "latitude": 47.5813046, + "longitude": -122.3749586, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/96357d33dd07c56d2a0501d348c560c6b8b7bf7a_img_0_27664", + "gallery_uuids": [ + "legacy/96357d33dd07c56d2a0501d348c560c6b8b7bf7a_img_0_27664", + "legacy/96357d33dd07c56d2a0501d348c560c6b8b7bf7a_img_1_b37d9", + "legacy/96357d33dd07c56d2a0501d348c560c6b8b7bf7a_img_2_09dd9", + "legacy/96357d33dd07c56d2a0501d348c560c6b8b7bf7a_img_3_cff82", + "legacy/96357d33dd07c56d2a0501d348c560c6b8b7bf7a_img_4_ab63d", + "legacy/96357d33dd07c56d2a0501d348c560c6b8b7bf7a_img_5_e4f73", + "legacy/96357d33dd07c56d2a0501d348c560c6b8b7bf7a_img_6_89799", + "legacy/96357d33dd07c56d2a0501d348c560c6b8b7bf7a_img_7_0c1e4" + ], + "gallery_urls": [ + "https://www.compass.com/m/96357d33dd07c56d2a0501d348c560c6b8b7bf7a_img_0_27664/640x480.jpg", + "https://www.compass.com/m/96357d33dd07c56d2a0501d348c560c6b8b7bf7a_img_1_b37d9/640x480.jpg", + "https://www.compass.com/m/96357d33dd07c56d2a0501d348c560c6b8b7bf7a_img_2_09dd9/640x480.jpg", + "https://www.compass.com/m/96357d33dd07c56d2a0501d348c560c6b8b7bf7a_img_3_cff82/640x480.jpg", + "https://www.compass.com/m/96357d33dd07c56d2a0501d348c560c6b8b7bf7a_img_4_ab63d/640x480.jpg", + "https://www.compass.com/m/96357d33dd07c56d2a0501d348c560c6b8b7bf7a_img_5_e4f73/640x480.jpg", + "https://www.compass.com/m/96357d33dd07c56d2a0501d348c560c6b8b7bf7a_img_6_89799/640x480.jpg", + "https://www.compass.com/m/96357d33dd07c56d2a0501d348c560c6b8b7bf7a_img_7_0c1e4/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/2349-Harbor-Ave-SW-Unit-701-Seattle-WA-98126/1S64K4_pid/" + }, + { + "listing_id": "2076551998662666769", + "slug": "2021-1st-ave-unit-f20-seattle-wa-98121", + "title": "$1,995,000", + "price": 1995000, + "is_rent": false, + "street": "2021 1st Avenue, Unit F20", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98121", + "beds": 2, + "baths": 3.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1900, + "latitude": 47.6111076, + "longitude": -122.3431835, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/84c9fd59964bd9be40fae3de6e8e8f1aff5a393f_img_0_1ec2c", + "gallery_uuids": [ + "legacy/84c9fd59964bd9be40fae3de6e8e8f1aff5a393f_img_0_1ec2c", + "legacy/84c9fd59964bd9be40fae3de6e8e8f1aff5a393f_img_1_5a124", + "legacy/84c9fd59964bd9be40fae3de6e8e8f1aff5a393f_img_2_5d57a", + "legacy/84c9fd59964bd9be40fae3de6e8e8f1aff5a393f_img_3_c7a41", + "legacy/84c9fd59964bd9be40fae3de6e8e8f1aff5a393f_img_4_e8224", + "legacy/84c9fd59964bd9be40fae3de6e8e8f1aff5a393f_img_5_2b1b5", + "legacy/84c9fd59964bd9be40fae3de6e8e8f1aff5a393f_img_6_327a1", + "legacy/84c9fd59964bd9be40fae3de6e8e8f1aff5a393f_img_7_bfe61" + ], + "gallery_urls": [ + "https://www.compass.com/m/84c9fd59964bd9be40fae3de6e8e8f1aff5a393f_img_0_1ec2c/640x480.jpg", + "https://www.compass.com/m/84c9fd59964bd9be40fae3de6e8e8f1aff5a393f_img_1_5a124/640x480.jpg", + "https://www.compass.com/m/84c9fd59964bd9be40fae3de6e8e8f1aff5a393f_img_2_5d57a/640x480.jpg", + "https://www.compass.com/m/84c9fd59964bd9be40fae3de6e8e8f1aff5a393f_img_3_c7a41/640x480.jpg", + "https://www.compass.com/m/84c9fd59964bd9be40fae3de6e8e8f1aff5a393f_img_4_e8224/640x480.jpg", + "https://www.compass.com/m/84c9fd59964bd9be40fae3de6e8e8f1aff5a393f_img_5_2b1b5/640x480.jpg", + "https://www.compass.com/m/84c9fd59964bd9be40fae3de6e8e8f1aff5a393f_img_6_327a1/640x480.jpg", + "https://www.compass.com/m/84c9fd59964bd9be40fae3de6e8e8f1aff5a393f_img_7_bfe61/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/2021-1st-Ave-Unit-F20-Seattle-WA-98121/2781ZU_pid/" + }, + { + "listing_id": "2099586372295740273", + "slug": "15009-westminster-way-n-seattle-wa-98133", + "title": "$629,995", + "price": 629995, + "is_rent": false, + "street": "15009 Westminster Way North", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98133", + "beds": 3, + "baths": 3.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1219, + "latitude": 47.7381587, + "longitude": -122.3518891, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/c03bf83f19dbdef4100911aa5f003e419a12dc27_img_0_78a49", + "gallery_uuids": [ + "legacy/c03bf83f19dbdef4100911aa5f003e419a12dc27_img_0_78a49", + "legacy/c03bf83f19dbdef4100911aa5f003e419a12dc27_img_1_36962", + "legacy/c03bf83f19dbdef4100911aa5f003e419a12dc27_img_2_1f041", + "legacy/c03bf83f19dbdef4100911aa5f003e419a12dc27_img_3_63e0f", + "legacy/c03bf83f19dbdef4100911aa5f003e419a12dc27_img_4_d04fa", + "legacy/c03bf83f19dbdef4100911aa5f003e419a12dc27_img_5_8b79c", + "legacy/c03bf83f19dbdef4100911aa5f003e419a12dc27_img_6_badd2", + "legacy/c03bf83f19dbdef4100911aa5f003e419a12dc27_img_7_39a43" + ], + "gallery_urls": [ + "https://www.compass.com/m/c03bf83f19dbdef4100911aa5f003e419a12dc27_img_0_78a49/640x480.jpg", + "https://www.compass.com/m/c03bf83f19dbdef4100911aa5f003e419a12dc27_img_1_36962/640x480.jpg", + "https://www.compass.com/m/c03bf83f19dbdef4100911aa5f003e419a12dc27_img_2_1f041/640x480.jpg", + "https://www.compass.com/m/c03bf83f19dbdef4100911aa5f003e419a12dc27_img_3_63e0f/640x480.jpg", + "https://www.compass.com/m/c03bf83f19dbdef4100911aa5f003e419a12dc27_img_4_d04fa/640x480.jpg", + "https://www.compass.com/m/c03bf83f19dbdef4100911aa5f003e419a12dc27_img_5_8b79c/640x480.jpg", + "https://www.compass.com/m/c03bf83f19dbdef4100911aa5f003e419a12dc27_img_6_badd2/640x480.jpg", + "https://www.compass.com/m/c03bf83f19dbdef4100911aa5f003e419a12dc27_img_7_39a43/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/15009-Westminster-Way-N-Seattle-WA-98133/1S2KMC_pid/" + }, + { + "listing_id": "2095117238428302473", + "slug": "1419-mcgilvra-blvd-e-seattle-wa-98112", + "title": "$2,175,000", + "price": 2175000, + "is_rent": false, + "street": "1419 McGilvra Boulevard East", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98112", + "beds": 3, + "baths": 3.0, + "baths_full": 1, + "baths_half": null, + "sqft": 3430, + "latitude": 47.63159690000001, + "longitude": -122.2817245, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/4a9be57023e7c54315312b61a4c6250a6813fd58_img_0_0bbfc", + "gallery_uuids": [ + "legacy/4a9be57023e7c54315312b61a4c6250a6813fd58_img_0_0bbfc", + "legacy/4a9be57023e7c54315312b61a4c6250a6813fd58_img_1_5b171", + "legacy/4a9be57023e7c54315312b61a4c6250a6813fd58_img_2_df1b3", + "legacy/4a9be57023e7c54315312b61a4c6250a6813fd58_img_3_7130f", + "legacy/4a9be57023e7c54315312b61a4c6250a6813fd58_img_4_70196", + "legacy/4a9be57023e7c54315312b61a4c6250a6813fd58_img_5_e4806", + "legacy/4a9be57023e7c54315312b61a4c6250a6813fd58_img_6_48530", + "legacy/4a9be57023e7c54315312b61a4c6250a6813fd58_img_7_c4fd8" + ], + "gallery_urls": [ + "https://www.compass.com/m/4a9be57023e7c54315312b61a4c6250a6813fd58_img_0_0bbfc/640x480.jpg", + "https://www.compass.com/m/4a9be57023e7c54315312b61a4c6250a6813fd58_img_1_5b171/640x480.jpg", + "https://www.compass.com/m/4a9be57023e7c54315312b61a4c6250a6813fd58_img_2_df1b3/640x480.jpg", + "https://www.compass.com/m/4a9be57023e7c54315312b61a4c6250a6813fd58_img_3_7130f/640x480.jpg", + "https://www.compass.com/m/4a9be57023e7c54315312b61a4c6250a6813fd58_img_4_70196/640x480.jpg", + "https://www.compass.com/m/4a9be57023e7c54315312b61a4c6250a6813fd58_img_5_e4806/640x480.jpg", + "https://www.compass.com/m/4a9be57023e7c54315312b61a4c6250a6813fd58_img_6_48530/640x480.jpg", + "https://www.compass.com/m/4a9be57023e7c54315312b61a4c6250a6813fd58_img_7_c4fd8/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/1419-McGilvra-Blvd-E-Seattle-WA-98112/1S13FU_pid/" + }, + { + "listing_id": "2094470215975252201", + "slug": "1108-39th-ave-e-seattle-wa-98112", + "title": "$4,750,000", + "price": 4750000, + "is_rent": false, + "street": "1108 39th Avenue East", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98112", + "beds": 4, + "baths": 4.0, + "baths_full": 2, + "baths_half": null, + "sqft": 4540, + "latitude": 47.6289224, + "longitude": -122.2823331, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/f2d8190cb12bcaed6e1bd49cc18b8ed097794669_img_0_75b87", + "gallery_uuids": [ + "legacy/f2d8190cb12bcaed6e1bd49cc18b8ed097794669_img_0_75b87", + "legacy/f2d8190cb12bcaed6e1bd49cc18b8ed097794669_img_1_16e6d", + "legacy/f2d8190cb12bcaed6e1bd49cc18b8ed097794669_img_2_a1239", + "legacy/f2d8190cb12bcaed6e1bd49cc18b8ed097794669_img_3_f4164", + "legacy/f2d8190cb12bcaed6e1bd49cc18b8ed097794669_img_4_1f8aa", + "legacy/f2d8190cb12bcaed6e1bd49cc18b8ed097794669_img_5_385b2", + "legacy/f2d8190cb12bcaed6e1bd49cc18b8ed097794669_img_6_21fa1", + "legacy/f2d8190cb12bcaed6e1bd49cc18b8ed097794669_img_7_d4ef8" + ], + "gallery_urls": [ + "https://www.compass.com/m/f2d8190cb12bcaed6e1bd49cc18b8ed097794669_img_0_75b87/640x480.jpg", + "https://www.compass.com/m/f2d8190cb12bcaed6e1bd49cc18b8ed097794669_img_1_16e6d/640x480.jpg", + "https://www.compass.com/m/f2d8190cb12bcaed6e1bd49cc18b8ed097794669_img_2_a1239/640x480.jpg", + "https://www.compass.com/m/f2d8190cb12bcaed6e1bd49cc18b8ed097794669_img_3_f4164/640x480.jpg", + "https://www.compass.com/m/f2d8190cb12bcaed6e1bd49cc18b8ed097794669_img_4_1f8aa/640x480.jpg", + "https://www.compass.com/m/f2d8190cb12bcaed6e1bd49cc18b8ed097794669_img_5_385b2/640x480.jpg", + "https://www.compass.com/m/f2d8190cb12bcaed6e1bd49cc18b8ed097794669_img_6_21fa1/640x480.jpg", + "https://www.compass.com/m/f2d8190cb12bcaed6e1bd49cc18b8ed097794669_img_7_d4ef8/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/1108-39th-Ave-E-Seattle-WA-98112/1RWGOP_pid/" + }, + { + "listing_id": "2083867658095713321", + "slug": "1760-nw-56th-st-unit-309-seattle-wa-98107", + "title": "$399,000", + "price": 399000, + "is_rent": false, + "street": "1760 Northwest 56th Street, Unit 309", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98107", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 698, + "latitude": 47.6696482, + "longitude": -122.3815724, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/507d2db6d3e32704d6891bf9532ccf679f876af9_img_0_1337e", + "gallery_uuids": [ + "legacy/507d2db6d3e32704d6891bf9532ccf679f876af9_img_0_1337e", + "legacy/507d2db6d3e32704d6891bf9532ccf679f876af9_img_1_29163", + "legacy/507d2db6d3e32704d6891bf9532ccf679f876af9_img_2_4f2b6", + "legacy/507d2db6d3e32704d6891bf9532ccf679f876af9_img_3_b7c6e", + "legacy/507d2db6d3e32704d6891bf9532ccf679f876af9_img_4_45b3e", + "legacy/507d2db6d3e32704d6891bf9532ccf679f876af9_img_5_49e40", + "legacy/507d2db6d3e32704d6891bf9532ccf679f876af9_img_6_5f1c4", + "legacy/507d2db6d3e32704d6891bf9532ccf679f876af9_img_7_c9f42" + ], + "gallery_urls": [ + "https://www.compass.com/m/507d2db6d3e32704d6891bf9532ccf679f876af9_img_0_1337e/640x480.jpg", + "https://www.compass.com/m/507d2db6d3e32704d6891bf9532ccf679f876af9_img_1_29163/640x480.jpg", + "https://www.compass.com/m/507d2db6d3e32704d6891bf9532ccf679f876af9_img_2_4f2b6/640x480.jpg", + "https://www.compass.com/m/507d2db6d3e32704d6891bf9532ccf679f876af9_img_3_b7c6e/640x480.jpg", + "https://www.compass.com/m/507d2db6d3e32704d6891bf9532ccf679f876af9_img_4_45b3e/640x480.jpg", + "https://www.compass.com/m/507d2db6d3e32704d6891bf9532ccf679f876af9_img_5_49e40/640x480.jpg", + "https://www.compass.com/m/507d2db6d3e32704d6891bf9532ccf679f876af9_img_6_5f1c4/640x480.jpg", + "https://www.compass.com/m/507d2db6d3e32704d6891bf9532ccf679f876af9_img_7_c9f42/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/1760-NW-56th-St-Unit-309-Seattle-WA-98107/1SALUT_pid/" + }, + { + "listing_id": "2094449974113275841", + "slug": "3426-nw-market-st-seattle-wa-98107", + "title": "$996,550", + "price": 996550, + "is_rent": false, + "street": "3426 Northwest Market Street", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98107", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1520, + "latitude": 47.6688726, + "longitude": -122.4021297, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Virtual Tour" + ], + "hero_uuid": "legacy/2669568e7ec7d344b4cd8c8f7266dc1d83875e3e_img_0_ffad2", + "gallery_uuids": [ + "legacy/2669568e7ec7d344b4cd8c8f7266dc1d83875e3e_img_0_ffad2", + "legacy/2669568e7ec7d344b4cd8c8f7266dc1d83875e3e_img_1_312a0", + "legacy/2669568e7ec7d344b4cd8c8f7266dc1d83875e3e_img_2_22858", + "legacy/2669568e7ec7d344b4cd8c8f7266dc1d83875e3e_img_3_cfbe2", + "legacy/2669568e7ec7d344b4cd8c8f7266dc1d83875e3e_img_4_62a72", + "legacy/2669568e7ec7d344b4cd8c8f7266dc1d83875e3e_img_5_c1f21", + "legacy/2669568e7ec7d344b4cd8c8f7266dc1d83875e3e_img_6_1a409", + "legacy/2669568e7ec7d344b4cd8c8f7266dc1d83875e3e_img_7_e5b12" + ], + "gallery_urls": [ + "https://www.compass.com/m/2669568e7ec7d344b4cd8c8f7266dc1d83875e3e_img_0_ffad2/640x480.jpg", + "https://www.compass.com/m/2669568e7ec7d344b4cd8c8f7266dc1d83875e3e_img_1_312a0/640x480.jpg", + "https://www.compass.com/m/2669568e7ec7d344b4cd8c8f7266dc1d83875e3e_img_2_22858/640x480.jpg", + "https://www.compass.com/m/2669568e7ec7d344b4cd8c8f7266dc1d83875e3e_img_3_cfbe2/640x480.jpg", + "https://www.compass.com/m/2669568e7ec7d344b4cd8c8f7266dc1d83875e3e_img_4_62a72/640x480.jpg", + "https://www.compass.com/m/2669568e7ec7d344b4cd8c8f7266dc1d83875e3e_img_5_c1f21/640x480.jpg", + "https://www.compass.com/m/2669568e7ec7d344b4cd8c8f7266dc1d83875e3e_img_6_1a409/640x480.jpg", + "https://www.compass.com/m/2669568e7ec7d344b4cd8c8f7266dc1d83875e3e_img_7_e5b12/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/3426-NW-Market-St-Seattle-WA-98107/1S2XSG_pid/" + }, + { + "listing_id": "2093368084769320529", + "slug": "5316-31st-ave-s-seattle-wa-98108", + "title": "$985,000", + "price": 985000, + "is_rent": false, + "street": "5316 31st Avenue South", + "neighborhood": "", + "city": "Seattle", + "state": "WA", + "zip": "98108", + "beds": 7, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 3100, + "latitude": 47.5540999, + "longitude": -122.29239, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/22e61b15d172417ef842ed35dd2056e81f1382a3_img_0_73bbd", + "gallery_uuids": [ + "legacy/22e61b15d172417ef842ed35dd2056e81f1382a3_img_0_73bbd", + "legacy/22e61b15d172417ef842ed35dd2056e81f1382a3_img_1_ad5a1", + "legacy/22e61b15d172417ef842ed35dd2056e81f1382a3_img_2_73ec2", + "legacy/22e61b15d172417ef842ed35dd2056e81f1382a3_img_3_de25a", + "legacy/22e61b15d172417ef842ed35dd2056e81f1382a3_img_4_2d699", + "legacy/22e61b15d172417ef842ed35dd2056e81f1382a3_img_5_49404", + "legacy/22e61b15d172417ef842ed35dd2056e81f1382a3_img_6_7b7b0", + "legacy/22e61b15d172417ef842ed35dd2056e81f1382a3_img_7_2a46b" + ], + "gallery_urls": [ + "https://www.compass.com/m/22e61b15d172417ef842ed35dd2056e81f1382a3_img_0_73bbd/640x480.jpg", + "https://www.compass.com/m/22e61b15d172417ef842ed35dd2056e81f1382a3_img_1_ad5a1/640x480.jpg", + "https://www.compass.com/m/22e61b15d172417ef842ed35dd2056e81f1382a3_img_2_73ec2/640x480.jpg", + "https://www.compass.com/m/22e61b15d172417ef842ed35dd2056e81f1382a3_img_3_de25a/640x480.jpg", + "https://www.compass.com/m/22e61b15d172417ef842ed35dd2056e81f1382a3_img_4_2d699/640x480.jpg", + "https://www.compass.com/m/22e61b15d172417ef842ed35dd2056e81f1382a3_img_5_49404/640x480.jpg", + "https://www.compass.com/m/22e61b15d172417ef842ed35dd2056e81f1382a3_img_6_7b7b0/640x480.jpg", + "https://www.compass.com/m/22e61b15d172417ef842ed35dd2056e81f1382a3_img_7_2a46b/640x480.jpg" + ], + "source_city": "seattle", + "detail_url": "https://www.compass.com/homedetails/5316-31st-Ave-S-Seattle-WA-98108/1RZP7B_pid/" + }, + { + "listing_id": "2075608533951220497", + "slug": "740-n-clayton-st-denver-co-80206", + "title": "$1,850,000", + "price": 1850000, + "is_rent": false, + "street": "740 North Clayton Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80206", + "beds": 3, + "baths": 5.0, + "baths_full": 3, + "baths_half": null, + "sqft": 3612, + "latitude": 39.72817430000001, + "longitude": -104.9553029, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/cd1b42e7-08cc-4626-a400-62cf49d639c3", + "gallery_uuids": [ + "uuid/cd1b42e7-08cc-4626-a400-62cf49d639c3", + "uuid/303206df-5e63-4c9b-a077-2f2a7640b0c9", + "uuid/016ea6d7-8eba-4f92-887e-0271f63e8fe2", + "uuid/73cd7d6c-085f-408d-bc01-12902f18c018", + "uuid/2d452284-62a6-4b9f-b570-eabf91ccdc12", + "uuid/3ea87ff1-c468-477f-9baf-27ac201a4902" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/cd1b42e7-08cc-4626-a400-62cf49d639c3/1500x1000.jpg", + "https://www.compass.com/m/0/303206df-5e63-4c9b-a077-2f2a7640b0c9/1500x998.jpg", + "https://www.compass.com/m/0/016ea6d7-8eba-4f92-887e-0271f63e8fe2/1500x999.jpg", + "https://www.compass.com/m/0/73cd7d6c-085f-408d-bc01-12902f18c018/1500x999.jpg", + "https://www.compass.com/m/0/2d452284-62a6-4b9f-b570-eabf91ccdc12/1500x1000.jpg", + "https://www.compass.com/m/0/3ea87ff1-c468-477f-9baf-27ac201a4902/1500x1000.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/740-N-Clayton-St-Denver-CO-80206/277Z4V_pid/" + }, + { + "listing_id": "2100434722659137577", + "slug": "1411-zenobia-st-denver-co-80204", + "title": "$685,000", + "price": 685000, + "is_rent": false, + "street": "1411 Zenobia Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80204", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1585, + "latitude": 39.738806, + "longitude": -105.0523306, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/a7ac8166-1199-417a-949f-9b13e34392ff", + "gallery_uuids": [ + "uuid/a7ac8166-1199-417a-949f-9b13e34392ff", + "uuid/5c5d9df9-d197-4914-a889-f8c7fa884374", + "uuid/f2122efe-8fb4-41d0-9668-ce383e0eb60a", + "uuid/bdbc019e-d391-4f3e-906c-88602c5c8b14", + "uuid/e8bfeed9-09ac-4e2b-8120-f71682515449", + "uuid/4fc9e4fb-7c9a-48a8-bff0-78a9b6870b7e", + "uuid/de46d6aa-74f9-41c7-acef-a61481b2a52f", + "uuid/9150241a-d39d-42c1-9be4-7a6b0a58306e" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/a7ac8166-1199-417a-949f-9b13e34392ff/679x1000.jpg", + "https://www.compass.com/m/0/5c5d9df9-d197-4914-a889-f8c7fa884374/1378x900.jpg", + "https://www.compass.com/m/0/f2122efe-8fb4-41d0-9668-ce383e0eb60a/1380x888.jpg", + "https://www.compass.com/m/0/bdbc019e-d391-4f3e-906c-88602c5c8b14/1348x862.jpg", + "https://www.compass.com/m/0/e8bfeed9-09ac-4e2b-8120-f71682515449/1352x874.jpg", + "https://www.compass.com/m/0/4fc9e4fb-7c9a-48a8-bff0-78a9b6870b7e/1376x868.jpg", + "https://www.compass.com/m/0/de46d6aa-74f9-41c7-acef-a61481b2a52f/1376x904.jpg", + "https://www.compass.com/m/0/9150241a-d39d-42c1-9be4-7a6b0a58306e/1380x890.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/1411-Zenobia-St-Denver-CO-80204/12WI17_pid/" + }, + { + "listing_id": "2103262787751054009", + "slug": "1304-n-raleigh-st-denver-co-80204", + "title": "$635,000", + "price": 635000, + "is_rent": false, + "street": "1304 North Raleigh Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80204", + "beds": 2, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1200, + "latitude": 39.7367795, + "longitude": -105.0414486, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/0a16e2a16b37c08088c9f3a4b03e48bab20b2f97_img_0_7d5c8", + "gallery_uuids": [ + "legacy/0a16e2a16b37c08088c9f3a4b03e48bab20b2f97_img_0_7d5c8", + "legacy/0a16e2a16b37c08088c9f3a4b03e48bab20b2f97_img_1_02492", + "legacy/0a16e2a16b37c08088c9f3a4b03e48bab20b2f97_img_2_fc213", + "legacy/0a16e2a16b37c08088c9f3a4b03e48bab20b2f97_img_3_e9098", + "legacy/0a16e2a16b37c08088c9f3a4b03e48bab20b2f97_img_4_c4557", + "legacy/0a16e2a16b37c08088c9f3a4b03e48bab20b2f97_img_5_b05ba", + "legacy/0a16e2a16b37c08088c9f3a4b03e48bab20b2f97_img_6_c8cc1", + "legacy/0a16e2a16b37c08088c9f3a4b03e48bab20b2f97_img_7_c075d" + ], + "gallery_urls": [ + "https://www.compass.com/m/0a16e2a16b37c08088c9f3a4b03e48bab20b2f97_img_0_7d5c8/640x480.jpg", + "https://www.compass.com/m/0a16e2a16b37c08088c9f3a4b03e48bab20b2f97_img_1_02492/640x480.jpg", + "https://www.compass.com/m/0a16e2a16b37c08088c9f3a4b03e48bab20b2f97_img_2_fc213/640x480.jpg", + "https://www.compass.com/m/0a16e2a16b37c08088c9f3a4b03e48bab20b2f97_img_3_e9098/640x480.jpg", + "https://www.compass.com/m/0a16e2a16b37c08088c9f3a4b03e48bab20b2f97_img_4_c4557/640x480.jpg", + "https://www.compass.com/m/0a16e2a16b37c08088c9f3a4b03e48bab20b2f97_img_5_b05ba/640x480.jpg", + "https://www.compass.com/m/0a16e2a16b37c08088c9f3a4b03e48bab20b2f97_img_6_c8cc1/640x480.jpg", + "https://www.compass.com/m/0a16e2a16b37c08088c9f3a4b03e48bab20b2f97_img_7_c075d/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/1304-N-Raleigh-St-Denver-CO-80204/27GZIO_pid/" + }, + { + "listing_id": "2063407416442065833", + "slug": "1370-zenobia-st-denver-co-80204", + "title": "$625,000", + "price": 625000, + "is_rent": false, + "street": "1370 Zenobia Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80204", + "beds": 4, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1800, + "latitude": 39.7378687, + "longitude": -105.0517916, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/0409419c-7244-4129-89c6-76c9931c6069", + "gallery_uuids": [ + "uuid/0409419c-7244-4129-89c6-76c9931c6069", + "uuid/27c7d586-97c6-4c94-a4df-50192c6a15de" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/0409419c-7244-4129-89c6-76c9931c6069/1500x1000.jpg", + "https://www.compass.com/m/0/27c7d586-97c6-4c94-a4df-50192c6a15de/1500x1000.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/1370-Zenobia-St-Denver-CO-80204/12CK0P_pid/" + }, + { + "listing_id": "2085607227661634345", + "slug": "address-upon-request-denver-co-80206", + "title": "$799,000", + "price": 799000, + "is_rent": false, + "street": "Address Upon Request", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80206", + "beds": 4, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1644, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/c587d074-93bf-466c-8078-cfdb67cd6a2c", + "gallery_uuids": [ + "uuid/c587d074-93bf-466c-8078-cfdb67cd6a2c", + "uuid/3aaa0293-4ef5-4107-93dc-8b02418511aa", + "uuid/ce38c960-5483-4e11-bf6a-ee9903383ac5", + "uuid/748a5811-c572-40a4-a582-dcee90550648", + "uuid/ba0835f8-a715-4eb7-8e0b-5c0cef70d8b5", + "uuid/4e3334db-ca05-4c6c-a4fc-731e3ba4b047", + "uuid/d15ee151-6799-4260-8c64-fceba9aa2e39", + "uuid/02f806b2-d5e9-4d8b-be5e-5c9cdd69d045" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/c587d074-93bf-466c-8078-cfdb67cd6a2c/750x1000.jpg", + "https://www.compass.com/m/0/3aaa0293-4ef5-4107-93dc-8b02418511aa/750x1000.jpg", + "https://www.compass.com/m/0/ce38c960-5483-4e11-bf6a-ee9903383ac5/1497x1000.jpg", + "https://www.compass.com/m/0/748a5811-c572-40a4-a582-dcee90550648/1497x1000.jpg", + "https://www.compass.com/m/0/ba0835f8-a715-4eb7-8e0b-5c0cef70d8b5/1497x1000.jpg", + "https://www.compass.com/m/0/4e3334db-ca05-4c6c-a4fc-731e3ba4b047/1497x1000.jpg", + "https://www.compass.com/m/0/d15ee151-6799-4260-8c64-fceba9aa2e39/1497x1000.jpg", + "https://www.compass.com/m/0/02f806b2-d5e9-4d8b-be5e-5c9cdd69d045/1497x1000.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/Address-Upon-Request-Denver-CO-80206/2085607227661634345_lid/" + }, + { + "listing_id": "2103318401995735673", + "slug": "3324-franklin-st-denver-co-80205", + "title": "$640,000", + "price": 640000, + "is_rent": false, + "street": "3324 Franklin Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80205", + "beds": 3, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1770, + "latitude": 39.763781, + "longitude": -104.9681142, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/07265428c8f206f8b1543937c70e421e1aa2076b_img_0_e6f14", + "gallery_uuids": [ + "legacy/07265428c8f206f8b1543937c70e421e1aa2076b_img_0_e6f14", + "legacy/07265428c8f206f8b1543937c70e421e1aa2076b_img_1_9a3ad", + "legacy/07265428c8f206f8b1543937c70e421e1aa2076b_img_2_73554", + "legacy/07265428c8f206f8b1543937c70e421e1aa2076b_img_3_f8612", + "legacy/07265428c8f206f8b1543937c70e421e1aa2076b_img_4_69e8b", + "legacy/07265428c8f206f8b1543937c70e421e1aa2076b_img_5_d6fc2", + "legacy/07265428c8f206f8b1543937c70e421e1aa2076b_img_6_c8f81", + "legacy/07265428c8f206f8b1543937c70e421e1aa2076b_img_7_1a793" + ], + "gallery_urls": [ + "https://www.compass.com/m/07265428c8f206f8b1543937c70e421e1aa2076b_img_0_e6f14/640x480.jpg", + "https://www.compass.com/m/07265428c8f206f8b1543937c70e421e1aa2076b_img_1_9a3ad/640x480.jpg", + "https://www.compass.com/m/07265428c8f206f8b1543937c70e421e1aa2076b_img_2_73554/640x480.jpg", + "https://www.compass.com/m/07265428c8f206f8b1543937c70e421e1aa2076b_img_3_f8612/640x480.jpg", + "https://www.compass.com/m/07265428c8f206f8b1543937c70e421e1aa2076b_img_4_69e8b/640x480.jpg", + "https://www.compass.com/m/07265428c8f206f8b1543937c70e421e1aa2076b_img_5_d6fc2/640x480.jpg", + "https://www.compass.com/m/07265428c8f206f8b1543937c70e421e1aa2076b_img_6_c8f81/640x480.jpg", + "https://www.compass.com/m/07265428c8f206f8b1543937c70e421e1aa2076b_img_7_1a793/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/3324-Franklin-St-Denver-CO-80205/12DRCG_pid/" + }, + { + "listing_id": "2048880602039951841", + "slug": "1695-zenobia-st-unit-2-denver-co-80204", + "title": "$1,500,000", + "price": 1500000, + "is_rent": false, + "street": "1695 Zenobia Street, Unit 2", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80204", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2593, + "latitude": 39.7437542, + "longitude": -105.0522982, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/abefdec656476235bf112536fe0da1cb8add25f4_img_0_4792f", + "gallery_uuids": [ + "legacy/abefdec656476235bf112536fe0da1cb8add25f4_img_0_4792f", + "legacy/abefdec656476235bf112536fe0da1cb8add25f4_img_1_a69e0", + "legacy/abefdec656476235bf112536fe0da1cb8add25f4_img_2_de5cf", + "legacy/abefdec656476235bf112536fe0da1cb8add25f4_img_3_ad1d2", + "legacy/abefdec656476235bf112536fe0da1cb8add25f4_img_4_191d0", + "legacy/abefdec656476235bf112536fe0da1cb8add25f4_img_5_08c1d", + "legacy/abefdec656476235bf112536fe0da1cb8add25f4_img_6_ef45c", + "legacy/abefdec656476235bf112536fe0da1cb8add25f4_img_7_a1bde" + ], + "gallery_urls": [ + "https://www.compass.com/m/abefdec656476235bf112536fe0da1cb8add25f4_img_0_4792f/640x480.jpg", + "https://www.compass.com/m/abefdec656476235bf112536fe0da1cb8add25f4_img_1_a69e0/640x480.jpg", + "https://www.compass.com/m/abefdec656476235bf112536fe0da1cb8add25f4_img_2_de5cf/640x480.jpg", + "https://www.compass.com/m/abefdec656476235bf112536fe0da1cb8add25f4_img_3_ad1d2/640x480.jpg", + "https://www.compass.com/m/abefdec656476235bf112536fe0da1cb8add25f4_img_4_191d0/640x480.jpg", + "https://www.compass.com/m/abefdec656476235bf112536fe0da1cb8add25f4_img_5_08c1d/640x480.jpg", + "https://www.compass.com/m/abefdec656476235bf112536fe0da1cb8add25f4_img_6_ef45c/640x480.jpg", + "https://www.compass.com/m/abefdec656476235bf112536fe0da1cb8add25f4_img_7_a1bde/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/1695-Zenobia-St-Unit-2-Denver-CO-80204/130DF7_pid/" + }, + { + "listing_id": "2103039233638300481", + "slug": "3250-dexter-st-denver-co-80207", + "title": "$460,000", + "price": 460000, + "is_rent": false, + "street": "3250 Dexter Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80207", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 700, + "latitude": 39.7628946, + "longitude": -104.9328851, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Open: 5/16 11:00AM - 03:00PM" + ], + "hero_uuid": "legacy/6a50c08402cc9eeaa9cc35bb4f0d0902693e9a9d_img_0_12796", + "gallery_uuids": [ + "legacy/6a50c08402cc9eeaa9cc35bb4f0d0902693e9a9d_img_0_12796", + "legacy/6a50c08402cc9eeaa9cc35bb4f0d0902693e9a9d_img_1_5837f", + "legacy/6a50c08402cc9eeaa9cc35bb4f0d0902693e9a9d_img_2_faa04", + "legacy/6a50c08402cc9eeaa9cc35bb4f0d0902693e9a9d_img_3_e16e3", + "legacy/6a50c08402cc9eeaa9cc35bb4f0d0902693e9a9d_img_4_290ab", + "legacy/6a50c08402cc9eeaa9cc35bb4f0d0902693e9a9d_img_5_df56d", + "legacy/6a50c08402cc9eeaa9cc35bb4f0d0902693e9a9d_img_6_06b53", + "legacy/6a50c08402cc9eeaa9cc35bb4f0d0902693e9a9d_img_7_a0d11" + ], + "gallery_urls": [ + "https://www.compass.com/m/6a50c08402cc9eeaa9cc35bb4f0d0902693e9a9d_img_0_12796/640x480.jpg", + "https://www.compass.com/m/6a50c08402cc9eeaa9cc35bb4f0d0902693e9a9d_img_1_5837f/640x480.jpg", + "https://www.compass.com/m/6a50c08402cc9eeaa9cc35bb4f0d0902693e9a9d_img_2_faa04/640x480.jpg", + "https://www.compass.com/m/6a50c08402cc9eeaa9cc35bb4f0d0902693e9a9d_img_3_e16e3/640x480.jpg", + "https://www.compass.com/m/6a50c08402cc9eeaa9cc35bb4f0d0902693e9a9d_img_4_290ab/640x480.jpg", + "https://www.compass.com/m/6a50c08402cc9eeaa9cc35bb4f0d0902693e9a9d_img_5_df56d/640x480.jpg", + "https://www.compass.com/m/6a50c08402cc9eeaa9cc35bb4f0d0902693e9a9d_img_6_06b53/640x480.jpg", + "https://www.compass.com/m/6a50c08402cc9eeaa9cc35bb4f0d0902693e9a9d_img_7_a0d11/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/3250-Dexter-St-Denver-CO-80207/136FBB_pid/" + }, + { + "listing_id": "2093165211737985593", + "slug": "4922-lowell-blvd-unit-4-denver-co-80221", + "title": "$649,900", + "price": 649900, + "is_rent": false, + "street": "4922 Lowell Boulevard, Unit 4", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80221", + "beds": 2, + "baths": 4.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1407, + "latitude": 39.7861228, + "longitude": -105.0342126, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/1a7da76d3e1735cdda1be36a2392877e288882c8_img_0_6dd57", + "gallery_uuids": [ + "legacy/1a7da76d3e1735cdda1be36a2392877e288882c8_img_0_6dd57", + "legacy/1a7da76d3e1735cdda1be36a2392877e288882c8_img_1_372b3", + "legacy/1a7da76d3e1735cdda1be36a2392877e288882c8_img_2_be9ed", + "legacy/1a7da76d3e1735cdda1be36a2392877e288882c8_img_3_a5b62", + "legacy/1a7da76d3e1735cdda1be36a2392877e288882c8_img_4_61822", + "legacy/1a7da76d3e1735cdda1be36a2392877e288882c8_img_5_c4be0", + "legacy/1a7da76d3e1735cdda1be36a2392877e288882c8_img_6_8273b", + "legacy/1a7da76d3e1735cdda1be36a2392877e288882c8_img_7_b94d7" + ], + "gallery_urls": [ + "https://www.compass.com/m/1a7da76d3e1735cdda1be36a2392877e288882c8_img_0_6dd57/640x480.jpg", + "https://www.compass.com/m/1a7da76d3e1735cdda1be36a2392877e288882c8_img_1_372b3/640x480.jpg", + "https://www.compass.com/m/1a7da76d3e1735cdda1be36a2392877e288882c8_img_2_be9ed/640x480.jpg", + "https://www.compass.com/m/1a7da76d3e1735cdda1be36a2392877e288882c8_img_3_a5b62/640x480.jpg", + "https://www.compass.com/m/1a7da76d3e1735cdda1be36a2392877e288882c8_img_4_61822/640x480.jpg", + "https://www.compass.com/m/1a7da76d3e1735cdda1be36a2392877e288882c8_img_5_c4be0/640x480.jpg", + "https://www.compass.com/m/1a7da76d3e1735cdda1be36a2392877e288882c8_img_6_8273b/640x480.jpg", + "https://www.compass.com/m/1a7da76d3e1735cdda1be36a2392877e288882c8_img_7_b94d7/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/4922-Lowell-Blvd-Unit-4-Denver-CO-80221/12E9ZJ_pid/" + }, + { + "listing_id": "2100935784251144513", + "slug": "5075-valentia-st-denver-co-80238", + "title": "$850,000", + "price": 850000, + "is_rent": false, + "street": "5075 Valentia Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80238", + "beds": 4, + "baths": 4.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2953, + "latitude": 39.79121230000001, + "longitude": -104.8921896, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Open: 5/16 02:00PM - 04:00PM" + ], + "hero_uuid": "legacy/d7bb09017287a5fb3e195d69e5b39741807d27ee_img_0_a6e03", + "gallery_uuids": [ + "legacy/d7bb09017287a5fb3e195d69e5b39741807d27ee_img_0_a6e03", + "legacy/d7bb09017287a5fb3e195d69e5b39741807d27ee_img_1_65b59", + "legacy/d7bb09017287a5fb3e195d69e5b39741807d27ee_img_2_e507b", + "legacy/d7bb09017287a5fb3e195d69e5b39741807d27ee_img_3_eeb37", + "legacy/d7bb09017287a5fb3e195d69e5b39741807d27ee_img_4_0aadf", + "legacy/d7bb09017287a5fb3e195d69e5b39741807d27ee_img_5_545ff", + "legacy/d7bb09017287a5fb3e195d69e5b39741807d27ee_img_6_e6986", + "legacy/d7bb09017287a5fb3e195d69e5b39741807d27ee_img_7_6837f" + ], + "gallery_urls": [ + "https://www.compass.com/m/d7bb09017287a5fb3e195d69e5b39741807d27ee_img_0_a6e03/640x480.jpg", + "https://www.compass.com/m/d7bb09017287a5fb3e195d69e5b39741807d27ee_img_1_65b59/640x480.jpg", + "https://www.compass.com/m/d7bb09017287a5fb3e195d69e5b39741807d27ee_img_2_e507b/640x480.jpg", + "https://www.compass.com/m/d7bb09017287a5fb3e195d69e5b39741807d27ee_img_3_eeb37/640x480.jpg", + "https://www.compass.com/m/d7bb09017287a5fb3e195d69e5b39741807d27ee_img_4_0aadf/640x480.jpg", + "https://www.compass.com/m/d7bb09017287a5fb3e195d69e5b39741807d27ee_img_5_545ff/640x480.jpg", + "https://www.compass.com/m/d7bb09017287a5fb3e195d69e5b39741807d27ee_img_6_e6986/640x480.jpg", + "https://www.compass.com/m/d7bb09017287a5fb3e195d69e5b39741807d27ee_img_7_6837f/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/5075-Valentia-St-Denver-CO-80238/131VYP_pid/" + }, + { + "listing_id": "2103084089786276025", + "slug": "1939-s-gilpin-st-denver-co-80210", + "title": "$810,000", + "price": 810000, + "is_rent": false, + "street": "1939 South Gilpin Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80210", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1178, + "latitude": 39.6812838, + "longitude": -104.967886, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Virtual Tour" + ], + "hero_uuid": "uuid/9689224f-49f6-417f-9817-c6aebaa76a99", + "gallery_uuids": [ + "uuid/9689224f-49f6-417f-9817-c6aebaa76a99", + "uuid/302d907f-0a99-486b-9781-fd292dfb9a23", + "uuid/43a161ed-b89e-44d2-bd6d-31c6720f5418", + "uuid/468c93e4-2c15-4691-b293-009da1821943", + "uuid/2416262a-3475-44d2-9914-ed8e9f4ebead", + "uuid/51def6b9-d82e-40d4-9001-639bc606f625", + "uuid/e11fa75b-7e83-43cd-b8ce-d73ea43b66d9" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/9689224f-49f6-417f-9817-c6aebaa76a99/1500x844.jpg", + "https://www.compass.com/m/0/302d907f-0a99-486b-9781-fd292dfb9a23/1500x844.jpg", + "https://www.compass.com/m/0/43a161ed-b89e-44d2-bd6d-31c6720f5418/1500x844.jpg", + "https://www.compass.com/m/0/468c93e4-2c15-4691-b293-009da1821943/1500x844.jpg", + "https://www.compass.com/m/0/2416262a-3475-44d2-9914-ed8e9f4ebead/1500x844.jpg", + "https://www.compass.com/m/0/51def6b9-d82e-40d4-9001-639bc606f625/1500x844.jpg", + "https://www.compass.com/m/0/e11fa75b-7e83-43cd-b8ce-d73ea43b66d9/1500x844.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/1939-S-Gilpin-St-Denver-CO-80210/12Y6JU_pid/" + }, + { + "listing_id": "2095257869239690273", + "slug": "3023-wyandot-st-denver-co-80211", + "title": "$3,200,000", + "price": 3200000, + "is_rent": false, + "street": "3023 Wyandot Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80211", + "beds": 6, + "baths": 8.0, + "baths_full": 6, + "baths_half": null, + "sqft": 6468, + "latitude": 39.7601857, + "longitude": -105.014855, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/e03c73eb-983f-4d62-8ebd-69576394919a", + "gallery_uuids": [ + "uuid/e03c73eb-983f-4d62-8ebd-69576394919a", + "uuid/4c6cfe9b-daf0-4268-bfa8-67e238ae9334", + "uuid/566a8ea9-e5c8-480b-8f72-2abc5882cba5", + "uuid/034e1cae-ae18-4946-899e-64b45dbf9573", + "uuid/00a808ba-d2f1-4eaa-8026-b682504418fb", + "uuid/535eefb8-d10f-43f4-8f24-a12386363929", + "uuid/b944a9ce-efc4-4b4a-8831-ccc8a4cb11fd", + "uuid/c0a7760b-8d05-41d5-acf8-17a350c6ad8c" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/e03c73eb-983f-4d62-8ebd-69576394919a/563x1000.jpg", + "https://www.compass.com/m/0/4c6cfe9b-daf0-4268-bfa8-67e238ae9334/563x1000.jpg", + "https://www.compass.com/m/0/566a8ea9-e5c8-480b-8f72-2abc5882cba5/558x1000.jpg", + "https://www.compass.com/m/0/034e1cae-ae18-4946-899e-64b45dbf9573/640x480.jpg", + "https://www.compass.com/m/0/00a808ba-d2f1-4eaa-8026-b682504418fb/564x1000.jpg", + "https://www.compass.com/m/0/535eefb8-d10f-43f4-8f24-a12386363929/603x1000.jpg", + "https://www.compass.com/m/0/b944a9ce-efc4-4b4a-8831-ccc8a4cb11fd/554x1000.jpg", + "https://www.compass.com/m/0/c0a7760b-8d05-41d5-acf8-17a350c6ad8c/1333x1000.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/3023-Wyandot-St-Denver-CO-80211/12NSQF_pid/" + }, + { + "listing_id": "2100134242526915801", + "slug": "1430-pierce-st-denver-co-80214", + "title": "$639,000", + "price": 639000, + "is_rent": false, + "street": "1430 Pierce Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80214", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 1895, + "latitude": 39.7390566171018, + "longitude": -105.07178864480942, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/e1a789ea-ae87-4e61-8ddd-3656299d4bd3", + "gallery_uuids": [ + "uuid/e1a789ea-ae87-4e61-8ddd-3656299d4bd3", + "uuid/0ff0b93b-80de-45ce-b8ab-993869fe475f", + "uuid/29b2d96f-244c-4c6e-b263-5a1a44137b66", + "uuid/6f67a6ee-fb8b-4b93-9a4e-9cd305c610f1", + "uuid/6a507d31-3a3a-41cd-9ed8-2c2afa766356", + "uuid/6d39a619-b91d-478d-bf7c-8e7b20984018", + "uuid/d5e1922e-8650-40f2-a093-bb3fb447e9c2", + "uuid/8401ab8f-c1c2-4004-9d1b-f096c699583d" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/e1a789ea-ae87-4e61-8ddd-3656299d4bd3/1500x999.jpg", + "https://www.compass.com/m/0/0ff0b93b-80de-45ce-b8ab-993869fe475f/1449x1000.jpg", + "https://www.compass.com/m/0/29b2d96f-244c-4c6e-b263-5a1a44137b66/1500x1000.jpg", + "https://www.compass.com/m/0/6f67a6ee-fb8b-4b93-9a4e-9cd305c610f1/1500x1000.jpg", + "https://www.compass.com/m/0/6a507d31-3a3a-41cd-9ed8-2c2afa766356/1500x1000.jpg", + "https://www.compass.com/m/0/6d39a619-b91d-478d-bf7c-8e7b20984018/1500x1000.jpg", + "https://www.compass.com/m/0/d5e1922e-8650-40f2-a093-bb3fb447e9c2/1500x987.jpg", + "https://www.compass.com/m/0/8401ab8f-c1c2-4004-9d1b-f096c699583d/1500x1000.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/1430-Pierce-St-Denver-CO-80214/12OQ2I_pid/" + }, + { + "listing_id": "2101797987477033161", + "slug": "1182-clermont-st-unit-1b-denver-co-80220", + "title": "$165,000", + "price": 165000, + "is_rent": false, + "street": "1182 Clermont Street, Unit 1B", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80220", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 454, + "latitude": 39.7342945, + "longitude": -104.9348087, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/8f220c480a5ff8a70d9de0fab5a4e934b4dd627a_img_0_50a85", + "gallery_uuids": [ + "legacy/8f220c480a5ff8a70d9de0fab5a4e934b4dd627a_img_0_50a85", + "legacy/8f220c480a5ff8a70d9de0fab5a4e934b4dd627a_img_1_6e295", + "legacy/8f220c480a5ff8a70d9de0fab5a4e934b4dd627a_img_2_040e1", + "legacy/8f220c480a5ff8a70d9de0fab5a4e934b4dd627a_img_3_c4132", + "legacy/8f220c480a5ff8a70d9de0fab5a4e934b4dd627a_img_4_ca6eb", + "legacy/8f220c480a5ff8a70d9de0fab5a4e934b4dd627a_img_5_847b2", + "legacy/8f220c480a5ff8a70d9de0fab5a4e934b4dd627a_img_6_dd45b", + "legacy/8f220c480a5ff8a70d9de0fab5a4e934b4dd627a_img_7_c28e3" + ], + "gallery_urls": [ + "https://www.compass.com/m/8f220c480a5ff8a70d9de0fab5a4e934b4dd627a_img_0_50a85/640x480.jpg", + "https://www.compass.com/m/8f220c480a5ff8a70d9de0fab5a4e934b4dd627a_img_1_6e295/640x480.jpg", + "https://www.compass.com/m/8f220c480a5ff8a70d9de0fab5a4e934b4dd627a_img_2_040e1/640x480.jpg", + "https://www.compass.com/m/8f220c480a5ff8a70d9de0fab5a4e934b4dd627a_img_3_c4132/640x480.jpg", + "https://www.compass.com/m/8f220c480a5ff8a70d9de0fab5a4e934b4dd627a_img_4_ca6eb/640x480.jpg", + "https://www.compass.com/m/8f220c480a5ff8a70d9de0fab5a4e934b4dd627a_img_5_847b2/640x480.jpg", + "https://www.compass.com/m/8f220c480a5ff8a70d9de0fab5a4e934b4dd627a_img_6_dd45b/640x480.jpg", + "https://www.compass.com/m/8f220c480a5ff8a70d9de0fab5a4e934b4dd627a_img_7_c28e3/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/1182-Clermont-St-Unit-1B-Denver-CO-80220/12UQQL_pid/" + }, + { + "listing_id": "2098215781802252161", + "slug": "45-s-dover-st-denver-co-80226", + "title": "$460,000", + "price": 460000, + "is_rent": false, + "street": "45 South Dover Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80226", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2240, + "latitude": 39.715919, + "longitude": -105.094221, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/034e1cae-ae18-4946-899e-64b45dbf9573", + "gallery_uuids": [ + "uuid/034e1cae-ae18-4946-899e-64b45dbf9573", + "uuid/61b8880f-7b16-4dbf-901a-954e2c08f414" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/034e1cae-ae18-4946-899e-64b45dbf9573/640x480.jpg", + "https://www.compass.com/m/0/61b8880f-7b16-4dbf-901a-954e2c08f414/1333x1000.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/45-S-Dover-St-Denver-CO-80226/12JVLD_pid/" + }, + { + "listing_id": "2101050348435414025", + "slug": "3364-s-elmira-ct-denver-co-80231", + "title": "$684,900", + "price": 684900, + "is_rent": false, + "street": "3364 South Elmira Court", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80231", + "beds": 4, + "baths": 3.0, + "baths_full": 1, + "baths_half": null, + "sqft": 2959, + "latitude": 39.6571147, + "longitude": -104.8723931, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/719efd0b6628643487365efd453de68e218c6769_img_0_e9cdc", + "gallery_uuids": [ + "legacy/719efd0b6628643487365efd453de68e218c6769_img_0_e9cdc", + "legacy/719efd0b6628643487365efd453de68e218c6769_img_1_72258", + "legacy/719efd0b6628643487365efd453de68e218c6769_img_2_e113f" + ], + "gallery_urls": [ + "https://www.compass.com/m/719efd0b6628643487365efd453de68e218c6769_img_0_e9cdc/640x480.jpg", + "https://www.compass.com/m/719efd0b6628643487365efd453de68e218c6769_img_1_72258/640x480.jpg", + "https://www.compass.com/m/719efd0b6628643487365efd453de68e218c6769_img_2_e113f/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/3364-S-Elmira-Ct-Denver-CO-80231/12QL84_pid/" + }, + { + "listing_id": "2082783054412235593", + "slug": "2335-glencoe-st-denver-co-80207", + "title": "$2,700,000", + "price": 2700000, + "is_rent": false, + "street": "2335 Glencoe Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80207", + "beds": 5, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 4138, + "latitude": 39.75189460000001, + "longitude": -104.9260866, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/73279ad8-8393-4066-8184-64c59ff42b85", + "gallery_uuids": [ + "uuid/73279ad8-8393-4066-8184-64c59ff42b85", + "uuid/030bfdea-2e5f-4df7-9ae9-63f3f3e077e1", + "uuid/307395c9-3141-458f-83dd-c0368dbda1e0", + "uuid/a7601044-3df5-4d01-b939-9b7502e268fe", + "uuid/94f26c9a-db79-4da5-abde-e2bc4a4afca6", + "uuid/94bb6969-1054-403c-b923-b0c5a87bc9f3", + "uuid/c8c94aef-3e76-4258-b677-e5d9c369d768", + "uuid/801dbdac-c5b2-41c4-b170-5084c897ff76" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/73279ad8-8393-4066-8184-64c59ff42b85/1500x1000.jpg", + "https://www.compass.com/m/0/030bfdea-2e5f-4df7-9ae9-63f3f3e077e1/1500x1000.jpg", + "https://www.compass.com/m/0/307395c9-3141-458f-83dd-c0368dbda1e0/1500x1000.jpg", + "https://www.compass.com/m/0/a7601044-3df5-4d01-b939-9b7502e268fe/1500x1000.jpg", + "https://www.compass.com/m/0/94f26c9a-db79-4da5-abde-e2bc4a4afca6/1500x1000.jpg", + "https://www.compass.com/m/0/94bb6969-1054-403c-b923-b0c5a87bc9f3/1500x1000.jpg", + "https://www.compass.com/m/0/c8c94aef-3e76-4258-b677-e5d9c369d768/1500x1000.jpg", + "https://www.compass.com/m/0/801dbdac-c5b2-41c4-b170-5084c897ff76/1499x1000.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/2335-Glencoe-St-Denver-CO-80207/1378LY_pid/" + }, + { + "listing_id": "2093821945682826265", + "slug": "1625-larimer-st-unit-1904-denver-co-80202", + "title": "$350,000", + "price": 350000, + "is_rent": false, + "street": "1625 Larimer Street, Unit 1904", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80202", + "beds": null, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 816, + "latitude": 39.7496168, + "longitude": -104.9973713, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/49e42a2b67a77026ee4fad0204490ad2ac1d7bbd_img_0_380f6", + "gallery_uuids": [ + "legacy/49e42a2b67a77026ee4fad0204490ad2ac1d7bbd_img_0_380f6", + "legacy/49e42a2b67a77026ee4fad0204490ad2ac1d7bbd_img_1_87e90", + "legacy/49e42a2b67a77026ee4fad0204490ad2ac1d7bbd_img_2_b9ee4", + "legacy/49e42a2b67a77026ee4fad0204490ad2ac1d7bbd_img_3_d31c1", + "legacy/49e42a2b67a77026ee4fad0204490ad2ac1d7bbd_img_4_0edb3", + "legacy/49e42a2b67a77026ee4fad0204490ad2ac1d7bbd_img_5_199e0", + "legacy/49e42a2b67a77026ee4fad0204490ad2ac1d7bbd_img_6_f1e4a", + "legacy/49e42a2b67a77026ee4fad0204490ad2ac1d7bbd_img_7_69136" + ], + "gallery_urls": [ + "https://www.compass.com/m/49e42a2b67a77026ee4fad0204490ad2ac1d7bbd_img_0_380f6/640x480.jpg", + "https://www.compass.com/m/49e42a2b67a77026ee4fad0204490ad2ac1d7bbd_img_1_87e90/640x480.jpg", + "https://www.compass.com/m/49e42a2b67a77026ee4fad0204490ad2ac1d7bbd_img_2_b9ee4/640x480.jpg", + "https://www.compass.com/m/49e42a2b67a77026ee4fad0204490ad2ac1d7bbd_img_3_d31c1/640x480.jpg", + "https://www.compass.com/m/49e42a2b67a77026ee4fad0204490ad2ac1d7bbd_img_4_0edb3/640x480.jpg", + "https://www.compass.com/m/49e42a2b67a77026ee4fad0204490ad2ac1d7bbd_img_5_199e0/640x480.jpg", + "https://www.compass.com/m/49e42a2b67a77026ee4fad0204490ad2ac1d7bbd_img_6_f1e4a/640x480.jpg", + "https://www.compass.com/m/49e42a2b67a77026ee4fad0204490ad2ac1d7bbd_img_7_69136/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/1625-Larimer-St-Unit-1904-Denver-CO-80202/12HC4M_pid/" + }, + { + "listing_id": "2103333555692744361", + "slug": "1440-little-raven-st-unit-204-denver-co-80202", + "title": "$630,000", + "price": 630000, + "is_rent": false, + "street": "1440 Little Raven Street, Unit 204", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80202", + "beds": 2, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1168, + "latitude": 39.7525126, + "longitude": -105.0060216, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/703056ce9ae4cea266bae5c9f3a59440e2462baf_img_0_5d4cf", + "gallery_uuids": [ + "legacy/703056ce9ae4cea266bae5c9f3a59440e2462baf_img_0_5d4cf", + "legacy/703056ce9ae4cea266bae5c9f3a59440e2462baf_img_1_b49fe", + "legacy/703056ce9ae4cea266bae5c9f3a59440e2462baf_img_2_a2471", + "legacy/703056ce9ae4cea266bae5c9f3a59440e2462baf_img_3_7f891", + "legacy/703056ce9ae4cea266bae5c9f3a59440e2462baf_img_4_65d8a", + "legacy/703056ce9ae4cea266bae5c9f3a59440e2462baf_img_5_7a69d", + "legacy/703056ce9ae4cea266bae5c9f3a59440e2462baf_img_6_20ba3", + "legacy/703056ce9ae4cea266bae5c9f3a59440e2462baf_img_7_b5626" + ], + "gallery_urls": [ + "https://www.compass.com/m/703056ce9ae4cea266bae5c9f3a59440e2462baf_img_0_5d4cf/640x480.jpg", + "https://www.compass.com/m/703056ce9ae4cea266bae5c9f3a59440e2462baf_img_1_b49fe/640x480.jpg", + "https://www.compass.com/m/703056ce9ae4cea266bae5c9f3a59440e2462baf_img_2_a2471/640x480.jpg", + "https://www.compass.com/m/703056ce9ae4cea266bae5c9f3a59440e2462baf_img_3_7f891/640x480.jpg", + "https://www.compass.com/m/703056ce9ae4cea266bae5c9f3a59440e2462baf_img_4_65d8a/640x480.jpg", + "https://www.compass.com/m/703056ce9ae4cea266bae5c9f3a59440e2462baf_img_5_7a69d/640x480.jpg", + "https://www.compass.com/m/703056ce9ae4cea266bae5c9f3a59440e2462baf_img_6_20ba3/640x480.jpg", + "https://www.compass.com/m/703056ce9ae4cea266bae5c9f3a59440e2462baf_img_7_b5626/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/1440-Little-Raven-St-Unit-204-Denver-CO-80202/126ZO9_pid/" + }, + { + "listing_id": "2067619857694195537", + "slug": "s-grant-st-denver-co-80203", + "title": "$1,050,000", + "price": 1050000, + "is_rent": false, + "street": "South Grant Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80203", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1881, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/33a19f1d-37a5-40ae-97ef-801bfa56be54", + "gallery_uuids": [ + "uuid/33a19f1d-37a5-40ae-97ef-801bfa56be54", + "uuid/526c02a5-d49f-4388-bc88-0c417daa81cf", + "uuid/5e169657-f90c-43f5-9e9d-b524c0f09c54", + "uuid/a48b5652-6fe0-4956-b5c2-ddce33df489f", + "uuid/ba6eca2b-a05b-4fb9-be7d-878eb032be24", + "uuid/68557e17-3665-4ada-8413-d6f3daaee034", + "uuid/35e1ba23-9ef7-4041-aa4f-9ce69f2d005c", + "uuid/641d52ff-f345-456a-a80c-82da308edb17" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/33a19f1d-37a5-40ae-97ef-801bfa56be54/1500x844.jpg", + "https://www.compass.com/m/0/526c02a5-d49f-4388-bc88-0c417daa81cf/1500x844.jpg", + "https://www.compass.com/m/0/5e169657-f90c-43f5-9e9d-b524c0f09c54/1500x844.jpg", + "https://www.compass.com/m/0/a48b5652-6fe0-4956-b5c2-ddce33df489f/1500x844.jpg", + "https://www.compass.com/m/0/ba6eca2b-a05b-4fb9-be7d-878eb032be24/1500x844.jpg", + "https://www.compass.com/m/0/68557e17-3665-4ada-8413-d6f3daaee034/1500x844.jpg", + "https://www.compass.com/m/0/35e1ba23-9ef7-4041-aa4f-9ce69f2d005c/1500x844.jpg", + "https://www.compass.com/m/0/641d52ff-f345-456a-a80c-82da308edb17/1500x844.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/S-Grant-St-Denver-CO-80203/2067619857694195537_lid/" + }, + { + "listing_id": "2102229235249527297", + "slug": "477-high-st-denver-co-80218", + "title": "$2,690,000", + "price": 2690000, + "is_rent": false, + "street": "477 High Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80218", + "beds": 5, + "baths": 5.0, + "baths_full": 3, + "baths_half": null, + "sqft": 5256, + "latitude": 39.7233967, + "longitude": -104.9651249, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "legacy/3c6be7bfc2bb8a58a76e1eb41557b225b83dce12_img_0_56427", + "gallery_uuids": [ + "legacy/3c6be7bfc2bb8a58a76e1eb41557b225b83dce12_img_0_56427", + "legacy/3c6be7bfc2bb8a58a76e1eb41557b225b83dce12_img_1_e3134", + "legacy/3c6be7bfc2bb8a58a76e1eb41557b225b83dce12_img_2_b70e2", + "legacy/3c6be7bfc2bb8a58a76e1eb41557b225b83dce12_img_3_90678", + "legacy/3c6be7bfc2bb8a58a76e1eb41557b225b83dce12_img_4_36ad8", + "legacy/3c6be7bfc2bb8a58a76e1eb41557b225b83dce12_img_5_ffc0a", + "legacy/3c6be7bfc2bb8a58a76e1eb41557b225b83dce12_img_6_2c2c0", + "legacy/3c6be7bfc2bb8a58a76e1eb41557b225b83dce12_img_7_16b06" + ], + "gallery_urls": [ + "https://www.compass.com/m/3c6be7bfc2bb8a58a76e1eb41557b225b83dce12_img_0_56427/640x480.jpg", + "https://www.compass.com/m/3c6be7bfc2bb8a58a76e1eb41557b225b83dce12_img_1_e3134/640x480.jpg", + "https://www.compass.com/m/3c6be7bfc2bb8a58a76e1eb41557b225b83dce12_img_2_b70e2/640x480.jpg", + "https://www.compass.com/m/3c6be7bfc2bb8a58a76e1eb41557b225b83dce12_img_3_90678/640x480.jpg", + "https://www.compass.com/m/3c6be7bfc2bb8a58a76e1eb41557b225b83dce12_img_4_36ad8/640x480.jpg", + "https://www.compass.com/m/3c6be7bfc2bb8a58a76e1eb41557b225b83dce12_img_5_ffc0a/640x480.jpg", + "https://www.compass.com/m/3c6be7bfc2bb8a58a76e1eb41557b225b83dce12_img_6_2c2c0/640x480.jpg", + "https://www.compass.com/m/3c6be7bfc2bb8a58a76e1eb41557b225b83dce12_img_7_16b06/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/477-High-St-Denver-CO-80218/12BI2I_pid/" + }, + { + "listing_id": "2089401443252366393", + "slug": "10-joan-dr-denver-co-80221", + "title": "$460,000", + "price": 460000, + "is_rent": false, + "street": "10 Joan Drive", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80221", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1870, + "latitude": 39.838302, + "longitude": -104.987175, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/f5545179-efe5-4c2a-acfb-d21170fc861d", + "gallery_uuids": [ + "uuid/f5545179-efe5-4c2a-acfb-d21170fc861d" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/f5545179-efe5-4c2a-acfb-d21170fc861d/1075x1000.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/10-Joan-Dr-Denver-CO-80221/12KVL5_pid/" + }, + { + "listing_id": "2066028057703971705", + "slug": "4515-stuart-st-denver-co-80212", + "title": "$1,595,000", + "price": 1595000, + "is_rent": false, + "street": "4515 Stuart Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80212", + "beds": 4, + "baths": 5.0, + "baths_full": 3, + "baths_half": null, + "sqft": 3620, + "latitude": 39.7787026, + "longitude": -105.0430247, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/3047ca06-3b18-4cc8-a338-68b32abff797", + "gallery_uuids": [ + "uuid/3047ca06-3b18-4cc8-a338-68b32abff797" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/3047ca06-3b18-4cc8-a338-68b32abff797/1447x1000.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/4515-Stuart-St-Denver-CO-80212/1299TT_pid/" + }, + { + "listing_id": "2101206004601992545", + "slug": "2620-w-110th-ave-denver-co-80234", + "title": "$659,000", + "price": 659000, + "is_rent": false, + "street": "2620 West 110th Avenue", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80234", + "beds": 3, + "baths": 3.0, + "baths_full": 1, + "baths_half": null, + "sqft": 2128, + "latitude": 39.8974994, + "longitude": -105.0198806, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Open: 5/16 11:00AM - 02:00PM" + ], + "hero_uuid": "legacy/eca853f7bda82300c27c0c080cc3e53cc1e42620_img_0_f60e8", + "gallery_uuids": [ + "legacy/eca853f7bda82300c27c0c080cc3e53cc1e42620_img_0_f60e8", + "legacy/eca853f7bda82300c27c0c080cc3e53cc1e42620_img_1_608d3", + "legacy/eca853f7bda82300c27c0c080cc3e53cc1e42620_img_2_b5445", + "legacy/eca853f7bda82300c27c0c080cc3e53cc1e42620_img_3_c03cc", + "legacy/eca853f7bda82300c27c0c080cc3e53cc1e42620_img_4_2f55c", + "legacy/eca853f7bda82300c27c0c080cc3e53cc1e42620_img_5_1fbf9", + "legacy/eca853f7bda82300c27c0c080cc3e53cc1e42620_img_6_3dee0", + "legacy/eca853f7bda82300c27c0c080cc3e53cc1e42620_img_7_a8543" + ], + "gallery_urls": [ + "https://www.compass.com/m/eca853f7bda82300c27c0c080cc3e53cc1e42620_img_0_f60e8/640x480.jpg", + "https://www.compass.com/m/eca853f7bda82300c27c0c080cc3e53cc1e42620_img_1_608d3/640x480.jpg", + "https://www.compass.com/m/eca853f7bda82300c27c0c080cc3e53cc1e42620_img_2_b5445/640x480.jpg", + "https://www.compass.com/m/eca853f7bda82300c27c0c080cc3e53cc1e42620_img_3_c03cc/640x480.jpg", + "https://www.compass.com/m/eca853f7bda82300c27c0c080cc3e53cc1e42620_img_4_2f55c/640x480.jpg", + "https://www.compass.com/m/eca853f7bda82300c27c0c080cc3e53cc1e42620_img_5_1fbf9/640x480.jpg", + "https://www.compass.com/m/eca853f7bda82300c27c0c080cc3e53cc1e42620_img_6_3dee0/640x480.jpg", + "https://www.compass.com/m/eca853f7bda82300c27c0c080cc3e53cc1e42620_img_7_a8543/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/2620-W-110th-Ave-Denver-CO-80234/1336D9_pid/" + }, + { + "listing_id": "2097970189431891505", + "slug": "3414-lawrence-st-denver-co-80205", + "title": "$1,149,000", + "price": 1149000, + "is_rent": false, + "street": "3414 Lawrence Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80205", + "beds": 4, + "baths": 5.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2808, + "latitude": 39.7654423, + "longitude": -104.9743195, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/e75845942a65b87b29fe7193a93b7d94f137b008_img_0_1b2f2", + "gallery_uuids": [ + "legacy/e75845942a65b87b29fe7193a93b7d94f137b008_img_0_1b2f2", + "legacy/e75845942a65b87b29fe7193a93b7d94f137b008_img_1_f150b", + "legacy/e75845942a65b87b29fe7193a93b7d94f137b008_img_2_3f004", + "legacy/e75845942a65b87b29fe7193a93b7d94f137b008_img_3_c4bd1", + "legacy/e75845942a65b87b29fe7193a93b7d94f137b008_img_4_bf64f", + "legacy/e75845942a65b87b29fe7193a93b7d94f137b008_img_5_989cb", + "legacy/e75845942a65b87b29fe7193a93b7d94f137b008_img_6_e9105", + "legacy/e75845942a65b87b29fe7193a93b7d94f137b008_img_7_120a4" + ], + "gallery_urls": [ + "https://www.compass.com/m/e75845942a65b87b29fe7193a93b7d94f137b008_img_0_1b2f2/640x480.jpg", + "https://www.compass.com/m/e75845942a65b87b29fe7193a93b7d94f137b008_img_1_f150b/640x480.jpg", + "https://www.compass.com/m/e75845942a65b87b29fe7193a93b7d94f137b008_img_2_3f004/640x480.jpg", + "https://www.compass.com/m/e75845942a65b87b29fe7193a93b7d94f137b008_img_3_c4bd1/640x480.jpg", + "https://www.compass.com/m/e75845942a65b87b29fe7193a93b7d94f137b008_img_4_bf64f/640x480.jpg", + "https://www.compass.com/m/e75845942a65b87b29fe7193a93b7d94f137b008_img_5_989cb/640x480.jpg", + "https://www.compass.com/m/e75845942a65b87b29fe7193a93b7d94f137b008_img_6_e9105/640x480.jpg", + "https://www.compass.com/m/e75845942a65b87b29fe7193a93b7d94f137b008_img_7_120a4/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/3414-Lawrence-St-Denver-CO-80205/26OIX7_pid/" + }, + { + "listing_id": "2103155017961921225", + "slug": "3333-e-florida-ave-unit-78-denver-co-80210", + "title": "$795,000", + "price": 795000, + "is_rent": false, + "street": "3333 East Florida Avenue, Unit 78", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80210", + "beds": 2, + "baths": 3.0, + "baths_full": 1, + "baths_half": null, + "sqft": 2604, + "latitude": 39.6898712, + "longitude": -104.9477922, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "legacy/431f0906bd3ddce5daa8a96951ddb37fd981014e_img_0_abc76", + "gallery_uuids": [ + "legacy/431f0906bd3ddce5daa8a96951ddb37fd981014e_img_0_abc76", + "legacy/431f0906bd3ddce5daa8a96951ddb37fd981014e_img_1_0c2c0", + "legacy/431f0906bd3ddce5daa8a96951ddb37fd981014e_img_2_ad56b", + "legacy/431f0906bd3ddce5daa8a96951ddb37fd981014e_img_3_52597", + "legacy/431f0906bd3ddce5daa8a96951ddb37fd981014e_img_4_f4d62", + "legacy/431f0906bd3ddce5daa8a96951ddb37fd981014e_img_5_f802a", + "legacy/431f0906bd3ddce5daa8a96951ddb37fd981014e_img_6_81b87", + "legacy/431f0906bd3ddce5daa8a96951ddb37fd981014e_img_7_3bdeb" + ], + "gallery_urls": [ + "https://www.compass.com/m/431f0906bd3ddce5daa8a96951ddb37fd981014e_img_0_abc76/640x480.jpg", + "https://www.compass.com/m/431f0906bd3ddce5daa8a96951ddb37fd981014e_img_1_0c2c0/640x480.jpg", + "https://www.compass.com/m/431f0906bd3ddce5daa8a96951ddb37fd981014e_img_2_ad56b/640x480.jpg", + "https://www.compass.com/m/431f0906bd3ddce5daa8a96951ddb37fd981014e_img_3_52597/640x480.jpg", + "https://www.compass.com/m/431f0906bd3ddce5daa8a96951ddb37fd981014e_img_4_f4d62/640x480.jpg", + "https://www.compass.com/m/431f0906bd3ddce5daa8a96951ddb37fd981014e_img_5_f802a/640x480.jpg", + "https://www.compass.com/m/431f0906bd3ddce5daa8a96951ddb37fd981014e_img_6_81b87/640x480.jpg", + "https://www.compass.com/m/431f0906bd3ddce5daa8a96951ddb37fd981014e_img_7_3bdeb/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/3333-E-Florida-Ave-Unit-78-Denver-CO-80210/127M20_pid/" + }, + { + "listing_id": "2100200675160687425", + "slug": "4225-w-13th-ave-denver-co-80204", + "title": "$799,000", + "price": 799000, + "is_rent": false, + "street": "4225 West 13th Avenue", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80204", + "beds": 3, + "baths": 4.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1818, + "latitude": 39.7367565, + "longitude": -105.0419443, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/f44206a0c98add3c5dfb2fd3191b5490416f7f62_img_0_bd60d", + "gallery_uuids": [ + "legacy/f44206a0c98add3c5dfb2fd3191b5490416f7f62_img_0_bd60d", + "legacy/f44206a0c98add3c5dfb2fd3191b5490416f7f62_img_1_cc549", + "legacy/f44206a0c98add3c5dfb2fd3191b5490416f7f62_img_2_cff20", + "legacy/f44206a0c98add3c5dfb2fd3191b5490416f7f62_img_3_fd386", + "legacy/f44206a0c98add3c5dfb2fd3191b5490416f7f62_img_4_83355", + "legacy/f44206a0c98add3c5dfb2fd3191b5490416f7f62_img_5_dc29f", + "legacy/f44206a0c98add3c5dfb2fd3191b5490416f7f62_img_6_75195", + "legacy/f44206a0c98add3c5dfb2fd3191b5490416f7f62_img_7_1295b" + ], + "gallery_urls": [ + "https://www.compass.com/m/f44206a0c98add3c5dfb2fd3191b5490416f7f62_img_0_bd60d/640x480.jpg", + "https://www.compass.com/m/f44206a0c98add3c5dfb2fd3191b5490416f7f62_img_1_cc549/640x480.jpg", + "https://www.compass.com/m/f44206a0c98add3c5dfb2fd3191b5490416f7f62_img_2_cff20/640x480.jpg", + "https://www.compass.com/m/f44206a0c98add3c5dfb2fd3191b5490416f7f62_img_3_fd386/640x480.jpg", + "https://www.compass.com/m/f44206a0c98add3c5dfb2fd3191b5490416f7f62_img_4_83355/640x480.jpg", + "https://www.compass.com/m/f44206a0c98add3c5dfb2fd3191b5490416f7f62_img_5_dc29f/640x480.jpg", + "https://www.compass.com/m/f44206a0c98add3c5dfb2fd3191b5490416f7f62_img_6_75195/640x480.jpg", + "https://www.compass.com/m/f44206a0c98add3c5dfb2fd3191b5490416f7f62_img_7_1295b/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/4225-W-13th-Ave-Denver-CO-80204/27FCY4_pid/" + }, + { + "listing_id": "2101033665973524889", + "slug": "4200-w-17th-ave-unit-614-denver-co-80204", + "title": "$729,000", + "price": 729000, + "is_rent": false, + "street": "4200 West 17th Avenue, Unit 614", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80204", + "beds": null, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 954, + "latitude": 39.7436349, + "longitude": -105.0422713, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/6998fba56f26383144af5aa87d3e534cd6bb21f1_img_0_96cea", + "gallery_uuids": [ + "legacy/6998fba56f26383144af5aa87d3e534cd6bb21f1_img_0_96cea", + "legacy/6998fba56f26383144af5aa87d3e534cd6bb21f1_img_1_dc922", + "legacy/6998fba56f26383144af5aa87d3e534cd6bb21f1_img_2_7b213", + "legacy/6998fba56f26383144af5aa87d3e534cd6bb21f1_img_3_9ed4b", + "legacy/6998fba56f26383144af5aa87d3e534cd6bb21f1_img_4_f4a31", + "legacy/6998fba56f26383144af5aa87d3e534cd6bb21f1_img_5_31697", + "legacy/6998fba56f26383144af5aa87d3e534cd6bb21f1_img_6_88bf6", + "legacy/6998fba56f26383144af5aa87d3e534cd6bb21f1_img_7_5b7d0" + ], + "gallery_urls": [ + "https://www.compass.com/m/6998fba56f26383144af5aa87d3e534cd6bb21f1_img_0_96cea/640x480.jpg", + "https://www.compass.com/m/6998fba56f26383144af5aa87d3e534cd6bb21f1_img_1_dc922/640x480.jpg", + "https://www.compass.com/m/6998fba56f26383144af5aa87d3e534cd6bb21f1_img_2_7b213/640x480.jpg", + "https://www.compass.com/m/6998fba56f26383144af5aa87d3e534cd6bb21f1_img_3_9ed4b/640x480.jpg", + "https://www.compass.com/m/6998fba56f26383144af5aa87d3e534cd6bb21f1_img_4_f4a31/640x480.jpg", + "https://www.compass.com/m/6998fba56f26383144af5aa87d3e534cd6bb21f1_img_5_31697/640x480.jpg", + "https://www.compass.com/m/6998fba56f26383144af5aa87d3e534cd6bb21f1_img_6_88bf6/640x480.jpg", + "https://www.compass.com/m/6998fba56f26383144af5aa87d3e534cd6bb21f1_img_7_5b7d0/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/4200-W-17th-Ave-Unit-614-Denver-CO-80204/12TGJ6_pid/" + }, + { + "listing_id": "2100384433033349817", + "slug": "undisclosed-address-denver-co-80203", + "title": "$297,000", + "price": 297000, + "is_rent": false, + "street": "Undisclosed Address", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80203", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 559, + "latitude": 39.7389696, + "longitude": -104.9790907, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/1dd6336c954b0573a0c910eb02dee01d66db0a85_img_0_f9427", + "gallery_uuids": [ + "legacy/1dd6336c954b0573a0c910eb02dee01d66db0a85_img_0_f9427", + "legacy/1dd6336c954b0573a0c910eb02dee01d66db0a85_img_1_e83bb", + "legacy/1dd6336c954b0573a0c910eb02dee01d66db0a85_img_2_72252", + "legacy/1dd6336c954b0573a0c910eb02dee01d66db0a85_img_3_f5265", + "legacy/1dd6336c954b0573a0c910eb02dee01d66db0a85_img_4_f380b", + "legacy/1dd6336c954b0573a0c910eb02dee01d66db0a85_img_5_b49a5", + "legacy/1dd6336c954b0573a0c910eb02dee01d66db0a85_img_6_a13e6", + "legacy/1dd6336c954b0573a0c910eb02dee01d66db0a85_img_7_af1c9" + ], + "gallery_urls": [ + "https://www.compass.com/m/1dd6336c954b0573a0c910eb02dee01d66db0a85_img_0_f9427/640x480.jpg", + "https://www.compass.com/m/1dd6336c954b0573a0c910eb02dee01d66db0a85_img_1_e83bb/640x480.jpg", + "https://www.compass.com/m/1dd6336c954b0573a0c910eb02dee01d66db0a85_img_2_72252/640x480.jpg", + "https://www.compass.com/m/1dd6336c954b0573a0c910eb02dee01d66db0a85_img_3_f5265/640x480.jpg", + "https://www.compass.com/m/1dd6336c954b0573a0c910eb02dee01d66db0a85_img_4_f380b/640x480.jpg", + "https://www.compass.com/m/1dd6336c954b0573a0c910eb02dee01d66db0a85_img_5_b49a5/640x480.jpg", + "https://www.compass.com/m/1dd6336c954b0573a0c910eb02dee01d66db0a85_img_6_a13e6/640x480.jpg", + "https://www.compass.com/m/1dd6336c954b0573a0c910eb02dee01d66db0a85_img_7_af1c9/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/Undisclosed-Address-Denver-CO-80203/2100384433033349817_lid/" + }, + { + "listing_id": "2100147041265506201", + "slug": "2500-walnut-st-unit-201-denver-co-80205", + "title": "$548,999", + "price": 548999, + "is_rent": false, + "street": "2500 Walnut Street, Unit 201", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80205", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1027, + "latitude": 39.7582871, + "longitude": -104.9869869, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/14a000d8b9b2c22ec1535db0f7200da74da714cb_img_0_b6f8e", + "gallery_uuids": [ + "legacy/14a000d8b9b2c22ec1535db0f7200da74da714cb_img_0_b6f8e", + "legacy/14a000d8b9b2c22ec1535db0f7200da74da714cb_img_1_218eb", + "legacy/14a000d8b9b2c22ec1535db0f7200da74da714cb_img_2_5a291", + "legacy/14a000d8b9b2c22ec1535db0f7200da74da714cb_img_3_40220", + "legacy/14a000d8b9b2c22ec1535db0f7200da74da714cb_img_4_75ecc", + "legacy/14a000d8b9b2c22ec1535db0f7200da74da714cb_img_5_d6d74", + "legacy/14a000d8b9b2c22ec1535db0f7200da74da714cb_img_6_88fbb", + "legacy/14a000d8b9b2c22ec1535db0f7200da74da714cb_img_7_aeb05" + ], + "gallery_urls": [ + "https://www.compass.com/m/14a000d8b9b2c22ec1535db0f7200da74da714cb_img_0_b6f8e/640x480.jpg", + "https://www.compass.com/m/14a000d8b9b2c22ec1535db0f7200da74da714cb_img_1_218eb/640x480.jpg", + "https://www.compass.com/m/14a000d8b9b2c22ec1535db0f7200da74da714cb_img_2_5a291/640x480.jpg", + "https://www.compass.com/m/14a000d8b9b2c22ec1535db0f7200da74da714cb_img_3_40220/640x480.jpg", + "https://www.compass.com/m/14a000d8b9b2c22ec1535db0f7200da74da714cb_img_4_75ecc/640x480.jpg", + "https://www.compass.com/m/14a000d8b9b2c22ec1535db0f7200da74da714cb_img_5_d6d74/640x480.jpg", + "https://www.compass.com/m/14a000d8b9b2c22ec1535db0f7200da74da714cb_img_6_88fbb/640x480.jpg", + "https://www.compass.com/m/14a000d8b9b2c22ec1535db0f7200da74da714cb_img_7_aeb05/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/2500-Walnut-St-Unit-201-Denver-CO-80205/12DZQL_pid/" + }, + { + "listing_id": "2099646221877080193", + "slug": "9559-e-iowa-cir-denver-co-80247", + "title": "$467,000", + "price": 467000, + "is_rent": false, + "street": "9559 East Iowa Circle", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80247", + "beds": 4, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1650, + "latitude": 39.686774, + "longitude": -104.876926, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/854fceed31ca539adeefc2e4aeb068bc1030fe11_img_0_d20a2", + "gallery_uuids": [ + "legacy/854fceed31ca539adeefc2e4aeb068bc1030fe11_img_0_d20a2", + "legacy/854fceed31ca539adeefc2e4aeb068bc1030fe11_img_1_5a433", + "legacy/854fceed31ca539adeefc2e4aeb068bc1030fe11_img_2_ec6fa", + "legacy/854fceed31ca539adeefc2e4aeb068bc1030fe11_img_3_39d00", + "legacy/854fceed31ca539adeefc2e4aeb068bc1030fe11_img_4_664a6", + "legacy/854fceed31ca539adeefc2e4aeb068bc1030fe11_img_5_f005d", + "legacy/854fceed31ca539adeefc2e4aeb068bc1030fe11_img_6_973c8", + "legacy/854fceed31ca539adeefc2e4aeb068bc1030fe11_img_7_e819b" + ], + "gallery_urls": [ + "https://www.compass.com/m/854fceed31ca539adeefc2e4aeb068bc1030fe11_img_0_d20a2/640x480.jpg", + "https://www.compass.com/m/854fceed31ca539adeefc2e4aeb068bc1030fe11_img_1_5a433/640x480.jpg", + "https://www.compass.com/m/854fceed31ca539adeefc2e4aeb068bc1030fe11_img_2_ec6fa/640x480.jpg", + "https://www.compass.com/m/854fceed31ca539adeefc2e4aeb068bc1030fe11_img_3_39d00/640x480.jpg", + "https://www.compass.com/m/854fceed31ca539adeefc2e4aeb068bc1030fe11_img_4_664a6/640x480.jpg", + "https://www.compass.com/m/854fceed31ca539adeefc2e4aeb068bc1030fe11_img_5_f005d/640x480.jpg", + "https://www.compass.com/m/854fceed31ca539adeefc2e4aeb068bc1030fe11_img_6_973c8/640x480.jpg", + "https://www.compass.com/m/854fceed31ca539adeefc2e4aeb068bc1030fe11_img_7_e819b/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/9559-E-Iowa-Cir-Denver-CO-80247/1307GN_pid/" + }, + { + "listing_id": "2082272035478937921", + "slug": "3800-w-17th-ave-denver-co-80204", + "title": "$999,000", + "price": 999000, + "is_rent": false, + "street": "3800 West 17th Avenue", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80204", + "beds": 4, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2683, + "latitude": 39.7437578, + "longitude": -105.0373173, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/853839e7a65e1e4739233885ec2799e613e45917_img_0_57196", + "gallery_uuids": [ + "legacy/853839e7a65e1e4739233885ec2799e613e45917_img_0_57196", + "legacy/853839e7a65e1e4739233885ec2799e613e45917_img_1_3bf34", + "legacy/853839e7a65e1e4739233885ec2799e613e45917_img_2_bd0f6", + "legacy/853839e7a65e1e4739233885ec2799e613e45917_img_3_b127b", + "legacy/853839e7a65e1e4739233885ec2799e613e45917_img_4_3d005", + "legacy/853839e7a65e1e4739233885ec2799e613e45917_img_5_ffe7a", + "legacy/853839e7a65e1e4739233885ec2799e613e45917_img_6_1c616", + "legacy/853839e7a65e1e4739233885ec2799e613e45917_img_7_28806" + ], + "gallery_urls": [ + "https://www.compass.com/m/853839e7a65e1e4739233885ec2799e613e45917_img_0_57196/640x480.jpg", + "https://www.compass.com/m/853839e7a65e1e4739233885ec2799e613e45917_img_1_3bf34/640x480.jpg", + "https://www.compass.com/m/853839e7a65e1e4739233885ec2799e613e45917_img_2_bd0f6/640x480.jpg", + "https://www.compass.com/m/853839e7a65e1e4739233885ec2799e613e45917_img_3_b127b/640x480.jpg", + "https://www.compass.com/m/853839e7a65e1e4739233885ec2799e613e45917_img_4_3d005/640x480.jpg", + "https://www.compass.com/m/853839e7a65e1e4739233885ec2799e613e45917_img_5_ffe7a/640x480.jpg", + "https://www.compass.com/m/853839e7a65e1e4739233885ec2799e613e45917_img_6_1c616/640x480.jpg", + "https://www.compass.com/m/853839e7a65e1e4739233885ec2799e613e45917_img_7_28806/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/3800-W-17th-Ave-Denver-CO-80204/12334O_pid/" + }, + { + "listing_id": "2100386460878470569", + "slug": "2056-s-lincoln-st-denver-co-80210", + "title": "$750,000", + "price": 750000, + "is_rent": false, + "street": "2056 South Lincoln Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80210", + "beds": 3, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1536, + "latitude": 39.6792446, + "longitude": -104.9860969, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/64b9164d445de938c8591e7ae484a9b09bd3d94c_img_0_4f0a5", + "gallery_uuids": [ + "legacy/64b9164d445de938c8591e7ae484a9b09bd3d94c_img_0_4f0a5", + "legacy/64b9164d445de938c8591e7ae484a9b09bd3d94c_img_1_0d671", + "legacy/64b9164d445de938c8591e7ae484a9b09bd3d94c_img_2_b1faa", + "legacy/64b9164d445de938c8591e7ae484a9b09bd3d94c_img_3_62e96", + "legacy/64b9164d445de938c8591e7ae484a9b09bd3d94c_img_4_58c14", + "legacy/64b9164d445de938c8591e7ae484a9b09bd3d94c_img_5_384ca", + "legacy/64b9164d445de938c8591e7ae484a9b09bd3d94c_img_6_5540e", + "legacy/64b9164d445de938c8591e7ae484a9b09bd3d94c_img_7_fa261" + ], + "gallery_urls": [ + "https://www.compass.com/m/64b9164d445de938c8591e7ae484a9b09bd3d94c_img_0_4f0a5/640x480.jpg", + "https://www.compass.com/m/64b9164d445de938c8591e7ae484a9b09bd3d94c_img_1_0d671/640x480.jpg", + "https://www.compass.com/m/64b9164d445de938c8591e7ae484a9b09bd3d94c_img_2_b1faa/640x480.jpg", + "https://www.compass.com/m/64b9164d445de938c8591e7ae484a9b09bd3d94c_img_3_62e96/640x480.jpg", + "https://www.compass.com/m/64b9164d445de938c8591e7ae484a9b09bd3d94c_img_4_58c14/640x480.jpg", + "https://www.compass.com/m/64b9164d445de938c8591e7ae484a9b09bd3d94c_img_5_384ca/640x480.jpg", + "https://www.compass.com/m/64b9164d445de938c8591e7ae484a9b09bd3d94c_img_6_5540e/640x480.jpg", + "https://www.compass.com/m/64b9164d445de938c8591e7ae484a9b09bd3d94c_img_7_fa261/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/2056-S-Lincoln-St-Denver-CO-80210/12YVRG_pid/" + }, + { + "listing_id": "2098901119248348881", + "slug": "566-wolff-st-denver-co-80204", + "title": "$380,000", + "price": 380000, + "is_rent": false, + "street": "566 Wolff Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80204", + "beds": 4, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1676, + "latitude": 39.7249392, + "longitude": -105.0483213, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/ced5210984082a4ad35cfe53ac5c397eb7387d11_img_0_a07f9", + "gallery_uuids": [ + "legacy/ced5210984082a4ad35cfe53ac5c397eb7387d11_img_0_a07f9", + "legacy/ced5210984082a4ad35cfe53ac5c397eb7387d11_img_1_a7520", + "legacy/ced5210984082a4ad35cfe53ac5c397eb7387d11_img_2_4b54d", + "legacy/ced5210984082a4ad35cfe53ac5c397eb7387d11_img_3_8fa5e", + "legacy/ced5210984082a4ad35cfe53ac5c397eb7387d11_img_4_2500e", + "legacy/ced5210984082a4ad35cfe53ac5c397eb7387d11_img_5_2972b", + "legacy/ced5210984082a4ad35cfe53ac5c397eb7387d11_img_6_93d10", + "legacy/ced5210984082a4ad35cfe53ac5c397eb7387d11_img_7_96a59" + ], + "gallery_urls": [ + "https://www.compass.com/m/ced5210984082a4ad35cfe53ac5c397eb7387d11_img_0_a07f9/640x480.jpg", + "https://www.compass.com/m/ced5210984082a4ad35cfe53ac5c397eb7387d11_img_1_a7520/640x480.jpg", + "https://www.compass.com/m/ced5210984082a4ad35cfe53ac5c397eb7387d11_img_2_4b54d/640x480.jpg", + "https://www.compass.com/m/ced5210984082a4ad35cfe53ac5c397eb7387d11_img_3_8fa5e/640x480.jpg", + "https://www.compass.com/m/ced5210984082a4ad35cfe53ac5c397eb7387d11_img_4_2500e/640x480.jpg", + "https://www.compass.com/m/ced5210984082a4ad35cfe53ac5c397eb7387d11_img_5_2972b/640x480.jpg", + "https://www.compass.com/m/ced5210984082a4ad35cfe53ac5c397eb7387d11_img_6_93d10/640x480.jpg", + "https://www.compass.com/m/ced5210984082a4ad35cfe53ac5c397eb7387d11_img_7_96a59/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/566-Wolff-St-Denver-CO-80204/12D59Q_pid/" + }, + { + "listing_id": "2095840823390943449", + "slug": "2417-s-lafayette-st-denver-co-80210", + "title": "$1,169,000", + "price": 1169000, + "is_rent": false, + "street": "2417 South Lafayette Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80210", + "beds": 3, + "baths": 4.0, + "baths_full": 1, + "baths_half": null, + "sqft": 2365, + "latitude": 39.6727013, + "longitude": -104.9714003, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/bc51e1ebcbf28239131e98dbbeae513277f1d10a_img_0_f9b35", + "gallery_uuids": [ + "legacy/bc51e1ebcbf28239131e98dbbeae513277f1d10a_img_0_f9b35", + "legacy/bc51e1ebcbf28239131e98dbbeae513277f1d10a_img_1_335cc", + "legacy/bc51e1ebcbf28239131e98dbbeae513277f1d10a_img_2_2a610", + "legacy/bc51e1ebcbf28239131e98dbbeae513277f1d10a_img_3_10687", + "legacy/bc51e1ebcbf28239131e98dbbeae513277f1d10a_img_4_8daca", + "legacy/bc51e1ebcbf28239131e98dbbeae513277f1d10a_img_5_a6e67", + "legacy/bc51e1ebcbf28239131e98dbbeae513277f1d10a_img_6_746cc", + "legacy/bc51e1ebcbf28239131e98dbbeae513277f1d10a_img_7_52f40" + ], + "gallery_urls": [ + "https://www.compass.com/m/bc51e1ebcbf28239131e98dbbeae513277f1d10a_img_0_f9b35/640x480.jpg", + "https://www.compass.com/m/bc51e1ebcbf28239131e98dbbeae513277f1d10a_img_1_335cc/640x480.jpg", + "https://www.compass.com/m/bc51e1ebcbf28239131e98dbbeae513277f1d10a_img_2_2a610/640x480.jpg", + "https://www.compass.com/m/bc51e1ebcbf28239131e98dbbeae513277f1d10a_img_3_10687/640x480.jpg", + "https://www.compass.com/m/bc51e1ebcbf28239131e98dbbeae513277f1d10a_img_4_8daca/640x480.jpg", + "https://www.compass.com/m/bc51e1ebcbf28239131e98dbbeae513277f1d10a_img_5_a6e67/640x480.jpg", + "https://www.compass.com/m/bc51e1ebcbf28239131e98dbbeae513277f1d10a_img_6_746cc/640x480.jpg", + "https://www.compass.com/m/bc51e1ebcbf28239131e98dbbeae513277f1d10a_img_7_52f40/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/2417-S-Lafayette-St-Denver-CO-80210/12OHAR_pid/" + }, + { + "listing_id": "2098142923051051441", + "slug": "1350-josephine-st-unit-206-denver-co-80206", + "title": "$234,900", + "price": 234900, + "is_rent": false, + "street": "1350 Josephine Street, Unit 206", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80206", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 580, + "latitude": 39.7377934, + "longitude": -104.9583387, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/1c951cd1a1bd03ab0131adcbebea694e797d7d7f_img_0_e6025", + "gallery_uuids": [ + "legacy/1c951cd1a1bd03ab0131adcbebea694e797d7d7f_img_0_e6025", + "legacy/1c951cd1a1bd03ab0131adcbebea694e797d7d7f_img_1_8f467", + "legacy/1c951cd1a1bd03ab0131adcbebea694e797d7d7f_img_2_0896f", + "legacy/1c951cd1a1bd03ab0131adcbebea694e797d7d7f_img_3_d63ce", + "legacy/1c951cd1a1bd03ab0131adcbebea694e797d7d7f_img_4_3cf74", + "legacy/1c951cd1a1bd03ab0131adcbebea694e797d7d7f_img_5_bc13c", + "legacy/1c951cd1a1bd03ab0131adcbebea694e797d7d7f_img_6_5c282", + "legacy/1c951cd1a1bd03ab0131adcbebea694e797d7d7f_img_7_d1376" + ], + "gallery_urls": [ + "https://www.compass.com/m/1c951cd1a1bd03ab0131adcbebea694e797d7d7f_img_0_e6025/640x480.jpg", + "https://www.compass.com/m/1c951cd1a1bd03ab0131adcbebea694e797d7d7f_img_1_8f467/640x480.jpg", + "https://www.compass.com/m/1c951cd1a1bd03ab0131adcbebea694e797d7d7f_img_2_0896f/640x480.jpg", + "https://www.compass.com/m/1c951cd1a1bd03ab0131adcbebea694e797d7d7f_img_3_d63ce/640x480.jpg", + "https://www.compass.com/m/1c951cd1a1bd03ab0131adcbebea694e797d7d7f_img_4_3cf74/640x480.jpg", + "https://www.compass.com/m/1c951cd1a1bd03ab0131adcbebea694e797d7d7f_img_5_bc13c/640x480.jpg", + "https://www.compass.com/m/1c951cd1a1bd03ab0131adcbebea694e797d7d7f_img_6_5c282/640x480.jpg", + "https://www.compass.com/m/1c951cd1a1bd03ab0131adcbebea694e797d7d7f_img_7_d1376/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/1350-Josephine-St-Unit-206-Denver-CO-80206/12T823_pid/" + }, + { + "listing_id": "2099423527520637969", + "slug": "1431-s-glencoe-st-denver-co-80222", + "title": "$650,000", + "price": 650000, + "is_rent": false, + "street": "1431 South Glencoe Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80222", + "beds": 3, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1094, + "latitude": 39.6905587, + "longitude": -104.9266341, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/322c404d26d0a56acce21b2bd08a0fa4703e910f_img_0_9e657", + "gallery_uuids": [ + "legacy/322c404d26d0a56acce21b2bd08a0fa4703e910f_img_0_9e657", + "legacy/322c404d26d0a56acce21b2bd08a0fa4703e910f_img_1_35f90", + "legacy/322c404d26d0a56acce21b2bd08a0fa4703e910f_img_2_2cb6e", + "legacy/322c404d26d0a56acce21b2bd08a0fa4703e910f_img_3_50d11", + "legacy/322c404d26d0a56acce21b2bd08a0fa4703e910f_img_4_fc8bf", + "legacy/322c404d26d0a56acce21b2bd08a0fa4703e910f_img_5_8194b", + "legacy/322c404d26d0a56acce21b2bd08a0fa4703e910f_img_6_b57d4", + "legacy/322c404d26d0a56acce21b2bd08a0fa4703e910f_img_7_fc4d7" + ], + "gallery_urls": [ + "https://www.compass.com/m/322c404d26d0a56acce21b2bd08a0fa4703e910f_img_0_9e657/640x480.jpg", + "https://www.compass.com/m/322c404d26d0a56acce21b2bd08a0fa4703e910f_img_1_35f90/640x480.jpg", + "https://www.compass.com/m/322c404d26d0a56acce21b2bd08a0fa4703e910f_img_2_2cb6e/640x480.jpg", + "https://www.compass.com/m/322c404d26d0a56acce21b2bd08a0fa4703e910f_img_3_50d11/640x480.jpg", + "https://www.compass.com/m/322c404d26d0a56acce21b2bd08a0fa4703e910f_img_4_fc8bf/640x480.jpg", + "https://www.compass.com/m/322c404d26d0a56acce21b2bd08a0fa4703e910f_img_5_8194b/640x480.jpg", + "https://www.compass.com/m/322c404d26d0a56acce21b2bd08a0fa4703e910f_img_6_b57d4/640x480.jpg", + "https://www.compass.com/m/322c404d26d0a56acce21b2bd08a0fa4703e910f_img_7_fc4d7/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/1431-S-Glencoe-St-Denver-CO-80222/12OTSI_pid/" + }, + { + "listing_id": "2100991656814388401", + "slug": "4410-raritan-st-denver-co-80211", + "title": "$450,000", + "price": 450000, + "is_rent": false, + "street": "4410 Raritan Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80211", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 758, + "latitude": 39.7768808, + "longitude": -105.0088291, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/f2102e33a28f3798bf47334a6563873f7d2efe1e_img_0_87242", + "gallery_uuids": [ + "legacy/f2102e33a28f3798bf47334a6563873f7d2efe1e_img_0_87242", + "legacy/f2102e33a28f3798bf47334a6563873f7d2efe1e_img_1_316d5", + "legacy/f2102e33a28f3798bf47334a6563873f7d2efe1e_img_2_3e69c", + "legacy/f2102e33a28f3798bf47334a6563873f7d2efe1e_img_3_c6d34", + "legacy/f2102e33a28f3798bf47334a6563873f7d2efe1e_img_4_d840e", + "legacy/f2102e33a28f3798bf47334a6563873f7d2efe1e_img_5_8568b", + "legacy/f2102e33a28f3798bf47334a6563873f7d2efe1e_img_6_e4f88", + "legacy/f2102e33a28f3798bf47334a6563873f7d2efe1e_img_7_7dc8e" + ], + "gallery_urls": [ + "https://www.compass.com/m/f2102e33a28f3798bf47334a6563873f7d2efe1e_img_0_87242/640x480.jpg", + "https://www.compass.com/m/f2102e33a28f3798bf47334a6563873f7d2efe1e_img_1_316d5/640x480.jpg", + "https://www.compass.com/m/f2102e33a28f3798bf47334a6563873f7d2efe1e_img_2_3e69c/640x480.jpg", + "https://www.compass.com/m/f2102e33a28f3798bf47334a6563873f7d2efe1e_img_3_c6d34/640x480.jpg", + "https://www.compass.com/m/f2102e33a28f3798bf47334a6563873f7d2efe1e_img_4_d840e/640x480.jpg", + "https://www.compass.com/m/f2102e33a28f3798bf47334a6563873f7d2efe1e_img_5_8568b/640x480.jpg", + "https://www.compass.com/m/f2102e33a28f3798bf47334a6563873f7d2efe1e_img_6_e4f88/640x480.jpg", + "https://www.compass.com/m/f2102e33a28f3798bf47334a6563873f7d2efe1e_img_7_7dc8e/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/4410-Raritan-St-Denver-CO-80211/128ZXX_pid/" + }, + { + "listing_id": "2100484537790562329", + "slug": "590-race-st-denver-co-80206", + "title": "$2,750,000", + "price": 2750000, + "is_rent": false, + "street": "590 Race Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80206", + "beds": 5, + "baths": 5.0, + "baths_full": 3, + "baths_half": null, + "sqft": 4093, + "latitude": 39.7254058, + "longitude": -104.9630256, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Virtual Tour" + ], + "hero_uuid": "legacy/dc66a9704d70bfff83b8a7f53a46850cf97a8ba6_img_0_3020f", + "gallery_uuids": [ + "legacy/dc66a9704d70bfff83b8a7f53a46850cf97a8ba6_img_0_3020f", + "legacy/dc66a9704d70bfff83b8a7f53a46850cf97a8ba6_img_1_a5057", + "legacy/dc66a9704d70bfff83b8a7f53a46850cf97a8ba6_img_2_6d747", + "legacy/dc66a9704d70bfff83b8a7f53a46850cf97a8ba6_img_3_5957a", + "legacy/dc66a9704d70bfff83b8a7f53a46850cf97a8ba6_img_4_c9ee7", + "legacy/dc66a9704d70bfff83b8a7f53a46850cf97a8ba6_img_5_fa559", + "legacy/dc66a9704d70bfff83b8a7f53a46850cf97a8ba6_img_6_4a043", + "legacy/dc66a9704d70bfff83b8a7f53a46850cf97a8ba6_img_7_9d47f" + ], + "gallery_urls": [ + "https://www.compass.com/m/dc66a9704d70bfff83b8a7f53a46850cf97a8ba6_img_0_3020f/640x480.jpg", + "https://www.compass.com/m/dc66a9704d70bfff83b8a7f53a46850cf97a8ba6_img_1_a5057/640x480.jpg", + "https://www.compass.com/m/dc66a9704d70bfff83b8a7f53a46850cf97a8ba6_img_2_6d747/640x480.jpg", + "https://www.compass.com/m/dc66a9704d70bfff83b8a7f53a46850cf97a8ba6_img_3_5957a/640x480.jpg", + "https://www.compass.com/m/dc66a9704d70bfff83b8a7f53a46850cf97a8ba6_img_4_c9ee7/640x480.jpg", + "https://www.compass.com/m/dc66a9704d70bfff83b8a7f53a46850cf97a8ba6_img_5_fa559/640x480.jpg", + "https://www.compass.com/m/dc66a9704d70bfff83b8a7f53a46850cf97a8ba6_img_6_4a043/640x480.jpg", + "https://www.compass.com/m/dc66a9704d70bfff83b8a7f53a46850cf97a8ba6_img_7_9d47f/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/590-Race-St-Denver-CO-80206/124VTN_pid/" + }, + { + "listing_id": "2098047198749416809", + "slug": "4128-chase-st-denver-co-80212", + "title": "$1,750,000", + "price": 1750000, + "is_rent": false, + "street": "4128 Chase Street", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80212", + "beds": 4, + "baths": 5.0, + "baths_full": 2, + "baths_half": null, + "sqft": 4528, + "latitude": 39.7735498, + "longitude": -105.0564036, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/44d0fb722bd23e0d55b03cb4264e61b609ffb840_img_0_6b482", + "gallery_uuids": [ + "legacy/44d0fb722bd23e0d55b03cb4264e61b609ffb840_img_0_6b482", + "legacy/44d0fb722bd23e0d55b03cb4264e61b609ffb840_img_1_d21e3", + "legacy/44d0fb722bd23e0d55b03cb4264e61b609ffb840_img_2_59505", + "legacy/44d0fb722bd23e0d55b03cb4264e61b609ffb840_img_3_327f8", + "legacy/44d0fb722bd23e0d55b03cb4264e61b609ffb840_img_4_4ed91", + "legacy/44d0fb722bd23e0d55b03cb4264e61b609ffb840_img_5_54812", + "legacy/44d0fb722bd23e0d55b03cb4264e61b609ffb840_img_6_8c98e", + "legacy/44d0fb722bd23e0d55b03cb4264e61b609ffb840_img_7_0089a" + ], + "gallery_urls": [ + "https://www.compass.com/m/44d0fb722bd23e0d55b03cb4264e61b609ffb840_img_0_6b482/640x480.jpg", + "https://www.compass.com/m/44d0fb722bd23e0d55b03cb4264e61b609ffb840_img_1_d21e3/640x480.jpg", + "https://www.compass.com/m/44d0fb722bd23e0d55b03cb4264e61b609ffb840_img_2_59505/640x480.jpg", + "https://www.compass.com/m/44d0fb722bd23e0d55b03cb4264e61b609ffb840_img_3_327f8/640x480.jpg", + "https://www.compass.com/m/44d0fb722bd23e0d55b03cb4264e61b609ffb840_img_4_4ed91/640x480.jpg", + "https://www.compass.com/m/44d0fb722bd23e0d55b03cb4264e61b609ffb840_img_5_54812/640x480.jpg", + "https://www.compass.com/m/44d0fb722bd23e0d55b03cb4264e61b609ffb840_img_6_8c98e/640x480.jpg", + "https://www.compass.com/m/44d0fb722bd23e0d55b03cb4264e61b609ffb840_img_7_0089a/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/4128-Chase-St-Denver-CO-80212/126677_pid/" + }, + { + "listing_id": "2100237732100082185", + "slug": "3101-w-18th-ave-denver-co-80204", + "title": "$769,000", + "price": 769000, + "is_rent": false, + "street": "3101 West 18th Avenue", + "neighborhood": "", + "city": "Denver", + "state": "CO", + "zip": "80204", + "beds": 3, + "baths": 4.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1762, + "latitude": 39.7453179, + "longitude": -105.0270625, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/a9a3fa156897f7f25d26e01347340ea84ee9c858_img_0_96466", + "gallery_uuids": [ + "legacy/a9a3fa156897f7f25d26e01347340ea84ee9c858_img_0_96466", + "legacy/a9a3fa156897f7f25d26e01347340ea84ee9c858_img_1_cfd3e", + "legacy/a9a3fa156897f7f25d26e01347340ea84ee9c858_img_2_7fe4e", + "legacy/a9a3fa156897f7f25d26e01347340ea84ee9c858_img_3_de651", + "legacy/a9a3fa156897f7f25d26e01347340ea84ee9c858_img_4_c5a58", + "legacy/a9a3fa156897f7f25d26e01347340ea84ee9c858_img_5_8de3d", + "legacy/a9a3fa156897f7f25d26e01347340ea84ee9c858_img_6_c1f63", + "legacy/a9a3fa156897f7f25d26e01347340ea84ee9c858_img_7_93a97" + ], + "gallery_urls": [ + "https://www.compass.com/m/a9a3fa156897f7f25d26e01347340ea84ee9c858_img_0_96466/640x480.jpg", + "https://www.compass.com/m/a9a3fa156897f7f25d26e01347340ea84ee9c858_img_1_cfd3e/640x480.jpg", + "https://www.compass.com/m/a9a3fa156897f7f25d26e01347340ea84ee9c858_img_2_7fe4e/640x480.jpg", + "https://www.compass.com/m/a9a3fa156897f7f25d26e01347340ea84ee9c858_img_3_de651/640x480.jpg", + "https://www.compass.com/m/a9a3fa156897f7f25d26e01347340ea84ee9c858_img_4_c5a58/640x480.jpg", + "https://www.compass.com/m/a9a3fa156897f7f25d26e01347340ea84ee9c858_img_5_8de3d/640x480.jpg", + "https://www.compass.com/m/a9a3fa156897f7f25d26e01347340ea84ee9c858_img_6_c1f63/640x480.jpg", + "https://www.compass.com/m/a9a3fa156897f7f25d26e01347340ea84ee9c858_img_7_93a97/640x480.jpg" + ], + "source_city": "denver", + "detail_url": "https://www.compass.com/homedetails/3101-W-18th-Ave-Denver-CO-80204/127QT1_pid/" + }, + { + "listing_id": "2077395926953959097", + "slug": "825-e-cooper-ave-aspen-co-81611", + "title": "$24,995,000", + "price": 24995000, + "is_rent": false, + "street": "825 East Cooper Avenue", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 4, + "baths": 4.0, + "baths_full": 4, + "baths_half": null, + "sqft": 3613, + "latitude": 39.1869517, + "longitude": -106.8147727, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/d77d41fd44ea6ca19d988f5fc4deccd84af28180_img_0_22b3c", + "gallery_uuids": [ + "legacy/d77d41fd44ea6ca19d988f5fc4deccd84af28180_img_0_22b3c", + "legacy/d77d41fd44ea6ca19d988f5fc4deccd84af28180_img_1_4e68d", + "legacy/d77d41fd44ea6ca19d988f5fc4deccd84af28180_img_2_c276a", + "legacy/d77d41fd44ea6ca19d988f5fc4deccd84af28180_img_3_ae75c", + "legacy/d77d41fd44ea6ca19d988f5fc4deccd84af28180_img_4_2fb83", + "legacy/d77d41fd44ea6ca19d988f5fc4deccd84af28180_img_5_bc008", + "legacy/d77d41fd44ea6ca19d988f5fc4deccd84af28180_img_6_1ae19", + "legacy/d77d41fd44ea6ca19d988f5fc4deccd84af28180_img_7_30463" + ], + "gallery_urls": [ + "https://www.compass.com/m/d77d41fd44ea6ca19d988f5fc4deccd84af28180_img_0_22b3c/640x480.jpg", + "https://www.compass.com/m/d77d41fd44ea6ca19d988f5fc4deccd84af28180_img_1_4e68d/640x480.jpg", + "https://www.compass.com/m/d77d41fd44ea6ca19d988f5fc4deccd84af28180_img_2_c276a/640x480.jpg", + "https://www.compass.com/m/d77d41fd44ea6ca19d988f5fc4deccd84af28180_img_3_ae75c/640x480.jpg", + "https://www.compass.com/m/d77d41fd44ea6ca19d988f5fc4deccd84af28180_img_4_2fb83/640x480.jpg", + "https://www.compass.com/m/d77d41fd44ea6ca19d988f5fc4deccd84af28180_img_5_bc008/640x480.jpg", + "https://www.compass.com/m/d77d41fd44ea6ca19d988f5fc4deccd84af28180_img_6_1ae19/640x480.jpg", + "https://www.compass.com/m/d77d41fd44ea6ca19d988f5fc4deccd84af28180_img_7_30463/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/825-E-Cooper-Ave-Aspen-CO-81611/LRO1A_pid/" + }, + { + "listing_id": "2074865658539990729", + "slug": "830-e-durant-ave-aspen-co-81611", + "title": "$24,950,000", + "price": 24950000, + "is_rent": false, + "street": "830 East Durant Avenue", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 4, + "baths": 4.0, + "baths_full": 4, + "baths_half": null, + "sqft": 4005, + "latitude": 39.1865963, + "longitude": -106.8147727, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/c12d0c096579836714caa3991f5153eb26bae602_img_0_3f74e", + "gallery_uuids": [ + "legacy/c12d0c096579836714caa3991f5153eb26bae602_img_0_3f74e", + "legacy/c12d0c096579836714caa3991f5153eb26bae602_img_1_897f5", + "legacy/c12d0c096579836714caa3991f5153eb26bae602_img_2_d9ca6", + "legacy/c12d0c096579836714caa3991f5153eb26bae602_img_3_6555e", + "legacy/c12d0c096579836714caa3991f5153eb26bae602_img_4_2646c", + "legacy/c12d0c096579836714caa3991f5153eb26bae602_img_5_0e7e2", + "legacy/c12d0c096579836714caa3991f5153eb26bae602_img_6_372ca", + "legacy/c12d0c096579836714caa3991f5153eb26bae602_img_7_08507" + ], + "gallery_urls": [ + "https://www.compass.com/m/c12d0c096579836714caa3991f5153eb26bae602_img_0_3f74e/640x480.jpg", + "https://www.compass.com/m/c12d0c096579836714caa3991f5153eb26bae602_img_1_897f5/640x480.jpg", + "https://www.compass.com/m/c12d0c096579836714caa3991f5153eb26bae602_img_2_d9ca6/640x480.jpg", + "https://www.compass.com/m/c12d0c096579836714caa3991f5153eb26bae602_img_3_6555e/640x480.jpg", + "https://www.compass.com/m/c12d0c096579836714caa3991f5153eb26bae602_img_4_2646c/640x480.jpg", + "https://www.compass.com/m/c12d0c096579836714caa3991f5153eb26bae602_img_5_0e7e2/640x480.jpg", + "https://www.compass.com/m/c12d0c096579836714caa3991f5153eb26bae602_img_6_372ca/640x480.jpg", + "https://www.compass.com/m/c12d0c096579836714caa3991f5153eb26bae602_img_7_08507/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/830-E-Durant-Ave-Aspen-CO-81611/LQX0W_pid/" + }, + { + "listing_id": "2049595231070769025", + "slug": "730-twining-flats-rd-aspen-co-81611", + "title": "$9,750,000", + "price": 9750000, + "is_rent": false, + "street": "730 Twining Flats Road", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 3, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 4992, + "latitude": 39.2771655, + "longitude": -106.8928543, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/8d054bb01e35ea7a2bd215269436192aa6e32c2b_img_0_4fb85", + "gallery_uuids": [ + "legacy/8d054bb01e35ea7a2bd215269436192aa6e32c2b_img_0_4fb85", + "legacy/8d054bb01e35ea7a2bd215269436192aa6e32c2b_img_1_af4ab", + "legacy/8d054bb01e35ea7a2bd215269436192aa6e32c2b_img_2_2cfb6", + "legacy/8d054bb01e35ea7a2bd215269436192aa6e32c2b_img_3_201d7", + "legacy/8d054bb01e35ea7a2bd215269436192aa6e32c2b_img_4_60810", + "legacy/8d054bb01e35ea7a2bd215269436192aa6e32c2b_img_5_ca054", + "legacy/8d054bb01e35ea7a2bd215269436192aa6e32c2b_img_6_cf8cc", + "legacy/8d054bb01e35ea7a2bd215269436192aa6e32c2b_img_7_38b69" + ], + "gallery_urls": [ + "https://www.compass.com/m/8d054bb01e35ea7a2bd215269436192aa6e32c2b_img_0_4fb85/640x480.jpg", + "https://www.compass.com/m/8d054bb01e35ea7a2bd215269436192aa6e32c2b_img_1_af4ab/640x480.jpg", + "https://www.compass.com/m/8d054bb01e35ea7a2bd215269436192aa6e32c2b_img_2_2cfb6/640x480.jpg", + "https://www.compass.com/m/8d054bb01e35ea7a2bd215269436192aa6e32c2b_img_3_201d7/640x480.jpg", + "https://www.compass.com/m/8d054bb01e35ea7a2bd215269436192aa6e32c2b_img_4_60810/640x480.jpg", + "https://www.compass.com/m/8d054bb01e35ea7a2bd215269436192aa6e32c2b_img_5_ca054/640x480.jpg", + "https://www.compass.com/m/8d054bb01e35ea7a2bd215269436192aa6e32c2b_img_6_cf8cc/640x480.jpg", + "https://www.compass.com/m/8d054bb01e35ea7a2bd215269436192aa6e32c2b_img_7_38b69/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/730-Twining-Flats-Rd-Aspen-CO-81611/LTPYR_pid/" + }, + { + "listing_id": "2004098274682072873", + "slug": "190-w-lupine-dr-aspen-co-81611", + "title": "$15,850,000", + "price": 15850000, + "is_rent": false, + "street": "190 West Lupine Drive", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 5, + "baths": 7.0, + "baths_full": 5, + "baths_half": null, + "sqft": 5470, + "latitude": 39.1833879, + "longitude": -106.8012035, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/dd59a407ca2840154f30dddf71caf65debafd0ea_img_0_291b0", + "gallery_uuids": [ + "legacy/dd59a407ca2840154f30dddf71caf65debafd0ea_img_0_291b0", + "legacy/dd59a407ca2840154f30dddf71caf65debafd0ea_img_1_58108", + "legacy/dd59a407ca2840154f30dddf71caf65debafd0ea_img_2_4491f", + "legacy/dd59a407ca2840154f30dddf71caf65debafd0ea_img_3_eaeaf", + "legacy/dd59a407ca2840154f30dddf71caf65debafd0ea_img_4_0c757", + "legacy/dd59a407ca2840154f30dddf71caf65debafd0ea_img_5_a4ebf", + "legacy/dd59a407ca2840154f30dddf71caf65debafd0ea_img_6_48686", + "legacy/dd59a407ca2840154f30dddf71caf65debafd0ea_img_7_d0eb4" + ], + "gallery_urls": [ + "https://www.compass.com/m/dd59a407ca2840154f30dddf71caf65debafd0ea_img_0_291b0/640x480.jpg", + "https://www.compass.com/m/dd59a407ca2840154f30dddf71caf65debafd0ea_img_1_58108/640x480.jpg", + "https://www.compass.com/m/dd59a407ca2840154f30dddf71caf65debafd0ea_img_2_4491f/640x480.jpg", + "https://www.compass.com/m/dd59a407ca2840154f30dddf71caf65debafd0ea_img_3_eaeaf/640x480.jpg", + "https://www.compass.com/m/dd59a407ca2840154f30dddf71caf65debafd0ea_img_4_0c757/640x480.jpg", + "https://www.compass.com/m/dd59a407ca2840154f30dddf71caf65debafd0ea_img_5_a4ebf/640x480.jpg", + "https://www.compass.com/m/dd59a407ca2840154f30dddf71caf65debafd0ea_img_6_48686/640x480.jpg", + "https://www.compass.com/m/dd59a407ca2840154f30dddf71caf65debafd0ea_img_7_d0eb4/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/190-W-Lupine-Dr-Aspen-CO-81611/LRR90_pid/" + }, + { + "listing_id": "1876845444290959137", + "slug": "42703-highway-82-unit-b-aspen-co-81611", + "title": "$10,950,000", + "price": 10950000, + "is_rent": false, + "street": "42703 Highway 82, Unit B", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 5, + "baths": 6.0, + "baths_full": 5, + "baths_half": null, + "sqft": 4154, + "latitude": 39.178874, + "longitude": -106.7999789, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Virtual Tour" + ], + "hero_uuid": "legacy/ce3ad32a40f9550e954eb7e73c357a8fefbac947_img_0_5e9ef", + "gallery_uuids": [ + "legacy/ce3ad32a40f9550e954eb7e73c357a8fefbac947_img_0_5e9ef", + "legacy/ce3ad32a40f9550e954eb7e73c357a8fefbac947_img_1_1fb6e", + "legacy/ce3ad32a40f9550e954eb7e73c357a8fefbac947_img_2_93aac", + "legacy/ce3ad32a40f9550e954eb7e73c357a8fefbac947_img_3_72290", + "legacy/ce3ad32a40f9550e954eb7e73c357a8fefbac947_img_4_3ee65", + "legacy/ce3ad32a40f9550e954eb7e73c357a8fefbac947_img_5_da29c", + "legacy/ce3ad32a40f9550e954eb7e73c357a8fefbac947_img_6_25e02", + "legacy/ce3ad32a40f9550e954eb7e73c357a8fefbac947_img_7_e39a0" + ], + "gallery_urls": [ + "https://www.compass.com/m/ce3ad32a40f9550e954eb7e73c357a8fefbac947_img_0_5e9ef/640x480.jpg", + "https://www.compass.com/m/ce3ad32a40f9550e954eb7e73c357a8fefbac947_img_1_1fb6e/640x480.jpg", + "https://www.compass.com/m/ce3ad32a40f9550e954eb7e73c357a8fefbac947_img_2_93aac/640x480.jpg", + "https://www.compass.com/m/ce3ad32a40f9550e954eb7e73c357a8fefbac947_img_3_72290/640x480.jpg", + "https://www.compass.com/m/ce3ad32a40f9550e954eb7e73c357a8fefbac947_img_4_3ee65/640x480.jpg", + "https://www.compass.com/m/ce3ad32a40f9550e954eb7e73c357a8fefbac947_img_5_da29c/640x480.jpg", + "https://www.compass.com/m/ce3ad32a40f9550e954eb7e73c357a8fefbac947_img_6_25e02/640x480.jpg", + "https://www.compass.com/m/ce3ad32a40f9550e954eb7e73c357a8fefbac947_img_7_e39a0/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/42703-Highway-82-Unit-B-Aspen-CO-81611/LSRNU_pid/" + }, + { + "listing_id": "2026979539362870169", + "slug": "315-e-dean-st-unit-b53-aspen-co-81611", + "title": "$340,000", + "price": 340000, + "is_rent": false, + "street": "315 East Dean Street, Unit B53", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 2, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1557, + "latitude": 39.1869935, + "longitude": -106.8212945, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/2aef6628b7c784c7a278a6a46839a82d407402a8_img_0_79d22", + "gallery_uuids": [ + "legacy/2aef6628b7c784c7a278a6a46839a82d407402a8_img_0_79d22", + "legacy/2aef6628b7c784c7a278a6a46839a82d407402a8_img_1_32926", + "legacy/2aef6628b7c784c7a278a6a46839a82d407402a8_img_2_0d454", + "legacy/2aef6628b7c784c7a278a6a46839a82d407402a8_img_3_cfb21", + "legacy/2aef6628b7c784c7a278a6a46839a82d407402a8_img_4_1c2f7", + "legacy/2aef6628b7c784c7a278a6a46839a82d407402a8_img_5_9ace6", + "legacy/2aef6628b7c784c7a278a6a46839a82d407402a8_img_6_3d4d9", + "legacy/2aef6628b7c784c7a278a6a46839a82d407402a8_img_7_4d8e9" + ], + "gallery_urls": [ + "https://www.compass.com/m/2aef6628b7c784c7a278a6a46839a82d407402a8_img_0_79d22/640x480.jpg", + "https://www.compass.com/m/2aef6628b7c784c7a278a6a46839a82d407402a8_img_1_32926/640x480.jpg", + "https://www.compass.com/m/2aef6628b7c784c7a278a6a46839a82d407402a8_img_2_0d454/640x480.jpg", + "https://www.compass.com/m/2aef6628b7c784c7a278a6a46839a82d407402a8_img_3_cfb21/640x480.jpg", + "https://www.compass.com/m/2aef6628b7c784c7a278a6a46839a82d407402a8_img_4_1c2f7/640x480.jpg", + "https://www.compass.com/m/2aef6628b7c784c7a278a6a46839a82d407402a8_img_5_9ace6/640x480.jpg", + "https://www.compass.com/m/2aef6628b7c784c7a278a6a46839a82d407402a8_img_6_3d4d9/640x480.jpg", + "https://www.compass.com/m/2aef6628b7c784c7a278a6a46839a82d407402a8_img_7_4d8e9/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/315-E-Dean-St-Unit-B53-Aspen-CO-81611/LQVC6_pid/" + }, + { + "listing_id": "1981397852464551841", + "slug": "120-turtle-cove-aspen-co-81611", + "title": "$4,995,000", + "price": 4995000, + "is_rent": false, + "street": "120 Turtle Cove", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2342, + "latitude": 39.2529818, + "longitude": -106.8959507, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/08c62c73103853513a3b02476005869f0231f146_img_0_90bce", + "gallery_uuids": [ + "legacy/08c62c73103853513a3b02476005869f0231f146_img_0_90bce", + "legacy/08c62c73103853513a3b02476005869f0231f146_img_1_2956c", + "legacy/08c62c73103853513a3b02476005869f0231f146_img_2_31bb1", + "legacy/08c62c73103853513a3b02476005869f0231f146_img_3_a3cc1", + "legacy/08c62c73103853513a3b02476005869f0231f146_img_4_16510", + "legacy/08c62c73103853513a3b02476005869f0231f146_img_5_b1f27", + "legacy/08c62c73103853513a3b02476005869f0231f146_img_6_b3121", + "legacy/08c62c73103853513a3b02476005869f0231f146_img_7_68285" + ], + "gallery_urls": [ + "https://www.compass.com/m/08c62c73103853513a3b02476005869f0231f146_img_0_90bce/640x480.jpg", + "https://www.compass.com/m/08c62c73103853513a3b02476005869f0231f146_img_1_2956c/640x480.jpg", + "https://www.compass.com/m/08c62c73103853513a3b02476005869f0231f146_img_2_31bb1/640x480.jpg", + "https://www.compass.com/m/08c62c73103853513a3b02476005869f0231f146_img_3_a3cc1/640x480.jpg", + "https://www.compass.com/m/08c62c73103853513a3b02476005869f0231f146_img_4_16510/640x480.jpg", + "https://www.compass.com/m/08c62c73103853513a3b02476005869f0231f146_img_5_b1f27/640x480.jpg", + "https://www.compass.com/m/08c62c73103853513a3b02476005869f0231f146_img_6_b3121/640x480.jpg", + "https://www.compass.com/m/08c62c73103853513a3b02476005869f0231f146_img_7_68285/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/120-Turtle-Cove-Aspen-CO-81611/LSHB7_pid/" + }, + { + "listing_id": "1961864764333808601", + "slug": "229-w-hallam-st-aspen-co-81611", + "title": "$11,800,000", + "price": 11800000, + "is_rent": false, + "street": "229 West Hallam Street", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 4, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 3207, + "latitude": 39.1932217, + "longitude": -106.8241753, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/a4e339f5b73c9198886b22b08e7d787221c5ec04_img_0_49cab", + "gallery_uuids": [ + "legacy/a4e339f5b73c9198886b22b08e7d787221c5ec04_img_0_49cab", + "legacy/a4e339f5b73c9198886b22b08e7d787221c5ec04_img_1_2e3ba", + "legacy/a4e339f5b73c9198886b22b08e7d787221c5ec04_img_2_468ad", + "legacy/a4e339f5b73c9198886b22b08e7d787221c5ec04_img_3_fdd77", + "legacy/a4e339f5b73c9198886b22b08e7d787221c5ec04_img_4_287be", + "legacy/a4e339f5b73c9198886b22b08e7d787221c5ec04_img_5_de625", + "legacy/a4e339f5b73c9198886b22b08e7d787221c5ec04_img_6_16e2e", + "legacy/a4e339f5b73c9198886b22b08e7d787221c5ec04_img_7_01c5b" + ], + "gallery_urls": [ + "https://www.compass.com/m/a4e339f5b73c9198886b22b08e7d787221c5ec04_img_0_49cab/640x480.jpg", + "https://www.compass.com/m/a4e339f5b73c9198886b22b08e7d787221c5ec04_img_1_2e3ba/640x480.jpg", + "https://www.compass.com/m/a4e339f5b73c9198886b22b08e7d787221c5ec04_img_2_468ad/640x480.jpg", + "https://www.compass.com/m/a4e339f5b73c9198886b22b08e7d787221c5ec04_img_3_fdd77/640x480.jpg", + "https://www.compass.com/m/a4e339f5b73c9198886b22b08e7d787221c5ec04_img_4_287be/640x480.jpg", + "https://www.compass.com/m/a4e339f5b73c9198886b22b08e7d787221c5ec04_img_5_de625/640x480.jpg", + "https://www.compass.com/m/a4e339f5b73c9198886b22b08e7d787221c5ec04_img_6_16e2e/640x480.jpg", + "https://www.compass.com/m/a4e339f5b73c9198886b22b08e7d787221c5ec04_img_7_01c5b/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/229-W-Hallam-St-Aspen-CO-81611/LREEA_pid/" + }, + { + "listing_id": "1966819555246556249", + "slug": "100-difficult-ln-aspen-co-81611", + "title": "$25,900,000", + "price": 25900000, + "is_rent": false, + "street": "100 Difficult Lane", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 3, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2795, + "latitude": 39.1500106, + "longitude": -106.7838489, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/885973f862da022b0a2601e5ac4b2c529a18217d_img_0_8da70", + "gallery_uuids": [ + "legacy/885973f862da022b0a2601e5ac4b2c529a18217d_img_0_8da70", + "legacy/885973f862da022b0a2601e5ac4b2c529a18217d_img_1_9be12", + "legacy/885973f862da022b0a2601e5ac4b2c529a18217d_img_2_836fb", + "legacy/885973f862da022b0a2601e5ac4b2c529a18217d_img_3_838e2", + "legacy/885973f862da022b0a2601e5ac4b2c529a18217d_img_4_f5507", + "legacy/885973f862da022b0a2601e5ac4b2c529a18217d_img_5_4c766", + "legacy/885973f862da022b0a2601e5ac4b2c529a18217d_img_6_94671", + "legacy/885973f862da022b0a2601e5ac4b2c529a18217d_img_7_3257d" + ], + "gallery_urls": [ + "https://www.compass.com/m/885973f862da022b0a2601e5ac4b2c529a18217d_img_0_8da70/640x480.jpg", + "https://www.compass.com/m/885973f862da022b0a2601e5ac4b2c529a18217d_img_1_9be12/640x480.jpg", + "https://www.compass.com/m/885973f862da022b0a2601e5ac4b2c529a18217d_img_2_836fb/640x480.jpg", + "https://www.compass.com/m/885973f862da022b0a2601e5ac4b2c529a18217d_img_3_838e2/640x480.jpg", + "https://www.compass.com/m/885973f862da022b0a2601e5ac4b2c529a18217d_img_4_f5507/640x480.jpg", + "https://www.compass.com/m/885973f862da022b0a2601e5ac4b2c529a18217d_img_5_4c766/640x480.jpg", + "https://www.compass.com/m/885973f862da022b0a2601e5ac4b2c529a18217d_img_6_94671/640x480.jpg", + "https://www.compass.com/m/885973f862da022b0a2601e5ac4b2c529a18217d_img_7_3257d/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/100-Difficult-Ln-Aspen-CO-81611/LQEFL_pid/" + }, + { + "listing_id": "2039739777685968689", + "slug": "803-e-durant-ave-unit-8-aspen-co-81611", + "title": "$4,350,000", + "price": 4350000, + "is_rent": false, + "street": "803 East Durant Avenue, Unit 8", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 960, + "latitude": 39.1862216, + "longitude": -106.8153027, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/1b250de6fa4a41883537db24f114f1921edef291_img_0_04aed", + "gallery_uuids": [ + "legacy/1b250de6fa4a41883537db24f114f1921edef291_img_0_04aed", + "legacy/1b250de6fa4a41883537db24f114f1921edef291_img_1_bf6aa", + "legacy/1b250de6fa4a41883537db24f114f1921edef291_img_2_11df1", + "legacy/1b250de6fa4a41883537db24f114f1921edef291_img_3_100f4", + "legacy/1b250de6fa4a41883537db24f114f1921edef291_img_4_0cbb9", + "legacy/1b250de6fa4a41883537db24f114f1921edef291_img_5_79f4f", + "legacy/1b250de6fa4a41883537db24f114f1921edef291_img_6_1b9e0", + "legacy/1b250de6fa4a41883537db24f114f1921edef291_img_7_3f0f1" + ], + "gallery_urls": [ + "https://www.compass.com/m/1b250de6fa4a41883537db24f114f1921edef291_img_0_04aed/640x480.jpg", + "https://www.compass.com/m/1b250de6fa4a41883537db24f114f1921edef291_img_1_bf6aa/640x480.jpg", + "https://www.compass.com/m/1b250de6fa4a41883537db24f114f1921edef291_img_2_11df1/640x480.jpg", + "https://www.compass.com/m/1b250de6fa4a41883537db24f114f1921edef291_img_3_100f4/640x480.jpg", + "https://www.compass.com/m/1b250de6fa4a41883537db24f114f1921edef291_img_4_0cbb9/640x480.jpg", + "https://www.compass.com/m/1b250de6fa4a41883537db24f114f1921edef291_img_5_79f4f/640x480.jpg", + "https://www.compass.com/m/1b250de6fa4a41883537db24f114f1921edef291_img_6_1b9e0/640x480.jpg", + "https://www.compass.com/m/1b250de6fa4a41883537db24f114f1921edef291_img_7_3f0f1/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/803-E-Durant-Ave-Unit-8-Aspen-CO-81611/LQU25_pid/" + }, + { + "listing_id": "1714599076187132233", + "slug": "41-popcorn-ln-aspen-co-81611", + "title": "$49,900,000", + "price": 49900000, + "is_rent": false, + "street": "41 Popcorn Lane", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 5, + "baths": 9.0, + "baths_full": 6, + "baths_half": null, + "sqft": 14960, + "latitude": 39.1488382, + "longitude": -106.784029, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/4203f1a3ee6f529ea8dfb5cdd688c347c3f50d1a_img_0_b9f5d", + "gallery_uuids": [ + "legacy/4203f1a3ee6f529ea8dfb5cdd688c347c3f50d1a_img_0_b9f5d", + "legacy/4203f1a3ee6f529ea8dfb5cdd688c347c3f50d1a_img_1_6473d", + "legacy/4203f1a3ee6f529ea8dfb5cdd688c347c3f50d1a_img_2_8125c", + "legacy/4203f1a3ee6f529ea8dfb5cdd688c347c3f50d1a_img_3_ad981", + "legacy/4203f1a3ee6f529ea8dfb5cdd688c347c3f50d1a_img_4_6c247", + "legacy/4203f1a3ee6f529ea8dfb5cdd688c347c3f50d1a_img_5_546fb", + "legacy/4203f1a3ee6f529ea8dfb5cdd688c347c3f50d1a_img_6_c9eac", + "legacy/4203f1a3ee6f529ea8dfb5cdd688c347c3f50d1a_img_7_7defd" + ], + "gallery_urls": [ + "https://www.compass.com/m/4203f1a3ee6f529ea8dfb5cdd688c347c3f50d1a_img_0_b9f5d/640x480.jpg", + "https://www.compass.com/m/4203f1a3ee6f529ea8dfb5cdd688c347c3f50d1a_img_1_6473d/640x480.jpg", + "https://www.compass.com/m/4203f1a3ee6f529ea8dfb5cdd688c347c3f50d1a_img_2_8125c/640x480.jpg", + "https://www.compass.com/m/4203f1a3ee6f529ea8dfb5cdd688c347c3f50d1a_img_3_ad981/640x480.jpg", + "https://www.compass.com/m/4203f1a3ee6f529ea8dfb5cdd688c347c3f50d1a_img_4_6c247/640x480.jpg", + "https://www.compass.com/m/4203f1a3ee6f529ea8dfb5cdd688c347c3f50d1a_img_5_546fb/640x480.jpg", + "https://www.compass.com/m/4203f1a3ee6f529ea8dfb5cdd688c347c3f50d1a_img_6_c9eac/640x480.jpg", + "https://www.compass.com/m/4203f1a3ee6f529ea8dfb5cdd688c347c3f50d1a_img_7_7defd/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/41-Popcorn-Ln-Aspen-CO-81611/LS286_pid/" + }, + { + "listing_id": "2062482365143339697", + "slug": "555-e-durant-ave-unit-2c-aspen-co-81611", + "title": "$6,450,000", + "price": 6450000, + "is_rent": false, + "street": "555 East Durant Avenue, Unit 2C", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1287, + "latitude": 39.1869153, + "longitude": -106.8186213, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/9e0f0d6ccea4397e1b1dfde19de1037098f52110_img_0_99529", + "gallery_uuids": [ + "legacy/9e0f0d6ccea4397e1b1dfde19de1037098f52110_img_0_99529", + "legacy/9e0f0d6ccea4397e1b1dfde19de1037098f52110_img_1_a3f0a", + "legacy/9e0f0d6ccea4397e1b1dfde19de1037098f52110_img_2_4d1fb", + "legacy/9e0f0d6ccea4397e1b1dfde19de1037098f52110_img_3_4f417", + "legacy/9e0f0d6ccea4397e1b1dfde19de1037098f52110_img_4_69987", + "legacy/9e0f0d6ccea4397e1b1dfde19de1037098f52110_img_5_c846f", + "legacy/9e0f0d6ccea4397e1b1dfde19de1037098f52110_img_6_8a292", + "legacy/9e0f0d6ccea4397e1b1dfde19de1037098f52110_img_7_c5663" + ], + "gallery_urls": [ + "https://www.compass.com/m/9e0f0d6ccea4397e1b1dfde19de1037098f52110_img_0_99529/640x480.jpg", + "https://www.compass.com/m/9e0f0d6ccea4397e1b1dfde19de1037098f52110_img_1_a3f0a/640x480.jpg", + "https://www.compass.com/m/9e0f0d6ccea4397e1b1dfde19de1037098f52110_img_2_4d1fb/640x480.jpg", + "https://www.compass.com/m/9e0f0d6ccea4397e1b1dfde19de1037098f52110_img_3_4f417/640x480.jpg", + "https://www.compass.com/m/9e0f0d6ccea4397e1b1dfde19de1037098f52110_img_4_69987/640x480.jpg", + "https://www.compass.com/m/9e0f0d6ccea4397e1b1dfde19de1037098f52110_img_5_c846f/640x480.jpg", + "https://www.compass.com/m/9e0f0d6ccea4397e1b1dfde19de1037098f52110_img_6_8a292/640x480.jpg", + "https://www.compass.com/m/9e0f0d6ccea4397e1b1dfde19de1037098f52110_img_7_c5663/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/555-E-Durant-Ave-Unit-2C-Aspen-CO-81611/26YEIR_pid/" + }, + { + "listing_id": "1922022213150257457", + "slug": "825-ute-ave-unit-a-aspen-co-81611", + "title": "$18,450,000", + "price": 18450000, + "is_rent": false, + "street": "825 Ute Avenue, Unit A", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 4, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 3771, + "latitude": 39.1848972, + "longitude": -106.816283, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/9bf80dc36fd4192025a82853398a3821d1a408f3_img_0_07103", + "gallery_uuids": [ + "legacy/9bf80dc36fd4192025a82853398a3821d1a408f3_img_0_07103", + "legacy/9bf80dc36fd4192025a82853398a3821d1a408f3_img_1_7c53f", + "legacy/9bf80dc36fd4192025a82853398a3821d1a408f3_img_2_3317c", + "legacy/9bf80dc36fd4192025a82853398a3821d1a408f3_img_3_84036", + "legacy/9bf80dc36fd4192025a82853398a3821d1a408f3_img_4_6f135", + "legacy/9bf80dc36fd4192025a82853398a3821d1a408f3_img_5_8dcf1", + "legacy/9bf80dc36fd4192025a82853398a3821d1a408f3_img_6_431f1", + "legacy/9bf80dc36fd4192025a82853398a3821d1a408f3_img_7_9cdf8" + ], + "gallery_urls": [ + "https://www.compass.com/m/9bf80dc36fd4192025a82853398a3821d1a408f3_img_0_07103/640x480.jpg", + "https://www.compass.com/m/9bf80dc36fd4192025a82853398a3821d1a408f3_img_1_7c53f/640x480.jpg", + "https://www.compass.com/m/9bf80dc36fd4192025a82853398a3821d1a408f3_img_2_3317c/640x480.jpg", + "https://www.compass.com/m/9bf80dc36fd4192025a82853398a3821d1a408f3_img_3_84036/640x480.jpg", + "https://www.compass.com/m/9bf80dc36fd4192025a82853398a3821d1a408f3_img_4_6f135/640x480.jpg", + "https://www.compass.com/m/9bf80dc36fd4192025a82853398a3821d1a408f3_img_5_8dcf1/640x480.jpg", + "https://www.compass.com/m/9bf80dc36fd4192025a82853398a3821d1a408f3_img_6_431f1/640x480.jpg", + "https://www.compass.com/m/9bf80dc36fd4192025a82853398a3821d1a408f3_img_7_9cdf8/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/825-Ute-Ave-Unit-A-Aspen-CO-81611/LQR1Z_pid/" + }, + { + "listing_id": "1903065816685552009", + "slug": "332-vine-st-aspen-co-81611", + "title": "$2,995,000", + "price": 2995000, + "is_rent": false, + "street": "332 Vine Street", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 878, + "latitude": 39.19579299999999, + "longitude": -106.814408, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/4dd595e48ae093d51564e7ec0df07a038c32c886_img_0_e9c4d", + "gallery_uuids": [ + "legacy/4dd595e48ae093d51564e7ec0df07a038c32c886_img_0_e9c4d", + "legacy/4dd595e48ae093d51564e7ec0df07a038c32c886_img_1_b568d", + "legacy/4dd595e48ae093d51564e7ec0df07a038c32c886_img_2_f7af5", + "legacy/4dd595e48ae093d51564e7ec0df07a038c32c886_img_3_9f540", + "legacy/4dd595e48ae093d51564e7ec0df07a038c32c886_img_4_7c7dc", + "legacy/4dd595e48ae093d51564e7ec0df07a038c32c886_img_5_137b1", + "legacy/4dd595e48ae093d51564e7ec0df07a038c32c886_img_6_f121b", + "legacy/4dd595e48ae093d51564e7ec0df07a038c32c886_img_7_ff46b" + ], + "gallery_urls": [ + "https://www.compass.com/m/4dd595e48ae093d51564e7ec0df07a038c32c886_img_0_e9c4d/640x480.jpg", + "https://www.compass.com/m/4dd595e48ae093d51564e7ec0df07a038c32c886_img_1_b568d/640x480.jpg", + "https://www.compass.com/m/4dd595e48ae093d51564e7ec0df07a038c32c886_img_2_f7af5/640x480.jpg", + "https://www.compass.com/m/4dd595e48ae093d51564e7ec0df07a038c32c886_img_3_9f540/640x480.jpg", + "https://www.compass.com/m/4dd595e48ae093d51564e7ec0df07a038c32c886_img_4_7c7dc/640x480.jpg", + "https://www.compass.com/m/4dd595e48ae093d51564e7ec0df07a038c32c886_img_5_137b1/640x480.jpg", + "https://www.compass.com/m/4dd595e48ae093d51564e7ec0df07a038c32c886_img_6_f121b/640x480.jpg", + "https://www.compass.com/m/4dd595e48ae093d51564e7ec0df07a038c32c886_img_7_ff46b/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/332-Vine-St-Aspen-CO-81611/LTMYW_pid/" + }, + { + "listing_id": "1713881232348223185", + "slug": "605-w-bleeker-st-aspen-co-81611", + "title": "$18,450,000", + "price": 18450000, + "is_rent": false, + "street": "605 West Bleeker Street", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 4, + "baths": 6.0, + "baths_full": 5, + "baths_half": null, + "sqft": 4314, + "latitude": 39.1932567, + "longitude": -106.8287384, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/3fe3b8346d6f3a7981728f4bcfa71468f2fff42b_img_0_cf0d0", + "gallery_uuids": [ + "legacy/3fe3b8346d6f3a7981728f4bcfa71468f2fff42b_img_0_cf0d0", + "legacy/3fe3b8346d6f3a7981728f4bcfa71468f2fff42b_img_1_d55d7", + "legacy/3fe3b8346d6f3a7981728f4bcfa71468f2fff42b_img_2_00a02", + "legacy/3fe3b8346d6f3a7981728f4bcfa71468f2fff42b_img_3_4bcd1", + "legacy/3fe3b8346d6f3a7981728f4bcfa71468f2fff42b_img_4_f6b22", + "legacy/3fe3b8346d6f3a7981728f4bcfa71468f2fff42b_img_5_c18a7", + "legacy/3fe3b8346d6f3a7981728f4bcfa71468f2fff42b_img_6_39e35", + "legacy/3fe3b8346d6f3a7981728f4bcfa71468f2fff42b_img_7_d4298" + ], + "gallery_urls": [ + "https://www.compass.com/m/3fe3b8346d6f3a7981728f4bcfa71468f2fff42b_img_0_cf0d0/640x480.jpg", + "https://www.compass.com/m/3fe3b8346d6f3a7981728f4bcfa71468f2fff42b_img_1_d55d7/640x480.jpg", + "https://www.compass.com/m/3fe3b8346d6f3a7981728f4bcfa71468f2fff42b_img_2_00a02/640x480.jpg", + "https://www.compass.com/m/3fe3b8346d6f3a7981728f4bcfa71468f2fff42b_img_3_4bcd1/640x480.jpg", + "https://www.compass.com/m/3fe3b8346d6f3a7981728f4bcfa71468f2fff42b_img_4_f6b22/640x480.jpg", + "https://www.compass.com/m/3fe3b8346d6f3a7981728f4bcfa71468f2fff42b_img_5_c18a7/640x480.jpg", + "https://www.compass.com/m/3fe3b8346d6f3a7981728f4bcfa71468f2fff42b_img_6_39e35/640x480.jpg", + "https://www.compass.com/m/3fe3b8346d6f3a7981728f4bcfa71468f2fff42b_img_7_d4298/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/605-W-Bleeker-St-Aspen-CO-81611/LTKH5_pid/" + }, + { + "listing_id": "2014657704352455905", + "slug": "315-e-dean-st-unit-b62-aspen-co-81611", + "title": "$425,000", + "price": 425000, + "is_rent": false, + "street": "315 East Dean Street, Unit B62", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 2, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1473, + "latitude": 39.1869935, + "longitude": -106.8212945, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/0f45ba8738169750f2baa9411aefe68f32789ecb_img_0_79d22", + "gallery_uuids": [ + "legacy/0f45ba8738169750f2baa9411aefe68f32789ecb_img_0_79d22", + "legacy/0f45ba8738169750f2baa9411aefe68f32789ecb_img_1_32926", + "legacy/0f45ba8738169750f2baa9411aefe68f32789ecb_img_2_0d454", + "legacy/0f45ba8738169750f2baa9411aefe68f32789ecb_img_3_cfb21", + "legacy/0f45ba8738169750f2baa9411aefe68f32789ecb_img_4_1c2f7", + "legacy/0f45ba8738169750f2baa9411aefe68f32789ecb_img_5_9ace6", + "legacy/0f45ba8738169750f2baa9411aefe68f32789ecb_img_6_3d4d9", + "legacy/0f45ba8738169750f2baa9411aefe68f32789ecb_img_7_4d8e9" + ], + "gallery_urls": [ + "https://www.compass.com/m/0f45ba8738169750f2baa9411aefe68f32789ecb_img_0_79d22/640x480.jpg", + "https://www.compass.com/m/0f45ba8738169750f2baa9411aefe68f32789ecb_img_1_32926/640x480.jpg", + "https://www.compass.com/m/0f45ba8738169750f2baa9411aefe68f32789ecb_img_2_0d454/640x480.jpg", + "https://www.compass.com/m/0f45ba8738169750f2baa9411aefe68f32789ecb_img_3_cfb21/640x480.jpg", + "https://www.compass.com/m/0f45ba8738169750f2baa9411aefe68f32789ecb_img_4_1c2f7/640x480.jpg", + "https://www.compass.com/m/0f45ba8738169750f2baa9411aefe68f32789ecb_img_5_9ace6/640x480.jpg", + "https://www.compass.com/m/0f45ba8738169750f2baa9411aefe68f32789ecb_img_6_3d4d9/640x480.jpg", + "https://www.compass.com/m/0f45ba8738169750f2baa9411aefe68f32789ecb_img_7_4d8e9/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/315-E-Dean-St-Unit-B62-Aspen-CO-81611/LSUQ9_pid/" + }, + { + "listing_id": "1987285135257096177", + "slug": "315-e-dean-st-unit-b51-aspen-co-81611", + "title": "$1,495,000", + "price": 1495000, + "is_rent": false, + "street": "315 East Dean Street, Unit B51", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 2, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1612, + "latitude": 39.1869935, + "longitude": -106.8212945, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/91514cb72a23e257b858812e57b7c8b1f8285f97_img_0_79d22", + "gallery_uuids": [ + "legacy/91514cb72a23e257b858812e57b7c8b1f8285f97_img_0_79d22", + "legacy/91514cb72a23e257b858812e57b7c8b1f8285f97_img_1_32926", + "legacy/91514cb72a23e257b858812e57b7c8b1f8285f97_img_2_0d454", + "legacy/91514cb72a23e257b858812e57b7c8b1f8285f97_img_3_cfb21", + "legacy/91514cb72a23e257b858812e57b7c8b1f8285f97_img_4_1c2f7", + "legacy/91514cb72a23e257b858812e57b7c8b1f8285f97_img_5_9ace6", + "legacy/91514cb72a23e257b858812e57b7c8b1f8285f97_img_6_3d4d9", + "legacy/91514cb72a23e257b858812e57b7c8b1f8285f97_img_7_4d8e9" + ], + "gallery_urls": [ + "https://www.compass.com/m/91514cb72a23e257b858812e57b7c8b1f8285f97_img_0_79d22/640x480.jpg", + "https://www.compass.com/m/91514cb72a23e257b858812e57b7c8b1f8285f97_img_1_32926/640x480.jpg", + "https://www.compass.com/m/91514cb72a23e257b858812e57b7c8b1f8285f97_img_2_0d454/640x480.jpg", + "https://www.compass.com/m/91514cb72a23e257b858812e57b7c8b1f8285f97_img_3_cfb21/640x480.jpg", + "https://www.compass.com/m/91514cb72a23e257b858812e57b7c8b1f8285f97_img_4_1c2f7/640x480.jpg", + "https://www.compass.com/m/91514cb72a23e257b858812e57b7c8b1f8285f97_img_5_9ace6/640x480.jpg", + "https://www.compass.com/m/91514cb72a23e257b858812e57b7c8b1f8285f97_img_6_3d4d9/640x480.jpg", + "https://www.compass.com/m/91514cb72a23e257b858812e57b7c8b1f8285f97_img_7_4d8e9/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/315-E-Dean-St-Unit-B51-Aspen-CO-81611/LSCYZ_pid/" + }, + { + "listing_id": "2001655522861527849", + "slug": "315-e-dean-st-unit-b55-aspen-co-81611", + "title": "$1,750,000", + "price": 1750000, + "is_rent": false, + "street": "315 East Dean Street, Unit B55", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2048, + "latitude": 39.1869935, + "longitude": -106.8212945, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/1b77549a221ba2a23712974b0b8b972f721301e8_img_0_a61d2", + "gallery_uuids": [ + "legacy/1b77549a221ba2a23712974b0b8b972f721301e8_img_0_a61d2", + "legacy/1b77549a221ba2a23712974b0b8b972f721301e8_img_1_70ba4", + "legacy/1b77549a221ba2a23712974b0b8b972f721301e8_img_2_90513", + "legacy/1b77549a221ba2a23712974b0b8b972f721301e8_img_3_307ba", + "legacy/1b77549a221ba2a23712974b0b8b972f721301e8_img_4_73a36", + "legacy/1b77549a221ba2a23712974b0b8b972f721301e8_img_5_79b2b", + "legacy/1b77549a221ba2a23712974b0b8b972f721301e8_img_6_05ce4", + "legacy/1b77549a221ba2a23712974b0b8b972f721301e8_img_7_f5766" + ], + "gallery_urls": [ + "https://www.compass.com/m/1b77549a221ba2a23712974b0b8b972f721301e8_img_0_a61d2/640x480.jpg", + "https://www.compass.com/m/1b77549a221ba2a23712974b0b8b972f721301e8_img_1_70ba4/640x480.jpg", + "https://www.compass.com/m/1b77549a221ba2a23712974b0b8b972f721301e8_img_2_90513/640x480.jpg", + "https://www.compass.com/m/1b77549a221ba2a23712974b0b8b972f721301e8_img_3_307ba/640x480.jpg", + "https://www.compass.com/m/1b77549a221ba2a23712974b0b8b972f721301e8_img_4_73a36/640x480.jpg", + "https://www.compass.com/m/1b77549a221ba2a23712974b0b8b972f721301e8_img_5_79b2b/640x480.jpg", + "https://www.compass.com/m/1b77549a221ba2a23712974b0b8b972f721301e8_img_6_05ce4/640x480.jpg", + "https://www.compass.com/m/1b77549a221ba2a23712974b0b8b972f721301e8_img_7_f5766/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/315-E-Dean-St-Unit-B55-Aspen-CO-81611/LR44C_pid/" + }, + { + "listing_id": "2029252096787926185", + "slug": "315-e-dean-st-unit-b30-aspen-co-81611", + "title": "$780,000", + "price": 780000, + "is_rent": false, + "street": "315 East Dean Street, Unit B30", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2100, + "latitude": 39.1869935, + "longitude": -106.8212945, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/d02a003d275320c8e5f5195fef6d54c20d203b9d_img_0_a61d2", + "gallery_uuids": [ + "legacy/d02a003d275320c8e5f5195fef6d54c20d203b9d_img_0_a61d2", + "legacy/d02a003d275320c8e5f5195fef6d54c20d203b9d_img_1_70ba4", + "legacy/d02a003d275320c8e5f5195fef6d54c20d203b9d_img_2_90513", + "legacy/d02a003d275320c8e5f5195fef6d54c20d203b9d_img_3_307ba", + "legacy/d02a003d275320c8e5f5195fef6d54c20d203b9d_img_4_73a36", + "legacy/d02a003d275320c8e5f5195fef6d54c20d203b9d_img_5_79b2b", + "legacy/d02a003d275320c8e5f5195fef6d54c20d203b9d_img_6_05ce4", + "legacy/d02a003d275320c8e5f5195fef6d54c20d203b9d_img_7_f5766" + ], + "gallery_urls": [ + "https://www.compass.com/m/d02a003d275320c8e5f5195fef6d54c20d203b9d_img_0_a61d2/640x480.jpg", + "https://www.compass.com/m/d02a003d275320c8e5f5195fef6d54c20d203b9d_img_1_70ba4/640x480.jpg", + "https://www.compass.com/m/d02a003d275320c8e5f5195fef6d54c20d203b9d_img_2_90513/640x480.jpg", + "https://www.compass.com/m/d02a003d275320c8e5f5195fef6d54c20d203b9d_img_3_307ba/640x480.jpg", + "https://www.compass.com/m/d02a003d275320c8e5f5195fef6d54c20d203b9d_img_4_73a36/640x480.jpg", + "https://www.compass.com/m/d02a003d275320c8e5f5195fef6d54c20d203b9d_img_5_79b2b/640x480.jpg", + "https://www.compass.com/m/d02a003d275320c8e5f5195fef6d54c20d203b9d_img_6_05ce4/640x480.jpg", + "https://www.compass.com/m/d02a003d275320c8e5f5195fef6d54c20d203b9d_img_7_f5766/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/315-E-Dean-St-Unit-B30-Aspen-CO-81611/JWVYF_pid/" + }, + { + "listing_id": "2049572693447448697", + "slug": "610-s-w-end-st-unit-d201-aspen-co-81611", + "title": "$4,795,000", + "price": 4795000, + "is_rent": false, + "street": "610 South W End Street, Unit D201", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1052, + "latitude": 39.1846705, + "longitude": -106.8136639, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/4becb7956c413540d512a01c419047ba39a1dc4a_img_0_bbc7b", + "gallery_uuids": [ + "legacy/4becb7956c413540d512a01c419047ba39a1dc4a_img_0_bbc7b", + "legacy/4becb7956c413540d512a01c419047ba39a1dc4a_img_1_e91d0", + "legacy/4becb7956c413540d512a01c419047ba39a1dc4a_img_2_774e7", + "legacy/4becb7956c413540d512a01c419047ba39a1dc4a_img_3_4122a", + "legacy/4becb7956c413540d512a01c419047ba39a1dc4a_img_4_db45b", + "legacy/4becb7956c413540d512a01c419047ba39a1dc4a_img_5_9743f", + "legacy/4becb7956c413540d512a01c419047ba39a1dc4a_img_6_97a41", + "legacy/4becb7956c413540d512a01c419047ba39a1dc4a_img_7_9eb2d" + ], + "gallery_urls": [ + "https://www.compass.com/m/4becb7956c413540d512a01c419047ba39a1dc4a_img_0_bbc7b/640x480.jpg", + "https://www.compass.com/m/4becb7956c413540d512a01c419047ba39a1dc4a_img_1_e91d0/640x480.jpg", + "https://www.compass.com/m/4becb7956c413540d512a01c419047ba39a1dc4a_img_2_774e7/640x480.jpg", + "https://www.compass.com/m/4becb7956c413540d512a01c419047ba39a1dc4a_img_3_4122a/640x480.jpg", + "https://www.compass.com/m/4becb7956c413540d512a01c419047ba39a1dc4a_img_4_db45b/640x480.jpg", + "https://www.compass.com/m/4becb7956c413540d512a01c419047ba39a1dc4a_img_5_9743f/640x480.jpg", + "https://www.compass.com/m/4becb7956c413540d512a01c419047ba39a1dc4a_img_6_97a41/640x480.jpg", + "https://www.compass.com/m/4becb7956c413540d512a01c419047ba39a1dc4a_img_7_9eb2d/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/610-S-W-End-St-Unit-D201-Aspen-CO-81611/LRC2A_pid/" + }, + { + "listing_id": "1951672067306878497", + "slug": "800-e-hopkins-ave-unit-a3-aspen-co-81611", + "title": "$4,995,000", + "price": 4995000, + "is_rent": false, + "street": "800 East Hopkins Avenue, Unit A3", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 3, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1440, + "latitude": 39.189007, + "longitude": -106.8144962, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/75761f8d822bfa882ded2b39bbcc126f1342a3fc_img_0_16b2d", + "gallery_uuids": [ + "legacy/75761f8d822bfa882ded2b39bbcc126f1342a3fc_img_0_16b2d", + "legacy/75761f8d822bfa882ded2b39bbcc126f1342a3fc_img_1_74f0d", + "legacy/75761f8d822bfa882ded2b39bbcc126f1342a3fc_img_2_74ec8", + "legacy/75761f8d822bfa882ded2b39bbcc126f1342a3fc_img_3_f7ad9", + "legacy/75761f8d822bfa882ded2b39bbcc126f1342a3fc_img_4_005aa", + "legacy/75761f8d822bfa882ded2b39bbcc126f1342a3fc_img_5_e3dfa", + "legacy/75761f8d822bfa882ded2b39bbcc126f1342a3fc_img_6_f98d5", + "legacy/75761f8d822bfa882ded2b39bbcc126f1342a3fc_img_7_f4b36" + ], + "gallery_urls": [ + "https://www.compass.com/m/75761f8d822bfa882ded2b39bbcc126f1342a3fc_img_0_16b2d/640x480.jpg", + "https://www.compass.com/m/75761f8d822bfa882ded2b39bbcc126f1342a3fc_img_1_74f0d/640x480.jpg", + "https://www.compass.com/m/75761f8d822bfa882ded2b39bbcc126f1342a3fc_img_2_74ec8/640x480.jpg", + "https://www.compass.com/m/75761f8d822bfa882ded2b39bbcc126f1342a3fc_img_3_f7ad9/640x480.jpg", + "https://www.compass.com/m/75761f8d822bfa882ded2b39bbcc126f1342a3fc_img_4_005aa/640x480.jpg", + "https://www.compass.com/m/75761f8d822bfa882ded2b39bbcc126f1342a3fc_img_5_e3dfa/640x480.jpg", + "https://www.compass.com/m/75761f8d822bfa882ded2b39bbcc126f1342a3fc_img_6_f98d5/640x480.jpg", + "https://www.compass.com/m/75761f8d822bfa882ded2b39bbcc126f1342a3fc_img_7_f4b36/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/800-E-Hopkins-Ave-Unit-A3-Aspen-CO-81611/LQT2P_pid/" + }, + { + "listing_id": "1931449999593831713", + "slug": "155-nighthawk-dr-aspen-co-81612", + "title": "$18,950,000", + "price": 18950000, + "is_rent": false, + "street": "155 Nighthawk Drive", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81612", + "beds": 6, + "baths": 8.0, + "baths_full": 6, + "baths_half": null, + "sqft": 5392, + "latitude": 39.206531, + "longitude": -106.821659, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/5b3a81ff5d444ccb39f864ef036968e932999ee5_img_0_53c61", + "gallery_uuids": [ + "legacy/5b3a81ff5d444ccb39f864ef036968e932999ee5_img_0_53c61", + "legacy/5b3a81ff5d444ccb39f864ef036968e932999ee5_img_1_4122f", + "legacy/5b3a81ff5d444ccb39f864ef036968e932999ee5_img_2_033e2", + "legacy/5b3a81ff5d444ccb39f864ef036968e932999ee5_img_3_ab170", + "legacy/5b3a81ff5d444ccb39f864ef036968e932999ee5_img_4_2e374", + "legacy/5b3a81ff5d444ccb39f864ef036968e932999ee5_img_5_51c3f", + "legacy/5b3a81ff5d444ccb39f864ef036968e932999ee5_img_6_34732", + "legacy/5b3a81ff5d444ccb39f864ef036968e932999ee5_img_7_ff060" + ], + "gallery_urls": [ + "https://www.compass.com/m/5b3a81ff5d444ccb39f864ef036968e932999ee5_img_0_53c61/640x480.jpg", + "https://www.compass.com/m/5b3a81ff5d444ccb39f864ef036968e932999ee5_img_1_4122f/640x480.jpg", + "https://www.compass.com/m/5b3a81ff5d444ccb39f864ef036968e932999ee5_img_2_033e2/640x480.jpg", + "https://www.compass.com/m/5b3a81ff5d444ccb39f864ef036968e932999ee5_img_3_ab170/640x480.jpg", + "https://www.compass.com/m/5b3a81ff5d444ccb39f864ef036968e932999ee5_img_4_2e374/640x480.jpg", + "https://www.compass.com/m/5b3a81ff5d444ccb39f864ef036968e932999ee5_img_5_51c3f/640x480.jpg", + "https://www.compass.com/m/5b3a81ff5d444ccb39f864ef036968e932999ee5_img_6_34732/640x480.jpg", + "https://www.compass.com/m/5b3a81ff5d444ccb39f864ef036968e932999ee5_img_7_ff060/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/155-Nighthawk-Dr-Aspen-CO-81612/LRKLU_pid/" + }, + { + "listing_id": "1854157687172248057", + "slug": "137-ridge-trail-aspen-co-81611", + "title": "$699,000", + "price": 699000, + "is_rent": false, + "street": "137 Ridge Trail", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 3, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 910, + "latitude": 39.2913687, + "longitude": -106.9216691, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/9a92dfa7f615b65180db42f2a61f6c57d90a099d_img_0_85890", + "gallery_uuids": [ + "legacy/9a92dfa7f615b65180db42f2a61f6c57d90a099d_img_0_85890", + "legacy/9a92dfa7f615b65180db42f2a61f6c57d90a099d_img_1_86e64", + "legacy/9a92dfa7f615b65180db42f2a61f6c57d90a099d_img_2_29fe5", + "legacy/9a92dfa7f615b65180db42f2a61f6c57d90a099d_img_3_58962", + "legacy/9a92dfa7f615b65180db42f2a61f6c57d90a099d_img_4_41eb9", + "legacy/9a92dfa7f615b65180db42f2a61f6c57d90a099d_img_5_668eb", + "legacy/9a92dfa7f615b65180db42f2a61f6c57d90a099d_img_6_f31c7", + "legacy/9a92dfa7f615b65180db42f2a61f6c57d90a099d_img_7_b04b8" + ], + "gallery_urls": [ + "https://www.compass.com/m/9a92dfa7f615b65180db42f2a61f6c57d90a099d_img_0_85890/640x480.jpg", + "https://www.compass.com/m/9a92dfa7f615b65180db42f2a61f6c57d90a099d_img_1_86e64/640x480.jpg", + "https://www.compass.com/m/9a92dfa7f615b65180db42f2a61f6c57d90a099d_img_2_29fe5/640x480.jpg", + "https://www.compass.com/m/9a92dfa7f615b65180db42f2a61f6c57d90a099d_img_3_58962/640x480.jpg", + "https://www.compass.com/m/9a92dfa7f615b65180db42f2a61f6c57d90a099d_img_4_41eb9/640x480.jpg", + "https://www.compass.com/m/9a92dfa7f615b65180db42f2a61f6c57d90a099d_img_5_668eb/640x480.jpg", + "https://www.compass.com/m/9a92dfa7f615b65180db42f2a61f6c57d90a099d_img_6_f31c7/640x480.jpg", + "https://www.compass.com/m/9a92dfa7f615b65180db42f2a61f6c57d90a099d_img_7_b04b8/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/137-Ridge-Trail-Aspen-CO-81611/DE7SU_pid/" + }, + { + "listing_id": "1727622680580487609", + "slug": "415-e-dean-st-unit-44abc-weeks-51-52-aspen-co-81611", + "title": "$775,000", + "price": 775000, + "is_rent": false, + "street": "415 East Dean Street, Unit 44ABC WEEKS 51/52", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2120, + "latitude": 39.1866779, + "longitude": -106.8199579, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/51e66dbaf027d3fbfaafdaa494482b25b8b353a0_img_0_a4ca9", + "gallery_uuids": [ + "legacy/51e66dbaf027d3fbfaafdaa494482b25b8b353a0_img_0_a4ca9", + "legacy/51e66dbaf027d3fbfaafdaa494482b25b8b353a0_img_1_43aa4", + "legacy/51e66dbaf027d3fbfaafdaa494482b25b8b353a0_img_2_28bc1", + "legacy/51e66dbaf027d3fbfaafdaa494482b25b8b353a0_img_3_5a1d2", + "legacy/51e66dbaf027d3fbfaafdaa494482b25b8b353a0_img_4_ab5f6", + "legacy/51e66dbaf027d3fbfaafdaa494482b25b8b353a0_img_5_db80d", + "legacy/51e66dbaf027d3fbfaafdaa494482b25b8b353a0_img_6_43ba7", + "legacy/51e66dbaf027d3fbfaafdaa494482b25b8b353a0_img_7_a0fef" + ], + "gallery_urls": [ + "https://www.compass.com/m/51e66dbaf027d3fbfaafdaa494482b25b8b353a0_img_0_a4ca9/640x480.jpg", + "https://www.compass.com/m/51e66dbaf027d3fbfaafdaa494482b25b8b353a0_img_1_43aa4/640x480.jpg", + "https://www.compass.com/m/51e66dbaf027d3fbfaafdaa494482b25b8b353a0_img_2_28bc1/640x480.jpg", + "https://www.compass.com/m/51e66dbaf027d3fbfaafdaa494482b25b8b353a0_img_3_5a1d2/640x480.jpg", + "https://www.compass.com/m/51e66dbaf027d3fbfaafdaa494482b25b8b353a0_img_4_ab5f6/640x480.jpg", + "https://www.compass.com/m/51e66dbaf027d3fbfaafdaa494482b25b8b353a0_img_5_db80d/640x480.jpg", + "https://www.compass.com/m/51e66dbaf027d3fbfaafdaa494482b25b8b353a0_img_6_43ba7/640x480.jpg", + "https://www.compass.com/m/51e66dbaf027d3fbfaafdaa494482b25b8b353a0_img_7_a0fef/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/415-E-Dean-St-Unit-44ABC-WEEKS-51-52-Aspen-CO-81611/LSXNM_pid/" + }, + { + "listing_id": "1988681691840304113", + "slug": "450-s-original-st-unit-8-aspen-co-81611", + "title": "$3,995,000", + "price": 3995000, + "is_rent": false, + "street": "450 South Original Street, Unit 8", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 932, + "latitude": 39.1867092, + "longitude": -106.8152106, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/7499be4e2e9790c90c9b948df00f4c37c45f1527_img_0_cbd66", + "gallery_uuids": [ + "legacy/7499be4e2e9790c90c9b948df00f4c37c45f1527_img_0_cbd66", + "legacy/7499be4e2e9790c90c9b948df00f4c37c45f1527_img_1_ad3a1", + "legacy/7499be4e2e9790c90c9b948df00f4c37c45f1527_img_2_62404", + "legacy/7499be4e2e9790c90c9b948df00f4c37c45f1527_img_3_39e55", + "legacy/7499be4e2e9790c90c9b948df00f4c37c45f1527_img_4_a3ab1", + "legacy/7499be4e2e9790c90c9b948df00f4c37c45f1527_img_5_91db1", + "legacy/7499be4e2e9790c90c9b948df00f4c37c45f1527_img_6_a033f", + "legacy/7499be4e2e9790c90c9b948df00f4c37c45f1527_img_7_771d6" + ], + "gallery_urls": [ + "https://www.compass.com/m/7499be4e2e9790c90c9b948df00f4c37c45f1527_img_0_cbd66/640x480.jpg", + "https://www.compass.com/m/7499be4e2e9790c90c9b948df00f4c37c45f1527_img_1_ad3a1/640x480.jpg", + "https://www.compass.com/m/7499be4e2e9790c90c9b948df00f4c37c45f1527_img_2_62404/640x480.jpg", + "https://www.compass.com/m/7499be4e2e9790c90c9b948df00f4c37c45f1527_img_3_39e55/640x480.jpg", + "https://www.compass.com/m/7499be4e2e9790c90c9b948df00f4c37c45f1527_img_4_a3ab1/640x480.jpg", + "https://www.compass.com/m/7499be4e2e9790c90c9b948df00f4c37c45f1527_img_5_91db1/640x480.jpg", + "https://www.compass.com/m/7499be4e2e9790c90c9b948df00f4c37c45f1527_img_6_a033f/640x480.jpg", + "https://www.compass.com/m/7499be4e2e9790c90c9b948df00f4c37c45f1527_img_7_771d6/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/450-S-Original-St-Unit-8-Aspen-CO-81611/LSGS7_pid/" + }, + { + "listing_id": "1871944718124827361", + "slug": "mclain-flats-aspen-co-81612", + "title": "$5,950,000", + "price": 5950000, + "is_rent": false, + "street": "McLain Flats", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81612", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 39.225903, + "longitude": -106.840953, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/18ef5d5e73921c1e4aa65117bd2ffee768ed7a36_img_0_3bd3a", + "gallery_uuids": [ + "legacy/18ef5d5e73921c1e4aa65117bd2ffee768ed7a36_img_0_3bd3a", + "legacy/18ef5d5e73921c1e4aa65117bd2ffee768ed7a36_img_1_72483", + "legacy/18ef5d5e73921c1e4aa65117bd2ffee768ed7a36_img_2_da10a", + "legacy/18ef5d5e73921c1e4aa65117bd2ffee768ed7a36_img_3_98a21", + "legacy/18ef5d5e73921c1e4aa65117bd2ffee768ed7a36_img_4_67805", + "legacy/18ef5d5e73921c1e4aa65117bd2ffee768ed7a36_img_5_37de3", + "legacy/18ef5d5e73921c1e4aa65117bd2ffee768ed7a36_img_6_40deb", + "legacy/18ef5d5e73921c1e4aa65117bd2ffee768ed7a36_img_7_f07b8" + ], + "gallery_urls": [ + "https://www.compass.com/m/18ef5d5e73921c1e4aa65117bd2ffee768ed7a36_img_0_3bd3a/640x480.jpg", + "https://www.compass.com/m/18ef5d5e73921c1e4aa65117bd2ffee768ed7a36_img_1_72483/640x480.jpg", + "https://www.compass.com/m/18ef5d5e73921c1e4aa65117bd2ffee768ed7a36_img_2_da10a/640x480.jpg", + "https://www.compass.com/m/18ef5d5e73921c1e4aa65117bd2ffee768ed7a36_img_3_98a21/640x480.jpg", + "https://www.compass.com/m/18ef5d5e73921c1e4aa65117bd2ffee768ed7a36_img_4_67805/640x480.jpg", + "https://www.compass.com/m/18ef5d5e73921c1e4aa65117bd2ffee768ed7a36_img_5_37de3/640x480.jpg", + "https://www.compass.com/m/18ef5d5e73921c1e4aa65117bd2ffee768ed7a36_img_6_40deb/640x480.jpg", + "https://www.compass.com/m/18ef5d5e73921c1e4aa65117bd2ffee768ed7a36_img_7_f07b8/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/McLain-Flats-Aspen-CO-81612/1871944718124827361_lid/" + }, + { + "listing_id": "1951565555154767201", + "slug": "725-e-durant-ave-unit-22-aspen-co-81611", + "title": "$3,199,000", + "price": 3199000, + "is_rent": false, + "street": "725 East Durant Avenue, Unit 22", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": null, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 828, + "latitude": 39.1864692, + "longitude": -106.8164319, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/13b9974cde69e37fb09c288343c1acf43f9f3647_img_0_d8ad6", + "gallery_uuids": [ + "legacy/13b9974cde69e37fb09c288343c1acf43f9f3647_img_0_d8ad6", + "legacy/13b9974cde69e37fb09c288343c1acf43f9f3647_img_1_2fc11", + "legacy/13b9974cde69e37fb09c288343c1acf43f9f3647_img_2_d4b04", + "legacy/13b9974cde69e37fb09c288343c1acf43f9f3647_img_3_d8dca", + "legacy/13b9974cde69e37fb09c288343c1acf43f9f3647_img_4_d3bb7", + "legacy/13b9974cde69e37fb09c288343c1acf43f9f3647_img_5_4d440", + "legacy/13b9974cde69e37fb09c288343c1acf43f9f3647_img_6_80801", + "legacy/13b9974cde69e37fb09c288343c1acf43f9f3647_img_7_f21a9" + ], + "gallery_urls": [ + "https://www.compass.com/m/13b9974cde69e37fb09c288343c1acf43f9f3647_img_0_d8ad6/640x480.jpg", + "https://www.compass.com/m/13b9974cde69e37fb09c288343c1acf43f9f3647_img_1_2fc11/640x480.jpg", + "https://www.compass.com/m/13b9974cde69e37fb09c288343c1acf43f9f3647_img_2_d4b04/640x480.jpg", + "https://www.compass.com/m/13b9974cde69e37fb09c288343c1acf43f9f3647_img_3_d8dca/640x480.jpg", + "https://www.compass.com/m/13b9974cde69e37fb09c288343c1acf43f9f3647_img_4_d3bb7/640x480.jpg", + "https://www.compass.com/m/13b9974cde69e37fb09c288343c1acf43f9f3647_img_5_4d440/640x480.jpg", + "https://www.compass.com/m/13b9974cde69e37fb09c288343c1acf43f9f3647_img_6_80801/640x480.jpg", + "https://www.compass.com/m/13b9974cde69e37fb09c288343c1acf43f9f3647_img_7_f21a9/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/725-E-Durant-Ave-Unit-22-Aspen-CO-81611/LRPJ0_pid/" + }, + { + "listing_id": "1916891292675064801", + "slug": "1038-owl-creek-rd-aspen-co-81611", + "title": "$12,995,000", + "price": 12995000, + "is_rent": false, + "street": "1038 Owl Creek Road", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 4, + "baths": 4.0, + "baths_full": 4, + "baths_half": null, + "sqft": 5047, + "latitude": 39.2220342, + "longitude": -106.8722727, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/2e423d25086a612a38d61b96d0ce57e60defa01c_img_0_9c1ba", + "gallery_uuids": [ + "legacy/2e423d25086a612a38d61b96d0ce57e60defa01c_img_0_9c1ba", + "legacy/2e423d25086a612a38d61b96d0ce57e60defa01c_img_1_aa41f", + "legacy/2e423d25086a612a38d61b96d0ce57e60defa01c_img_2_41ab2", + "legacy/2e423d25086a612a38d61b96d0ce57e60defa01c_img_3_f09bb", + "legacy/2e423d25086a612a38d61b96d0ce57e60defa01c_img_4_307fd", + "legacy/2e423d25086a612a38d61b96d0ce57e60defa01c_img_5_42fb7", + "legacy/2e423d25086a612a38d61b96d0ce57e60defa01c_img_6_0e31f", + "legacy/2e423d25086a612a38d61b96d0ce57e60defa01c_img_7_13b7d" + ], + "gallery_urls": [ + "https://www.compass.com/m/2e423d25086a612a38d61b96d0ce57e60defa01c_img_0_9c1ba/640x480.jpg", + "https://www.compass.com/m/2e423d25086a612a38d61b96d0ce57e60defa01c_img_1_aa41f/640x480.jpg", + "https://www.compass.com/m/2e423d25086a612a38d61b96d0ce57e60defa01c_img_2_41ab2/640x480.jpg", + "https://www.compass.com/m/2e423d25086a612a38d61b96d0ce57e60defa01c_img_3_f09bb/640x480.jpg", + "https://www.compass.com/m/2e423d25086a612a38d61b96d0ce57e60defa01c_img_4_307fd/640x480.jpg", + "https://www.compass.com/m/2e423d25086a612a38d61b96d0ce57e60defa01c_img_5_42fb7/640x480.jpg", + "https://www.compass.com/m/2e423d25086a612a38d61b96d0ce57e60defa01c_img_6_0e31f/640x480.jpg", + "https://www.compass.com/m/2e423d25086a612a38d61b96d0ce57e60defa01c_img_7_13b7d/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/1038-Owl-Creek-Rd-Aspen-CO-81611/LQB4Z_pid/" + }, + { + "listing_id": "1927103338444070521", + "slug": "9555-castle-creek-rd-aspen-co-81612", + "title": "$12,500,000", + "price": 12500000, + "is_rent": false, + "street": "9555 Castle Creek Road", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81612", + "beds": 5, + "baths": 5.0, + "baths_full": 2, + "baths_half": null, + "sqft": 4954, + "latitude": 39.081012, + "longitude": -106.807317, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/0b5c1b47ae78e277e7892deafa49e8810e594e8f_img_0_beb64", + "gallery_uuids": [ + "legacy/0b5c1b47ae78e277e7892deafa49e8810e594e8f_img_0_beb64", + "legacy/0b5c1b47ae78e277e7892deafa49e8810e594e8f_img_1_55417", + "legacy/0b5c1b47ae78e277e7892deafa49e8810e594e8f_img_2_bc49d", + "legacy/0b5c1b47ae78e277e7892deafa49e8810e594e8f_img_3_71227", + "legacy/0b5c1b47ae78e277e7892deafa49e8810e594e8f_img_4_d0717", + "legacy/0b5c1b47ae78e277e7892deafa49e8810e594e8f_img_5_0dd48", + "legacy/0b5c1b47ae78e277e7892deafa49e8810e594e8f_img_6_90e7d", + "legacy/0b5c1b47ae78e277e7892deafa49e8810e594e8f_img_7_cca43" + ], + "gallery_urls": [ + "https://www.compass.com/m/0b5c1b47ae78e277e7892deafa49e8810e594e8f_img_0_beb64/640x480.jpg", + "https://www.compass.com/m/0b5c1b47ae78e277e7892deafa49e8810e594e8f_img_1_55417/640x480.jpg", + "https://www.compass.com/m/0b5c1b47ae78e277e7892deafa49e8810e594e8f_img_2_bc49d/640x480.jpg", + "https://www.compass.com/m/0b5c1b47ae78e277e7892deafa49e8810e594e8f_img_3_71227/640x480.jpg", + "https://www.compass.com/m/0b5c1b47ae78e277e7892deafa49e8810e594e8f_img_4_d0717/640x480.jpg", + "https://www.compass.com/m/0b5c1b47ae78e277e7892deafa49e8810e594e8f_img_5_0dd48/640x480.jpg", + "https://www.compass.com/m/0b5c1b47ae78e277e7892deafa49e8810e594e8f_img_6_90e7d/640x480.jpg", + "https://www.compass.com/m/0b5c1b47ae78e277e7892deafa49e8810e594e8f_img_7_cca43/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/9555-Castle-Creek-Rd-Aspen-CO-81612/ECUR8_pid/" + }, + { + "listing_id": "1764776333397921937", + "slug": "125-rooney-cir-aspen-co-81612", + "title": "$99,000,000", + "price": 99000000, + "is_rent": false, + "street": "125 Rooney Circle", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81612", + "beds": 15, + "baths": 19.0, + "baths_full": 17, + "baths_half": null, + "sqft": 25277, + "latitude": 39.0685527, + "longitude": -106.801133, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/72989d05b4c77cd9fa377c0dbbd40eaa583768f5_img_0_0b4b8", + "gallery_uuids": [ + "legacy/72989d05b4c77cd9fa377c0dbbd40eaa583768f5_img_0_0b4b8", + "legacy/72989d05b4c77cd9fa377c0dbbd40eaa583768f5_img_1_cc57a", + "legacy/72989d05b4c77cd9fa377c0dbbd40eaa583768f5_img_2_d632b", + "legacy/72989d05b4c77cd9fa377c0dbbd40eaa583768f5_img_3_b53cb", + "legacy/72989d05b4c77cd9fa377c0dbbd40eaa583768f5_img_4_120b2", + "legacy/72989d05b4c77cd9fa377c0dbbd40eaa583768f5_img_5_954ff", + "legacy/72989d05b4c77cd9fa377c0dbbd40eaa583768f5_img_6_0ede8", + "legacy/72989d05b4c77cd9fa377c0dbbd40eaa583768f5_img_7_53e3e" + ], + "gallery_urls": [ + "https://www.compass.com/m/72989d05b4c77cd9fa377c0dbbd40eaa583768f5_img_0_0b4b8/640x480.jpg", + "https://www.compass.com/m/72989d05b4c77cd9fa377c0dbbd40eaa583768f5_img_1_cc57a/640x480.jpg", + "https://www.compass.com/m/72989d05b4c77cd9fa377c0dbbd40eaa583768f5_img_2_d632b/640x480.jpg", + "https://www.compass.com/m/72989d05b4c77cd9fa377c0dbbd40eaa583768f5_img_3_b53cb/640x480.jpg", + "https://www.compass.com/m/72989d05b4c77cd9fa377c0dbbd40eaa583768f5_img_4_120b2/640x480.jpg", + "https://www.compass.com/m/72989d05b4c77cd9fa377c0dbbd40eaa583768f5_img_5_954ff/640x480.jpg", + "https://www.compass.com/m/72989d05b4c77cd9fa377c0dbbd40eaa583768f5_img_6_0ede8/640x480.jpg", + "https://www.compass.com/m/72989d05b4c77cd9fa377c0dbbd40eaa583768f5_img_7_53e3e/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/125-Rooney-Cir-Aspen-CO-81612/LRKCW_pid/" + }, + { + "listing_id": "1940902821421093121", + "slug": "1220-red-butte-dr-aspen-co-81611", + "title": "$22,950,000", + "price": 22950000, + "is_rent": false, + "street": "1220 Red Butte Drive", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 5, + "baths": 6.0, + "baths_full": 5, + "baths_half": null, + "sqft": 5872, + "latitude": 39.206403, + "longitude": -106.8347536, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/eeac95d4c55380fe534a421b5ec3cbc1d3999548_img_0_3f83b", + "gallery_uuids": [ + "legacy/eeac95d4c55380fe534a421b5ec3cbc1d3999548_img_0_3f83b", + "legacy/eeac95d4c55380fe534a421b5ec3cbc1d3999548_img_1_2b9e8", + "legacy/eeac95d4c55380fe534a421b5ec3cbc1d3999548_img_2_d94a5", + "legacy/eeac95d4c55380fe534a421b5ec3cbc1d3999548_img_3_f0901", + "legacy/eeac95d4c55380fe534a421b5ec3cbc1d3999548_img_4_b74d1", + "legacy/eeac95d4c55380fe534a421b5ec3cbc1d3999548_img_5_1a324", + "legacy/eeac95d4c55380fe534a421b5ec3cbc1d3999548_img_6_f3435", + "legacy/eeac95d4c55380fe534a421b5ec3cbc1d3999548_img_7_c6ddb" + ], + "gallery_urls": [ + "https://www.compass.com/m/eeac95d4c55380fe534a421b5ec3cbc1d3999548_img_0_3f83b/640x480.jpg", + "https://www.compass.com/m/eeac95d4c55380fe534a421b5ec3cbc1d3999548_img_1_2b9e8/640x480.jpg", + "https://www.compass.com/m/eeac95d4c55380fe534a421b5ec3cbc1d3999548_img_2_d94a5/640x480.jpg", + "https://www.compass.com/m/eeac95d4c55380fe534a421b5ec3cbc1d3999548_img_3_f0901/640x480.jpg", + "https://www.compass.com/m/eeac95d4c55380fe534a421b5ec3cbc1d3999548_img_4_b74d1/640x480.jpg", + "https://www.compass.com/m/eeac95d4c55380fe534a421b5ec3cbc1d3999548_img_5_1a324/640x480.jpg", + "https://www.compass.com/m/eeac95d4c55380fe534a421b5ec3cbc1d3999548_img_6_f3435/640x480.jpg", + "https://www.compass.com/m/eeac95d4c55380fe534a421b5ec3cbc1d3999548_img_7_c6ddb/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/1220-Red-Butte-Dr-Aspen-CO-81611/LRIVB_pid/" + }, + { + "listing_id": "1809571495064367481", + "slug": "864-moore-dr-aspen-co-81611", + "title": "$45,000,000", + "price": 45000000, + "is_rent": false, + "street": "864 Moore Drive", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 7, + "baths": 10.0, + "baths_full": 8, + "baths_half": null, + "sqft": 10615, + "latitude": 39.184923, + "longitude": -106.841305, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/e9d7be731a3341c4297629ebb7da2f1c35a1e0ef_img_0_df68a", + "gallery_uuids": [ + "legacy/e9d7be731a3341c4297629ebb7da2f1c35a1e0ef_img_0_df68a", + "legacy/e9d7be731a3341c4297629ebb7da2f1c35a1e0ef_img_1_c86bb", + "legacy/e9d7be731a3341c4297629ebb7da2f1c35a1e0ef_img_2_60807", + "legacy/e9d7be731a3341c4297629ebb7da2f1c35a1e0ef_img_3_ae385", + "legacy/e9d7be731a3341c4297629ebb7da2f1c35a1e0ef_img_4_9278c", + "legacy/e9d7be731a3341c4297629ebb7da2f1c35a1e0ef_img_5_b6c4b", + "legacy/e9d7be731a3341c4297629ebb7da2f1c35a1e0ef_img_6_71120", + "legacy/e9d7be731a3341c4297629ebb7da2f1c35a1e0ef_img_7_8b7c7" + ], + "gallery_urls": [ + "https://www.compass.com/m/e9d7be731a3341c4297629ebb7da2f1c35a1e0ef_img_0_df68a/640x480.jpg", + "https://www.compass.com/m/e9d7be731a3341c4297629ebb7da2f1c35a1e0ef_img_1_c86bb/640x480.jpg", + "https://www.compass.com/m/e9d7be731a3341c4297629ebb7da2f1c35a1e0ef_img_2_60807/640x480.jpg", + "https://www.compass.com/m/e9d7be731a3341c4297629ebb7da2f1c35a1e0ef_img_3_ae385/640x480.jpg", + "https://www.compass.com/m/e9d7be731a3341c4297629ebb7da2f1c35a1e0ef_img_4_9278c/640x480.jpg", + "https://www.compass.com/m/e9d7be731a3341c4297629ebb7da2f1c35a1e0ef_img_5_b6c4b/640x480.jpg", + "https://www.compass.com/m/e9d7be731a3341c4297629ebb7da2f1c35a1e0ef_img_6_71120/640x480.jpg", + "https://www.compass.com/m/e9d7be731a3341c4297629ebb7da2f1c35a1e0ef_img_7_8b7c7/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/864-Moore-Dr-Aspen-CO-81611/LTV1I_pid/" + }, + { + "listing_id": "1977766518458693761", + "slug": "1162-tiehack-rd-aspen-co-81611", + "title": "$38,500,000", + "price": 38500000, + "is_rent": false, + "street": "1162 Tiehack Road", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 6, + "baths": 9.0, + "baths_full": 6, + "baths_half": null, + "sqft": 7811, + "latitude": 39.1900357, + "longitude": -106.8544597, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/f0a11e9526a56f1515ddaa9d07ae3842d2afec33_img_0_72a1f", + "gallery_uuids": [ + "legacy/f0a11e9526a56f1515ddaa9d07ae3842d2afec33_img_0_72a1f", + "legacy/f0a11e9526a56f1515ddaa9d07ae3842d2afec33_img_1_16d30", + "legacy/f0a11e9526a56f1515ddaa9d07ae3842d2afec33_img_2_6ccd9", + "legacy/f0a11e9526a56f1515ddaa9d07ae3842d2afec33_img_3_74a4e", + "legacy/f0a11e9526a56f1515ddaa9d07ae3842d2afec33_img_4_d3f4d", + "legacy/f0a11e9526a56f1515ddaa9d07ae3842d2afec33_img_5_2e8c9", + "legacy/f0a11e9526a56f1515ddaa9d07ae3842d2afec33_img_6_8a7c5", + "legacy/f0a11e9526a56f1515ddaa9d07ae3842d2afec33_img_7_bca37" + ], + "gallery_urls": [ + "https://www.compass.com/m/f0a11e9526a56f1515ddaa9d07ae3842d2afec33_img_0_72a1f/640x480.jpg", + "https://www.compass.com/m/f0a11e9526a56f1515ddaa9d07ae3842d2afec33_img_1_16d30/640x480.jpg", + "https://www.compass.com/m/f0a11e9526a56f1515ddaa9d07ae3842d2afec33_img_2_6ccd9/640x480.jpg", + "https://www.compass.com/m/f0a11e9526a56f1515ddaa9d07ae3842d2afec33_img_3_74a4e/640x480.jpg", + "https://www.compass.com/m/f0a11e9526a56f1515ddaa9d07ae3842d2afec33_img_4_d3f4d/640x480.jpg", + "https://www.compass.com/m/f0a11e9526a56f1515ddaa9d07ae3842d2afec33_img_5_2e8c9/640x480.jpg", + "https://www.compass.com/m/f0a11e9526a56f1515ddaa9d07ae3842d2afec33_img_6_8a7c5/640x480.jpg", + "https://www.compass.com/m/f0a11e9526a56f1515ddaa9d07ae3842d2afec33_img_7_bca37/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/1162-Tiehack-Rd-Aspen-CO-81611/LRVDU_pid/" + }, + { + "listing_id": "1868196854122259585", + "slug": "1395-sierra-vista-dr-unit-1-aspen-co-81611", + "title": "$10,995,000", + "price": 10995000, + "is_rent": false, + "street": "1395 Sierra Vista Drive, Unit 1", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 4, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 4390, + "latitude": 39.202751, + "longitude": -106.839354, + "status": "for-sale", + "badges": [ + "Listed By Compass", + "Virtual Tour" + ], + "hero_uuid": "legacy/9912bef6416650160962b201eb9cb738e37d1683_img_0_9d5f3", + "gallery_uuids": [ + "legacy/9912bef6416650160962b201eb9cb738e37d1683_img_0_9d5f3", + "legacy/9912bef6416650160962b201eb9cb738e37d1683_img_1_9c7c5", + "legacy/9912bef6416650160962b201eb9cb738e37d1683_img_2_20c71", + "legacy/9912bef6416650160962b201eb9cb738e37d1683_img_3_fb257", + "legacy/9912bef6416650160962b201eb9cb738e37d1683_img_4_862d9", + "legacy/9912bef6416650160962b201eb9cb738e37d1683_img_5_45d9b", + "legacy/9912bef6416650160962b201eb9cb738e37d1683_img_6_c42da", + "legacy/9912bef6416650160962b201eb9cb738e37d1683_img_7_be35c" + ], + "gallery_urls": [ + "https://www.compass.com/m/9912bef6416650160962b201eb9cb738e37d1683_img_0_9d5f3/640x480.jpg", + "https://www.compass.com/m/9912bef6416650160962b201eb9cb738e37d1683_img_1_9c7c5/640x480.jpg", + "https://www.compass.com/m/9912bef6416650160962b201eb9cb738e37d1683_img_2_20c71/640x480.jpg", + "https://www.compass.com/m/9912bef6416650160962b201eb9cb738e37d1683_img_3_fb257/640x480.jpg", + "https://www.compass.com/m/9912bef6416650160962b201eb9cb738e37d1683_img_4_862d9/640x480.jpg", + "https://www.compass.com/m/9912bef6416650160962b201eb9cb738e37d1683_img_5_45d9b/640x480.jpg", + "https://www.compass.com/m/9912bef6416650160962b201eb9cb738e37d1683_img_6_c42da/640x480.jpg", + "https://www.compass.com/m/9912bef6416650160962b201eb9cb738e37d1683_img_7_be35c/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/1395-Sierra-Vista-Dr-Unit-1-Aspen-CO-81611/LQWSQ_pid/" + }, + { + "listing_id": "1991494172450990729", + "slug": "724-n-hayden-rd-aspen-co-81611", + "title": "$38,500,000", + "price": 38500000, + "is_rent": false, + "street": "724 North Hayden Road", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 5, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 5417, + "latitude": 39.16251200000001, + "longitude": -106.84935, + "status": "for-sale", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/5bbacb68a49828780a4e96cbae4f12e4e1ae6621_img_0_b34a3", + "gallery_uuids": [ + "legacy/5bbacb68a49828780a4e96cbae4f12e4e1ae6621_img_0_b34a3", + "legacy/5bbacb68a49828780a4e96cbae4f12e4e1ae6621_img_1_be20c", + "legacy/5bbacb68a49828780a4e96cbae4f12e4e1ae6621_img_2_9597a", + "legacy/5bbacb68a49828780a4e96cbae4f12e4e1ae6621_img_3_e96c9", + "legacy/5bbacb68a49828780a4e96cbae4f12e4e1ae6621_img_4_fdd0d", + "legacy/5bbacb68a49828780a4e96cbae4f12e4e1ae6621_img_5_54640", + "legacy/5bbacb68a49828780a4e96cbae4f12e4e1ae6621_img_6_72b45", + "legacy/5bbacb68a49828780a4e96cbae4f12e4e1ae6621_img_7_be07d" + ], + "gallery_urls": [ + "https://www.compass.com/m/5bbacb68a49828780a4e96cbae4f12e4e1ae6621_img_0_b34a3/640x480.jpg", + "https://www.compass.com/m/5bbacb68a49828780a4e96cbae4f12e4e1ae6621_img_1_be20c/640x480.jpg", + "https://www.compass.com/m/5bbacb68a49828780a4e96cbae4f12e4e1ae6621_img_2_9597a/640x480.jpg", + "https://www.compass.com/m/5bbacb68a49828780a4e96cbae4f12e4e1ae6621_img_3_e96c9/640x480.jpg", + "https://www.compass.com/m/5bbacb68a49828780a4e96cbae4f12e4e1ae6621_img_4_fdd0d/640x480.jpg", + "https://www.compass.com/m/5bbacb68a49828780a4e96cbae4f12e4e1ae6621_img_5_54640/640x480.jpg", + "https://www.compass.com/m/5bbacb68a49828780a4e96cbae4f12e4e1ae6621_img_6_72b45/640x480.jpg", + "https://www.compass.com/m/5bbacb68a49828780a4e96cbae4f12e4e1ae6621_img_7_be07d/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/724-N-Hayden-Rd-Aspen-CO-81611/LQX0N_pid/" + }, + { + "listing_id": "2095934286325029505", + "slug": "415-e-dean-st-unit-5-week-5-aspen-co-81611", + "title": "$145,000", + "price": 145000, + "is_rent": false, + "street": "415 East Dean St Unit 5 Week 5", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1519, + "latitude": 39.1866543, + "longitude": -106.8199561, + "status": "for-sale", + "badges": [], + "hero_uuid": "legacy/50ef7c38b43978c260dd6ca8339868b9e5957365_img_0_372bb", + "gallery_uuids": [ + "legacy/50ef7c38b43978c260dd6ca8339868b9e5957365_img_0_372bb", + "legacy/50ef7c38b43978c260dd6ca8339868b9e5957365_img_1_280d4", + "legacy/50ef7c38b43978c260dd6ca8339868b9e5957365_img_2_79497", + "legacy/50ef7c38b43978c260dd6ca8339868b9e5957365_img_3_766cc", + "legacy/50ef7c38b43978c260dd6ca8339868b9e5957365_img_4_e8429", + "legacy/50ef7c38b43978c260dd6ca8339868b9e5957365_img_5_bf85c", + "legacy/50ef7c38b43978c260dd6ca8339868b9e5957365_img_6_9ebbb", + "legacy/50ef7c38b43978c260dd6ca8339868b9e5957365_img_7_e5d8d" + ], + "gallery_urls": [ + "https://www.compass.com/m/50ef7c38b43978c260dd6ca8339868b9e5957365_img_0_372bb/640x480.jpg", + "https://www.compass.com/m/50ef7c38b43978c260dd6ca8339868b9e5957365_img_1_280d4/640x480.jpg", + "https://www.compass.com/m/50ef7c38b43978c260dd6ca8339868b9e5957365_img_2_79497/640x480.jpg", + "https://www.compass.com/m/50ef7c38b43978c260dd6ca8339868b9e5957365_img_3_766cc/640x480.jpg", + "https://www.compass.com/m/50ef7c38b43978c260dd6ca8339868b9e5957365_img_4_e8429/640x480.jpg", + "https://www.compass.com/m/50ef7c38b43978c260dd6ca8339868b9e5957365_img_5_bf85c/640x480.jpg", + "https://www.compass.com/m/50ef7c38b43978c260dd6ca8339868b9e5957365_img_6_9ebbb/640x480.jpg", + "https://www.compass.com/m/50ef7c38b43978c260dd6ca8339868b9e5957365_img_7_e5d8d/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/415-E-Dean-St-Unit-5-Week-5-Aspen-CO-81611/2095934286325029505_lid/" + }, + { + "listing_id": "2098864023212997433", + "slug": "58-maroon-dr-aspen-co-81611", + "title": "$10,000,000", + "price": 10000000, + "is_rent": false, + "street": "58 Maroon Drive", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 4, + "baths": 5.0, + "baths_full": 3, + "baths_half": null, + "sqft": 3267, + "latitude": 39.1985353, + "longitude": -106.8480061, + "status": "for-sale", + "badges": [], + "hero_uuid": "legacy/5897bb1c7cff53ce7a62c6a5bd0d92ea9f213e57_img_0_312eb", + "gallery_uuids": [ + "legacy/5897bb1c7cff53ce7a62c6a5bd0d92ea9f213e57_img_0_312eb", + "legacy/5897bb1c7cff53ce7a62c6a5bd0d92ea9f213e57_img_1_2b980", + "legacy/5897bb1c7cff53ce7a62c6a5bd0d92ea9f213e57_img_2_1e139", + "legacy/5897bb1c7cff53ce7a62c6a5bd0d92ea9f213e57_img_3_3f16e", + "legacy/5897bb1c7cff53ce7a62c6a5bd0d92ea9f213e57_img_4_3cc58", + "legacy/5897bb1c7cff53ce7a62c6a5bd0d92ea9f213e57_img_5_25771", + "legacy/5897bb1c7cff53ce7a62c6a5bd0d92ea9f213e57_img_6_6e088", + "legacy/5897bb1c7cff53ce7a62c6a5bd0d92ea9f213e57_img_7_3a8c8" + ], + "gallery_urls": [ + "https://www.compass.com/m/5897bb1c7cff53ce7a62c6a5bd0d92ea9f213e57_img_0_312eb/640x480.jpg", + "https://www.compass.com/m/5897bb1c7cff53ce7a62c6a5bd0d92ea9f213e57_img_1_2b980/640x480.jpg", + "https://www.compass.com/m/5897bb1c7cff53ce7a62c6a5bd0d92ea9f213e57_img_2_1e139/640x480.jpg", + "https://www.compass.com/m/5897bb1c7cff53ce7a62c6a5bd0d92ea9f213e57_img_3_3f16e/640x480.jpg", + "https://www.compass.com/m/5897bb1c7cff53ce7a62c6a5bd0d92ea9f213e57_img_4_3cc58/640x480.jpg", + "https://www.compass.com/m/5897bb1c7cff53ce7a62c6a5bd0d92ea9f213e57_img_5_25771/640x480.jpg", + "https://www.compass.com/m/5897bb1c7cff53ce7a62c6a5bd0d92ea9f213e57_img_6_6e088/640x480.jpg", + "https://www.compass.com/m/5897bb1c7cff53ce7a62c6a5bd0d92ea9f213e57_img_7_3a8c8/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/58-Maroon-Dr-Aspen-CO-81611/LR44Y_pid/" + }, + { + "listing_id": "2008346842162298705", + "slug": "415-e-dean-st-35-week-35-aspen-co-81611", + "title": "$175,000", + "price": 175000, + "is_rent": false, + "street": "415 East Dean St # 35 Week 35", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 1831, + "latitude": 39.1866543, + "longitude": -106.8199561, + "status": "for-sale", + "badges": [], + "hero_uuid": "legacy/a2f76ecdd86c5883499d7aeae098b2f60fc94d2b_img_0_372bb", + "gallery_uuids": [ + "legacy/a2f76ecdd86c5883499d7aeae098b2f60fc94d2b_img_0_372bb", + "legacy/a2f76ecdd86c5883499d7aeae098b2f60fc94d2b_img_1_25743", + "legacy/a2f76ecdd86c5883499d7aeae098b2f60fc94d2b_img_2_96e93", + "legacy/a2f76ecdd86c5883499d7aeae098b2f60fc94d2b_img_3_d6acd", + "legacy/a2f76ecdd86c5883499d7aeae098b2f60fc94d2b_img_4_cd1fb", + "legacy/a2f76ecdd86c5883499d7aeae098b2f60fc94d2b_img_5_8c945", + "legacy/a2f76ecdd86c5883499d7aeae098b2f60fc94d2b_img_6_050b1", + "legacy/a2f76ecdd86c5883499d7aeae098b2f60fc94d2b_img_7_607a9" + ], + "gallery_urls": [ + "https://www.compass.com/m/a2f76ecdd86c5883499d7aeae098b2f60fc94d2b_img_0_372bb/640x480.jpg", + "https://www.compass.com/m/a2f76ecdd86c5883499d7aeae098b2f60fc94d2b_img_1_25743/640x480.jpg", + "https://www.compass.com/m/a2f76ecdd86c5883499d7aeae098b2f60fc94d2b_img_2_96e93/640x480.jpg", + "https://www.compass.com/m/a2f76ecdd86c5883499d7aeae098b2f60fc94d2b_img_3_d6acd/640x480.jpg", + "https://www.compass.com/m/a2f76ecdd86c5883499d7aeae098b2f60fc94d2b_img_4_cd1fb/640x480.jpg", + "https://www.compass.com/m/a2f76ecdd86c5883499d7aeae098b2f60fc94d2b_img_5_8c945/640x480.jpg", + "https://www.compass.com/m/a2f76ecdd86c5883499d7aeae098b2f60fc94d2b_img_6_050b1/640x480.jpg", + "https://www.compass.com/m/a2f76ecdd86c5883499d7aeae098b2f60fc94d2b_img_7_607a9/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/415-E-Dean-St-35-Week-35-Aspen-CO-81611/2008346842162298705_lid/" + }, + { + "listing_id": "2100222800844142641", + "slug": "501-w-main-st-unit-a101-aspen-co-81611", + "title": "$1,925,000", + "price": 1925000, + "is_rent": false, + "street": "501 West Main Street, Unit A101", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 460, + "latitude": 39.1922779, + "longitude": -106.8277825, + "status": "for-sale", + "badges": [], + "hero_uuid": "legacy/27326da878cc1b916a042be2f183d6804e3db646_img_0_f8c4e", + "gallery_uuids": [ + "legacy/27326da878cc1b916a042be2f183d6804e3db646_img_0_f8c4e", + "legacy/27326da878cc1b916a042be2f183d6804e3db646_img_1_ae0d0", + "legacy/27326da878cc1b916a042be2f183d6804e3db646_img_2_f59cb", + "legacy/27326da878cc1b916a042be2f183d6804e3db646_img_3_6d71e", + "legacy/27326da878cc1b916a042be2f183d6804e3db646_img_4_796d6", + "legacy/27326da878cc1b916a042be2f183d6804e3db646_img_5_52d5e", + "legacy/27326da878cc1b916a042be2f183d6804e3db646_img_6_52d51", + "legacy/27326da878cc1b916a042be2f183d6804e3db646_img_7_51c3e" + ], + "gallery_urls": [ + "https://www.compass.com/m/27326da878cc1b916a042be2f183d6804e3db646_img_0_f8c4e/640x480.jpg", + "https://www.compass.com/m/27326da878cc1b916a042be2f183d6804e3db646_img_1_ae0d0/640x480.jpg", + "https://www.compass.com/m/27326da878cc1b916a042be2f183d6804e3db646_img_2_f59cb/640x480.jpg", + "https://www.compass.com/m/27326da878cc1b916a042be2f183d6804e3db646_img_3_6d71e/640x480.jpg", + "https://www.compass.com/m/27326da878cc1b916a042be2f183d6804e3db646_img_4_796d6/640x480.jpg", + "https://www.compass.com/m/27326da878cc1b916a042be2f183d6804e3db646_img_5_52d5e/640x480.jpg", + "https://www.compass.com/m/27326da878cc1b916a042be2f183d6804e3db646_img_6_52d51/640x480.jpg", + "https://www.compass.com/m/27326da878cc1b916a042be2f183d6804e3db646_img_7_51c3e/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/501-W-Main-St-Unit-A101-Aspen-CO-81611/LRBC9_pid/" + }, + { + "listing_id": "2029213104600093465", + "slug": "301-e-hyman-ave-unit-103-wks-26-36-51-aspen-co-81611", + "title": "$85,000", + "price": 85000, + "is_rent": false, + "street": "301 East Hyman Avenue, Unit 103 (WKS 26 36 51)", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": null, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 714, + "latitude": 39.1889848, + "longitude": -106.8206493, + "status": "for-sale", + "badges": [], + "hero_uuid": "legacy/9df9e048c80e0f07ecd9b8c5ce867e31640fad28_img_0_b1fd7", + "gallery_uuids": [ + "legacy/9df9e048c80e0f07ecd9b8c5ce867e31640fad28_img_0_b1fd7", + "legacy/9df9e048c80e0f07ecd9b8c5ce867e31640fad28_img_1_734ee", + "legacy/9df9e048c80e0f07ecd9b8c5ce867e31640fad28_img_2_b067f", + "legacy/9df9e048c80e0f07ecd9b8c5ce867e31640fad28_img_3_8d86b", + "legacy/9df9e048c80e0f07ecd9b8c5ce867e31640fad28_img_4_5583b", + "legacy/9df9e048c80e0f07ecd9b8c5ce867e31640fad28_img_5_52e25", + "legacy/9df9e048c80e0f07ecd9b8c5ce867e31640fad28_img_6_2f23b", + "legacy/9df9e048c80e0f07ecd9b8c5ce867e31640fad28_img_7_ce8da" + ], + "gallery_urls": [ + "https://www.compass.com/m/9df9e048c80e0f07ecd9b8c5ce867e31640fad28_img_0_b1fd7/640x480.jpg", + "https://www.compass.com/m/9df9e048c80e0f07ecd9b8c5ce867e31640fad28_img_1_734ee/640x480.jpg", + "https://www.compass.com/m/9df9e048c80e0f07ecd9b8c5ce867e31640fad28_img_2_b067f/640x480.jpg", + "https://www.compass.com/m/9df9e048c80e0f07ecd9b8c5ce867e31640fad28_img_3_8d86b/640x480.jpg", + "https://www.compass.com/m/9df9e048c80e0f07ecd9b8c5ce867e31640fad28_img_4_5583b/640x480.jpg", + "https://www.compass.com/m/9df9e048c80e0f07ecd9b8c5ce867e31640fad28_img_5_52e25/640x480.jpg", + "https://www.compass.com/m/9df9e048c80e0f07ecd9b8c5ce867e31640fad28_img_6_2f23b/640x480.jpg", + "https://www.compass.com/m/9df9e048c80e0f07ecd9b8c5ce867e31640fad28_img_7_ce8da/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/301-E-Hyman-Ave-Unit-103-WKS-26-36-51-Aspen-CO-81611/266TL5_pid/" + }, + { + "listing_id": "2031338722812374913", + "slug": "tbd-pfister-dr-aspen-co-81611", + "title": "$4,950,000", + "price": 4950000, + "is_rent": false, + "street": "Tbd Pfister Drive", + "neighborhood": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 39.194708, + "longitude": -106.857761, + "status": "for-sale", + "badges": [], + "hero_uuid": "legacy/63e8469f044c24fc2cd6cfecdc096844b47ed912_img_0_e7ac1", + "gallery_uuids": [ + "legacy/63e8469f044c24fc2cd6cfecdc096844b47ed912_img_0_e7ac1", + "legacy/63e8469f044c24fc2cd6cfecdc096844b47ed912_img_1_5bf7b", + "legacy/63e8469f044c24fc2cd6cfecdc096844b47ed912_img_2_e6984", + "legacy/63e8469f044c24fc2cd6cfecdc096844b47ed912_img_3_c1728", + "legacy/63e8469f044c24fc2cd6cfecdc096844b47ed912_img_4_c41ee", + "legacy/63e8469f044c24fc2cd6cfecdc096844b47ed912_img_5_9661e", + "legacy/63e8469f044c24fc2cd6cfecdc096844b47ed912_img_6_d9fb9", + "legacy/63e8469f044c24fc2cd6cfecdc096844b47ed912_img_7_3a291" + ], + "gallery_urls": [ + "https://www.compass.com/m/63e8469f044c24fc2cd6cfecdc096844b47ed912_img_0_e7ac1/640x480.jpg", + "https://www.compass.com/m/63e8469f044c24fc2cd6cfecdc096844b47ed912_img_1_5bf7b/640x480.jpg", + "https://www.compass.com/m/63e8469f044c24fc2cd6cfecdc096844b47ed912_img_2_e6984/640x480.jpg", + "https://www.compass.com/m/63e8469f044c24fc2cd6cfecdc096844b47ed912_img_3_c1728/640x480.jpg", + "https://www.compass.com/m/63e8469f044c24fc2cd6cfecdc096844b47ed912_img_4_c41ee/640x480.jpg", + "https://www.compass.com/m/63e8469f044c24fc2cd6cfecdc096844b47ed912_img_5_9661e/640x480.jpg", + "https://www.compass.com/m/63e8469f044c24fc2cd6cfecdc096844b47ed912_img_6_d9fb9/640x480.jpg", + "https://www.compass.com/m/63e8469f044c24fc2cd6cfecdc096844b47ed912_img_7_3a291/640x480.jpg" + ], + "source_city": "aspen", + "detail_url": "https://www.compass.com/homedetails/Tbd-Pfister-Dr-Aspen-CO-81611/LRKCC_pid/" + }, + { + "listing_id": "2103010511052722345", + "slug": "1718-corcoran-st-nw-unit-5-washington-dc-20009", + "title": "$315,000", + "price": 315000, + "is_rent": false, + "street": "1718 Corcoran Street Northwest, Unit 5", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20009", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 563, + "latitude": 38.9117009, + "longitude": -77.0392958, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/9a74b461-3b1c-41c4-b04c-3c2a96d01273", + "gallery_uuids": [ + "uuid/9a74b461-3b1c-41c4-b04c-3c2a96d01273", + "uuid/8d3c915e-a1e5-4989-81a3-77b2075de746", + "uuid/3318b97f-e0c0-42b7-ad24-e906e7192993", + "uuid/b0c31cab-f98d-4280-95ba-b2186c62be41", + "uuid/91289c05-a234-4de6-980f-98b1c8d5a959", + "uuid/8d92aa70-5291-4f84-999e-cf6fc5bd984c", + "uuid/f76ca892-a1c2-4c1e-99c0-2ffc29549df9", + "uuid/e34f827d-b23e-4d3a-ba93-0063b008eafb" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/9a74b461-3b1c-41c4-b04c-3c2a96d01273/1498x1000.jpg", + "https://www.compass.com/m/0/8d3c915e-a1e5-4989-81a3-77b2075de746/667x1000.jpg", + "https://www.compass.com/m/0/3318b97f-e0c0-42b7-ad24-e906e7192993/1498x1000.jpg", + "https://www.compass.com/m/0/b0c31cab-f98d-4280-95ba-b2186c62be41/1498x1000.jpg", + "https://www.compass.com/m/0/91289c05-a234-4de6-980f-98b1c8d5a959/667x1000.jpg", + "https://www.compass.com/m/0/8d92aa70-5291-4f84-999e-cf6fc5bd984c/1498x1000.jpg", + "https://www.compass.com/m/0/f76ca892-a1c2-4c1e-99c0-2ffc29549df9/1497x1000.jpg", + "https://www.compass.com/m/0/e34f827d-b23e-4d3a-ba93-0063b008eafb/1498x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1718-Corcoran-St-NW-Unit-5-Washington-DC-20009/1U4OU4_pid/" + }, + { + "listing_id": "2078479686554124009", + "slug": "1823-16th-st-nw-unit-2-washington-dc-20009", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "1823 16th Street Northwest, Unit 2", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20009", + "beds": 3, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2902, + "latitude": 38.9150031, + "longitude": -77.0361688, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/acbf22f4-1ceb-45e7-8917-697d2ba9185b", + "gallery_uuids": [ + "uuid/acbf22f4-1ceb-45e7-8917-697d2ba9185b", + "uuid/ebaef4f7-091d-4e46-a1b9-fa698c015572", + "uuid/12d6f311-ff72-4bb3-bc80-1f240737ce4f", + "uuid/9dee8ecf-f4c9-4b6d-ae68-8c89b7fe8f8c", + "uuid/2e4daba6-59f5-42d5-bf72-36dca9a08a87", + "uuid/1e73369a-867f-40a7-a4c0-8d7ae3353c37", + "uuid/a66c5a29-fcbb-4ada-b04f-ece0a62d6838", + "uuid/baaaa9c3-aa4c-4e94-8766-86f905e9067e" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/acbf22f4-1ceb-45e7-8917-697d2ba9185b/750x1000.jpg", + "https://www.compass.com/m/0/ebaef4f7-091d-4e46-a1b9-fa698c015572/1333x1000.jpg", + "https://www.compass.com/m/0/12d6f311-ff72-4bb3-bc80-1f240737ce4f/1333x1000.jpg", + "https://www.compass.com/m/0/9dee8ecf-f4c9-4b6d-ae68-8c89b7fe8f8c/1333x1000.jpg", + "https://www.compass.com/m/0/2e4daba6-59f5-42d5-bf72-36dca9a08a87/1333x1000.jpg", + "https://www.compass.com/m/0/1e73369a-867f-40a7-a4c0-8d7ae3353c37/1333x1000.jpg", + "https://www.compass.com/m/0/a66c5a29-fcbb-4ada-b04f-ece0a62d6838/1333x1000.jpg", + "https://www.compass.com/m/0/baaaa9c3-aa4c-4e94-8766-86f905e9067e/1333x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1823-16th-St-NW-Unit-2-Washington-DC-20009/1TFG8E_pid/" + }, + { + "listing_id": "2102932027232557289", + "slug": "1423-r-st-nw-unit-105-washington-dc-20009", + "title": "$780,000", + "price": 780000, + "is_rent": false, + "street": "1423 R Street Northwest, Unit 105", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20009", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1120, + "latitude": 38.9128892, + "longitude": -77.0331238, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/984b0031-bcf0-4b4d-9101-3a145c5ec0f8", + "gallery_uuids": [ + "uuid/984b0031-bcf0-4b4d-9101-3a145c5ec0f8", + "uuid/9a63e11a-7098-4b78-ab84-8fc865cc0f61", + "uuid/ce33455d-78d9-4b99-86d3-7201932c512f", + "uuid/61fc4f84-e441-40f5-b38d-24646a3d0dd8", + "uuid/8fb159d2-8bec-4c0d-afb7-0e473983916b", + "uuid/0a242d71-919b-470b-bac4-c83cdb4eb8ac", + "uuid/92c222fa-a8fd-4bfd-8bc8-24f306c37c31", + "uuid/d8c98f1a-ca0e-49c4-9810-b164f4328a49" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/984b0031-bcf0-4b4d-9101-3a145c5ec0f8/1500x1000.jpg", + "https://www.compass.com/m/0/9a63e11a-7098-4b78-ab84-8fc865cc0f61/1500x1000.jpg", + "https://www.compass.com/m/0/ce33455d-78d9-4b99-86d3-7201932c512f/1500x1000.jpg", + "https://www.compass.com/m/0/61fc4f84-e441-40f5-b38d-24646a3d0dd8/1500x1000.jpg", + "https://www.compass.com/m/0/8fb159d2-8bec-4c0d-afb7-0e473983916b/1500x1000.jpg", + "https://www.compass.com/m/0/0a242d71-919b-470b-bac4-c83cdb4eb8ac/1500x1000.jpg", + "https://www.compass.com/m/0/92c222fa-a8fd-4bfd-8bc8-24f306c37c31/1500x1000.jpg", + "https://www.compass.com/m/0/d8c98f1a-ca0e-49c4-9810-b164f4328a49/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1423-R-St-NW-Unit-105-Washington-DC-20009/1UCL74_pid/" + }, + { + "listing_id": "2102648277294495537", + "slug": "1848-wyoming-ave-nw-unit-201-washington-dc-20009", + "title": "$815,000", + "price": 815000, + "is_rent": false, + "street": "1848 Wyoming Avenue Northwest, Unit 201", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20009", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1132, + "latitude": 38.918563, + "longitude": -77.043343, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Open: 5/17 01:00PM - 03:00PM" + ], + "hero_uuid": "legacy/ed523e8530a6f1410d5582589d44aa3f0ce78c59_img_0_35e33", + "gallery_uuids": [ + "legacy/ed523e8530a6f1410d5582589d44aa3f0ce78c59_img_0_35e33", + "legacy/ed523e8530a6f1410d5582589d44aa3f0ce78c59_img_1_c9d52", + "legacy/ed523e8530a6f1410d5582589d44aa3f0ce78c59_img_2_545e8", + "legacy/ed523e8530a6f1410d5582589d44aa3f0ce78c59_img_3_28cbb", + "legacy/ed523e8530a6f1410d5582589d44aa3f0ce78c59_img_4_dabae", + "legacy/ed523e8530a6f1410d5582589d44aa3f0ce78c59_img_5_4eb16", + "legacy/ed523e8530a6f1410d5582589d44aa3f0ce78c59_img_6_4a88f", + "legacy/ed523e8530a6f1410d5582589d44aa3f0ce78c59_img_7_327cd" + ], + "gallery_urls": [ + "https://www.compass.com/m/ed523e8530a6f1410d5582589d44aa3f0ce78c59_img_0_35e33/640x480.jpg", + "https://www.compass.com/m/ed523e8530a6f1410d5582589d44aa3f0ce78c59_img_1_c9d52/640x480.jpg", + "https://www.compass.com/m/ed523e8530a6f1410d5582589d44aa3f0ce78c59_img_2_545e8/640x480.jpg", + "https://www.compass.com/m/ed523e8530a6f1410d5582589d44aa3f0ce78c59_img_3_28cbb/640x480.jpg", + "https://www.compass.com/m/ed523e8530a6f1410d5582589d44aa3f0ce78c59_img_4_dabae/640x480.jpg", + "https://www.compass.com/m/ed523e8530a6f1410d5582589d44aa3f0ce78c59_img_5_4eb16/640x480.jpg", + "https://www.compass.com/m/ed523e8530a6f1410d5582589d44aa3f0ce78c59_img_6_4a88f/640x480.jpg", + "https://www.compass.com/m/ed523e8530a6f1410d5582589d44aa3f0ce78c59_img_7_327cd/640x480.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1848-Wyoming-Ave-NW-Unit-201-Washington-DC-20009/1V0I4Z_pid/" + }, + { + "listing_id": "2100519969463620289", + "slug": "2415-20th-st-nw-unit-38-washington-dc-20009", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "2415 20th Street Northwest, Unit 38", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20009", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1224, + "latitude": 38.921641, + "longitude": -77.0466868, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/582bab56-ca62-4a1a-9d5c-ecdeaf5db9fd", + "gallery_uuids": [ + "uuid/582bab56-ca62-4a1a-9d5c-ecdeaf5db9fd", + "uuid/a3525e91-e154-40c9-892e-e0e4b02b11b2", + "uuid/ba595178-aad6-4987-a73c-486fa8d39828", + "uuid/6de56ff5-3d40-4332-92df-9c948ada692b", + "uuid/b2546038-e4e1-458d-9233-de69c9b899dd", + "uuid/67f3a839-cac0-499f-bde7-95fd9857a519", + "uuid/172bdf50-c43f-4990-bf04-03f387d4b3cd", + "uuid/65da00bd-be41-449a-9fbd-86f7396c0bb3" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/582bab56-ca62-4a1a-9d5c-ecdeaf5db9fd/1152x768.jpg", + "https://www.compass.com/m/0/a3525e91-e154-40c9-892e-e0e4b02b11b2/1152x768.jpg", + "https://www.compass.com/m/0/ba595178-aad6-4987-a73c-486fa8d39828/1152x768.jpg", + "https://www.compass.com/m/0/6de56ff5-3d40-4332-92df-9c948ada692b/1152x768.jpg", + "https://www.compass.com/m/0/b2546038-e4e1-458d-9233-de69c9b899dd/1152x768.jpg", + "https://www.compass.com/m/0/67f3a839-cac0-499f-bde7-95fd9857a519/1152x768.jpg", + "https://www.compass.com/m/0/172bdf50-c43f-4990-bf04-03f387d4b3cd/1152x768.jpg", + "https://www.compass.com/m/0/65da00bd-be41-449a-9fbd-86f7396c0bb3/1152x768.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/2415-20th-St-NW-Unit-38-Washington-DC-20009/1ULDJH_pid/" + }, + { + "listing_id": "2078605962141184241", + "slug": "2009-columbia-rd-nw-unit-2-washington-dc-20009", + "title": "$774,900", + "price": 774900, + "is_rent": false, + "street": "2009 Columbia Road Northwest, Unit 2", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20009", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1150, + "latitude": 38.9175356, + "longitude": -77.0460346, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/4b592850-136c-48e9-ae14-dcbbbaea7690", + "gallery_uuids": [ + "uuid/4b592850-136c-48e9-ae14-dcbbbaea7690", + "uuid/3690a64c-0b17-4870-a134-9b11379e31fe", + "uuid/0c65f45c-770f-432e-992b-200c0ee5532a", + "uuid/07133314-6523-46bc-aa1d-f991c4fc44f5", + "uuid/cc968cb0-e7b1-4a7f-8eff-c0a9294935a4", + "uuid/6491049d-ce9f-4347-bd32-34ac85bfd216", + "uuid/4d614d0a-4f7e-48f6-b8f9-4dc73a3ac309", + "uuid/89316e1a-8b86-45a0-a6bf-b6601ae88b24" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/4b592850-136c-48e9-ae14-dcbbbaea7690/1500x1000.jpg", + "https://www.compass.com/m/0/3690a64c-0b17-4870-a134-9b11379e31fe/1500x1000.jpg", + "https://www.compass.com/m/0/0c65f45c-770f-432e-992b-200c0ee5532a/1500x1000.jpg", + "https://www.compass.com/m/0/07133314-6523-46bc-aa1d-f991c4fc44f5/1500x1000.jpg", + "https://www.compass.com/m/0/cc968cb0-e7b1-4a7f-8eff-c0a9294935a4/1500x999.jpg", + "https://www.compass.com/m/0/6491049d-ce9f-4347-bd32-34ac85bfd216/1500x1000.jpg", + "https://www.compass.com/m/0/4d614d0a-4f7e-48f6-b8f9-4dc73a3ac309/1500x1000.jpg", + "https://www.compass.com/m/0/89316e1a-8b86-45a0-a6bf-b6601ae88b24/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/2009-Columbia-Rd-NW-Unit-2-Washington-DC-20009/1UZJYV_pid/" + }, + { + "listing_id": "1942978768674847953", + "slug": "1226-11th-st-nw-unit-200-washington-dc-20001", + "title": "$550,000", + "price": 550000, + "is_rent": false, + "street": "1226 11th Street Northwest, Unit 200", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20001", + "beds": null, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 880, + "latitude": 38.906496, + "longitude": -77.0272964, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/07144a70-bb41-41c4-9c92-896b434543d1", + "gallery_uuids": [ + "uuid/07144a70-bb41-41c4-9c92-896b434543d1", + "uuid/e2662f4a-6893-449d-a4cd-4e18ebb7e295", + "uuid/93dd7742-a344-4cbe-bbc8-2da15f6ab60a", + "uuid/1d4e424b-b143-4d62-b46d-0c74413f6156", + "uuid/96b55875-fe94-4e9a-bda2-b8d3ca8583ce", + "uuid/ae7503e6-1174-4b1e-a614-29c448e03d0d", + "uuid/0d79ce7c-011a-4354-8ad5-bb1992488115", + "uuid/7abe70ba-f763-4adc-8225-dea7500cd363" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/07144a70-bb41-41c4-9c92-896b434543d1/1500x1000.jpg", + "https://www.compass.com/m/0/e2662f4a-6893-449d-a4cd-4e18ebb7e295/1500x721.jpg", + "https://www.compass.com/m/0/93dd7742-a344-4cbe-bbc8-2da15f6ab60a/1500x1000.jpg", + "https://www.compass.com/m/0/1d4e424b-b143-4d62-b46d-0c74413f6156/1499x1000.jpg", + "https://www.compass.com/m/0/96b55875-fe94-4e9a-bda2-b8d3ca8583ce/1500x1000.jpg", + "https://www.compass.com/m/0/ae7503e6-1174-4b1e-a614-29c448e03d0d/1500x1000.jpg", + "https://www.compass.com/m/0/0d79ce7c-011a-4354-8ad5-bb1992488115/1500x1000.jpg", + "https://www.compass.com/m/0/7abe70ba-f763-4adc-8225-dea7500cd363/1499x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1226-11th-St-NW-Unit-200-Washington-DC-20001/1UJQVD_pid/" + }, + { + "listing_id": "2101666954794416105", + "slug": "1239-vermont-ave-nw-unit-709-washington-dc-20005", + "title": "$585,000", + "price": 585000, + "is_rent": false, + "street": "1239 Vermont Avenue Northwest, Unit 709", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20005", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 953, + "latitude": 38.90699559999999, + "longitude": -77.03068209999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Virtual Tour" + ], + "hero_uuid": "uuid/64bcada2-0349-478d-a3ee-d5b3461703f8", + "gallery_uuids": [ + "uuid/64bcada2-0349-478d-a3ee-d5b3461703f8", + "uuid/e5f631d3-831c-4275-9567-0fbc5adee0e7", + "uuid/28a8a159-7e11-4b96-a804-5dbabfb4a3e2", + "uuid/68d69cbe-2ad8-458e-a3fa-3a60c1582866", + "uuid/aeb14efd-2047-45f2-9315-e8e25d2033d4", + "uuid/31127b86-4525-4dcf-817d-a20ab018b3f9", + "uuid/cd4ac7a2-eb47-4237-891b-baa10059655b", + "uuid/6fbf37b0-ebe7-4d1d-af45-a6867a3dca57" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/64bcada2-0349-478d-a3ee-d5b3461703f8/1500x1000.jpg", + "https://www.compass.com/m/0/e5f631d3-831c-4275-9567-0fbc5adee0e7/1500x999.jpg", + "https://www.compass.com/m/0/28a8a159-7e11-4b96-a804-5dbabfb4a3e2/1500x1000.jpg", + "https://www.compass.com/m/0/68d69cbe-2ad8-458e-a3fa-3a60c1582866/1500x1000.jpg", + "https://www.compass.com/m/0/aeb14efd-2047-45f2-9315-e8e25d2033d4/1500x1000.jpg", + "https://www.compass.com/m/0/31127b86-4525-4dcf-817d-a20ab018b3f9/1500x999.jpg", + "https://www.compass.com/m/0/cd4ac7a2-eb47-4237-891b-baa10059655b/1500x1000.jpg", + "https://www.compass.com/m/0/6fbf37b0-ebe7-4d1d-af45-a6867a3dca57/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1239-Vermont-Ave-NW-Unit-709-Washington-DC-20005/1UPSCN_pid/" + }, + { + "listing_id": "2098049747242103697", + "slug": "1010-massachusetts-ave-nw-unit-207-washington-dc-20001", + "title": "$695,000", + "price": 695000, + "is_rent": false, + "street": "1010 Massachusetts Avenue Northwest, Unit 207", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20001", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 994, + "latitude": 38.9033795, + "longitude": -77.0266704, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/042c2db1-e49a-4b7c-803c-a6dca1b4a304", + "gallery_uuids": [ + "uuid/042c2db1-e49a-4b7c-803c-a6dca1b4a304", + "uuid/a63c4f3c-5eda-44f1-9418-5d299e522913", + "uuid/4e81ce4a-4097-49aa-a434-001c2d0d2bdd", + "uuid/fd7be834-4c48-4de7-b095-da11813a2b10", + "uuid/47359c8e-800e-4800-9ce6-5bc8544a3207", + "uuid/e9ec80ce-531b-4d92-9f23-c7264c348ebb", + "uuid/64264cdc-bb0c-4ec3-bac0-036c858aed78", + "uuid/f4d75445-0a34-438e-a356-2c935d8faa3e" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/042c2db1-e49a-4b7c-803c-a6dca1b4a304/1500x1000.jpg", + "https://www.compass.com/m/0/a63c4f3c-5eda-44f1-9418-5d299e522913/1500x1000.jpg", + "https://www.compass.com/m/0/4e81ce4a-4097-49aa-a434-001c2d0d2bdd/1500x1000.jpg", + "https://www.compass.com/m/0/fd7be834-4c48-4de7-b095-da11813a2b10/1500x1000.jpg", + "https://www.compass.com/m/0/47359c8e-800e-4800-9ce6-5bc8544a3207/1500x1000.jpg", + "https://www.compass.com/m/0/e9ec80ce-531b-4d92-9f23-c7264c348ebb/1500x1000.jpg", + "https://www.compass.com/m/0/64264cdc-bb0c-4ec3-bac0-036c858aed78/1500x1000.jpg", + "https://www.compass.com/m/0/f4d75445-0a34-438e-a356-2c935d8faa3e/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1010-Massachusetts-Ave-NW-Unit-207-Washington-DC-20001/1V6R6W_pid/" + }, + { + "listing_id": "2090873409185950569", + "slug": "1300-13th-st-nw-unit-905-washington-dc-20005", + "title": "$985,000", + "price": 985000, + "is_rent": false, + "street": "1300 13th Street Northwest, Unit 905", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20005", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1156, + "latitude": 38.9074709, + "longitude": -77.02986419999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/1f935bed-d62b-4ecc-9c54-47d887bf73f7", + "gallery_uuids": [ + "uuid/1f935bed-d62b-4ecc-9c54-47d887bf73f7", + "uuid/e9b2c8be-83c4-4c37-a64c-0d1b4acd637e", + "uuid/f0852606-7c95-4807-a9cb-8fbdfbe81e48", + "uuid/9642e58c-97ed-49fd-ae96-8d2b261e8b43", + "uuid/c67dafe9-e6bc-4f8e-8d21-58d5f38778af", + "uuid/1744b940-eb92-4f79-b025-b510a0286f6b", + "uuid/e0e9a4d3-d218-46ea-9fd5-2577f88734b7", + "uuid/3b497cb3-c1d8-4c4c-a202-b3e938c39419" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/1f935bed-d62b-4ecc-9c54-47d887bf73f7/1440x960.jpg", + "https://www.compass.com/m/0/e9b2c8be-83c4-4c37-a64c-0d1b4acd637e/1440x960.jpg", + "https://www.compass.com/m/0/f0852606-7c95-4807-a9cb-8fbdfbe81e48/1440x960.jpg", + "https://www.compass.com/m/0/9642e58c-97ed-49fd-ae96-8d2b261e8b43/1440x960.jpg", + "https://www.compass.com/m/0/c67dafe9-e6bc-4f8e-8d21-58d5f38778af/1440x960.jpg", + "https://www.compass.com/m/0/1744b940-eb92-4f79-b025-b510a0286f6b/1440x961.jpg", + "https://www.compass.com/m/0/e0e9a4d3-d218-46ea-9fd5-2577f88734b7/1440x960.jpg", + "https://www.compass.com/m/0/3b497cb3-c1d8-4c4c-a202-b3e938c39419/1440x960.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1300-13th-St-NW-Unit-905-Washington-DC-20005/1TRGKC_pid/" + }, + { + "listing_id": "2078501167304401553", + "slug": "massachusetts-ave-nw-washington-dc-20001", + "title": "$850,000", + "price": 850000, + "is_rent": false, + "street": "Massachusetts Avenue Northwest", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20001", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1050, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/10959077-0279-498f-b4c6-06d8a7a9f5dd", + "gallery_uuids": [ + "uuid/10959077-0279-498f-b4c6-06d8a7a9f5dd", + "uuid/64878ebc-7589-4a38-81a9-d64f36615c27", + "uuid/e71c9f55-036f-4c94-a691-3a34c91869dd", + "uuid/8a4948f9-447d-4762-becc-351d44450b4e", + "uuid/a9c67e6b-9071-4f49-9aa1-3842c0285880", + "uuid/8160cc55-b446-4b7e-ae04-f0ad08d5ac43", + "uuid/7909eeab-de91-498e-9c01-e99fad7b498f", + "uuid/76f0da01-0467-4782-b43f-e955325fb76d" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/10959077-0279-498f-b4c6-06d8a7a9f5dd/1499x1000.jpg", + "https://www.compass.com/m/0/64878ebc-7589-4a38-81a9-d64f36615c27/1499x1000.jpg", + "https://www.compass.com/m/0/e71c9f55-036f-4c94-a691-3a34c91869dd/1499x1000.jpg", + "https://www.compass.com/m/0/8a4948f9-447d-4762-becc-351d44450b4e/1499x1000.jpg", + "https://www.compass.com/m/0/a9c67e6b-9071-4f49-9aa1-3842c0285880/1499x1000.jpg", + "https://www.compass.com/m/0/8160cc55-b446-4b7e-ae04-f0ad08d5ac43/1499x1000.jpg", + "https://www.compass.com/m/0/7909eeab-de91-498e-9c01-e99fad7b498f/1499x1000.jpg", + "https://www.compass.com/m/0/76f0da01-0467-4782-b43f-e955325fb76d/1499x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/Massachusetts-Ave-NW-Washington-DC-20001/2078501167304401553_lid/" + }, + { + "listing_id": "2100916574741655921", + "slug": "1440-n-st-nw-unit-205-washington-dc-20005", + "title": "$219,000", + "price": 219000, + "is_rent": false, + "street": "1440 N Street Northwest, Unit 205", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20005", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 411, + "latitude": 38.9070531, + "longitude": -77.0332829, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/53dd0461-292f-48a9-933d-38f088cd8155", + "gallery_uuids": [ + "uuid/53dd0461-292f-48a9-933d-38f088cd8155" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/53dd0461-292f-48a9-933d-38f088cd8155/388x463.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1440-N-St-NW-Unit-205-Washington-DC-20005/1TPJLK_pid/" + }, + { + "listing_id": "2070611723767375329", + "slug": "811-4th-st-nw-unit-1214-washington-dc-20001", + "title": "$439,000", + "price": 439000, + "is_rent": false, + "street": "811 4th Street Northwest, Unit 1214", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20001", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 692, + "latitude": 38.9010047, + "longitude": -77.01591859999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/ab510659-ad91-45a9-9002-496f01eae884", + "gallery_uuids": [ + "uuid/ab510659-ad91-45a9-9002-496f01eae884", + "uuid/fe64830d-a3c0-4baf-92fa-ca49a0636ae4", + "uuid/80ff184c-65a1-4630-b14d-0301f767cbd9", + "uuid/5722b291-e366-4b49-aca8-af0b178ba3a6", + "uuid/240a58d6-be32-473f-adb2-b0a67b86aa8c", + "uuid/5bd68fb7-9fd1-4161-b106-488f4b333225", + "uuid/cb2f73b6-6763-406e-b0b6-8eb1e85219bf", + "uuid/00c8030b-56a8-437a-93bd-ac1bef6ac185" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/ab510659-ad91-45a9-9002-496f01eae884/1499x1000.jpg", + "https://www.compass.com/m/0/fe64830d-a3c0-4baf-92fa-ca49a0636ae4/1500x1000.jpg", + "https://www.compass.com/m/0/80ff184c-65a1-4630-b14d-0301f767cbd9/1500x1000.jpg", + "https://www.compass.com/m/0/5722b291-e366-4b49-aca8-af0b178ba3a6/1500x1000.jpg", + "https://www.compass.com/m/0/240a58d6-be32-473f-adb2-b0a67b86aa8c/1500x1000.jpg", + "https://www.compass.com/m/0/5bd68fb7-9fd1-4161-b106-488f4b333225/1500x1000.jpg", + "https://www.compass.com/m/0/cb2f73b6-6763-406e-b0b6-8eb1e85219bf/1500x1000.jpg", + "https://www.compass.com/m/0/00c8030b-56a8-437a-93bd-ac1bef6ac185/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/811-4th-St-NW-Unit-1214-Washington-DC-20001/1TC9BN_pid/" + }, + { + "listing_id": "2102997268314253465", + "slug": "1622-florida-ave-nw-washington-dc-20009", + "title": "$1,199,000", + "price": 1199000, + "is_rent": false, + "street": "1622 Florida Avenue Northwest", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20009", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2136, + "latitude": 38.918629, + "longitude": -77.037381, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Open: 5/17 01:00PM - 04:00PM" + ], + "hero_uuid": "legacy/b55fdcf12ee2e0d86d781d2b2c0e72d288ad416b_img_0_af19f", + "gallery_uuids": [ + "legacy/b55fdcf12ee2e0d86d781d2b2c0e72d288ad416b_img_0_af19f", + "legacy/b55fdcf12ee2e0d86d781d2b2c0e72d288ad416b_img_1_b7640", + "legacy/b55fdcf12ee2e0d86d781d2b2c0e72d288ad416b_img_2_54753", + "legacy/b55fdcf12ee2e0d86d781d2b2c0e72d288ad416b_img_3_a3014", + "legacy/b55fdcf12ee2e0d86d781d2b2c0e72d288ad416b_img_4_52e9a", + "legacy/b55fdcf12ee2e0d86d781d2b2c0e72d288ad416b_img_5_0c7b7", + "legacy/b55fdcf12ee2e0d86d781d2b2c0e72d288ad416b_img_6_29734", + "legacy/b55fdcf12ee2e0d86d781d2b2c0e72d288ad416b_img_7_81f80" + ], + "gallery_urls": [ + "https://www.compass.com/m/b55fdcf12ee2e0d86d781d2b2c0e72d288ad416b_img_0_af19f/640x480.jpg", + "https://www.compass.com/m/b55fdcf12ee2e0d86d781d2b2c0e72d288ad416b_img_1_b7640/640x480.jpg", + "https://www.compass.com/m/b55fdcf12ee2e0d86d781d2b2c0e72d288ad416b_img_2_54753/640x480.jpg", + "https://www.compass.com/m/b55fdcf12ee2e0d86d781d2b2c0e72d288ad416b_img_3_a3014/640x480.jpg", + "https://www.compass.com/m/b55fdcf12ee2e0d86d781d2b2c0e72d288ad416b_img_4_52e9a/640x480.jpg", + "https://www.compass.com/m/b55fdcf12ee2e0d86d781d2b2c0e72d288ad416b_img_5_0c7b7/640x480.jpg", + "https://www.compass.com/m/b55fdcf12ee2e0d86d781d2b2c0e72d288ad416b_img_6_29734/640x480.jpg", + "https://www.compass.com/m/b55fdcf12ee2e0d86d781d2b2c0e72d288ad416b_img_7_81f80/640x480.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1622-Florida-Ave-NW-Washington-DC-20009/1UP2K9_pid/" + }, + { + "listing_id": "2084372143343598409", + "slug": "1832-corcoran-st-nw-washington-dc-20009", + "title": "$2,300,000", + "price": 2300000, + "is_rent": false, + "street": "1832 Corcoran Street Northwest", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20009", + "beds": 4, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2331, + "latitude": 38.9117861, + "longitude": -77.0428074, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/629845aa-3783-4e49-b084-35750d167726", + "gallery_uuids": [ + "uuid/629845aa-3783-4e49-b084-35750d167726", + "uuid/3fdc2dd7-ae66-4fac-91a8-a1b42d36ddef", + "uuid/0b5977d4-3f31-4b4c-a2a4-6b9b6a77722b", + "uuid/1dbfd5be-20a5-4aac-b130-d69b70e176e7", + "uuid/18c8ba18-ca0c-4bb8-874b-b55b3b526106", + "uuid/6b483274-4314-41f2-9e3c-f807404917db", + "uuid/c36c183b-b151-445b-a891-ee1fc5a2c652", + "uuid/46c47729-3245-46ec-a5cb-f560581e2b29" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/629845aa-3783-4e49-b084-35750d167726/1500x1000.jpg", + "https://www.compass.com/m/0/3fdc2dd7-ae66-4fac-91a8-a1b42d36ddef/1500x1000.jpg", + "https://www.compass.com/m/0/0b5977d4-3f31-4b4c-a2a4-6b9b6a77722b/1500x999.jpg", + "https://www.compass.com/m/0/1dbfd5be-20a5-4aac-b130-d69b70e176e7/1500x1000.jpg", + "https://www.compass.com/m/0/18c8ba18-ca0c-4bb8-874b-b55b3b526106/1500x999.jpg", + "https://www.compass.com/m/0/6b483274-4314-41f2-9e3c-f807404917db/1500x999.jpg", + "https://www.compass.com/m/0/c36c183b-b151-445b-a891-ee1fc5a2c652/1500x999.jpg", + "https://www.compass.com/m/0/46c47729-3245-46ec-a5cb-f560581e2b29/1500x999.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1832-Corcoran-St-NW-Washington-DC-20009/1UDDQ1_pid/" + }, + { + "listing_id": "2101513908618041457", + "slug": "1428-q-st-nw-washington-dc-20009", + "title": "$1,599,000", + "price": 1599000, + "is_rent": false, + "street": "1428 Q Street Northwest", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20009", + "beds": 4, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 3036, + "latitude": 38.910875, + "longitude": -77.033221, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/48f9acb2-c889-43be-a647-bd8e7c05d031", + "gallery_uuids": [ + "uuid/48f9acb2-c889-43be-a647-bd8e7c05d031", + "uuid/0fade518-674c-4ab0-9703-d8cc82b953dd", + "uuid/7f293a4b-d524-4e40-8fb7-08484ee97f97", + "uuid/9f9b6046-4292-43fb-8586-01e5e14d1394", + "uuid/2361cd85-2bd3-489f-a98b-5a4710f25f2a", + "uuid/e4162031-6181-4b94-befd-2656e16921b6", + "uuid/7354e507-21d0-4e69-ae8e-43927ef6a399", + "uuid/057cdcb5-a109-4ab7-b279-a07785fc66cf" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/48f9acb2-c889-43be-a647-bd8e7c05d031/1381x1000.jpg", + "https://www.compass.com/m/0/0fade518-674c-4ab0-9703-d8cc82b953dd/1499x1000.jpg", + "https://www.compass.com/m/0/7f293a4b-d524-4e40-8fb7-08484ee97f97/1500x1000.jpg", + "https://www.compass.com/m/0/9f9b6046-4292-43fb-8586-01e5e14d1394/1500x1000.jpg", + "https://www.compass.com/m/0/2361cd85-2bd3-489f-a98b-5a4710f25f2a/1500x1000.jpg", + "https://www.compass.com/m/0/e4162031-6181-4b94-befd-2656e16921b6/1500x1000.jpg", + "https://www.compass.com/m/0/7354e507-21d0-4e69-ae8e-43927ef6a399/1500x1000.jpg", + "https://www.compass.com/m/0/057cdcb5-a109-4ab7-b279-a07785fc66cf/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1428-Q-St-NW-Washington-DC-20009/1UO9MN_pid/" + }, + { + "listing_id": "2093657618966950593", + "slug": "1443-chapin-st-nw-unit-402-washington-dc-20009", + "title": "$895,000", + "price": 895000, + "is_rent": false, + "street": "1443 Chapin Street Northwest, Unit 402", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20009", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1188, + "latitude": 38.9217237, + "longitude": -77.0341122, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/2a5d5fae-d1d9-4a06-9111-c2cb67cf1a46", + "gallery_uuids": [ + "uuid/2a5d5fae-d1d9-4a06-9111-c2cb67cf1a46", + "uuid/3d1da4c5-e18c-4ba6-9892-89731fdae677" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/2a5d5fae-d1d9-4a06-9111-c2cb67cf1a46/750x1000.jpg", + "https://www.compass.com/m/0/3d1da4c5-e18c-4ba6-9892-89731fdae677/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1443-Chapin-St-NW-Unit-402-Washington-DC-20009/27DD23_pid/" + }, + { + "listing_id": "2078424821475758689", + "slug": "1113-rhode-island-ave-nw-washington-dc-20005", + "title": "$1,395,000", + "price": 1395000, + "is_rent": false, + "street": "1113 Rhode Island Avenue Northwest", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20005", + "beds": 6, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 3706, + "latitude": 38.9105317, + "longitude": -77.02782169999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/d64684d8-ae98-4c3a-8726-489641c5cc1d", + "gallery_uuids": [ + "uuid/d64684d8-ae98-4c3a-8726-489641c5cc1d", + "uuid/6a26b535-15b7-4feb-8ffb-c25dc98ff707", + "uuid/e3c0620a-094a-40fe-8644-d2a1d4603fdc", + "uuid/566cdc61-de1f-4f7c-a0fa-c09d60f7ab74", + "uuid/1f2a1ebf-b68c-4d7d-84bd-48049e87bd06", + "uuid/d00fcbad-86a6-4509-8435-56abec6d23a0", + "uuid/dae50926-78be-4d8a-972b-e01b533439da", + "uuid/0baa424a-5448-4ab3-a235-75c1aedaadb7" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/d64684d8-ae98-4c3a-8726-489641c5cc1d/1500x1000.jpg", + "https://www.compass.com/m/0/6a26b535-15b7-4feb-8ffb-c25dc98ff707/1500x1000.jpg", + "https://www.compass.com/m/0/e3c0620a-094a-40fe-8644-d2a1d4603fdc/1500x1000.jpg", + "https://www.compass.com/m/0/566cdc61-de1f-4f7c-a0fa-c09d60f7ab74/1500x1000.jpg", + "https://www.compass.com/m/0/1f2a1ebf-b68c-4d7d-84bd-48049e87bd06/1500x1000.jpg", + "https://www.compass.com/m/0/d00fcbad-86a6-4509-8435-56abec6d23a0/1500x1000.jpg", + "https://www.compass.com/m/0/dae50926-78be-4d8a-972b-e01b533439da/1500x1000.jpg", + "https://www.compass.com/m/0/0baa424a-5448-4ab3-a235-75c1aedaadb7/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1113-Rhode-Island-Ave-NW-Washington-DC-20005/1ULZVB_pid/" + }, + { + "listing_id": "1884965168297642673", + "slug": "1317-corcoran-st-nw-washington-dc-20009", + "title": "$2,200,000", + "price": 2200000, + "is_rent": false, + "street": "1317 Corcoran Street Northwest", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20009", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 2956, + "latitude": 38.9120544, + "longitude": -77.0303986, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/340832fe-00dc-4457-a462-a872c1fc14a6", + "gallery_uuids": [ + "uuid/340832fe-00dc-4457-a462-a872c1fc14a6", + "uuid/799db4f0-b5b7-4d4a-a0d0-1bd6d6cc5f21", + "uuid/7f94c7fd-d470-4ecb-bee7-3008f11e8400", + "uuid/8d395227-9bd8-4976-9d14-422d46db9b00", + "uuid/eb6b2773-a6fb-4486-be8d-0883f4802893", + "uuid/56c5ec57-bd64-4915-a5f5-25d471895e31", + "uuid/5b62ca8b-6ae5-4d2e-a7a5-1c6d0eccb83a", + "uuid/b4e17e6b-f000-46b0-9878-0cfc7a012076" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/340832fe-00dc-4457-a462-a872c1fc14a6/667x1000.jpg", + "https://www.compass.com/m/0/799db4f0-b5b7-4d4a-a0d0-1bd6d6cc5f21/1414x1000.jpg", + "https://www.compass.com/m/0/7f94c7fd-d470-4ecb-bee7-3008f11e8400/1500x1000.jpg", + "https://www.compass.com/m/0/8d395227-9bd8-4976-9d14-422d46db9b00/1500x1000.jpg", + "https://www.compass.com/m/0/eb6b2773-a6fb-4486-be8d-0883f4802893/1500x1000.jpg", + "https://www.compass.com/m/0/56c5ec57-bd64-4915-a5f5-25d471895e31/667x1000.jpg", + "https://www.compass.com/m/0/5b62ca8b-6ae5-4d2e-a7a5-1c6d0eccb83a/667x1000.jpg", + "https://www.compass.com/m/0/b4e17e6b-f000-46b0-9878-0cfc7a012076/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1317-Corcoran-St-NW-Washington-DC-20009/1TXH7O_pid/" + }, + { + "listing_id": "2067619722461442889", + "slug": "1003-p-st-nw-washington-dc-20001", + "title": "$1,600,000", + "price": 1600000, + "is_rent": false, + "street": "1003 P Street Northwest", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20001", + "beds": 4, + "baths": 4.0, + "baths_full": 4, + "baths_half": null, + "sqft": 2140, + "latitude": 38.9098383, + "longitude": -77.0263892, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/b8e125c5-fabc-4827-a262-16a95bd86468", + "gallery_uuids": [ + "uuid/b8e125c5-fabc-4827-a262-16a95bd86468", + "uuid/71c4e7b0-2bd1-45f1-9557-ae80e876f5d1", + "uuid/686aa759-95aa-4821-9700-f904b88c321f", + "uuid/abf80560-581e-40cf-ac45-91e0bb719248", + "uuid/31fbed7a-8e36-486e-9e40-b367f81adf2f", + "uuid/9487fef1-997e-410c-b9ba-f6fcc884d6a7", + "uuid/f162a06f-93fb-488e-81a9-2362756f654d", + "uuid/b3c70b25-5792-446b-8d2e-15e2d7e3eb73" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/b8e125c5-fabc-4827-a262-16a95bd86468/1500x999.jpg", + "https://www.compass.com/m/0/71c4e7b0-2bd1-45f1-9557-ae80e876f5d1/1500x999.jpg", + "https://www.compass.com/m/0/686aa759-95aa-4821-9700-f904b88c321f/1499x1000.jpg", + "https://www.compass.com/m/0/abf80560-581e-40cf-ac45-91e0bb719248/1500x1000.jpg", + "https://www.compass.com/m/0/31fbed7a-8e36-486e-9e40-b367f81adf2f/1500x1000.jpg", + "https://www.compass.com/m/0/9487fef1-997e-410c-b9ba-f6fcc884d6a7/1500x1000.jpg", + "https://www.compass.com/m/0/f162a06f-93fb-488e-81a9-2362756f654d/1500x999.jpg", + "https://www.compass.com/m/0/b3c70b25-5792-446b-8d2e-15e2d7e3eb73/1500x999.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1003-P-St-NW-Washington-DC-20001/1TV1DE_pid/" + }, + { + "listing_id": "2098874792650727321", + "slug": "1343-ives-pl-se-washington-dc-20003", + "title": "$685,000", + "price": 685000, + "is_rent": false, + "street": "1343 Ives Place Southeast", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20003", + "beds": 2, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1475, + "latitude": 38.87887222919243, + "longitude": -76.9866644361548, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/258e43d4-beba-4f0a-b953-fcb1e411b197", + "gallery_uuids": [ + "uuid/258e43d4-beba-4f0a-b953-fcb1e411b197", + "uuid/29a4887b-1d97-42ea-ab28-0768d622438b", + "uuid/c78ca643-dc2c-4ae6-8501-9b524802d80d" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/258e43d4-beba-4f0a-b953-fcb1e411b197/1500x1000.jpg", + "https://www.compass.com/m/0/29a4887b-1d97-42ea-ab28-0768d622438b/1500x1000.jpg", + "https://www.compass.com/m/0/c78ca643-dc2c-4ae6-8501-9b524802d80d/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1343-Ives-Pl-SE-Washington-DC-20003/1UZLUD_pid/" + }, + { + "listing_id": "2103061227545120369", + "slug": "238-14th-st-se-washington-dc-20003", + "title": "$949,000", + "price": 949000, + "is_rent": false, + "street": "238 14th Street Southeast", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20003", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1772, + "latitude": 38.8859045, + "longitude": -76.985113, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/abff26ab-2b45-4c6b-a099-a02a9ea8ecd0", + "gallery_uuids": [ + "uuid/abff26ab-2b45-4c6b-a099-a02a9ea8ecd0", + "uuid/09b90e74-58e1-4706-ab2f-5cf536cda1d2" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/abff26ab-2b45-4c6b-a099-a02a9ea8ecd0/747x1000.jpg", + "https://www.compass.com/m/0/09b90e74-58e1-4706-ab2f-5cf536cda1d2/750x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/238-14th-St-SE-Washington-DC-20003/1UFSR7_pid/" + }, + { + "listing_id": "1884851573551904881", + "slug": "3515-hertford-pl-nw-unit-32-washington-dc-20010", + "title": "$395,000", + "price": 395000, + "is_rent": false, + "street": "3515 Hertford Place Northwest, Unit 32", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20010", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 627, + "latitude": 38.9349409, + "longitude": -77.0360043, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/39f8a49b-051d-4bcb-9962-2687628b0729", + "gallery_uuids": [ + "uuid/39f8a49b-051d-4bcb-9962-2687628b0729", + "uuid/7b7b848f-956f-41e8-8e06-d64af5ff6cba", + "uuid/c9d09860-4aef-41b9-8978-a961e813cb6a", + "uuid/11362c41-4621-42e7-bad5-d1433670f330", + "uuid/a904c285-613e-418b-ace9-0d81b20be91d", + "uuid/99612f14-487f-46cc-8730-5876c3d91f78", + "uuid/16d864c3-f713-4bf8-935a-af68a6b08961", + "uuid/4f748cb8-1470-4add-b37d-a89fb87dc068" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/39f8a49b-051d-4bcb-9962-2687628b0729/1500x1000.jpg", + "https://www.compass.com/m/0/7b7b848f-956f-41e8-8e06-d64af5ff6cba/640x480.jpg", + "https://www.compass.com/m/0/c9d09860-4aef-41b9-8978-a961e813cb6a/1500x1000.jpg", + "https://www.compass.com/m/0/11362c41-4621-42e7-bad5-d1433670f330/1500x1000.jpg", + "https://www.compass.com/m/0/a904c285-613e-418b-ace9-0d81b20be91d/1499x1000.jpg", + "https://www.compass.com/m/0/99612f14-487f-46cc-8730-5876c3d91f78/1499x1000.jpg", + "https://www.compass.com/m/0/16d864c3-f713-4bf8-935a-af68a6b08961/1500x1000.jpg", + "https://www.compass.com/m/0/4f748cb8-1470-4add-b37d-a89fb87dc068/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/3515-Hertford-Pl-NW-Unit-32-Washington-DC-20010/1U1HB0_pid/" + }, + { + "listing_id": "2090833904554638913", + "slug": "4611-43rd-pl-nw-washington-dc-20016", + "title": "$2,249,000", + "price": 2249000, + "is_rent": false, + "street": "4611 43rd Place Northwest", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20016", + "beds": 5, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 3522, + "latitude": 38.950135664520296, + "longitude": -77.08465846099718, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/573f854d-af85-41a4-8b6b-ef867641a77a", + "gallery_uuids": [ + "uuid/573f854d-af85-41a4-8b6b-ef867641a77a", + "uuid/d27f6ae8-02f3-4fe3-8d26-b7a67757a5ee", + "uuid/941e6447-5e1e-44d0-8d65-c52bd3dc8dfc", + "uuid/f5cdeed0-5e96-4a31-8f2d-2a32a2e19e85", + "uuid/d72a4fe1-d05d-46f1-8534-d564cce7bd7d", + "uuid/3e2ef599-d3a3-4e02-8e53-4d83372c04d5", + "uuid/0924bc49-bfd3-402d-bcc1-37af2b924b7d" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/573f854d-af85-41a4-8b6b-ef867641a77a/1000x1000.jpg", + "https://www.compass.com/m/0/d27f6ae8-02f3-4fe3-8d26-b7a67757a5ee/1000x1000.jpg", + "https://www.compass.com/m/0/941e6447-5e1e-44d0-8d65-c52bd3dc8dfc/1000x1000.jpg", + "https://www.compass.com/m/0/f5cdeed0-5e96-4a31-8f2d-2a32a2e19e85/1000x1000.jpg", + "https://www.compass.com/m/0/d72a4fe1-d05d-46f1-8534-d564cce7bd7d/1500x951.jpg", + "https://www.compass.com/m/0/3e2ef599-d3a3-4e02-8e53-4d83372c04d5/1372x1000.jpg", + "https://www.compass.com/m/0/0924bc49-bfd3-402d-bcc1-37af2b924b7d/1294x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/4611-43rd-Pl-NW-Washington-DC-20016/1TAX77_pid/" + }, + { + "listing_id": "2070360234129868217", + "slug": "2126-connecticut-ave-nw-unit-undisclosed-washington-dc-20008", + "title": "$725,000", + "price": 725000, + "is_rent": false, + "street": "2126 Connecticut Avenue Northwest, Unit Undisclosed", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20008", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 980, + "latitude": 38.9183423, + "longitude": -77.04803609999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/4d00aa78-d128-4796-9bf6-ba1d26b98fad", + "gallery_uuids": [ + "uuid/4d00aa78-d128-4796-9bf6-ba1d26b98fad", + "uuid/06af3eda-b907-4e44-aa96-f1f5849fe066", + "uuid/3fe0bbdd-0e03-41fa-a214-7785873c6679", + "uuid/bbdf35cd-fe6c-4e76-b9a4-4aebfa492eb0", + "uuid/621cb7ae-4f0c-4c31-8017-5e05617f576b", + "uuid/267f4bab-8273-41f1-9386-407d94b1cb84", + "uuid/8a5094b3-963c-4d9f-b37f-78836dc697d8", + "uuid/5da9bb80-c079-461c-9fe2-5c1824ed6098" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/4d00aa78-d128-4796-9bf6-ba1d26b98fad/1500x1000.jpg", + "https://www.compass.com/m/0/06af3eda-b907-4e44-aa96-f1f5849fe066/1440x960.jpg", + "https://www.compass.com/m/0/3fe0bbdd-0e03-41fa-a214-7785873c6679/720x480.jpg", + "https://www.compass.com/m/0/bbdf35cd-fe6c-4e76-b9a4-4aebfa492eb0/1200x800.jpg", + "https://www.compass.com/m/0/621cb7ae-4f0c-4c31-8017-5e05617f576b/1200x800.jpg", + "https://www.compass.com/m/0/267f4bab-8273-41f1-9386-407d94b1cb84/1200x800.jpg", + "https://www.compass.com/m/0/8a5094b3-963c-4d9f-b37f-78836dc697d8/1200x800.jpg", + "https://www.compass.com/m/0/5da9bb80-c079-461c-9fe2-5c1824ed6098/1200x800.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/2126-Connecticut-Ave-NW-Unit-Undisclosed-Washington-DC-20008/2070360234129868217_lid/" + }, + { + "listing_id": "2101617930620201057", + "slug": "1428-c-st-se-washington-dc-20003", + "title": "$1,025,000", + "price": 1025000, + "is_rent": false, + "street": "1428 C Street Southeast", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20003", + "beds": 3, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 1638, + "latitude": 38.8855391, + "longitude": -76.9845296, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/7f19429f-5140-4ac2-9078-2ff79a405db9", + "gallery_uuids": [ + "uuid/7f19429f-5140-4ac2-9078-2ff79a405db9", + "uuid/0c754bf0-abe6-4058-bb2c-204e01ad4fd1" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/7f19429f-5140-4ac2-9078-2ff79a405db9/296x222.jpg", + "https://www.compass.com/m/0/0c754bf0-abe6-4058-bb2c-204e01ad4fd1/1333x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1428-C-St-SE-Washington-DC-20003/1TQI6B_pid/" + }, + { + "listing_id": "2089921531781697025", + "slug": "2123-california-st-nw-unit-d5-washington-dc-20008", + "title": "$775,000", + "price": 775000, + "is_rent": false, + "street": "2123 California Street Northwest, Unit D5", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20008", + "beds": 2, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1073, + "latitude": 38.9167273, + "longitude": -77.04794609999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/b6f314dd-4827-4e4b-a633-8740b2829d49", + "gallery_uuids": [ + "uuid/b6f314dd-4827-4e4b-a633-8740b2829d49", + "uuid/6c2120e7-19e3-49c9-8e9e-52f96a428f11", + "uuid/c7b21897-2f4d-449e-9af6-c7caad528ada", + "uuid/6b858ea7-8c5e-474a-a81f-d7bded2071e4", + "uuid/193a27d5-0a52-42a4-b34a-f84feed4217a", + "uuid/effc351e-6043-4f47-a3d0-277f2ce82145", + "uuid/66df6717-fd47-4308-b9c1-1ee22c70b042", + "uuid/6cf7efe1-77a0-4f0d-91a0-ef955e53eff2" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/b6f314dd-4827-4e4b-a633-8740b2829d49/1500x1000.jpg", + "https://www.compass.com/m/0/6c2120e7-19e3-49c9-8e9e-52f96a428f11/1500x1000.jpg", + "https://www.compass.com/m/0/c7b21897-2f4d-449e-9af6-c7caad528ada/1500x1000.jpg", + "https://www.compass.com/m/0/6b858ea7-8c5e-474a-a81f-d7bded2071e4/1499x1000.jpg", + "https://www.compass.com/m/0/193a27d5-0a52-42a4-b34a-f84feed4217a/1500x1000.jpg", + "https://www.compass.com/m/0/effc351e-6043-4f47-a3d0-277f2ce82145/1500x1000.jpg", + "https://www.compass.com/m/0/66df6717-fd47-4308-b9c1-1ee22c70b042/1500x1000.jpg", + "https://www.compass.com/m/0/6cf7efe1-77a0-4f0d-91a0-ef955e53eff2/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/2123-California-St-NW-Unit-D5-Washington-DC-20008/1UBM5V_pid/" + }, + { + "listing_id": "2083473358098962857", + "slug": "228-9th-st-se-washington-dc-20003", + "title": "$3,849,000", + "price": 3849000, + "is_rent": false, + "street": "228 9th Street Southeast", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20003", + "beds": 5, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 4801, + "latitude": 38.8866374, + "longitude": -76.99340149999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/9f67f02b-bebe-44b0-89fe-555bf016484f", + "gallery_uuids": [ + "uuid/9f67f02b-bebe-44b0-89fe-555bf016484f", + "uuid/3ff1d4d8-d325-40c0-8c4e-fe5539155fe4", + "uuid/888f5203-5b44-4b4a-8062-0865198c6208", + "uuid/2dfe5c4a-35b6-47ee-8703-550dbb15ef76", + "uuid/3364e23c-1b72-470f-b4a8-7207280084ab", + "uuid/fbde6682-bc2c-47a8-8022-7437fcf129ba", + "uuid/e691b533-6c4d-40c1-9f8b-4cadefabaeb2", + "uuid/0c7811a2-6640-45bd-829c-e815b09440bb" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/9f67f02b-bebe-44b0-89fe-555bf016484f/866x790.jpg", + "https://www.compass.com/m/0/3ff1d4d8-d325-40c0-8c4e-fe5539155fe4/1355x1000.jpg", + "https://www.compass.com/m/0/888f5203-5b44-4b4a-8062-0865198c6208/1320x1000.jpg", + "https://www.compass.com/m/0/2dfe5c4a-35b6-47ee-8703-550dbb15ef76/1335x1000.jpg", + "https://www.compass.com/m/0/3364e23c-1b72-470f-b4a8-7207280084ab/1360x1000.jpg", + "https://www.compass.com/m/0/fbde6682-bc2c-47a8-8022-7437fcf129ba/1341x1000.jpg", + "https://www.compass.com/m/0/e691b533-6c4d-40c1-9f8b-4cadefabaeb2/1356x1000.jpg", + "https://www.compass.com/m/0/0c7811a2-6640-45bd-829c-e815b09440bb/1392x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/228-9th-St-SE-Washington-DC-20003/1U83EX_pid/" + }, + { + "listing_id": "2101542234791447953", + "slug": "4600-connecticut-ave-nw-unit-717-washington-dc-20008", + "title": "$243,000", + "price": 243000, + "is_rent": false, + "street": "4600 Connecticut Avenue Northwest, Unit 717", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20008", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 577, + "latitude": 38.9502608, + "longitude": -77.0674492, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Open: 5/16 02:00PM - 04:00PM" + ], + "hero_uuid": "legacy/76112d92d0807d889e8b7fc42690acf3e46d135d_img_0_08116", + "gallery_uuids": [ + "legacy/76112d92d0807d889e8b7fc42690acf3e46d135d_img_0_08116", + "legacy/76112d92d0807d889e8b7fc42690acf3e46d135d_img_1_0098f", + "legacy/76112d92d0807d889e8b7fc42690acf3e46d135d_img_2_f87d4", + "legacy/76112d92d0807d889e8b7fc42690acf3e46d135d_img_3_7bc3e", + "legacy/76112d92d0807d889e8b7fc42690acf3e46d135d_img_4_2c1c9", + "legacy/76112d92d0807d889e8b7fc42690acf3e46d135d_img_5_5b897", + "legacy/76112d92d0807d889e8b7fc42690acf3e46d135d_img_6_7d9de", + "legacy/76112d92d0807d889e8b7fc42690acf3e46d135d_img_7_78fc1" + ], + "gallery_urls": [ + "https://www.compass.com/m/76112d92d0807d889e8b7fc42690acf3e46d135d_img_0_08116/640x480.jpg", + "https://www.compass.com/m/76112d92d0807d889e8b7fc42690acf3e46d135d_img_1_0098f/640x480.jpg", + "https://www.compass.com/m/76112d92d0807d889e8b7fc42690acf3e46d135d_img_2_f87d4/640x480.jpg", + "https://www.compass.com/m/76112d92d0807d889e8b7fc42690acf3e46d135d_img_3_7bc3e/640x480.jpg", + "https://www.compass.com/m/76112d92d0807d889e8b7fc42690acf3e46d135d_img_4_2c1c9/640x480.jpg", + "https://www.compass.com/m/76112d92d0807d889e8b7fc42690acf3e46d135d_img_5_5b897/640x480.jpg", + "https://www.compass.com/m/76112d92d0807d889e8b7fc42690acf3e46d135d_img_6_7d9de/640x480.jpg", + "https://www.compass.com/m/76112d92d0807d889e8b7fc42690acf3e46d135d_img_7_78fc1/640x480.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/4600-Connecticut-Ave-NW-Unit-717-Washington-DC-20008/1U0GHL_pid/" + }, + { + "listing_id": "2080050999609865353", + "slug": "2127-california-st-nw-unit-505-washington-dc-20008", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "2127 California Street Northwest, Unit 505", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20008", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1393, + "latitude": 38.9165972, + "longitude": -77.048216, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/637a8e5d-5bd0-40a5-97b7-89c276ea0771", + "gallery_uuids": [ + "uuid/637a8e5d-5bd0-40a5-97b7-89c276ea0771", + "uuid/5ab62dd7-7957-4b6b-83ca-861fe1d2e72d", + "uuid/a2ad490e-b705-42b8-8935-57cbac3ecbb5", + "uuid/1d52b0c9-57dd-46ff-8d9b-4e8d285d12b3", + "uuid/1fc10e93-99b9-4567-9f33-9eeca34161df", + "uuid/fee9cba8-54be-456a-9463-86716e94086b", + "uuid/0b3eba3b-9586-4aab-90d3-82260a4ebe5d", + "uuid/604c8061-a25c-4181-a08c-89dbea7ed28a" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/637a8e5d-5bd0-40a5-97b7-89c276ea0771/1500x1000.jpg", + "https://www.compass.com/m/0/5ab62dd7-7957-4b6b-83ca-861fe1d2e72d/1500x999.jpg", + "https://www.compass.com/m/0/a2ad490e-b705-42b8-8935-57cbac3ecbb5/1500x1000.jpg", + "https://www.compass.com/m/0/1d52b0c9-57dd-46ff-8d9b-4e8d285d12b3/1500x1000.jpg", + "https://www.compass.com/m/0/1fc10e93-99b9-4567-9f33-9eeca34161df/1500x1000.jpg", + "https://www.compass.com/m/0/fee9cba8-54be-456a-9463-86716e94086b/1500x1000.jpg", + "https://www.compass.com/m/0/0b3eba3b-9586-4aab-90d3-82260a4ebe5d/1500x1000.jpg", + "https://www.compass.com/m/0/604c8061-a25c-4181-a08c-89dbea7ed28a/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/2127-California-St-NW-Unit-505-Washington-DC-20008/1UJ7Y4_pid/" + }, + { + "listing_id": "2099450121278468961", + "slug": "1614-kilbourne-pl-nw-unit-2-washington-dc-20010", + "title": "$1,275,000", + "price": 1275000, + "is_rent": false, + "street": "1614 Kilbourne Place Northwest, Unit 2", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20010", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 1922, + "latitude": 38.9305701, + "longitude": -77.038422, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/a255a977-7dca-4157-9316-6c2ecd2590e0", + "gallery_uuids": [ + "uuid/a255a977-7dca-4157-9316-6c2ecd2590e0", + "uuid/a811d811-75a1-4970-a1c8-d103c13801f5", + "uuid/3506d8ff-3606-4ee8-988e-bb0a727f1b91", + "uuid/36dd25ef-211e-4c36-9e1b-c5cc8af89ee2", + "uuid/1aad46f1-ec9e-4316-a304-bab19db3f908", + "uuid/aa851a65-9a14-42f3-ab3b-387c06b41e1b", + "uuid/c0249fed-0ec0-4d39-86d8-4cd5913b0be9", + "uuid/894c8f76-0d29-4d5c-8f09-b3dff03a1b04" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/a255a977-7dca-4157-9316-6c2ecd2590e0/1500x1000.jpg", + "https://www.compass.com/m/0/a811d811-75a1-4970-a1c8-d103c13801f5/1500x1000.jpg", + "https://www.compass.com/m/0/3506d8ff-3606-4ee8-988e-bb0a727f1b91/1500x1000.jpg", + "https://www.compass.com/m/0/36dd25ef-211e-4c36-9e1b-c5cc8af89ee2/1500x1000.jpg", + "https://www.compass.com/m/0/1aad46f1-ec9e-4316-a304-bab19db3f908/1500x1000.jpg", + "https://www.compass.com/m/0/aa851a65-9a14-42f3-ab3b-387c06b41e1b/1500x1000.jpg", + "https://www.compass.com/m/0/c0249fed-0ec0-4d39-86d8-4cd5913b0be9/1500x1000.jpg", + "https://www.compass.com/m/0/894c8f76-0d29-4d5c-8f09-b3dff03a1b04/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/1614-Kilbourne-Pl-NW-Unit-2-Washington-DC-20010/1A845H_pid/" + }, + { + "listing_id": "2099476263469305881", + "slug": "3514-34th-st-nw-washington-dc-20008", + "title": "$1,450,000", + "price": 1450000, + "is_rent": false, + "street": "3514 34th Street Northwest", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20008", + "beds": 3, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": null, + "latitude": 38.9369159, + "longitude": -77.06664599999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/42db2206-b94d-4609-b64d-1c43e961ab8b", + "gallery_uuids": [ + "uuid/42db2206-b94d-4609-b64d-1c43e961ab8b", + "uuid/22baa8de-8a5e-4984-bebb-7e0dd59f34f5", + "uuid/9b0b87cc-f694-4344-8e34-43cfa57b2046", + "uuid/9e289dfb-676b-419f-92fb-f6dbbc455974", + "uuid/00ce0799-1b67-4246-b8a7-ae3a5cb9db92", + "uuid/a27bf62a-b1b1-4821-9e09-0dc85f181176", + "uuid/101ebb24-f9a7-4812-94f5-94cbf2e25306", + "uuid/79cdd225-d773-424d-a54b-0d347e4c10e3" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/42db2206-b94d-4609-b64d-1c43e961ab8b/1499x1000.jpg", + "https://www.compass.com/m/0/22baa8de-8a5e-4984-bebb-7e0dd59f34f5/1499x1000.jpg", + "https://www.compass.com/m/0/9b0b87cc-f694-4344-8e34-43cfa57b2046/1499x1000.jpg", + "https://www.compass.com/m/0/9e289dfb-676b-419f-92fb-f6dbbc455974/1499x1000.jpg", + "https://www.compass.com/m/0/00ce0799-1b67-4246-b8a7-ae3a5cb9db92/1499x1000.jpg", + "https://www.compass.com/m/0/a27bf62a-b1b1-4821-9e09-0dc85f181176/1499x1000.jpg", + "https://www.compass.com/m/0/101ebb24-f9a7-4812-94f5-94cbf2e25306/1499x1000.jpg", + "https://www.compass.com/m/0/79cdd225-d773-424d-a54b-0d347e4c10e3/1499x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/3514-34th-St-NW-Washington-DC-20008/1U0WBU_pid/" + }, + { + "listing_id": "2085045859568803729", + "slug": "3601-connecticut-ave-nw-unit-612-washington-dc-20008", + "title": "$509,000", + "price": 509000, + "is_rent": false, + "street": "3601 Connecticut Avenue Northwest, Unit 612", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20008", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 950, + "latitude": 38.9379082, + "longitude": -77.05865, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Virtual Tour" + ], + "hero_uuid": "uuid/e0e26c45-8939-43b2-af97-343db8a15896", + "gallery_uuids": [ + "uuid/e0e26c45-8939-43b2-af97-343db8a15896", + "uuid/9ea9553b-b035-4633-b4ed-1902df75e988", + "uuid/d3cfe085-76a5-4f07-be0f-4c38510dda86", + "uuid/7a42f01c-7a89-4172-9eae-2425b04f842c", + "uuid/b06b3726-b2ab-43b7-a0f6-528363d3dcaa", + "uuid/661f5160-6fb2-4aaf-8f94-14325e3013c7", + "uuid/77cec7b9-87de-426d-9015-c0e8e8bfdfee", + "uuid/d3c69d3a-deca-4c2c-83b1-a0c9f6f89211" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/e0e26c45-8939-43b2-af97-343db8a15896/1440x961.jpg", + "https://www.compass.com/m/0/9ea9553b-b035-4633-b4ed-1902df75e988/1497x1000.jpg", + "https://www.compass.com/m/0/d3cfe085-76a5-4f07-be0f-4c38510dda86/1497x1000.jpg", + "https://www.compass.com/m/0/7a42f01c-7a89-4172-9eae-2425b04f842c/1333x1000.jpg", + "https://www.compass.com/m/0/b06b3726-b2ab-43b7-a0f6-528363d3dcaa/1497x1000.jpg", + "https://www.compass.com/m/0/661f5160-6fb2-4aaf-8f94-14325e3013c7/1497x1000.jpg", + "https://www.compass.com/m/0/77cec7b9-87de-426d-9015-c0e8e8bfdfee/1497x1000.jpg", + "https://www.compass.com/m/0/d3c69d3a-deca-4c2c-83b1-a0c9f6f89211/1497x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/3601-Connecticut-Ave-NW-Unit-612-Washington-DC-20008/1UGH5Z_pid/" + }, + { + "listing_id": "2096012753724573065", + "slug": "3414-porter-st-nw-washington-dc-20016", + "title": "$1,650,000", + "price": 1650000, + "is_rent": false, + "street": "3414 Porter Street Northwest", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20016", + "beds": 4, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2470, + "latitude": 38.937042, + "longitude": -77.06698899999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/ed1f87d5-e8dd-49e1-a79c-308a7454c419", + "gallery_uuids": [ + "uuid/ed1f87d5-e8dd-49e1-a79c-308a7454c419", + "uuid/31173c46-d9e4-4e19-9477-b9a3f640c575", + "uuid/766e22fa-972c-40f5-8068-0194e6115d70", + "uuid/3c60c775-3a9b-4dc8-8e86-b4e41f8053f1", + "uuid/b60b91cb-9c94-41ce-9165-2265af4d6979", + "uuid/1e10aa6e-2905-4829-a6f0-6af20bf656df", + "uuid/fe364e30-d1a4-4afc-aac0-d6a66ef0aa67", + "uuid/253bd7c3-c346-4f59-ba11-c96da59f4fc4" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/ed1f87d5-e8dd-49e1-a79c-308a7454c419/1500x1000.jpg", + "https://www.compass.com/m/0/31173c46-d9e4-4e19-9477-b9a3f640c575/1500x1000.jpg", + "https://www.compass.com/m/0/766e22fa-972c-40f5-8068-0194e6115d70/1500x1000.jpg", + "https://www.compass.com/m/0/3c60c775-3a9b-4dc8-8e86-b4e41f8053f1/1500x1000.jpg", + "https://www.compass.com/m/0/b60b91cb-9c94-41ce-9165-2265af4d6979/1500x1000.jpg", + "https://www.compass.com/m/0/1e10aa6e-2905-4829-a6f0-6af20bf656df/1500x1000.jpg", + "https://www.compass.com/m/0/fe364e30-d1a4-4afc-aac0-d6a66ef0aa67/1500x1000.jpg", + "https://www.compass.com/m/0/253bd7c3-c346-4f59-ba11-c96da59f4fc4/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/3414-Porter-St-NW-Washington-DC-20016/1TUWCF_pid/" + }, + { + "listing_id": "2098110090978946129", + "slug": "3707-military-rd-nw-washington-dc-20015", + "title": "$2,200,000", + "price": 2200000, + "is_rent": false, + "street": "3707 Military Road Northwest", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20015", + "beds": 6, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 4345, + "latitude": 38.9612468, + "longitude": -77.07166889999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/04200e29-ecb0-48c4-abe9-4c0773a3ba25", + "gallery_uuids": [ + "uuid/04200e29-ecb0-48c4-abe9-4c0773a3ba25", + "uuid/4396c313-6429-40ed-9720-32f663577203", + "uuid/9c0374b8-2e6d-4d83-963f-c8150b4b5917", + "uuid/c7e66a48-d307-40f3-8853-ec6dd9126d21" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/04200e29-ecb0-48c4-abe9-4c0773a3ba25/1500x1000.jpg", + "https://www.compass.com/m/0/4396c313-6429-40ed-9720-32f663577203/1500x998.jpg", + "https://www.compass.com/m/0/9c0374b8-2e6d-4d83-963f-c8150b4b5917/1500x998.jpg", + "https://www.compass.com/m/0/c7e66a48-d307-40f3-8853-ec6dd9126d21/1333x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/3707-Military-Rd-NW-Washington-DC-20015/1UVM4E_pid/" + }, + { + "listing_id": "2034361121030986649", + "slug": "2120-vermont-ave-nw-unit-123-washington-dc-20001", + "title": "$699,000", + "price": 699000, + "is_rent": false, + "street": "2120 Vermont Avenue Northwest, Unit 123", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20001", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1300, + "latitude": 38.9187901, + "longitude": -77.02491599999999, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/9d48d83a-236f-49f1-bb26-96ddef633f3d", + "gallery_uuids": [ + "uuid/9d48d83a-236f-49f1-bb26-96ddef633f3d", + "uuid/cd51546d-7bf2-442a-8f41-d86479c51959", + "uuid/987eef7b-20d5-4b3f-8c9c-04c4e5cceccb", + "uuid/d30cebdd-2bd1-4412-b0ab-b7b044416baa", + "uuid/f85b4627-58cb-48e1-bc90-c178c63c3778", + "uuid/7fb57911-fc28-4d94-b588-15ec2751ea6c", + "uuid/31e907e0-7d05-4871-846d-e1ff58df020c", + "uuid/e3868b62-21a7-4bc6-a88e-9428af66d6cd" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/9d48d83a-236f-49f1-bb26-96ddef633f3d/1500x1000.jpg", + "https://www.compass.com/m/0/cd51546d-7bf2-442a-8f41-d86479c51959/1500x1000.jpg", + "https://www.compass.com/m/0/987eef7b-20d5-4b3f-8c9c-04c4e5cceccb/1500x1000.jpg", + "https://www.compass.com/m/0/d30cebdd-2bd1-4412-b0ab-b7b044416baa/1500x1000.jpg", + "https://www.compass.com/m/0/f85b4627-58cb-48e1-bc90-c178c63c3778/1499x1000.jpg", + "https://www.compass.com/m/0/7fb57911-fc28-4d94-b588-15ec2751ea6c/1500x1000.jpg", + "https://www.compass.com/m/0/31e907e0-7d05-4871-846d-e1ff58df020c/1500x1000.jpg", + "https://www.compass.com/m/0/e3868b62-21a7-4bc6-a88e-9428af66d6cd/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/2120-Vermont-Ave-NW-Unit-123-Washington-DC-20001/1T8YES_pid/" + }, + { + "listing_id": "1531201878968659849", + "slug": "address-upon-request-washington-dc-20001", + "title": "$725,000", + "price": 725000, + "is_rent": false, + "street": "Address Upon Request", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20001", + "beds": 2, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1225, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/74528d7b-7097-4641-b1ef-662051de583c", + "gallery_uuids": [ + "uuid/74528d7b-7097-4641-b1ef-662051de583c", + "uuid/813ba665-0850-4864-8c37-3387e4d90275", + "uuid/742eb821-ec11-4ee5-a4be-63d69b66c486", + "uuid/7835c87b-987d-4369-9e65-e85b0fae2004", + "uuid/92e6cc4b-a119-48b1-8e25-a596a76f1190", + "uuid/14e51e82-5f97-4135-a325-88f939b8d01e", + "uuid/e3d0a73c-dbbe-4d2a-a124-ed3d40e50d93", + "uuid/3ecefd69-3e4c-4bbd-993c-c576ad64bbca" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/74528d7b-7097-4641-b1ef-662051de583c/1499x1000.jpg", + "https://www.compass.com/m/0/813ba665-0850-4864-8c37-3387e4d90275/1500x1000.jpg", + "https://www.compass.com/m/0/742eb821-ec11-4ee5-a4be-63d69b66c486/1500x1000.jpg", + "https://www.compass.com/m/0/7835c87b-987d-4369-9e65-e85b0fae2004/1500x1000.jpg", + "https://www.compass.com/m/0/92e6cc4b-a119-48b1-8e25-a596a76f1190/1499x1000.jpg", + "https://www.compass.com/m/0/14e51e82-5f97-4135-a325-88f939b8d01e/1500x1000.jpg", + "https://www.compass.com/m/0/e3d0a73c-dbbe-4d2a-a124-ed3d40e50d93/1499x1000.jpg", + "https://www.compass.com/m/0/3ecefd69-3e4c-4bbd-993c-c576ad64bbca/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/Address-Upon-Request-Washington-DC-20001/1531201878968659849_lid/" + }, + { + "listing_id": "2095760251155001393", + "slug": "629-5th-st-ne-washington-dc-20002", + "title": "Contact Agent", + "price": null, + "is_rent": false, + "street": "629 5th Street Northeast", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20002", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2161, + "latitude": 38.8981507, + "longitude": -76.99923810000001, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/4b616fd7-8989-4443-a4df-6e16372b55e6", + "gallery_uuids": [ + "uuid/4b616fd7-8989-4443-a4df-6e16372b55e6", + "uuid/f16cc539-95c3-4536-aab5-4d4f98a0d460", + "uuid/2f302de6-2385-41fd-9792-70edda4a8dab", + "uuid/e00ffe80-9f4d-4c74-bdf9-682521b17d35", + "uuid/45ec6931-92f9-4c67-a09e-50eaba901825", + "uuid/9f00d1bf-7fd0-4b0e-b25e-f1f67081b8b1", + "uuid/805ec96f-afee-45a0-a7b8-da8bafeca6ba", + "uuid/71568975-9d42-4e5b-b15c-262db3bffef1" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/4b616fd7-8989-4443-a4df-6e16372b55e6/1499x1000.jpg", + "https://www.compass.com/m/0/f16cc539-95c3-4536-aab5-4d4f98a0d460/1499x1000.jpg", + "https://www.compass.com/m/0/2f302de6-2385-41fd-9792-70edda4a8dab/1499x1000.jpg", + "https://www.compass.com/m/0/e00ffe80-9f4d-4c74-bdf9-682521b17d35/1499x1000.jpg", + "https://www.compass.com/m/0/45ec6931-92f9-4c67-a09e-50eaba901825/1500x1000.jpg", + "https://www.compass.com/m/0/9f00d1bf-7fd0-4b0e-b25e-f1f67081b8b1/1499x1000.jpg", + "https://www.compass.com/m/0/805ec96f-afee-45a0-a7b8-da8bafeca6ba/1499x1000.jpg", + "https://www.compass.com/m/0/71568975-9d42-4e5b-b15c-262db3bffef1/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/629-5th-St-NE-Washington-DC-20002/1U52VE_pid/" + }, + { + "listing_id": "1921893066529157649", + "slug": "k-st-se-washington-dc-20003", + "title": "$749,000", + "price": 749000, + "is_rent": false, + "street": "K Street Southeast", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20003", + "beds": 2, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1313, + "latitude": null, + "longitude": null, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/286f3ff1-5396-4258-a2c2-d466138f344b", + "gallery_uuids": [ + "uuid/286f3ff1-5396-4258-a2c2-d466138f344b", + "uuid/04b13343-f0e3-4cda-8330-0d22ca65ed55", + "uuid/814c9919-8eb7-4883-a6b6-d7fabf27e0d3", + "uuid/c7f8e496-29f2-4a7a-a1ff-1859777ff70f", + "uuid/b955da7d-4e7e-4283-9aaf-626d7bc09faf", + "uuid/a3d67f5c-959b-46c8-9cff-80b3547658cb", + "uuid/6448441b-5021-4f8b-8906-9eeb07c53921", + "uuid/a9b923aa-772d-4a5e-ad1d-0a64dd4ae71e" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/286f3ff1-5396-4258-a2c2-d466138f344b/1500x1000.jpg", + "https://www.compass.com/m/0/04b13343-f0e3-4cda-8330-0d22ca65ed55/1500x1000.jpg", + "https://www.compass.com/m/0/814c9919-8eb7-4883-a6b6-d7fabf27e0d3/1500x1000.jpg", + "https://www.compass.com/m/0/c7f8e496-29f2-4a7a-a1ff-1859777ff70f/1500x1000.jpg", + "https://www.compass.com/m/0/b955da7d-4e7e-4283-9aaf-626d7bc09faf/1500x1000.jpg", + "https://www.compass.com/m/0/a3d67f5c-959b-46c8-9cff-80b3547658cb/1500x1000.jpg", + "https://www.compass.com/m/0/6448441b-5021-4f8b-8906-9eeb07c53921/1500x1000.jpg", + "https://www.compass.com/m/0/a9b923aa-772d-4a5e-ad1d-0a64dd4ae71e/1500x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/K-St-SE-Washington-DC-20003/1921893066529157649_lid/" + }, + { + "listing_id": "2053405737774603969", + "slug": "3206-morrison-st-nw-washington-dc-20015", + "title": "$3,150,000", + "price": 3150000, + "is_rent": false, + "street": "3206 Morrison Street Northwest", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20015", + "beds": 5, + "baths": 6.0, + "baths_full": 5, + "baths_half": null, + "sqft": 4000, + "latitude": 38.9638324, + "longitude": -77.0646987, + "status": "for-sale", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/dde12869-5d45-4b77-93ae-785e0b6792c5", + "gallery_uuids": [ + "uuid/dde12869-5d45-4b77-93ae-785e0b6792c5" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/dde12869-5d45-4b77-93ae-785e0b6792c5/1086x724.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/3206-Morrison-St-NW-Washington-DC-20015/1TDAGQ_pid/" + }, + { + "listing_id": "2074277135160161193", + "slug": "520-n-st-sw-unit-s622-washington-dc-20024", + "title": "$274,900", + "price": 274900, + "is_rent": false, + "street": "520 N Street Southwest, Unit S622", + "neighborhood": "", + "city": "Washington", + "state": "DC", + "zip": "20024", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 591, + "latitude": 38.8738895, + "longitude": -77.0184269, + "status": "for-sale", + "badges": [ + "Compass Coming Soon", + "Virtual Tour" + ], + "hero_uuid": "uuid/4ff6524a-79ea-439a-843b-1a4e9b2e746e", + "gallery_uuids": [ + "uuid/4ff6524a-79ea-439a-843b-1a4e9b2e746e", + "uuid/a225e44f-58c6-4c95-9c7d-3edfd4b377db", + "uuid/7ab026e8-fa36-4d15-84bb-b93a5763b89e", + "uuid/350cd8e9-86ed-40aa-8890-57247ad64bf4", + "uuid/a3c0f38f-6fc8-4500-9a13-4200edb2035a", + "uuid/58e8e401-550d-48db-98f0-fa2b7769f4b7", + "uuid/5fde1fce-5ce7-4cc1-9d70-231be09e7a90", + "uuid/b7284ccf-1f60-459a-8954-309e7e6cbb37" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/4ff6524a-79ea-439a-843b-1a4e9b2e746e/1334x1000.jpg", + "https://www.compass.com/m/0/a225e44f-58c6-4c95-9c7d-3edfd4b377db/1334x1000.jpg", + "https://www.compass.com/m/0/7ab026e8-fa36-4d15-84bb-b93a5763b89e/1334x1000.jpg", + "https://www.compass.com/m/0/350cd8e9-86ed-40aa-8890-57247ad64bf4/1334x1000.jpg", + "https://www.compass.com/m/0/a3c0f38f-6fc8-4500-9a13-4200edb2035a/1334x1000.jpg", + "https://www.compass.com/m/0/58e8e401-550d-48db-98f0-fa2b7769f4b7/1333x1000.jpg", + "https://www.compass.com/m/0/5fde1fce-5ce7-4cc1-9d70-231be09e7a90/1333x1000.jpg", + "https://www.compass.com/m/0/b7284ccf-1f60-459a-8954-309e7e6cbb37/1333x1000.jpg" + ], + "source_city": "dc", + "detail_url": "https://www.compass.com/homedetails/520-N-St-SW-Unit-S622-Washington-DC-20024/1U60YS_pid/" + }, + { + "listing_id": "2100124806047513737", + "slug": "8-charles-ln-unit-c-manhattan-ny-10014", + "title": "$15,000", + "price": 15000, + "is_rent": true, + "street": "8 Charles Lane, Unit C", + "neighborhood": "West Village", + "city": "New York", + "state": "NY", + "zip": "10014", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 40.7341938, + "longitude": -74.0090829, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/b35da08f-abc6-4b91-a9aa-327098404748", + "gallery_uuids": [ + "uuid/b35da08f-abc6-4b91-a9aa-327098404748", + "uuid/54cba39b-ca1c-47b0-8303-54b9cd5e397a", + "uuid/fb142c29-8972-440b-ae75-c78ee030b7bf", + "uuid/b61d5b68-6bbd-42ef-bb3d-d6df3723724d", + "uuid/82636b8f-8022-4c7b-a7a4-0303f22e7aab", + "uuid/04eebbc1-ec34-4ba5-9db8-7b9106963a9c", + "uuid/94a89c3f-3e72-4f44-a1cc-2c0bd6c1d655", + "uuid/41c84e47-fd16-4888-9eeb-dbef4ea8aecf" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/b35da08f-abc6-4b91-a9aa-327098404748/1333x1000.jpg", + "https://www.compass.com/m/0/54cba39b-ca1c-47b0-8303-54b9cd5e397a/1499x1000.jpg", + "https://www.compass.com/m/0/fb142c29-8972-440b-ae75-c78ee030b7bf/1499x1000.jpg", + "https://www.compass.com/m/0/b61d5b68-6bbd-42ef-bb3d-d6df3723724d/1499x1000.jpg", + "https://www.compass.com/m/0/82636b8f-8022-4c7b-a7a4-0303f22e7aab/667x1000.jpg", + "https://www.compass.com/m/0/04eebbc1-ec34-4ba5-9db8-7b9106963a9c/667x1000.jpg", + "https://www.compass.com/m/0/94a89c3f-3e72-4f44-a1cc-2c0bd6c1d655/1499x1000.jpg", + "https://www.compass.com/m/0/41c84e47-fd16-4888-9eeb-dbef4ea8aecf/1499x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/8-Charles-Ln-Unit-C-Manhattan-NY-10014/2100124806047513737_lid/" + }, + { + "listing_id": "2082950701053509025", + "slug": "347-w-4th-st-manhattan-ny-10014", + "title": "$35,000", + "price": 35000, + "is_rent": true, + "street": "347 West 4th Street", + "neighborhood": "West Village", + "city": "New York", + "state": "NY", + "zip": "10014", + "beds": 3, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2192, + "latitude": 40.73909949999999, + "longitude": -74.0037225, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/d81a9ecb-383d-4506-80f8-ae08bf77c55c", + "gallery_uuids": [ + "uuid/d81a9ecb-383d-4506-80f8-ae08bf77c55c", + "uuid/0b242d6d-0e5d-4958-a277-487749b8343b", + "uuid/149a3813-603c-4304-9488-4a401afbc31d", + "uuid/4ccf7faf-1dc6-497d-ab6d-f8107ba17f5f", + "uuid/af2ee7da-46a1-4467-89cc-643b5976bb90", + "uuid/45c95fc9-ad79-4990-bb90-39350d32f4ea", + "uuid/4b21e67e-441e-4b17-9ef5-8a3bfcafd139", + "uuid/a620cd03-3ae0-480c-8269-72d9e1414818" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/d81a9ecb-383d-4506-80f8-ae08bf77c55c/1499x1000.jpg", + "https://www.compass.com/m/0/0b242d6d-0e5d-4958-a277-487749b8343b/1499x1000.jpg", + "https://www.compass.com/m/0/149a3813-603c-4304-9488-4a401afbc31d/667x1000.jpg", + "https://www.compass.com/m/0/4ccf7faf-1dc6-497d-ab6d-f8107ba17f5f/1497x1000.jpg", + "https://www.compass.com/m/0/af2ee7da-46a1-4467-89cc-643b5976bb90/667x1000.jpg", + "https://www.compass.com/m/0/45c95fc9-ad79-4990-bb90-39350d32f4ea/667x1000.jpg", + "https://www.compass.com/m/0/4b21e67e-441e-4b17-9ef5-8a3bfcafd139/1499x1000.jpg", + "https://www.compass.com/m/0/a620cd03-3ae0-480c-8269-72d9e1414818/667x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/347-W-4th-St-Manhattan-NY-10014/20PM81_pid/" + }, + { + "listing_id": "2102368165533679185", + "slug": "68-morton-st-manhattan-ny-10014", + "title": "$50,000", + "price": 50000, + "is_rent": true, + "street": "68 Morton Street", + "neighborhood": "West Village", + "city": "New York", + "state": "NY", + "zip": "10014", + "beds": 4, + "baths": 4.0, + "baths_full": 2, + "baths_half": null, + "sqft": 3250, + "latitude": 40.7307717, + "longitude": -74.006366, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "uuid/aa22d592-74fe-470f-9518-230f7cfe4474", + "gallery_uuids": [ + "uuid/aa22d592-74fe-470f-9518-230f7cfe4474", + "uuid/82f50851-312a-493c-a2c1-b605bb4dd678", + "uuid/21b64b2a-5081-42c8-891b-79c82ba24e4d", + "uuid/c10716b8-15e6-4db7-8bf6-d594c53bd03e", + "uuid/c38ab1e9-7c82-4cf1-9247-e76f272dcaef", + "uuid/aff1b259-d125-4f0c-894b-be28d10127f9", + "uuid/59bc4b33-61b0-433b-aca8-acf89925f3c9", + "uuid/84b5a886-f84e-423e-8ca9-60534591904e" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/aa22d592-74fe-470f-9518-230f7cfe4474/750x1000.jpg", + "https://www.compass.com/m/0/82f50851-312a-493c-a2c1-b605bb4dd678/1499x1000.jpg", + "https://www.compass.com/m/0/21b64b2a-5081-42c8-891b-79c82ba24e4d/1499x1000.jpg", + "https://www.compass.com/m/0/c10716b8-15e6-4db7-8bf6-d594c53bd03e/1499x1000.jpg", + "https://www.compass.com/m/0/c38ab1e9-7c82-4cf1-9247-e76f272dcaef/1024x1000.jpg", + "https://www.compass.com/m/0/aff1b259-d125-4f0c-894b-be28d10127f9/667x1000.jpg", + "https://www.compass.com/m/0/59bc4b33-61b0-433b-aca8-acf89925f3c9/1499x1000.jpg", + "https://www.compass.com/m/0/84b5a886-f84e-423e-8ca9-60534591904e/1500x994.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/68-Morton-St-Manhattan-NY-10014/1ZZN7A_pid/" + }, + { + "listing_id": "2100300926747393081", + "slug": "59-pineapple-st-unit-3f-brooklyn-ny-11201", + "title": "$4,300", + "price": 4300, + "is_rent": true, + "street": "59 Pineapple Street, Unit 3F", + "neighborhood": "Brooklyn Heights", + "city": "New York", + "state": "NY", + "zip": "11201", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.6984808, + "longitude": -73.9935197, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/3ef2c24f-6e07-4d31-803f-84c4b9c8c0fc", + "gallery_uuids": [ + "uuid/3ef2c24f-6e07-4d31-803f-84c4b9c8c0fc", + "uuid/7851b6f1-fd59-45b3-8872-8abab643e04d", + "uuid/d80aaa67-884e-4999-aa66-9e9a1c80b30b", + "uuid/a02661d6-55c4-4361-bb8d-aabcdb236d66", + "uuid/ee3b11f6-81b1-4dd8-949f-3e4c9537f1dc", + "uuid/1f50845e-2fec-4f80-8b17-be70739eaa96", + "uuid/675c70f5-df8c-43eb-8904-ffc6f8eb512e", + "uuid/691f39aa-e862-4984-bdf6-2ad6faceeb69" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/3ef2c24f-6e07-4d31-803f-84c4b9c8c0fc/1500x980.jpg", + "https://www.compass.com/m/0/7851b6f1-fd59-45b3-8872-8abab643e04d/1498x1000.jpg", + "https://www.compass.com/m/0/d80aaa67-884e-4999-aa66-9e9a1c80b30b/1474x1000.jpg", + "https://www.compass.com/m/0/a02661d6-55c4-4361-bb8d-aabcdb236d66/1373x1000.jpg", + "https://www.compass.com/m/0/ee3b11f6-81b1-4dd8-949f-3e4c9537f1dc/1380x1000.jpg", + "https://www.compass.com/m/0/1f50845e-2fec-4f80-8b17-be70739eaa96/759x1000.jpg", + "https://www.compass.com/m/0/675c70f5-df8c-43eb-8904-ffc6f8eb512e/1500x1000.jpg", + "https://www.compass.com/m/0/691f39aa-e862-4984-bdf6-2ad6faceeb69/664x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/59-Pineapple-St-Unit-3F-Brooklyn-NY-11201/1ZZYTO_pid/" + }, + { + "listing_id": "2103247470853851209", + "slug": "230-ashland-pl-unit-28a-brooklyn-ny-11217", + "title": "$6,499", + "price": 6499, + "is_rent": true, + "street": "230 Ashland Place, Unit 28A", + "neighborhood": "Fort Greene", + "city": "New York", + "state": "NY", + "zip": "11217", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 40.688266, + "longitude": -73.97873299999999, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "Virtual Tour" + ], + "hero_uuid": "uuid/84668d92-1887-4442-91e4-1bb9215f4020", + "gallery_uuids": [ + "uuid/84668d92-1887-4442-91e4-1bb9215f4020", + "uuid/28a5950d-ec2b-4940-9225-14ead946fbea", + "uuid/06fbb72d-c20e-45a6-aa8c-0f571a485e62", + "uuid/8a8405e7-a491-4fe5-8fbd-a97148d97e08", + "uuid/dab64a0e-23c6-4842-986f-f72b37b7efa7", + "uuid/c2e9550c-5c1f-46a2-8d6b-47b180b66daa", + "uuid/9317d0bd-d4e4-4c69-9e81-f27ac1ea2496", + "uuid/707895d6-5591-472c-a5c6-bea4e390e08c" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/84668d92-1887-4442-91e4-1bb9215f4020/1264x843.jpg", + "https://www.compass.com/m/0/28a5950d-ec2b-4940-9225-14ead946fbea/1264x842.jpg", + "https://www.compass.com/m/0/06fbb72d-c20e-45a6-aa8c-0f571a485e62/1264x843.jpg", + "https://www.compass.com/m/0/8a8405e7-a491-4fe5-8fbd-a97148d97e08/667x1000.jpg", + "https://www.compass.com/m/0/dab64a0e-23c6-4842-986f-f72b37b7efa7/1264x843.jpg", + "https://www.compass.com/m/0/c2e9550c-5c1f-46a2-8d6b-47b180b66daa/666x1000.jpg", + "https://www.compass.com/m/0/9317d0bd-d4e4-4c69-9e81-f27ac1ea2496/1500x1000.jpg", + "https://www.compass.com/m/0/707895d6-5591-472c-a5c6-bea4e390e08c/1500x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/230-Ashland-Pl-Unit-28A-Brooklyn-NY-11217/200D2R_pid/" + }, + { + "listing_id": "2103191914893848297", + "slug": "175-w-12th-st-unit-2l-manhattan-ny-10011", + "title": "$5,750", + "price": 5750, + "is_rent": true, + "street": "175 West 12th Street, Unit 2L", + "neighborhood": "West Village", + "city": "New York", + "state": "NY", + "zip": "10011", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.7374003, + "longitude": -74.00015069999999, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "uuid/1cbcf52a-631c-4bcf-9d00-ca043798c157", + "gallery_uuids": [ + "uuid/1cbcf52a-631c-4bcf-9d00-ca043798c157", + "uuid/811d3b88-33f6-483f-88a2-7711bf87bda3", + "uuid/182a4484-4d33-425a-bf42-c3489857a615", + "uuid/ea0f7160-5431-4f67-af4d-9314d5c346de", + "uuid/aafa89be-d1a6-4035-a984-f0baa98a3534", + "uuid/7f704c74-4cec-4dc9-895a-123d7456dbb0" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/1cbcf52a-631c-4bcf-9d00-ca043798c157/1333x1000.jpg", + "https://www.compass.com/m/0/811d3b88-33f6-483f-88a2-7711bf87bda3/1333x1000.jpg", + "https://www.compass.com/m/0/182a4484-4d33-425a-bf42-c3489857a615/1333x1000.jpg", + "https://www.compass.com/m/0/ea0f7160-5431-4f67-af4d-9314d5c346de/1333x1000.jpg", + "https://www.compass.com/m/0/aafa89be-d1a6-4035-a984-f0baa98a3534/750x1000.jpg", + "https://www.compass.com/m/0/7f704c74-4cec-4dc9-895a-123d7456dbb0/750x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/175-W-12th-St-Unit-2L-Manhattan-NY-10011/20H88P_pid/" + }, + { + "listing_id": "2098234276795931129", + "slug": "254-wyckoff-st-unit-2l-brooklyn-ny-11217", + "title": "$3,600", + "price": 3600, + "is_rent": true, + "street": "254 Wyckoff Street, Unit 2L", + "neighborhood": "Boerum Hill", + "city": "New York", + "state": "NY", + "zip": "11217", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 700, + "latitude": 40.683555, + "longitude": -73.98478070000002, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/128a1858-fbb7-439d-b0e1-ad08be4b3aad", + "gallery_uuids": [ + "uuid/128a1858-fbb7-439d-b0e1-ad08be4b3aad", + "uuid/ff8ffdfa-dc05-4425-8e91-99c9dd1269a1", + "uuid/1606abd8-f358-4e76-b989-cdca9462745a", + "uuid/ee3573d8-ce76-445a-afab-4da0d1e96bcb", + "uuid/6838066b-f51a-456b-a052-f4843833d379", + "uuid/aa40c875-905a-4359-bf42-bdd0b399d82d", + "uuid/5df0aa7d-9d9b-4c4f-aeaf-e426c08d036f", + "uuid/23482776-9982-4afb-9ba1-23da6dc416b7" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/128a1858-fbb7-439d-b0e1-ad08be4b3aad/533x400.jpg", + "https://www.compass.com/m/0/ff8ffdfa-dc05-4425-8e91-99c9dd1269a1/533x400.jpg", + "https://www.compass.com/m/0/1606abd8-f358-4e76-b989-cdca9462745a/533x400.jpg", + "https://www.compass.com/m/0/ee3573d8-ce76-445a-afab-4da0d1e96bcb/533x400.jpg", + "https://www.compass.com/m/0/6838066b-f51a-456b-a052-f4843833d379/533x400.jpg", + "https://www.compass.com/m/0/aa40c875-905a-4359-bf42-bdd0b399d82d/533x400.jpg", + "https://www.compass.com/m/0/5df0aa7d-9d9b-4c4f-aeaf-e426c08d036f/533x400.jpg", + "https://www.compass.com/m/0/23482776-9982-4afb-9ba1-23da6dc416b7/533x400.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/254-Wyckoff-St-Unit-2L-Brooklyn-NY-11217/20ZVIC_pid/" + }, + { + "listing_id": "2097993237191321777", + "slug": "222-w-14th-st-unit-9d-manhattan-ny-10011", + "title": "$5,500", + "price": 5500, + "is_rent": true, + "street": "222 West 14th Street, Unit 9D", + "neighborhood": "West Village", + "city": "New York", + "state": "NY", + "zip": "10011", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.7389431, + "longitude": -74.0012691, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "No Fee" + ], + "hero_uuid": "uuid/dadac139-0176-48a6-bb37-b5bc805270ab", + "gallery_uuids": [ + "uuid/dadac139-0176-48a6-bb37-b5bc805270ab", + "uuid/2f46b7d3-b05c-47f3-9b23-cf2e92738d03", + "uuid/f59bd615-af60-4dce-aa52-b5f038e1baf4", + "uuid/c873e4c8-2026-4ca7-9790-9b21be62b5f8", + "uuid/5f18f8d5-6292-4576-8dfa-7ef5f2c72951", + "uuid/5fe84512-06de-4650-97e8-228af45327fd", + "uuid/f9ac87d0-54c6-463c-89ee-e3a580163e84", + "uuid/9c21096f-d680-4ffd-9f1f-4b27e3389c4a" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/dadac139-0176-48a6-bb37-b5bc805270ab/1500x1000.jpg", + "https://www.compass.com/m/0/2f46b7d3-b05c-47f3-9b23-cf2e92738d03/1500x1000.jpg", + "https://www.compass.com/m/0/f59bd615-af60-4dce-aa52-b5f038e1baf4/1500x1000.jpg", + "https://www.compass.com/m/0/c873e4c8-2026-4ca7-9790-9b21be62b5f8/1500x1000.jpg", + "https://www.compass.com/m/0/5f18f8d5-6292-4576-8dfa-7ef5f2c72951/1500x1000.jpg", + "https://www.compass.com/m/0/5fe84512-06de-4650-97e8-228af45327fd/1500x830.jpg", + "https://www.compass.com/m/0/f9ac87d0-54c6-463c-89ee-e3a580163e84/1332x1000.jpg", + "https://www.compass.com/m/0/9c21096f-d680-4ffd-9f1f-4b27e3389c4a/1333x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/222-W-14th-St-Unit-9D-Manhattan-NY-10011/20UO9D_pid/" + }, + { + "listing_id": "2098071507626581761", + "slug": "470-w-24th-st-unit-11g-manhattan-ny-10011", + "title": "$6,750", + "price": 6750, + "is_rent": true, + "street": "470 West 24th Street, Unit 11G", + "neighborhood": "Chelsea", + "city": "New York", + "state": "NY", + "zip": "10011", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.7480377, + "longitude": -74.00347339999999, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "No Fee" + ], + "hero_uuid": "uuid/4977debf-8e45-4fd6-a72a-b1a5307559ff", + "gallery_uuids": [ + "uuid/4977debf-8e45-4fd6-a72a-b1a5307559ff", + "uuid/b34223c3-9dc3-4674-8906-b98ca8bed6d3", + "uuid/57dd3a2c-4633-4a94-8edd-11865a792d85", + "uuid/6fd40d3e-46e2-41ac-88a1-9375dc50e7ee", + "uuid/432f68cc-399b-4d8c-bbbe-db3680f5f5ac", + "uuid/466beac5-1289-49fe-8e68-df9ec3585dc9", + "uuid/ab48d442-5f75-45cd-b14f-1c6eaa9ce0ad", + "uuid/31b402bd-196a-484d-b91a-0ac12652baa6" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/4977debf-8e45-4fd6-a72a-b1a5307559ff/1500x1000.jpg", + "https://www.compass.com/m/0/b34223c3-9dc3-4674-8906-b98ca8bed6d3/1500x1000.jpg", + "https://www.compass.com/m/0/57dd3a2c-4633-4a94-8edd-11865a792d85/1500x1000.jpg", + "https://www.compass.com/m/0/6fd40d3e-46e2-41ac-88a1-9375dc50e7ee/1500x1000.jpg", + "https://www.compass.com/m/0/432f68cc-399b-4d8c-bbbe-db3680f5f5ac/1500x1000.jpg", + "https://www.compass.com/m/0/466beac5-1289-49fe-8e68-df9ec3585dc9/640x427.jpg", + "https://www.compass.com/m/0/ab48d442-5f75-45cd-b14f-1c6eaa9ce0ad/984x656.jpg", + "https://www.compass.com/m/0/31b402bd-196a-484d-b91a-0ac12652baa6/1000x672.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/470-W-24th-St-Unit-11G-Manhattan-NY-10011/2098071507626581761_lid/" + }, + { + "listing_id": "2100304478156765497", + "slug": "586-pacific-st-unit-2a-brooklyn-ny-11217", + "title": "$6,950", + "price": 6950, + "is_rent": true, + "street": "586 Pacific Street, Unit 2A", + "neighborhood": "Park Slope", + "city": "New York", + "state": "NY", + "zip": "11217", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 879, + "latitude": 40.6831592, + "longitude": -73.9776454, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "No Fee" + ], + "hero_uuid": "uuid/a8ac9d7e-1a38-4b0d-aaad-6230bbc05674", + "gallery_uuids": [ + "uuid/a8ac9d7e-1a38-4b0d-aaad-6230bbc05674", + "uuid/1c596170-8d10-44cb-9d4a-362bf22679d6", + "uuid/724b4f39-69f3-4e3f-bd9e-f84707327caf", + "uuid/87cf01ba-6f6c-4feb-aaeb-1c7971e8722f", + "uuid/ee06114d-0339-4743-bab3-79fc703abb5f", + "uuid/077f6cd9-f08a-46b3-88d2-41f0652206b2", + "uuid/0c547697-9df7-4cb7-a8ac-2561947e6dec" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/a8ac9d7e-1a38-4b0d-aaad-6230bbc05674/956x638.jpg", + "https://www.compass.com/m/0/1c596170-8d10-44cb-9d4a-362bf22679d6/957x632.jpg", + "https://www.compass.com/m/0/724b4f39-69f3-4e3f-bd9e-f84707327caf/947x622.jpg", + "https://www.compass.com/m/0/87cf01ba-6f6c-4feb-aaeb-1c7971e8722f/936x633.jpg", + "https://www.compass.com/m/0/ee06114d-0339-4743-bab3-79fc703abb5f/400x562.jpg", + "https://www.compass.com/m/0/077f6cd9-f08a-46b3-88d2-41f0652206b2/947x632.jpg", + "https://www.compass.com/m/0/0c547697-9df7-4cb7-a8ac-2561947e6dec/833x626.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/586-Pacific-St-Unit-2A-Brooklyn-NY-11217/20679W_pid/" + }, + { + "listing_id": "2098144832675737689", + "slug": "5-great-jones-st-4-manhattan-ny-10012", + "title": "$10,000", + "price": 10000, + "is_rent": true, + "street": "5 Great Jones Street", + "neighborhood": "NoHo", + "city": "New York", + "state": "NY", + "zip": "10012", + "beds": 2, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1180, + "latitude": 40.7273343, + "longitude": -73.9941869, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "Virtual Tour" + ], + "hero_uuid": "uuid/887246a3-bbde-4974-b858-dec3a36cea1a", + "gallery_uuids": [ + "uuid/887246a3-bbde-4974-b858-dec3a36cea1a", + "uuid/1f943835-5ef7-4e35-963e-d3aca2717368", + "uuid/4d08863a-31aa-4060-a4e9-14e588b5ac55", + "uuid/bb48f678-e9d3-4938-817b-5cf0096c639c", + "uuid/1b238618-f2a1-4162-a674-d4a95fbc9e55", + "uuid/c5879963-c5c6-4056-bcf0-cd38b7afbdd4", + "uuid/8f7dacce-1d29-4fc4-8f50-b06594517a59", + "uuid/d9d0d2e9-ba57-416d-9d69-79b4049aff10" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/887246a3-bbde-4974-b858-dec3a36cea1a/1500x1000.jpg", + "https://www.compass.com/m/0/1f943835-5ef7-4e35-963e-d3aca2717368/1500x1000.jpg", + "https://www.compass.com/m/0/4d08863a-31aa-4060-a4e9-14e588b5ac55/1500x1000.jpg", + "https://www.compass.com/m/0/bb48f678-e9d3-4938-817b-5cf0096c639c/1500x1000.jpg", + "https://www.compass.com/m/0/1b238618-f2a1-4162-a674-d4a95fbc9e55/1500x1000.jpg", + "https://www.compass.com/m/0/c5879963-c5c6-4056-bcf0-cd38b7afbdd4/1500x1000.jpg", + "https://www.compass.com/m/0/8f7dacce-1d29-4fc4-8f50-b06594517a59/1500x1000.jpg", + "https://www.compass.com/m/0/d9d0d2e9-ba57-416d-9d69-79b4049aff10/1500x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/5-Great-Jones-St-Manhattan-NY-10012/21KHFY_pid/" + }, + { + "listing_id": "2098079763736686521", + "slug": "308-n-7th-st-unit-6d-brooklyn-ny-11211", + "title": "$5,800", + "price": 5800, + "is_rent": true, + "street": "308 North 7th Street, Unit 6D", + "neighborhood": "Williamsburg", + "city": "New York", + "state": "NY", + "zip": "11211", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 727, + "latitude": 40.7149053, + "longitude": -73.95313809999999, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "No Fee" + ], + "hero_uuid": "uuid/329f0b6c-0d3b-4a21-909a-a3b9a996618b", + "gallery_uuids": [ + "uuid/329f0b6c-0d3b-4a21-909a-a3b9a996618b", + "uuid/a92f1e9c-0aca-40b5-bc61-8494d6d7f6c4", + "uuid/61b1045a-c5c1-43e1-b070-2b91c53ae76e", + "uuid/c0c72aee-2239-4583-bdaa-143221e205ae", + "uuid/37295343-2a4e-4dd0-8db4-cf4b191e46d6", + "uuid/e9ba3dd9-b4ec-47d8-b8d8-836b552eb9ac" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/329f0b6c-0d3b-4a21-909a-a3b9a996618b/983x655.jpg", + "https://www.compass.com/m/0/a92f1e9c-0aca-40b5-bc61-8494d6d7f6c4/666x1000.jpg", + "https://www.compass.com/m/0/61b1045a-c5c1-43e1-b070-2b91c53ae76e/1169x779.jpg", + "https://www.compass.com/m/0/c0c72aee-2239-4583-bdaa-143221e205ae/983x655.jpg", + "https://www.compass.com/m/0/37295343-2a4e-4dd0-8db4-cf4b191e46d6/666x1000.jpg", + "https://www.compass.com/m/0/e9ba3dd9-b4ec-47d8-b8d8-836b552eb9ac/836x557.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/308-N-7th-St-Unit-6D-Brooklyn-NY-11211/20J4YW_pid/" + }, + { + "listing_id": "2100209925689857969", + "slug": "260-n-9th-st-unit-5d-brooklyn-ny-11211", + "title": "$5,750", + "price": 5750, + "is_rent": true, + "street": "260 North 9th Street, Unit 5D", + "neighborhood": "Williamsburg", + "city": "New York", + "state": "NY", + "zip": "11211", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 752, + "latitude": 40.7166, + "longitude": -73.95323990000001, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "No Fee" + ], + "hero_uuid": "uuid/b696dcea-3ef0-42b0-89a8-d2077680ab59", + "gallery_uuids": [ + "uuid/b696dcea-3ef0-42b0-89a8-d2077680ab59", + "uuid/b801257b-f376-4b11-8a1e-2dcd82535619", + "uuid/002f8bad-a173-4126-a6e7-5eb61719bec0", + "uuid/23e7095a-2ab2-4786-bf74-db9ae5d19277", + "uuid/6f9ca6e6-75c3-4b84-b5db-562a876ee53f", + "uuid/7c4248a5-8f9f-4e67-8444-31db912b3f7f", + "uuid/9febc18f-4066-40e0-84e2-f987c83531f1", + "uuid/73eb28a2-2aef-4ec3-aae6-2f18c4ecf9b4" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/b696dcea-3ef0-42b0-89a8-d2077680ab59/1500x1000.jpg", + "https://www.compass.com/m/0/b801257b-f376-4b11-8a1e-2dcd82535619/667x1000.jpg", + "https://www.compass.com/m/0/002f8bad-a173-4126-a6e7-5eb61719bec0/1500x1000.jpg", + "https://www.compass.com/m/0/23e7095a-2ab2-4786-bf74-db9ae5d19277/1500x1000.jpg", + "https://www.compass.com/m/0/6f9ca6e6-75c3-4b84-b5db-562a876ee53f/1500x1000.jpg", + "https://www.compass.com/m/0/7c4248a5-8f9f-4e67-8444-31db912b3f7f/1500x1000.jpg", + "https://www.compass.com/m/0/9febc18f-4066-40e0-84e2-f987c83531f1/1500x1000.jpg", + "https://www.compass.com/m/0/73eb28a2-2aef-4ec3-aae6-2f18c4ecf9b4/1500x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/260-N-9th-St-Unit-5D-Brooklyn-NY-11211/1OXETX_pid/" + }, + { + "listing_id": "2103063185496235465", + "slug": "88-e-3rd-st-unit-15-manhattan-ny-10003", + "title": "$3,250", + "price": 3250, + "is_rent": true, + "street": "88 East 3rd Street, Unit 15", + "neighborhood": "East Village", + "city": "New York", + "state": "NY", + "zip": "10003", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.7245808, + "longitude": -73.9881681, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "uuid/f2726305-81e3-4a5f-bb57-0810d1afd4e8", + "gallery_uuids": [ + "uuid/f2726305-81e3-4a5f-bb57-0810d1afd4e8", + "uuid/53796409-3e48-485b-82d0-5e31b7b4cde1", + "uuid/f828b691-330d-482b-8c66-806e8581ce37", + "uuid/415d10d3-d1fc-4874-9d31-3ba9815429e2", + "uuid/7821e685-2d7c-4db7-968e-90217c31162f", + "uuid/9cb98721-10b0-4e16-bc5f-87fdeff283c9" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/f2726305-81e3-4a5f-bb57-0810d1afd4e8/1500x1000.jpg", + "https://www.compass.com/m/0/53796409-3e48-485b-82d0-5e31b7b4cde1/1500x1000.jpg", + "https://www.compass.com/m/0/f828b691-330d-482b-8c66-806e8581ce37/1500x1000.jpg", + "https://www.compass.com/m/0/415d10d3-d1fc-4874-9d31-3ba9815429e2/1500x1000.jpg", + "https://www.compass.com/m/0/7821e685-2d7c-4db7-968e-90217c31162f/667x1000.jpg", + "https://www.compass.com/m/0/9cb98721-10b0-4e16-bc5f-87fdeff283c9/1200x800.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/88-E-3rd-St-Unit-15-Manhattan-NY-10003/204FZ2_pid/" + }, + { + "listing_id": "2094258061888190329", + "slug": "62-n-3rd-st-unit-5a-brooklyn-ny-11249", + "title": "$8,000", + "price": 8000, + "is_rent": true, + "street": "62 North 3rd Street, Unit 5A", + "neighborhood": "Williamsburg", + "city": "New York", + "state": "NY", + "zip": "11249", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1010, + "latitude": 40.7174349, + "longitude": -73.9633396, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "Open: 5/16 11:00AM - 12:00PM - By Appt" + ], + "hero_uuid": "uuid/8e5c8de7-c90e-4ba9-a434-53858a871039", + "gallery_uuids": [ + "uuid/8e5c8de7-c90e-4ba9-a434-53858a871039", + "uuid/e1fba436-0886-487c-9fda-5d2e0305a111", + "uuid/892d8510-461e-49cb-a268-dfe3278c601a", + "uuid/299d01ca-803b-4e50-9827-408078576a3f", + "uuid/8a2803f9-d9c0-40a9-944d-f261648b2220", + "uuid/ae39e791-1157-4d91-90eb-63fbeb42aea4", + "uuid/0cc757ec-85df-47b4-a7b5-00a258ee3f8b", + "uuid/a8c3bf23-7c30-44ba-bfaa-876a4649b059" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/8e5c8de7-c90e-4ba9-a434-53858a871039/1500x1000.jpg", + "https://www.compass.com/m/0/e1fba436-0886-487c-9fda-5d2e0305a111/1500x1000.jpg", + "https://www.compass.com/m/0/892d8510-461e-49cb-a268-dfe3278c601a/1500x1000.jpg", + "https://www.compass.com/m/0/299d01ca-803b-4e50-9827-408078576a3f/1500x1000.jpg", + "https://www.compass.com/m/0/8a2803f9-d9c0-40a9-944d-f261648b2220/667x1000.jpg", + "https://www.compass.com/m/0/ae39e791-1157-4d91-90eb-63fbeb42aea4/1500x1000.jpg", + "https://www.compass.com/m/0/0cc757ec-85df-47b4-a7b5-00a258ee3f8b/1500x1000.jpg", + "https://www.compass.com/m/0/a8c3bf23-7c30-44ba-bfaa-876a4649b059/667x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/62-N-3rd-St-Unit-5A-Brooklyn-NY-11249/204LYW_pid/" + }, + { + "listing_id": "2099552630101970601", + "slug": "108-perry-st-unit-3c-manhattan-ny-10014", + "title": "$5,300", + "price": 5300, + "is_rent": true, + "street": "108 Perry Street, Unit 3C", + "neighborhood": "West Village", + "city": "New York", + "state": "NY", + "zip": "10014", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.7351559, + "longitude": -74.0057794, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "No Fee" + ], + "hero_uuid": "uuid/37f73887-4aee-4a52-831a-62f17d070e72", + "gallery_uuids": [ + "uuid/37f73887-4aee-4a52-831a-62f17d070e72", + "uuid/09bcca8a-b567-47f9-933a-285b9b162892", + "uuid/f56d3b08-4a8b-4f47-a0cc-6b1a74a18325", + "uuid/0e2c2377-03a3-4177-bc73-7f0c8258a786", + "uuid/f49a4748-26b3-4209-90ad-e6f7e01d2848", + "uuid/bb7e33f2-d198-49b3-aee9-fb1bdf009609" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/37f73887-4aee-4a52-831a-62f17d070e72/750x1000.jpg", + "https://www.compass.com/m/0/09bcca8a-b567-47f9-933a-285b9b162892/750x1000.jpg", + "https://www.compass.com/m/0/f56d3b08-4a8b-4f47-a0cc-6b1a74a18325/1333x1000.jpg", + "https://www.compass.com/m/0/0e2c2377-03a3-4177-bc73-7f0c8258a786/750x1000.jpg", + "https://www.compass.com/m/0/f49a4748-26b3-4209-90ad-e6f7e01d2848/412x553.jpg", + "https://www.compass.com/m/0/bb7e33f2-d198-49b3-aee9-fb1bdf009609/290x290.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/108-Perry-St-Unit-3C-Manhattan-NY-10014/203HR3_pid/" + }, + { + "listing_id": "2102606818449475417", + "slug": "129-metropolitan-ave-unit-1b-brooklyn-ny-11249", + "title": "$5,950", + "price": 5950, + "is_rent": true, + "street": "129 Metropolitan Avenue, Unit 1B", + "neighborhood": "Williamsburg", + "city": "New York", + "state": "NY", + "zip": "11249", + "beds": 2, + "baths": 3.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1104, + "latitude": 40.7163685, + "longitude": -73.9623539, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "Open: 5/12 05:30PM - 06:00PM - By Appt" + ], + "hero_uuid": "uuid/4ea372f1-36af-4375-8016-97fb8c68f770", + "gallery_uuids": [ + "uuid/4ea372f1-36af-4375-8016-97fb8c68f770", + "uuid/de8c02c1-c0a1-45cb-8d9e-9a082d6f53d8", + "uuid/c3901518-4381-4097-b6a8-6f608b12c50e", + "uuid/4ec5dc56-b016-4128-8734-463a2626d055", + "uuid/d90683f5-42c3-4dd2-9758-66f04d504c2e", + "uuid/6c0586b1-39a1-4c84-9ffe-5d536dc7f875", + "uuid/b38514e6-9142-4d8d-88ac-bb018b113950", + "uuid/943bff1d-cbdd-43ee-bca7-dbb14344b66d" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/4ea372f1-36af-4375-8016-97fb8c68f770/1500x1000.jpg", + "https://www.compass.com/m/0/de8c02c1-c0a1-45cb-8d9e-9a082d6f53d8/1500x997.jpg", + "https://www.compass.com/m/0/c3901518-4381-4097-b6a8-6f608b12c50e/1500x998.jpg", + "https://www.compass.com/m/0/4ec5dc56-b016-4128-8734-463a2626d055/1500x998.jpg", + "https://www.compass.com/m/0/d90683f5-42c3-4dd2-9758-66f04d504c2e/1500x1000.jpg", + "https://www.compass.com/m/0/6c0586b1-39a1-4c84-9ffe-5d536dc7f875/1198x800.jpg", + "https://www.compass.com/m/0/b38514e6-9142-4d8d-88ac-bb018b113950/1198x800.jpg", + "https://www.compass.com/m/0/943bff1d-cbdd-43ee-bca7-dbb14344b66d/1204x800.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/129-Metropolitan-Ave-Unit-1B-Brooklyn-NY-11249/1LG279_pid/" + }, + { + "listing_id": "2101117993239374921", + "slug": "61-perry-st-unit-carriagehouse-manhattan-ny-10014", + "title": "$14,000", + "price": 14000, + "is_rent": true, + "street": "61 Perry Street, Unit CARRIAGEHOUSE", + "neighborhood": "West Village", + "city": "New York", + "state": "NY", + "zip": "10014", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.7356752, + "longitude": -74.0037775, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "Open: 5/12 07:00PM - 07:30PM" + ], + "hero_uuid": "uuid/03bedf03-9a15-4ac3-9e64-782a67787514", + "gallery_uuids": [ + "uuid/03bedf03-9a15-4ac3-9e64-782a67787514", + "uuid/e2b18016-72ad-4329-b8ff-a2e850b8967d", + "uuid/1c21b4c6-27bf-4b8e-85bb-3a88350c655c", + "uuid/46b7a86f-12e6-4481-b495-d081f965607f", + "uuid/24b429c7-63d1-4df1-bc27-7ad2ae48c226", + "uuid/018b4804-ae83-48d9-9750-e915b522faf5", + "uuid/27af9d4c-b76e-4857-9fff-4a02593129d1", + "uuid/aeeec105-b9ae-4d56-81a2-e43c7bdc8f66" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/03bedf03-9a15-4ac3-9e64-782a67787514/1500x999.jpg", + "https://www.compass.com/m/0/e2b18016-72ad-4329-b8ff-a2e850b8967d/1499x1000.jpg", + "https://www.compass.com/m/0/1c21b4c6-27bf-4b8e-85bb-3a88350c655c/1497x1000.jpg", + "https://www.compass.com/m/0/46b7a86f-12e6-4481-b495-d081f965607f/1500x995.jpg", + "https://www.compass.com/m/0/24b429c7-63d1-4df1-bc27-7ad2ae48c226/1500x998.jpg", + "https://www.compass.com/m/0/018b4804-ae83-48d9-9750-e915b522faf5/1500x993.jpg", + "https://www.compass.com/m/0/27af9d4c-b76e-4857-9fff-4a02593129d1/1494x1000.jpg", + "https://www.compass.com/m/0/aeeec105-b9ae-4d56-81a2-e43c7bdc8f66/1499x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/61-Perry-St-Unit-CARRIAGEHOUSE-Manhattan-NY-10014/27H0P8_pid/" + }, + { + "listing_id": "2098063543490317537", + "slug": "23-e-10th-st-unit-321-manhattan-ny-10003", + "title": "$10,495", + "price": 10495, + "is_rent": true, + "street": "23 East 10th Street, Unit 321", + "neighborhood": "Greenwich Village", + "city": "New York", + "state": "NY", + "zip": "10003", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 40.7327657, + "longitude": -73.9934301, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "No Fee" + ], + "hero_uuid": "uuid/6b6ac1ef-ca70-40c8-8044-7f2adf701aad", + "gallery_uuids": [ + "uuid/6b6ac1ef-ca70-40c8-8044-7f2adf701aad", + "uuid/06d41721-71fd-4ca7-a6f0-4812057bce79", + "uuid/0e8c62ce-c40a-4c10-a402-2011fe9699c5", + "uuid/cf50f459-1c92-4f14-9126-4cd6ca1d8fdf", + "uuid/69fab26e-4c25-4593-99a6-1b3e5c9b7919", + "uuid/9886e1ae-1df7-4bd8-b4a0-05a1f85092db", + "uuid/5fdf970c-6a90-4758-816a-0f4799319b02", + "uuid/813f8eef-9550-4970-a194-f38ba50df828" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/6b6ac1ef-ca70-40c8-8044-7f2adf701aad/1500x1000.jpg", + "https://www.compass.com/m/0/06d41721-71fd-4ca7-a6f0-4812057bce79/1500x1000.jpg", + "https://www.compass.com/m/0/0e8c62ce-c40a-4c10-a402-2011fe9699c5/1500x1000.jpg", + "https://www.compass.com/m/0/cf50f459-1c92-4f14-9126-4cd6ca1d8fdf/667x1000.jpg", + "https://www.compass.com/m/0/69fab26e-4c25-4593-99a6-1b3e5c9b7919/1500x1000.jpg", + "https://www.compass.com/m/0/9886e1ae-1df7-4bd8-b4a0-05a1f85092db/667x1000.jpg", + "https://www.compass.com/m/0/5fdf970c-6a90-4758-816a-0f4799319b02/1330x887.jpg", + "https://www.compass.com/m/0/813f8eef-9550-4970-a194-f38ba50df828/1200x800.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/23-E-10th-St-Unit-321-Manhattan-NY-10003/202F0M_pid/" + }, + { + "listing_id": "2099471767385500449", + "slug": "175-jackson-st-unit-4a-brooklyn-ny-11211", + "title": "$5,400", + "price": 5400, + "is_rent": true, + "street": "175 Jackson Street, Unit 4A", + "neighborhood": "Williamsburg", + "city": "New York", + "state": "NY", + "zip": "11211", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 745, + "latitude": 40.7169665, + "longitude": -73.94377, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "No Fee" + ], + "hero_uuid": "uuid/b2718ac6-fe1f-4ac5-a8ad-33c0b384d0e3", + "gallery_uuids": [ + "uuid/b2718ac6-fe1f-4ac5-a8ad-33c0b384d0e3", + "uuid/a8c4d3b1-ddbf-4a34-827e-425f5d1ee30c", + "uuid/e17ee11e-6945-41ec-a57a-fb0eb1364f51", + "uuid/204677c2-b64a-4070-9521-d02de08d2bc4", + "uuid/e31f1641-2971-4fd9-82eb-b0dd7f7d0abe" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/b2718ac6-fe1f-4ac5-a8ad-33c0b384d0e3/1500x1000.jpg", + "https://www.compass.com/m/0/a8c4d3b1-ddbf-4a34-827e-425f5d1ee30c/1500x998.jpg", + "https://www.compass.com/m/0/e17ee11e-6945-41ec-a57a-fb0eb1364f51/1500x1000.jpg", + "https://www.compass.com/m/0/204677c2-b64a-4070-9521-d02de08d2bc4/1499x1000.jpg", + "https://www.compass.com/m/0/e31f1641-2971-4fd9-82eb-b0dd7f7d0abe/1500x998.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/175-Jackson-St-Unit-4A-Brooklyn-NY-11211/210AQL_pid/" + }, + { + "listing_id": "2102573612374981985", + "slug": "298-carroll-st-brooklyn-ny-11231", + "title": "$16,000", + "price": 16000, + "is_rent": true, + "street": "298 Carroll Street", + "neighborhood": "Carroll Gardens", + "city": "New York", + "state": "NY", + "zip": "11231", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2284, + "latitude": 40.679141, + "longitude": -73.993381, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "uuid/1875fa7c-5271-43f3-bfea-8a13909b5aef", + "gallery_uuids": [ + "uuid/1875fa7c-5271-43f3-bfea-8a13909b5aef", + "uuid/4b2f29dd-adf2-4de1-9ec8-522d3f2c1fce", + "uuid/453e83a4-9305-44c0-a3b8-5ea6f9e5bf36", + "uuid/fd2ed9ef-94ce-4417-8ffc-04825f1d1ccb", + "uuid/e1b22499-f4c6-416d-8d4c-9440860ae164", + "uuid/86b3279b-8991-4791-9d89-31d3188abeaf", + "uuid/3c071bc0-962e-4b97-b1ee-e40335c5a93e", + "uuid/62ee3345-e9b0-42ad-b6e5-c9bced5fd666" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/1875fa7c-5271-43f3-bfea-8a13909b5aef/1499x1000.jpg", + "https://www.compass.com/m/0/4b2f29dd-adf2-4de1-9ec8-522d3f2c1fce/1499x1000.jpg", + "https://www.compass.com/m/0/453e83a4-9305-44c0-a3b8-5ea6f9e5bf36/1499x1000.jpg", + "https://www.compass.com/m/0/fd2ed9ef-94ce-4417-8ffc-04825f1d1ccb/667x1000.jpg", + "https://www.compass.com/m/0/e1b22499-f4c6-416d-8d4c-9440860ae164/667x1000.jpg", + "https://www.compass.com/m/0/86b3279b-8991-4791-9d89-31d3188abeaf/667x1000.jpg", + "https://www.compass.com/m/0/3c071bc0-962e-4b97-b1ee-e40335c5a93e/1499x1000.jpg", + "https://www.compass.com/m/0/62ee3345-e9b0-42ad-b6e5-c9bced5fd666/667x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/298-Carroll-St-Brooklyn-NY-11231/211YDE_pid/" + }, + { + "listing_id": "2098125340638062953", + "slug": "135-w-4th-st-unit-3w-manhattan-ny-10012", + "title": "$18,000", + "price": 18000, + "is_rent": true, + "street": "135 West 4th Street, Unit 3W", + "neighborhood": "Greenwich Village", + "city": "New York", + "state": "NY", + "zip": "10012", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2033, + "latitude": 40.731576, + "longitude": -73.99992999999999, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "No Fee" + ], + "hero_uuid": "uuid/a4f997a5-b50f-4b6f-942a-ba8af98741f2", + "gallery_uuids": [ + "uuid/a4f997a5-b50f-4b6f-942a-ba8af98741f2", + "uuid/89564c94-0e1a-4a6d-aea8-a7b0626db52d", + "uuid/6cdb353c-3263-4adb-8025-105070716021", + "uuid/75c031ab-7489-4bcf-b8e8-da5b1a2c1e15", + "uuid/88253303-e3c5-4746-9da6-c4a54407f980", + "uuid/3d320543-d1b6-4f6d-9e8a-f9a1ced650f2", + "uuid/d9ece3a9-ef4f-449b-a43f-f11ae1464501", + "uuid/60aae6b6-f8f3-42db-9666-2af0a727a76c" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/a4f997a5-b50f-4b6f-942a-ba8af98741f2/1499x1000.jpg", + "https://www.compass.com/m/0/89564c94-0e1a-4a6d-aea8-a7b0626db52d/1499x1000.jpg", + "https://www.compass.com/m/0/6cdb353c-3263-4adb-8025-105070716021/1498x1000.jpg", + "https://www.compass.com/m/0/75c031ab-7489-4bcf-b8e8-da5b1a2c1e15/1499x1000.jpg", + "https://www.compass.com/m/0/88253303-e3c5-4746-9da6-c4a54407f980/1499x1000.jpg", + "https://www.compass.com/m/0/3d320543-d1b6-4f6d-9e8a-f9a1ced650f2/1499x1000.jpg", + "https://www.compass.com/m/0/d9ece3a9-ef4f-449b-a43f-f11ae1464501/1499x1000.jpg", + "https://www.compass.com/m/0/60aae6b6-f8f3-42db-9666-2af0a727a76c/1499x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/135-W-4th-St-Unit-3W-Manhattan-NY-10012/18ZH9E_pid/" + }, + { + "listing_id": "2100482077441763961", + "slug": "204-smith-st-unit-2r-brooklyn-ny-11201", + "title": "$5,750", + "price": 5750, + "is_rent": true, + "street": "204 Smith Street, Unit 2R", + "neighborhood": "Cobble Hill", + "city": "New York", + "state": "NY", + "zip": "11201", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.6847296, + "longitude": -73.99201219999999, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "1.0 Month Free Rent" + ], + "hero_uuid": "uuid/48dc27dd-0139-4eec-adf1-5ab5b0965f65", + "gallery_uuids": [ + "uuid/48dc27dd-0139-4eec-adf1-5ab5b0965f65", + "uuid/9d86ef8c-43d4-4348-96c0-07fc4b2639a0", + "uuid/d33f2527-2cf3-4b0d-9133-bdd2b2dea2fc", + "uuid/c6a0f004-161b-4b8c-b1e3-c9e5a840754d", + "uuid/187f9619-365e-4e73-9989-d0310c74acc3", + "uuid/e8b51e77-3e2b-4365-b210-71031e1ee0a8", + "uuid/69d926f9-292f-406d-8b60-2f6b03eaef79", + "uuid/2700a804-6d2a-49c0-92d4-118e882a8e4a" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/48dc27dd-0139-4eec-adf1-5ab5b0965f65/1500x1000.jpg", + "https://www.compass.com/m/0/9d86ef8c-43d4-4348-96c0-07fc4b2639a0/1500x1000.jpg", + "https://www.compass.com/m/0/d33f2527-2cf3-4b0d-9133-bdd2b2dea2fc/1199x800.jpg", + "https://www.compass.com/m/0/c6a0f004-161b-4b8c-b1e3-c9e5a840754d/1500x1000.jpg", + "https://www.compass.com/m/0/187f9619-365e-4e73-9989-d0310c74acc3/1500x1000.jpg", + "https://www.compass.com/m/0/e8b51e77-3e2b-4365-b210-71031e1ee0a8/533x800.jpg", + "https://www.compass.com/m/0/69d926f9-292f-406d-8b60-2f6b03eaef79/1199x800.jpg", + "https://www.compass.com/m/0/2700a804-6d2a-49c0-92d4-118e882a8e4a/1200x800.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/204-Smith-St-Unit-2R-Brooklyn-NY-11201/2087D8_pid/" + }, + { + "listing_id": "2099417930314207729", + "slug": "90-thompson-st-unit-e2-manhattan-ny-10012", + "title": "$5,895", + "price": 5895, + "is_rent": true, + "street": "90 Thompson Street, Unit E2", + "neighborhood": "SoHo", + "city": "New York", + "state": "NY", + "zip": "10012", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.725135, + "longitude": -74.00208700000002, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "No Fee" + ], + "hero_uuid": "uuid/3cac0878-8db0-45ec-916d-04d97c76d933", + "gallery_uuids": [ + "uuid/3cac0878-8db0-45ec-916d-04d97c76d933", + "uuid/443105bb-d29a-4267-83bf-fb8b368eea73", + "uuid/341152d1-3cc7-495c-9585-472d16d0e261", + "uuid/0d7e1df4-7864-4810-91e9-6a60ee76d0c5", + "uuid/06322224-a378-409c-bd3e-3255fe306a68", + "uuid/a93d3f68-b7c1-46d6-ab7d-4c4b9a418976" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/3cac0878-8db0-45ec-916d-04d97c76d933/561x1000.jpg", + "https://www.compass.com/m/0/443105bb-d29a-4267-83bf-fb8b368eea73/1334x1000.jpg", + "https://www.compass.com/m/0/341152d1-3cc7-495c-9585-472d16d0e261/750x1000.jpg", + "https://www.compass.com/m/0/0d7e1df4-7864-4810-91e9-6a60ee76d0c5/750x1000.jpg", + "https://www.compass.com/m/0/06322224-a378-409c-bd3e-3255fe306a68/1000x702.jpg", + "https://www.compass.com/m/0/a93d3f68-b7c1-46d6-ab7d-4c4b9a418976/1000x697.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/90-Thompson-St-Unit-E2-Manhattan-NY-10012/20PBDW_pid/" + }, + { + "listing_id": "2099403464016671481", + "slug": "393-classon-ave-unit-2-brooklyn-ny-11238", + "title": "$4,500", + "price": 4500, + "is_rent": true, + "street": "393 Classon Avenue, Unit 2", + "neighborhood": "Bedford-Stuyvesant", + "city": "New York", + "state": "NY", + "zip": "11238", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.6876276, + "longitude": -73.9595868, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/2703445d-9ce4-4363-8ef9-ff55714f26d7", + "gallery_uuids": [ + "uuid/2703445d-9ce4-4363-8ef9-ff55714f26d7", + "uuid/3ea14108-c8b1-4401-b733-e9c1348a9132", + "uuid/8c3a968b-66d5-4274-a209-e315e46d8c46", + "uuid/2208ad21-9f5a-4037-8056-24dad19fed5e", + "uuid/eb10820f-5904-4fd6-8be4-2370113231ab", + "uuid/c680c87c-b854-4aed-a4f7-1b987eeb20b8", + "uuid/e9ff3244-07e9-4ba6-b7cf-e71a79814271", + "uuid/6e0c055c-e2a1-42de-b69f-197b7092f439" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/2703445d-9ce4-4363-8ef9-ff55714f26d7/1333x1000.jpg", + "https://www.compass.com/m/0/3ea14108-c8b1-4401-b733-e9c1348a9132/1333x1000.jpg", + "https://www.compass.com/m/0/8c3a968b-66d5-4274-a209-e315e46d8c46/1333x1000.jpg", + "https://www.compass.com/m/0/2208ad21-9f5a-4037-8056-24dad19fed5e/1333x1000.jpg", + "https://www.compass.com/m/0/eb10820f-5904-4fd6-8be4-2370113231ab/1333x1000.jpg", + "https://www.compass.com/m/0/c680c87c-b854-4aed-a4f7-1b987eeb20b8/1333x1000.jpg", + "https://www.compass.com/m/0/e9ff3244-07e9-4ba6-b7cf-e71a79814271/1333x1000.jpg", + "https://www.compass.com/m/0/6e0c055c-e2a1-42de-b69f-197b7092f439/1333x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/393-Classon-Ave-Unit-2-Brooklyn-NY-11238/202X2V_pid/" + }, + { + "listing_id": "2098230702317414385", + "slug": "1061-fulton-st-unit-1-brooklyn-ny-11238", + "title": "$6,500", + "price": 6500, + "is_rent": true, + "street": "1061 Fulton Street, Unit 1", + "neighborhood": "Clinton Hill", + "city": "New York", + "state": "NY", + "zip": "11238", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1250, + "latitude": 40.682143, + "longitude": -73.959267, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/e69266ea-cdc8-446e-bdd8-d2027ef991a2", + "gallery_uuids": [ + "uuid/e69266ea-cdc8-446e-bdd8-d2027ef991a2", + "uuid/fe0dc1ec-40af-4551-8b4a-a33ddb4591d6", + "uuid/aab08f02-6c7a-4e70-8302-e0dcf72e5c93", + "uuid/0083bf58-8ab4-4403-a6a6-c6135aab2011", + "uuid/a5382178-a857-4497-bc33-a168e40835d2", + "uuid/899797bd-a278-45b7-85f5-4c9e078daf68", + "uuid/53231543-5f8c-45b7-9bba-e54c7dd0ac94", + "uuid/23609d29-c922-4b9f-9fa1-1c72c04091a7" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/e69266ea-cdc8-446e-bdd8-d2027ef991a2/1500x1000.jpg", + "https://www.compass.com/m/0/fe0dc1ec-40af-4551-8b4a-a33ddb4591d6/1500x1000.jpg", + "https://www.compass.com/m/0/aab08f02-6c7a-4e70-8302-e0dcf72e5c93/1495x1000.jpg", + "https://www.compass.com/m/0/0083bf58-8ab4-4403-a6a6-c6135aab2011/1500x999.jpg", + "https://www.compass.com/m/0/a5382178-a857-4497-bc33-a168e40835d2/1499x1000.jpg", + "https://www.compass.com/m/0/899797bd-a278-45b7-85f5-4c9e078daf68/1499x1000.jpg", + "https://www.compass.com/m/0/53231543-5f8c-45b7-9bba-e54c7dd0ac94/1500x1000.jpg", + "https://www.compass.com/m/0/23609d29-c922-4b9f-9fa1-1c72c04091a7/1496x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/1061-Fulton-St-Unit-1-Brooklyn-NY-11238/19DL95_pid/" + }, + { + "listing_id": "2100988736991838417", + "slug": "425-e-13th-st-unit-6l-manhattan-ny-10009", + "title": "$6,250", + "price": 6250, + "is_rent": true, + "street": "425 East 13th Street, Unit 6L", + "neighborhood": "East Village", + "city": "New York", + "state": "NY", + "zip": "10009", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.730371, + "longitude": -73.9818968, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/99b220b5-1630-4165-9f2c-d60247e54a43", + "gallery_uuids": [ + "uuid/99b220b5-1630-4165-9f2c-d60247e54a43", + "uuid/dfc52ad7-13cd-4963-ae1e-1b4da831bfdc", + "uuid/26875225-6d45-4e14-ae67-1832c1d2c040", + "uuid/9ab53e33-ecee-41d5-bbf6-25664e01a4d3", + "uuid/b0a9aae9-4645-447f-9d22-835d2283aa89", + "uuid/66ea32f6-d742-4aac-badd-a5a89fcc6fce", + "uuid/81873996-5fe6-48c6-b5ea-afc497279534", + "uuid/09ba9ce7-088c-4ff4-9015-2307fa55b027" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/99b220b5-1630-4165-9f2c-d60247e54a43/1499x1000.jpg", + "https://www.compass.com/m/0/dfc52ad7-13cd-4963-ae1e-1b4da831bfdc/1499x1000.jpg", + "https://www.compass.com/m/0/26875225-6d45-4e14-ae67-1832c1d2c040/1199x800.jpg", + "https://www.compass.com/m/0/9ab53e33-ecee-41d5-bbf6-25664e01a4d3/1199x800.jpg", + "https://www.compass.com/m/0/b0a9aae9-4645-447f-9d22-835d2283aa89/1499x1000.jpg", + "https://www.compass.com/m/0/66ea32f6-d742-4aac-badd-a5a89fcc6fce/1499x1000.jpg", + "https://www.compass.com/m/0/81873996-5fe6-48c6-b5ea-afc497279534/1499x1000.jpg", + "https://www.compass.com/m/0/09ba9ce7-088c-4ff4-9015-2307fa55b027/1499x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/425-E-13th-St-Unit-6L-Manhattan-NY-10009/20DUEX_pid/" + }, + { + "listing_id": "2102534367317010929", + "slug": "218-garfield-pl-unit-3r-brooklyn-ny-11215", + "title": "$3,000", + "price": 3000, + "is_rent": true, + "street": "218 Garfield Place, Unit 3R", + "neighborhood": "Park Slope", + "city": "New York", + "state": "NY", + "zip": "11215", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.671915, + "longitude": -73.9765865, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "uuid/9c7cdb19-5980-47bb-b4eb-dd64cf6d5d57", + "gallery_uuids": [ + "uuid/9c7cdb19-5980-47bb-b4eb-dd64cf6d5d57", + "uuid/acbcfe83-ef09-4459-8b40-abed1e3c3869", + "uuid/839a33c4-9bf1-44af-a7ec-277e8e0d4c6c", + "uuid/bc4c5a79-a2d3-49d1-a907-8be481fa3c21", + "uuid/efd6a31c-2bb4-43a3-85e5-91495df11179", + "uuid/f4873611-f2c8-4e6c-b82e-6579c26e1d13", + "uuid/e3d99b84-462a-4f41-9ee6-c09c84c71cf8", + "uuid/10b58b38-babb-464e-844d-08b08d56292d" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/9c7cdb19-5980-47bb-b4eb-dd64cf6d5d57/1500x844.jpg", + "https://www.compass.com/m/0/acbcfe83-ef09-4459-8b40-abed1e3c3869/1500x844.jpg", + "https://www.compass.com/m/0/839a33c4-9bf1-44af-a7ec-277e8e0d4c6c/1500x844.jpg", + "https://www.compass.com/m/0/bc4c5a79-a2d3-49d1-a907-8be481fa3c21/1500x844.jpg", + "https://www.compass.com/m/0/efd6a31c-2bb4-43a3-85e5-91495df11179/1500x844.jpg", + "https://www.compass.com/m/0/f4873611-f2c8-4e6c-b82e-6579c26e1d13/1500x844.jpg", + "https://www.compass.com/m/0/e3d99b84-462a-4f41-9ee6-c09c84c71cf8/1500x844.jpg", + "https://www.compass.com/m/0/10b58b38-babb-464e-844d-08b08d56292d/1500x844.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/218-Garfield-Pl-Unit-3R-Brooklyn-NY-11215/20AJAN_pid/" + }, + { + "listing_id": "2098711673928053369", + "slug": "410-jefferson-ave-unit-3-brooklyn-ny-11221", + "title": "$2,925", + "price": 2925, + "is_rent": true, + "street": "410 Jefferson Avenue, Unit 3", + "neighborhood": "Bedford-Stuyvesant", + "city": "New York", + "state": "NY", + "zip": "11221", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 750, + "latitude": 40.6840923, + "longitude": -73.9415504, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/508f5d47-d286-4a14-9259-78b1db734954", + "gallery_uuids": [ + "uuid/508f5d47-d286-4a14-9259-78b1db734954", + "uuid/d918495d-cc7e-4840-a3ac-6dcf6ce5ba8d", + "uuid/fd0c6ce1-d7d9-4e38-b288-866daddb8092", + "uuid/933d91b6-b262-4040-bb1e-66a4773ec464", + "uuid/6610cdf7-c10b-4a1b-a85a-0bcba0d0012d" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/508f5d47-d286-4a14-9259-78b1db734954/1500x998.jpg", + "https://www.compass.com/m/0/d918495d-cc7e-4840-a3ac-6dcf6ce5ba8d/1499x1000.jpg", + "https://www.compass.com/m/0/fd0c6ce1-d7d9-4e38-b288-866daddb8092/1500x998.jpg", + "https://www.compass.com/m/0/933d91b6-b262-4040-bb1e-66a4773ec464/1500x1000.jpg", + "https://www.compass.com/m/0/6610cdf7-c10b-4a1b-a85a-0bcba0d0012d/1500x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/410-Jefferson-Ave-Unit-3-Brooklyn-NY-11221/1ZXYNG_pid/" + }, + { + "listing_id": "2100217447100274601", + "slug": "220-atlantic-ave-unit-2-brooklyn-ny-11201", + "title": "$5,500", + "price": 5500, + "is_rent": true, + "street": "220 Atlantic Avenue, Unit 2", + "neighborhood": "Cobble Hill", + "city": "New York", + "state": "NY", + "zip": "11201", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 975, + "latitude": 40.689303, + "longitude": -73.99184570000001, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "No Fee" + ], + "hero_uuid": "uuid/bf33d427-11d8-407e-94eb-110273d1d533", + "gallery_uuids": [ + "uuid/bf33d427-11d8-407e-94eb-110273d1d533", + "uuid/d6a07aec-b1a9-4f77-8bbd-aefe2bbbbb77", + "uuid/65cca277-b61c-4819-b480-385ec493060a", + "uuid/27b7d9e0-01ae-4498-ae77-5ad796f0fad2", + "uuid/3cd6e9a3-4eab-4fe8-8466-893374935609", + "uuid/c5882b55-59b9-4e7b-83c1-6feb2d87b91d", + "uuid/ce15f09b-69fd-42d8-8489-25356b9e005b" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/bf33d427-11d8-407e-94eb-110273d1d533/1500x1000.jpg", + "https://www.compass.com/m/0/d6a07aec-b1a9-4f77-8bbd-aefe2bbbbb77/1500x1000.jpg", + "https://www.compass.com/m/0/65cca277-b61c-4819-b480-385ec493060a/1500x1000.jpg", + "https://www.compass.com/m/0/27b7d9e0-01ae-4498-ae77-5ad796f0fad2/1500x1000.jpg", + "https://www.compass.com/m/0/3cd6e9a3-4eab-4fe8-8466-893374935609/1500x1000.jpg", + "https://www.compass.com/m/0/c5882b55-59b9-4e7b-83c1-6feb2d87b91d/667x1000.jpg", + "https://www.compass.com/m/0/ce15f09b-69fd-42d8-8489-25356b9e005b/667x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/220-Atlantic-Ave-Unit-2-Brooklyn-NY-11201/27FD4L_pid/" + }, + { + "listing_id": "2103165708034858225", + "slug": "141-lefferts-pl-unit-garden-brooklyn-ny-11238", + "title": "$4,500", + "price": 4500, + "is_rent": true, + "street": "141 Lefferts Place, Unit GARDEN", + "neighborhood": "Bedford-Stuyvesant", + "city": "New York", + "state": "NY", + "zip": "11238", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": null, + "latitude": 40.68087209999999, + "longitude": -73.9579297, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "uuid/e3ce87d7-dd7d-4f43-93ba-a54cb6bf69da", + "gallery_uuids": [ + "uuid/e3ce87d7-dd7d-4f43-93ba-a54cb6bf69da" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/e3ce87d7-dd7d-4f43-93ba-a54cb6bf69da/1500x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/141-Lefferts-Pl-Unit-GARDEN-Brooklyn-NY-11238/27I7TQ_pid/" + }, + { + "listing_id": "2100062482926279673", + "slug": "308-clinton-ave-unit-2-brooklyn-ny-11205", + "title": "$7,500", + "price": 7500, + "is_rent": true, + "street": "308 Clinton Avenue, Unit 2", + "neighborhood": "Clinton Hill", + "city": "New York", + "state": "NY", + "zip": "11205", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1569, + "latitude": 40.6888865, + "longitude": -73.9683384, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "No Fee" + ], + "hero_uuid": "uuid/de3c560e-0c83-47ad-ba56-d780a850a40f", + "gallery_uuids": [ + "uuid/de3c560e-0c83-47ad-ba56-d780a850a40f", + "uuid/bebaa481-472a-40c9-afa4-8b8191979116", + "uuid/c59b784e-cec5-4798-b70e-cfdb8491eb32", + "uuid/c01c2848-a842-4bc8-972b-3574c02e9b69", + "uuid/e4b98c2c-343d-4bc3-a244-0ab0d4deda21", + "uuid/7eeef4f7-0297-45a9-a414-95aa3f533216" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/de3c560e-0c83-47ad-ba56-d780a850a40f/1500x937.jpg", + "https://www.compass.com/m/0/bebaa481-472a-40c9-afa4-8b8191979116/1500x920.jpg", + "https://www.compass.com/m/0/c59b784e-cec5-4798-b70e-cfdb8491eb32/1500x935.jpg", + "https://www.compass.com/m/0/c01c2848-a842-4bc8-972b-3574c02e9b69/1359x1000.jpg", + "https://www.compass.com/m/0/e4b98c2c-343d-4bc3-a244-0ab0d4deda21/774x1000.jpg", + "https://www.compass.com/m/0/7eeef4f7-0297-45a9-a414-95aa3f533216/704x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/308-Clinton-Ave-Unit-2-Brooklyn-NY-11205/20B4ED_pid/" + }, + { + "listing_id": "2101106970285896585", + "slug": "143-w-4th-st-unit-1fw-manhattan-ny-10012", + "title": "$6,600", + "price": 6600, + "is_rent": true, + "street": "143 West 4th Street, Unit 1FW", + "neighborhood": "Greenwich Village", + "city": "New York", + "state": "NY", + "zip": "10012", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.7315063, + "longitude": -74.00025029999999, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "No Fee" + ], + "hero_uuid": "uuid/47162305-8d35-4311-84f5-fe04119f50fe", + "gallery_uuids": [ + "uuid/47162305-8d35-4311-84f5-fe04119f50fe", + "uuid/b69ab129-82fd-474f-bd95-0d7e286761af", + "uuid/0e483289-f669-45a5-9b85-dc21009259a7", + "uuid/f7fe2e6b-f18e-4a2e-b62e-8dd92ba14cbd", + "uuid/287376fe-7f94-4a94-a5b2-7e015116306c", + "uuid/3b271be7-5a9f-4b94-9b89-dd361578f78d" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/47162305-8d35-4311-84f5-fe04119f50fe/1331x1000.jpg", + "https://www.compass.com/m/0/b69ab129-82fd-474f-bd95-0d7e286761af/1500x998.jpg", + "https://www.compass.com/m/0/0e483289-f669-45a5-9b85-dc21009259a7/1500x1000.jpg", + "https://www.compass.com/m/0/f7fe2e6b-f18e-4a2e-b62e-8dd92ba14cbd/1500x1000.jpg", + "https://www.compass.com/m/0/287376fe-7f94-4a94-a5b2-7e015116306c/1497x1000.jpg", + "https://www.compass.com/m/0/3b271be7-5a9f-4b94-9b89-dd361578f78d/750x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/143-W-4th-St-Unit-1FW-Manhattan-NY-10012/208E5F_pid/" + }, + { + "listing_id": "2099836055832516497", + "slug": "222-c-hoyt-st-unit-commercial-c-brooklyn-ny-11231", + "title": "$3,000", + "price": 3000, + "is_rent": true, + "street": "222 C Hoyt Street, Unit COMMERCIAL C", + "neighborhood": "Boerum Hill", + "city": "New York", + "state": "NY", + "zip": "11231", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 250, + "latitude": 40.6835945, + "longitude": -73.98999309999999, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/e7c93e2a-293d-4546-b338-5b3b78906b0d", + "gallery_uuids": [ + "uuid/e7c93e2a-293d-4546-b338-5b3b78906b0d" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/e7c93e2a-293d-4546-b338-5b3b78906b0d/640x427.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/222-C-Hoyt-St-Unit-COMMERCIAL-C-Brooklyn-NY-11231/20JDHJ_pid/" + }, + { + "listing_id": "2101104732955702129", + "slug": "143-w-4th-st-unit-b2-manhattan-ny-10012", + "title": "$5,300", + "price": 5300, + "is_rent": true, + "street": "143 West 4th Street, Unit B2", + "neighborhood": "Greenwich Village", + "city": "New York", + "state": "NY", + "zip": "10012", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.7315063, + "longitude": -74.00025029999999, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "No Fee" + ], + "hero_uuid": "uuid/39d74e35-ed40-4bfc-84e2-c32080002b46", + "gallery_uuids": [ + "uuid/39d74e35-ed40-4bfc-84e2-c32080002b46", + "uuid/96f7c3fd-a583-4899-9b2f-ddbb0ed5d19d", + "uuid/fe26da72-c8cb-4fef-9d48-becf45af93df" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/39d74e35-ed40-4bfc-84e2-c32080002b46/1500x1000.jpg", + "https://www.compass.com/m/0/96f7c3fd-a583-4899-9b2f-ddbb0ed5d19d/1500x1000.jpg", + "https://www.compass.com/m/0/fe26da72-c8cb-4fef-9d48-becf45af93df/1500x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/143-W-4th-St-Unit-B2-Manhattan-NY-10012/20MSLK_pid/" + }, + { + "listing_id": "2089510772869620353", + "slug": "260-w-10th-st-unit-1e-manhattan-ny-10014", + "title": "$8,500", + "price": 8500, + "is_rent": true, + "street": "260 West 10th Street, Unit 1E", + "neighborhood": "West Village", + "city": "New York", + "state": "NY", + "zip": "10014", + "beds": null, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1250, + "latitude": 40.7335171, + "longitude": -74.00708209999999, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "No Fee" + ], + "hero_uuid": "uuid/6c0c2783-bed9-4c8e-a2e5-3b586e08636b", + "gallery_uuids": [ + "uuid/6c0c2783-bed9-4c8e-a2e5-3b586e08636b", + "uuid/aad21693-4498-4331-ace5-791fcc1917db", + "uuid/e914b53b-9caa-4022-9093-2df7a261b40d", + "uuid/d1968afb-fd39-4c00-8099-0a769f3e6497", + "uuid/58eee064-7718-457a-b746-d65c1a169116", + "uuid/b2879b49-be52-4773-96ea-1e4d9573a1f2", + "uuid/b254ac03-d279-4373-b4ca-df8c762d8150", + "uuid/20a69596-08cc-4b26-b8e2-eb7bca0129a4" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/6c0c2783-bed9-4c8e-a2e5-3b586e08636b/1500x1000.jpg", + "https://www.compass.com/m/0/aad21693-4498-4331-ace5-791fcc1917db/1500x1000.jpg", + "https://www.compass.com/m/0/e914b53b-9caa-4022-9093-2df7a261b40d/1500x1000.jpg", + "https://www.compass.com/m/0/d1968afb-fd39-4c00-8099-0a769f3e6497/1500x1000.jpg", + "https://www.compass.com/m/0/58eee064-7718-457a-b746-d65c1a169116/667x1000.jpg", + "https://www.compass.com/m/0/b2879b49-be52-4773-96ea-1e4d9573a1f2/667x1000.jpg", + "https://www.compass.com/m/0/b254ac03-d279-4373-b4ca-df8c762d8150/1500x1000.jpg", + "https://www.compass.com/m/0/20a69596-08cc-4b26-b8e2-eb7bca0129a4/1500x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/260-W-10th-St-Unit-1E-Manhattan-NY-10014/213U1T_pid/" + }, + { + "listing_id": "2103040696091577497", + "slug": "2-northside-piers-unit-24y-brooklyn-ny-11249", + "title": "$5,850", + "price": 5850, + "is_rent": true, + "street": "2 Northside Piers, Unit 24Y", + "neighborhood": "Williamsburg", + "city": "New York", + "state": "NY", + "zip": "11249", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 762, + "latitude": 40.7196518, + "longitude": -73.964024, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "Open: 5/13 05:00PM - 06:00PM - By Appt" + ], + "hero_uuid": "uuid/23d3c61b-8647-4a81-b55d-f55b9a94609e", + "gallery_uuids": [ + "uuid/23d3c61b-8647-4a81-b55d-f55b9a94609e", + "uuid/b26624c2-83c8-48f2-b7f8-a1ae099fe171", + "uuid/4042fbe0-e00c-43fa-a6a8-9055c0ff86c5", + "uuid/4c44e1db-3410-4b1d-a90a-8be0f51a5f5b", + "uuid/fbf54f75-5196-4809-85af-2558d6c57221", + "uuid/8dae1d90-a0e3-465f-a9fa-ba714af6f786", + "uuid/0a692646-dbf7-4d7c-a031-a09293bdf0d7", + "uuid/ad472574-a5e3-423e-9891-46bf7c114b89" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/23d3c61b-8647-4a81-b55d-f55b9a94609e/1268x845.jpg", + "https://www.compass.com/m/0/b26624c2-83c8-48f2-b7f8-a1ae099fe171/1334x889.jpg", + "https://www.compass.com/m/0/4042fbe0-e00c-43fa-a6a8-9055c0ff86c5/1245x830.jpg", + "https://www.compass.com/m/0/4c44e1db-3410-4b1d-a90a-8be0f51a5f5b/1164x777.jpg", + "https://www.compass.com/m/0/fbf54f75-5196-4809-85af-2558d6c57221/1291x861.jpg", + "https://www.compass.com/m/0/8dae1d90-a0e3-465f-a9fa-ba714af6f786/1099x733.jpg", + "https://www.compass.com/m/0/0a692646-dbf7-4d7c-a031-a09293bdf0d7/1125x750.jpg", + "https://www.compass.com/m/0/ad472574-a5e3-423e-9891-46bf7c114b89/1000x667.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/2-Northside-Piers-Unit-24Y-Brooklyn-NY-11249/1OXEH9_pid/" + }, + { + "listing_id": "2099359967020959689", + "slug": "150-e-3rd-st-unit-2-manhattan-ny-10009", + "title": "$5,000", + "price": 5000, + "is_rent": true, + "street": "150 East 3rd Street, Unit 2", + "neighborhood": "East Village", + "city": "New York", + "state": "NY", + "zip": "10009", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.7234106, + "longitude": -73.985092, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "No Fee" + ], + "hero_uuid": "uuid/65b19f46-b09c-4f73-97f4-5e412573be7b", + "gallery_uuids": [ + "uuid/65b19f46-b09c-4f73-97f4-5e412573be7b", + "uuid/c7467b4f-a5fc-4156-86f7-30f7f958f70f", + "uuid/91cd6f43-25f0-4034-9b1a-87f00053d839", + "uuid/40327913-898d-49aa-9c61-46ad0008dd7c", + "uuid/863a6a6a-85e1-4c78-9c4f-4f70b20107c1", + "uuid/668bac19-e891-4c43-9067-865367cc9d04" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/65b19f46-b09c-4f73-97f4-5e412573be7b/1500x1000.jpg", + "https://www.compass.com/m/0/c7467b4f-a5fc-4156-86f7-30f7f958f70f/1499x1000.jpg", + "https://www.compass.com/m/0/91cd6f43-25f0-4034-9b1a-87f00053d839/1500x999.jpg", + "https://www.compass.com/m/0/40327913-898d-49aa-9c61-46ad0008dd7c/1499x1000.jpg", + "https://www.compass.com/m/0/863a6a6a-85e1-4c78-9c4f-4f70b20107c1/1499x1000.jpg", + "https://www.compass.com/m/0/668bac19-e891-4c43-9067-865367cc9d04/667x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/150-E-3rd-St-Unit-2-Manhattan-NY-10009/27F149_pid/" + }, + { + "listing_id": "2101572006195730833", + "slug": "149-w-12th-st-unit-66-manhattan-ny-10011", + "title": "$4,995", + "price": 4995, + "is_rent": true, + "street": "149 West 12th Street, Unit 66", + "neighborhood": "West Village", + "city": "New York", + "state": "NY", + "zip": "10011", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 40.7368306, + "longitude": -73.9993215, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "Open: 5/12 05:00PM - 06:30PM" + ], + "hero_uuid": "uuid/9dd0e66c-7ad9-47b5-b136-e0b83a18fcfe", + "gallery_uuids": [ + "uuid/9dd0e66c-7ad9-47b5-b136-e0b83a18fcfe", + "uuid/b17185a2-7559-4ddd-a166-153faa6417d2", + "uuid/1572d65d-f1a9-4979-a25b-d815e12bccb3", + "uuid/499b68c5-5bb1-4b99-80e8-3ea1baca8fcc", + "uuid/992ab797-bc1a-4dc3-b2c6-a7b0251fed71" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/9dd0e66c-7ad9-47b5-b136-e0b83a18fcfe/1500x1000.jpg", + "https://www.compass.com/m/0/b17185a2-7559-4ddd-a166-153faa6417d2/1500x1000.jpg", + "https://www.compass.com/m/0/1572d65d-f1a9-4979-a25b-d815e12bccb3/1500x1000.jpg", + "https://www.compass.com/m/0/499b68c5-5bb1-4b99-80e8-3ea1baca8fcc/1500x1000.jpg", + "https://www.compass.com/m/0/992ab797-bc1a-4dc3-b2c6-a7b0251fed71/667x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/149-W-12th-St-Unit-66-Manhattan-NY-10011/20OWT3_pid/" + }, + { + "listing_id": "2100902560301619993", + "slug": "313-president-st-unit-2-brooklyn-ny-11231", + "title": "$18,750", + "price": 18750, + "is_rent": true, + "street": "313 President Street, Unit 2", + "neighborhood": "Carroll Gardens", + "city": "New York", + "state": "NY", + "zip": "11231", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 2112, + "latitude": 40.6807403, + "longitude": -73.9934364, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "uuid/64561692-fd8a-4f1f-9332-149109f80bb2", + "gallery_uuids": [ + "uuid/64561692-fd8a-4f1f-9332-149109f80bb2", + "uuid/9ebc5567-c971-46c7-87bf-0e2c01944572", + "uuid/2e6986c4-3a7f-4321-92bc-2dc782d60391", + "uuid/7c45163b-0e06-4829-8f88-fdf22f82f072", + "uuid/ee2d391a-a837-416d-a23c-3b5c6cb8f379", + "uuid/9cffcb1c-944b-4e8d-9e97-e6f694917eb8", + "uuid/6470cbcc-0eeb-4b63-b557-70ae80ea2644", + "uuid/f8b63093-af4b-44b0-87da-21a7f34b3ab5" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/64561692-fd8a-4f1f-9332-149109f80bb2/1333x1000.jpg", + "https://www.compass.com/m/0/9ebc5567-c971-46c7-87bf-0e2c01944572/1333x1000.jpg", + "https://www.compass.com/m/0/2e6986c4-3a7f-4321-92bc-2dc782d60391/750x1000.jpg", + "https://www.compass.com/m/0/7c45163b-0e06-4829-8f88-fdf22f82f072/1416x1000.jpg", + "https://www.compass.com/m/0/ee2d391a-a837-416d-a23c-3b5c6cb8f379/1333x1000.jpg", + "https://www.compass.com/m/0/9cffcb1c-944b-4e8d-9e97-e6f694917eb8/1333x1000.jpg", + "https://www.compass.com/m/0/6470cbcc-0eeb-4b63-b557-70ae80ea2644/1339x1000.jpg", + "https://www.compass.com/m/0/f8b63093-af4b-44b0-87da-21a7f34b3ab5/1333x1000.jpg" + ], + "source_city": "rent_ny", + "detail_url": "https://www.compass.com/homedetails/313-President-St-Unit-2-Brooklyn-NY-11231/20Q662_pid/" + }, + { + "listing_id": "1581437739056080049", + "slug": "566-s-san-vicente-blvd-unit-103s-los-angeles-ca-90048", + "title": "$1,285", + "price": 1285, + "is_rent": true, + "street": "566 South San Vicente Boulevard, Unit 103S", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90048", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 34.0670912, + "longitude": -118.3734744, + "status": "for-rent", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/940c8f21-f17a-486b-89da-f581aab5376e", + "gallery_uuids": [ + "uuid/940c8f21-f17a-486b-89da-f581aab5376e" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/940c8f21-f17a-486b-89da-f581aab5376e/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/566-S-San-Vicente-Blvd-Unit-103S-Los-Angeles-CA-90048/1JSD0R_pid/" + }, + { + "listing_id": "1946610965807112993", + "slug": "122-channel-pointe-mall-marina-del-rey-ca-90292", + "title": "$20,000", + "price": 20000, + "is_rent": true, + "street": "122 Channel Pointe Mall", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90292", + "beds": 4, + "baths": 6.0, + "baths_full": 6, + "baths_half": null, + "sqft": 5481, + "latitude": 33.9671356, + "longitude": -118.4541367, + "status": "for-rent", + "badges": [ + "Compass Coming Soon" + ], + "hero_uuid": "uuid/7b7b848f-956f-41e8-8e06-d64af5ff6cba", + "gallery_uuids": [ + "uuid/7b7b848f-956f-41e8-8e06-d64af5ff6cba" + ], + "gallery_urls": [ + "https://www.compass.com/m/0/7b7b848f-956f-41e8-8e06-d64af5ff6cba/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/122-Channel-Pointe-Mall-Marina-Del-Rey-CA-90292/1JQQWP_pid/" + }, + { + "listing_id": "2098031946624151457", + "slug": "13133-dewey-st-los-angeles-ca-90066", + "title": "$8,500", + "price": 8500, + "is_rent": true, + "street": "13133 Dewey Street", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90066", + "beds": 3, + "baths": 2.0, + "baths_full": 1, + "baths_half": null, + "sqft": 1418, + "latitude": 34.0109254, + "longitude": -118.4538531, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/fc3aeede2f50c8c7893c667f1b091f6c002377b7_img_0_347f5", + "gallery_uuids": [ + "legacy/fc3aeede2f50c8c7893c667f1b091f6c002377b7_img_0_347f5", + "legacy/fc3aeede2f50c8c7893c667f1b091f6c002377b7_img_1_6cfad", + "legacy/fc3aeede2f50c8c7893c667f1b091f6c002377b7_img_2_9ebae", + "legacy/fc3aeede2f50c8c7893c667f1b091f6c002377b7_img_3_8f4f6", + "legacy/fc3aeede2f50c8c7893c667f1b091f6c002377b7_img_4_b7918", + "legacy/fc3aeede2f50c8c7893c667f1b091f6c002377b7_img_5_266dd", + "legacy/fc3aeede2f50c8c7893c667f1b091f6c002377b7_img_6_f7a6b", + "legacy/fc3aeede2f50c8c7893c667f1b091f6c002377b7_img_7_39caa" + ], + "gallery_urls": [ + "https://www.compass.com/m/fc3aeede2f50c8c7893c667f1b091f6c002377b7_img_0_347f5/640x480.jpg", + "https://www.compass.com/m/fc3aeede2f50c8c7893c667f1b091f6c002377b7_img_1_6cfad/640x480.jpg", + "https://www.compass.com/m/fc3aeede2f50c8c7893c667f1b091f6c002377b7_img_2_9ebae/640x480.jpg", + "https://www.compass.com/m/fc3aeede2f50c8c7893c667f1b091f6c002377b7_img_3_8f4f6/640x480.jpg", + "https://www.compass.com/m/fc3aeede2f50c8c7893c667f1b091f6c002377b7_img_4_b7918/640x480.jpg", + "https://www.compass.com/m/fc3aeede2f50c8c7893c667f1b091f6c002377b7_img_5_266dd/640x480.jpg", + "https://www.compass.com/m/fc3aeede2f50c8c7893c667f1b091f6c002377b7_img_6_f7a6b/640x480.jpg", + "https://www.compass.com/m/fc3aeede2f50c8c7893c667f1b091f6c002377b7_img_7_39caa/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/13133-Dewey-St-Los-Angeles-CA-90066/1K5FVZ_pid/" + }, + { + "listing_id": "2101012465402569633", + "slug": "3542-greenwood-ave-los-angeles-ca-90066", + "title": "$5,495", + "price": 5495, + "is_rent": true, + "street": "3542 Greenwood Avenue", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90066", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1010, + "latitude": 34.0049975, + "longitude": -118.4461339, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/3fd19460b5ded0c3f7d5d6ec4428353928a5772d_img_0_d6074", + "gallery_uuids": [ + "legacy/3fd19460b5ded0c3f7d5d6ec4428353928a5772d_img_0_d6074" + ], + "gallery_urls": [ + "https://www.compass.com/m/3fd19460b5ded0c3f7d5d6ec4428353928a5772d_img_0_d6074/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/3542-Greenwood-Ave-Los-Angeles-CA-90066/1KMPT9_pid/" + }, + { + "listing_id": "2103280074244401153", + "slug": "1935-n-catalina-st-los-angeles-ca-90027", + "title": "$16,500", + "price": 16500, + "is_rent": true, + "street": "1935 North Catalina Street", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90027", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2427, + "latitude": 34.10640679999999, + "longitude": -118.2953488, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "legacy/8c056f8317fe5a8a4d9dbfdab2d8ddabe670a252_img_0_181cb", + "gallery_uuids": [ + "legacy/8c056f8317fe5a8a4d9dbfdab2d8ddabe670a252_img_0_181cb", + "legacy/8c056f8317fe5a8a4d9dbfdab2d8ddabe670a252_img_1_977f5", + "legacy/8c056f8317fe5a8a4d9dbfdab2d8ddabe670a252_img_2_5b06d", + "legacy/8c056f8317fe5a8a4d9dbfdab2d8ddabe670a252_img_3_365f4", + "legacy/8c056f8317fe5a8a4d9dbfdab2d8ddabe670a252_img_4_2384e", + "legacy/8c056f8317fe5a8a4d9dbfdab2d8ddabe670a252_img_5_c3ab0", + "legacy/8c056f8317fe5a8a4d9dbfdab2d8ddabe670a252_img_6_a3460", + "legacy/8c056f8317fe5a8a4d9dbfdab2d8ddabe670a252_img_7_ad4c2" + ], + "gallery_urls": [ + "https://www.compass.com/m/8c056f8317fe5a8a4d9dbfdab2d8ddabe670a252_img_0_181cb/640x480.jpg", + "https://www.compass.com/m/8c056f8317fe5a8a4d9dbfdab2d8ddabe670a252_img_1_977f5/640x480.jpg", + "https://www.compass.com/m/8c056f8317fe5a8a4d9dbfdab2d8ddabe670a252_img_2_5b06d/640x480.jpg", + "https://www.compass.com/m/8c056f8317fe5a8a4d9dbfdab2d8ddabe670a252_img_3_365f4/640x480.jpg", + "https://www.compass.com/m/8c056f8317fe5a8a4d9dbfdab2d8ddabe670a252_img_4_2384e/640x480.jpg", + "https://www.compass.com/m/8c056f8317fe5a8a4d9dbfdab2d8ddabe670a252_img_5_c3ab0/640x480.jpg", + "https://www.compass.com/m/8c056f8317fe5a8a4d9dbfdab2d8ddabe670a252_img_6_a3460/640x480.jpg", + "https://www.compass.com/m/8c056f8317fe5a8a4d9dbfdab2d8ddabe670a252_img_7_ad4c2/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/1935-N-Catalina-St-Los-Angeles-CA-90027/1JUG41_pid/" + }, + { + "listing_id": "2103222314030815937", + "slug": "3322-hamilton-way-los-angeles-ca-90026", + "title": "$3,250", + "price": 3250, + "is_rent": true, + "street": "3322 Hamilton Way", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90026", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 611, + "latitude": 34.0871676, + "longitude": -118.2749184, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "legacy/81dedca07fb6c3f2b720f336a7d5c96227820914_img_0_788b6", + "gallery_uuids": [ + "legacy/81dedca07fb6c3f2b720f336a7d5c96227820914_img_0_788b6", + "legacy/81dedca07fb6c3f2b720f336a7d5c96227820914_img_1_65a9e", + "legacy/81dedca07fb6c3f2b720f336a7d5c96227820914_img_2_c4864", + "legacy/81dedca07fb6c3f2b720f336a7d5c96227820914_img_3_55b9e", + "legacy/81dedca07fb6c3f2b720f336a7d5c96227820914_img_4_fabb0", + "legacy/81dedca07fb6c3f2b720f336a7d5c96227820914_img_5_6ae7a", + "legacy/81dedca07fb6c3f2b720f336a7d5c96227820914_img_6_611b3", + "legacy/81dedca07fb6c3f2b720f336a7d5c96227820914_img_7_29f7e" + ], + "gallery_urls": [ + "https://www.compass.com/m/81dedca07fb6c3f2b720f336a7d5c96227820914_img_0_788b6/640x480.jpg", + "https://www.compass.com/m/81dedca07fb6c3f2b720f336a7d5c96227820914_img_1_65a9e/640x480.jpg", + "https://www.compass.com/m/81dedca07fb6c3f2b720f336a7d5c96227820914_img_2_c4864/640x480.jpg", + "https://www.compass.com/m/81dedca07fb6c3f2b720f336a7d5c96227820914_img_3_55b9e/640x480.jpg", + "https://www.compass.com/m/81dedca07fb6c3f2b720f336a7d5c96227820914_img_4_fabb0/640x480.jpg", + "https://www.compass.com/m/81dedca07fb6c3f2b720f336a7d5c96227820914_img_5_6ae7a/640x480.jpg", + "https://www.compass.com/m/81dedca07fb6c3f2b720f336a7d5c96227820914_img_6_611b3/640x480.jpg", + "https://www.compass.com/m/81dedca07fb6c3f2b720f336a7d5c96227820914_img_7_29f7e/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/3322-Hamilton-Way-Los-Angeles-CA-90026/27II2W_pid/" + }, + { + "listing_id": "2101115484588736313", + "slug": "738-n-vendome-st-los-angeles-ca-90026", + "title": "$3,700", + "price": 3700, + "is_rent": true, + "street": "738 North Vendome Street", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90026", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1064, + "latitude": 34.080455, + "longitude": -118.2763928, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "Open: 5/11 05:30PM - 06:30PM" + ], + "hero_uuid": "legacy/ca0c7e3a95b8c8adf2b238d42e0a977336db450b_img_0_34053", + "gallery_uuids": [ + "legacy/ca0c7e3a95b8c8adf2b238d42e0a977336db450b_img_0_34053", + "legacy/ca0c7e3a95b8c8adf2b238d42e0a977336db450b_img_1_63e8b", + "legacy/ca0c7e3a95b8c8adf2b238d42e0a977336db450b_img_2_f6bba", + "legacy/ca0c7e3a95b8c8adf2b238d42e0a977336db450b_img_3_1ca86", + "legacy/ca0c7e3a95b8c8adf2b238d42e0a977336db450b_img_4_ad344", + "legacy/ca0c7e3a95b8c8adf2b238d42e0a977336db450b_img_5_e1db1", + "legacy/ca0c7e3a95b8c8adf2b238d42e0a977336db450b_img_6_205c1", + "legacy/ca0c7e3a95b8c8adf2b238d42e0a977336db450b_img_7_3b1f9" + ], + "gallery_urls": [ + "https://www.compass.com/m/ca0c7e3a95b8c8adf2b238d42e0a977336db450b_img_0_34053/640x480.jpg", + "https://www.compass.com/m/ca0c7e3a95b8c8adf2b238d42e0a977336db450b_img_1_63e8b/640x480.jpg", + "https://www.compass.com/m/ca0c7e3a95b8c8adf2b238d42e0a977336db450b_img_2_f6bba/640x480.jpg", + "https://www.compass.com/m/ca0c7e3a95b8c8adf2b238d42e0a977336db450b_img_3_1ca86/640x480.jpg", + "https://www.compass.com/m/ca0c7e3a95b8c8adf2b238d42e0a977336db450b_img_4_ad344/640x480.jpg", + "https://www.compass.com/m/ca0c7e3a95b8c8adf2b238d42e0a977336db450b_img_5_e1db1/640x480.jpg", + "https://www.compass.com/m/ca0c7e3a95b8c8adf2b238d42e0a977336db450b_img_6_205c1/640x480.jpg", + "https://www.compass.com/m/ca0c7e3a95b8c8adf2b238d42e0a977336db450b_img_7_3b1f9/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/738-N-Vendome-St-Los-Angeles-CA-90026/1KOZCK_pid/" + }, + { + "listing_id": "2101115485070589113", + "slug": "741-silver-lake-blvd-los-angeles-ca-90026", + "title": "$3,900", + "price": 3900, + "is_rent": true, + "street": "741 Silver Lake Boulevard", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90026", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1138, + "latitude": 34.08032, + "longitude": -118.27617, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "Open: 5/11 05:30PM - 06:30PM" + ], + "hero_uuid": "legacy/f3086db710c0536c8159b836c73a2fba51337a33_img_0_64eca", + "gallery_uuids": [ + "legacy/f3086db710c0536c8159b836c73a2fba51337a33_img_0_64eca", + "legacy/f3086db710c0536c8159b836c73a2fba51337a33_img_1_2f2e3", + "legacy/f3086db710c0536c8159b836c73a2fba51337a33_img_2_82839", + "legacy/f3086db710c0536c8159b836c73a2fba51337a33_img_3_a2b5e", + "legacy/f3086db710c0536c8159b836c73a2fba51337a33_img_4_cb2b9", + "legacy/f3086db710c0536c8159b836c73a2fba51337a33_img_5_259a0", + "legacy/f3086db710c0536c8159b836c73a2fba51337a33_img_6_c3970", + "legacy/f3086db710c0536c8159b836c73a2fba51337a33_img_7_a2f8c" + ], + "gallery_urls": [ + "https://www.compass.com/m/f3086db710c0536c8159b836c73a2fba51337a33_img_0_64eca/640x480.jpg", + "https://www.compass.com/m/f3086db710c0536c8159b836c73a2fba51337a33_img_1_2f2e3/640x480.jpg", + "https://www.compass.com/m/f3086db710c0536c8159b836c73a2fba51337a33_img_2_82839/640x480.jpg", + "https://www.compass.com/m/f3086db710c0536c8159b836c73a2fba51337a33_img_3_a2b5e/640x480.jpg", + "https://www.compass.com/m/f3086db710c0536c8159b836c73a2fba51337a33_img_4_cb2b9/640x480.jpg", + "https://www.compass.com/m/f3086db710c0536c8159b836c73a2fba51337a33_img_5_259a0/640x480.jpg", + "https://www.compass.com/m/f3086db710c0536c8159b836c73a2fba51337a33_img_6_c3970/640x480.jpg", + "https://www.compass.com/m/f3086db710c0536c8159b836c73a2fba51337a33_img_7_a2f8c/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/741-Silver-Lake-Blvd-Los-Angeles-CA-90026/27H0OJ_pid/" + }, + { + "listing_id": "2098948128386800481", + "slug": "624-silver-lake-blvd-unit-4-los-angeles-ca-90026", + "title": "$3,195", + "price": 3195, + "is_rent": true, + "street": "624 Silver Lake Boulevard, Unit 4", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90026", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 800, + "latitude": 34.0786729, + "longitude": -118.2780828, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/859e2f2777e8e33ec78fb7d4f9c82b8ab8818527_img_0_d19a2", + "gallery_uuids": [ + "legacy/859e2f2777e8e33ec78fb7d4f9c82b8ab8818527_img_0_d19a2", + "legacy/859e2f2777e8e33ec78fb7d4f9c82b8ab8818527_img_1_d612a", + "legacy/859e2f2777e8e33ec78fb7d4f9c82b8ab8818527_img_2_73d1e", + "legacy/859e2f2777e8e33ec78fb7d4f9c82b8ab8818527_img_3_c5fc1", + "legacy/859e2f2777e8e33ec78fb7d4f9c82b8ab8818527_img_4_aa166", + "legacy/859e2f2777e8e33ec78fb7d4f9c82b8ab8818527_img_5_79249", + "legacy/859e2f2777e8e33ec78fb7d4f9c82b8ab8818527_img_6_31c5d", + "legacy/859e2f2777e8e33ec78fb7d4f9c82b8ab8818527_img_7_e9694" + ], + "gallery_urls": [ + "https://www.compass.com/m/859e2f2777e8e33ec78fb7d4f9c82b8ab8818527_img_0_d19a2/640x480.jpg", + "https://www.compass.com/m/859e2f2777e8e33ec78fb7d4f9c82b8ab8818527_img_1_d612a/640x480.jpg", + "https://www.compass.com/m/859e2f2777e8e33ec78fb7d4f9c82b8ab8818527_img_2_73d1e/640x480.jpg", + "https://www.compass.com/m/859e2f2777e8e33ec78fb7d4f9c82b8ab8818527_img_3_c5fc1/640x480.jpg", + "https://www.compass.com/m/859e2f2777e8e33ec78fb7d4f9c82b8ab8818527_img_4_aa166/640x480.jpg", + "https://www.compass.com/m/859e2f2777e8e33ec78fb7d4f9c82b8ab8818527_img_5_79249/640x480.jpg", + "https://www.compass.com/m/859e2f2777e8e33ec78fb7d4f9c82b8ab8818527_img_6_31c5d/640x480.jpg", + "https://www.compass.com/m/859e2f2777e8e33ec78fb7d4f9c82b8ab8818527_img_7_e9694/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/624-Silver-Lake-Blvd-Unit-4-Los-Angeles-CA-90026/1JQO9M_pid/" + }, + { + "listing_id": "2099384123821420169", + "slug": "2419-banyan-dr-los-angeles-ca-90049", + "title": "$22,500", + "price": 22500, + "is_rent": true, + "street": "2419 Banyan Drive", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90049", + "beds": 4, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 3000, + "latitude": 34.0799087, + "longitude": -118.5049623, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/66449f4fedbf259c7faa4147373d4253946c5c2a_img_0_055df", + "gallery_uuids": [ + "legacy/66449f4fedbf259c7faa4147373d4253946c5c2a_img_0_055df", + "legacy/66449f4fedbf259c7faa4147373d4253946c5c2a_img_1_ce8e9", + "legacy/66449f4fedbf259c7faa4147373d4253946c5c2a_img_2_ae5a4", + "legacy/66449f4fedbf259c7faa4147373d4253946c5c2a_img_3_093d4", + "legacy/66449f4fedbf259c7faa4147373d4253946c5c2a_img_4_d780f", + "legacy/66449f4fedbf259c7faa4147373d4253946c5c2a_img_5_52b3b", + "legacy/66449f4fedbf259c7faa4147373d4253946c5c2a_img_6_6b100", + "legacy/66449f4fedbf259c7faa4147373d4253946c5c2a_img_7_94850" + ], + "gallery_urls": [ + "https://www.compass.com/m/66449f4fedbf259c7faa4147373d4253946c5c2a_img_0_055df/640x480.jpg", + "https://www.compass.com/m/66449f4fedbf259c7faa4147373d4253946c5c2a_img_1_ce8e9/640x480.jpg", + "https://www.compass.com/m/66449f4fedbf259c7faa4147373d4253946c5c2a_img_2_ae5a4/640x480.jpg", + "https://www.compass.com/m/66449f4fedbf259c7faa4147373d4253946c5c2a_img_3_093d4/640x480.jpg", + "https://www.compass.com/m/66449f4fedbf259c7faa4147373d4253946c5c2a_img_4_d780f/640x480.jpg", + "https://www.compass.com/m/66449f4fedbf259c7faa4147373d4253946c5c2a_img_5_52b3b/640x480.jpg", + "https://www.compass.com/m/66449f4fedbf259c7faa4147373d4253946c5c2a_img_6_6b100/640x480.jpg", + "https://www.compass.com/m/66449f4fedbf259c7faa4147373d4253946c5c2a_img_7_94850/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/2419-Banyan-Dr-Los-Angeles-CA-90049/1IXC0Z_pid/" + }, + { + "listing_id": "2103126900749239969", + "slug": "922-s-bundy-dr-los-angeles-ca-90049", + "title": "$9,900", + "price": 9900, + "is_rent": true, + "street": "922 South Bundy Drive", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90049", + "beds": 3, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2200, + "latitude": 34.0482004, + "longitude": -118.4702015, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "legacy/8d07aba368960a9bb3241c34403959e2858d1bd2_img_0_f2f37", + "gallery_uuids": [ + "legacy/8d07aba368960a9bb3241c34403959e2858d1bd2_img_0_f2f37", + "legacy/8d07aba368960a9bb3241c34403959e2858d1bd2_img_1_d90da", + "legacy/8d07aba368960a9bb3241c34403959e2858d1bd2_img_2_3f45b", + "legacy/8d07aba368960a9bb3241c34403959e2858d1bd2_img_3_ca884", + "legacy/8d07aba368960a9bb3241c34403959e2858d1bd2_img_4_bb41e", + "legacy/8d07aba368960a9bb3241c34403959e2858d1bd2_img_5_45eb7", + "legacy/8d07aba368960a9bb3241c34403959e2858d1bd2_img_6_9bb04", + "legacy/8d07aba368960a9bb3241c34403959e2858d1bd2_img_7_5ed4b" + ], + "gallery_urls": [ + "https://www.compass.com/m/8d07aba368960a9bb3241c34403959e2858d1bd2_img_0_f2f37/640x480.jpg", + "https://www.compass.com/m/8d07aba368960a9bb3241c34403959e2858d1bd2_img_1_d90da/640x480.jpg", + "https://www.compass.com/m/8d07aba368960a9bb3241c34403959e2858d1bd2_img_2_3f45b/640x480.jpg", + "https://www.compass.com/m/8d07aba368960a9bb3241c34403959e2858d1bd2_img_3_ca884/640x480.jpg", + "https://www.compass.com/m/8d07aba368960a9bb3241c34403959e2858d1bd2_img_4_bb41e/640x480.jpg", + "https://www.compass.com/m/8d07aba368960a9bb3241c34403959e2858d1bd2_img_5_45eb7/640x480.jpg", + "https://www.compass.com/m/8d07aba368960a9bb3241c34403959e2858d1bd2_img_6_9bb04/640x480.jpg", + "https://www.compass.com/m/8d07aba368960a9bb3241c34403959e2858d1bd2_img_7_5ed4b/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/922-S-Bundy-Dr-Los-Angeles-CA-90049/1JLWKU_pid/" + }, + { + "listing_id": "2099394270681129497", + "slug": "1123-w-kensington-rd-los-angeles-ca-90026", + "title": "$4,475", + "price": 4475, + "is_rent": true, + "street": "1123 West Kensington Road", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90026", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 962, + "latitude": 34.070607, + "longitude": -118.2587377, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/2a6b6fd85982dada56b2b871743a62f4c4a73168_img_0_8c8dc", + "gallery_uuids": [ + "legacy/2a6b6fd85982dada56b2b871743a62f4c4a73168_img_0_8c8dc", + "legacy/2a6b6fd85982dada56b2b871743a62f4c4a73168_img_1_7aa1a", + "legacy/2a6b6fd85982dada56b2b871743a62f4c4a73168_img_2_93e85", + "legacy/2a6b6fd85982dada56b2b871743a62f4c4a73168_img_3_2af4a", + "legacy/2a6b6fd85982dada56b2b871743a62f4c4a73168_img_4_9f423", + "legacy/2a6b6fd85982dada56b2b871743a62f4c4a73168_img_5_3bd3b", + "legacy/2a6b6fd85982dada56b2b871743a62f4c4a73168_img_6_b1dcd", + "legacy/2a6b6fd85982dada56b2b871743a62f4c4a73168_img_7_67ab3" + ], + "gallery_urls": [ + "https://www.compass.com/m/2a6b6fd85982dada56b2b871743a62f4c4a73168_img_0_8c8dc/640x480.jpg", + "https://www.compass.com/m/2a6b6fd85982dada56b2b871743a62f4c4a73168_img_1_7aa1a/640x480.jpg", + "https://www.compass.com/m/2a6b6fd85982dada56b2b871743a62f4c4a73168_img_2_93e85/640x480.jpg", + "https://www.compass.com/m/2a6b6fd85982dada56b2b871743a62f4c4a73168_img_3_2af4a/640x480.jpg", + "https://www.compass.com/m/2a6b6fd85982dada56b2b871743a62f4c4a73168_img_4_9f423/640x480.jpg", + "https://www.compass.com/m/2a6b6fd85982dada56b2b871743a62f4c4a73168_img_5_3bd3b/640x480.jpg", + "https://www.compass.com/m/2a6b6fd85982dada56b2b871743a62f4c4a73168_img_6_b1dcd/640x480.jpg", + "https://www.compass.com/m/2a6b6fd85982dada56b2b871743a62f4c4a73168_img_7_67ab3/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/1123-W-Kensington-Rd-Los-Angeles-CA-90026/1IY94H_pid/" + }, + { + "listing_id": "2103133743646749561", + "slug": "11912-wagner-st-culver-city-ca-90230", + "title": "$5,995", + "price": 5995, + "is_rent": true, + "street": "11912 Wagner Street", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90230", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1145, + "latitude": 33.99539, + "longitude": -118.41587, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "legacy/6fb487f82c9f77be1a7b246ba3d2167ede1860c1_img_0_37040", + "gallery_uuids": [ + "legacy/6fb487f82c9f77be1a7b246ba3d2167ede1860c1_img_0_37040", + "legacy/6fb487f82c9f77be1a7b246ba3d2167ede1860c1_img_1_a6442", + "legacy/6fb487f82c9f77be1a7b246ba3d2167ede1860c1_img_2_a5e34", + "legacy/6fb487f82c9f77be1a7b246ba3d2167ede1860c1_img_3_cec28", + "legacy/6fb487f82c9f77be1a7b246ba3d2167ede1860c1_img_4_f3ca8", + "legacy/6fb487f82c9f77be1a7b246ba3d2167ede1860c1_img_5_4c846", + "legacy/6fb487f82c9f77be1a7b246ba3d2167ede1860c1_img_6_f3d61", + "legacy/6fb487f82c9f77be1a7b246ba3d2167ede1860c1_img_7_11348" + ], + "gallery_urls": [ + "https://www.compass.com/m/6fb487f82c9f77be1a7b246ba3d2167ede1860c1_img_0_37040/640x480.jpg", + "https://www.compass.com/m/6fb487f82c9f77be1a7b246ba3d2167ede1860c1_img_1_a6442/640x480.jpg", + "https://www.compass.com/m/6fb487f82c9f77be1a7b246ba3d2167ede1860c1_img_2_a5e34/640x480.jpg", + "https://www.compass.com/m/6fb487f82c9f77be1a7b246ba3d2167ede1860c1_img_3_cec28/640x480.jpg", + "https://www.compass.com/m/6fb487f82c9f77be1a7b246ba3d2167ede1860c1_img_4_f3ca8/640x480.jpg", + "https://www.compass.com/m/6fb487f82c9f77be1a7b246ba3d2167ede1860c1_img_5_4c846/640x480.jpg", + "https://www.compass.com/m/6fb487f82c9f77be1a7b246ba3d2167ede1860c1_img_6_f3d61/640x480.jpg", + "https://www.compass.com/m/6fb487f82c9f77be1a7b246ba3d2167ede1860c1_img_7_11348/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/11912-Wagner-St-Culver-City-CA-90230/27HX49_pid/" + }, + { + "listing_id": "2098911502742363449", + "slug": "2528-1-2-military-ave-los-angeles-ca-90064", + "title": "$3,300", + "price": 3300, + "is_rent": true, + "street": "2528 1/2 Military Avenue", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90064", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 650, + "latitude": 34.0367216, + "longitude": -118.4315109, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/db145ff0ab02e6c00efa46e5d8c6b1505a262353_img_0_92f9f", + "gallery_uuids": [ + "legacy/db145ff0ab02e6c00efa46e5d8c6b1505a262353_img_0_92f9f", + "legacy/db145ff0ab02e6c00efa46e5d8c6b1505a262353_img_1_db836", + "legacy/db145ff0ab02e6c00efa46e5d8c6b1505a262353_img_2_9dee9", + "legacy/db145ff0ab02e6c00efa46e5d8c6b1505a262353_img_3_a5456", + "legacy/db145ff0ab02e6c00efa46e5d8c6b1505a262353_img_4_36d4b", + "legacy/db145ff0ab02e6c00efa46e5d8c6b1505a262353_img_5_d0826", + "legacy/db145ff0ab02e6c00efa46e5d8c6b1505a262353_img_6_528c4", + "legacy/db145ff0ab02e6c00efa46e5d8c6b1505a262353_img_7_dbab9" + ], + "gallery_urls": [ + "https://www.compass.com/m/db145ff0ab02e6c00efa46e5d8c6b1505a262353_img_0_92f9f/640x480.jpg", + "https://www.compass.com/m/db145ff0ab02e6c00efa46e5d8c6b1505a262353_img_1_db836/640x480.jpg", + "https://www.compass.com/m/db145ff0ab02e6c00efa46e5d8c6b1505a262353_img_2_9dee9/640x480.jpg", + "https://www.compass.com/m/db145ff0ab02e6c00efa46e5d8c6b1505a262353_img_3_a5456/640x480.jpg", + "https://www.compass.com/m/db145ff0ab02e6c00efa46e5d8c6b1505a262353_img_4_36d4b/640x480.jpg", + "https://www.compass.com/m/db145ff0ab02e6c00efa46e5d8c6b1505a262353_img_5_d0826/640x480.jpg", + "https://www.compass.com/m/db145ff0ab02e6c00efa46e5d8c6b1505a262353_img_6_528c4/640x480.jpg", + "https://www.compass.com/m/db145ff0ab02e6c00efa46e5d8c6b1505a262353_img_7_dbab9/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/2528-1-2-Military-Ave-Los-Angeles-CA-90064/1KWRTQ_pid/" + }, + { + "listing_id": "2102470411868642225", + "slug": "4046-stoneybrook-dr-sherman-oaks-ca-91403", + "title": "$8,500", + "price": 8500, + "is_rent": true, + "street": "4046 Stoneybrook Drive", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "91403", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1920, + "latitude": 34.1439113, + "longitude": -118.4599578, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "legacy/37733f4303fd848f1fdf92aea249b1a7730ba8df_img_0_c68ad", + "gallery_uuids": [ + "legacy/37733f4303fd848f1fdf92aea249b1a7730ba8df_img_0_c68ad", + "legacy/37733f4303fd848f1fdf92aea249b1a7730ba8df_img_1_063d1", + "legacy/37733f4303fd848f1fdf92aea249b1a7730ba8df_img_2_0f490", + "legacy/37733f4303fd848f1fdf92aea249b1a7730ba8df_img_3_47fe2", + "legacy/37733f4303fd848f1fdf92aea249b1a7730ba8df_img_4_7c986", + "legacy/37733f4303fd848f1fdf92aea249b1a7730ba8df_img_5_d3f0d", + "legacy/37733f4303fd848f1fdf92aea249b1a7730ba8df_img_6_e33a9", + "legacy/37733f4303fd848f1fdf92aea249b1a7730ba8df_img_7_44181" + ], + "gallery_urls": [ + "https://www.compass.com/m/37733f4303fd848f1fdf92aea249b1a7730ba8df_img_0_c68ad/640x480.jpg", + "https://www.compass.com/m/37733f4303fd848f1fdf92aea249b1a7730ba8df_img_1_063d1/640x480.jpg", + "https://www.compass.com/m/37733f4303fd848f1fdf92aea249b1a7730ba8df_img_2_0f490/640x480.jpg", + "https://www.compass.com/m/37733f4303fd848f1fdf92aea249b1a7730ba8df_img_3_47fe2/640x480.jpg", + "https://www.compass.com/m/37733f4303fd848f1fdf92aea249b1a7730ba8df_img_4_7c986/640x480.jpg", + "https://www.compass.com/m/37733f4303fd848f1fdf92aea249b1a7730ba8df_img_5_d3f0d/640x480.jpg", + "https://www.compass.com/m/37733f4303fd848f1fdf92aea249b1a7730ba8df_img_6_e33a9/640x480.jpg", + "https://www.compass.com/m/37733f4303fd848f1fdf92aea249b1a7730ba8df_img_7_44181/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/4046-Stoneybrook-Dr-Sherman-Oaks-CA-91403/1KJ8NR_pid/" + }, + { + "listing_id": "2103121974522072233", + "slug": "1846-del-paso-ave-los-angeles-ca-90032", + "title": "$3,800", + "price": 3800, + "is_rent": true, + "street": "1846 Del Paso Avenue", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90032", + "beds": 4, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1272, + "latitude": 34.0645973, + "longitude": -118.1827764, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "legacy/2142f5be9e582055397cb8fcc6623c18af9eef28_img_0_56a93", + "gallery_uuids": [ + "legacy/2142f5be9e582055397cb8fcc6623c18af9eef28_img_0_56a93", + "legacy/2142f5be9e582055397cb8fcc6623c18af9eef28_img_1_22020", + "legacy/2142f5be9e582055397cb8fcc6623c18af9eef28_img_2_be87a", + "legacy/2142f5be9e582055397cb8fcc6623c18af9eef28_img_3_a09d2", + "legacy/2142f5be9e582055397cb8fcc6623c18af9eef28_img_4_e3b60", + "legacy/2142f5be9e582055397cb8fcc6623c18af9eef28_img_5_50a7a", + "legacy/2142f5be9e582055397cb8fcc6623c18af9eef28_img_6_64c81", + "legacy/2142f5be9e582055397cb8fcc6623c18af9eef28_img_7_77173" + ], + "gallery_urls": [ + "https://www.compass.com/m/2142f5be9e582055397cb8fcc6623c18af9eef28_img_0_56a93/640x480.jpg", + "https://www.compass.com/m/2142f5be9e582055397cb8fcc6623c18af9eef28_img_1_22020/640x480.jpg", + "https://www.compass.com/m/2142f5be9e582055397cb8fcc6623c18af9eef28_img_2_be87a/640x480.jpg", + "https://www.compass.com/m/2142f5be9e582055397cb8fcc6623c18af9eef28_img_3_a09d2/640x480.jpg", + "https://www.compass.com/m/2142f5be9e582055397cb8fcc6623c18af9eef28_img_4_e3b60/640x480.jpg", + "https://www.compass.com/m/2142f5be9e582055397cb8fcc6623c18af9eef28_img_5_50a7a/640x480.jpg", + "https://www.compass.com/m/2142f5be9e582055397cb8fcc6623c18af9eef28_img_6_64c81/640x480.jpg", + "https://www.compass.com/m/2142f5be9e582055397cb8fcc6623c18af9eef28_img_7_77173/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/1846-Del-Paso-Ave-Los-Angeles-CA-90032/1I7PDX_pid/" + }, + { + "listing_id": "2101583685709982353", + "slug": "726-nowita-pl-venice-ca-90291", + "title": "$14,000", + "price": 14000, + "is_rent": true, + "street": "726 Nowita Place", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90291", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2392, + "latitude": 33.9926188, + "longitude": -118.4608247, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/a66c4f3838ea4f67a0eb787321d4e169b11ba785_img_0_e87d9", + "gallery_uuids": [ + "legacy/a66c4f3838ea4f67a0eb787321d4e169b11ba785_img_0_e87d9", + "legacy/a66c4f3838ea4f67a0eb787321d4e169b11ba785_img_1_a4ce9", + "legacy/a66c4f3838ea4f67a0eb787321d4e169b11ba785_img_2_62519", + "legacy/a66c4f3838ea4f67a0eb787321d4e169b11ba785_img_3_fba56", + "legacy/a66c4f3838ea4f67a0eb787321d4e169b11ba785_img_4_45290", + "legacy/a66c4f3838ea4f67a0eb787321d4e169b11ba785_img_5_cdf3d", + "legacy/a66c4f3838ea4f67a0eb787321d4e169b11ba785_img_6_d47db", + "legacy/a66c4f3838ea4f67a0eb787321d4e169b11ba785_img_7_92908" + ], + "gallery_urls": [ + "https://www.compass.com/m/a66c4f3838ea4f67a0eb787321d4e169b11ba785_img_0_e87d9/640x480.jpg", + "https://www.compass.com/m/a66c4f3838ea4f67a0eb787321d4e169b11ba785_img_1_a4ce9/640x480.jpg", + "https://www.compass.com/m/a66c4f3838ea4f67a0eb787321d4e169b11ba785_img_2_62519/640x480.jpg", + "https://www.compass.com/m/a66c4f3838ea4f67a0eb787321d4e169b11ba785_img_3_fba56/640x480.jpg", + "https://www.compass.com/m/a66c4f3838ea4f67a0eb787321d4e169b11ba785_img_4_45290/640x480.jpg", + "https://www.compass.com/m/a66c4f3838ea4f67a0eb787321d4e169b11ba785_img_5_cdf3d/640x480.jpg", + "https://www.compass.com/m/a66c4f3838ea4f67a0eb787321d4e169b11ba785_img_6_d47db/640x480.jpg", + "https://www.compass.com/m/a66c4f3838ea4f67a0eb787321d4e169b11ba785_img_7_92908/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/726-Nowita-Pl-Venice-CA-90291/1J3C8Q_pid/" + }, + { + "listing_id": "2100974601348362657", + "slug": "1735-n-fuller-ave-unit-445-los-angeles-ca-90046", + "title": "$3,100", + "price": 3100, + "is_rent": true, + "street": "1735 North Fuller Avenue, Unit 445", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90046", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 831, + "latitude": 34.10278470000001, + "longitude": -118.3493452, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/dc2b7a700339dd65de3d8bad1927d2f41a3963c7_img_0_e26a0", + "gallery_uuids": [ + "legacy/dc2b7a700339dd65de3d8bad1927d2f41a3963c7_img_0_e26a0", + "legacy/dc2b7a700339dd65de3d8bad1927d2f41a3963c7_img_1_145b3", + "legacy/dc2b7a700339dd65de3d8bad1927d2f41a3963c7_img_2_d588a", + "legacy/dc2b7a700339dd65de3d8bad1927d2f41a3963c7_img_3_d79c9", + "legacy/dc2b7a700339dd65de3d8bad1927d2f41a3963c7_img_4_565a8", + "legacy/dc2b7a700339dd65de3d8bad1927d2f41a3963c7_img_5_689a0", + "legacy/dc2b7a700339dd65de3d8bad1927d2f41a3963c7_img_6_24cbe", + "legacy/dc2b7a700339dd65de3d8bad1927d2f41a3963c7_img_7_7fe53" + ], + "gallery_urls": [ + "https://www.compass.com/m/dc2b7a700339dd65de3d8bad1927d2f41a3963c7_img_0_e26a0/640x480.jpg", + "https://www.compass.com/m/dc2b7a700339dd65de3d8bad1927d2f41a3963c7_img_1_145b3/640x480.jpg", + "https://www.compass.com/m/dc2b7a700339dd65de3d8bad1927d2f41a3963c7_img_2_d588a/640x480.jpg", + "https://www.compass.com/m/dc2b7a700339dd65de3d8bad1927d2f41a3963c7_img_3_d79c9/640x480.jpg", + "https://www.compass.com/m/dc2b7a700339dd65de3d8bad1927d2f41a3963c7_img_4_565a8/640x480.jpg", + "https://www.compass.com/m/dc2b7a700339dd65de3d8bad1927d2f41a3963c7_img_5_689a0/640x480.jpg", + "https://www.compass.com/m/dc2b7a700339dd65de3d8bad1927d2f41a3963c7_img_6_24cbe/640x480.jpg", + "https://www.compass.com/m/dc2b7a700339dd65de3d8bad1927d2f41a3963c7_img_7_7fe53/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/1735-N-Fuller-Ave-Unit-445-Los-Angeles-CA-90046/1KWT74_pid/" + }, + { + "listing_id": "2100071455280774377", + "slug": "2045-paramount-dr-los-angeles-ca-90068", + "title": "$7,150", + "price": 7150, + "is_rent": true, + "street": "2045 Paramount Drive", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90068", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 1100, + "latitude": 34.10799, + "longitude": -118.340338, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/6a7fb59c1383f848e2968db3040bd0f8d6e71910_img_0_c2f14", + "gallery_uuids": [ + "legacy/6a7fb59c1383f848e2968db3040bd0f8d6e71910_img_0_c2f14", + "legacy/6a7fb59c1383f848e2968db3040bd0f8d6e71910_img_1_d08d5", + "legacy/6a7fb59c1383f848e2968db3040bd0f8d6e71910_img_2_6046b", + "legacy/6a7fb59c1383f848e2968db3040bd0f8d6e71910_img_3_84d58", + "legacy/6a7fb59c1383f848e2968db3040bd0f8d6e71910_img_4_77567", + "legacy/6a7fb59c1383f848e2968db3040bd0f8d6e71910_img_5_e35a7", + "legacy/6a7fb59c1383f848e2968db3040bd0f8d6e71910_img_6_60e84", + "legacy/6a7fb59c1383f848e2968db3040bd0f8d6e71910_img_7_692c7" + ], + "gallery_urls": [ + "https://www.compass.com/m/6a7fb59c1383f848e2968db3040bd0f8d6e71910_img_0_c2f14/640x480.jpg", + "https://www.compass.com/m/6a7fb59c1383f848e2968db3040bd0f8d6e71910_img_1_d08d5/640x480.jpg", + "https://www.compass.com/m/6a7fb59c1383f848e2968db3040bd0f8d6e71910_img_2_6046b/640x480.jpg", + "https://www.compass.com/m/6a7fb59c1383f848e2968db3040bd0f8d6e71910_img_3_84d58/640x480.jpg", + "https://www.compass.com/m/6a7fb59c1383f848e2968db3040bd0f8d6e71910_img_4_77567/640x480.jpg", + "https://www.compass.com/m/6a7fb59c1383f848e2968db3040bd0f8d6e71910_img_5_e35a7/640x480.jpg", + "https://www.compass.com/m/6a7fb59c1383f848e2968db3040bd0f8d6e71910_img_6_60e84/640x480.jpg", + "https://www.compass.com/m/6a7fb59c1383f848e2968db3040bd0f8d6e71910_img_7_692c7/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/2045-Paramount-Dr-Los-Angeles-CA-90068/1K8JQ9_pid/" + }, + { + "listing_id": "2100436354708491737", + "slug": "2043-paramount-dr-los-angeles-ca-90068", + "title": "$4,495", + "price": 4495, + "is_rent": true, + "street": "2043 Paramount Drive", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90068", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 400, + "latitude": 34.10799, + "longitude": -118.34037, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/505ae9b2c912fe9b1ed37a0fb605671435cd58d8_img_0_090c0", + "gallery_uuids": [ + "legacy/505ae9b2c912fe9b1ed37a0fb605671435cd58d8_img_0_090c0", + "legacy/505ae9b2c912fe9b1ed37a0fb605671435cd58d8_img_1_c3ffd", + "legacy/505ae9b2c912fe9b1ed37a0fb605671435cd58d8_img_2_85002", + "legacy/505ae9b2c912fe9b1ed37a0fb605671435cd58d8_img_3_714d8", + "legacy/505ae9b2c912fe9b1ed37a0fb605671435cd58d8_img_4_4272e", + "legacy/505ae9b2c912fe9b1ed37a0fb605671435cd58d8_img_5_b6ca2", + "legacy/505ae9b2c912fe9b1ed37a0fb605671435cd58d8_img_6_cf09b", + "legacy/505ae9b2c912fe9b1ed37a0fb605671435cd58d8_img_7_61b13" + ], + "gallery_urls": [ + "https://www.compass.com/m/505ae9b2c912fe9b1ed37a0fb605671435cd58d8_img_0_090c0/640x480.jpg", + "https://www.compass.com/m/505ae9b2c912fe9b1ed37a0fb605671435cd58d8_img_1_c3ffd/640x480.jpg", + "https://www.compass.com/m/505ae9b2c912fe9b1ed37a0fb605671435cd58d8_img_2_85002/640x480.jpg", + "https://www.compass.com/m/505ae9b2c912fe9b1ed37a0fb605671435cd58d8_img_3_714d8/640x480.jpg", + "https://www.compass.com/m/505ae9b2c912fe9b1ed37a0fb605671435cd58d8_img_4_4272e/640x480.jpg", + "https://www.compass.com/m/505ae9b2c912fe9b1ed37a0fb605671435cd58d8_img_5_b6ca2/640x480.jpg", + "https://www.compass.com/m/505ae9b2c912fe9b1ed37a0fb605671435cd58d8_img_6_cf09b/640x480.jpg", + "https://www.compass.com/m/505ae9b2c912fe9b1ed37a0fb605671435cd58d8_img_7_61b13/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/2043-Paramount-Dr-Los-Angeles-CA-90068/27FFC8_pid/" + }, + { + "listing_id": "2098815500249862745", + "slug": "1670-electric-ave-venice-ca-90291", + "title": "$11,000", + "price": 11000, + "is_rent": true, + "street": "1670 Electric Avenue", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90291", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 1951, + "latitude": 33.990605, + "longitude": -118.4611796, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/a13d8abd32031a0f002543403c740cf7201a6410_img_0_382e9", + "gallery_uuids": [ + "legacy/a13d8abd32031a0f002543403c740cf7201a6410_img_0_382e9", + "legacy/a13d8abd32031a0f002543403c740cf7201a6410_img_1_2c35f", + "legacy/a13d8abd32031a0f002543403c740cf7201a6410_img_2_93d6e", + "legacy/a13d8abd32031a0f002543403c740cf7201a6410_img_3_0177a", + "legacy/a13d8abd32031a0f002543403c740cf7201a6410_img_4_0b984", + "legacy/a13d8abd32031a0f002543403c740cf7201a6410_img_5_4351b", + "legacy/a13d8abd32031a0f002543403c740cf7201a6410_img_6_c9709", + "legacy/a13d8abd32031a0f002543403c740cf7201a6410_img_7_90d5c" + ], + "gallery_urls": [ + "https://www.compass.com/m/a13d8abd32031a0f002543403c740cf7201a6410_img_0_382e9/640x480.jpg", + "https://www.compass.com/m/a13d8abd32031a0f002543403c740cf7201a6410_img_1_2c35f/640x480.jpg", + "https://www.compass.com/m/a13d8abd32031a0f002543403c740cf7201a6410_img_2_93d6e/640x480.jpg", + "https://www.compass.com/m/a13d8abd32031a0f002543403c740cf7201a6410_img_3_0177a/640x480.jpg", + "https://www.compass.com/m/a13d8abd32031a0f002543403c740cf7201a6410_img_4_0b984/640x480.jpg", + "https://www.compass.com/m/a13d8abd32031a0f002543403c740cf7201a6410_img_5_4351b/640x480.jpg", + "https://www.compass.com/m/a13d8abd32031a0f002543403c740cf7201a6410_img_6_c9709/640x480.jpg", + "https://www.compass.com/m/a13d8abd32031a0f002543403c740cf7201a6410_img_7_90d5c/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/1670-Electric-Ave-Venice-CA-90291/1JQ9ZF_pid/" + }, + { + "listing_id": "2100959649975304185", + "slug": "409-n-kilkea-dr-los-angeles-ca-90048", + "title": "$11,250", + "price": 11250, + "is_rent": true, + "street": "409 North Kilkea Drive", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90048", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2200, + "latitude": 34.0785007, + "longitude": -118.3671789, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/8683359baa8241899ab808ce14b7c1d9522a5283_img_0_71c3c", + "gallery_uuids": [ + "legacy/8683359baa8241899ab808ce14b7c1d9522a5283_img_0_71c3c", + "legacy/8683359baa8241899ab808ce14b7c1d9522a5283_img_1_978c7", + "legacy/8683359baa8241899ab808ce14b7c1d9522a5283_img_2_55909", + "legacy/8683359baa8241899ab808ce14b7c1d9522a5283_img_3_a69b5", + "legacy/8683359baa8241899ab808ce14b7c1d9522a5283_img_4_44a14", + "legacy/8683359baa8241899ab808ce14b7c1d9522a5283_img_5_6be20", + "legacy/8683359baa8241899ab808ce14b7c1d9522a5283_img_6_70773", + "legacy/8683359baa8241899ab808ce14b7c1d9522a5283_img_7_9d1d6" + ], + "gallery_urls": [ + "https://www.compass.com/m/8683359baa8241899ab808ce14b7c1d9522a5283_img_0_71c3c/640x480.jpg", + "https://www.compass.com/m/8683359baa8241899ab808ce14b7c1d9522a5283_img_1_978c7/640x480.jpg", + "https://www.compass.com/m/8683359baa8241899ab808ce14b7c1d9522a5283_img_2_55909/640x480.jpg", + "https://www.compass.com/m/8683359baa8241899ab808ce14b7c1d9522a5283_img_3_a69b5/640x480.jpg", + "https://www.compass.com/m/8683359baa8241899ab808ce14b7c1d9522a5283_img_4_44a14/640x480.jpg", + "https://www.compass.com/m/8683359baa8241899ab808ce14b7c1d9522a5283_img_5_6be20/640x480.jpg", + "https://www.compass.com/m/8683359baa8241899ab808ce14b7c1d9522a5283_img_6_70773/640x480.jpg", + "https://www.compass.com/m/8683359baa8241899ab808ce14b7c1d9522a5283_img_7_9d1d6/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/409-N-Kilkea-Dr-Los-Angeles-CA-90048/1IFTF3_pid/" + }, + { + "listing_id": "2098156354747387689", + "slug": "2230-fink-st-los-angeles-ca-90068", + "title": "$7,300", + "price": 7300, + "is_rent": true, + "street": "2230 Fink Street", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90068", + "beds": 3, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 1230, + "latitude": 34.1113808, + "longitude": -118.3302784, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/11456c8a8e793edcede95eb0a1811ab886d4d9ae_img_0_fc7f0", + "gallery_uuids": [ + "legacy/11456c8a8e793edcede95eb0a1811ab886d4d9ae_img_0_fc7f0", + "legacy/11456c8a8e793edcede95eb0a1811ab886d4d9ae_img_1_05ad5", + "legacy/11456c8a8e793edcede95eb0a1811ab886d4d9ae_img_2_b36c0", + "legacy/11456c8a8e793edcede95eb0a1811ab886d4d9ae_img_3_47ad8", + "legacy/11456c8a8e793edcede95eb0a1811ab886d4d9ae_img_4_4d62c", + "legacy/11456c8a8e793edcede95eb0a1811ab886d4d9ae_img_5_0eb26", + "legacy/11456c8a8e793edcede95eb0a1811ab886d4d9ae_img_6_c10a8", + "legacy/11456c8a8e793edcede95eb0a1811ab886d4d9ae_img_7_c0c13" + ], + "gallery_urls": [ + "https://www.compass.com/m/11456c8a8e793edcede95eb0a1811ab886d4d9ae_img_0_fc7f0/640x480.jpg", + "https://www.compass.com/m/11456c8a8e793edcede95eb0a1811ab886d4d9ae_img_1_05ad5/640x480.jpg", + "https://www.compass.com/m/11456c8a8e793edcede95eb0a1811ab886d4d9ae_img_2_b36c0/640x480.jpg", + "https://www.compass.com/m/11456c8a8e793edcede95eb0a1811ab886d4d9ae_img_3_47ad8/640x480.jpg", + "https://www.compass.com/m/11456c8a8e793edcede95eb0a1811ab886d4d9ae_img_4_4d62c/640x480.jpg", + "https://www.compass.com/m/11456c8a8e793edcede95eb0a1811ab886d4d9ae_img_5_0eb26/640x480.jpg", + "https://www.compass.com/m/11456c8a8e793edcede95eb0a1811ab886d4d9ae_img_6_c10a8/640x480.jpg", + "https://www.compass.com/m/11456c8a8e793edcede95eb0a1811ab886d4d9ae_img_7_c0c13/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/2230-Fink-St-Los-Angeles-CA-90068/2098156354747387689_lid/" + }, + { + "listing_id": "2100277638428332313", + "slug": "17265-avenida-de-la-herradura-pacific-palisades-ca-90272", + "title": "$10,000", + "price": 10000, + "is_rent": true, + "street": "17265 Avenida De La Herradura", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90272", + "beds": 4, + "baths": 4.0, + "baths_full": 3, + "baths_half": null, + "sqft": 3130, + "latitude": 34.0790724, + "longitude": -118.5621753, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/828e5b3ed9c38c896495ae9af6f9d7101f9b2ebd_img_0_6e4b0", + "gallery_uuids": [ + "legacy/828e5b3ed9c38c896495ae9af6f9d7101f9b2ebd_img_0_6e4b0", + "legacy/828e5b3ed9c38c896495ae9af6f9d7101f9b2ebd_img_1_81755", + "legacy/828e5b3ed9c38c896495ae9af6f9d7101f9b2ebd_img_2_9d16f", + "legacy/828e5b3ed9c38c896495ae9af6f9d7101f9b2ebd_img_3_5c2d0", + "legacy/828e5b3ed9c38c896495ae9af6f9d7101f9b2ebd_img_4_ee397", + "legacy/828e5b3ed9c38c896495ae9af6f9d7101f9b2ebd_img_5_162d1", + "legacy/828e5b3ed9c38c896495ae9af6f9d7101f9b2ebd_img_6_fed60", + "legacy/828e5b3ed9c38c896495ae9af6f9d7101f9b2ebd_img_7_72817" + ], + "gallery_urls": [ + "https://www.compass.com/m/828e5b3ed9c38c896495ae9af6f9d7101f9b2ebd_img_0_6e4b0/640x480.jpg", + "https://www.compass.com/m/828e5b3ed9c38c896495ae9af6f9d7101f9b2ebd_img_1_81755/640x480.jpg", + "https://www.compass.com/m/828e5b3ed9c38c896495ae9af6f9d7101f9b2ebd_img_2_9d16f/640x480.jpg", + "https://www.compass.com/m/828e5b3ed9c38c896495ae9af6f9d7101f9b2ebd_img_3_5c2d0/640x480.jpg", + "https://www.compass.com/m/828e5b3ed9c38c896495ae9af6f9d7101f9b2ebd_img_4_ee397/640x480.jpg", + "https://www.compass.com/m/828e5b3ed9c38c896495ae9af6f9d7101f9b2ebd_img_5_162d1/640x480.jpg", + "https://www.compass.com/m/828e5b3ed9c38c896495ae9af6f9d7101f9b2ebd_img_6_fed60/640x480.jpg", + "https://www.compass.com/m/828e5b3ed9c38c896495ae9af6f9d7101f9b2ebd_img_7_72817/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/17265-Avenida-De-La-Herradura-Pacific-Palisades-CA-90272/1JNRIG_pid/" + }, + { + "listing_id": "2103425622016055345", + "slug": "1820-rising-glen-rd-west-hollywood-ca-90069", + "title": "$30,000", + "price": 30000, + "is_rent": true, + "street": "1820 Rising Glen Road", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90069", + "beds": 3, + "baths": 3.0, + "baths_full": 3, + "baths_half": null, + "sqft": 2750, + "latitude": 34.1048348, + "longitude": -118.3829457, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "legacy/ffa5f467dd114294dcd22ee88882eaa162812e36_img_0_3ad8b", + "gallery_uuids": [ + "legacy/ffa5f467dd114294dcd22ee88882eaa162812e36_img_0_3ad8b", + "legacy/ffa5f467dd114294dcd22ee88882eaa162812e36_img_1_3ab32", + "legacy/ffa5f467dd114294dcd22ee88882eaa162812e36_img_2_cb917", + "legacy/ffa5f467dd114294dcd22ee88882eaa162812e36_img_3_ac146", + "legacy/ffa5f467dd114294dcd22ee88882eaa162812e36_img_4_07e4e", + "legacy/ffa5f467dd114294dcd22ee88882eaa162812e36_img_5_e4f40", + "legacy/ffa5f467dd114294dcd22ee88882eaa162812e36_img_6_af6b6", + "legacy/ffa5f467dd114294dcd22ee88882eaa162812e36_img_7_a71d7" + ], + "gallery_urls": [ + "https://www.compass.com/m/ffa5f467dd114294dcd22ee88882eaa162812e36_img_0_3ad8b/640x480.jpg", + "https://www.compass.com/m/ffa5f467dd114294dcd22ee88882eaa162812e36_img_1_3ab32/640x480.jpg", + "https://www.compass.com/m/ffa5f467dd114294dcd22ee88882eaa162812e36_img_2_cb917/640x480.jpg", + "https://www.compass.com/m/ffa5f467dd114294dcd22ee88882eaa162812e36_img_3_ac146/640x480.jpg", + "https://www.compass.com/m/ffa5f467dd114294dcd22ee88882eaa162812e36_img_4_07e4e/640x480.jpg", + "https://www.compass.com/m/ffa5f467dd114294dcd22ee88882eaa162812e36_img_5_e4f40/640x480.jpg", + "https://www.compass.com/m/ffa5f467dd114294dcd22ee88882eaa162812e36_img_6_af6b6/640x480.jpg", + "https://www.compass.com/m/ffa5f467dd114294dcd22ee88882eaa162812e36_img_7_a71d7/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/1820-Rising-Glen-Rd-West-Hollywood-CA-90069/2103425622016055345_lid/" + }, + { + "listing_id": "2103259719743596577", + "slug": "6200-jamieson-ave-encino-ca-91316", + "title": "$5,000", + "price": 5000, + "is_rent": true, + "street": "6200 Jamieson Avenue", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "91316", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1531, + "latitude": 34.182159, + "longitude": -118.5210405, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "legacy/7c12637a30e563f342083949fdb84e36f720c00b_img_0_6f9bc", + "gallery_uuids": [ + "legacy/7c12637a30e563f342083949fdb84e36f720c00b_img_0_6f9bc", + "legacy/7c12637a30e563f342083949fdb84e36f720c00b_img_1_6b2a4", + "legacy/7c12637a30e563f342083949fdb84e36f720c00b_img_2_2e5f4", + "legacy/7c12637a30e563f342083949fdb84e36f720c00b_img_3_90b49", + "legacy/7c12637a30e563f342083949fdb84e36f720c00b_img_4_a3667", + "legacy/7c12637a30e563f342083949fdb84e36f720c00b_img_5_39664", + "legacy/7c12637a30e563f342083949fdb84e36f720c00b_img_6_e91b4", + "legacy/7c12637a30e563f342083949fdb84e36f720c00b_img_7_92767" + ], + "gallery_urls": [ + "https://www.compass.com/m/7c12637a30e563f342083949fdb84e36f720c00b_img_0_6f9bc/640x480.jpg", + "https://www.compass.com/m/7c12637a30e563f342083949fdb84e36f720c00b_img_1_6b2a4/640x480.jpg", + "https://www.compass.com/m/7c12637a30e563f342083949fdb84e36f720c00b_img_2_2e5f4/640x480.jpg", + "https://www.compass.com/m/7c12637a30e563f342083949fdb84e36f720c00b_img_3_90b49/640x480.jpg", + "https://www.compass.com/m/7c12637a30e563f342083949fdb84e36f720c00b_img_4_a3667/640x480.jpg", + "https://www.compass.com/m/7c12637a30e563f342083949fdb84e36f720c00b_img_5_39664/640x480.jpg", + "https://www.compass.com/m/7c12637a30e563f342083949fdb84e36f720c00b_img_6_e91b4/640x480.jpg", + "https://www.compass.com/m/7c12637a30e563f342083949fdb84e36f720c00b_img_7_92767/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/6200-Jamieson-Ave-Encino-CA-91316/1IW7M5_pid/" + }, + { + "listing_id": "1977806263674661849", + "slug": "2729-glassell-st-unit-4-los-angeles-ca-90026", + "title": "$2,150", + "price": 2150, + "is_rent": true, + "street": "2729 Glassell Street, Unit 4", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90026", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 34.0712426, + "longitude": -118.2780372, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/0b85604bb64dc07d1abb254fa39e058b02f0180a_img_0_49867", + "gallery_uuids": [ + "legacy/0b85604bb64dc07d1abb254fa39e058b02f0180a_img_0_49867", + "legacy/0b85604bb64dc07d1abb254fa39e058b02f0180a_img_1_143cc", + "legacy/0b85604bb64dc07d1abb254fa39e058b02f0180a_img_2_31272", + "legacy/0b85604bb64dc07d1abb254fa39e058b02f0180a_img_3_f5319", + "legacy/0b85604bb64dc07d1abb254fa39e058b02f0180a_img_4_d6de7", + "legacy/0b85604bb64dc07d1abb254fa39e058b02f0180a_img_5_00eb8", + "legacy/0b85604bb64dc07d1abb254fa39e058b02f0180a_img_6_2ff8c", + "legacy/0b85604bb64dc07d1abb254fa39e058b02f0180a_img_7_c92cf" + ], + "gallery_urls": [ + "https://www.compass.com/m/0b85604bb64dc07d1abb254fa39e058b02f0180a_img_0_49867/640x480.jpg", + "https://www.compass.com/m/0b85604bb64dc07d1abb254fa39e058b02f0180a_img_1_143cc/640x480.jpg", + "https://www.compass.com/m/0b85604bb64dc07d1abb254fa39e058b02f0180a_img_2_31272/640x480.jpg", + "https://www.compass.com/m/0b85604bb64dc07d1abb254fa39e058b02f0180a_img_3_f5319/640x480.jpg", + "https://www.compass.com/m/0b85604bb64dc07d1abb254fa39e058b02f0180a_img_4_d6de7/640x480.jpg", + "https://www.compass.com/m/0b85604bb64dc07d1abb254fa39e058b02f0180a_img_5_00eb8/640x480.jpg", + "https://www.compass.com/m/0b85604bb64dc07d1abb254fa39e058b02f0180a_img_6_2ff8c/640x480.jpg", + "https://www.compass.com/m/0b85604bb64dc07d1abb254fa39e058b02f0180a_img_7_c92cf/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/2729-Glassell-St-Unit-4-Los-Angeles-CA-90026/21KK6Z_pid/" + }, + { + "listing_id": "2103206956393888465", + "slug": "1206-n-beachwood-dr-los-angeles-ca-90038", + "title": "$3,600", + "price": 3600, + "is_rent": true, + "street": "1206 North Beachwood Drive", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90038", + "beds": 3, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1300, + "latitude": 34.0927871, + "longitude": -118.3209715, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "legacy/27c1aadcb8d16cbad1fe9bf9d655fed3275ef094_img_0_dae76", + "gallery_uuids": [ + "legacy/27c1aadcb8d16cbad1fe9bf9d655fed3275ef094_img_0_dae76", + "legacy/27c1aadcb8d16cbad1fe9bf9d655fed3275ef094_img_1_84bd2", + "legacy/27c1aadcb8d16cbad1fe9bf9d655fed3275ef094_img_2_6949a", + "legacy/27c1aadcb8d16cbad1fe9bf9d655fed3275ef094_img_3_13d3a", + "legacy/27c1aadcb8d16cbad1fe9bf9d655fed3275ef094_img_4_5ce2b", + "legacy/27c1aadcb8d16cbad1fe9bf9d655fed3275ef094_img_5_a74ca", + "legacy/27c1aadcb8d16cbad1fe9bf9d655fed3275ef094_img_6_b8e23", + "legacy/27c1aadcb8d16cbad1fe9bf9d655fed3275ef094_img_7_a2b44" + ], + "gallery_urls": [ + "https://www.compass.com/m/27c1aadcb8d16cbad1fe9bf9d655fed3275ef094_img_0_dae76/640x480.jpg", + "https://www.compass.com/m/27c1aadcb8d16cbad1fe9bf9d655fed3275ef094_img_1_84bd2/640x480.jpg", + "https://www.compass.com/m/27c1aadcb8d16cbad1fe9bf9d655fed3275ef094_img_2_6949a/640x480.jpg", + "https://www.compass.com/m/27c1aadcb8d16cbad1fe9bf9d655fed3275ef094_img_3_13d3a/640x480.jpg", + "https://www.compass.com/m/27c1aadcb8d16cbad1fe9bf9d655fed3275ef094_img_4_5ce2b/640x480.jpg", + "https://www.compass.com/m/27c1aadcb8d16cbad1fe9bf9d655fed3275ef094_img_5_a74ca/640x480.jpg", + "https://www.compass.com/m/27c1aadcb8d16cbad1fe9bf9d655fed3275ef094_img_6_b8e23/640x480.jpg", + "https://www.compass.com/m/27c1aadcb8d16cbad1fe9bf9d655fed3275ef094_img_7_a2b44/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/1206-N-Beachwood-Dr-Los-Angeles-CA-90038/1K6GTV_pid/" + }, + { + "listing_id": "2103484049119892281", + "slug": "15719-w-hartsook-st-encino-ca-91436", + "title": "$15,500", + "price": 15500, + "is_rent": true, + "street": "15719 West Hartsook Street", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "91436", + "beds": 4, + "baths": 5.0, + "baths_full": 4, + "baths_half": null, + "sqft": 3426, + "latitude": 34.1641774, + "longitude": -118.4757237, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "legacy/696b8654843812cca3b0c99013c12beed99415c0_img_0_17308", + "gallery_uuids": [ + "legacy/696b8654843812cca3b0c99013c12beed99415c0_img_0_17308", + "legacy/696b8654843812cca3b0c99013c12beed99415c0_img_1_b0e96", + "legacy/696b8654843812cca3b0c99013c12beed99415c0_img_2_d4966", + "legacy/696b8654843812cca3b0c99013c12beed99415c0_img_3_85767", + "legacy/696b8654843812cca3b0c99013c12beed99415c0_img_4_a2e19", + "legacy/696b8654843812cca3b0c99013c12beed99415c0_img_5_c4db6", + "legacy/696b8654843812cca3b0c99013c12beed99415c0_img_6_d3698", + "legacy/696b8654843812cca3b0c99013c12beed99415c0_img_7_c7efb" + ], + "gallery_urls": [ + "https://www.compass.com/m/696b8654843812cca3b0c99013c12beed99415c0_img_0_17308/640x480.jpg", + "https://www.compass.com/m/696b8654843812cca3b0c99013c12beed99415c0_img_1_b0e96/640x480.jpg", + "https://www.compass.com/m/696b8654843812cca3b0c99013c12beed99415c0_img_2_d4966/640x480.jpg", + "https://www.compass.com/m/696b8654843812cca3b0c99013c12beed99415c0_img_3_85767/640x480.jpg", + "https://www.compass.com/m/696b8654843812cca3b0c99013c12beed99415c0_img_4_a2e19/640x480.jpg", + "https://www.compass.com/m/696b8654843812cca3b0c99013c12beed99415c0_img_5_c4db6/640x480.jpg", + "https://www.compass.com/m/696b8654843812cca3b0c99013c12beed99415c0_img_6_d3698/640x480.jpg", + "https://www.compass.com/m/696b8654843812cca3b0c99013c12beed99415c0_img_7_c7efb/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/15719-W-Hartsook-St-Encino-CA-91436/222Q6G_pid/" + }, + { + "listing_id": "2054481027808733073", + "slug": "10515-whipple-st-toluca-lake-ca-91602", + "title": "$20,000", + "price": 20000, + "is_rent": true, + "street": "10515 Whipple Street", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "91602", + "beds": 5, + "baths": 6.0, + "baths_full": 5, + "baths_half": null, + "sqft": 4591, + "latitude": 34.1481154, + "longitude": -118.3598459, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "New" + ], + "hero_uuid": "legacy/2bcd389f2da87f89a52726e029fdb4dd5d1a0079_img_0_c796b", + "gallery_uuids": [ + "legacy/2bcd389f2da87f89a52726e029fdb4dd5d1a0079_img_0_c796b", + "legacy/2bcd389f2da87f89a52726e029fdb4dd5d1a0079_img_1_d8d09", + "legacy/2bcd389f2da87f89a52726e029fdb4dd5d1a0079_img_2_1a318", + "legacy/2bcd389f2da87f89a52726e029fdb4dd5d1a0079_img_3_33ad5", + "legacy/2bcd389f2da87f89a52726e029fdb4dd5d1a0079_img_4_09e9e", + "legacy/2bcd389f2da87f89a52726e029fdb4dd5d1a0079_img_5_79710", + "legacy/2bcd389f2da87f89a52726e029fdb4dd5d1a0079_img_6_747e8", + "legacy/2bcd389f2da87f89a52726e029fdb4dd5d1a0079_img_7_089c5" + ], + "gallery_urls": [ + "https://www.compass.com/m/2bcd389f2da87f89a52726e029fdb4dd5d1a0079_img_0_c796b/640x480.jpg", + "https://www.compass.com/m/2bcd389f2da87f89a52726e029fdb4dd5d1a0079_img_1_d8d09/640x480.jpg", + "https://www.compass.com/m/2bcd389f2da87f89a52726e029fdb4dd5d1a0079_img_2_1a318/640x480.jpg", + "https://www.compass.com/m/2bcd389f2da87f89a52726e029fdb4dd5d1a0079_img_3_33ad5/640x480.jpg", + "https://www.compass.com/m/2bcd389f2da87f89a52726e029fdb4dd5d1a0079_img_4_09e9e/640x480.jpg", + "https://www.compass.com/m/2bcd389f2da87f89a52726e029fdb4dd5d1a0079_img_5_79710/640x480.jpg", + "https://www.compass.com/m/2bcd389f2da87f89a52726e029fdb4dd5d1a0079_img_6_747e8/640x480.jpg", + "https://www.compass.com/m/2bcd389f2da87f89a52726e029fdb4dd5d1a0079_img_7_089c5/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/10515-Whipple-St-Toluca-Lake-CA-91602/1L4KFX_pid/" + }, + { + "listing_id": "2100310813146184641", + "slug": "2410-abbot-kinney-blvd-venice-ca-90291", + "title": "$2,800", + "price": 2800, + "is_rent": true, + "street": "2410 Abbot Kinney Boulevard", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90291", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": null, + "latitude": 33.9883457, + "longitude": -118.4572394, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/3518b25f627e8ded1628a8fc0bb59304171a5c40_img_0_b8e20", + "gallery_uuids": [ + "legacy/3518b25f627e8ded1628a8fc0bb59304171a5c40_img_0_b8e20", + "legacy/3518b25f627e8ded1628a8fc0bb59304171a5c40_img_1_15b0c", + "legacy/3518b25f627e8ded1628a8fc0bb59304171a5c40_img_2_01ce8", + "legacy/3518b25f627e8ded1628a8fc0bb59304171a5c40_img_3_1fa6b", + "legacy/3518b25f627e8ded1628a8fc0bb59304171a5c40_img_4_6a0b7", + "legacy/3518b25f627e8ded1628a8fc0bb59304171a5c40_img_5_f312a", + "legacy/3518b25f627e8ded1628a8fc0bb59304171a5c40_img_6_df3e3", + "legacy/3518b25f627e8ded1628a8fc0bb59304171a5c40_img_7_d017e" + ], + "gallery_urls": [ + "https://www.compass.com/m/3518b25f627e8ded1628a8fc0bb59304171a5c40_img_0_b8e20/640x480.jpg", + "https://www.compass.com/m/3518b25f627e8ded1628a8fc0bb59304171a5c40_img_1_15b0c/640x480.jpg", + "https://www.compass.com/m/3518b25f627e8ded1628a8fc0bb59304171a5c40_img_2_01ce8/640x480.jpg", + "https://www.compass.com/m/3518b25f627e8ded1628a8fc0bb59304171a5c40_img_3_1fa6b/640x480.jpg", + "https://www.compass.com/m/3518b25f627e8ded1628a8fc0bb59304171a5c40_img_4_6a0b7/640x480.jpg", + "https://www.compass.com/m/3518b25f627e8ded1628a8fc0bb59304171a5c40_img_5_f312a/640x480.jpg", + "https://www.compass.com/m/3518b25f627e8ded1628a8fc0bb59304171a5c40_img_6_df3e3/640x480.jpg", + "https://www.compass.com/m/3518b25f627e8ded1628a8fc0bb59304171a5c40_img_7_d017e/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/2410-Abbot-Kinney-Blvd-Venice-CA-90291/1JU6Z6_pid/" + }, + { + "listing_id": "2101198770811457321", + "slug": "1325-n-fuller-ave-unit-1-los-angeles-ca-90046", + "title": "$2,395", + "price": 2395, + "is_rent": true, + "street": "1325 North Fuller Avenue, Unit 1", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90046", + "beds": 2, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 900, + "latitude": 34.095085, + "longitude": -118.349861, + "status": "for-rent", + "badges": [ + "Listed By Compass", + "Open: 5/12 12:00PM - 12:30PM" + ], + "hero_uuid": "legacy/dfdc94e3b1087aa760e19f71aefa79119082c8b6_img_0_3e7c4", + "gallery_uuids": [ + "legacy/dfdc94e3b1087aa760e19f71aefa79119082c8b6_img_0_3e7c4", + "legacy/dfdc94e3b1087aa760e19f71aefa79119082c8b6_img_1_7a3e4", + "legacy/dfdc94e3b1087aa760e19f71aefa79119082c8b6_img_2_ea4b6", + "legacy/dfdc94e3b1087aa760e19f71aefa79119082c8b6_img_3_1038a", + "legacy/dfdc94e3b1087aa760e19f71aefa79119082c8b6_img_4_ddae7", + "legacy/dfdc94e3b1087aa760e19f71aefa79119082c8b6_img_5_d505d", + "legacy/dfdc94e3b1087aa760e19f71aefa79119082c8b6_img_6_c2018", + "legacy/dfdc94e3b1087aa760e19f71aefa79119082c8b6_img_7_675da" + ], + "gallery_urls": [ + "https://www.compass.com/m/dfdc94e3b1087aa760e19f71aefa79119082c8b6_img_0_3e7c4/640x480.jpg", + "https://www.compass.com/m/dfdc94e3b1087aa760e19f71aefa79119082c8b6_img_1_7a3e4/640x480.jpg", + "https://www.compass.com/m/dfdc94e3b1087aa760e19f71aefa79119082c8b6_img_2_ea4b6/640x480.jpg", + "https://www.compass.com/m/dfdc94e3b1087aa760e19f71aefa79119082c8b6_img_3_1038a/640x480.jpg", + "https://www.compass.com/m/dfdc94e3b1087aa760e19f71aefa79119082c8b6_img_4_ddae7/640x480.jpg", + "https://www.compass.com/m/dfdc94e3b1087aa760e19f71aefa79119082c8b6_img_5_d505d/640x480.jpg", + "https://www.compass.com/m/dfdc94e3b1087aa760e19f71aefa79119082c8b6_img_6_c2018/640x480.jpg", + "https://www.compass.com/m/dfdc94e3b1087aa760e19f71aefa79119082c8b6_img_7_675da/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/1325-N-Fuller-Ave-Unit-1-Los-Angeles-CA-90046/27H16A_pid/" + }, + { + "listing_id": "2098141031780939441", + "slug": "15438-mulholland-dr-los-angeles-ca-90077", + "title": "$25,000", + "price": 25000, + "is_rent": true, + "street": "15438 Mulholland Drive", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90077", + "beds": 4, + "baths": 5.0, + "baths_full": 5, + "baths_half": null, + "sqft": 4276, + "latitude": 34.1281131, + "longitude": -118.4682007, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/c6da8f102f85787f250d4ea08f9d4848d4c227f6_img_0_bcb48", + "gallery_uuids": [ + "legacy/c6da8f102f85787f250d4ea08f9d4848d4c227f6_img_0_bcb48", + "legacy/c6da8f102f85787f250d4ea08f9d4848d4c227f6_img_1_a33d6", + "legacy/c6da8f102f85787f250d4ea08f9d4848d4c227f6_img_2_40a58", + "legacy/c6da8f102f85787f250d4ea08f9d4848d4c227f6_img_3_778ea", + "legacy/c6da8f102f85787f250d4ea08f9d4848d4c227f6_img_4_d1a3e", + "legacy/c6da8f102f85787f250d4ea08f9d4848d4c227f6_img_5_4bb0a", + "legacy/c6da8f102f85787f250d4ea08f9d4848d4c227f6_img_6_96794", + "legacy/c6da8f102f85787f250d4ea08f9d4848d4c227f6_img_7_2eb67" + ], + "gallery_urls": [ + "https://www.compass.com/m/c6da8f102f85787f250d4ea08f9d4848d4c227f6_img_0_bcb48/640x480.jpg", + "https://www.compass.com/m/c6da8f102f85787f250d4ea08f9d4848d4c227f6_img_1_a33d6/640x480.jpg", + "https://www.compass.com/m/c6da8f102f85787f250d4ea08f9d4848d4c227f6_img_2_40a58/640x480.jpg", + "https://www.compass.com/m/c6da8f102f85787f250d4ea08f9d4848d4c227f6_img_3_778ea/640x480.jpg", + "https://www.compass.com/m/c6da8f102f85787f250d4ea08f9d4848d4c227f6_img_4_d1a3e/640x480.jpg", + "https://www.compass.com/m/c6da8f102f85787f250d4ea08f9d4848d4c227f6_img_5_4bb0a/640x480.jpg", + "https://www.compass.com/m/c6da8f102f85787f250d4ea08f9d4848d4c227f6_img_6_96794/640x480.jpg", + "https://www.compass.com/m/c6da8f102f85787f250d4ea08f9d4848d4c227f6_img_7_2eb67/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/15438-Mulholland-Dr-Los-Angeles-CA-90077/1KHQST_pid/" + }, + { + "listing_id": "2099729084471069345", + "slug": "214-6th-ave-venice-ca-90291", + "title": "$2,200", + "price": 2200, + "is_rent": true, + "street": "214 6th Avenue", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90291", + "beds": null, + "baths": null, + "baths_full": null, + "baths_half": null, + "sqft": 300, + "latitude": 34.0004645, + "longitude": -118.4730188, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/3fdd3deccf85f4af9af9bf09adc0dec3543d8ebc_img_0_b9436", + "gallery_uuids": [ + "legacy/3fdd3deccf85f4af9af9bf09adc0dec3543d8ebc_img_0_b9436", + "legacy/3fdd3deccf85f4af9af9bf09adc0dec3543d8ebc_img_1_4bd2b", + "legacy/3fdd3deccf85f4af9af9bf09adc0dec3543d8ebc_img_2_96c9f", + "legacy/3fdd3deccf85f4af9af9bf09adc0dec3543d8ebc_img_3_e0d51", + "legacy/3fdd3deccf85f4af9af9bf09adc0dec3543d8ebc_img_4_d54cc", + "legacy/3fdd3deccf85f4af9af9bf09adc0dec3543d8ebc_img_5_e696b", + "legacy/3fdd3deccf85f4af9af9bf09adc0dec3543d8ebc_img_6_435b0", + "legacy/3fdd3deccf85f4af9af9bf09adc0dec3543d8ebc_img_7_e2c07" + ], + "gallery_urls": [ + "https://www.compass.com/m/3fdd3deccf85f4af9af9bf09adc0dec3543d8ebc_img_0_b9436/640x480.jpg", + "https://www.compass.com/m/3fdd3deccf85f4af9af9bf09adc0dec3543d8ebc_img_1_4bd2b/640x480.jpg", + "https://www.compass.com/m/3fdd3deccf85f4af9af9bf09adc0dec3543d8ebc_img_2_96c9f/640x480.jpg", + "https://www.compass.com/m/3fdd3deccf85f4af9af9bf09adc0dec3543d8ebc_img_3_e0d51/640x480.jpg", + "https://www.compass.com/m/3fdd3deccf85f4af9af9bf09adc0dec3543d8ebc_img_4_d54cc/640x480.jpg", + "https://www.compass.com/m/3fdd3deccf85f4af9af9bf09adc0dec3543d8ebc_img_5_e696b/640x480.jpg", + "https://www.compass.com/m/3fdd3deccf85f4af9af9bf09adc0dec3543d8ebc_img_6_435b0/640x480.jpg", + "https://www.compass.com/m/3fdd3deccf85f4af9af9bf09adc0dec3543d8ebc_img_7_e2c07/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/214-6th-Ave-Venice-CA-90291/1KD9U3_pid/" + }, + { + "listing_id": "2101603950950844857", + "slug": "23-ironsides-st-marina-del-rey-ca-90292", + "title": "$5,950", + "price": 5950, + "is_rent": true, + "street": "23 Ironsides Street", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90292", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1350, + "latitude": 33.97484, + "longitude": -118.46226, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/1d3849064953ee9146dd5159e9f3e682d981131c_img_0_17271", + "gallery_uuids": [ + "legacy/1d3849064953ee9146dd5159e9f3e682d981131c_img_0_17271", + "legacy/1d3849064953ee9146dd5159e9f3e682d981131c_img_1_ec99e", + "legacy/1d3849064953ee9146dd5159e9f3e682d981131c_img_2_032cc", + "legacy/1d3849064953ee9146dd5159e9f3e682d981131c_img_3_edb1b", + "legacy/1d3849064953ee9146dd5159e9f3e682d981131c_img_4_88326", + "legacy/1d3849064953ee9146dd5159e9f3e682d981131c_img_5_cbbf0", + "legacy/1d3849064953ee9146dd5159e9f3e682d981131c_img_6_dbb31", + "legacy/1d3849064953ee9146dd5159e9f3e682d981131c_img_7_4b7e5" + ], + "gallery_urls": [ + "https://www.compass.com/m/1d3849064953ee9146dd5159e9f3e682d981131c_img_0_17271/640x480.jpg", + "https://www.compass.com/m/1d3849064953ee9146dd5159e9f3e682d981131c_img_1_ec99e/640x480.jpg", + "https://www.compass.com/m/1d3849064953ee9146dd5159e9f3e682d981131c_img_2_032cc/640x480.jpg", + "https://www.compass.com/m/1d3849064953ee9146dd5159e9f3e682d981131c_img_3_edb1b/640x480.jpg", + "https://www.compass.com/m/1d3849064953ee9146dd5159e9f3e682d981131c_img_4_88326/640x480.jpg", + "https://www.compass.com/m/1d3849064953ee9146dd5159e9f3e682d981131c_img_5_cbbf0/640x480.jpg", + "https://www.compass.com/m/1d3849064953ee9146dd5159e9f3e682d981131c_img_6_dbb31/640x480.jpg", + "https://www.compass.com/m/1d3849064953ee9146dd5159e9f3e682d981131c_img_7_4b7e5/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/23-Ironsides-St-Marina-Del-Rey-CA-90292/1KPBNY_pid/" + }, + { + "listing_id": "2099114825093631745", + "slug": "8743-hollywood-hills-rd-los-angeles-ca-90046", + "title": "$6,950", + "price": 6950, + "is_rent": true, + "street": "8743 Hollywood Hills Road", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90046", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1402, + "latitude": 34.1135208, + "longitude": -118.3858438, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/60a6648eb9f269aeee48aae9fda79a871db4e8e4_img_0_a64a5", + "gallery_uuids": [ + "legacy/60a6648eb9f269aeee48aae9fda79a871db4e8e4_img_0_a64a5", + "legacy/60a6648eb9f269aeee48aae9fda79a871db4e8e4_img_1_b6252", + "legacy/60a6648eb9f269aeee48aae9fda79a871db4e8e4_img_2_0f34c", + "legacy/60a6648eb9f269aeee48aae9fda79a871db4e8e4_img_3_7b1f0", + "legacy/60a6648eb9f269aeee48aae9fda79a871db4e8e4_img_4_86b40", + "legacy/60a6648eb9f269aeee48aae9fda79a871db4e8e4_img_5_fd068", + "legacy/60a6648eb9f269aeee48aae9fda79a871db4e8e4_img_6_d4be6", + "legacy/60a6648eb9f269aeee48aae9fda79a871db4e8e4_img_7_cbdeb" + ], + "gallery_urls": [ + "https://www.compass.com/m/60a6648eb9f269aeee48aae9fda79a871db4e8e4_img_0_a64a5/640x480.jpg", + "https://www.compass.com/m/60a6648eb9f269aeee48aae9fda79a871db4e8e4_img_1_b6252/640x480.jpg", + "https://www.compass.com/m/60a6648eb9f269aeee48aae9fda79a871db4e8e4_img_2_0f34c/640x480.jpg", + "https://www.compass.com/m/60a6648eb9f269aeee48aae9fda79a871db4e8e4_img_3_7b1f0/640x480.jpg", + "https://www.compass.com/m/60a6648eb9f269aeee48aae9fda79a871db4e8e4_img_4_86b40/640x480.jpg", + "https://www.compass.com/m/60a6648eb9f269aeee48aae9fda79a871db4e8e4_img_5_fd068/640x480.jpg", + "https://www.compass.com/m/60a6648eb9f269aeee48aae9fda79a871db4e8e4_img_6_d4be6/640x480.jpg", + "https://www.compass.com/m/60a6648eb9f269aeee48aae9fda79a871db4e8e4_img_7_cbdeb/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/8743-Hollywood-Hills-Rd-Los-Angeles-CA-90046/1IGTY3_pid/" + }, + { + "listing_id": "2099379035467802521", + "slug": "4080-via-marisol-unit-334-los-angeles-ca-90042", + "title": "$3,200", + "price": 3200, + "is_rent": true, + "street": "4080 Via Marisol, Unit 334", + "neighborhood": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90042", + "beds": 2, + "baths": 2.0, + "baths_full": 2, + "baths_half": null, + "sqft": 1100, + "latitude": 34.093074, + "longitude": -118.184444, + "status": "for-rent", + "badges": [ + "Listed By Compass" + ], + "hero_uuid": "legacy/ec243873d079eef0983627f3346cbb9ea39b13a2_img_0_19574", + "gallery_uuids": [ + "legacy/ec243873d079eef0983627f3346cbb9ea39b13a2_img_0_19574", + "legacy/ec243873d079eef0983627f3346cbb9ea39b13a2_img_1_fc797", + "legacy/ec243873d079eef0983627f3346cbb9ea39b13a2_img_2_09a9d", + "legacy/ec243873d079eef0983627f3346cbb9ea39b13a2_img_3_10d09", + "legacy/ec243873d079eef0983627f3346cbb9ea39b13a2_img_4_cc263", + "legacy/ec243873d079eef0983627f3346cbb9ea39b13a2_img_5_01e5c", + "legacy/ec243873d079eef0983627f3346cbb9ea39b13a2_img_6_800e2", + "legacy/ec243873d079eef0983627f3346cbb9ea39b13a2_img_7_4bb59" + ], + "gallery_urls": [ + "https://www.compass.com/m/ec243873d079eef0983627f3346cbb9ea39b13a2_img_0_19574/640x480.jpg", + "https://www.compass.com/m/ec243873d079eef0983627f3346cbb9ea39b13a2_img_1_fc797/640x480.jpg", + "https://www.compass.com/m/ec243873d079eef0983627f3346cbb9ea39b13a2_img_2_09a9d/640x480.jpg", + "https://www.compass.com/m/ec243873d079eef0983627f3346cbb9ea39b13a2_img_3_10d09/640x480.jpg", + "https://www.compass.com/m/ec243873d079eef0983627f3346cbb9ea39b13a2_img_4_cc263/640x480.jpg", + "https://www.compass.com/m/ec243873d079eef0983627f3346cbb9ea39b13a2_img_5_01e5c/640x480.jpg", + "https://www.compass.com/m/ec243873d079eef0983627f3346cbb9ea39b13a2_img_6_800e2/640x480.jpg", + "https://www.compass.com/m/ec243873d079eef0983627f3346cbb9ea39b13a2_img_7_4bb59/640x480.jpg" + ], + "source_city": "rent_la", + "detail_url": "https://www.compass.com/homedetails/4080-Via-Marisol-Unit-334-Los-Angeles-CA-90042/2099379035467802521_lid/" + } +] \ No newline at end of file diff --git a/sites/compass/migrate_seed.py b/sites/compass/migrate_seed.py new file mode 100644 index 00000000..145a3b1e --- /dev/null +++ b/sites/compass/migrate_seed.py @@ -0,0 +1,56 @@ +#!/usr/bin/env python3 +"""Rebuild the Compass seed from tracked, source-backed records after asset fetch. + +This only replaces instance_seed/compass.db, never a live user's runtime DB. +The original asset contains generated external facts and an older schema. +""" +import argparse +import os +from pathlib import Path +import subprocess +import sqlite3 +import sys +import tempfile + +SITE=Path(__file__).resolve().parent + + +def canonical_copy(source, destination): + """Write tables and indexes in stable order, independent of ORM object hashes.""" + with sqlite3.connect(source) as original, sqlite3.connect(destination) as output: + tables = original.execute( + "SELECT name, sql FROM sqlite_master WHERE type='table' AND name NOT LIKE 'sqlite_%' ORDER BY name" + ).fetchall() + for name, ddl in tables: + output.execute(ddl) + quoted = '"' + name.replace('"', '""') + '"' + rows = original.execute(f"SELECT * FROM {quoted} ORDER BY rowid") + placeholders = ','.join('?' for _ in rows.description) + output.executemany(f"INSERT INTO {quoted} VALUES ({placeholders})", rows) + for (ddl,) in original.execute( + "SELECT sql FROM sqlite_master WHERE type IN ('index','trigger','view') AND sql IS NOT NULL ORDER BY type,name" + ): + output.execute(ddl) + violations = output.execute("PRAGMA foreign_key_check").fetchall() + if violations: + raise ValueError(f"Seed contains broken references: {violations}") + + +def rebuild(destination): + destination=Path(destination).resolve() + destination.parent.mkdir(parents=True,exist_ok=True) + with tempfile.TemporaryDirectory(prefix='compass-seed-') as directory: + temporary=Path(directory)/'compass.db' + env={**os.environ,'COMPASS_DATABASE_PATH':str(temporary),'COMPASS_SKIP_SEED':'0'} + subprocess.run([sys.executable,'-c','import app'],cwd=SITE,env=env,check=True) + # Atomic replacement prevents a failed rebuild from destroying a valid seed. + staged=destination.with_suffix('.db.tmp') + staged.unlink(missing_ok=True) + canonical_copy(temporary, staged) + staged.replace(destination) + print(f'Compass seed rebuilt: {destination.name}') + +if __name__=='__main__': + parser=argparse.ArgumentParser(description=__doc__) + parser.add_argument('database',nargs='?',default=str(SITE/'instance_seed/compass.db')) + rebuild(parser.parse_args().database) diff --git a/sites/compass/neighborhood_guides.json b/sites/compass/neighborhood_guides.json new file mode 100644 index 00000000..1ce3cde3 --- /dev/null +++ b/sites/compass/neighborhood_guides.json @@ -0,0 +1,6999 @@ +{ + "aspen": { + "name": "Aspen", + "source_url": "https://www.compass.com/neighborhood-guides/aspen/", + "retrieved_at": "2026-09-07T09:32:46.506Z", + "source_html_sha256": "b437b61c988b5524320a0aa7a0ee5e8faa919cee23e61665ff3887a96d4eb39a", + "headline": "Tour Aspen's most desirable areas to live.", + "description": "Nestled in the breathtaking Elk Mountains, Aspen, Colorado, offers a unique blend of luxury living and rugged wilderness. This vibrant town is famous for its world-class skiing, upscale dining, and thriving arts scene. Beyond the glamour, residents embrace an active outdoor lifestyle with endless opportunities for hiking, biking, and exploring.", + "hero": null, + "cards": [ + { + "name": "Aspen", + "source_url": "https://www.compass.com/neighborhood-guides/aspen/aspen/", + "image": "/static/external_cache/region-guide-405b6a17ae9d.webp" + }, + { + "name": "Basalt", + "source_url": "https://www.compass.com/neighborhood-guides/aspen/basalt/", + "image": "/static/external_cache/region-guide-ebb4f3080934.webp" + }, + { + "name": "Carbondale", + "source_url": "https://www.compass.com/neighborhood-guides/aspen/carbondale/", + "image": "/static/external_cache/region-guide-09babe3ef36b.webp" + }, + { + "name": "Old Snowmass", + "source_url": "https://www.compass.com/neighborhood-guides/aspen/old-snowmass/", + "image": "/static/external_cache/region-guide-9d0bc9a3dbb2.webp" + }, + { + "name": "Snowmass Village", + "source_url": "https://www.compass.com/neighborhood-guides/aspen/snowmass-village/", + "image": "/static/external_cache/region-guide-d84f5a5c6672.webp" + }, + { + "name": "Woody Creek", + "source_url": "https://www.compass.com/neighborhood-guides/aspen/woody-creek/", + "image": "/static/external_cache/region-guide-a973cac781bc.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Aspen Neighborhoods", + "links": [ + { + "name": "The West End Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/the-west-end-aspen-co/" + }, + { + "name": "Aspen Area Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/aspen-area-co/" + }, + { + "name": "Aspen Central Core Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/aspen-central-core-aspen-co/" + }, + { + "name": "Aspen East End Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/aspen-east-end-aspen-co/" + }, + { + "name": "Aspen Highlands Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/aspen-highlands-aspen-co/" + }, + { + "name": "Aspen Historic District Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/aspen-historic-district-aspen-co/" + }, + { + "name": "Aspen West End Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/aspen-west-end-aspen-co/" + }, + { + "name": "Cemetery Lane Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/cemetery-lane-aspen-co/" + }, + { + "name": "Centennial Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/centennial-aspen-co/" + }, + { + "name": "Downtown Aspen Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/downtown-aspen-aspen-co/" + }, + { + "name": "East Aspen Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/east-aspen-aspen-co/" + }, + { + "name": "Five Trees Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/five-trees-aspen-co/" + }, + { + "name": "Main Street Historic District Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/main-street-historic-district-aspen-co/" + }, + { + "name": "Meadowood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/meadowood-aspen-co/" + }, + { + "name": "Red Mountain Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/red-mountain-aspen-co/" + } + ] + }, + { + "title": "Homes in Nearby Aspen Cities", + "links": [ + { + "name": "Woody Creek Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/woody-creek-co/" + }, + { + "name": "Snowmass Village Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/snowmass-village-co/" + }, + { + "name": "Meredith Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/meredith-co/" + }, + { + "name": "Snowmass Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/snowmass-co/" + }, + { + "name": "Almont Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/almont-co/" + }, + { + "name": "Basalt Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/basalt-co/" + }, + { + "name": "Somerset Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/somerset-co/" + }, + { + "name": "Edwards Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/edwards-co/" + }, + { + "name": "Carbondale Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/carbondale-co/" + }, + { + "name": "Crested Butte Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/crested-butte-co/" + }, + { + "name": "Granite Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/granite-co/" + }, + { + "name": "Twin Lakes Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/twin-lakes-co/" + }, + { + "name": "Gypsum Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/gypsum-co/" + }, + { + "name": "Leadville Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/leadville-co/" + }, + { + "name": "Eagle Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/eagle-co/" + } + ] + }, + { + "title": "Homes in Nearby Aspen Zip Codes", + "links": [ + { + "name": "81612 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/aspen-co-81612/" + }, + { + "name": "81611 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/aspen-co-81611/" + }, + { + "name": "81656 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/woody-creek-co-81656/" + }, + { + "name": "81615 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/snowmass-village-co-81615/" + }, + { + "name": "81654 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/snowmass-co-81654/" + }, + { + "name": "81642 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/meredith-co-81642/" + }, + { + "name": "81210 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/almont-co-81210/" + }, + { + "name": "81621 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/basalt-co-81621/" + }, + { + "name": "81623 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/carbondale-co-81623/" + }, + { + "name": "81224 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/crested-butte-co-81224/" + }, + { + "name": "81251 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/twin-lakes-co-81251/" + }, + { + "name": "81211 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/buena-vista-co-81211/" + }, + { + "name": "81637 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/gypsum-co-81637/" + }, + { + "name": "80461 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/leadville-co-80461/" + }, + { + "name": "81225 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/crested-butte-co-81225/" + } + ] + } + ] + }, + "atlanta": { + "name": "Greater Atlanta", + "source_url": "https://www.compass.com/neighborhood-guides/atlanta/", + "retrieved_at": "2026-09-07T09:34:36.277Z", + "source_html_sha256": "48f50e50b784860f498bec2c8c396825dc4017d409120d542b913e464bd84336", + "headline": "Tour Greater Atlanta's most desirable areas to live.", + "description": "Greater Atlanta offers a distinctive blend of Southern charm and modern innovation, making it an exceptional place to live. Known for its cultural diversity, booming economy, and welcoming communities, the area delivers a high quality of life. Historic neighborhoods like Inman Park and Grant Park mix seamlessly with newer hubs like West Midtown and Old Fourth Ward. Thriving suburbs like Alpharetta, East Cobb, Dunwoody, and Brookhaven offer top schools, lively town centers, and a strong sense of community—all close to the city.", + "hero": "/static/external_cache/region-guide-8d2e72d35311.webp", + "cards": [ + { + "name": "Brookhaven", + "source_url": "https://www.compass.com/neighborhood-guides/atlanta/brookhaven/", + "image": "/static/external_cache/region-guide-9d3567e4ad52.webp" + }, + { + "name": "Buckhead", + "source_url": "https://www.compass.com/neighborhood-guides/atlanta/buckhead/", + "image": "/static/external_cache/region-guide-091b6c28663e.webp" + }, + { + "name": "Dunwoody", + "source_url": "https://www.compass.com/neighborhood-guides/atlanta/dunwoody/", + "image": "/static/external_cache/region-guide-fd74ea4b39b2.webp" + }, + { + "name": "East Cobb", + "source_url": "https://www.compass.com/neighborhood-guides/atlanta/east-cobb/", + "image": "/static/external_cache/region-guide-9b6a74244296.webp" + }, + { + "name": "Marietta", + "source_url": "https://www.compass.com/neighborhood-guides/atlanta/marietta/", + "image": "/static/external_cache/region-guide-f01d22a72075.webp" + }, + { + "name": "Midtown Atlanta", + "source_url": "https://www.compass.com/neighborhood-guides/atlanta/midtown/", + "image": "/static/external_cache/region-guide-a0daa337d884.webp" + }, + { + "name": "Morningside", + "source_url": "https://www.compass.com/neighborhood-guides/atlanta/morningside/", + "image": "/static/external_cache/region-guide-c987013fff52.webp" + }, + { + "name": "Roswell", + "source_url": "https://www.compass.com/neighborhood-guides/atlanta/roswell/", + "image": "/static/external_cache/region-guide-34d4ba4e3ed2.webp" + }, + { + "name": "Sandy Springs", + "source_url": "https://www.compass.com/neighborhood-guides/atlanta/sandy-springs/", + "image": "/static/external_cache/region-guide-91934630df32.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Greater Atlanta Neighborhoods", + "links": [ + { + "name": "805 Peachtree Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/805-peachtree-atlanta-ga/" + }, + { + "name": "Park Central Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/park-central-atlanta-ga/" + }, + { + "name": "Oakhurst Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/oakhurst-decatur-ga/" + }, + { + "name": "Norwood Manor Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/norwood-manor-atlanta-ga/" + }, + { + "name": "Memorial Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/memorial-park-atlanta-ga/" + }, + { + "name": "Lincoln Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lincoln-atlanta-ga/" + }, + { + "name": "Kirkwood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/kirkwood-atlanta-ga/" + }, + { + "name": "Green Acres Valley Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/green-acres-valley-atlanta-ga/" + }, + { + "name": "Gallery Condominiums Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/gallery-condominiums-atlanta-ga/" + }, + { + "name": "East Lake Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/east-lake-atlanta-ga/" + }, + { + "name": "East Ardley Road Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/east-ardley-road-atlanta-ga/" + }, + { + "name": "Channing Valley Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/channing-valley-atlanta-ga/" + }, + { + "name": "Brookwood Hills Conservation District Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/brookwood-hills-conservation-district-atlanta-ga/" + }, + { + "name": "Venetian Hills Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/venetian-hills-atlanta-ga/" + }, + { + "name": "Southwest Atlanta Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/southwest-atlanta-atlanta-ga/" + } + ] + }, + { + "title": "Homes in Nearby Greater Atlanta Cities", + "links": [ + { + "name": "South Fulton Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/south-fulton-ga/" + }, + { + "name": "Sandy Springs Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sandy-springs-ga/" + }, + { + "name": "Mableton Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mableton-ga/" + }, + { + "name": "Forest Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/forest-park-ga/" + }, + { + "name": "Decatur Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/decatur-ga/" + }, + { + "name": "Conley Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/conley-ga/" + }, + { + "name": "College Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/college-park-ga/" + }, + { + "name": "Brookhaven Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/brookhaven-ga/" + }, + { + "name": "Smyrna Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/smyrna-ga/" + }, + { + "name": "Avondale Estates Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/avondale-estates-ga/" + }, + { + "name": "Chamblee Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chamblee-ga/" + }, + { + "name": "Scottdale Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/scottdale-ga/" + }, + { + "name": "Union City Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/union-city-ga/" + }, + { + "name": "Red Oak Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/red-oak-ga/" + }, + { + "name": "Marietta Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/marietta-ga/" + } + ] + }, + { + "title": "Homes in Nearby Greater Atlanta Zip Codes", + "links": [ + { + "name": "30344 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/atlanta-ga-30344/" + }, + { + "name": "30339 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/atlanta-ga-30339/" + }, + { + "name": "30327 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/atlanta-ga-30327/" + }, + { + "name": "30324 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/atlanta-ga-30324/" + }, + { + "name": "30322 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/atlanta-ga-30322/" + }, + { + "name": "30317 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/atlanta-ga-30317/" + }, + { + "name": "30316 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/atlanta-ga-30316/" + }, + { + "name": "30314 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/atlanta-ga-30314/" + }, + { + "name": "30312 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/atlanta-ga-30312/" + }, + { + "name": "30310 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/atlanta-ga-30310/" + }, + { + "name": "30308 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/atlanta-ga-30308/" + }, + { + "name": "30307 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/atlanta-ga-30307/" + }, + { + "name": "30306 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/atlanta-ga-30306/" + }, + { + "name": "30305 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/atlanta-ga-30305/" + }, + { + "name": "30304 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/atlanta-ga-30304/" + } + ] + } + ] + }, + "austin": { + "name": "Austin & Central Texas", + "source_url": "https://www.compass.com/neighborhood-guides/austin/", + "retrieved_at": "2026-09-07T09:34:35.777Z", + "source_html_sha256": "92b845a0e4a63f596ef55139ee21db3efd52f664c8b093e553d758608ead86ed", + "headline": "Tour Austin & Central Texas' most desirable areas to live.", + "description": "As the capitol of Texas, Austin provides an unparalleled lifestyle for its residents. Austin is a popular relocation destination due to its thriving job market, lively culture, and proximity to outdoor recreational activities. With its expansive park system and unmatched live music scene, Austin is an exceptional place to call home, no matter your lifestyle.", + "hero": "/static/external_cache/region-guide-7ba06efa434d.webp", + "cards": [ + { + "name": "Barton Creek", + "source_url": "https://www.compass.com/neighborhood-guides/austin/barton-creek-austin-tx/", + "image": "/static/external_cache/region-guide-cf38c9f62d87.webp" + }, + { + "name": "Barton Hills", + "source_url": "https://www.compass.com/neighborhood-guides/austin/barton-hills/", + "image": "/static/external_cache/region-guide-e7577a2d9e62.webp" + }, + { + "name": "Downtown Austin", + "source_url": "https://www.compass.com/neighborhood-guides/austin/downtown-austin/", + "image": "/static/external_cache/region-guide-d121fc3206cf.webp" + }, + { + "name": "East Austin", + "source_url": "https://www.compass.com/neighborhood-guides/austin/east-austin-tx/", + "image": "/static/external_cache/region-guide-d62efcfe6176.webp" + }, + { + "name": "Great Hills", + "source_url": "https://www.compass.com/neighborhood-guides/austin/great-hills/", + "image": "/static/external_cache/region-guide-6a52d201a9bf.webp" + }, + { + "name": "Hyde Park", + "source_url": "https://www.compass.com/neighborhood-guides/austin/hyde-park/", + "image": "/static/external_cache/region-guide-4e91707a768c.webp" + }, + { + "name": "Lake Travis", + "source_url": "https://www.compass.com/neighborhood-guides/austin/lake-travis-leander-tx/", + "image": "/static/external_cache/region-guide-b7f08f56076d.webp" + }, + { + "name": "Mueller", + "source_url": "https://www.compass.com/neighborhood-guides/austin/mueller/", + "image": "/static/external_cache/region-guide-e6a2fb9aa6f0.webp" + }, + { + "name": "Northwest Hills", + "source_url": "https://www.compass.com/neighborhood-guides/austin/northwest-hills/", + "image": "/static/external_cache/region-guide-82addae9475f.webp" + }, + { + "name": "Tarrytown", + "source_url": "https://www.compass.com/neighborhood-guides/austin/tarrytown/", + "image": "/static/external_cache/region-guide-c13f3b6a71f4.webp" + }, + { + "name": "Travis Heights", + "source_url": "https://www.compass.com/neighborhood-guides/austin/travis-heights/", + "image": "/static/external_cache/region-guide-f5523c723829.webp" + }, + { + "name": "West Lake Hills", + "source_url": "https://www.compass.com/neighborhood-guides/austin/west-lake-hills/", + "image": "/static/external_cache/region-guide-ae2d8eefd43d.webp" + }, + { + "name": "Dripping Springs", + "source_url": "https://www.compass.com/neighborhood-guides/austin/dripping-springs-tx/", + "image": "/static/external_cache/region-guide-ea6cf5287a4c.webp" + }, + { + "name": "Lakeway", + "source_url": "https://www.compass.com/neighborhood-guides/austin/lakeway-tx/", + "image": "/static/external_cache/region-guide-2da1bd2c6d33.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Austin & Central Texas Neighborhoods", + "links": [ + { + "name": "Agave Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/agave-austin-tx/" + }, + { + "name": "Meadows at Trinity Crossing Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/meadows-at-trinity-crossing-austin-tx/" + }, + { + "name": "Lakes at Northtown Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lakes-at-northtown-pflugerville-tx/" + }, + { + "name": "Johnston Terrace Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/johnston-terrace-austin-tx/" + }, + { + "name": "Harris Branch Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/harris-branch-austin-tx/" + }, + { + "name": "Edinburgh Gardens Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/edinburgh-gardens-austin-tx/" + }, + { + "name": "Ed Bluestein Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/ed-bluestein-austin-tx/" + }, + { + "name": "Colony Meadows Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/colony-meadows-austin-tx/" + }, + { + "name": "Cantarra Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/cantarra-pflugerville-tx/" + }, + { + "name": "Brookfield Estates Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/brookfield-estates-pflugerville-tx/" + }, + { + "name": "Belhaven Subdivision Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/belhaven-subdivision-austin-tx/" + }, + { + "name": "Walnut Hills Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/walnut-hills-austin-tx/" + }, + { + "name": "Vintage Hills Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/vintage-hills-austin-tx/" + }, + { + "name": "The Retreat at Tech Ridge Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/the-retreat-at-tech-ridge-austin-tx/" + }, + { + "name": "Stirling Bridge Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/stirling-bridge-austin-tx/" + } + ] + }, + { + "title": "Homes in Nearby Austin & Central Texas Cities", + "links": [ + { + "name": "West Lake Hills Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/west-lake-hills-tx/" + }, + { + "name": "Round Rock Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/round-rock-tx/" + }, + { + "name": "Pflugerville Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/pflugerville-tx/" + }, + { + "name": "Manor Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/manor-tx/" + }, + { + "name": "Manchaca Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/manchaca-tx/" + }, + { + "name": "Del Valle Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/del-valle-tx/" + }, + { + "name": "Cedar Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/cedar-park-tx/" + }, + { + "name": "Cedar Creek Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/cedar-creek-tx/" + }, + { + "name": "Buda Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/buda-tx/" + }, + { + "name": "Bee Cave Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/bee-cave-tx/" + }, + { + "name": "Lakeway Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lakeway-tx/" + }, + { + "name": "Jonestown Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/jonestown-tx/" + }, + { + "name": "The Hills Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/the-hills-tx/" + }, + { + "name": "Dripping Springs Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/dripping-springs-tx/" + }, + { + "name": "Kyle Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/kyle-tx/" + } + ] + }, + { + "title": "Homes in Nearby Austin & Central Texas Zip Codes", + "links": [ + { + "name": "78758 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/austin-tx-78758/" + }, + { + "name": "78757 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/austin-tx-78757/" + }, + { + "name": "78755 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/austin-tx-78755/" + }, + { + "name": "78753 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/austin-tx-78753/" + }, + { + "name": "78752 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/austin-tx-78752/" + }, + { + "name": "78751 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/austin-tx-78751/" + }, + { + "name": "78750 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/austin-tx-78750/" + }, + { + "name": "78744 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/austin-tx-78744/" + }, + { + "name": "78738 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/austin-tx-78738/" + }, + { + "name": "78733 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/austin-tx-78733/" + }, + { + "name": "78728 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/austin-tx-78728/" + }, + { + "name": "78724 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/austin-tx-78724/" + }, + { + "name": "78722 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/austin-tx-78722/" + }, + { + "name": "78717 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/austin-tx-78717/" + }, + { + "name": "78703 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/austin-tx-78703/" + } + ] + } + ] + }, + "boston": { + "name": "Greater Boston", + "source_url": "https://www.compass.com/neighborhood-guides/boston/", + "retrieved_at": "2026-09-07T09:32:46.004Z", + "source_html_sha256": "cb099d6c6ec659da7f6cdb21035c1b31365c49256f616574ca170083fb8c943e", + "headline": "Tour Greater Boston's most desirable areas to live.", + "description": "Boston offers a unique blend of historic charm and modern amenities, making it an attractive place to live. Known for its rich history, vibrant cultural scene, and renowned educational institutions, Boston provides an exceptional quality of life. The city seamlessly blends historic landmarks like the Freedom Trail with contemporary living, offering residents a dynamic urban lifestyle with diverse dining, shopping, and entertainment options.", + "hero": "/static/external_cache/region-guide-aa0869145ec2.webp", + "cards": [ + { + "name": "Back Bay", + "source_url": "https://www.compass.com/neighborhood-guides/boston/back-bay/", + "image": "/static/external_cache/region-guide-72f7bced29c1.webp" + }, + { + "name": "Beacon Hill", + "source_url": "https://www.compass.com/neighborhood-guides/boston/beacon-hill/", + "image": "/static/external_cache/region-guide-857fdb7ea4ca.webp" + }, + { + "name": "Brookline", + "source_url": "https://www.compass.com/neighborhood-guides/boston/brookline/", + "image": "/static/external_cache/region-guide-0364ddc6d76d.webp" + }, + { + "name": "Cambridge", + "source_url": "https://www.compass.com/neighborhood-guides/boston/cambridge/", + "image": "/static/external_cache/region-guide-d1ad3cb5ea03.webp" + }, + { + "name": "Charlestown", + "source_url": "https://www.compass.com/neighborhood-guides/boston/charlestown/", + "image": "/static/external_cache/region-guide-e91be90605de.webp" + }, + { + "name": "Dorchester", + "source_url": "https://www.compass.com/neighborhood-guides/boston/dorchester/", + "image": "/static/external_cache/region-guide-35d9a7550e52.webp" + }, + { + "name": "Fenway", + "source_url": "https://www.compass.com/neighborhood-guides/boston/fenway/", + "image": "/static/external_cache/region-guide-a6790f1ca5c4.webp" + }, + { + "name": "Hingham", + "source_url": "https://www.compass.com/neighborhood-guides/boston/hingham/", + "image": "/static/external_cache/region-guide-c043462d8162.webp" + }, + { + "name": "Jamaica Plain", + "source_url": "https://www.compass.com/neighborhood-guides/boston/jamaica-plain/", + "image": "/static/external_cache/region-guide-2470e57dbccc.webp" + }, + { + "name": "Newton", + "source_url": "https://www.compass.com/neighborhood-guides/boston/newton/", + "image": "/static/external_cache/region-guide-0eb3510f18d2.webp" + }, + { + "name": "North End", + "source_url": "https://www.compass.com/neighborhood-guides/boston/north-end/", + "image": "/static/external_cache/region-guide-c237452f7d24.webp" + }, + { + "name": "Seaport District", + "source_url": "https://www.compass.com/neighborhood-guides/boston/seaport/", + "image": "/static/external_cache/region-guide-ad10bec48382.webp" + }, + { + "name": "Somerville", + "source_url": "https://www.compass.com/neighborhood-guides/boston/somerville/", + "image": "/static/external_cache/region-guide-412b4727cbd5.webp" + }, + { + "name": "South Boston", + "source_url": "https://www.compass.com/neighborhood-guides/boston/south-boston/", + "image": "/static/external_cache/region-guide-52b18e8ba7e7.webp" + }, + { + "name": "South End", + "source_url": "https://www.compass.com/neighborhood-guides/boston/south-end/", + "image": "/static/external_cache/region-guide-ee299d7efc7c.webp" + }, + { + "name": "Waterfront", + "source_url": "https://www.compass.com/neighborhood-guides/boston/waterfront/", + "image": "/static/external_cache/region-guide-f81d90b4ddf0.webp" + }, + { + "name": "Wayland", + "source_url": "https://www.compass.com/neighborhood-guides/boston/wayland/", + "image": "/static/external_cache/region-guide-9c2aead403d8.webp" + }, + { + "name": "Wellesley", + "source_url": "https://www.compass.com/neighborhood-guides/boston/wellesley/", + "image": "/static/external_cache/region-guide-88885e7b7496.webp" + }, + { + "name": "Weston", + "source_url": "https://www.compass.com/neighborhood-guides/boston/weston/", + "image": "/static/external_cache/region-guide-1ba2ced243ed.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Greater Boston Neighborhoods", + "links": [ + { + "name": "Woodbourne Historic District Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/woodbourne-historic-district-jamaica-plain-ma/" + }, + { + "name": "West Cambridge Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/west-cambridge-cambridge-ma/" + }, + { + "name": "The Waterworks Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/the-waterworks-chestnut-hill-ma/" + }, + { + "name": "Stony Brook-Cleary Square Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/stony-brook-cleary-square-hyde-park-ma/" + }, + { + "name": "Sparhawk Street Historic District Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sparhawk-street-historic-district-brighton-ma/" + }, + { + "name": "South Brookline Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/south-brookline-chestnut-hill-ma/" + }, + { + "name": "Readville Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/readville-hyde-park-ma/" + }, + { + "name": "Mount Auburn Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mount-auburn-watertown-ma/" + }, + { + "name": "Moss Hill Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/moss-hill-jamaica-plain-ma/" + }, + { + "name": "Metropolitan Hill-Beach Street Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/metropolitan-hill-beach-street-roslindale-ma/" + }, + { + "name": "Lower Allston Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lower-allston-allston-ma/" + }, + { + "name": "Little Saigon Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/little-saigon-dorchester-ma/" + }, + { + "name": "Georgetown - Hyde Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/georgetown-hyde-park-ma/" + }, + { + "name": "Faneuil West Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/faneuil-west-brighton-ma/" + }, + { + "name": "Commonwealth Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/commonwealth-brighton-ma/" + } + ] + }, + { + "title": "Homes in Nearby Greater Boston Cities", + "links": [ + { + "name": "Winthrop Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/winthrop-ma/" + }, + { + "name": "West Roxbury Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/west-roxbury-ma/" + }, + { + "name": "Watertown Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/watertown-ma/" + }, + { + "name": "South Boston Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/south-boston-ma/" + }, + { + "name": "Somerville Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/somerville-ma/" + }, + { + "name": "Roxbury Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/roxbury-ma/" + }, + { + "name": "Roslindale Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/roslindale-ma/" + }, + { + "name": "Revere Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/revere-ma/" + }, + { + "name": "Quincy Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/quincy-ma/" + }, + { + "name": "Newton Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/newton-ma/" + }, + { + "name": "Needham Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/needham-ma/" + }, + { + "name": "Mattapan Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mattapan-ma/" + }, + { + "name": "Jamaica Plain Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/jamaica-plain-ma/" + }, + { + "name": "Hull Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hull-ma/" + }, + { + "name": "Dorchester Center Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/dorchester-center-ma/" + } + ] + }, + { + "title": "Homes in Nearby Greater Boston Zip Codes", + "links": [ + { + "name": "02472 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/watertown-ma-02472/" + }, + { + "name": "02467 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chestnut-hill-ma-02467/" + }, + { + "name": "02459 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/newton-center-ma-02459/" + }, + { + "name": "02445 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/brookline-ma-02445/" + }, + { + "name": "02186 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/milton-ma-02186/" + }, + { + "name": "02171 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/quincy-ma-02171/" + }, + { + "name": "02163 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/boston-ma-02163/" + }, + { + "name": "02151 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/revere-ma-02151/" + }, + { + "name": "02149 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/everett-ma-02149/" + }, + { + "name": "02136 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hyde-park-ma-02136/" + }, + { + "name": "02134 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/allston-ma-02134/" + }, + { + "name": "02132 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/west-roxbury-ma-02132/" + }, + { + "name": "02131 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/roslindale-ma-02131/" + }, + { + "name": "02128 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/east-boston-ma-02128/" + }, + { + "name": "02122 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/dorchester-ma-02122/" + } + ] + } + ] + }, + "charlotte": { + "name": "Charlotte", + "source_url": "https://www.compass.com/neighborhood-guides/charlotte/", + "retrieved_at": "2026-09-07T09:35:24.796Z", + "source_html_sha256": "6ccda98363b4c69b28e002ec296ae45d088d5539316662e52fd441c4bc7e3ce4", + "headline": "Tour Charlotte's most desirable areas to live.", + "description": "Often referred to as the Queen City, it is frequently recognized as one of the fastest-growing cities in the country. As North Carolina's largest city, it serves as headquarters for several Fortune 500 companies, including Bank of America, Lowe's, and Honeywell, as well as hosting Wells Fargo’s East Coast operations. Known for its dynamic arts scene and diverse dining experiences, Charlotte features popular neighborhoods like South End, NoDa, and Uptown. Proud home of the NFL’s Carolina Panthers, the NBA’s Charlotte Hornets, the NASCAR Hall of Fame, and the U.S. National Whitewater Center.", + "hero": "/static/external_cache/region-guide-fa34ee48792e.webp", + "cards": [ + { + "name": "SouthPark", + "source_url": "https://www.compass.com/neighborhood-guides/charlotte/southpark/", + "image": "/static/external_cache/region-guide-a32e7b4ef6ab.webp" + }, + { + "name": "Myers Park / Dilworth", + "source_url": "https://www.compass.com/neighborhood-guides/charlotte/myerspark/", + "image": "/static/external_cache/region-guide-223ff9733004.webp" + }, + { + "name": "Fort Mill", + "source_url": "https://www.compass.com/neighborhood-guides/charlotte/fortmill/", + "image": "/static/external_cache/region-guide-370fa090cbd2.webp" + }, + { + "name": "Waxhaw", + "source_url": "https://www.compass.com/neighborhood-guides/charlotte/waxhaw/", + "image": "/static/external_cache/region-guide-9e31d4e42194.webp" + }, + { + "name": "Ballantyne", + "source_url": "https://www.compass.com/neighborhood-guides/charlotte/ballantyne/", + "image": "/static/external_cache/region-guide-bb46b61127d6.webp" + }, + { + "name": "Huntersville", + "source_url": "https://www.compass.com/neighborhood-guides/charlotte/huntersville/", + "image": "/static/external_cache/region-guide-1e75aec0f9ad.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Charlotte Neighborhoods", + "links": [ + { + "name": "Bennington Place Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/bennington-place-charlotte-nc/" + }, + { + "name": "Huntington Ridge Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/huntington-ridge-charlotte-nc/" + }, + { + "name": "Huntington Forest Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/huntington-forest-charlotte-nc/" + }, + { + "name": "Holly Ridge Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/holly-ridge-charlotte-nc/" + }, + { + "name": "Hidden Creek Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hidden-creek-charlotte-nc/" + }, + { + "name": "Hamilton Lakes Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hamilton-lakes-charlotte-nc/" + }, + { + "name": "Hamilton Green Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hamilton-green-charlotte-nc/" + }, + { + "name": "Grove Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/grove-park-charlotte-nc/" + }, + { + "name": "Coulwood Hills Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/coulwood-hills-charlotte-nc/" + }, + { + "name": "Chapel Cove Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chapel-cove-charlotte-nc/" + }, + { + "name": "Calloway Glen Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/calloway-glen-charlotte-nc/" + }, + { + "name": "Withers Grove Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/withers-grove-charlotte-nc/" + }, + { + "name": "Waterlyn Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/waterlyn-charlotte-nc/" + }, + { + "name": "The Crossings Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/the-crossings-charlotte-nc/" + }, + { + "name": "Steelecroft Place Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/steelecroft-place-charlotte-nc/" + } + ] + }, + { + "title": "Homes in Nearby Charlotte Cities", + "links": [ + { + "name": "Weddington Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/weddington-nc/" + }, + { + "name": "Stallings Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/stallings-nc/" + }, + { + "name": "Pineville Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/pineville-nc/" + }, + { + "name": "Mint Hill Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mint-hill-nc/" + }, + { + "name": "Matthews Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/matthews-nc/" + }, + { + "name": "Marvin Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/marvin-nc/" + }, + { + "name": "Indian Land Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/indian-land-sc/" + }, + { + "name": "Huntersville Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/huntersville-nc/" + }, + { + "name": "Harrisburg Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/harrisburg-nc/" + }, + { + "name": "Concord Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/concord-nc/" + }, + { + "name": "Indian Trail Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/indian-trail-nc/" + }, + { + "name": "Mount Holly Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mount-holly-nc/" + }, + { + "name": "Tega Cay Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/tega-cay-sc/" + }, + { + "name": "Belmont Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/belmont-nc/" + }, + { + "name": "Lake Wylie Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lake-wylie-sc/" + } + ] + }, + { + "title": "Homes in Nearby Charlotte Zip Codes", + "links": [ + { + "name": "29715 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/fort-mill-sc-29715/" + }, + { + "name": "29707 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/fort-mill-sc-29707/" + }, + { + "name": "28285 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/charlotte-nc-28285/" + }, + { + "name": "28281 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/charlotte-nc-28281/" + }, + { + "name": "28277 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/charlotte-nc-28277/" + }, + { + "name": "28269 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/charlotte-nc-28269/" + }, + { + "name": "28262 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/charlotte-nc-28262/" + }, + { + "name": "28227 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/charlotte-nc-28227/" + }, + { + "name": "28223 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/charlotte-nc-28223/" + }, + { + "name": "28214 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/charlotte-nc-28214/" + }, + { + "name": "28212 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/charlotte-nc-28212/" + }, + { + "name": "28211 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/charlotte-nc-28211/" + }, + { + "name": "28208 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/charlotte-nc-28208/" + }, + { + "name": "28205 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/charlotte-nc-28205/" + }, + { + "name": "28203 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/charlotte-nc-28203/" + } + ] + } + ] + }, + "chicago": { + "name": "Chicago", + "source_url": "https://www.compass.com/neighborhood-guides/chicago/", + "retrieved_at": "2026-09-07T09:33:09.499Z", + "source_html_sha256": "ebee5ae0fb08e6942f540e35ca0adc57f850429d5195ff5eb997a37dd69c5ba5", + "headline": "Tour Chicago's most desirable areas to live.", + "description": "Chicago is a vibrant, world-class city offering both urban excitement and Midwestern appeal, making it a sought-after place to live. Known for its stunning lakefront, iconic architecture and skyline, and rich cultural scene, the city is home to top-tier museums, award-winning restaurants, and 178 unique neighborhoods to explore.", + "hero": "/static/external_cache/region-guide-efd57f068938.webp", + "cards": [ + { + "name": "River North", + "source_url": "https://www.compass.com/neighborhood-guides/chicago/river-north/", + "image": "/static/external_cache/region-guide-d3eaf37d3699.webp" + }, + { + "name": "Lincoln Park", + "source_url": "https://www.compass.com/neighborhood-guides/chicago/lincoln-park/", + "image": "/static/external_cache/region-guide-5ffe84c0038c.webp" + }, + { + "name": "Gold Coast", + "source_url": "https://www.compass.com/neighborhood-guides/chicago/gold-coast/", + "image": "/static/external_cache/region-guide-46d981096d81.webp" + }, + { + "name": "Wicker Park", + "source_url": "https://www.compass.com/neighborhood-guides/chicago/wicker-park/", + "image": "/static/external_cache/region-guide-76240ee80ed0.webp" + }, + { + "name": "New East Side", + "source_url": "https://www.compass.com/neighborhood-guides/chicago/new-east-side/", + "image": "/static/external_cache/region-guide-c9ff77b32042.webp" + }, + { + "name": "West Loop", + "source_url": "https://www.compass.com/neighborhood-guides/chicago/west-loop/", + "image": "/static/external_cache/region-guide-ec8cd467ce69.webp" + }, + { + "name": "Wrigleyville", + "source_url": "https://www.compass.com/neighborhood-guides/chicago/wrigleyville/", + "image": "/static/external_cache/region-guide-5de523bfed38.webp" + }, + { + "name": "Old Town", + "source_url": "https://www.compass.com/neighborhood-guides/chicago/old-town/", + "image": "/static/external_cache/region-guide-8e180fd2ab5b.webp" + }, + { + "name": "Streeterville", + "source_url": "https://www.compass.com/neighborhood-guides/chicago/streeterville/", + "image": "/static/external_cache/region-guide-186fadd059b2.webp" + }, + { + "name": "The Loop", + "source_url": "https://www.compass.com/neighborhood-guides/chicago/the-loop/", + "image": "/static/external_cache/region-guide-e9475062df86.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Chicago Neighborhoods", + "links": [ + { + "name": "Westwood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/westwood-elmwood-park-il/" + }, + { + "name": "West Ridge Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/west-ridge-chicago-il/" + }, + { + "name": "Shoreline Towers Condominium Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/shoreline-towers-condominium-chicago-il/" + }, + { + "name": "Schorsch Forest View Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/schorsch-forest-view-chicago-il/" + }, + { + "name": "Sauganash Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sauganash-chicago-il/" + }, + { + "name": "Rosehill Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/rosehill-chicago-il/" + }, + { + "name": "Ravenswood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/ravenswood-chicago-il/" + }, + { + "name": "Oriole Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/oriole-park-chicago-il/" + }, + { + "name": "Oasis Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/oasis-niles-il/" + }, + { + "name": "Norwood Park West Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/norwood-park-west-chicago-il/" + }, + { + "name": "Norwood Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/norwood-park-chicago-il/" + }, + { + "name": "Lincoln Square Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lincoln-square-chicago-il/" + }, + { + "name": "Irving Woods Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/irving-woods-chicago-il/" + }, + { + "name": "Far North Side Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/far-north-side-il/" + }, + { + "name": "Elk Grove Township - Cook County Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/elk-grove-township-cook-county-il/" + } + ] + }, + { + "title": "Homes in Nearby Chicago Cities", + "links": [ + { + "name": "Skokie Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/skokie-il/" + }, + { + "name": "Schiller Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/schiller-park-il/" + }, + { + "name": "River Grove Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/river-grove-il/" + }, + { + "name": "Riverdale Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/riverdale-il/" + }, + { + "name": "Park Ridge Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/park-ridge-il/" + }, + { + "name": "Oak Lawn Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/oak-lawn-il/" + }, + { + "name": "Norridge Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/norridge-il/" + }, + { + "name": "Lincolnwood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lincolnwood-il/" + }, + { + "name": "Hometown Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hometown-il/" + }, + { + "name": "Hammond Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hammond-in/" + }, + { + "name": "Franklin Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/franklin-park-il/" + }, + { + "name": "Evergreen Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/evergreen-park-il/" + }, + { + "name": "Elmwood Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/elmwood-park-il/" + }, + { + "name": "Elk Grove Village Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/elk-grove-village-il/" + }, + { + "name": "Dolton Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/dolton-il/" + } + ] + }, + { + "title": "Homes in Nearby Chicago Zip Codes", + "links": [ + { + "name": "60712 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lincolnwood-il-60712/" + }, + { + "name": "60706 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/harwood-heights-il-60706/" + }, + { + "name": "60661 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chicago-il-60661/" + }, + { + "name": "60656 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chicago-il-60656/" + }, + { + "name": "60649 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chicago-il-60649/" + }, + { + "name": "60645 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chicago-il-60645/" + }, + { + "name": "60644 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chicago-il-60644/" + }, + { + "name": "60626 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chicago-il-60626/" + }, + { + "name": "60623 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chicago-il-60623/" + }, + { + "name": "60618 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chicago-il-60618/" + }, + { + "name": "60610 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chicago-il-60610/" + }, + { + "name": "60608 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chicago-il-60608/" + }, + { + "name": "60606 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chicago-il-60606/" + }, + { + "name": "60603 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chicago-il-60603/" + }, + { + "name": "60601 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chicago-il-60601/" + } + ] + } + ] + }, + "dallas": { + "name": "Dallas-Fort Worth", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/", + "retrieved_at": "2026-09-07T09:35:23.512Z", + "source_html_sha256": "9dbe5134565a9ac284b4600a9041638e51accdc5124659a2b08e61932e42535a", + "headline": "Tour Dallas-Fort Worth's most desirable areas to live.", + "description": "Dallas offers a unique blend of sophistication and modern amenities, making it an attractive place to live. Known for its thriving economy, vibrant arts scene, and diverse culinary landscape, Dallas provides an exceptional quality of life. The city seamlessly blends iconic landmarks like the Reunion Tower with contemporary living, offering residents a dynamic lifestyle with diverse dining, shopping, and entertainment options.", + "hero": "/static/external_cache/region-guide-05ae6c1643e9.webp", + "cards": [ + { + "name": "Downtown Dallas", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/downtown-dallas/", + "image": "/static/external_cache/region-guide-9f236126fe74.webp" + }, + { + "name": "Downtown Fort Worth", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/downtown-fort-worth/", + "image": "/static/external_cache/region-guide-aefd1835491f.webp" + }, + { + "name": "Forest Hills-Casa Linda", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/forest-hills-casa-linda/", + "image": "/static/external_cache/region-guide-e39ff72168bc.webp" + }, + { + "name": "Frisco", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/frisco/", + "image": "/static/external_cache/region-guide-d857d6eac6e2.webp" + }, + { + "name": "Highland Park", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/highland-park/", + "image": "/static/external_cache/region-guide-8b50a6f18948.webp" + }, + { + "name": "Lakewood", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/east-dallas-lakewood/", + "image": "/static/external_cache/region-guide-d61236b4f609.webp" + }, + { + "name": "Lake Highlands", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/lake-highlands/", + "image": "/static/external_cache/region-guide-d8919fcdcb90.webp" + }, + { + "name": "McKinney", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/mckinney/", + "image": "/static/external_cache/region-guide-008399a5e906.webp" + }, + { + "name": "M Streets-Vickery Place", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/m-streets-vickery-place/", + "image": "/static/external_cache/region-guide-46d7ef91a6ae.webp" + }, + { + "name": "Oak Cliff", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/oak-cliff/", + "image": "/static/external_cache/region-guide-654a235628e0.webp" + }, + { + "name": "Plano", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/plano/", + "image": "/static/external_cache/region-guide-1f256c704ecc.webp" + }, + { + "name": "Preston Hollow", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/preston-hollow/", + "image": "/static/external_cache/region-guide-a7fb4763de72.webp" + }, + { + "name": "Southlake", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/southlake/", + "image": "/static/external_cache/region-guide-67d43049ff3a.webp" + }, + { + "name": "Tanglewood", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/tanglewood/", + "image": "/static/external_cache/region-guide-03a0224c7acc.webp" + }, + { + "name": "University Park", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/university-park/", + "image": "/static/external_cache/region-guide-3bf7a1699ab8.webp" + }, + { + "name": "Uptown", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/dallas-Uptown/", + "image": "/static/external_cache/region-guide-885509215f55.webp" + }, + { + "name": "West 7th - Fort Worth", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/dallas-west-7th-fort-worth/", + "image": "/static/external_cache/region-guide-d662b8d7dadf.webp" + }, + { + "name": "Arlington", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/arlington/", + "image": "/static/external_cache/region-guide-6fac7cbe01e0.webp" + }, + { + "name": "Allen", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/allen/", + "image": "/static/external_cache/region-guide-4163c0483a59.webp" + }, + { + "name": "Colleyville", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/Colleyville/", + "image": "/static/external_cache/region-guide-886aad9ac558.webp" + }, + { + "name": "Keller", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/Keller/", + "image": "/static/external_cache/region-guide-109677b512f0.webp" + }, + { + "name": "Trophy Club", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/trophy-club/", + "image": "/static/external_cache/region-guide-30420e617bdc.webp" + }, + { + "name": "Westlake", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/westlake/", + "image": "/static/external_cache/region-guide-cade6b4753f3.webp" + }, + { + "name": "Grapevine", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/grapevine/", + "image": "/static/external_cache/region-guide-16d27b6f1544.webp" + }, + { + "name": "Midway Hollow", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/midway-hollow/", + "image": "/static/external_cache/region-guide-e87329fb5ac2.webp" + }, + { + "name": "Richardson", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/richardson/", + "image": "/static/external_cache/region-guide-f39dc04f24bc.webp" + }, + { + "name": "Willow Bend", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/willow-bend/", + "image": "/static/external_cache/region-guide-2d95bada0c6d.webp" + }, + { + "name": "Flower Mound", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/flower-mound/", + "image": "/static/external_cache/region-guide-3630000c37dc.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Dallas-Fort Worth Neighborhoods", + "links": [ + { + "name": "West Kleberg Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/west-kleberg-dallas-tx/" + }, + { + "name": "Village by the Creek Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/village-by-the-creek-dallas-tx/" + }, + { + "name": "Urbandale Heights Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/urbandale-heights-dallas-tx/" + }, + { + "name": "The Gastonian Condominiums Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/the-gastonian-condominiums-dallas-tx/" + }, + { + "name": "Shamrock Shores Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/shamrock-shores-dallas-tx/" + }, + { + "name": "Rylie Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/rylie-dallas-tx/" + }, + { + "name": "Riverway Estates-Bruton Terrace Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/riverway-estates-bruton-terrace-dallas-tx/" + }, + { + "name": "Preston Hills Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/preston-hills-dallas-tx/" + }, + { + "name": "Pleasant Grove Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/pleasant-grove-dallas-tx/" + }, + { + "name": "Mount Auburn Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mount-auburn-dallas-tx/" + }, + { + "name": "Las Casas Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/las-casas-dallas-tx/" + }, + { + "name": "Lake June Terrace Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lake-june-terrace-dallas-tx/" + }, + { + "name": "Hillview Terrace Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hillview-terrace-dallas-tx/" + }, + { + "name": "East Kleberg Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/east-kleberg-dallas-tx/" + }, + { + "name": "Casa View Hills Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/casa-view-hills-dallas-tx/" + } + ] + }, + { + "title": "Homes in Nearby Dallas-Fort Worth Cities", + "links": [ + { + "name": "University Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/university-park-tx/" + }, + { + "name": "Sunnyvale Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sunnyvale-tx/" + }, + { + "name": "Rowlett Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/rowlett-tx/" + }, + { + "name": "Rockwall Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/rockwall-tx/" + }, + { + "name": "Plano Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/plano-tx/" + }, + { + "name": "Mesquite Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mesquite-tx/" + }, + { + "name": "Lancaster Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lancaster-tx/" + }, + { + "name": "Irving Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/irving-tx/" + }, + { + "name": "Hutchins Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hutchins-tx/" + }, + { + "name": "Highland Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/highland-park-tx/" + }, + { + "name": "Heath Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/heath-tx/" + }, + { + "name": "Grand Prairie Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/grand-prairie-tx/" + }, + { + "name": "Farmers Branch Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/farmers-branch-tx/" + }, + { + "name": "Duncanville Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/duncanville-tx/" + }, + { + "name": "DeSoto Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/desoto-tx/" + } + ] + }, + { + "title": "Homes in Nearby Dallas-Fort Worth Zip Codes", + "links": [ + { + "name": "75382 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/dallas-tx-75382/" + }, + { + "name": "75339 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/dallas-tx-75339/" + }, + { + "name": "75336 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/dallas-tx-75336/" + }, + { + "name": "75254 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/dallas-tx-75254/" + }, + { + "name": "75251 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/dallas-tx-75251/" + }, + { + "name": "75248 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/dallas-tx-75248/" + }, + { + "name": "75240 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/dallas-tx-75240/" + }, + { + "name": "75234 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/dallas-tx-75234/" + }, + { + "name": "75203 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/dallas-tx-75203/" + }, + { + "name": "75181 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mesquite-tx-75181/" + }, + { + "name": "75166 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lavon-tx-75166/" + }, + { + "name": "75126 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/forney-tx-75126/" + }, + { + "name": "75104 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/cedar-hill-tx-75104/" + }, + { + "name": "75098 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/wylie-tx-75098/" + }, + { + "name": "75087 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/rockwall-tx-75087/" + } + ] + } + ] + }, + "dc": { + "name": "DC, Maryland, & Virginia", + "source_url": "https://www.compass.com/neighborhood-guides/dc/", + "retrieved_at": "2026-09-07T09:32:46.949Z", + "source_html_sha256": "31aa60c947ba1df0063d74e93525136b95578ad63d3bbe35486843ac842a8870", + "headline": "Tour DC, Maryland, & Virginia's most desirable areas to live.", + "description": "The DMV region, which includes Washington D.C., Maryland, and Virginia, offers a captivating mix of history, culture, and modern living. From the historic elegance of Alexandria to the lively streets of Adams Morgan, the area promises a vibrant urban lifestyle. Washington D.C. adds its flair with iconic landmarks, vibrant neighborhoods like Dupont Circle, and a rich arts scene. Maryland's charm shines through bustling Bethesda and scenic Silver Spring, offering diverse dining, shopping, and entertainment.", + "hero": "/static/external_cache/region-guide-e5eae43f3320.webp", + "cards": [ + { + "name": "Adams Morgan", + "source_url": "https://www.compass.com/neighborhood-guides/dc/adams-morgan/", + "image": "/static/external_cache/region-guide-1241dbdcf189.webp" + }, + { + "name": "Alexandria", + "source_url": "https://www.compass.com/neighborhood-guides/dc/alexandria/", + "image": "/static/external_cache/region-guide-763449aa0a5b.webp" + }, + { + "name": "American University Park", + "source_url": "https://www.compass.com/neighborhood-guides/dc/american-university-park/", + "image": "/static/external_cache/region-guide-3d09d6645109.webp" + }, + { + "name": "Arlington", + "source_url": "https://www.compass.com/neighborhood-guides/dc/arlington/", + "image": "/static/external_cache/region-guide-f221f7da5cfc.webp" + }, + { + "name": "Bethesda", + "source_url": "https://www.compass.com/neighborhood-guides/dc/bethesda/", + "image": "/static/external_cache/region-guide-241736c27011.webp" + }, + { + "name": "Capitol Hill", + "source_url": "https://www.compass.com/neighborhood-guides/dc/capitol-hill/", + "image": "/static/external_cache/region-guide-fffc0d20d378.webp" + }, + { + "name": "Chevy Chase", + "source_url": "https://www.compass.com/neighborhood-guides/dc/chevy-chase/", + "image": "/static/external_cache/region-guide-ddd19c8879a2.webp" + }, + { + "name": "Cleveland Park", + "source_url": "https://www.compass.com/neighborhood-guides/dc/cleveland-park/", + "image": "/static/external_cache/region-guide-ca3d47747a38.webp" + }, + { + "name": "Columbia Heights", + "source_url": "https://www.compass.com/neighborhood-guides/dc/columbia-heights/", + "image": "/static/external_cache/region-guide-7f79be849f24.webp" + }, + { + "name": "Dupont Circle", + "source_url": "https://www.compass.com/neighborhood-guides/dc/dupont-circle/", + "image": "/static/external_cache/region-guide-070430fd48dd.webp" + }, + { + "name": "Georgetown", + "source_url": "https://www.compass.com/neighborhood-guides/dc/georgetown/", + "image": "/static/external_cache/region-guide-9d9e35225416.webp" + }, + { + "name": "H Street Corridor", + "source_url": "https://www.compass.com/neighborhood-guides/dc/h-street-corridor/", + "image": "/static/external_cache/region-guide-6c56b43ba9d0.webp" + }, + { + "name": "Kalorama", + "source_url": "https://www.compass.com/neighborhood-guides/dc/kalorama/", + "image": "/static/external_cache/region-guide-a6ed30805bcb.webp" + }, + { + "name": "Logan Circle", + "source_url": "https://www.compass.com/neighborhood-guides/dc/logan-circle/", + "image": "/static/external_cache/region-guide-25cceb424a4c.webp" + }, + { + "name": "McLean", + "source_url": "https://www.compass.com/neighborhood-guides/dc/mclean/", + "image": "/static/external_cache/region-guide-e367010375ca.webp" + }, + { + "name": "Shaw", + "source_url": "https://www.compass.com/neighborhood-guides/dc/shaw/", + "image": "/static/external_cache/region-guide-fd69a8837eb2.webp" + }, + { + "name": "Silver Spring", + "source_url": "https://www.compass.com/neighborhood-guides/dc/silver-spring/", + "image": "/static/external_cache/region-guide-1faae51882f6.webp" + }, + { + "name": "Southwest Waterfront", + "source_url": "https://www.compass.com/neighborhood-guides/dc/southwest-waterfront/", + "image": "/static/external_cache/region-guide-69268f51c296.webp" + }, + { + "name": "Woodley Park", + "source_url": "https://www.compass.com/neighborhood-guides/dc/woodley-park/", + "image": "/static/external_cache/region-guide-c0c1ba11cefd.webp" + }, + { + "name": "U Street Corridor", + "source_url": "https://www.compass.com/neighborhood-guides/dc/u-street-corridor/", + "image": "/static/external_cache/region-guide-19c5f54a9804.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby DC, Maryland, & Virginia Neighborhoods", + "links": [ + { + "name": "Bellevue Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/bellevue-washington-dc/" + }, + { + "name": "National Arboretum Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/national-arboretum-washington-dc/" + }, + { + "name": "Maryland Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/maryland-md/" + }, + { + "name": "Manor Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/manor-park-washington-dc/" + }, + { + "name": "Holmead Manor Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/holmead-manor-washington-dc/" + }, + { + "name": "Garfield Heights Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/garfield-heights-washington-dc/" + }, + { + "name": "Fort Totten Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/fort-totten-washington-dc/" + }, + { + "name": "Buena Vista Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/buena-vista-washington-dc/" + }, + { + "name": "Brightwood Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/brightwood-park-washington-dc/" + }, + { + "name": "Brightwood-Manor Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/brightwood-manor-park-washington-dc/" + }, + { + "name": "Brentwood-Langdon Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/brentwood-langdon-washington-dc/" + }, + { + "name": "West Georgetown Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/west-georgetown-washington-dc/" + }, + { + "name": "Virginia Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/virginia-va/" + }, + { + "name": "Trinidad-Langston Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/trinidad-langston-washington-dc/" + }, + { + "name": "The Parks at Walter Reed Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/the-parks-at-walter-reed-washington-dc/" + } + ] + }, + { + "title": "Homes in Nearby DC, Maryland, & Virginia Cities", + "links": [ + { + "name": "Washington Navy Yard Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/washington-navy-yard-dc/" + }, + { + "name": "Suitland Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/suitland-md/" + }, + { + "name": "Naval Anacost Annex Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/naval-anacost-annex-dc/" + }, + { + "name": "Mount Rainier Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mount-rainier-md/" + }, + { + "name": "Fort Myer Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/fort-myer-va/" + }, + { + "name": "Chevy Chase Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chevy-chase-md/" + }, + { + "name": "Capitol Heights Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/capitol-heights-md/" + }, + { + "name": "Bethesda Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/bethesda-md/" + }, + { + "name": "Arlington Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/arlington-va/" + }, + { + "name": "Alexandria Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/alexandria-va/" + }, + { + "name": "McLean Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mclean-va/" + }, + { + "name": "Silver Spring Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/silver-spring-md/" + }, + { + "name": "Takoma Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/takoma-park-md/" + }, + { + "name": "Brentwood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/brentwood-md/" + }, + { + "name": "Hyattsville Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hyattsville-md/" + } + ] + }, + { + "title": "Homes in Nearby DC, Maryland, & Virginia Zip Codes", + "links": [ + { + "name": "22314 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/alexandria-va-22314/" + }, + { + "name": "22207 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/arlington-va-22207/" + }, + { + "name": "20910 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/silver-spring-md-20910/" + }, + { + "name": "20815 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chevy-chase-md-20815/" + }, + { + "name": "20597 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/washington-dc-20597/" + }, + { + "name": "20549 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/washington-dc-20549/" + }, + { + "name": "20543 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/washington-dc-20543/" + }, + { + "name": "20535 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/washington-dc-20535/" + }, + { + "name": "20534 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/washington-dc-20534/" + }, + { + "name": "20415 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/washington-dc-20415/" + }, + { + "name": "20270 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/washington-dc-20270/" + }, + { + "name": "20240 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/washington-dc-20240/" + }, + { + "name": "20229 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/washington-dc-20229/" + }, + { + "name": "20226 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/washington-dc-20226/" + }, + { + "name": "20220 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/washington-dc-20220/" + } + ] + } + ] + }, + "durham_raleigh": { + "name": "Greater Raleigh", + "source_url": "https://www.compass.com/neighborhood-guides/durham_raleigh/", + "retrieved_at": "2026-09-07T09:35:41.767Z", + "source_html_sha256": "3e7cf761c277d98cafec53c8a8566d70a639ff2132eb027251eb2eb1e4c0c069", + "headline": "Tour Greater Raleigh's most desirable areas to live.", + "description": "Raleigh, NC, and the surrounding Triangle region offer a vibrant mix of Southern charm, innovation, and livability. Known for its top-tier universities, thriving tech and research industries, and abundant green spaces, the area combines small-town warmth with big-city opportunities. From historic neighborhoods and museums to cutting-edge dining and a flourishing arts scene, the Triangle delivers a dynamic lifestyle in a welcoming, community-focused setting.", + "hero": "/static/external_cache/region-guide-7b64424775bd.webp", + "cards": [ + { + "name": "North Hills", + "source_url": "https://www.compass.com/neighborhood-guides/durham_raleigh/northhills/", + "image": "/static/external_cache/region-guide-919cf50d99a3.webp" + }, + { + "name": "Durham", + "source_url": "https://www.compass.com/neighborhood-guides/durham_raleigh/durham/", + "image": "/static/external_cache/region-guide-54b45fc3db58.webp" + }, + { + "name": "Downtown Raleigh", + "source_url": "https://www.compass.com/neighborhood-guides/durham_raleigh/downtownraleigh/", + "image": "/static/external_cache/region-guide-e0ac2a18d012.webp" + }, + { + "name": "Chapel Hill", + "source_url": "https://www.compass.com/neighborhood-guides/durham_raleigh/chapelhill/", + "image": "/static/external_cache/region-guide-ecd1c7cb4cee.webp" + }, + { + "name": "Cary", + "source_url": "https://www.compass.com/neighborhood-guides/durham_raleigh/cary/", + "image": "/static/external_cache/region-guide-2841e2fc14b6.webp" + }, + { + "name": "Apex", + "source_url": "https://www.compass.com/neighborhood-guides/durham_raleigh/apex/", + "image": "/static/external_cache/region-guide-78938dc94326.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Greater Raleigh Neighborhoods", + "links": [ + { + "name": "Brightleaf District Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/brightleaf-district-durham-nc/" + }, + { + "name": "The Townes at Brier Creek Crossings Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/the-townes-at-brier-creek-crossings-durham-nc/" + }, + { + "name": "The Landing at Southpoint Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/the-landing-at-southpoint-durham-nc/" + }, + { + "name": "Swann's Mill Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/swanns-mill-durham-nc/" + }, + { + "name": "Stadium Heights Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/stadium-heights-durham-nc/" + }, + { + "name": "Scarsdale Village Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/scarsdale-village-durham-nc/" + }, + { + "name": "Ravenstone Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/ravenstone-durham-nc/" + }, + { + "name": "Omah Street Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/omah-street-durham-nc/" + }, + { + "name": "Northeast Hills Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/northeast-hills-durham-nc/" + }, + { + "name": "Milan Woods Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/milan-woods-durham-nc/" + }, + { + "name": "Merrick Moore Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/merrick-moore-durham-nc/" + }, + { + "name": "Hope Valley Farms Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hope-valley-farms-durham-nc/" + }, + { + "name": "Gorman Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/gorman-durham-nc/" + }, + { + "name": "Duke Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/duke-park-durham-nc/" + }, + { + "name": "Croasdaile Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/croasdaile-durham-nc/" + } + ] + }, + { + "title": "Homes in Nearby Greater Raleigh Cities", + "links": [ + { + "name": "Raleigh Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/raleigh-nc/" + }, + { + "name": "Morrisville Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/morrisville-nc/" + }, + { + "name": "Chapel Hill Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chapel-hill-nc/" + }, + { + "name": "Cary Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/cary-nc/" + }, + { + "name": "Bahama Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/bahama-nc/" + }, + { + "name": "Butner Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/butner-nc/" + }, + { + "name": "Carrboro Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/carrboro-nc/" + }, + { + "name": "Rougemont Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/rougemont-nc/" + }, + { + "name": "Hillsborough Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hillsborough-nc/" + }, + { + "name": "Apex Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/apex-nc/" + }, + { + "name": "Cedar Grove Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/cedar-grove-nc/" + }, + { + "name": "Stem Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/stem-nc/" + }, + { + "name": "Creedmoor Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/creedmoor-nc/" + }, + { + "name": "Efland Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/efland-nc/" + }, + { + "name": "Timberlake Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/timberlake-nc/" + } + ] + }, + { + "title": "Homes in Nearby Greater Raleigh Zip Codes", + "links": [ + { + "name": "27617 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/raleigh-nc-27617/" + }, + { + "name": "27560 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/morrisville-nc-27560/" + }, + { + "name": "27517 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chapel-hill-nc-27517/" + }, + { + "name": "27503 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/bahama-nc-27503/" + }, + { + "name": "27713 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/durham-nc-27713/" + }, + { + "name": "27712 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/durham-nc-27712/" + }, + { + "name": "27710 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/durham-nc-27710/" + }, + { + "name": "27709 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/durham-nc-27709/" + }, + { + "name": "27708 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/durham-nc-27708/" + }, + { + "name": "27707 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/durham-nc-27707/" + }, + { + "name": "27705 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/durham-nc-27705/" + }, + { + "name": "27704 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/durham-nc-27704/" + }, + { + "name": "27703 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/durham-nc-27703/" + }, + { + "name": "27701 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/durham-nc-27701/" + }, + { + "name": "27514 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chapel-hill-nc-27514/" + } + ] + } + ] + }, + "greenwich_ct": { + "name": "Connecticut", + "source_url": "https://www.compass.com/neighborhood-guides/greenwich_ct/", + "retrieved_at": "2026-09-07T09:34:09.608Z", + "source_html_sha256": "57a000b9a3c5499f3a4552cd133127c898a5b47ca004a5fdbb767a1cd96300e8", + "headline": "Tour Connecticut's most desirable areas to live.", + "description": "Connecticut, one of the original 13 colonies, is a compact yet diverse New England state known for its deep-rooted history, coastal charm, and cultural richness. From the historic seaport of Mystic to the academic prestige of Yale University to the bustling downtown of Greenwich, the state offers a unique blend of scenic towns, rolling countryside, and dynamic cities. With proximity to New York City, the state combines sophistication with small-town character, all set against a backdrop of innovation, the arts, and beautiful shoreline living.", + "hero": "/static/external_cache/region-guide-c5a3947d5f39.webp", + "cards": [ + { + "name": "Cos Cob", + "source_url": "https://www.compass.com/neighborhood-guides/greenwich_ct/cos-cob/", + "image": "/static/external_cache/region-guide-fc9f80ec31c1.webp" + }, + { + "name": "Darien", + "source_url": "https://www.compass.com/neighborhood-guides/greenwich_ct/darien/", + "image": "/static/external_cache/region-guide-ad047421bf01.webp" + }, + { + "name": "Easton", + "source_url": "https://www.compass.com/neighborhood-guides/greenwich_ct/easton/", + "image": "/static/external_cache/region-guide-9f5229e432cd.webp" + }, + { + "name": "Fairfield & Southport", + "source_url": "https://www.compass.com/neighborhood-guides/greenwich_ct/fairfield/", + "image": "/static/external_cache/region-guide-fb5e1b0dd842.webp" + }, + { + "name": "Greenwich", + "source_url": "https://www.compass.com/neighborhood-guides/greenwich_ct/greenwich/", + "image": "/static/external_cache/region-guide-fe4771ed73ee.webp" + }, + { + "name": "New Canaan", + "source_url": "https://www.compass.com/neighborhood-guides/greenwich_ct/new-canaan/", + "image": "/static/external_cache/region-guide-4f4f58571df1.webp" + }, + { + "name": "Norwalk", + "source_url": "https://www.compass.com/neighborhood-guides/greenwich_ct/norwalk/", + "image": "/static/external_cache/region-guide-b2f4932d2a81.webp" + }, + { + "name": "Old Greenwich", + "source_url": "https://www.compass.com/neighborhood-guides/greenwich_ct/old-greenwich/", + "image": "/static/external_cache/region-guide-e99c5b4788f1.webp" + }, + { + "name": "Riverside", + "source_url": "https://www.compass.com/neighborhood-guides/greenwich_ct/riverside/", + "image": "/static/external_cache/region-guide-f334c4045dbd.webp" + }, + { + "name": "Rowayton", + "source_url": "https://www.compass.com/neighborhood-guides/greenwich_ct/rowayton/", + "image": "/static/external_cache/region-guide-7d6c232a8833.webp" + }, + { + "name": "Stamford", + "source_url": "https://www.compass.com/neighborhood-guides/greenwich_ct/stamford/", + "image": "/static/external_cache/region-guide-29e1110ec8ca.webp" + }, + { + "name": "Weston", + "source_url": "https://www.compass.com/neighborhood-guides/greenwich_ct/weston/", + "image": "/static/external_cache/region-guide-942d0534b713.webp" + }, + { + "name": "Westport", + "source_url": "https://www.compass.com/neighborhood-guides/greenwich_ct/westport/", + "image": "/static/external_cache/region-guide-e2fb89b2d675.webp" + }, + { + "name": "Wilton", + "source_url": "https://www.compass.com/neighborhood-guides/greenwich_ct/wilton/", + "image": "/static/external_cache/region-guide-df90a333b843.webp" + }, + { + "name": "Ridgefield", + "source_url": "https://www.compass.com/neighborhood-guides/greenwich_ct/ridgefield/", + "image": "/static/external_cache/region-guide-bc557e0eee06.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Connecticut Neighborhoods", + "links": [ + { + "name": "Anderson Ridge Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/anderson-ridge-greenwich-ct/" + }, + { + "name": "West Side Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/west-side-stamford-ct/" + }, + { + "name": "Westover Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/westover-stamford-ct/" + }, + { + "name": "Western Connecticut Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/western-connecticut-ct/" + }, + { + "name": "South Parkway Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/south-parkway-greenwich-ct/" + }, + { + "name": "Sherwood Farms Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sherwood-farms-greenwich-ct/" + }, + { + "name": "Rye Town Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/rye-town-port-chester-ny/" + }, + { + "name": "Pemberwick Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/pemberwick-greenwich-ct/" + }, + { + "name": "North Stamford Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-stamford-stamford-ct/" + }, + { + "name": "Millbrook Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/millbrook-greenwich-ct/" + }, + { + "name": "Mid Country West Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mid-country-west-greenwich-ct/" + }, + { + "name": "Mid Country East Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mid-country-east-greenwich-ct/" + }, + { + "name": "King Merritt Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/king-merritt-greenwich-ct/" + }, + { + "name": "Field Point Circle Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/field-point-circle-greenwich-ct/" + }, + { + "name": "Downtown Greenwich Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/downtown-greenwich-greenwich-ct/" + } + ] + }, + { + "title": "Homes in Nearby Connecticut Cities", + "links": [ + { + "name": "Stamford Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/stamford-ct/" + }, + { + "name": "Rye Brook Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/rye-brook-ny/" + }, + { + "name": "Riverside Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/riverside-ct/" + }, + { + "name": "Port Chester Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/port-chester-ny/" + }, + { + "name": "Old Greenwich Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/old-greenwich-ct/" + }, + { + "name": "Cos Cob Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/cos-cob-ct/" + }, + { + "name": "Armonk Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/armonk-ny/" + }, + { + "name": "Rye Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/rye-ny/" + }, + { + "name": "Harrison Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/harrison-ny/" + }, + { + "name": "Purchase Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/purchase-ny/" + }, + { + "name": "West Harrison Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/west-harrison-ny/" + }, + { + "name": "Pound Ridge Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/pound-ridge-ny/" + }, + { + "name": "White Plains Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/white-plains-ny/" + }, + { + "name": "Thornwood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/thornwood-ny/" + }, + { + "name": "Pleasantville Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/pleasantville-ny/" + } + ] + }, + { + "title": "Homes in Nearby Connecticut Zip Codes", + "links": [ + { + "name": "06831 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/greenwich-ct-06831/" + }, + { + "name": "06830 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/greenwich-ct-06830/" + }, + { + "name": "06807 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/cos-cob-ct-06807/" + }, + { + "name": "10604 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/west-harrison-ny-10604/" + }, + { + "name": "10573 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/port-chester-ny-10573/" + }, + { + "name": "10504 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/armonk-ny-10504/" + }, + { + "name": "06910 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/stamford-ct-06910/" + }, + { + "name": "06903 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/stamford-ct-06903/" + }, + { + "name": "06902 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/stamford-ct-06902/" + }, + { + "name": "06878 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/riverside-ct-06878/" + }, + { + "name": "06870 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/old-greenwich-ct-06870/" + }, + { + "name": "10506 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/bedford-ny-10506/" + }, + { + "name": "10580 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/rye-ny-10580/" + }, + { + "name": "10577 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/purchase-ny-10577/" + }, + { + "name": "06905 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/stamford-ct-06905/" + } + ] + } + ] + }, + "hamptons": { + "name": "The Hamptons", + "source_url": "https://www.compass.com/neighborhood-guides/hamptons/", + "retrieved_at": "2026-09-07T09:33:07.357Z", + "source_html_sha256": "049eb16ec479e17b66dbf0784e6e17d2ea005671141b088c85b4f2167a596502", + "headline": "Tour The Hamptons' most desirable areas to live.", + "description": "Majestic homes stand as a testament to architectural beauty, seamlessly framed by pristine landscapes and legendary beaches, creating an idyllic oasis. Known for its rich vein of history and a dynamic arts community, the Hamptons offers captivating charm and endless enrichment. More than merely a prestigious destination, it provides the perfect canvas upon which to establish enduring roots, offering a luxurious coastal lifestyle complemented by world-class dining, bespoke shopping, and exclusive cultural pursuits.", + "hero": null, + "cards": [ + { + "name": "Amagansett", + "source_url": "https://www.compass.com/neighborhood-guides/hamptons/amagansett/", + "image": "/static/external_cache/region-guide-42bc0596bce3.webp" + }, + { + "name": "Bridgehampton", + "source_url": "https://www.compass.com/neighborhood-guides/hamptons/bridgehampton/", + "image": "/static/external_cache/region-guide-47def130b05c.webp" + }, + { + "name": "East Hampton Village", + "source_url": "https://www.compass.com/neighborhood-guides/hamptons/east-hampton/", + "image": "/static/external_cache/region-guide-e1910efa0cbb.webp" + }, + { + "name": "Montauk", + "source_url": "https://www.compass.com/neighborhood-guides/hamptons/montauk/", + "image": "/static/external_cache/region-guide-e5aa32198e8b.webp" + }, + { + "name": "Sagaponack", + "source_url": "https://www.compass.com/neighborhood-guides/hamptons/sagaponack/", + "image": "/static/external_cache/region-guide-57769852e3b6.webp" + }, + { + "name": "Sag Harbor", + "source_url": "https://www.compass.com/neighborhood-guides/hamptons/sag-harbor/", + "image": "/static/external_cache/region-guide-f52118027891.webp" + }, + { + "name": "Southampton Village", + "source_url": "https://www.compass.com/neighborhood-guides/hamptons/southampton/", + "image": "/static/external_cache/region-guide-63852d0a58f8.webp" + }, + { + "name": "Westhampton Beach", + "source_url": "https://www.compass.com/neighborhood-guides/hamptons/westhampton-beach/", + "image": "/static/external_cache/region-guide-642c7d4137cb.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby The Hamptons Neighborhoods", + "links": [ + { + "name": "Amagansett Dunes Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/amagansett-dunes-amagansett-ny/" + }, + { + "name": "Wainscott South Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/wainscott-south-wainscott-ny/" + }, + { + "name": "Wainscott North Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/wainscott-north-east-hampton-ny/" + }, + { + "name": "Springs Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/springs-east-hampton-ny/" + }, + { + "name": "Sag Harbor Village Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sag-harbor-village-sag-harbor-ny/" + }, + { + "name": "Sagaponack South Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sagaponack-south-sagaponack-ny/" + }, + { + "name": "Sagaponack North Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sagaponack-north-sagaponack-ny/" + }, + { + "name": "Northwest Woods Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/northwest-woods-east-hampton-ny/" + }, + { + "name": "Northwest Harbor Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/northwest-harbor-east-hampton-ny/" + }, + { + "name": "North Haven Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-haven-sag-harbor-ny/" + }, + { + "name": "Napeague Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/napeague-amagansett-ny/" + }, + { + "name": "Fire Island Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/fire-island-ny/" + }, + { + "name": "East Hampton Village North Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/east-hampton-village-north-east-hampton-ny/" + }, + { + "name": "East Hampton Village Fringe Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/east-hampton-village-fringe-east-hampton-ny/" + }, + { + "name": "East Hampton Village Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/east-hampton-village-east-hampton-ny/" + } + ] + }, + { + "title": "Homes in Nearby The Hamptons Cities", + "links": [ + { + "name": "Westhampton Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/westhampton-ny/" + }, + { + "name": "Water Mill Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/water-mill-ny/" + }, + { + "name": "Wainscott Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/wainscott-ny/" + }, + { + "name": "Speonk Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/speonk-ny/" + }, + { + "name": "Sag Harbor Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sag-harbor-ny/" + }, + { + "name": "Sagaponack Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sagaponack-ny/" + }, + { + "name": "Riverhead Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/riverhead-ny/" + }, + { + "name": "Remsenburg Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/remsenburg-ny/" + }, + { + "name": "Quogue Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/quogue-ny/" + }, + { + "name": "Montauk Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/montauk-ny/" + }, + { + "name": "Hampton Bays Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hampton-bays-ny/" + }, + { + "name": "East Quogue Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/east-quogue-ny/" + }, + { + "name": "Eastport Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/eastport-ny/" + }, + { + "name": "East Moriches Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/east-moriches-ny/" + }, + { + "name": "East Hampton Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/east-hampton-ny/" + } + ] + }, + { + "title": "Homes in Nearby The Hamptons Zip Codes", + "links": [ + { + "name": "11978 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/westhampton-beach-ny-11978/" + }, + { + "name": "11977 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/westhampton-ny-11977/" + }, + { + "name": "11976 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/water-mill-ny-11976/" + }, + { + "name": "11975 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/wainscott-ny-11975/" + }, + { + "name": "11972 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/speonk-ny-11972/" + }, + { + "name": "11968 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/southampton-ny-11968/" + }, + { + "name": "11963 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sag-harbor-ny-11963/" + }, + { + "name": "11962 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sagaponack-ny-11962/" + }, + { + "name": "11960 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/remsenburg-ny-11960/" + }, + { + "name": "11959 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/quogue-ny-11959/" + }, + { + "name": "11954 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/montauk-ny-11954/" + }, + { + "name": "11946 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hampton-bays-ny-11946/" + }, + { + "name": "11942 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/east-quogue-ny-11942/" + }, + { + "name": "11941 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/eastport-ny-11941/" + }, + { + "name": "11937 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/east-hampton-ny-11937/" + } + ] + } + ] + }, + "houston": { + "name": "Houston", + "source_url": "https://www.compass.com/neighborhood-guides/houston/", + "retrieved_at": "2026-09-07T09:34:36.656Z", + "source_html_sha256": "8b7735cd52605834c5bf615312d18aff2fa901f7439fa47897fcb09d0559ffd6", + "headline": "Tour Houston's most desirable areas to live.", + "description": "Houston offers an exceptional blend of cosmopolitan energy and Southern hospitality, making it one of the most dynamic places to live in the United States. Known as Space City and home to the Texas Medical Center, the city thrives on innovation and opportunity. From elegant neighborhoods filled with stunning homes to a rich cultural scene and welcoming communities, Houston invites residents to enjoy a lifestyle that’s both vibrant and approachable. With its mix of diversity, green spaces, and easy access to the world, Houston truly offers something for everyone.", + "hero": "/static/external_cache/region-guide-b7047eed072d.webp", + "cards": [ + { + "name": "Afton Oaks", + "source_url": "https://www.compass.com/neighborhood-guides/houston/afton-oaks/", + "image": "/static/external_cache/region-guide-70ad8df27afd.webp" + }, + { + "name": "Avalon Place", + "source_url": "https://www.compass.com/neighborhood-guides/houston/avalon-place/", + "image": "/static/external_cache/region-guide-bb402ded3563.webp" + }, + { + "name": "Bellaire", + "source_url": "https://www.compass.com/neighborhood-guides/houston/bellaire/", + "image": "/static/external_cache/region-guide-0f333f7eba4a.webp" + }, + { + "name": "Brenham", + "source_url": "https://www.compass.com/neighborhood-guides/houston/brenham-tx/", + "image": "/static/external_cache/region-guide-ccbb36eecccc.webp" + }, + { + "name": "Briargrove", + "source_url": "https://www.compass.com/neighborhood-guides/houston/briargrove/", + "image": "/static/external_cache/region-guide-65de16807750.webp" + }, + { + "name": "Bryan/College Station", + "source_url": "https://www.compass.com/neighborhood-guides/houston/college-station-tx/", + "image": "/static/external_cache/region-guide-20f7493cb449.webp" + }, + { + "name": "Cypress", + "source_url": "https://www.compass.com/neighborhood-guides/houston/cypress/", + "image": "/static/external_cache/region-guide-e5320fd66b2a.webp" + }, + { + "name": "Garden Oaks-Oak Forest", + "source_url": "https://www.compass.com/neighborhood-guides/houston/garden-oaks-houston-tx/", + "image": "/static/external_cache/region-guide-dcef6be380b3.webp" + }, + { + "name": "Heights-Greater Heights", + "source_url": "https://www.compass.com/neighborhood-guides/houston/the-heights/", + "image": "/static/external_cache/region-guide-287c031cafc9.webp" + }, + { + "name": "Memorial", + "source_url": "https://www.compass.com/neighborhood-guides/houston/memorial/", + "image": "/static/external_cache/region-guide-73a562f3ebe5.webp" + }, + { + "name": "Memorial Villages", + "source_url": "https://www.compass.com/neighborhood-guides/houston/memorial-villages/", + "image": "/static/external_cache/region-guide-95cb7ca369e6.webp" + }, + { + "name": "Montrose", + "source_url": "https://www.compass.com/neighborhood-guides/houston/montrose/", + "image": "/static/external_cache/region-guide-8336459a6857.webp" + }, + { + "name": "Oak Estates", + "source_url": "https://www.compass.com/neighborhood-guides/houston/oak-estates-houston-tx/", + "image": "/static/external_cache/region-guide-21a161da1ca6.webp" + }, + { + "name": "River Oaks", + "source_url": "https://www.compass.com/neighborhood-guides/houston/river-oaks/", + "image": "/static/external_cache/region-guide-a2df976413ce.webp" + }, + { + "name": "Southampton Place", + "source_url": "https://www.compass.com/neighborhood-guides/houston/southampton-place/", + "image": "/static/external_cache/region-guide-07846aa3eb69.webp" + }, + { + "name": "Sugar Land", + "source_url": "https://www.compass.com/neighborhood-guides/houston/sugar-land-tx/", + "image": "/static/external_cache/region-guide-e466aed440f9.webp" + }, + { + "name": "Tanglewood", + "source_url": "https://www.compass.com/neighborhood-guides/houston/tanglewood/", + "image": "/static/external_cache/region-guide-56974d5dde09.webp" + }, + { + "name": "The Woodlands", + "source_url": "https://www.compass.com/neighborhood-guides/houston/the-woodlands/", + "image": "/static/external_cache/region-guide-1a8fd5b801a4.webp" + }, + { + "name": "West University-Southside Area", + "source_url": "https://www.compass.com/neighborhood-guides/houston/west-university/", + "image": "/static/external_cache/region-guide-3ee0cb81c0aa.webp" + }, + { + "name": "Katy", + "source_url": "https://www.compass.com/neighborhood-guides/houston/katy-tx/", + "image": "/static/external_cache/region-guide-6a4f31f06352.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Houston Neighborhoods", + "links": [ + { + "name": "Woodland Acres Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/woodland-acres-houston-tx/" + }, + { + "name": "Woodforest Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/woodforest-houston-tx/" + }, + { + "name": "South End Villa Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/south-end-villa-houston-tx/" + }, + { + "name": "Royal Oaks Country Club Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/royal-oaks-country-club-houston-tx/" + }, + { + "name": "Riviera East Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/riviera-east-houston-tx/" + }, + { + "name": "Oaks of Lawndale Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/oaks-of-lawndale-houston-tx/" + }, + { + "name": "Oakland Place Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/oakland-place-houston-tx/" + }, + { + "name": "Mount Vernon Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mount-vernon-pasadena-tx/" + }, + { + "name": "Midtown Houston Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/midtown-houston-houston-tx/" + }, + { + "name": "Midtown Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/midtown-houston-tx/" + }, + { + "name": "Magnolia Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/magnolia-park-houston-tx/" + }, + { + "name": "Houston Theater District Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/houston-theater-district-houston-tx/" + }, + { + "name": "Home Estates Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/home-estates-houston-tx/" + }, + { + "name": "Greater Eastwood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/greater-eastwood-houston-tx/" + }, + { + "name": "Fullerton Place Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/fullerton-place-houston-tx/" + } + ] + }, + { + "title": "Homes in Nearby Houston Cities", + "links": [ + { + "name": "West University Place Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/west-university-place-tx/" + }, + { + "name": "Webster Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/webster-tx/" + }, + { + "name": "Tomball Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/tomball-tx/" + }, + { + "name": "The Woodlands Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/the-woodlands-tx/" + }, + { + "name": "Sugar Land Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sugar-land-tx/" + }, + { + "name": "Spring Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/spring-tx/" + }, + { + "name": "South Houston Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/south-houston-tx/" + }, + { + "name": "Pearland Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/pearland-tx/" + }, + { + "name": "North Houston Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-houston-tx/" + }, + { + "name": "Missouri City Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/missouri-city-tx/" + }, + { + "name": "Kingwood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/kingwood-tx/" + }, + { + "name": "Katy Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/katy-tx/" + }, + { + "name": "Jersey Village Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/jersey-village-tx/" + }, + { + "name": "Humble Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/humble-tx/" + }, + { + "name": "Galena Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/galena-park-tx/" + } + ] + }, + { + "title": "Homes in Nearby Houston Zip Codes", + "links": [ + { + "name": "77491 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/katy-tx-77491/" + }, + { + "name": "77489 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/missouri-city-tx-77489/" + }, + { + "name": "77484 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/waller-tx-77484/" + }, + { + "name": "77459 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/missouri-city-tx-77459/" + }, + { + "name": "77441 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/fulshear-tx-77441/" + }, + { + "name": "77407 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/richmond-tx-77407/" + }, + { + "name": "77406 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/richmond-tx-77406/" + }, + { + "name": "77389 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/spring-tx-77389/" + }, + { + "name": "77388 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/spring-tx-77388/" + }, + { + "name": "77379 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/spring-tx-77379/" + }, + { + "name": "77377 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/tomball-tx-77377/" + }, + { + "name": "77095 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/houston-tx-77095/" + }, + { + "name": "77072 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/houston-tx-77072/" + }, + { + "name": "77070 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/houston-tx-77070/" + }, + { + "name": "77063 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/houston-tx-77063/" + } + ] + } + ] + }, + "indianapolis": { + "name": "Indiana", + "source_url": "https://www.compass.com/neighborhood-guides/indianapolis/", + "retrieved_at": "2026-09-07T09:35:41.993Z", + "source_html_sha256": "4486990bd92360f0187cb0e7845758a48668d304b837bc2099dbd69f204c0583", + "headline": "Tour Indiana's most desirable areas to live.", + "description": "Indiana offers a welcoming blend of Midwestern charm and growing modern appeal, making it an inviting place to call home. Known for its friendly communities, affordable living, and strong sense of tradition, also boasts vibrant cities, thriving arts scenes, and top-tier universities. The state’s passionate sports culture shines through iconic events and teams, from the legendary Indianapolis 500 to the beloved Colts and Pacers. The scenic beauty of its rural landscapes, Indiana combines small-town warmth with urban conveniences, offering residents a balanced and enriching lifestyle.", + "hero": "/static/external_cache/region-guide-2b8766ddea03.webp", + "cards": [ + { + "name": "Broad Ripple Village", + "source_url": "https://www.compass.com/neighborhood-guides/indianapolis/broad-ripple/", + "image": "/static/external_cache/region-guide-3ee32bb32400.webp" + }, + { + "name": "Carmel", + "source_url": "https://www.compass.com/neighborhood-guides/indianapolis/carmel/", + "image": "/static/external_cache/region-guide-0d79f94a7b31.webp" + }, + { + "name": "Fishers", + "source_url": "https://www.compass.com/neighborhood-guides/indianapolis/fishers/", + "image": "/static/external_cache/region-guide-d11eab911279.webp" + }, + { + "name": "Fountain Square", + "source_url": "https://www.compass.com/neighborhood-guides/indianapolis/fountain-square/", + "image": "/static/external_cache/region-guide-d23a8056fa2a.webp" + }, + { + "name": "Village of West Clay", + "source_url": "https://www.compass.com/neighborhood-guides/indianapolis/villiage-of-west-clay/", + "image": "/static/external_cache/region-guide-9c146c694bae.webp" + }, + { + "name": "Zionsville", + "source_url": "https://www.compass.com/neighborhood-guides/indianapolis/zionsville/", + "image": "/static/external_cache/region-guide-dbb45b57486f.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Indiana Neighborhoods", + "links": [ + { + "name": "Carson Heights Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/carson-heights-indianapolis-in/" + }, + { + "name": "Maple Lawn Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/maple-lawn-indianapolis-in/" + }, + { + "name": "I65-South Emerson Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/i65-south-emerson-indianapolis-in/" + }, + { + "name": "Home Place Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/home-place-indianapolis-in/" + }, + { + "name": "Farhill Downs Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/farhill-downs-indianapolis-in/" + }, + { + "name": "Edgewood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/edgewood-indianapolis-in/" + }, + { + "name": "Decatur Township - Marion County Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/decatur-township-marion-county-in/" + }, + { + "name": "Cobblestone Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/cobblestone-indianapolis-in/" + }, + { + "name": "Chesterton Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/chesterton-indianapolis-in/" + }, + { + "name": "Carson Square Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/carson-square-indianapolis-in/" + }, + { + "name": "University Heights and Rosedale Hills Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/university-heights-and-rosedale-hills-indianapolis-in/" + }, + { + "name": "Tremont Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/tremont-indianapolis-in/" + }, + { + "name": "The Retreat Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/the-retreat-indianapolis-in/" + }, + { + "name": "The Groves at Camby Village Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/the-groves-at-camby-village-camby-in/" + }, + { + "name": "Southdale Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/southdale-indianapolis-in/" + } + ] + }, + { + "title": "Homes in Nearby Indiana Cities", + "links": [ + { + "name": "Zionsville Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/zionsville-in/" + }, + { + "name": "West Newton Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/west-newton-in/" + }, + { + "name": "Plainfield Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/plainfield-in/" + }, + { + "name": "McCordsville Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mccordsville-in/" + }, + { + "name": "Greenwood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/greenwood-in/" + }, + { + "name": "Fishers Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/fishers-in/" + }, + { + "name": "Carmel Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/carmel-in/" + }, + { + "name": "Camby Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/camby-in/" + }, + { + "name": "Brownsburg Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/brownsburg-in/" + }, + { + "name": "Beech Grove Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/beech-grove-in/" + }, + { + "name": "Avon Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/avon-in/" + }, + { + "name": "Whitestown Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/whitestown-in/" + }, + { + "name": "Mooresville Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mooresville-in/" + }, + { + "name": "New Palestine Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/new-palestine-in/" + }, + { + "name": "Fortville Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/fortville-in/" + } + ] + }, + { + "title": "Homes in Nearby Indiana Zip Codes", + "links": [ + { + "name": "46290 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/indianapolis-in-46290/" + }, + { + "name": "46283 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/indianapolis-in-46283/" + }, + { + "name": "46280 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/indianapolis-in-46280/" + }, + { + "name": "46278 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/indianapolis-in-46278/" + }, + { + "name": "46268 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/indianapolis-in-46268/" + }, + { + "name": "46241 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/indianapolis-in-46241/" + }, + { + "name": "46239 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/indianapolis-in-46239/" + }, + { + "name": "46237 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/indianapolis-in-46237/" + }, + { + "name": "46234 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/indianapolis-in-46234/" + }, + { + "name": "46231 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/indianapolis-in-46231/" + }, + { + "name": "46227 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/indianapolis-in-46227/" + }, + { + "name": "46222 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/indianapolis-in-46222/" + }, + { + "name": "46221 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/indianapolis-in-46221/" + }, + { + "name": "46220 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/indianapolis-in-46220/" + }, + { + "name": "46183 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/west-newton-in-46183/" + } + ] + } + ] + }, + "la": { + "name": "Southern California", + "source_url": "https://www.compass.com/neighborhood-guides/la/", + "retrieved_at": "2026-09-07T09:33:08.181Z", + "source_html_sha256": "3bcdf8447f90a757198b73736fd095057f51ef9ea39756298fa8a708fcc3c313", + "headline": "Tour Southern California's most desirable areas to live.", + "description": "", + "hero": null, + "cards": [ + { + "name": "Bel Air-Holmby Hills", + "source_url": "https://www.compass.com/neighborhood-guides/la/bel-air-holmby-hills/", + "image": "/static/external_cache/region-guide-531f584795fe.webp" + }, + { + "name": "Beverly Hills", + "source_url": "https://www.compass.com/neighborhood-guides/la/beverly-hills/", + "image": "/static/external_cache/region-guide-134e48552a3a.webp" + }, + { + "name": "Brentwood", + "source_url": "https://www.compass.com/neighborhood-guides/la/brentwood/", + "image": "/static/external_cache/region-guide-602d0f891aac.webp" + }, + { + "name": "Century City", + "source_url": "https://www.compass.com/neighborhood-guides/la/century-city/", + "image": "/static/external_cache/region-guide-7a25621755fe.webp" + }, + { + "name": "Echo Park", + "source_url": "https://www.compass.com/neighborhood-guides/la/echo-park/", + "image": "/static/external_cache/region-guide-00b8c0a99067.webp" + }, + { + "name": "Encino", + "source_url": "https://www.compass.com/neighborhood-guides/la/encino/", + "image": "/static/external_cache/region-guide-b5920ddfe980.webp" + }, + { + "name": "Hancock Park-Wilshire", + "source_url": "https://www.compass.com/neighborhood-guides/la/hancock-park-wilshire/", + "image": "/static/external_cache/region-guide-6974ae4936f9.webp" + }, + { + "name": "La Canada Flintridge", + "source_url": "https://www.compass.com/neighborhood-guides/la/la-canada-flintridge/", + "image": "/static/external_cache/region-guide-d004de403827.webp" + }, + { + "name": "Los Feliz", + "source_url": "https://www.compass.com/neighborhood-guides/la/los-feliz/", + "image": "/static/external_cache/region-guide-a35c15cba543.webp" + }, + { + "name": "Hollywood", + "source_url": "https://www.compass.com/neighborhood-guides/la/hollywood/", + "image": "/static/external_cache/region-guide-4788dec674ce.webp" + }, + { + "name": "Malibu", + "source_url": "https://www.compass.com/neighborhood-guides/la/malibu/", + "image": "/static/external_cache/region-guide-a3a6b9027f89.webp" + }, + { + "name": "Santa Monica", + "source_url": "https://www.compass.com/neighborhood-guides/la/santa-monica/", + "image": "/static/external_cache/region-guide-44e852f3f7f1.webp" + }, + { + "name": "Sherman Oaks", + "source_url": "https://www.compass.com/neighborhood-guides/la/sherman-oaks/", + "image": "/static/external_cache/region-guide-3598c1239ced.webp" + }, + { + "name": "South Bay", + "source_url": "https://www.compass.com/neighborhood-guides/la/south-bay/", + "image": "/static/external_cache/region-guide-d6c5644605b6.webp" + }, + { + "name": "Studio City", + "source_url": "https://www.compass.com/neighborhood-guides/la/studio-city/", + "image": "/static/external_cache/region-guide-c4eff4c044b0.webp" + }, + { + "name": "Sunset Strip", + "source_url": "https://www.compass.com/neighborhood-guides/la/sunset-strip/", + "image": "/static/external_cache/region-guide-4431f99e1165.webp" + }, + { + "name": "Venice", + "source_url": "https://www.compass.com/neighborhood-guides/la/venice/", + "image": "/static/external_cache/region-guide-89e3a0b4d17c.webp" + }, + { + "name": "Palm Springs", + "source_url": "https://www.compass.com/neighborhood-guides/la/palm-springs/", + "image": "/static/external_cache/region-guide-007b403eb86a.webp" + }, + { + "name": "West Hollywood", + "source_url": "https://www.compass.com/neighborhood-guides/la/west-hollywood/", + "image": "/static/external_cache/region-guide-de09920e7cab.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Southern California Neighborhoods", + "links": [ + { + "name": "Westmont Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/westmont-los-angeles-ca/" + }, + { + "name": "West Athens Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/west-athens-los-angeles-ca/" + }, + { + "name": "Vermont Vista Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/vermont-vista-los-angeles-ca/" + }, + { + "name": "South Los Angeles Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/south-los-angeles-los-angeles-ca/" + }, + { + "name": "Pico-Union Historic District Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/pico-union-historic-district-los-angeles-ca/" + }, + { + "name": "Palos Verdes Drive South Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/palos-verdes-drive-south-rancho-palos-verdes-ca/" + }, + { + "name": "Palos Verdes Drive North Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/palos-verdes-drive-north-rancho-palos-verdes-ca/" + }, + { + "name": "Northwest San Pedro Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/northwest-san-pedro-san-pedro-ca/" + }, + { + "name": "North San Pedro Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-san-pedro-san-pedro-ca/" + }, + { + "name": "Miraleste Pines Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miraleste-pines-san-pedro-ca/" + }, + { + "name": "Mira Catalina Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mira-catalina-rancho-palos-verdes-ca/" + }, + { + "name": "Metropolitan Southwest Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/metropolitan-southwest-los-angeles-ca/" + }, + { + "name": "Los Angeles Southwest Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/los-angeles-southwest-los-angeles-ca/" + }, + { + "name": "Los Angeles South Shores Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/los-angeles-south-shores-san-pedro-ca/" + }, + { + "name": "Historic Downtown Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/historic-downtown-los-angeles-ca/" + } + ] + }, + { + "title": "Homes in Nearby Southern California Cities", + "links": [ + { + "name": "West Hollywood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/west-hollywood-ca/" + }, + { + "name": "Valley Village Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/valley-village-ca/" + }, + { + "name": "Toluca Lake Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/toluca-lake-ca/" + }, + { + "name": "Simi Valley Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/simi-valley-ca/" + }, + { + "name": "Shadow Hills Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/shadow-hills-ca/" + }, + { + "name": "San Pedro Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-pedro-ca/" + }, + { + "name": "San Fernando Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-fernando-ca/" + }, + { + "name": "Porter Ranch Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/porter-ranch-ca/" + }, + { + "name": "Panorama City Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/panorama-city-ca/" + }, + { + "name": "Pacoima Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/pacoima-ca/" + }, + { + "name": "North Hollywood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-hollywood-ca/" + }, + { + "name": "Newhall Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/newhall-ca/" + }, + { + "name": "Inglewood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/inglewood-ca/" + }, + { + "name": "Hawthorne Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hawthorne-ca/" + }, + { + "name": "Encino Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/encino-ca/" + } + ] + }, + { + "title": "Homes in Nearby Southern California Zip Codes", + "links": [ + { + "name": "93063 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/simi-valley-ca-93063/" + }, + { + "name": "91754 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/monterey-park-ca-91754/" + }, + { + "name": "91330 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/northridge-ca-91330/" + }, + { + "name": "91325 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/northridge-ca-91325/" + }, + { + "name": "91321 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/newhall-ca-91321/" + }, + { + "name": "90302 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/inglewood-ca-90302/" + }, + { + "name": "90301 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/inglewood-ca-90301/" + }, + { + "name": "90250 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hawthorne-ca-90250/" + }, + { + "name": "90079 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/los-angeles-ca-90079/" + }, + { + "name": "90062 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/los-angeles-ca-90062/" + }, + { + "name": "90056 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/los-angeles-ca-90056/" + }, + { + "name": "90047 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/los-angeles-ca-90047/" + }, + { + "name": "90043 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/los-angeles-ca-90043/" + }, + { + "name": "90018 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/los-angeles-ca-90018/" + }, + { + "name": "90014 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/los-angeles-ca-90014/" + } + ] + } + ] + }, + "lake_tahoe": { + "name": "Lake Tahoe, Reno, Mammoth Lakes", + "source_url": "https://www.compass.com/neighborhood-guides/lake_tahoe/", + "retrieved_at": "2026-09-07T09:35:24.411Z", + "source_html_sha256": "12651356bfb31ea5337335202f003fddf534e6c8de46ebfe3cd4b95c5239b327", + "headline": "Tour Lake Tahoe, Reno, Mammoth Lakes' most desirable areas to live.", + "description": "Nestled in the Sierra Nevada mountains, the Lake Tahoe, Reno, and Mammoth Lakes region offers stunning natural beauty, year-round recreation, and vibrant communities. From Lake Tahoe’s clear waters and ski resorts, to Mammoth Lakes’ alpine charm, and Reno’s growing cultural scene, the area attracts adventurers, families, and second-home buyers. Whether you prefer lakefront living, mountain retreats, or Nevada’s tax-friendly benefits, this region offers breathtaking views and something for everyone.", + "hero": "/static/external_cache/region-guide-cc0bdfa50d33.webp", + "cards": [ + { + "name": "East Shore", + "source_url": "https://www.compass.com/neighborhood-guides/lake_tahoe/east-shore/", + "image": "/static/external_cache/region-guide-78ed49ac8c9e.webp" + }, + { + "name": "Incline Village", + "source_url": "https://www.compass.com/neighborhood-guides/lake_tahoe/incline-village/", + "image": "/static/external_cache/region-guide-e82115c0756f.webp" + }, + { + "name": "Northstar", + "source_url": "https://www.compass.com/neighborhood-guides/lake_tahoe/northstar/", + "image": "/static/external_cache/region-guide-aef8435e1ce2.webp" + }, + { + "name": "Reno", + "source_url": "https://www.compass.com/neighborhood-guides/lake_tahoe/reno/", + "image": "/static/external_cache/region-guide-c900ee7bf8ba.webp" + }, + { + "name": "South Lake Tahoe", + "source_url": "https://www.compass.com/neighborhood-guides/lake_tahoe/south-lake-tahoe/", + "image": "/static/external_cache/region-guide-6719709095b8.webp" + }, + { + "name": "Tahoe City", + "source_url": "https://www.compass.com/neighborhood-guides/lake_tahoe/tahoe-city/", + "image": "/static/external_cache/region-guide-3a61c7ade1d0.webp" + }, + { + "name": "Truckee", + "source_url": "https://www.compass.com/neighborhood-guides/lake_tahoe/truckee/", + "image": "/static/external_cache/region-guide-9fce604481df.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Lake Tahoe, Reno, Mammoth Lakes Neighborhoods", + "links": [ + { + "name": "The Meadows Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/the-meadows-truckee-ca/" + }, + { + "name": "Sugar Pine Estates Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sugar-pine-estates-truckee-ca/" + }, + { + "name": "Spring Creek Tract Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/spring-creek-tract-south-lake-tahoe-ca/" + }, + { + "name": "Rubicon Bay Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/rubicon-bay-tahoma-ca/" + }, + { + "name": "Prosser Lakeview Estates Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/prosser-lakeview-estates-truckee-ca/" + }, + { + "name": "Prosser Lake Heights Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/prosser-lake-heights-truckee-ca/" + }, + { + "name": "Prosser Lake Acreages Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/prosser-lake-acreages-truckee-ca/" + }, + { + "name": "Prosser Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/prosser-truckee-ca/" + }, + { + "name": "Pannonia Ranchos Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/pannonia-ranchos-truckee-ca/" + }, + { + "name": "Olympic Valley Area Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/olympic-valley-area-olympic-valley-ca/" + }, + { + "name": "North Upper Truckee Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-upper-truckee-south-lake-tahoe-ca/" + }, + { + "name": "Meeks Bay Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/meeks-bay-tahoma-ca/" + }, + { + "name": "Kingvale Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/kingvale-soda-springs-ca/" + }, + { + "name": "Hidden Woods Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hidden-woods-zephyr-cove-nv/" + }, + { + "name": "Glenshire Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/glenshire-truckee-ca/" + } + ] + }, + { + "title": "Homes in Nearby Lake Tahoe, Reno, Mammoth Lakes Cities", + "links": [ + { + "name": "Zephyr Cove Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/zephyr-cove-nv/" + }, + { + "name": "Twin Bridges Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/twin-bridges-ca/" + }, + { + "name": "Truckee Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/truckee-ca/" + }, + { + "name": "Tahoma Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/tahoma-ca/" + }, + { + "name": "Tahoe Vista Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/tahoe-vista-ca/" + }, + { + "name": "Tahoe City Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/tahoe-city-ca/" + }, + { + "name": "Stateline Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/stateline-nv/" + }, + { + "name": "South Lake Tahoe Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/south-lake-tahoe-ca/" + }, + { + "name": "Soda Springs Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/soda-springs-ca/" + }, + { + "name": "Olympic Valley Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/olympic-valley-ca/" + }, + { + "name": "Kings Beach Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/kings-beach-ca/" + }, + { + "name": "Incline Village Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/incline-village-nv/" + }, + { + "name": "Homewood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/homewood-ca/" + }, + { + "name": "Glenbrook Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/glenbrook-nv/" + }, + { + "name": "Genoa Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/genoa-nv/" + } + ] + }, + { + "title": "Homes in Nearby Lake Tahoe, Reno, Mammoth Lakes Zip Codes", + "links": [ + { + "name": "96150 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/south-lake-tahoe-ca-96150/" + }, + { + "name": "96148 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/tahoe-vista-ca-96148/" + }, + { + "name": "96143 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/kings-beach-ca-96143/" + }, + { + "name": "96142 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/tahoma-ca-96142/" + }, + { + "name": "96140 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/carnelian-bay-ca-96140/" + }, + { + "name": "96120 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/markleeville-ca-96120/" + }, + { + "name": "96111 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/floriston-ca-96111/" + }, + { + "name": "95728 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/soda-springs-ca-95728/" + }, + { + "name": "95724 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/norden-ca-95724/" + }, + { + "name": "95721 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/echo-lake-ca-95721/" + }, + { + "name": "95715 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/emigrant-gap-ca-95715/" + }, + { + "name": "89705 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/carson-city-nv-89705/" + }, + { + "name": "89703 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/carson-city-nv-89703/" + }, + { + "name": "89511 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/reno-nv-89511/" + }, + { + "name": "89460 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/gardnerville-nv-89460/" + } + ] + } + ] + }, + "miami": { + "name": "South Florida", + "source_url": "https://www.compass.com/neighborhood-guides/miami/", + "retrieved_at": "2026-09-07T09:31:46.255Z", + "source_html_sha256": "0fd384db581361f5e9971ed4992244a8d050aa7a116232c962a04688a0214686", + "headline": "Tour South Florida's most desirable areas to live.", + "description": "", + "hero": "/static/external_cache/region-guide-b1f074b80d87.webp", + "cards": [ + { + "name": "Aventura", + "source_url": "https://www.compass.com/neighborhood-guides/miami/aventura/", + "image": "/static/external_cache/region-guide-8af4ed3ccdd9.webp" + }, + { + "name": "Bal Harbour", + "source_url": "https://www.compass.com/neighborhood-guides/miami/bal-harbour/", + "image": "/static/external_cache/region-guide-d8be010d8c61.webp" + }, + { + "name": "Boca Raton", + "source_url": "https://www.compass.com/neighborhood-guides/miami/boca-raton/", + "image": "/static/external_cache/region-guide-eddc668623ef.webp" + }, + { + "name": "Brickell", + "source_url": "https://www.compass.com/neighborhood-guides/miami/Brickell/", + "image": "/static/external_cache/region-guide-b062dc972145.webp" + }, + { + "name": "Coconut Grove", + "source_url": "https://www.compass.com/neighborhood-guides/miami/coconut-grove/", + "image": "/static/external_cache/region-guide-13002aa2ff67.webp" + }, + { + "name": "Coral Gables", + "source_url": "https://www.compass.com/neighborhood-guides/miami/coral-gables/", + "image": "/static/external_cache/region-guide-4b514a762f53.webp" + }, + { + "name": "Downtown Miami", + "source_url": "https://www.compass.com/neighborhood-guides/miami/downtown-miami/", + "image": "/static/external_cache/region-guide-6bbd64d55423.webp" + }, + { + "name": "Midtown Miami", + "source_url": "https://www.compass.com/neighborhood-guides/miami/midtown-miami/", + "image": "/static/external_cache/region-guide-f6d0a1592de9.webp" + }, + { + "name": "North Beach", + "source_url": "https://www.compass.com/neighborhood-guides/miami/north-beach/", + "image": "/static/external_cache/region-guide-244186948090.webp" + }, + { + "name": "Central Beach", + "source_url": "https://www.compass.com/neighborhood-guides/miami/central-beach/", + "image": "/static/external_cache/region-guide-82fa3089a68f.webp" + }, + { + "name": "Coral Springs", + "source_url": "https://www.compass.com/neighborhood-guides/miami/coral-springs/", + "image": "/static/external_cache/region-guide-87c50f01975c.webp" + }, + { + "name": "Deerfield Beach", + "source_url": "https://www.compass.com/neighborhood-guides/miami/deerfield-beach/", + "image": "/static/external_cache/region-guide-b6f56795354a.webp" + }, + { + "name": "Delray Beach", + "source_url": "https://www.compass.com/neighborhood-guides/miami/Delray-Beach/", + "image": "/static/external_cache/region-guide-e28ee366f2ec.webp" + }, + { + "name": "Edgewater", + "source_url": "https://www.compass.com/neighborhood-guides/miami/edgewater/", + "image": "/static/external_cache/region-guide-e1d72276b38b.webp" + }, + { + "name": "Fort Lauderdale", + "source_url": "https://www.compass.com/neighborhood-guides/miami/fort-lauderdale/", + "image": "/static/external_cache/region-guide-2fac0d94e219.webp" + }, + { + "name": "Hollywood", + "source_url": "https://www.compass.com/neighborhood-guides/miami/hollywood/", + "image": "/static/external_cache/region-guide-0309b51de403.webp" + }, + { + "name": "Jupiter", + "source_url": "https://www.compass.com/neighborhood-guides/miami/jupiter/", + "image": "/static/external_cache/region-guide-6715335adb85.webp" + }, + { + "name": "Key Biscayne", + "source_url": "https://www.compass.com/neighborhood-guides/miami/key-biscayne/", + "image": "/static/external_cache/region-guide-1d72b8c56db0.webp" + }, + { + "name": "Las Olas Isles", + "source_url": "https://www.compass.com/neighborhood-guides/miami/Las-Olas-Isles/", + "image": "/static/external_cache/region-guide-4504c805d6b0.webp" + }, + { + "name": "Palm Beach", + "source_url": "https://www.compass.com/neighborhood-guides/miami/palm-beach/", + "image": "/static/external_cache/region-guide-dc6d17f1a176.webp" + }, + { + "name": "Palm Beach Gardens", + "source_url": "https://www.compass.com/neighborhood-guides/miami/Palm-Beach-Gardens/", + "image": "/static/external_cache/region-guide-f82e76ad51a6.webp" + }, + { + "name": "Pembroke Pines", + "source_url": "https://www.compass.com/neighborhood-guides/miami/pembroke-pines/", + "image": "/static/external_cache/region-guide-355ca01b5eb3.webp" + }, + { + "name": "Pinecrest", + "source_url": "https://www.compass.com/neighborhood-guides/miami/pinecrest/", + "image": "/static/external_cache/region-guide-910c3329153e.webp" + }, + { + "name": "Plantation", + "source_url": "https://www.compass.com/neighborhood-guides/miami/plantation/", + "image": "/static/external_cache/region-guide-300b17635f54.webp" + }, + { + "name": "Pompano Beach", + "source_url": "https://www.compass.com/neighborhood-guides/miami/pompano-beach/", + "image": "/static/external_cache/region-guide-06e65f6c251e.webp" + }, + { + "name": "South Beach", + "source_url": "https://www.compass.com/neighborhood-guides/miami/south-beach/", + "image": "/static/external_cache/region-guide-a666fef6c455.webp" + }, + { + "name": "Sunrise", + "source_url": "https://www.compass.com/neighborhood-guides/miami/sunrise/", + "image": "/static/external_cache/region-guide-949b72077588.webp" + }, + { + "name": "Upper East Side", + "source_url": "https://www.compass.com/neighborhood-guides/miami/upper-east-side/", + "image": "/static/external_cache/region-guide-50188c0ecb69.webp" + }, + { + "name": "West Palm Beach", + "source_url": "https://www.compass.com/neighborhood-guides/miami/west-palm-beach/", + "image": "/static/external_cache/region-guide-2a40168f586f.webp" + }, + { + "name": "Weston", + "source_url": "https://www.compass.com/neighborhood-guides/miami/weston/", + "image": "/static/external_cache/region-guide-2fb73b99fc30.webp" + }, + { + "name": "Victoria Park", + "source_url": "https://www.compass.com/neighborhood-guides/miami/victoria-park/", + "image": "/static/external_cache/region-guide-710adcd108c6.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby South Florida Neighborhoods", + "links": [ + { + "name": "55 Merrick Condominiums Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/55-merrick-condominiums-miami-fl/" + }, + { + "name": "Shenandoah Manor Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/shenandoah-manor-miami-fl/" + }, + { + "name": "Parkdale South Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/parkdale-south-miami-fl/" + }, + { + "name": "Parkdale Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/parkdale-miami-fl/" + }, + { + "name": "Orange Heights Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/orange-heights-miami-fl/" + }, + { + "name": "Ocean View Heights Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/ocean-view-heights-miami-fl/" + }, + { + "name": "North Grove Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-grove-miami-fl/" + }, + { + "name": "Millerdale Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/millerdale-miami-fl/" + }, + { + "name": "Icon Brickell Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/icon-brickell-miami-fl/" + }, + { + "name": "Havana Lofts Condominiums Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/havana-lofts-condominiums-miami-fl/" + }, + { + "name": "Grovenor House Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/grovenor-house-miami-fl/" + }, + { + "name": "Grove Isle Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/grove-isle-miami-fl/" + }, + { + "name": "Flagler First Condominiums Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/flagler-first-condominiums-miami-fl/" + }, + { + "name": "El Lago Condominiums Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/el-lago-condominiums-miami-fl/" + }, + { + "name": "Brickell Biscayne Condominiums Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/brickell-biscayne-condominiums-miami-fl/" + } + ] + }, + { + "title": "Homes in Nearby South Florida Cities", + "links": [ + { + "name": "West Miami Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/west-miami-fl/" + }, + { + "name": "Miami Shores Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miami-shores-fl/" + }, + { + "name": "Coral Gables Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/coral-gables-fl/" + }, + { + "name": "Coconut Grove Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/coconut-grove-fl/" + }, + { + "name": "Hialeah Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hialeah-fl/" + }, + { + "name": "Miami Springs Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miami-springs-fl/" + }, + { + "name": "Miami Beach Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miami-beach-fl/" + }, + { + "name": "North Bay Village Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-bay-village-fl/" + }, + { + "name": "Doral Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/doral-fl/" + }, + { + "name": "South Miami Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/south-miami-fl/" + }, + { + "name": "North Miami Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-miami-fl/" + }, + { + "name": "Pinecrest Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/pinecrest-fl/" + }, + { + "name": "Surfside Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/surfside-fl/" + }, + { + "name": "Bay Harbor Islands Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/bay-harbor-islands-fl/" + }, + { + "name": "North Miami Beach Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-miami-beach-fl/" + } + ] + }, + { + "title": "Homes in Nearby South Florida Zip Codes", + "links": [ + { + "name": "33150 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miami-fl-33150/" + }, + { + "name": "33147 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miami-fl-33147/" + }, + { + "name": "33146 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miami-fl-33146/" + }, + { + "name": "33145 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miami-fl-33145/" + }, + { + "name": "33144 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miami-fl-33144/" + }, + { + "name": "33142 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miami-fl-33142/" + }, + { + "name": "33139 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miami-beach-fl-33139/" + }, + { + "name": "33138 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miami-fl-33138/" + }, + { + "name": "33137 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miami-fl-33137/" + }, + { + "name": "33136 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miami-fl-33136/" + }, + { + "name": "33135 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miami-fl-33135/" + }, + { + "name": "33134 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miami-fl-33134/" + }, + { + "name": "33133 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miami-fl-33133/" + }, + { + "name": "33132 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miami-fl-33132/" + }, + { + "name": "33131 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/miami-fl-33131/" + } + ] + } + ] + }, + "naples": { + "name": "Southwest Florida", + "source_url": "https://www.compass.com/neighborhood-guides/naples/", + "retrieved_at": "2026-09-07T09:34:09.194Z", + "source_html_sha256": "b984b202f8ece239c7dd972e34f589a2d34e5a020241f32125a24df4eddd1af3", + "headline": "Tour Southwest Florida's most desirable areas to live.", + "description": "Naples combines coastal charm with a vibrant, active lifestyle, making it one of Florida’s most sought-after places to live. As a certified Blue Zones community, it promotes healthy living through wellness initiatives, walkability, and a focus on longevity. From stunning beaches and premier golf courses to upscale shopping, dining, and a thriving pickleball scene, the city offers something for everyone.", + "hero": "/static/external_cache/region-guide-04a3ac4c25e7.webp", + "cards": [ + { + "name": "Grey Oaks", + "source_url": "https://www.compass.com/neighborhood-guides/naples/grey-oaks/", + "image": "/static/external_cache/region-guide-f966253ef06d.webp" + }, + { + "name": "Coquina Sands", + "source_url": "https://www.compass.com/neighborhood-guides/naples/coquina-sands/", + "image": "/static/external_cache/region-guide-80c4478696bd.webp" + }, + { + "name": "Naples Waterfront", + "source_url": "https://www.compass.com/neighborhood-guides/naples/naples-waterfront/", + "image": "/static/external_cache/region-guide-e7ea1d7ff48d.webp" + }, + { + "name": "Olde Naples", + "source_url": "https://www.compass.com/neighborhood-guides/naples/olde-naples/", + "image": "/static/external_cache/region-guide-3a47d3789bce.webp" + }, + { + "name": "Pelican Bay", + "source_url": "https://www.compass.com/neighborhood-guides/naples/pelican-bay/", + "image": "/static/external_cache/region-guide-02e657616e4c.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Southwest Florida Neighborhoods", + "links": [ + { + "name": "Aqualane Shores Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/aqualane-shores-naples-fl/" + }, + { + "name": "Bears Paw Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/bears-paw-naples-fl/" + }, + { + "name": "Central Naples Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/central-naples-fl/" + }, + { + "name": "Coquina Sands-Moorings-Park Shore Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/coquina-sands-moorings-park-shore-fl/" + }, + { + "name": "Design District Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/design-district-naples-fl/" + }, + { + "name": "Forest Lakes Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/forest-lakes-naples-fl/" + }, + { + "name": "Grey Oaks Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/grey-oaks-naples-fl/" + }, + { + "name": "Lake Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lake-park-naples-fl/" + }, + { + "name": "Midtown Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/midtown-naples-fl/" + }, + { + "name": "Moorings Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/moorings-naples-fl/" + }, + { + "name": "Moorings Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/moorings-park-naples-fl/" + }, + { + "name": "Naples Historic District Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/naples-historic-district-naples-fl/" + }, + { + "name": "Naples Square Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/naples-square-naples-fl/" + }, + { + "name": "North Naples Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-naples-naples-fl/" + }, + { + "name": "Oyster Bay Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/oyster-bay-naples-fl/" + } + ] + }, + { + "title": "Homes in Nearby Southwest Florida Cities", + "links": [ + { + "name": "Bonita Springs Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/bonita-springs-fl/" + }, + { + "name": "Marco Island Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/marco-island-fl/" + }, + { + "name": "Estero Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/estero-fl/" + }, + { + "name": "Goodland Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/goodland-fl/" + }, + { + "name": "Fort Myers Beach Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/fort-myers-beach-fl/" + }, + { + "name": "Sanibel Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sanibel-fl/" + }, + { + "name": "Fort Myers Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/fort-myers-fl/" + }, + { + "name": "Immokalee Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/immokalee-fl/" + }, + { + "name": "Cape Coral Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/cape-coral-fl/" + }, + { + "name": "Lehigh Acres Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lehigh-acres-fl/" + }, + { + "name": "St. James City Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/st-james-city-fl/" + }, + { + "name": "Felda Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/felda-fl/" + }, + { + "name": "Everglades City Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/everglades-city-fl/" + }, + { + "name": "Captiva Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/captiva-fl/" + }, + { + "name": "North Fort Myers Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-fort-myers-fl/" + } + ] + }, + { + "title": "Homes in Nearby Southwest Florida Zip Codes", + "links": [ + { + "name": "34113 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/naples-fl-34113/" + }, + { + "name": "34102 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/naples-fl-34102/" + }, + { + "name": "34103 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/naples-fl-34103/" + }, + { + "name": "34104 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/naples-fl-34104/" + }, + { + "name": "34105 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/naples-fl-34105/" + }, + { + "name": "34109 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/naples-fl-34109/" + }, + { + "name": "34112 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/naples-fl-34112/" + }, + { + "name": "34108 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/naples-fl-34108/" + }, + { + "name": "34116 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/naples-fl-34116/" + }, + { + "name": "34119 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/naples-fl-34119/" + }, + { + "name": "34110 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/naples-fl-34110/" + }, + { + "name": "34114 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/naples-fl-34114/" + }, + { + "name": "34117 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/naples-fl-34117/" + }, + { + "name": "34120 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/naples-fl-34120/" + }, + { + "name": "34134 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/bonita-springs-fl-34134/" + } + ] + } + ] + }, + "nyc": { + "name": "New York City", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/", + "retrieved_at": "2026-09-07T09:31:12.064Z", + "source_html_sha256": "e112a9bdd041de1b01d6af060b0f3766f8c4b263aff1b8090750cdc013015539", + "headline": "Tour New York City's most desirable areas to live.", + "description": "New York City, comprising five dynamic boroughs where the Hudson River meets the Atlantic Ocean, presents a captivating blend of historic charm and contemporary living. NYC stands as a global hub for commerce, finance, and culture, boasting iconic landmarks like the Empire State Building, Central Park, the dazzling Broadway theaters of Times Square, and so much more. Each borough offers a distinctive lifestyle, seamlessly integrating historic character with modern conveniences, creating an exceptional quality of life for all its residents.", + "hero": "/static/external_cache/region-guide-de18a9dfa8fc.webp", + "cards": [ + { + "name": "Astoria", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/astoria/", + "image": "/static/external_cache/region-guide-d69f1c2261f8.webp" + }, + { + "name": "Battery Park City", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/battery-park-city/", + "image": "/static/external_cache/region-guide-17fd8b47babb.webp" + }, + { + "name": "Bay Ridge", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/bay-ridge/", + "image": "/static/external_cache/region-guide-e594990d3bf7.webp" + }, + { + "name": "Bedford-Stuyvesant", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/bedford-stuyvesant/", + "image": "/static/external_cache/region-guide-049513bada27.webp" + }, + { + "name": "Boerum Hill", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/boerum-hill/", + "image": "/static/external_cache/region-guide-0186cbccea2a.webp" + }, + { + "name": "Brooklyn Heights", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/brooklyn-heights/", + "image": "/static/external_cache/region-guide-6a88d81be80b.webp" + }, + { + "name": "Carroll Gardens", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/carroll-gardens/", + "image": "/static/external_cache/region-guide-6bad18107b74.webp" + }, + { + "name": "Chelsea", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/chelsea/", + "image": "/static/external_cache/region-guide-528a84a5de65.webp" + }, + { + "name": "Chinatown", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/chinatown/", + "image": "/static/external_cache/region-guide-1eafae4fc3e7.webp" + }, + { + "name": "Clinton Hill", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/clinton-hill/", + "image": "/static/external_cache/region-guide-4a43b679e71d.webp" + }, + { + "name": "Cobble Hill", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/cobble-hill/", + "image": "/static/external_cache/region-guide-420536ac6b6c.webp" + }, + { + "name": "Crown Heights", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/crown-heights/", + "image": "/static/external_cache/region-guide-231c645d1f35.webp" + }, + { + "name": "Ditmas Park", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/ditmas-park/", + "image": "/static/external_cache/region-guide-db9ec537aa8c.webp" + }, + { + "name": "Downtown Brooklyn", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/downtown-brooklyn/", + "image": "/static/external_cache/region-guide-d151e5254f0a.webp" + }, + { + "name": "Dumbo", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/dumbo/", + "image": "/static/external_cache/region-guide-9110ce55fbf1.webp" + }, + { + "name": "East Harlem", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/east-harlem/", + "image": "/static/external_cache/region-guide-4eeeda761442.webp" + }, + { + "name": "East New York", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/east-new-york/", + "image": "/static/external_cache/region-guide-1795138d9cf7.webp" + }, + { + "name": "East Village", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/east-village/", + "image": "/static/external_cache/region-guide-2288dc97b44f.webp" + }, + { + "name": "Fashion District", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/fashion-district/", + "image": "/static/external_cache/region-guide-cdbfc5f3126b.webp" + }, + { + "name": "Financial District", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/financial-district/", + "image": "/static/external_cache/region-guide-7deec9db7fb5.webp" + }, + { + "name": "Flatbush", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/flatbush/", + "image": "/static/external_cache/region-guide-b1da4832d048.webp" + }, + { + "name": "Flatiron", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/flatiron/", + "image": "/static/external_cache/region-guide-e42fe00214c5.webp" + }, + { + "name": "Forest Hills", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/forest-hills/", + "image": "/static/external_cache/region-guide-75a40502cfea.webp" + }, + { + "name": "Fort Greene", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/fort-greene/", + "image": "/static/external_cache/region-guide-09a5a84d528d.webp" + }, + { + "name": "Gowanus", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/gowanus/", + "image": "/static/external_cache/region-guide-4afb54757cfa.webp" + }, + { + "name": "Gramercy", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/gramercy/", + "image": "/static/external_cache/region-guide-7bc977c25cb6.webp" + }, + { + "name": "Greenpoint", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/greenpoint/", + "image": "/static/external_cache/region-guide-e5e3b5f8a57b.webp" + }, + { + "name": "Greenwich Village", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/greenwich-village/", + "image": "/static/external_cache/region-guide-fe2bbd2620c4.webp" + }, + { + "name": "Greenwood Heights", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/greenwood-heights/", + "image": "/static/external_cache/region-guide-37d7d153d1a9.webp" + }, + { + "name": "Harlem", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/harlem/", + "image": "/static/external_cache/region-guide-00addedd860e.webp" + }, + { + "name": "Hell's Kitchen", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/hells-kitchen/", + "image": "/static/external_cache/region-guide-8097d54bbf3d.webp" + }, + { + "name": "Jackson Heights", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/jackson-heights/", + "image": "/static/external_cache/region-guide-8c95120a8721.webp" + }, + { + "name": "Kensington", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/kensington/", + "image": "/static/external_cache/region-guide-d50102eac06e.webp" + }, + { + "name": "Little Italy", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/little-italy/", + "image": "/static/external_cache/region-guide-97c360738dfd.webp" + }, + { + "name": "Long Island City", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/long-island-city/", + "image": "/static/external_cache/region-guide-bd263e4aa693.webp" + }, + { + "name": "Lower East Side", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/lower-east-side/", + "image": "/static/external_cache/region-guide-5666e818b576.webp" + }, + { + "name": "Meatpacking District", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/meatpacking-district/", + "image": "/static/external_cache/region-guide-35ecf1f0f86c.webp" + }, + { + "name": "Midtown East", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/midtown-east/", + "image": "/static/external_cache/region-guide-33d4a627c6a6.webp" + }, + { + "name": "Murray Hill", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/murray-hill/", + "image": "/static/external_cache/region-guide-4262ccd7a114.webp" + }, + { + "name": "NoHo", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/noho/", + "image": "/static/external_cache/region-guide-0560f938d7ce.webp" + }, + { + "name": "Nolita", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/nolita/", + "image": "/static/external_cache/region-guide-2c512e541371.webp" + }, + { + "name": "Nomad", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/nomad/", + "image": "/static/external_cache/region-guide-e464cb3aa685.webp" + }, + { + "name": "Park Slope", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/park-slope/", + "image": "/static/external_cache/region-guide-b2a4f97443fb.webp" + }, + { + "name": "Prospect Heights", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/prospect-heights/", + "image": "/static/external_cache/region-guide-17758dbcaf73.webp" + }, + { + "name": "Prospect Lefferts Gardens", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/prospect-lefferts-gardens/", + "image": "/static/external_cache/region-guide-bc212980668b.webp" + }, + { + "name": "Prospect Park South", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/prospect-park-south/", + "image": "/static/external_cache/region-guide-bf36855bbcf2.webp" + }, + { + "name": "Red Hook", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/red-hook/", + "image": "/static/external_cache/region-guide-6dde367d85f1.webp" + }, + { + "name": "Ridgewood", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/ridgewood/", + "image": "/static/external_cache/region-guide-2d1774d598b7.webp" + }, + { + "name": "Rockaway", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/rockaway/", + "image": "/static/external_cache/region-guide-efe774b972a6.webp" + }, + { + "name": "SoHo", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/soho/", + "image": "/static/external_cache/region-guide-66266116d901.webp" + }, + { + "name": "Sunnyside", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/sunnyside/", + "image": "/static/external_cache/region-guide-b8f572d2cc35.webp" + }, + { + "name": "Sunset Park", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/sunset-park/", + "image": "/static/external_cache/region-guide-e0122d471756.webp" + }, + { + "name": "Theater District", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/theater-district/", + "image": "/static/external_cache/region-guide-cd8c36cf9af2.webp" + }, + { + "name": "Tribeca", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/tribeca/", + "image": "/static/external_cache/region-guide-bdcfe30fb6c4.webp" + }, + { + "name": "Upper East Side", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/upper-east-side/", + "image": "/static/external_cache/region-guide-8664d7c692a2.webp" + }, + { + "name": "Upper West Side", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/upper-west-side/", + "image": "/static/external_cache/region-guide-0a906ffda4c6.webp" + }, + { + "name": "West Village", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/west-village/", + "image": "/static/external_cache/region-guide-c6678f98b83c.webp" + }, + { + "name": "Williamsburg", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/williamsburg/", + "image": "/static/external_cache/region-guide-b8509e4c095a.webp" + }, + { + "name": "Windsor Terrace", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/windsor-terrace/", + "image": "/static/external_cache/region-guide-a71c5e496d17.webp" + }, + { + "name": "Woodside", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/woodside/", + "image": "/static/external_cache/region-guide-7c86c057a207.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby New York City Neighborhoods", + "links": [ + { + "name": "Wingate Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/wingate-brooklyn-ny/" + }, + { + "name": "Weeksville Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/weeksville-brooklyn-ny/" + }, + { + "name": "Stuyvesant Heights Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/stuyvesant-heights-brooklyn-ny/" + }, + { + "name": "St. George Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/st-george-staten-island-ny/" + }, + { + "name": "South Midwood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/south-midwood-brooklyn-ny/" + }, + { + "name": "South Beach Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/south-beach-staten-island-ny/" + }, + { + "name": "Ocean Hill Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/ocean-hill-brooklyn-ny/" + }, + { + "name": "North Valley Stream Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-valley-stream-elmont-ny/" + }, + { + "name": "North Shore Towers and Country Club Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-shore-towers-and-country-club-queens-ny/" + }, + { + "name": "North New Hyde Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-new-hyde-park-new-hyde-park-ny/" + }, + { + "name": "Lakeville Estates Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lakeville-estates-new-hyde-park-ny/" + }, + { + "name": "Grymes Hill Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/grymes-hill-staten-island-ny/" + }, + { + "name": "Fort Wadsworth Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/fort-wadsworth-staten-island-ny/" + }, + { + "name": "Floral Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/floral-park-queens-ny/" + }, + { + "name": "East Williamsburg Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/east-williamsburg-brooklyn-ny/" + } + ] + }, + { + "title": "Homes in Nearby New York City Cities", + "links": [ + { + "name": "Yonkers Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/yonkers-ny/" + }, + { + "name": "Woodmere Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/woodmere-ny/" + }, + { + "name": "Woodbridge Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/woodbridge-nj/" + }, + { + "name": "West New York Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/west-new-york-nj/" + }, + { + "name": "Staten Island Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/staten-island-ny/" + }, + { + "name": "Queens Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/queens-ny/" + }, + { + "name": "Perth Amboy Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/perth-amboy-nj/" + }, + { + "name": "North Bergen Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-bergen-nj/" + }, + { + "name": "New Rochelle Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/new-rochelle-ny/" + }, + { + "name": "Mount Vernon Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mount-vernon-ny/" + }, + { + "name": "Lawrence Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lawrence-ny/" + }, + { + "name": "Inwood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/inwood-ny/" + }, + { + "name": "Hempstead Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hempstead-ny/" + }, + { + "name": "Guttenberg Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/guttenberg-nj/" + }, + { + "name": "Floral Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/floral-park-ny/" + } + ] + }, + { + "title": "Homes in Nearby New York City Zip Codes", + "links": [ + { + "name": "11559 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lawrence-ny-11559/" + }, + { + "name": "11439 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/queens-ny-11439/" + }, + { + "name": "11435 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/queens-ny-11435/" + }, + { + "name": "11433 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/queens-ny-11433/" + }, + { + "name": "11249 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/brooklyn-ny-11249/" + }, + { + "name": "11225 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/brooklyn-ny-11225/" + }, + { + "name": "11216 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/brooklyn-ny-11216/" + }, + { + "name": "11109 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/queens-ny-11109/" + }, + { + "name": "11042 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/new-hyde-park-ny-11042/" + }, + { + "name": "11040 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/new-hyde-park-ny-11040/" + }, + { + "name": "11005 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/queens-ny-11005/" + }, + { + "name": "11004 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/queens-ny-11004/" + }, + { + "name": "10474 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/bronx-ny-10474/" + }, + { + "name": "10472 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/bronx-ny-10472/" + }, + { + "name": "10307 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/staten-island-ny-10307/" + } + ] + } + ] + }, + "philadelphia": { + "name": "Pennsylvania, Delaware, & South Jersey", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/", + "retrieved_at": "2026-09-07T09:34:09.990Z", + "source_html_sha256": "c5f0b6a8d5e8f2c73b807453e311e0c47ca041cfd13770a2bd4bb11cdc97f038", + "headline": "Tour Pennsylvania, Delaware, & South Jersey's most desirable areas to live.", + "description": "The Pennsylvania, Delaware, and South Jersey region offers a unique blend of historic significance and modern dynamism. Known for its pivotal role in American history, diverse cultural landscape, and extensive network of leading educational institutions, this region provides an exceptional quality of life. It seamlessly blends historic landmarks with contemporary living, offering residents a dynamic lifestyle rich with diverse dining, shopping, and entertainment options. The areas boast robust economies, beautiful natural spaces, and convenient access to major East Coast cities.", + "hero": "/static/external_cache/region-guide-f38431ac9c4b.webp", + "cards": [ + { + "name": "Ardmore", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/ardmore/", + "image": "/static/external_cache/region-guide-f18bd49503d9.webp" + }, + { + "name": "Avalon", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/avalon/", + "image": "/static/external_cache/region-guide-5b7f74b5fb28.webp" + }, + { + "name": "Brewerytown", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/brewerytown/", + "image": "/static/external_cache/region-guide-3b8b61cfcdd2.webp" + }, + { + "name": "Bryn Mawr", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/bryn-mawr/", + "image": "/static/external_cache/region-guide-aaf46e0831be.webp" + }, + { + "name": "Chestnut Hill", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/chestnut-hill/", + "image": "/static/external_cache/region-guide-de33a7807c65.webp" + }, + { + "name": "Cinnaminson", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/cinnaminson/", + "image": "/static/external_cache/region-guide-477fcda1d645.webp" + }, + { + "name": "Doylestown", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/doylestown/", + "image": "/static/external_cache/region-guide-31e19c6fd393.webp" + }, + { + "name": "Fairmount-Art Museum", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/fairmount-art-museum/", + "image": "/static/external_cache/region-guide-51314e4385e2.webp" + }, + { + "name": "Greenville", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/greenville/", + "image": "/static/external_cache/region-guide-80abad3abd72.webp" + }, + { + "name": "Manayunk", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/manayunk/", + "image": "/static/external_cache/region-guide-b2ebe4f24735.webp" + }, + { + "name": "Margate City", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/margate-city/", + "image": "/static/external_cache/region-guide-496b023bc529.webp" + }, + { + "name": "Marlton", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/marlton/", + "image": "/static/external_cache/region-guide-2205b29bdbaa.webp" + }, + { + "name": "Medford & Medford Lakes", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/medford/", + "image": "/static/external_cache/region-guide-dd1391f3f230.webp" + }, + { + "name": "Moorestown", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/moorestown/", + "image": "/static/external_cache/region-guide-b2c55942cee2.webp" + }, + { + "name": "Mt. Lebanon", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/mtlebanon/", + "image": "/static/external_cache/region-guide-a6d535451c96.webp" + }, + { + "name": "Mt. Washington", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/MtWashington/", + "image": "/static/external_cache/region-guide-a12c2e714feb.webp" + }, + { + "name": "Narberth", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/narberth/", + "image": "/static/external_cache/region-guide-98e8dd95d5e8.webp" + }, + { + "name": "New Hope", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/new-hope/", + "image": "/static/external_cache/region-guide-862a59d9075a.webp" + }, + { + "name": "Northern Liberties", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/northern-liberties/", + "image": "/static/external_cache/region-guide-dd0b1ddd029e.webp" + }, + { + "name": "Old City-Society Hill", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/old-city-society-hill/", + "image": "/static/external_cache/region-guide-0dfecfb2853a.webp" + }, + { + "name": "Passyunk Square", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/passyunk-square/", + "image": "/static/external_cache/region-guide-0771d08eed0e.webp" + }, + { + "name": "Princeton", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/Princeton/", + "image": "/static/external_cache/region-guide-3f626ffb97fc.webp" + }, + { + "name": "Rehoboth Beach", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/rehoboth-beach/", + "image": "/static/external_cache/region-guide-85ddf40b6730.webp" + }, + { + "name": "Rittenhouse Square", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/rittenhouse-square/", + "image": "/static/external_cache/region-guide-6eb97cad6230.webp" + }, + { + "name": "Rumson", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/Rumson/", + "image": "/static/external_cache/region-guide-ab6f2bb5746c.webp" + }, + { + "name": "Sea Isle City", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/sea-isle-city/", + "image": "/static/external_cache/region-guide-5e30ac018875.webp" + }, + { + "name": "Stone Harbor", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/stone-harbor/", + "image": "/static/external_cache/region-guide-6564b74a4e3e.webp" + }, + { + "name": "The Strip District & Downtown Pittsburgh", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/strip-district-downtown/", + "image": "/static/external_cache/region-guide-ac63ba553121.webp" + }, + { + "name": "Washington Square West", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/washington-square-west/", + "image": "/static/external_cache/region-guide-217bd3b29b21.webp" + }, + { + "name": "Wayne", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/wayne/", + "image": "/static/external_cache/region-guide-777b5ad3f4b2.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Pennsylvania, Delaware, & South Jersey Neighborhoods", + "links": [ + { + "name": "Wister Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/wister-philadelphia-pa/" + }, + { + "name": "West Passyunk Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/west-passyunk-philadelphia-pa/" + }, + { + "name": "Waterfront Square Condominium Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/waterfront-square-condominium-philadelphia-pa/" + }, + { + "name": "Upper Northwest Philadelphia Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/upper-northwest-philadelphia-philadelphia-pa/" + }, + { + "name": "Upper North Philadelphia Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/upper-north-philadelphia-philadelphia-pa/" + }, + { + "name": "Upper North District Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/upper-north-district-philadelphia-pa/" + }, + { + "name": "Tudor East Falls Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/tudor-east-falls-philadelphia-pa/" + }, + { + "name": "Stonehurst Hills Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/stonehurst-hills-upper-darby-pa/" + }, + { + "name": "Stadium District Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/stadium-district-philadelphia-pa/" + }, + { + "name": "South Philadelphia Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/south-philadelphia-philadelphia-pa/" + }, + { + "name": "Point Breeze Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/point-breeze-philadelphia-pa/" + }, + { + "name": "Oak Lane Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/oak-lane-cheltenham-pa/" + }, + { + "name": "Navy Yard Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/navy-yard-philadelphia-pa/" + }, + { + "name": "Lower North Philadelphia Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lower-north-philadelphia-philadelphia-pa/" + }, + { + "name": "Girard Estates Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/girard-estates-philadelphia-pa/" + } + ] + }, + { + "title": "Homes in Nearby Pennsylvania, Delaware, & South Jersey Cities", + "links": [ + { + "name": "Yeadon Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/yeadon-pa/" + }, + { + "name": "Wyndmoor Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/wyndmoor-pa/" + }, + { + "name": "Westville Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/westville-nj/" + }, + { + "name": "Riverton Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/riverton-nj/" + }, + { + "name": "Penn Valley Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/penn-valley-pa/" + }, + { + "name": "Pennsauken Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/pennsauken-nj/" + }, + { + "name": "Palmyra Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/palmyra-nj/" + }, + { + "name": "National Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/national-park-nj/" + }, + { + "name": "Narberth Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/narberth-pa/" + }, + { + "name": "Gloucester City Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/gloucester-city-nj/" + }, + { + "name": "Gladwyne Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/gladwyne-pa/" + }, + { + "name": "Folcroft Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/folcroft-pa/" + }, + { + "name": "Elkins Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/elkins-park-pa/" + }, + { + "name": "Delanco Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/delanco-nj/" + }, + { + "name": "Cinnaminson Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/cinnaminson-nj/" + } + ] + }, + { + "title": "Homes in Nearby Pennsylvania, Delaware, & South Jersey Zip Codes", + "links": [ + { + "name": "19428 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/conshohocken-pa-19428/" + }, + { + "name": "19154 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/philadelphia-pa-19154/" + }, + { + "name": "19148 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/philadelphia-pa-19148/" + }, + { + "name": "19147 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/philadelphia-pa-19147/" + }, + { + "name": "19146 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/philadelphia-pa-19146/" + }, + { + "name": "19145 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/philadelphia-pa-19145/" + }, + { + "name": "19143 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/philadelphia-pa-19143/" + }, + { + "name": "19141 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/philadelphia-pa-19141/" + }, + { + "name": "19140 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/philadelphia-pa-19140/" + }, + { + "name": "19138 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/philadelphia-pa-19138/" + }, + { + "name": "19133 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/philadelphia-pa-19133/" + }, + { + "name": "19132 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/philadelphia-pa-19132/" + }, + { + "name": "19131 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/philadelphia-pa-19131/" + }, + { + "name": "19121 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/philadelphia-pa-19121/" + }, + { + "name": "19108 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/philadelphia-pa-19108/" + } + ] + } + ] + }, + "san_diego": { + "name": "San Diego", + "source_url": "https://www.compass.com/neighborhood-guides/san_diego/", + "retrieved_at": "2026-09-07T09:34:34.510Z", + "source_html_sha256": "c3dc5963810046068fffad6f0a7c35e318e4a28106a33b8c37c52ed3acd95954", + "headline": "Tour San Diego's most desirable areas to live.", + "description": "San Diego offers a laid-back coastal lifestyle with the sophistication of a thriving metropolitan hub. Known for its stunning beaches, year-round sunshine, and vibrant neighborhoods, San Diego blends natural beauty with cultural richness. From the historic charm of Old Town to the modern energy of downtown and La Jolla, the city offers an exceptional quality of life. With top-rated schools, renowned research institutions, and a dynamic food and arts scene, San Diego is as welcoming as it is inspiring—a place where everyday living feels like a getaway.", + "hero": "/static/external_cache/region-guide-7a9becf0c8ca.webp", + "cards": [ + { + "name": "Coronado", + "source_url": "https://www.compass.com/neighborhood-guides/san_diego/coronado/", + "image": "/static/external_cache/region-guide-25076e6fa21a.webp" + }, + { + "name": "La Jolla", + "source_url": "https://www.compass.com/neighborhood-guides/san_diego/la-jolla/", + "image": "/static/external_cache/region-guide-dd69708d91cd.webp" + }, + { + "name": "Point Loma Peninsula", + "source_url": "https://www.compass.com/neighborhood-guides/san_diego/point-loma-peninsula/", + "image": "/static/external_cache/region-guide-a396024d0848.webp" + }, + { + "name": "Cardiff By The Sea", + "source_url": "https://www.compass.com/neighborhood-guides/san_diego/cardiff-by-the-sea/", + "image": "/static/external_cache/region-guide-ff1286a07d4e.webp" + }, + { + "name": "Carlsbad", + "source_url": "https://www.compass.com/neighborhood-guides/san_diego/carlsbad/", + "image": "/static/external_cache/region-guide-2b3123ae914e.webp" + }, + { + "name": "Encinitas", + "source_url": "https://www.compass.com/neighborhood-guides/san_diego/encinitas/", + "image": "/static/external_cache/region-guide-81a960d72b93.webp" + }, + { + "name": "Rancho Santa Fe", + "source_url": "https://www.compass.com/neighborhood-guides/san_diego/rancho-santa-fe/", + "image": "/static/external_cache/region-guide-35921ff6d835.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby San Diego Neighborhoods", + "links": [ + { + "name": "Bay Ho Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/bay-ho-san-diego-ca/" + }, + { + "name": "Bay View Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/bay-view-san-diego-ca/" + }, + { + "name": "Bay Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/bay-park-san-diego-ca/" + }, + { + "name": "Taylor Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/taylor-san-diego-ca/" + }, + { + "name": "Silver Terrace Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/silver-terrace-san-diego-ca/" + }, + { + "name": "Presidio Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/presidio-san-diego-ca/" + }, + { + "name": "Old Town Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/old-town-san-diego-ca/" + }, + { + "name": "North Clairemont Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-clairemont-san-diego-ca/" + }, + { + "name": "Morena Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/morena-san-diego-ca/" + }, + { + "name": "Mission Valley West Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mission-valley-west-san-diego-ca/" + }, + { + "name": "Mission Bay Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mission-bay-park-ca/" + }, + { + "name": "Midway District Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/midway-district-san-diego-ca/" + }, + { + "name": "Midtown San Diego Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/midtown-san-diego-san-diego-ca/" + }, + { + "name": "Middletown Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/middletown-san-diego-ca/" + }, + { + "name": "Mason Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mason-san-diego-ca/" + } + ] + }, + { + "title": "Homes in Nearby San Diego Cities", + "links": [ + { + "name": "Spring Valley Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/spring-valley-ca/" + }, + { + "name": "Solana Beach Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/solana-beach-ca/" + }, + { + "name": "San Ysidro Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-ysidro-ca/" + }, + { + "name": "Santee Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/santee-ca/" + }, + { + "name": "Rancho Santa Fe Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/rancho-santa-fe-ca/" + }, + { + "name": "Ramona Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/ramona-ca/" + }, + { + "name": "Poway Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/poway-ca/" + }, + { + "name": "National City Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/national-city-ca/" + }, + { + "name": "Lemon Grove Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lemon-grove-ca/" + }, + { + "name": "La Mesa Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/la-mesa-ca/" + }, + { + "name": "La Jolla Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/la-jolla-ca/" + }, + { + "name": "Imperial Beach Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/imperial-beach-ca/" + }, + { + "name": "Escondido Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/escondido-ca/" + }, + { + "name": "El Cajon Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/el-cajon-ca/" + }, + { + "name": "Del Mar Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/del-mar-ca/" + } + ] + }, + { + "title": "Homes in Nearby San Diego Zip Codes", + "links": [ + { + "name": "92154 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-diego-ca-92154/" + }, + { + "name": "92140 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-diego-ca-92140/" + }, + { + "name": "92131 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-diego-ca-92131/" + }, + { + "name": "92129 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-diego-ca-92129/" + }, + { + "name": "92127 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-diego-ca-92127/" + }, + { + "name": "92126 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-diego-ca-92126/" + }, + { + "name": "92119 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-diego-ca-92119/" + }, + { + "name": "92116 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-diego-ca-92116/" + }, + { + "name": "92111 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-diego-ca-92111/" + }, + { + "name": "92104 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-diego-ca-92104/" + }, + { + "name": "92103 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-diego-ca-92103/" + }, + { + "name": "92071 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/santee-ca-92071/" + }, + { + "name": "92065 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/ramona-ca-92065/" + }, + { + "name": "92064 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/poway-ca-92064/" + }, + { + "name": "92037 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/la-jolla-ca-92037/" + } + ] + } + ] + }, + "santa_barbara_montecito": { + "name": "Santa Barbara, Montecito, & Central Coast", + "source_url": "https://www.compass.com/neighborhood-guides/santa_barbara_montecito/", + "retrieved_at": "2026-09-07T09:32:46.789Z", + "source_html_sha256": "7c19ab22a8185803dfb18872b2facaddb9764247455749dca2fbd1e86c48f1d2", + "headline": "Tour Santa Barbara, Montecito, & Central Coast's most desirable areas to live.", + "description": "", + "hero": "/static/external_cache/region-guide-9adc7b61e48b.webp", + "cards": [ + { + "name": "Downtown Santa Barbara", + "source_url": "https://www.compass.com/neighborhood-guides/santa_barbara_montecito/downtown-santa-barbara/", + "image": "/static/external_cache/region-guide-ac1f395cc05e.webp" + }, + { + "name": "Montecito", + "source_url": "https://www.compass.com/neighborhood-guides/santa_barbara_montecito/montecito/", + "image": "/static/external_cache/region-guide-e807d7f03d56.webp" + }, + { + "name": "Goleta", + "source_url": "https://www.compass.com/neighborhood-guides/santa_barbara_montecito/goleta/", + "image": "/static/external_cache/region-guide-cba1df076288.webp" + }, + { + "name": "Hope Ranch", + "source_url": "https://www.compass.com/neighborhood-guides/santa_barbara_montecito/hope-ranch/", + "image": "/static/external_cache/region-guide-4709990b22cb.webp" + }, + { + "name": "Carpinteria", + "source_url": "https://www.compass.com/neighborhood-guides/santa_barbara_montecito/carpinteria/", + "image": "/static/external_cache/region-guide-6368270722a1.webp" + }, + { + "name": "Mesa", + "source_url": "https://www.compass.com/neighborhood-guides/santa_barbara_montecito/the-mesa/", + "image": "/static/external_cache/region-guide-5edc80578abd.webp" + }, + { + "name": "Riviera", + "source_url": "https://www.compass.com/neighborhood-guides/santa_barbara_montecito/the-riviera/", + "image": "/static/external_cache/region-guide-518a44bfa117.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Santa Barbara, Montecito, & Central Coast Neighborhoods", + "links": [ + { + "name": "Channel View Heights Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/channel-view-heights-santa-barbara-ca/" + }, + { + "name": "Coast Village Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/coast-village-santa-barbara-ca/" + }, + { + "name": "East Beach Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/east-beach-santa-barbara-ca/" + }, + { + "name": "Eucalyptus Hill Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/eucalyptus-hill-santa-barbara-ca/" + }, + { + "name": "Las Canoas-El Cielito Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/las-canoas-el-cielito-santa-barbara-ca/" + }, + { + "name": "Olive Mill Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/olive-mill-santa-barbara-ca/" + }, + { + "name": "Riviera Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/riviera-santa-barbara-ca/" + }, + { + "name": "Toro Canyon Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/toro-canyon-carpinteria-ca/" + }, + { + "name": "Toro Canyon-Hidden Valley Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/toro-canyon-hidden-valley-santa-barbara-ca/" + }, + { + "name": "Upper Village Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/upper-village-santa-barbara-ca/" + }, + { + "name": "Waterfront Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/waterfront-ca/" + }, + { + "name": "Eastside Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/eastside-santa-barbara-ca/" + }, + { + "name": "Lower Eastside Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lower-eastside-santa-barbara-ca/" + }, + { + "name": "Lower Riviera Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lower-riviera-santa-barbara-ca/" + }, + { + "name": "Cabrillo Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/cabrillo-park-santa-barbara-ca/" + } + ] + }, + { + "title": "Homes in Nearby Santa Barbara, Montecito, & Central Coast Cities", + "links": [ + { + "name": "Summerland Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/summerland-ca/" + }, + { + "name": "Santa Barbara Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/santa-barbara-ca/" + }, + { + "name": "Carpinteria Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/carpinteria-ca/" + }, + { + "name": "Goleta Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/goleta-ca/" + }, + { + "name": "Oak View Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/oak-view-ca/" + }, + { + "name": "Ventura Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/ventura-ca/" + }, + { + "name": "Ojai Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/ojai-ca/" + }, + { + "name": "Santa Ynez Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/santa-ynez-ca/" + }, + { + "name": "Oxnard Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/oxnard-ca/" + }, + { + "name": "Port Hueneme Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/port-hueneme-ca/" + }, + { + "name": "Solvang Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/solvang-ca/" + }, + { + "name": "Los Olivos Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/los-olivos-ca/" + }, + { + "name": "Santa Paula Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/santa-paula-ca/" + }, + { + "name": "Port Hueneme CBC Base Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/port-hueneme-cbc-base-ca/" + }, + { + "name": "Camarillo Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/camarillo-ca/" + } + ] + }, + { + "title": "Homes in Nearby Santa Barbara, Montecito, & Central Coast Zip Codes", + "links": [ + { + "name": "93103 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/santa-barbara-ca-93103/" + }, + { + "name": "93108 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/santa-barbara-ca-93108/" + }, + { + "name": "93105 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/santa-barbara-ca-93105/" + }, + { + "name": "93067 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/summerland-ca-93067/" + }, + { + "name": "93101 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/santa-barbara-ca-93101/" + }, + { + "name": "93013 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/carpinteria-ca-93013/" + }, + { + "name": "93109 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/santa-barbara-ca-93109/" + }, + { + "name": "93110 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/santa-barbara-ca-93110/" + }, + { + "name": "93111 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/santa-barbara-ca-93111/" + }, + { + "name": "93023 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/ojai-ca-93023/" + }, + { + "name": "93001 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/ventura-ca-93001/" + }, + { + "name": "93117 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/goleta-ca-93117/" + }, + { + "name": "93460 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/santa-ynez-ca-93460/" + }, + { + "name": "93106 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/santa-barbara-ca-93106/" + }, + { + "name": "93252 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/maricopa-ca-93252/" + } + ] + } + ] + }, + "seattle": { + "name": "Seattle, Eastside, & Greater Puget Sound", + "source_url": "https://www.compass.com/neighborhood-guides/seattle/", + "retrieved_at": "2026-09-07T09:35:23.962Z", + "source_html_sha256": "5e07265c653a9069edad58181aeb5a5806442987f9854173bb916637d44634b8", + "headline": "Tour Seattle, Eastside, & Greater Puget Sound's most desirable areas to live.", + "description": "Seattle is a vibrant city known for its tech scene and landmarks like the Space Needle and Pike Place Market. Just across Lake Washington, the Eastside offers upscale suburban living in communities like Bellevue and Redmond. The Greater Puget Sound region blends luxury real estate with natural beauty, from waterfronts to mountain views. Whether you seek a city condo or a spacious home near nature, this area offers a sophisticated lifestyle in some of the Pacific Northwest’s most desirable locations.", + "hero": "/static/external_cache/region-guide-8b60b54b0247.webp", + "cards": [ + { + "name": "Bellevue", + "source_url": "https://www.compass.com/neighborhood-guides/seattle/bellevue/", + "image": "/static/external_cache/region-guide-1f092bd1ce8c.webp" + }, + { + "name": "Capitol Hill", + "source_url": "https://www.compass.com/neighborhood-guides/seattle/capitol-hill/", + "image": "/static/external_cache/region-guide-cdd838273f8e.webp" + }, + { + "name": "Downtown Seattle", + "source_url": "https://www.compass.com/neighborhood-guides/seattle/downtown-seattle/", + "image": "/static/external_cache/region-guide-ca61ff1e4656.webp" + }, + { + "name": "Edmonds", + "source_url": "https://www.compass.com/neighborhood-guides/seattle/edmonds/", + "image": "/static/external_cache/region-guide-34bca67bdcee.webp" + }, + { + "name": "Kirkland", + "source_url": "https://www.compass.com/neighborhood-guides/seattle/kirkland/", + "image": "/static/external_cache/region-guide-8b1feca638ce.webp" + }, + { + "name": "Mercer Island", + "source_url": "https://www.compass.com/neighborhood-guides/seattle/mercer-island/", + "image": "/static/external_cache/region-guide-7f05a4ded99c.webp" + }, + { + "name": "Magnolia", + "source_url": "https://www.compass.com/neighborhood-guides/seattle/magnolia/", + "image": "/static/external_cache/region-guide-55840c713c61.webp" + }, + { + "name": "Queen Anne", + "source_url": "https://www.compass.com/neighborhood-guides/seattle/queen-anne/", + "image": "/static/external_cache/region-guide-c53354f7b49d.webp" + }, + { + "name": "Sammamish", + "source_url": "https://www.compass.com/neighborhood-guides/seattle/sammamish/", + "image": "/static/external_cache/region-guide-17487ac94659.webp" + }, + { + "name": "Snohomish", + "source_url": "https://www.compass.com/neighborhood-guides/seattle/snohomish/", + "image": "/static/external_cache/region-guide-6665ffbbdcb3.webp" + }, + { + "name": "West Seattle", + "source_url": "https://www.compass.com/neighborhood-guides/seattle/west-seattle/", + "image": "/static/external_cache/region-guide-8296c6a781fc.webp" + }, + { + "name": "Woodinville", + "source_url": "https://www.compass.com/neighborhood-guides/seattle/woodinville/", + "image": "/static/external_cache/region-guide-df790c9ad79d.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Seattle, Eastside, & Greater Puget Sound Neighborhoods", + "links": [ + { + "name": "Ballard Avenue Landmark District Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/ballard-avenue-landmark-district-seattle-wa/" + }, + { + "name": "University Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/university-park-seattle-wa/" + }, + { + "name": "Sand Point Naval Air Station Landmark District Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sand-point-naval-air-station-landmark-district-seattle-wa/" + }, + { + "name": "North College Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-college-park-seattle-wa/" + }, + { + "name": "North Central Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-central-seattle-wa/" + }, + { + "name": "North Beach-Blue Ridge Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-beach-blue-ridge-seattle-wa/" + }, + { + "name": "North Beach Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-beach-seattle-wa/" + }, + { + "name": "Matthews Beach Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/matthews-beach-seattle-wa/" + }, + { + "name": "Maple Leaf Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/maple-leaf-seattle-wa/" + }, + { + "name": "Lake City Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lake-city-seattle-wa/" + }, + { + "name": "Highlands Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/highlands-seattle-wa/" + }, + { + "name": "Highland Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/highland-park-seattle-wa/" + }, + { + "name": "Harvard-Belmont Landmark District Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/harvard-belmont-landmark-district-seattle-wa/" + }, + { + "name": "Greenwood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/greenwood-seattle-wa/" + }, + { + "name": "Crown Hill Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/crown-hill-seattle-wa/" + } + ] + }, + { + "title": "Homes in Nearby Seattle, Eastside, & Greater Puget Sound Cities", + "links": [ + { + "name": "Tukwila Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/tukwila-wa/" + }, + { + "name": "Kirkland Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/kirkland-wa/" + }, + { + "name": "Burien Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/burien-wa/" + }, + { + "name": "Bainbridge Island Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/bainbridge-island-wa/" + }, + { + "name": "Shoreline Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/shoreline-wa/" + }, + { + "name": "Lake Forest Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lake-forest-park-wa/" + }, + { + "name": "Mercer Island Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mercer-island-wa/" + }, + { + "name": "Kenmore Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/kenmore-wa/" + }, + { + "name": "Renton Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/renton-wa/" + }, + { + "name": "Medina Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/medina-wa/" + }, + { + "name": "Vashon Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/vashon-wa/" + }, + { + "name": "SeaTac Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/seatac-wa/" + }, + { + "name": "Clyde Hill Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/clyde-hill-wa/" + }, + { + "name": "Newcastle Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/newcastle-wa/" + }, + { + "name": "Bellevue Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/bellevue-wa/" + } + ] + }, + { + "title": "Homes in Nearby Seattle, Eastside, & Greater Puget Sound Zip Codes", + "links": [ + { + "name": "98199 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/seattle-wa-98199/" + }, + { + "name": "98177 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/seattle-wa-98177/" + }, + { + "name": "98174 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/seattle-wa-98174/" + }, + { + "name": "98164 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/seattle-wa-98164/" + }, + { + "name": "98161 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/seattle-wa-98161/" + }, + { + "name": "98154 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/seattle-wa-98154/" + }, + { + "name": "98133 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/seattle-wa-98133/" + }, + { + "name": "98125 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/seattle-wa-98125/" + }, + { + "name": "98122 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/seattle-wa-98122/" + }, + { + "name": "98121 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/seattle-wa-98121/" + }, + { + "name": "98119 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/seattle-wa-98119/" + }, + { + "name": "98117 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/seattle-wa-98117/" + }, + { + "name": "98116 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/seattle-wa-98116/" + }, + { + "name": "98115 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/seattle-wa-98115/" + }, + { + "name": "98112 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/seattle-wa-98112/" + } + ] + } + ] + }, + "sf": { + "name": "Northern California", + "source_url": "https://www.compass.com/neighborhood-guides/sf/", + "retrieved_at": "2026-09-07T09:33:08.761Z", + "source_html_sha256": "2052225aba7d69c8e94a03c5741031c6be971eeba5b8c49965a0d3d478c9e4b9", + "headline": "Tour Northern California's most desirable areas to live.", + "description": "", + "hero": "/static/external_cache/region-guide-987706428130.webp", + "cards": [ + { + "name": "Nob Hill", + "source_url": "https://www.compass.com/neighborhood-guides/sf/nob-hill/", + "image": "/static/external_cache/region-guide-970a377578e3.webp" + }, + { + "name": "Russian Hill", + "source_url": "https://www.compass.com/neighborhood-guides/sf/russian-hill/", + "image": "/static/external_cache/region-guide-5890dee18e21.webp" + }, + { + "name": "Presidio Heights", + "source_url": "https://www.compass.com/neighborhood-guides/sf/presidio-heights/", + "image": "/static/external_cache/region-guide-8aa71c6a19c7.webp" + }, + { + "name": "Mission Bay", + "source_url": "https://www.compass.com/neighborhood-guides/sf/mission-bay/", + "image": "/static/external_cache/region-guide-44baf9093f37.webp" + }, + { + "name": "Pacific Heights", + "source_url": "https://www.compass.com/neighborhood-guides/sf/pacific-heights/", + "image": "/static/external_cache/region-guide-0a5e91e5fb39.webp" + }, + { + "name": "Marina District", + "source_url": "https://www.compass.com/neighborhood-guides/sf/marina-district/", + "image": "/static/external_cache/region-guide-a8f8efdbafc9.webp" + }, + { + "name": "Cow Hollow", + "source_url": "https://www.compass.com/neighborhood-guides/sf/cow-hollow/", + "image": "/static/external_cache/region-guide-070c97916927.webp" + }, + { + "name": "Mission Dolores", + "source_url": "https://www.compass.com/neighborhood-guides/sf/the-mission/", + "image": "/static/external_cache/region-guide-44c297a5bd64.webp" + }, + { + "name": "Hayes Valley", + "source_url": "https://www.compass.com/neighborhood-guides/sf/hayes-valley/", + "image": "/static/external_cache/region-guide-64f1c1bfeba6.webp" + }, + { + "name": "Inner Richmond", + "source_url": "https://www.compass.com/neighborhood-guides/sf/inner-richmond/", + "image": "/static/external_cache/region-guide-cdc7b05939c1.webp" + }, + { + "name": "Lake Street", + "source_url": "https://www.compass.com/neighborhood-guides/sf/lake-street/", + "image": "/static/external_cache/region-guide-a237c3ad6be8.webp" + }, + { + "name": "Inner Sunset", + "source_url": "https://www.compass.com/neighborhood-guides/sf/inner-sunset/", + "image": "/static/external_cache/region-guide-c6c18097b0b7.webp" + }, + { + "name": "Telegraph Hill", + "source_url": "https://www.compass.com/neighborhood-guides/sf/telegraph-hill/", + "image": "/static/external_cache/region-guide-9465ef1b50c1.webp" + }, + { + "name": "Noe Valley", + "source_url": "https://www.compass.com/neighborhood-guides/sf/Noe-Valley/", + "image": "/static/external_cache/region-guide-08c403dd6419.webp" + }, + { + "name": "North Beach", + "source_url": "https://www.compass.com/neighborhood-guides/sf/North-Beach/", + "image": "/static/external_cache/region-guide-a3a6fda14676.webp" + }, + { + "name": "Jordan Park / Laurel Heights", + "source_url": "https://www.compass.com/neighborhood-guides/sf/Jordan-Park-Laurel-Heights/", + "image": "/static/external_cache/region-guide-c51f414c0c42.webp" + }, + { + "name": "Kentfield", + "source_url": "https://www.compass.com/neighborhood-guides/sf/kentfield/", + "image": "/static/external_cache/region-guide-8a0009658a7a.webp" + }, + { + "name": "Larkspur", + "source_url": "https://www.compass.com/neighborhood-guides/sf/larkspur/", + "image": "/static/external_cache/region-guide-9e9cd2033cf8.webp" + }, + { + "name": "Mill Valley", + "source_url": "https://www.compass.com/neighborhood-guides/sf/mill-valley/", + "image": "/static/external_cache/region-guide-0c8177c8d809.webp" + }, + { + "name": "Ross", + "source_url": "https://www.compass.com/neighborhood-guides/sf/ross/", + "image": "/static/external_cache/region-guide-b3eadcbe9eb7.webp" + }, + { + "name": "San Rafael", + "source_url": "https://www.compass.com/neighborhood-guides/sf/san-rafael/", + "image": "/static/external_cache/region-guide-14b45b97ff3c.webp" + }, + { + "name": "Novato", + "source_url": "https://www.compass.com/neighborhood-guides/sf/novato/", + "image": "/static/external_cache/region-guide-fe620a1f6ecd.webp" + }, + { + "name": "Tiburon", + "source_url": "https://www.compass.com/neighborhood-guides/sf/tiburon/", + "image": "/static/external_cache/region-guide-700520058384.webp" + }, + { + "name": "Alameda", + "source_url": "https://www.compass.com/neighborhood-guides/sf/alameda/", + "image": "/static/external_cache/region-guide-74ed6b175fda.webp" + }, + { + "name": "Berkeley", + "source_url": "https://www.compass.com/neighborhood-guides/sf/berkeley/", + "image": "/static/external_cache/region-guide-9fbd18fc596c.webp" + }, + { + "name": "Fremont", + "source_url": "https://www.compass.com/neighborhood-guides/sf/fremont/", + "image": "/static/external_cache/region-guide-a0eeb2c9485e.webp" + }, + { + "name": "Oakland", + "source_url": "https://www.compass.com/neighborhood-guides/sf/oakland/", + "image": "/static/external_cache/region-guide-92278c7a9f26.webp" + }, + { + "name": "Piedmont", + "source_url": "https://www.compass.com/neighborhood-guides/sf/piedmont/", + "image": "/static/external_cache/region-guide-8029205a033b.webp" + }, + { + "name": "Danville", + "source_url": "https://www.compass.com/neighborhood-guides/sf/danville/", + "image": "/static/external_cache/region-guide-04c9ffd60d11.webp" + }, + { + "name": "Lafayette", + "source_url": "https://www.compass.com/neighborhood-guides/sf/lafayette/", + "image": "/static/external_cache/region-guide-f926ad97432b.webp" + }, + { + "name": "Moraga", + "source_url": "https://www.compass.com/neighborhood-guides/sf/moraga/", + "image": "/static/external_cache/region-guide-0ef04caf55d4.webp" + }, + { + "name": "Orinda", + "source_url": "https://www.compass.com/neighborhood-guides/sf/orinda/", + "image": "/static/external_cache/region-guide-e090724d3fa0.webp" + }, + { + "name": "Walnut Creek", + "source_url": "https://www.compass.com/neighborhood-guides/sf/walnut-creek/", + "image": "/static/external_cache/region-guide-ec5f624d81d7.webp" + }, + { + "name": "San Mateo", + "source_url": "https://www.compass.com/neighborhood-guides/sf/san-mateo/", + "image": "/static/external_cache/region-guide-9a4c369ef13b.webp" + }, + { + "name": "Burlingame", + "source_url": "https://www.compass.com/neighborhood-guides/sf/burlingame/", + "image": "/static/external_cache/region-guide-9c409c22ecc6.webp" + }, + { + "name": "Atherton", + "source_url": "https://www.compass.com/neighborhood-guides/sf/atherton/", + "image": "/static/external_cache/region-guide-a5f5d1d932f6.webp" + }, + { + "name": "Woodside", + "source_url": "https://www.compass.com/neighborhood-guides/sf/woodside/", + "image": "/static/external_cache/region-guide-a0e2153bb946.webp" + }, + { + "name": "Menlo Park", + "source_url": "https://www.compass.com/neighborhood-guides/sf/menlo-park/", + "image": "/static/external_cache/region-guide-bb98e442f6d5.webp" + }, + { + "name": "Palo Alto", + "source_url": "https://www.compass.com/neighborhood-guides/sf/palo-alto/", + "image": "/static/external_cache/region-guide-8057c65183d7.webp" + }, + { + "name": "Mountain View", + "source_url": "https://www.compass.com/neighborhood-guides/sf/mountain-view/", + "image": "/static/external_cache/region-guide-de56b5742322.webp" + }, + { + "name": "San Jose", + "source_url": "https://www.compass.com/neighborhood-guides/sf/san-jose/", + "image": "/static/external_cache/region-guide-7041d756689a.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Northern California Neighborhoods", + "links": [ + { + "name": "Balboa Terrace Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/balboa-terrace-san-francisco-ca/" + }, + { + "name": "University Mound Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/university-mound-san-francisco-ca/" + }, + { + "name": "Sunnyside Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sunnyside-san-francisco-ca/" + }, + { + "name": "Sunnydale Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sunnydale-san-francisco-ca/" + }, + { + "name": "Outer Mission Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/outer-mission-san-francisco-ca/" + }, + { + "name": "Monterey Heights Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/monterey-heights-san-francisco-ca/" + }, + { + "name": "Mission Terrace Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mission-terrace-san-francisco-ca/" + }, + { + "name": "Merced Heights Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/merced-heights-san-francisco-ca/" + }, + { + "name": "McLaren Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mclaren-park-san-francisco-ca/" + }, + { + "name": "Little Hollywood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/little-hollywood-san-francisco-ca/" + }, + { + "name": "Lakeshore Acres Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/lakeshore-acres-san-francisco-ca/" + }, + { + "name": "Ingleside Heights Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/ingleside-heights-san-francisco-ca/" + }, + { + "name": "Holly Park Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/holly-park-san-francisco-ca/" + }, + { + "name": "Crocker Amazon Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/crocker-amazon-san-francisco-ca/" + }, + { + "name": "Crocker Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/crocker-daly-city-ca/" + } + ] + }, + { + "title": "Homes in Nearby Northern California Cities", + "links": [ + { + "name": "Daly City Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/daly-city-ca/" + }, + { + "name": "Brisbane Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/brisbane-ca/" + }, + { + "name": "Alameda Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/alameda-ca/" + }, + { + "name": "Oakland Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/oakland-ca/" + }, + { + "name": "Sausalito Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/sausalito-ca/" + }, + { + "name": "South San Francisco Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/south-san-francisco-ca/" + }, + { + "name": "Emeryville Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/emeryville-ca/" + }, + { + "name": "Pacifica Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/pacifica-ca/" + }, + { + "name": "Belvedere Tiburon Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/belvedere-tiburon-ca/" + }, + { + "name": "Berkeley Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/berkeley-ca/" + }, + { + "name": "Belvedere Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/belvedere-ca/" + }, + { + "name": "Tiburon Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/tiburon-ca/" + }, + { + "name": "San Bruno Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-bruno-ca/" + }, + { + "name": "Albany Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/albany-ca/" + }, + { + "name": "Richmond Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/richmond-ca/" + } + ] + }, + { + "title": "Homes in Nearby Northern California Zip Codes", + "links": [ + { + "name": "94188 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-francisco-ca-94188/" + }, + { + "name": "94158 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-francisco-ca-94158/" + }, + { + "name": "94143 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-francisco-ca-94143/" + }, + { + "name": "94134 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-francisco-ca-94134/" + }, + { + "name": "94133 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-francisco-ca-94133/" + }, + { + "name": "94127 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-francisco-ca-94127/" + }, + { + "name": "94124 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-francisco-ca-94124/" + }, + { + "name": "94122 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-francisco-ca-94122/" + }, + { + "name": "94121 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-francisco-ca-94121/" + }, + { + "name": "94115 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-francisco-ca-94115/" + }, + { + "name": "94114 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-francisco-ca-94114/" + }, + { + "name": "94112 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-francisco-ca-94112/" + }, + { + "name": "94111 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-francisco-ca-94111/" + }, + { + "name": "94110 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-francisco-ca-94110/" + }, + { + "name": "94109 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/san-francisco-ca-94109/" + } + ] + } + ] + }, + "westchester_ny": { + "name": "Westchester & Hudson Valley", + "source_url": "https://www.compass.com/neighborhood-guides/westchester_ny/", + "retrieved_at": "2026-09-07T09:34:08.788Z", + "source_html_sha256": "8811d1050ff4edccfc22aa5f1c40165d113f0f15aee336a2c5d8e5365e5853e5", + "headline": "Tour Westchester & Hudson Valley's most desirable areas to live.", + "description": "Effortlessly merges serene suburban living with the convenience of nearby metropolitan life, making it an attractive place to call home. Renowned for its picturesque landscapes, delightful towns, and exceptional educational institutions, the county ensures a high standard of living. It harmoniously blends historic landmarks such as the Rockefeller Estate with modern comforts, offering residents a well-rounded lifestyle filled with diverse dining, shopping, and leisure activities. With its proximity to New York City, Westchester boasts a lively community rich in activities and amenities.", + "hero": "/static/external_cache/region-guide-b2facc1ff2e2.webp", + "cards": [ + { + "name": "Armonk", + "source_url": "https://www.compass.com/neighborhood-guides/westchester_ny/armonk/", + "image": "/static/external_cache/region-guide-14f797fc8a22.webp" + }, + { + "name": "Bedford", + "source_url": "https://www.compass.com/neighborhood-guides/westchester_ny/bedford/", + "image": "/static/external_cache/region-guide-a1a8fa8cd0fb.webp" + }, + { + "name": "Briarcliff Manor", + "source_url": "https://www.compass.com/neighborhood-guides/westchester_ny/briarcliffmanor/", + "image": "/static/external_cache/region-guide-2cd3bff77d5d.webp" + }, + { + "name": "Bronxville", + "source_url": "https://www.compass.com/neighborhood-guides/westchester_ny/bronxville/", + "image": "/static/external_cache/region-guide-f88b3269bb44.webp" + }, + { + "name": "Chappaqua", + "source_url": "https://www.compass.com/neighborhood-guides/westchester_ny/chappaqua/", + "image": "/static/external_cache/region-guide-a952f8ca215e.webp" + }, + { + "name": "Dobbs Ferry", + "source_url": "https://www.compass.com/neighborhood-guides/westchester_ny/dobbs-ferry/", + "image": "/static/external_cache/region-guide-93141911ddff.webp" + }, + { + "name": "Hastings-on-Hudson", + "source_url": "https://www.compass.com/neighborhood-guides/westchester_ny/hastings-on-hudson/", + "image": "/static/external_cache/region-guide-e6db3de4f01d.webp" + }, + { + "name": "Irvington", + "source_url": "https://www.compass.com/neighborhood-guides/westchester_ny/irvington/", + "image": "/static/external_cache/region-guide-d3bab2ef21bb.webp" + }, + { + "name": "Katonah", + "source_url": "https://www.compass.com/neighborhood-guides/westchester_ny/katonah/", + "image": "/static/external_cache/region-guide-d9db805c8929.webp" + }, + { + "name": "Larchmont", + "source_url": "https://www.compass.com/neighborhood-guides/westchester_ny/larchmont/", + "image": "/static/external_cache/region-guide-3216720ef22f.webp" + }, + { + "name": "Pelham", + "source_url": "https://www.compass.com/neighborhood-guides/westchester_ny/pelham/", + "image": "/static/external_cache/region-guide-e9b7c16bd890.webp" + }, + { + "name": "Rye", + "source_url": "https://www.compass.com/neighborhood-guides/westchester_ny/rye/", + "image": "/static/external_cache/region-guide-d33275c2f998.webp" + }, + { + "name": "Rye Brook", + "source_url": "https://www.compass.com/neighborhood-guides/westchester_ny/rye-brook/", + "image": "/static/external_cache/region-guide-1f5e1fb5cc9a.webp" + }, + { + "name": "Scarsdale", + "source_url": "https://www.compass.com/neighborhood-guides/westchester_ny/scarsdale/", + "image": "/static/external_cache/region-guide-9487a7ad67ff.webp" + }, + { + "name": "Tarrytown", + "source_url": "https://www.compass.com/neighborhood-guides/westchester_ny/tarrytown/", + "image": "/static/external_cache/region-guide-72c527ff5159.webp" + } + ], + "nearby": [ + { + "title": "Homes in Nearby Westchester & Hudson Valley Neighborhoods", + "links": [ + { + "name": "Woodcrest Heights Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/woodcrest-heights-west-harrison-ny/" + }, + { + "name": "Teatown Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/teatown-croton-on-hudson-ny/" + }, + { + "name": "Tamarack Gardens Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/tamarack-gardens-port-chester-ny/" + }, + { + "name": "Pocantico Hills Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/pocantico-hills-tarrytown-ny/" + }, + { + "name": "Pemberwick Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/pemberwick-greenwich-ct/" + }, + { + "name": "Old Mamaroneck Road Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/old-mamaroneck-road-white-plains-ny/" + }, + { + "name": "North Parkway Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-parkway-greenwich-ct/" + }, + { + "name": "North Broadway Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/north-broadway-white-plains-ny/" + }, + { + "name": "New Castle Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/new-castle-chappaqua-ny/" + }, + { + "name": "Milton - Rye Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/milton-rye-ny/" + }, + { + "name": "Hillair Circle Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hillair-circle-white-plains-ny/" + }, + { + "name": "Highlands Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/highlands-white-plains-ny/" + }, + { + "name": "Greenburgh Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/greenburgh-white-plains-ny/" + }, + { + "name": "Glenville Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/glenville-greenwich-ct/" + }, + { + "name": "Fisher Hill Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/fisher-hill-white-plains-ny/" + } + ] + }, + { + "title": "Homes in Nearby Westchester & Hudson Valley Cities", + "links": [ + { + "name": "Yorktown Heights Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/yorktown-heights-ny/" + }, + { + "name": "Yonkers Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/yonkers-ny/" + }, + { + "name": "Tuckahoe Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/tuckahoe-ny/" + }, + { + "name": "Rye Brook Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/rye-brook-ny/" + }, + { + "name": "Rye Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/rye-ny/" + }, + { + "name": "Port Chester Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/port-chester-ny/" + }, + { + "name": "Pelham Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/pelham-ny/" + }, + { + "name": "Ossining Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/ossining-ny/" + }, + { + "name": "New Rochelle Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/new-rochelle-ny/" + }, + { + "name": "Mount Vernon Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mount-vernon-ny/" + }, + { + "name": "Mount Kisco Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mount-kisco-ny/" + }, + { + "name": "Millwood Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/millwood-ny/" + }, + { + "name": "Hawthorne Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/hawthorne-ny/" + }, + { + "name": "Greenwich Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/greenwich-ct/" + }, + { + "name": "Eastchester Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/eastchester-ny/" + } + ] + }, + { + "title": "Homes in Nearby Westchester & Hudson Valley Zip Codes", + "links": [ + { + "name": "10922 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/fort-montgomery-ny-10922/" + }, + { + "name": "10802 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/new-rochelle-ny-10802/" + }, + { + "name": "10709 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/eastchester-ny-10709/" + }, + { + "name": "10705 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/yonkers-ny-10705/" + }, + { + "name": "10703 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/yonkers-ny-10703/" + }, + { + "name": "10701 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/yonkers-ny-10701/" + }, + { + "name": "10605 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/white-plains-ny-10605/" + }, + { + "name": "10591 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/tarrytown-ny-10591/" + }, + { + "name": "10589 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/somers-ny-10589/" + }, + { + "name": "10580 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/rye-ny-10580/" + }, + { + "name": "10573 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/port-chester-ny-10573/" + }, + { + "name": "10553 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mount-vernon-ny-10553/" + }, + { + "name": "10552 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mount-vernon-ny-10552/" + }, + { + "name": "10543 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/mamaroneck-ny-10543/" + }, + { + "name": "10522 Homes for Sale", + "source_url": "https://www.compass.com/homes-for-sale/dobbs-ferry-ny-10522/" + } + ] + } + ] + } +} diff --git a/sites/compass/neighborhood_regions.json b/sites/compass/neighborhood_regions.json new file mode 100644 index 00000000..ca720c29 --- /dev/null +++ b/sites/compass/neighborhood_regions.json @@ -0,0 +1,263 @@ +[ + { + "slug": "nyc", + "name": "New York City", + "coordinates": [ + "73°59′37″ W", + "40°44′11″ N" + ], + "size": 2, + "image": "external_cache/guide-nyc-geo.webp", + "source_url": "https://www.compass.com/neighborhood-guides/nyc/" + }, + { + "slug": "miami", + "name": "South Florida", + "coordinates": [ + "25°47′25.397″ N", + "80°08′34.572″ W" + ], + "size": 1, + "image": "external_cache/guide-miami-geo.webp", + "source_url": "https://www.compass.com/neighborhood-guides/miami/" + }, + { + "slug": "boston", + "name": "Greater Boston", + "coordinates": [ + "71°04′50″ W", + "42°20′58″ N" + ], + "size": 1, + "image": "external_cache/guide-boston-geo.webp", + "source_url": "https://www.compass.com/neighborhood-guides/boston/" + }, + { + "slug": "aspen", + "name": "Aspen", + "coordinates": [ + "106°49′15″ W", + "39°11′25″ N" + ], + "size": 1, + "image": "external_cache/guide-aspen-geo.webp", + "source_url": "https://www.compass.com/neighborhood-guides/aspen/" + }, + { + "slug": "santa_barbara_montecito", + "name": "Santa Barbara, Montecito, & Central Coast", + "coordinates": [], + "size": 1, + "image": "external_cache/guide-santabarbara-geo.webp", + "source_url": "https://www.compass.com/neighborhood-guides/santa_barbara_montecito/" + }, + { + "slug": "dc", + "name": "DC, Maryland, & Virginia", + "coordinates": [ + "76°59′46″ W", + "38°53′06″ N" + ], + "size": 2, + "image": "external_cache/guide-dc-geo.webp", + "source_url": "https://www.compass.com/neighborhood-guides/dc/" + }, + { + "slug": "hamptons", + "name": "The Hamptons", + "coordinates": [ + "72°11′11″ W", + "40°57′46″ N" + ], + "size": 1, + "image": "external_cache/guide-hamptons-geo.webp", + "source_url": "https://www.compass.com/neighborhood-guides/hamptons/" + }, + { + "slug": "la", + "name": "Southern California", + "coordinates": [ + "118°24′05″ W", + "34°04′01″ N" + ], + "size": 1, + "image": "external_cache/guide-la-geo.webp", + "source_url": "https://www.compass.com/neighborhood-guides/la/" + }, + { + "slug": "sf", + "name": "Northern California", + "coordinates": [ + "122°25′52″ W", + "37°46′26″ N" + ], + "size": 1, + "image": "external_cache/guide-sf---geo--1-.webp", + "source_url": "https://www.compass.com/neighborhood-guides/sf/" + }, + { + "slug": "chicago", + "name": "Chicago", + "coordinates": [ + "87°40′37″ W", + "41°53′12″ N" + ], + "size": 1, + "image": "external_cache/guide-chicago-thumbnail.webp", + "source_url": "https://www.compass.com/neighborhood-guides/chicago/" + }, + { + "slug": "westchester_ny", + "name": "Westchester & Hudson Valley", + "coordinates": [ + "73°50′27″ W", + "41°03′46″ N" + ], + "size": 1, + "image": "external_cache/guide-westchester-market-mosaic-tile.webp", + "source_url": "https://www.compass.com/neighborhood-guides/westchester_ny/" + }, + { + "slug": "naples", + "name": "Southwest Florida", + "coordinates": [ + "40°59′17.772″ N", + "72°18′0.936″ W" + ], + "size": 1, + "image": "external_cache/guide-naplesneighborhoodguidebanner.webp", + "source_url": "https://www.compass.com/neighborhood-guides/naples/" + }, + { + "slug": "greenwich_ct", + "name": "Connecticut", + "coordinates": [ + "73°37′33.4″ W", + "41°01′37″ N" + ], + "size": 1, + "image": "external_cache/guide-greenwich-thumbnail-geo.webp", + "source_url": "https://www.compass.com/neighborhood-guides/greenwich_ct/" + }, + { + "slug": "philadelphia", + "name": "Pennsylvania, Delaware, & South Jersey", + "coordinates": [ + "75°09′23″ W", + "39°56′55″ N" + ], + "size": 1, + "image": "external_cache/guide-philadelphia-geo-mosaic.webp", + "source_url": "https://www.compass.com/neighborhood-guides/philadelphia/" + }, + { + "slug": "san_diego", + "name": "San Diego", + "coordinates": [ + "117°09′01″ W", + "32°44′04″ N" + ], + "size": 2, + "image": "external_cache/guide-ca---san-diego---la-jolla---112.webp", + "source_url": "https://www.compass.com/neighborhood-guides/san_diego/" + }, + { + "slug": "austin", + "name": "Austin & Central Texas", + "coordinates": [ + "97°46′56.316″ W", + "30°16′3.9″ N" + ], + "size": 1, + "image": "external_cache/guide-austion-geo-tile.webp", + "source_url": "https://www.compass.com/neighborhood-guides/austin/" + }, + { + "slug": "atlanta", + "name": "Greater Atlanta", + "coordinates": [ + "33°50′23.156″ N", + "84°22′44.782″ W" + ], + "size": 1, + "image": "external_cache/guide-atlanta-geo-tile.webp", + "source_url": "https://www.compass.com/neighborhood-guides/atlanta/" + }, + { + "slug": "houston", + "name": "Houston", + "coordinates": [ + "95°22′45″ W", + "29°45′23″ N" + ], + "size": 1, + "image": "external_cache/guide-houston-geo-mosaic.webp", + "source_url": "https://www.compass.com/neighborhood-guides/houston/" + }, + { + "slug": "dallas", + "name": "Dallas-Fort Worth", + "coordinates": [ + "96°48′34″ W", + "32°51′51″ N" + ], + "size": 1, + "image": "external_cache/guide-dallas-market-module--mosaic-grid-markets-.webp", + "source_url": "https://www.compass.com/neighborhood-guides/dallas/" + }, + { + "slug": "seattle", + "name": "Seattle, Eastside, & Greater Puget Sound", + "coordinates": [ + "122°20′22″ W", + "47°36′52.9″ N" + ], + "size": 2, + "image": "external_cache/guide-seattle-geomosaic-tile.webp", + "source_url": "https://www.compass.com/neighborhood-guides/seattle/" + }, + { + "slug": "lake_tahoe", + "name": "Lake Tahoe, Reno, Mammoth Lakes", + "coordinates": [ + "120°01′54″ W", + "39°05′21″ N" + ], + "size": 2, + "image": "external_cache/guide-compass-web-3.webp", + "source_url": "https://www.compass.com/neighborhood-guides/lake_tahoe/" + }, + { + "slug": "charlotte", + "name": "Charlotte", + "coordinates": [ + "80°49′44.976″ W", + "35°09′0.576″ N" + ], + "size": 1, + "image": "external_cache/guide-nc---charlotte---marketing-imagery---6.webp", + "source_url": "https://www.compass.com/neighborhood-guides/charlotte/" + }, + { + "slug": "durham_raleigh", + "name": "Greater Raleigh", + "coordinates": [ + "78°41′39.3″ W", + "35°50′49.92″ N" + ], + "size": 1, + "image": "external_cache/guide-nc---raleigh---marketing-image---14.webp", + "source_url": "https://www.compass.com/neighborhood-guides/durham_raleigh/" + }, + { + "slug": "indianapolis", + "name": "Indiana", + "coordinates": [ + "39°55′42.564″ N", + "86°09′2.304″ W" + ], + "size": 2, + "image": "external_cache/guide-in---indianapolis---marketing-image---4.webp", + "source_url": "https://www.compass.com/neighborhood-guides/indianapolis/" + } +] diff --git a/sites/compass/requirements.txt b/sites/compass/requirements.txt new file mode 100644 index 00000000..9d63dcdf --- /dev/null +++ b/sites/compass/requirements.txt @@ -0,0 +1,8 @@ +Flask==3.1.0 +Flask-SQLAlchemy==3.1.1 +Flask-Login==0.6.3 +Flask-WTF==1.2.2 +Flask-Bcrypt==1.0.1 +SQLAlchemy==2.0.36 +Werkzeug==3.1.3 +email-validator==2.2.0 diff --git a/sites/compass/scripts/normalize_sources.py b/sites/compass/scripts/normalize_sources.py new file mode 100644 index 00000000..3b4cb5a9 --- /dev/null +++ b/sites/compass/scripts/normalize_sources.py @@ -0,0 +1,104 @@ +"""Normalize public Compass page snapshots without executing page JavaScript. + +Usage: python scripts/normalize_sources.py SNAPSHOT_DIR [OUTPUT_JSON] +SNAPSHOT_DIR contains .html and metadata .json files with +requested_url and retrieved_at. A different listing transaction is never merged. +""" +import hashlib +import json +from concurrent.futures import ThreadPoolExecutor +from pathlib import Path +import re +import sys + + +def number(value): + try: + value=float(str(value).replace(',', '')) + return int(value) if value.is_integer() else value + except (ValueError, TypeError): + return None + + +def normalize(html, original_id, metadata): + marker=re.search(r'window\.__INITIAL_DATA__\s*=\s*', html) + if not marker: + raise ValueError('Public listing payload missing') + page=json.JSONDecoder().raw_decode(html[marker.end():])[0] + listing=page.get('props',{}).get('listingRelation',{}).get('listing',{}) + if str(listing.get('listingIdSHA','')) != str(original_id): + raise ValueError('Listing transaction changed; retain original basic snapshot only') + details=listing.get('detailedInfo',{}) + facts={f['key']:f['value'] for f in details.get('keyDetails',[]) if f.get('key') and f.get('value') not in ('', '-', None)} + regional={f['key']:f['value'] for f in details.get('regionalKeyDetails',[]) if f.get('key') and f.get('value') not in ('', '-', None)} + size=listing.get('size',{}) + loc=listing.get('location',{}) + price=listing.get('price',{}) + # The listing section is authoritative here; assessor records are a different + # source and can disagree (e.g. the public-record year may differ by one). + record={ + 'listing_id':str(original_id), + 'source_url':metadata['requested_url'], + 'retrieved_at':metadata['retrieved_at'], + 'html_sha256':hashlib.sha256(html.encode()).hexdigest(), + 'price':number(price.get('lastKnown')), + 'address':loc.get('prettyAddress',''), + 'unit':loc.get('unitNumber',''), + 'city':loc.get('city',''), + 'state':loc.get('state',''), + 'zip':loc.get('zipCode',''), + 'neighborhood':loc.get('neighborhood',''), + 'latitude':loc.get('latitude'), + 'longitude':loc.get('longitude'), + 'beds':number(size.get('bedrooms')), + 'baths_full':number(size.get('fullBathrooms')), + 'baths_half':number(size.get('halfBathrooms')), + 'baths_total':number(size.get('bathrooms')), + 'sqft':number(size.get('squareFeet')), + 'property_type':facts.get('Property Type',''), + 'year_built':number(facts.get('Year Built')), + 'mls_number':facts.get('MLS #',''), + 'status_text':facts.get('Status',listing.get('localizedStatus','')), + 'days_on_market':number(listing.get('date',{}).get('daysOnMarket')), + 'listed_at_ms':listing.get('date',{}).get('listed'), + 'description':listing.get('description',''), + 'features':details.get('amenities',[]), + 'property_facts':facts, + 'regional_facts':regional, + 'agent':None, + } + for raw in re.findall(r']*type="application/ld\+json"[^>]*>(.*?)',html,re.S): + obj=json.loads(raw) + for graph in obj.get('@graph',[obj]): + if str(graph.get('mpn','')) != str(original_id): + continue + agent=graph.get('offers',{}).get('offeredBy',{}) + if isinstance(agent,dict) and agent.get('name'): + record['agent']={k:agent.get(k,'') for k in ('name','email','telephone')} + # Keep only facts represented by the public page, not anonymous visitor IDs, + # ad metadata, tracking URLs, account fields or private contact attributes. + return record + + +def main(): + source=Path(sys.argv[1]); output=Path(sys.argv[2]) if len(sys.argv)>2 else Path(__file__).resolve().parents[1]/'source_data.json' + rows={}; skipped={} + def read_record(path): + meta=path.with_suffix('.json') + if not meta.exists(): return path.stem, None, 'Metadata missing' + try: + return path.stem, normalize(path.read_text(),path.stem,json.loads(meta.read_text())), None + except (ValueError,KeyError,TypeError,OSError) as exc: + return path.stem, None, str(exc) + with ThreadPoolExecutor(max_workers=8) as pool: + for index, (key, record, error) in enumerate(pool.map(read_record, sorted(source.glob('*.html'))), 1): + if record: rows[key]=record + else: skipped[key]=error + if index % 50 == 0: + output.write_text(json.dumps({'schema_version':1,'listings':rows},ensure_ascii=False,indent=2)+'\n') + print(f'Processed {index} snapshots; verified {len(rows)}, skipped {len(skipped)}',file=sys.stderr,flush=True) + output.write_text(json.dumps({'schema_version':1,'listings':rows},ensure_ascii=False,indent=2)+'\n') + print(json.dumps({'verified_listings':len(rows),'skipped':len(skipped),'reasons':list(set(skipped.values()))},indent=2)) + + +if __name__=='__main__': main() diff --git a/sites/compass/seed_data.py b/sites/compass/seed_data.py new file mode 100644 index 00000000..15517b1e --- /dev/null +++ b/sites/compass/seed_data.py @@ -0,0 +1,332 @@ +"""Build the offline catalog from contributor snapshots and verified source facts. + +External facts are never generated. Unknown values stay absent. Only benchmark +accounts and their saved homes, collections and tours are synthetic. +""" +import hashlib +import json +import os +import re +from datetime import date, datetime, timedelta, timezone + +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) +LISTINGS_JSON = os.path.join(BASE_DIR, "listings_clean.json") +SOURCES_JSON = os.path.join(BASE_DIR, "source_data.json") + + +def _h(*parts): + return int(hashlib.md5("|".join(map(str, parts)).encode()).hexdigest(), 16) + + +def _slug(value): + return re.sub(r"[^A-Za-z0-9]+", "-", (value or "").strip().lower()).strip("-") or "x" + + +def _city_slug(name, state): + return f"{_slug(name)}-{state.lower()}" + + +def _gallery_paths(listing_id, count=4): + root = f"static/images/listings/{listing_id}" + paths = [f"/{root}/" + ("hero.webp" if i == 0 else f"gallery_{i}.webp") for i in range(count)] + paths += [f"/static/external_cache/listings/{listing_id}/gallery_{i}.jpg" for i in range(4, 8)] + return [p for p in paths if os.path.isfile(os.path.join(BASE_DIR, p.lstrip("/")))] + + +def seed_neighborhood_guides(): + """Import the observed regional pages once; requests read the SQLite snapshot.""" + from app import NeighborhoodGuide, db + if NeighborhoodGuide.query.first(): + return + with open(os.path.join(BASE_DIR, "neighborhood_regions.json"), encoding="utf-8") as source: + directory = json.load(source) + with open(os.path.join(BASE_DIR, "neighborhood_guides.json"), encoding="utf-8") as source: + guides = json.load(source) + for position, item in enumerate(directory): + db.session.add(NeighborhoodGuide( + slug=item["slug"], position=position, + directory_json=json.dumps(item), content_json=json.dumps(guides[item["slug"]]), + )) + db.session.commit() + + +def seed_database(): + from app import Agent, City, Listing, db + if Listing.query.count(): + return + with open(LISTINGS_JSON) as file: + data = json.load(file) + with open(SOURCES_JSON) as file: + sources = json.load(file)["listings"] + agents = {} + cities = {} + featured = {"New York", "Los Angeles", "Miami", "San Francisco", "Boston", "Austin", "Aspen", "Denver"} + for raw in data: + gallery = _gallery_paths(raw["listing_id"]) + if not gallery or not raw.get("city") or not raw.get("price"): + continue + source = sources.get(raw["listing_id"], {}) + market = raw["city"] + city = source.get("city") or market + state = source.get("state") or raw["state"] + city_key = (market, state) + if city_key not in cities: + c = City(slug=_city_slug(market, state), name=market, state=state, + hero_image=gallery[0], blurb=f"Explore homes in the {market} area.", is_featured=market in featured) + db.session.add(c) + cities[city_key] = c + source_agent = source.get("agent") + agent = None + if source_agent: + key = (source_agent["name"], source_agent.get("email", "")) + if key not in agents: + token = hashlib.sha256("|".join(key).encode()).hexdigest()[:8] + agent = Agent(slug=f"{_slug(key[0])}-{token}", name=key[0], title="Listing agent", + email=source_agent.get("email", ""), phone=source_agent.get("telephone", ""), + city=city, state=state) + db.session.add(agent) + agents[key] = agent + agent = agents[key] + address = source.get("address") or raw.get("street") or "Address withheld" + # Preserve contributor slugs so existing links and review references survive. + slug = _slug(f"{raw.get('street')}-{market}-{raw.get('state')}-{raw['listing_id'][-8:]}")[:180] + features = source.get("features", []) + facts = source.get("property_facts", {}) + regional = source.get("regional_facts", {}) + status_text = source.get("status_text", "") + status = "for-rent" if raw.get("is_rent") else "for-sale" + normalized_status = status_text.lower() + if normalized_status.startswith("sold"): + status = "sold" + elif normalized_status in {"rented", "closed", "expired", "canceled", "cancelled", "withdrawn"}: + status = normalized_status + badges = raw.get("badges") or [] + listed_at = source.get("listed_at_ms") + beds = source.get("beds") if source else (raw.get("beds") or None) + baths_full = source.get("baths_full") if source else (raw.get("baths_full") or None) + baths_half = source.get("baths_half") if source else raw.get("baths_half") + baths_total = source.get("baths_total") if source else (raw.get("baths") or None) + price = source.get("price") if source else raw["price"] + active = status in {"for-sale", "for-rent"} + exclusive = ("coming soon" in normalized_status or "private" in normalized_status) if source else "Compass Coming Soon" in badges + new = source.get("days_on_market") is not None and 0 <= source["days_on_market"] <= 7 if source else "New" in badges + garage = regional.get("Garage", "").lower() + listing = Listing( + listing_id_sha=raw["listing_id"], slug=slug, address=address, + unit=source.get("unit") or "", market_city=market, + city=city, state=state, zip=source.get("zip") or raw.get("zip") or "", + neighborhood=source.get("neighborhood") or raw.get("neighborhood") or "", + latitude=source.get("latitude", raw.get("latitude")), longitude=source.get("longitude", raw.get("longitude")), + status=status, is_rental=bool(raw.get("is_rent")), price=price, beds=beds, baths_full=baths_full, baths_half=baths_half, baths_total=baths_total, + sqft=source.get("sqft") if source else (raw.get("sqft") or None), + year_built=source.get("year_built"), property_type={"Multi Family": "Multi-Family"}.get(source.get("property_type"), source.get("property_type", "")), + description=source.get("description", ""), features=json.dumps(features), + hero_image=gallery[0], gallery_images=json.dumps(gallery), + mls_number=source.get("mls_number", ""), days_on_compass=source.get("days_on_market"), + listed_at=datetime.fromtimestamp(listed_at/1000, tz=timezone.utc).replace(tzinfo=None) if listed_at else None, + is_compass_exclusive=active and exclusive, + is_new=active and new, is_luxury=bool(price and price >= 5000000), + is_pending="pending" in status_text.lower() or "contract" in status_text.lower(), + has_pool=True if "Pool" in features else None, + has_doorman=True if "Doorman" in features else None, + has_elevator=True if "Elevator" in features else None, + has_parking=True if "Parking Included" in features else None, + has_garage=True if garage == "yes" or "Garage" in features else (False if garage == "no" else None), + has_waterfront=True if "Waterfront" in features else None, + pets_allowed=True if "Pet Friendly" in features else None, + furnished=True if "Fully Furnished" in features else None, + source_url=raw["detail_url"], source_retrieved_at=source.get("retrieved_at", ""), + source_html_sha256=source.get("html_sha256", ""), property_facts_json=json.dumps(facts), regional_facts_json=json.dumps(regional), + agent=agent, + ) + db.session.add(listing) + db.session.commit() + + +BENCHMARK_USERS = [ + { + "email": "alice.j@test.com", "name": "Alice Johnson", + "phone": "(415) 555-0144", "city": "San Francisco", "state": "CA", + "budget_min": 900_000, "budget_max": 1_600_000, "beds_min": 2, + "property_types": ["Condo", "Co-op"], "move_timeline": "3-6mo", + "saved_search": {"name": "SF condos 2BR under $1.6M", + "criteria": {"city": "San Francisco", "price_max": "1600000", + "beds": "2", "property_type": "Condo"}}, + "collection": {"name": "Alice — SF favorites", "filter_city": "San Francisco"}, + "tour_city": "San Francisco", + }, + { + "email": "bob.smith@test.com", "name": "Bob Smith", + "phone": "(212) 555-0177", "city": "New York", "state": "NY", + "budget_min": 1_200_000, "budget_max": 3_500_000, "beds_min": 3, + "property_types": ["Townhouse", "Single Family"], "move_timeline": "0-3mo", + "saved_search": {"name": "Brooklyn 3BR townhouses", + "criteria": {"city": "New York", "price_max": "3500000", + "beds": "3", "property_type": "Townhouse"}}, + "collection": {"name": "Bob — NY shortlist", "filter_city": "New York"}, + "tour_city": "New York", + }, + { + "email": "carol.lee@test.com", "name": "Carol Lee", + "phone": "(305) 555-0188", "city": "Miami", "state": "FL", + "budget_min": 600_000, "budget_max": 1_400_000, "beds_min": 2, + "property_types": ["Condo"], "move_timeline": "6-12mo", + "saved_search": {"name": "Miami waterfront condos", + "criteria": {"city": "Miami", "price_max": "1400000", + "beds": "2", "property_type": "Condo"}}, + "collection": {"name": "Carol — Miami picks", "filter_city": "Miami"}, + "tour_city": "Miami", + }, + { + "email": "david.kim@test.com", "name": "David Kim", + "phone": "(737) 555-0166", "city": "Austin", "state": "TX", + "budget_min": 700_000, "budget_max": 1_800_000, "beds_min": 3, + "property_types": ["Single Family"], "move_timeline": "3-6mo", + "saved_search": {"name": "Austin SFH 3BR", + "criteria": {"city": "Austin", "price_max": "1800000", + "beds": "3", "property_type": "Single Family"}}, + "collection": {"name": "David — Austin top picks", "filter_city": "Austin"}, + "tour_city": "Austin", + }, +] + + +def seed_benchmark_users(): + from app import (Collection, Inquiry, Listing, SavedHome, SavedSearch, + Tour, User, db) + # Function-level gate. + if User.query.filter_by(email="alice.j@test.com").first(): + return + + USER_BASE_TS = datetime(2026, 1, 5, 12, 0, 0) + users = [] + for idx, u in enumerate(BENCHMARK_USERS): + user = User( + email=u["email"], name=u["name"], phone=u["phone"], + city=u["city"], state=u["state"], + budget_min=u["budget_min"], budget_max=u["budget_max"], + beds_min=u["beds_min"], + preferred_property_types=json.dumps(u["property_types"]), + move_timeline=u["move_timeline"], has_agent=False, + receive_alerts=True, + created_at=USER_BASE_TS + timedelta(hours=idx), + ) + # Deterministic password hash: bcrypt uses a random salt, so we + # replace bcrypt with a stable PBKDF2 (Werkzeug) hash for seed users + # so the seeded DB is byte-identical across reseeds. + from werkzeug.security import generate_password_hash + user.password_hash = generate_password_hash( + "webharbor123", + method="pbkdf2:sha256:1000", + salt_length=8, + ) + # Force a fixed salt so the hash is byte-deterministic. + import hashlib as _hl + fixed_salt = _hl.sha1(("salt-" + u["email"]).encode()).hexdigest()[:8] + derived = _hl.pbkdf2_hmac( + "sha256", b"webharbor123", fixed_salt.encode(), 1000, dklen=32 + ).hex() + user.password_hash = f"pbkdf2:sha256:1000${fixed_salt}${derived}" + db.session.add(user) + users.append((u, user)) + db.session.commit() + + SAVED_BASE = datetime(2026, 2, 1, 9, 0, 0) + # Saved homes — 3 per user, deterministically chosen from listings in the + # user's city. We pick 3 DISTINCT listings (hash-derived indices into the + # candidate list, with collision-avoidance) so every benchmark user has a + # uniform shortlist size — tasks reference "alice's 3 saved homes" etc. + for u_idx, (cfg, user) in enumerate(users): + candidates = (Listing.query + .filter_by(market_city=cfg["tour_city"], status="for-sale") + .order_by(Listing.id).all()) + if not candidates: + continue + picked_idx = [] + attempt = 0 + while len(picked_idx) < 3 and attempt < 30: + idx = _h("save", user.email, len(picked_idx), attempt) % len(candidates) + if idx not in picked_idx: + picked_idx.append(idx) + attempt += 1 + for i, idx in enumerate(picked_idx): + L = candidates[idx] + existing = SavedHome.query.filter_by(user_id=user.id, listing_id=L.id).first() + if not existing: + db.session.add(SavedHome( + user_id=user.id, listing_id=L.id, note="", + saved_at=SAVED_BASE + timedelta(days=u_idx, hours=i), + )) + db.session.commit() + + SEARCH_BASE = datetime(2026, 2, 10, 9, 0, 0) + # Saved searches + for u_idx, (cfg, user) in enumerate(users): + ss = cfg["saved_search"] + existing = SavedSearch.query.filter_by(user_id=user.id, name=ss["name"]).first() + if not existing: + db.session.add(SavedSearch( + user_id=user.id, name=ss["name"], + criteria_json=json.dumps(ss["criteria"]), notify=True, + created_at=SEARCH_BASE + timedelta(hours=u_idx), + )) + db.session.commit() + + COL_BASE = datetime(2026, 3, 1, 10, 0, 0) + # Collections (each user gets one with 3 listings from their city) + for u_idx, (cfg, user) in enumerate(users): + c_cfg = cfg["collection"] + if Collection.query.filter_by(user_id=user.id, name=c_cfg["name"]).first(): + continue + candidates = (Listing.query + .filter_by(market_city=c_cfg["filter_city"], status="for-sale") + .order_by(Listing.price).limit(20).all()) + pick = [listing.id for listing in sorted(candidates, key=lambda listing: _h("col", user.email, listing.id))[:3]] + # Make share token deterministic via hash so reseed produces same bytes + token = hashlib.sha1(("col" + user.email).encode()).hexdigest()[:12] + c = Collection( + user_id=user.id, name=c_cfg["name"], + description="Curated picks", share_token=token, + listing_ids_json=json.dumps(pick), + created_at=COL_BASE + timedelta(hours=u_idx), + ) + db.session.add(c) + db.session.commit() + + # Tours — 1-2 per user, deterministic dates + for cfg, user in users: + existing = Tour.query.filter_by(user_id=user.id).first() + if existing: + continue + cands = (Listing.query + .filter_by(market_city=cfg["tour_city"], status="for-sale") + .filter(Listing.agent_id.isnot(None)) + .order_by(Listing.id).all()) + if not cands: + continue + # First tour + L1 = cands[(_h("t1", user.email)) % len(cands)] + d1 = date(2026, 6, 1) + timedelta(days=_h("td1", user.email) % 14) + db.session.add(Tour( + user_id=user.id, listing_id=L1.id, + requested_date=d1.isoformat(), + requested_time="2:00 PM", + tour_type="in-person", + contact_phone=user.phone, + status="requested", + requested_at=datetime(2026, 5, 1) + timedelta(hours=_h("ta1", user.email) % 96), + )) + # Second tour for some + if _h("t2", user.email) % 2 == 0: + L2 = cands[(_h("t2lid", user.email)) % len(cands)] + d2 = date(2026, 6, 15) + timedelta(days=_h("td2", user.email) % 10) + db.session.add(Tour( + user_id=user.id, listing_id=L2.id, + requested_date=d2.isoformat(), + requested_time="11:00 AM", + tour_type="video", + contact_phone=user.phone, + status="confirmed", + requested_at=datetime(2026, 5, 3) + timedelta(hours=_h("ta2", user.email) % 96), + )) + db.session.commit() diff --git a/sites/compass/source_data.json b/sites/compass/source_data.json new file mode 100644 index 00000000..6733b2c1 --- /dev/null +++ b/sites/compass/source_data.json @@ -0,0 +1,21351 @@ +{ + "schema_version": 1, + "listings": { + "1531201878968659849": { + "listing_id": "1531201878968659849", + "source_url": "https://www.compass.com/homedetails/Address-Upon-Request-Washington-DC-20001/1531201878968659849_lid/", + "retrieved_at": "2026-09-06T03:48:06.429673+00:00", + "html_sha256": "da65d1ee0a40b08710a4560fca4f8cc1e1be562f2468ddf0dfaffe6b279e3400", + "price": 725000, + "address": "Address Upon Request", + "unit": "", + "city": "Washington", + "state": "DC", + "zip": "20001", + "neighborhood": "Shaw", + "latitude": null, + "longitude": null, + "beds": 2, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 1225, + "property_type": "Condo", + "year_built": 1921, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Welcome home 1740 New Jersey Ave NW in the centrally located Shaw neighborhood of DC. Designer renovated with all the upgrades you want in a home. Find modern comforts with character in this rare layout offering 2 level corner unit living with 2 bedroom and 2 full bathroom + 1 half bathroom with tall ceilings, natural light and a private entrance. Outdoor space abounds with a private patio with a pergola / small yard and access to a large yard and rooftop view of the Washington monument. The unit in a boutique building is rounded out with a storage locker with bike racks and is just three short blocks to the Shaw Metro. Your new home is within walking distance to all that DC has to offer!\n\nSun drenched mornings lead to a beautiful afternoon glow with the East, North and West facing exposures of the 8 oversized windows in the main living space. Enjoy the open layout living across 1,225 sq ft (approximate). This unit features high ceilings, modern gray hardwood floors and dimmers throughout. The gourmet kitchen is outfitted with waterfall Calacatta Quartz countertops and backsplash, under cabinet lighting, Stainless Steel appliances, custom cabinetry and island bar seating for flexible dining options. The primary en-suite features a very spacious walk-in shower with frameless glass entry, double vanity sink with extensive storage solutions not to mention the walk-in closet and additional wardrobe. Follow the modern railings to the additional storage closet tucked away beneath the stairs, just next to the double doors that open to the in-unit LG washer / dryer. Head into the spacious second bedroom or office and walk-in closet. The second ensuite bathroom with tub gives that much needed added touch for separate living. This is the perfect location minutes from downtown and with an eclectic mix of dining, retail, and entertainment options surrounding you - The Royal, Whole Foods, 9:30 Club, Shaw’s Tavern, Solidcore, and much more. The recently completed S St revitalization project has added incredible value to the neighborhood with a new path behind the post office offers green space and a walkway / bike path.\n\n2 BD | 2.5 BA | Renovated | Natural Light | Private Outdoor Patio with Pergola and Yard| Storage + Bike Room | 3 Blocks to Shaw Metro | Boutique Building with shared Rooftop", + "features": [ + "Common Roof Deck", + "Washer / Dryer in Unit", + "Central AC", + "Premium Counters", + "Common Storage", + "Midrise", + "Island Kitchen", + "Kitchen Dining" + ], + "property_facts": { + "Status": "Coming Soon", + "Pet Policy": "Allowed", + "Condo/Co-op Fees": "$409 / month", + "Property Type": "Condo", + "Year Built": "1921", + "County": "District of Columbia", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Ownership": "Condominium", + "Structure Type": "Unit/Flat/Apartment", + "Levels/Stories": "Two (2)", + "Subdivision": "TRUXTON CIRCLE (WASHINGTON DC)", + "Legal Subdivision": "OLD CITY #2", + "Central Air": "Yes", + "Basement": "No", + "New Construction": "No" + }, + "agent": { + "name": "Paniz Asgari", + "email": "paniz.asgari@compass.com", + "telephone": "2026041403" + } + }, + "1581437739056080049": { + "listing_id": "1581437739056080049", + "source_url": "https://www.compass.com/homedetails/566-S-San-Vicente-Blvd-Unit-103S-Los-Angeles-CA-90048/1JSD0R_pid/", + "retrieved_at": "2026-09-06T03:42:45.324963+00:00", + "html_sha256": "ca04922f48f8fcfac83326203e80eb8872a9ec2b36178e59cf55b8b288e7299b", + "price": 1285, + "address": "566 South San Vicente Boulevard, Unit 103S", + "unit": "103S", + "city": "Los Angeles", + "state": "CA", + "zip": "90048", + "neighborhood": "Beverly Center-Miracle Mile", + "latitude": 34.0670912, + "longitude": -118.3734744, + "beds": null, + "baths_full": 0, + "baths_half": 0, + "baths_total": null, + "sqft": null, + "property_type": "Office", + "year_built": null, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "", + "features": [], + "property_facts": { + "Status": "Coming Soon", + "Available Date": "05/21/2024", + "Property Type": "Office", + "County": "Los Angeles County" + }, + "regional_facts": {}, + "agent": { + "name": "Lynne Paxton", + "email": "lynne.paxton@compass.com", + "telephone": "3102594056" + } + }, + "1713881232348223185": { + "listing_id": "1713881232348223185", + "source_url": "https://www.compass.com/homedetails/605-W-Bleeker-St-Aspen-CO-81611/LTKH5_pid/", + "retrieved_at": "2026-09-06T03:38:32.379225+00:00", + "html_sha256": "33c7efb7abfe4eac2e06a007b364bcd34f41fd5766ad458c2a7d1c694e1ed623", + "price": 18450000, + "address": "605 West Bleeker Street", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "The West End", + "latitude": 39.1932567, + "longitude": -106.8287384, + "beds": 4, + "baths_full": 5, + "baths_half": 1, + "baths_total": 5.5, + "sqft": 4314, + "property_type": "Single Family", + "year_built": 1880, + "mls_number": "186131", + "status_text": "Active", + "days_on_market": 589, + "listed_at_ms": 1732060800000, + "description": "Initially built in 1880, this historically preserved and recently reimagined handsome home is sited on a corner lot in Aspen's coveted West End. Meticulously crafted, the four-bedroom iconic residence blends elegance with thoughtful design. Every detail has been carefully considered, featuring integrated innovative technology that controls lighting, audio, and climate for seamless comfort. Outdoor living provides a private patio featuring a stainless steel hot tub, a generous rooftop deck, and creative landscaping enhanced by an Aspen signature summer stream. A one-car garage and additional outdoor parking ensure convenience. This home offers luxury, style, and functionality in one of Aspen's most coveted neighborhoods.", + "features": [ + "Garage", + "Gym", + "Washer / Dryer in Unit", + "Air Conditioning", + "Waterfront", + "Private Outdoor Space" + ], + "property_facts": { + "Status": "Active", + "MLS #": "186131", + "Days on Market": "589", + "Taxes": "$36,798 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family", + "Year Built": "1880", + "Lot Size": "0.10 AC / 4,356 SF", + "County": "Pitkin County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Garage": "Yes", + "Property Faces": "North", + "Style": "Victorian, Contemporary", + "Fireplace: # Fireplaces": "1", + "Sub/Loc": "None" + }, + "agent": { + "name": "Steven Shane", + "email": "steven.shane@compass.com", + "telephone": "9709486005" + } + }, + "1727622680580487609": { + "listing_id": "1727622680580487609", + "source_url": "https://www.compass.com/homedetails/415-E-Dean-St-Unit-44ABC-WEEKS-51-52-Aspen-CO-81611/LSXNM_pid/", + "retrieved_at": "2026-09-06T03:38:35.663022+00:00", + "html_sha256": "30560364e432c53f87842724c49c7c939a8458a101641956ff4f840c88ec1ea0", + "price": 775000, + "address": "415 East Dean Street, Unit 44ABC WEEKS 51/52", + "unit": "44ABC WEEKS 51/52", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Aspen Central Core", + "latitude": 39.1866779, + "longitude": -106.8199579, + "beds": 3, + "baths_full": 3, + "baths_half": 0, + "baths_total": 3, + "sqft": 2120, + "property_type": "Condo", + "year_built": 2005, + "mls_number": "186268", + "status_text": "Active", + "days_on_market": 536, + "listed_at_ms": 1733702400000, + "description": "Own a recently updated, two-story corner unit one block from Aspen Mountain. This refreshed 3-bedroom residence features en-suite bedrooms, a spa tub, steam shower, mountain-view patios, and a full kitchen with high-end appliances. Two lock-off bedrooms offer rental flexibility. Enjoy guaranteed holiday weeks in this turn-key Aspen vacation property.", + "features": [ + "Elevator", + "Doorman", + "Garage", + "Gym", + "Pool", + "Washer / Dryer in Unit", + "Air Conditioning", + "Private Outdoor Space", + "Parking Included" + ], + "property_facts": { + "Status": "Active", + "MLS #": "186268", + "Days on Market": "536", + "HOA Fees": "$28 / year", + "Property Type": "Condo", + "MLS Type": "Fractional / Condominium", + "Year Built": "2005", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "Yes", + "Furnished": "Furnished", + "Sub/Loc": "G.A. resort condos aka The Aspen Mountain Residences" + }, + "agent": { + "name": "Jordie Karlinski", + "email": "jordie.karlinski@compass.com", + "telephone": "9702741255" + } + }, + "1729195892532402377": { + "listing_id": "1729195892532402377", + "source_url": "https://www.compass.com/homedetails/167-Lexington-St-Unit-2-East-Boston-MA-02128/1YB3L7_pid/", + "retrieved_at": "2026-09-06T03:40:09.589801+00:00", + "html_sha256": "83dd0f163a74108226e5c5cc6b76a2ba344932cefcfcf298369fdae4f4dd8a1d", + "price": 650000, + "address": "167 Lexington Street, Unit 2", + "unit": "2", + "city": "East Boston", + "state": "MA", + "zip": "02128", + "neighborhood": "East Boston", + "latitude": 42.37896550000001, + "longitude": -71.03365409999999, + "beds": 2, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 634, + "property_type": "Condo", + "year_built": null, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Located in the vibrant East Boston neighborhood, this newly renovated penthouse offers an exquisite blend of modern amenities and prime location. This spacious two-bedroom, one-bath residence boasts central air and heating, ensuring year-round comfort. The highlight of this home is the private balcony, providing breathtaking views of the Boston skyline—perfect for relaxation and entertaining. Inside, you'll find a flexible and open floor plan designed to cater to a contemporary lifestyle. Situated just minutes from the waterfront, you can enjoy the convenience of being close to local attractions, dining, and entertainment, all while residing in a tranquil, sought-after area. This property is an ideal choice for those seeking a blend of city living and serene home life.", + "features": [], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Condo", + "County": "Suffolk County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "East Boston's Eagle Hill", + "Area": "MA-Boston, MA-Boston-East Boston's Eagle Hill", + "Garage Spaces": "0", + "Open Parking Spaces": ".00", + "Parking Spaces Total": "0" + }, + "agent": { + "name": "Craig Shames", + "email": "craig.shames@compass.com", + "telephone": "5089880702" + } + }, + "1764776333397921937": { + "listing_id": "1764776333397921937", + "source_url": "https://www.compass.com/homedetails/125-Rooney-Cir-Aspen-CO-81612/LRKCW_pid/", + "retrieved_at": "2026-09-06T03:38:35.840071+00:00", + "html_sha256": "72d13614e5a5222715f8d1f7b223ea35feba3d04b4936ce9444e7ceecd6a2fa3", + "price": 37788163, + "address": "125 Rooney Circle", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81612", + "neighborhood": "Aspen Area", + "latitude": 39.0685527, + "longitude": -106.801133, + "beds": 15, + "baths_full": 17, + "baths_half": 2, + "baths_total": 18, + "sqft": 25277, + "property_type": "Single Family", + "year_built": 1990, + "mls_number": "186834", + "status_text": "Closed", + "days_on_market": 548, + "listed_at_ms": 1738108800000, + "description": "AUCTION BIDDING OPEN! Previously Listed at $99,000,000. Bidding ends Friday, July 17th. Current High Bid is $30,000,000. Showings by Appointment. \r\n\r\nThis 52-acre mountain sanctuary is a legacy estate that can never be recreated. A singular expression of frontier-inspired luxury and enduring craftsmanship, it represents the pinnacle of multi-generational living in Aspen. Seven authentically designed guest cabins are thoughtfully positioned across the landscape, each capturing sweeping views of the majestic Elk Mountain Range. The magnificent 16,631-square-foot main residence--complemented by a state-of-the-art fitness center--blends refined sophistication with advanced sustainability. Two tranquil ponds and river frontage enhance the pristine alpine setting, creating a sense of serenity and scale rarely found in the American West. Remote and awe-inspiring, yet only 11 miles from downtown Aspen, this is an irreplaceable compound of extraordinary vision and grandeur impossible to duplicate.\r\n\r\nCall Concierge Auctions or visit conciergeauctions.com for details.", + "features": [ + "Elevator", + "Garage", + "Washer / Dryer in Unit", + "Air Conditioning", + "Waterfront", + "Private Outdoor Space" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "186834", + "Days on Market": "548", + "Taxes": "$123,650 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family", + "Year Built": "1990", + "Lot Size": "52.20 AC / 2,273,832 SF", + "County": "Pitkin County", + "Buyer's Agent Compensation": "2%" + }, + "regional_facts": { + "Garage": "Yes", + "Property Faces": "South", + "Style": "Ranch, Cabin", + "Furnished": "Furnished", + "Sub/Loc": "Castle Creek" + }, + "agent": { + "name": "Steven Shane", + "email": "steven.shane@compass.com", + "telephone": "9709486005" + } + }, + "1768378618058228761": { + "listing_id": "1768378618058228761", + "source_url": "https://www.compass.com/homedetails/1102-Clermont-Ave-Austin-TX-78702/1EWCHW_pid/", + "retrieved_at": "2026-09-06T03:39:22.510319+00:00", + "html_sha256": "cd215d36989ef62f174bec28d38e9511f2483eeb19532abd10d981b24533395e", + "price": 1400000, + "address": "1102 Clermont Avenue", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78702", + "neighborhood": "Fiesta Gardens", + "latitude": 30.254886, + "longitude": -97.735795, + "beds": 3, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 2387, + "property_type": "Single Family", + "year_built": 2010, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Off market exclusive opportunity – Live in the heart of East Austin – 78702! Located in one of Austin’s most desirable areas, this exceptional property is a true gem at the doorstep to Downtown Austin. The lot is fully fenced with a gated entry and zoned GR-MU-CO-NP, offering potential for commercial use. From the moment you arrive, you’ll feel the special appeal of this space. Whether you’re seeking a peaceful urban retreat or a place to entertain, this 3-bedroom, 2.5-bath home has it all. Despite its central location, the property offers remarkable peace and quiet—a welcome contrast to the bustling city. Inside, high ceilings and abundant natural light highlight the spacious layout, with tile and carpet flooring throughout. The large living area flows seamlessly into the kitchen and dining space, perfect for enjoying morning coffee or hosting Sunday brunch. Designed for a chef, the kitchen boasts granite countertops, ample storage, and an open-concept layout that makes cooking a joy. For those working from home, the office alcove features a built-in desk and speakers to help you stay focused. The second-floor primary suite offers privacy and comfort with generous space, natural light, and a private balcony overlooking Clermont Ave and city views. The ensuite bath includes a soaking tub, separate shower, single vanity, and a walk-in closet. The large backyard is an entertainer’s dream, with a pergola-covered patio, fire pit, storage shed, and spectacular views of the city skyline. The epitome of an entertainer's paradise! You'll love both the private feel of this home as well as its proximity to some of East Austin's hottest restaurants and entertainment spots, DT Austin, Rainey St and the hike and bike trail. Don't miss the opportunity to own this one-of-a-kind property! **The neighboring property at 1100 Clermont is also available for sale separately, contact the agent for more details! ", + "features": [ + "Back Yard", + "Balcony", + "Breakfast Bar", + "Built-Ins", + "Carpet Floors", + "Central AC", + "Central Heating", + "Dishwasher", + "Dryer Hookup", + "Fence", + "Front Yard", + "Granite Kitchen Counter", + "High Ceilings", + "House", + "Laundry in Building", + "Media / Recreation Room", + "Open Kitchen", + "Pantry", + "Patio", + "Powder Room", + "Primary Ensuite", + "Primary Ensuite with Separate Shower", + "Primary Ensuite with Separate Tub", + "Private Parking", + "Private Patio", + "Private Yard", + "Recessed Lighting", + "Southwestern Exposure", + "Tile Floors", + "Walk-in Closet", + "Washer Hookup", + "Windowed Bathroom", + "Windowed Kitchen" + ], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Single Family", + "Year Built": "2010", + "Lot Size": "0.17 AC / 7,501 SF", + "County": "Travis County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision Name": "Lambies R C Resub Voss", + "Waterfront": "No", + "Elementary School": "Sanchez", + "Elementary School District": "Austin ISD", + "Middle Or Junior School": "Martin", + "Senior High School": "Austin", + "Levels": "Two", + "Master on Main": "No", + "Pool Private": "No" + }, + "agent": { + "name": "Eric Meissner", + "email": "eric.meissner@compass.com", + "telephone": "5126952867" + } + }, + "1769165095591571489": { + "listing_id": "1769165095591571489", + "source_url": "https://www.compass.com/homedetails/1100-Clermont-Ave-Austin-TX-78702/1F4RQJ_pid/", + "retrieved_at": "2026-09-06T03:39:24.541822+00:00", + "html_sha256": "16c881ee6e4ac99f7de7331cc5de58cb75619647921b4ac790ad47305a6f12fa", + "price": 1400000, + "address": "1100 Clermont Avenue", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78702", + "neighborhood": "Fiesta Gardens", + "latitude": 30.25485429999999, + "longitude": -97.73596260000001, + "beds": 3, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 2387, + "property_type": "Single Family", + "year_built": 2010, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Off market exclusive opportunity – Welcome to the heart of East Austin – 78702! This exceptional property offers a rare opportunity to live in one of Austin’s most sought-after neighborhoods, just steps from Downtown, Lady Bird Lake, and the vibrant Rainey Street district. Perfectly positioned with easy access to I-35 and the hike & bike trail, this home puts you right at the center of all the action while still offering a peaceful, residential vibe.\n\nBoasting a flexible GR-MU-CO-NP zoning, this property is perfect for a variety of commercial uses or creative ventures. Inside, you'll find a spacious and inviting layout with 3 bedrooms, 2.5 bathrooms, and a modern open-concept living area designed for both comfort and style. The warm stained concrete floors create a cozy atmosphere, and the easy flow from the living room to the kitchen and dining area makes this home ideal for entertaining. The chef-inspired kitchen comes ready to use with sleek granite countertops, ample storage in custom wood cabinetry, and tons of prep space to whip up your favorite meals. Need a place to work or play? A dedicated office area and game room provide the perfect spots for productivity or fun.\n\nThe second-floor primary suite is your private retreat, complete with direct access to a front balcony where you can unwind after a busy day. The ensuite bath features a large soaking tub, separate shower, double vanity, and a spacious walk-in closet.\n\nOutside, the expansive deck and backyard create a fantastic space for hosting friends, family, or just enjoying the perfect East Austin weather. With all the amenities of downtown living just a stone's throw away, this home offers the perfect mix of modern luxury and East Austin charm.\n\nDon’t miss your chance to own this one-of-a-kind gem in the heart of one of Austin’s most coveted neighborhoods! Contact the Listing Agent today for more information and to schedule a showing today! **The neighboring property at 1100 Clermont is also available for sale separately, contact the agent for more details!**\n", + "features": [ + "Back Yard", + "Balcony", + "Breakfast Bar", + "Built-Ins", + "Carpet Floors", + "Central AC", + "Central Heating", + "Concrete Floors", + "Dishwasher", + "Double Oven", + "Dryer Hookup", + "Fence", + "Foyer", + "Front Yard", + "Granite Kitchen Counter", + "High Ceilings", + "House", + "Laundry in Building", + "Media / Recreation Room", + "On-site Parking", + "Open Kitchen", + "Pantry", + "Patio", + "Powder Room", + "Primary Ensuite", + "Private Patio", + "Private Yard", + "Recessed Lighting", + "Southeastern Exposure", + "Tile Floors", + "Walk-in Closet", + "Washer Hookup", + "Windowed Bathroom" + ], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Single Family", + "Year Built": "2010", + "Lot Size": "0.17 AC / 7,501 SF", + "County": "Travis County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision Name": "DIV O LAMBIES R C RESUB OF VOSS", + "Waterfront": "No", + "Elementary School": "Sanchez", + "Elementary School District": "Austin ISD", + "Middle Or Junior School": "Martin", + "Senior High School": "Austin", + "Levels": "Two", + "Master on Main": "No", + "Pool Private": "No" + }, + "agent": { + "name": "Eric Meissner", + "email": "eric.meissner@compass.com", + "telephone": "5126952867" + } + }, + "1795365010515361945": { + "listing_id": "1795365010515361945", + "source_url": "https://www.compass.com/homedetails/8768-SW-62nd-Ct-Miami-FL-33156/1DME6C_pid/", + "retrieved_at": "2026-09-06T03:44:27.488699+00:00", + "html_sha256": "39fd7be01a75bc8428b73a00b47f10db4eaa0876e853e2bba25914e2247e514f", + "price": 3900000, + "address": "8768 Southwest 62nd Court", + "unit": "", + "city": "Miami", + "state": "FL", + "zip": "33156", + "neighborhood": "Pinecrest", + "latitude": 25.6903302, + "longitude": -80.295346, + "beds": 5, + "baths_full": 4, + "baths_half": 0, + "baths_total": 4, + "sqft": 4154, + "property_type": "Single Family", + "year_built": 1991, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Embark on a journey through the transformation of a Mediterranean marvel in Pinecrest, FL. This 1991 gem, is set in a secure gated community of 12 homes. New features include a modern roof (2024) and fresh exterior paint, Its architecture boasts 20-foot ceilings and arched windows, ensuring a well-lit interior. Inside, find marble floors, a grand staircase, and a peaceful second level. The home provides 5 bedrooms and 4 bathrooms, ensuring privacy and comfort. Occupying a 22,000 sqft lot with a 150 sqft canal frontage, it features a pool and jacuzzi. Near Pinecrest Gardens, fine dining, shopping, and elite schools, this property combines Mediterranean aesthetics with contemporary luxury. A rare opportunity for sophisticated living in a sought-after area.", + "features": [ + "Private Patio", + "Pool", + "Formal Dining Room", + "Dryer", + "Washer", + "Central AC", + "Electric Oven", + "Electric Stove", + "Breakfast Bar", + "Jacuzzi Tub", + "Floor to Ceiling Windows", + "Crown Mouldings", + "Spiral Staircase", + "High Ceilings", + "Marble Floors", + "Chandeliers", + "Walk-in Closet", + "Dual Closet", + "Bidet", + "Southern Exposure", + "Central Heating", + "House", + "Attached Garage", + "Security Gate" + ], + "property_facts": { + "Status": "Coming Soon", + "HOA Fees": "$195 / month", + "Property Type": "Single Family", + "Year Built": "1991", + "Lot Size": "0.49 AC / 21,301 SF", + "County": "Miami-Dade County", + "Buyer's Agent Compensation": "2%" + }, + "regional_facts": { + "Waterfront": "Yes", + "Area": "40", + "Geographic Area": "Other Geographic Area (Out Of Area Only)", + "Sq Ft Liv Area": "4154.0" + }, + "agent": { + "name": "Julian Acosta", + "email": "julian.acosta@compass.com", + "telephone": "7864732565" + } + }, + "1809571495064367481": { + "listing_id": "1809571495064367481", + "source_url": "https://www.compass.com/homedetails/864-Moore-Dr-Aspen-CO-81611/LTV1I_pid/", + "retrieved_at": "2026-09-06T03:38:38.091449+00:00", + "html_sha256": "422e7655812bbd940f70ceac08b25a78235674fe3b41fc55eacbf0ec4bf4bccb", + "price": 39500000, + "address": "864 Moore Drive", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "West Aspen", + "latitude": 39.184923, + "longitude": -106.841305, + "beds": 7, + "baths_full": 8, + "baths_half": 2, + "baths_total": 9, + "sqft": 10615, + "property_type": "Single Family", + "year_built": 2005, + "mls_number": "188891", + "status_text": "Pending", + "days_on_market": 414, + "listed_at_ms": 1750723200000, + "description": "Discretion meets distinction in this rare legacy offering in Aspen's elite Five Trees. For the buyer who demands luxury, and privacy. 10,615 square feet of refined living. Conceived by acclaimed interior designer Sandra Nunnerley, A blend of Scandinavian craftsmanship. Privately positioned on five pristine acres with commanding views over Castle Creek Valley. Seven en-suite bedrooms, various entertaining areas, a professional-grade gym with steam and sauna, and a 500-bottle wine cellar. Offered furnished (with exclusions).", + "features": [ + "Garage", + "Gym", + "Washer / Dryer in Unit", + "Air Conditioning", + "Private Outdoor Space" + ], + "property_facts": { + "Status": "Pending", + "MLS #": "188891", + "Days on Market": "414", + "Taxes": "$87,332 / year", + "HOA Fees": "$332 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family", + "Year Built": "2005", + "Lot Size": "4.95 AC / 215,622 SF", + "County": "Pitkin County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Garage": "Yes", + "Furnished": "Furnished", + "Fireplace: # Fireplaces": "2", + "Sub/Loc": "Fivetrees" + }, + "agent": { + "name": "Steven Shane", + "email": "steven.shane@compass.com", + "telephone": "9709486005" + } + }, + "1836600798260165145": { + "listing_id": "1836600798260165145", + "source_url": "https://www.compass.com/homedetails/999-Green-St-Unit-1401-San-Francisco-CA-94133/1QDTFC_pid/", + "retrieved_at": "2026-09-06T03:46:30.228908+00:00", + "html_sha256": "805a575cbcba7c34defe789fb86b41f37c7b692cf30c708ad83d96287d1f7a39", + "price": 2695000, + "address": "999 Green Street, Unit 1401", + "unit": "1401", + "city": "San Francisco", + "state": "CA", + "zip": "94133", + "neighborhood": "Russian Hill", + "latitude": 37.798447, + "longitude": -122.415218, + "beds": 1, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1473, + "property_type": "Condo", + "year_built": 1964, + "mls_number": "425044739", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "This fully remodeled 1BD/2BA condo is nestled on a quiet street in one of Russian Hill's most prestigious buildings w/24hr doorman & designated covered garage parking w/storage. The unit offers an unprecedented quality & luxury developed by Huang Iboshi Architects of SF to capture a contemporary open air feel for perfected indoor/outdoor living & entertaining. New floor-to-ceiling sliding glass doors & Fleetwood retractable windows frame sweeping skylines of Alcatraz & Coit Tower as well as the Fleet Week Aerial shows & seasonal fireworks displays. A beautiful fireplace centers the great room before flowing into the professionally equipped kitchen designed w/custom cabinets, natural quartzite counters, custom Ironics pendants & SS appliances. The residence's sophisticated design boasts a Bose custom sound system, queen-size Murphy bed, oversized Porcelanosa Italian tile & designer finishes. All this within walking distance to North Beach, Union Square, Marina, Cow Hollow & Polk Street.", + "features": [ + "Assigned Parking", + "Attached Garage", + "Bay Views", + "City Views", + "Common Outdoor Space", + "Dishwasher", + "Disposal", + "Elevator", + "Full-Time Doorman", + "Garage", + "Highrise", + "Laundry in Building", + "Laundry on Every Floor", + "Microwave", + "Mountain Views", + "Panoramic Views", + "Parking Included", + "Private Outdoor Space", + "Private Storage Included", + "Radiant Heating", + "Tile Floors", + "Water Views", + "Wet Bar" + ], + "property_facts": { + "Status": "Coming Soon", + "MLS #": "425044739", + "Pet Policy": "Allowed", + "HOA Fees": "$2,521 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1964", + "County": "San Francisco County" + }, + "regional_facts": { + "Parking Features": "Driveway, Attached, Enclosed, Garage Door Opener, Side By Side, Side by Side, On Site", + "Architectural Style": "Contemporary, Modern/High Tech", + "View Description": "Bay, City, City Lights, Mountain(s), Panoramic, San Francisco, Water", + "Cross Street": "Jones St", + "Total Parking Spaces": "1" + }, + "agent": { + "name": "Jason Hoffman", + "email": "jason.hoffman@compass.com", + "telephone": "4159351014" + } + }, + "1845716871705171257": { + "listing_id": "1845716871705171257", + "source_url": "https://www.compass.com/homedetails/3467-N-Hills-Dr-Austin-TX-78731/1845716871705171257_lid/", + "retrieved_at": "2026-09-06T03:39:26.696917+00:00", + "html_sha256": "5b33f6f520a4bfa389e25b605a288df2b92b6d6ce10c8dcafef6370d6e681449", + "price": 525000, + "address": "3467 North Hills Drive", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78731", + "neighborhood": "Northwest Hills", + "latitude": 30.348225, + "longitude": -97.75341399999999, + "beds": 3, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 1896, + "property_type": "Townhouse", + "year_built": 1973, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Tucked into the sought-after North Hills Club Townhomes community, this beautifully maintained 3-bedroom, 2.5-bath townhome features versatile living spaces, thoughtful updates, and wood floors throughout. The main living area offers a cozy fireplace, while the kitchen boasts granite countertops and a large peninsula perfect for friends and family to gather. Just off the main living area, a set of French doors opens to a spacious flex room that can serve as a cozy second living area, playroom, home office, or mudroom—conveniently connecting to the back door and attached 2-car garage. Upstairs, the converted attic adds another layer of functionality, perfect for a media room, yoga or Peloton studio, or even a quiet reading nook. The primary suite is a serene escape, complete with a luxurious ensuite bath featuring a double vanity, elegant finishes, and a walk-in shower. Two additional bedrooms share a well-appointed secondary bathroom with dual sinks, perfect for family or guests. Step outside to your private patio where you’ll enjoy sunset views over the community pool and green space—just steps away from a refreshing dip on warm Texas days. Located in the heart of Northwest Hills, this home is moments from top-rated schools, including Doss Elementary and Murchison Middle, as well as grocery stores, parks, and some of North Central Austin’s favorite spots like Hopdoddy, Grove Wine Bar, Jack Allen’s Kitchen, and Alamo Drafthouse.", + "features": [ + "Attached Garage", + "Barbecue Area", + "Breakfast Bar", + "Built-Ins", + "Central AC", + "Central Heating", + "Common Outdoor Space", + "Communal Pool", + "Curved Stairs", + "Dishwasher", + "Double Sink Bathroom", + "Fireplace", + "Granite Kitchen Counter", + "Hardwood Floors", + "Media / Recreation Room", + "Open Kitchen", + "Patio", + "Primary Ensuite", + "Private Patio", + "Range", + "Range Hood", + "Recessed Lighting", + "Tile Floors", + "Walk-in Closet", + "Washer / Dryer Hookup", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Coming Soon", + "HOA Fees": "$429 / month", + "Property Type": "Townhouse", + "Year Built": "1973", + "Lot Size": "0.04 AC / 1,651 SF", + "County": "Travis County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision Name": "North Hills Club Twnhs", + "Waterfront": "No", + "View": "Pool", + "Elementary School": "Doss (Austin ISD)", + "Elementary School District": "Austin ISD", + "Middle Or Junior School": "Murchison", + "Senior High School": "Anderson", + "Levels": "Two", + "Master on Main": "No", + "Pool Private": "No" + }, + "agent": { + "name": "Tim Landy", + "email": "tim.landy@compass.com", + "telephone": "5127730805" + } + }, + "1854157687172248057": { + "listing_id": "1854157687172248057", + "source_url": "https://www.compass.com/homedetails/137-Ridge-Trail-Aspen-CO-81611/DE7SU_pid/", + "retrieved_at": "2026-09-06T03:38:38.105847+00:00", + "html_sha256": "ddc727380622702b50d6d21af02a5db70808cb0e5ad914bf17fafe2122335fd6", + "price": 660000, + "address": "137 Ridge Trail", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Snowmass Village", + "latitude": 39.2913687, + "longitude": -106.9216691, + "beds": 3, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 910, + "property_type": "Single Family", + "year_built": 1973, + "mls_number": "188489", + "status_text": "Active", + "days_on_market": 421, + "listed_at_ms": 1748822400000, + "description": "CHECK OUT ALL THE NEW UPDATES ON THE UNIT, updated plumbing, updated electrical, new carpet, new flooring, new interior paint, new radon system, all roofing inspected and repaired by Pacific Sheet Metal, new kitchen counters, new kitchen sink, new kitchen faucets, new hardware in kitchen, new bathroom cabinet with marble top, new sink and faucets, new bathroom mirrors and new medicine chest. MOVE IN READY.\r\n\r\nThis Free-market unit can be sold at any price desired. You must be in the APCHA program Deed Restricted to Resident Occupied. Must work a minimum of 1 year prior to purchase in the Roaring Fork Valley, must work a minimum of 1500hrs/year in the Roaring Fork Valley (Aspen to Glenwood), cannot own any improved property from Aspen to Rifle, but can own vacant land. You own land and any all structures on the land. One of the largest lots available with 3 bedrooms, a private lawn with terraced gardens, storage shed and two car parking. This location has an Aspen address and is in the Aspen School District. Only be minutes away to Aspen, Snowmass or Basalt.\r\n\r\nThis is one of the best locations with southern sun exposure and one of the largest lots for sale in Aspen Village (5,789 sq. ft), that opens onto open space and trails. It has a natural home feeling with all the open space, yards and garden terraces. The front of the lot is facing north, and the back of the lot has sunny south facing opening onto the open space with a beautiful hillside and gardens. This 3-bedroom, 1 bath home is well cared for and easily maintained. Two large storage sheds are in the back lawn area with ample room. There are beautiful garden terraces for flowers, fruits and vegetables located on the south lawn, with a large patio on the east side and a sizable wooden deck on the west side surrounded by trees and lawn. \r\n\r\n You have the right to keep the current home on the lot or replace it with a larger home. This is important because you own the land and can build a free market unit of 2,026 square feet above grade, 100 square feet of free space up or downstairs for a utility room, and 800 square feet below grade with a height of 16 feet tall. Additional you are allowed a 400 square foot garage. All building or land changes are subject to the HOA that requires architectural approvals. \r\n\r\nYour residence must be full time, but you are allowed to rent out rooms or basement space to roommates. Aspen Village is located in the Aspen School District, and the school bus picks up children at community center of the village. Aspen Village amenities include an outdoor pool, club house and small gym, as well as a children's playground, baseball field, community gardens and hiking trails nearby. \r\n\r\nThis is a great community for locals. Service dogs are allowed, upon approval with the Aspen Village HOA, and cats are allowed. There is parking for two cars on site, a guest parking pass included, and free additional parking with approval to store a truck, RV, Boat or Trailer (one vehicle per household) in the separate out of view storage lot at the front of the community. A short walk takes you to the nearby bus stop, enhancing your connectivity to the entire valley. You are 5 minutes from Snowmass Village and have access to Sinclair gas and limited groceries at the entrance to Aspen Village.\r\n\r\nYou must qualify through APCHA (the employee housing program in Aspen), as you are required to work a certain number of hours in Roaring Valley. Please get qualified before making an offer. This is a free market APCHA. This is bank financeable based on credit of the Buyer and is a real estate home loan.", + "features": [ + "Gym", + "Common Outdoor Space", + "Private Outdoor Space" + ], + "property_facts": { + "Status": "Active", + "MLS #": "188489", + "Days on Market": "421", + "Taxes": "$3,991 / year", + "HOA Fees": "$400 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family", + "Year Built": "1973", + "Lot Size": "0.13 AC / 5,662 SF", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "No", + "Furnished": "Unfurnished", + "Sub/Loc": "Aspen Village" + }, + "agent": { + "name": "Heidi Houston", + "email": "heidi@compass.com", + "telephone": "9704041404" + } + }, + "1866786123233328601": { + "listing_id": "1866786123233328601", + "source_url": "https://www.compass.com/homedetails/Undisclosed-Address-North-Hollywood-CA-91606/1866786123233328601_lid/", + "retrieved_at": "2026-09-06T03:42:45.646816+00:00", + "html_sha256": "abd349d641a138d6281c6cc5774572c01374a1be262c1dcaa33ffccc0ae5204a", + "price": 795000, + "address": "6549 Teesdale Avenue", + "unit": "", + "city": "North Hollywood", + "state": "CA", + "zip": "91606", + "neighborhood": "Valley Glen", + "latitude": 34.1899092, + "longitude": -118.4083918, + "beds": 3, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 1199, + "property_type": "Single Family", + "year_built": 1942, + "mls_number": "26636759", + "status_text": "Sold", + "days_on_market": 8, + "listed_at_ms": 1778569200000, + "description": "Charming Valley Glen home on a quiet street in North Hollywood. This well-maintained residence features a spacious primary bedroom and an open floor plan, offering ample potential for expansion and customization. The enclosed patio could serve as an additional bedroom, home office, gym or flex space. The detached garage has been transformed into a cozy den with a kitchenette and half bathroom, providing excellent potential for conversion into an ADU (Accessory Dwelling Unit) ideal for added living space or possible rental income. Note that the square footage of this space is not included in the listing details. The spacious, private backyard is perfect for outdoor grilling, entertaining, gardening, or lounging in the Southern California sun. Located conveniently near major freeways like the 170, 101, and 134, this home offers easy commuting while keeping you close to all that North Hollywood has to offer. Schedule a showing today!", + "features": [ + "Garage", + "Washer / Dryer in Unit", + "Air Conditioning", + "Parking Included", + "Private Outdoor Space", + "Unfurnished" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "26636759", + "Days on Market": "8", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1942", + "Lot Size": "0.13 AC / 5,500 SF", + "County": "Los Angeles County", + "Compensation Remarks": "Co-Broke" + }, + "regional_facts": { + "Zoning": "LAR1", + "Style": "Mid-Century", + "Property Attached YN": "false", + "Parcel Number": "2325021021", + "Living Area": "1199", + "Source Living Area": "Vendor Enhanced", + "Area": "Valley Glen (VG)", + "Lot Size Area": "5500", + "Source Lot Size Area": "Vendor Enhanced", + "Assessor Parcel Number": "2325-021-021", + "Directions": "North of Victory Blvd, West of the 170." + }, + "agent": { + "name": "Geoff Talley", + "email": "geoff.talley@compass.com", + "telephone": "3107412355" + } + }, + "1870549046259276961": { + "listing_id": "1870549046259276961", + "source_url": "https://www.compass.com/homedetails/Canterbury-St-Austin-TX-78702/1870549046259276961_lid/", + "retrieved_at": "2026-09-06T03:39:28.595355+00:00", + "html_sha256": "a2085c79f4cc93c874cfc6915f9720f17292f7948e5cae6b47985117670fa0e3", + "price": 1849000, + "address": "1609 Canterbury Street, Unit 1", + "unit": "1", + "city": "Austin", + "state": "TX", + "zip": "78702", + "neighborhood": "East Cesar Chavez", + "latitude": 30.2561815, + "longitude": -97.7286642, + "beds": 5, + "baths_full": 5, + "baths_half": 1, + "baths_total": 5.5, + "sqft": 3210, + "property_type": "Condo", + "year_built": 2026, + "mls_number": "3815161", + "status_text": "Active", + "days_on_market": 22, + "listed_at_ms": 1786683600000, + "description": "An exceptional opportunity to own one of Holly’s most compelling new residences, 1609 Canterbury delivers the feel of a true private compound with design, scale, and amenities unlike almost anything else in East Austin. Built by renowned Mopac Builders and thoughtfully curated by award-winning Patrice Nichole Studio, this striking full-stucco residence pairs clean modern architecture with custom windows, multiple balconies, downtown views, and a beautifully landscaped private setting on a quiet, tree-lined street. Inside, expansive windows flood the home with natural light, while a statement fireplace, warm custom millwork, designer finishes, and generous living spaces create a sophisticated yet inviting atmosphere. The chef’s kitchen is anchored by custom cabinetry, dramatic stone surfaces, and a premium Thermador appliance package, opening seamlessly to the dining and living areas for effortless entertaining. A dramatic 10-foot, four-panel sliding glass door blurs the line between indoors and out, connecting the main living space to a covered outdoor living and dining area, built-in grill, and resort-style backyard. The private pool is surrounded by generous decking and lawn space, with a conveniently located pool bath designed for easy indoor-outdoor living. The spacious primary suite offers a serene retreat with abundant natural light, a spa-inspired bath, dual vanity, oversized shower, and custom cabinetry, while additional bedrooms and flexible living areas provide room for guests, an office, gym, or creative space. Multiple covered balconies create additional outdoor rooms and capture treetop and downtown views. Gated, private, and beautifully landscaped, this home offers a rare combination of architectural presence and relaxed Austin living. Just moments from Lady Bird Lake, the hike-and-bike trail, Rainey Street, East Cesar Chavez, coffee shops, restaurants, and downtown, 1609 Canterbury is a design-forward Holly residence that truly stands apart.", + "features": [ + "Air Conditioning", + "Below Ground Pool", + "Carport Parking", + "Ceiling Fan", + "Central AC", + "Central Heating", + "City Views", + "Driveway", + "Hardwood Floors", + "High Ceilings", + "Porch", + "Private Pool", + "Private Yard", + "Recessed Lighting", + "Tile Floors", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Active", + "MLS #": "3815161", + "Days on Market": "22", + "Taxes": "$21,088 / year", + "Property Type": "Condo", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "2026", + "County": "Travis County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision Name": "Riverside", + "Waterfront": "No", + "Waterfront Description": "See Remarks", + "Water Access Description": "Public", + "View": "City Lights, City, Neighborhood", + "View YN": "Yes", + "Parcel Number": "02020702050000", + "Tax Lot": "5", + "Tax Block": "5", + "Elementary School": "Sanchez", + "Elementary School District": "Austin ISD", + "Middle Or Junior School": "Martin", + "Middle Or Junior School District": "Austin ISD", + "Senior High School": "Eastside Early College", + "High School District": "Austin ISD", + "Levels": "Three Or More", + "Master on Main": "No", + "Num Living": "2", + "Living Area Source": "Builder", + "Year Built Source": "Builder", + "Property Condition": "New Construction", + "Pool Private": "Yes", + "Pool Features": "In Ground" + }, + "agent": { + "name": "Darsh Parikh", + "email": "darsh.parikh@compass.com", + "telephone": "5125933138" + } + }, + "1870568502376831969": { + "listing_id": "1870568502376831969", + "source_url": "https://www.compass.com/homedetails/Canterbury-St-Austin-TX-78702/1870568502376831969_lid/", + "retrieved_at": "2026-09-06T03:39:28.611760+00:00", + "html_sha256": "4a150d3d16ca524eadc629580f85e0552a4473b6c7c401e5acbeb591cf1469b6", + "price": null, + "address": "Canterbury Street", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78702", + "neighborhood": "East Cesar Chavez", + "latitude": null, + "longitude": null, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": null, + "property_type": "Condo", + "year_built": 2025, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Introducing a Rare Opportunity in the Heart of East Austin's Coveted Holly Neighborhood\n\nCrafted by renowned Mopac Builders and thoughtfully curated by the award-winning Patrice Nichole Studio, this stunning three-unit development blends modern luxury with timeless design, all just steps from Lady Bird Lake, Rainey Street, and the vibrant East Cesar Chavez entertainment corridor.\n\nTHE LOCATION:\nYou simply can’t beat it.\nWalk to Lady Bird Lake trail in minutes\nExplore buzzing bars and restaurants on Rainey Street\nGrab coffee, tacos, or a boutique find along East Cesar Chavez\nAll while living in a quiet, tree-lined pocket of Holly that feels like a true retreat\n\nTHE HOMES:\nEach home in this collection is designed with livability, light, and luxury in mind. You’ll find large windows flooding every space with natural light, open-concept layouts that make entertaining effortless, and curated materials that elevate the everyday.\n\nUNIT 2 & UNIT 3 – The Modern Hideaways\n\n2 Bedrooms | 2 Bathrooms Each\n\nPerfect for full-time residents, long-term rental, or city crash pad\nOpen kitchen and living area designed for connection and comfort\nTwo spacious bedrooms, each with ensuite bath\nLarge windows + stylish lighting = bright and airy vibes\nPrivate outdoor spaces ideal for morning coffee or evening wine\n️ Under Construction | Estimated Completion: March 2026\n\nSecure one of these thoughtfully designed residences now and customize final touches before completion.\n\nModern living in one of Austin’s most walkable and culturally rich neighborhoods—this is more than a home. It’s a lifestyle.", + "features": [], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Condo", + "Year Built": "2025", + "County": "Travis County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision Name": "Riverside", + "Waterfront": "No", + "Elementary School": "Metz", + "Elementary School District": "Austin ISD", + "Middle Or Junior School": "Martin", + "Senior High School": "Eastside Memorial", + "Levels": "Three or More", + "Pool Private": "Yes" + }, + "agent": { + "name": "Darsh Parikh", + "email": "darsh.parikh@compass.com", + "telephone": "5125933138" + } + }, + "1870576167626994393": { + "listing_id": "1870576167626994393", + "source_url": "https://www.compass.com/homedetails/Canterbury-St-Austin-TX-78702/1870576167626994393_lid/", + "retrieved_at": "2026-09-06T03:39:28.646176+00:00", + "html_sha256": "6cf230da04b0e468ce2fe30de052128353a60545397fa05d40328bdfe98705e0", + "price": null, + "address": "Canterbury Street", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78702", + "neighborhood": "East Cesar Chavez", + "latitude": null, + "longitude": null, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": null, + "property_type": "Condo", + "year_built": null, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "", + "features": [ + "Below Ground Pool" + ], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Condo", + "County": "Travis County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision Name": "Riverside", + "Waterfront": "No", + "Elementary School": "Metz", + "Elementary School District": "Austin ISD", + "Middle Or Junior School": "Martin", + "Senior High School": "Eastside Memorial", + "Levels": "Three or More", + "Pool Private": "Yes" + }, + "agent": { + "name": "Darsh Parikh", + "email": "darsh.parikh@compass.com", + "telephone": "5125933138" + } + }, + "1871944718124827361": { + "listing_id": "1871944718124827361", + "source_url": "https://www.compass.com/homedetails/McLain-Flats-Aspen-CO-81612/1871944718124827361_lid/", + "retrieved_at": "2026-09-06T03:38:44.989291+00:00", + "html_sha256": "a69c6e5111ce49cdcc4097dbd81ac1e8da4d260fadc83f9514a41eb113114f42", + "price": 5450000, + "address": "McLain Flats", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81612", + "neighborhood": "McLain Flats", + "latitude": 39.225903, + "longitude": -106.840953, + "beds": null, + "baths_full": null, + "baths_half": null, + "baths_total": 0, + "sqft": null, + "property_type": "Land", + "year_built": null, + "mls_number": "188940", + "status_text": "Active", + "days_on_market": 439, + "listed_at_ms": 1750636800000, + "description": "Unrivaled Opportunity in Starwood's Most Iconic Setting. Elevate Your Vision. Live Above It All. A rare and exceptional opportunity to build your dream estate on one of Starwood's premier homesites. Positioned in a coveted Starwood location with close proximity to town, this\r\nexpansive 4.370-acre (+/-) parcel offers a peaceful and private setting high above the valley floor. From this elevated vantage point, take in breathtaking, panoramic views that stretch from Independence Pass and Aspen Mountain to the Maroon Bells, Pyramid Peak, Snowmass, and all the way to Mt. Sopris.\r\nWith approvals allowing up to 8,250 square feet of living space using one Transferable Development Right (TDR), this site offers the flexibility to design a truly exceptional residence. The envisioned home includes expansive main and lower levels, generous indoor-outdoor living spaces, and a spacious garage. Floor-to-ceiling windows can frame iconic mountain views, while open-conceptliving areas, a chef's kitchen, luxurious bedroom suites, and a wellness or media wing can all be part\r\nof the plan. Whether you're building a modern mountain masterpiece or a warm, timeless retreat, this homesite provides the scale, setting, and freedom to bring your dream to life.", + "features": [], + "property_facts": { + "Status": "Active", + "MLS #": "188940", + "Days on Market": "439", + "Taxes": "$55,722 / year", + "HOA Fees": "$1,180 / year", + "Property Type": "Land", + "MLS Type": "Residential Vacant Land / Single Family Lot", + "Lot Size": "4.37 AC", + "County": "Pitkin County" + }, + "regional_facts": { + "Sub/Loc": "Starwood" + }, + "agent": { + "name": "Doug Leibinger", + "email": "doug@compass.com", + "telephone": "9703799045" + } + }, + "1876845444290959137": { + "listing_id": "1876845444290959137", + "source_url": "https://www.compass.com/homedetails/42703-Highway-82-Unit-B-Aspen-CO-81611/LSRNU_pid/", + "retrieved_at": "2026-09-06T03:38:46.013588+00:00", + "html_sha256": "763b8dd52cd721d9958bda758ae098b053e25030b4da7bf6efc1f25039d10064", + "price": 10950000, + "address": "42703 Highway 82, Unit B", + "unit": "B", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "East Aspen", + "latitude": 39.178874, + "longitude": -106.7999789, + "beds": 5, + "baths_full": 5, + "baths_half": 1, + "baths_total": 5.5, + "sqft": 4154, + "property_type": "Multi Family", + "year_built": 2010, + "mls_number": "189037", + "status_text": "Active", + "days_on_market": 429, + "listed_at_ms": 1751500800000, + "description": "Welcome to The Silver Pine, an elegant mountain retreat just 1.2 miles from downtown Aspen. \r\nTucked away in one of Aspen's most desirable neighborhoods, surrounded by pine trees, this luxurious 4,154-square-foot half-duplex townhome with breathtaking views of the Preserve and Independence Pass. \r\nDesigned with comfort and sophistication in mind, Silver Pine features 5 spacious bedrooms and 6 bathrooms, highlighted by soaring vaulted ceilings with exposed wood beam trusses, rich hardwood flooring, and a warm gas fireplace.\r\nThe main-level primary suite provides ease and privacy, while the gourmet kitchen and expansive covered deck create the perfect setting for entertaining. Unwind in the rooftop hot tub with sweeping mountain vistas or relax in the separate lower-level family room—ideal for guests or quiet evenings.\r\nAdditionally, Silver Pine includes radiant floor heating, central air conditioning, a two-car attached garage, a snowmelt driveway, and beautifully landscaped grounds. \r\nJust minutes from downtown Aspen, you can easily walk or bike into town via the scenic East Aspen Trail—perfect for walking or biking into town while avoiding summer traffic\r\nOwn a piece of Aspen's most sought-after locations and experience the best of luxury living in this private mountain haven.", + "features": [ + "Garage", + "Washer / Dryer in Unit", + "Air Conditioning", + "Private Outdoor Space" + ], + "property_facts": { + "Status": "Active", + "MLS #": "189037", + "Days on Market": "429", + "Taxes": "$14,417 / year", + "HOA Fees": "$300 / year", + "Property Type": "Multi Family", + "MLS Type": "Residential / Half Duplex", + "Year Built": "2010", + "Lot Size": "0.43 AC / 18,730 SF", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "Yes", + "Property Faces": "East", + "Furnished": "Furnished", + "Fireplace: # Fireplaces": "3", + "Sub/Loc": "Mountain Valley" + }, + "agent": { + "name": "Robert Goldstein", + "email": "robert.goldstein@compass.com", + "telephone": "9706186618" + } + }, + "1884851573551904881": { + "listing_id": "1884851573551904881", + "source_url": "https://www.compass.com/homedetails/3515-Hertford-Pl-NW-Unit-32-Washington-DC-20010/1U1HB0_pid/", + "retrieved_at": "2026-09-06T03:48:07.812859+00:00", + "html_sha256": "fc3a227c59b54a4d805d41887e482864ea22530151faf2aecdba14bd47dbd1a8", + "price": 395000, + "address": "3515 Hertford Place Northwest, Unit 32", + "unit": "32", + "city": "Washington", + "state": "DC", + "zip": "20010", + "neighborhood": "Columbia Heights", + "latitude": 38.9349409, + "longitude": -77.0360043, + "beds": 1, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 627, + "property_type": "Condo", + "year_built": 1938, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Discover this bright and beautifully updated top-floor corner unit 1-bedroom residence convenient to Mt. Pleasant and Columbia Heights. The modern kitchen boasts granite countertops and stainless steel appliances, seamlessly flowing into an open floor plan featuring hardwood floors throughout. Enjoy separate dining and living areas, perfect for entertaining. The building offers a convenient lower-level laundry room and is situated on a prominent corner, just blocks from the metro, 16th St bus lines, Rock Creek Park, and the vibrant offerings of Mt. Pleasant and Columbia Heights", + "features": [ + "Laundry in Building", + "Air Conditioning", + "Common Storage" + ], + "property_facts": { + "Status": "Coming Soon", + "Pet Policy": "Allowed", + "Property Type": "Condo", + "MLS Type": "Residential / Condo", + "Year Built": "1938", + "County": "District of Columbia", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Tax ID Number": "2686//2006", + "Ownership": "Condominium", + "Condo Coop Association": "No", + "HOA": "Yes", + "Entry Floor Number": "3", + "Structure Type": "Penthouse Unit/Flat/Apartment", + "Style": "Federal", + "Levels/Stories": "1", + "Furnished": "No", + "Unit Building Type": "Garden 1 - 4 Floors", + "Waterfront": "No", + "Garage": "No", + "Subdivision": "MOUNT PLEASANT (WASHINGTON DC)", + "Building Name": "NONE AVAILABLE (WASHINGTON DC)", + "Legal Subdivision": "Columbia Heights", + "Total Parking Spaces": "0", + "Washer/Dryer/Hook Up in Unit Y/N": "No", + "Central Air": "Yes", + "Basement": "No", + "Above Grade Finished SQFT": "627.00", + "Above Grade Fin SQFT Source": "Estimated", + "Below Grade Finished SQFT": ".00", + "Below Grade Fin SQFT Source": "Assessor", + "Below Grade Unfinished SQFT": ".00", + "Below Grade Unfin SQFT Source": "Assessor", + "Total Below Grade SQFT": ".00", + "Total Below Grade SQFT Source": "Assessor", + "New Construction": "No" + }, + "agent": { + "name": "Sean McDonald", + "email": "sean.mcdonald@compass.com", + "telephone": "2027186381" + } + }, + "1884965168297642673": { + "listing_id": "1884965168297642673", + "source_url": "https://www.compass.com/homedetails/1317-Corcoran-St-NW-Washington-DC-20009/1TXH7O_pid/", + "retrieved_at": "2026-09-06T03:48:08.083822+00:00", + "html_sha256": "9cb8d6f45177edf2337c14c7e32cf9552e92156314a7f9e5b809a33bbdc796f8", + "price": 2200000, + "address": "1317 Corcoran Street Northwest", + "unit": "", + "city": "Washington", + "state": "DC", + "zip": "20009", + "neighborhood": "Logan Circle", + "latitude": 38.9120544, + "longitude": -77.0303986, + "beds": null, + "baths_full": 0, + "baths_half": 0, + "baths_total": null, + "sqft": 2956, + "property_type": "Townhouse", + "year_built": 1890, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "1317 Corcoran St NW, Circa 1890, is more than just a home, it's a piece of history! This 3 unit income producing property that affords an invitation to embrace a lifestyle of elegance and convenience. The apts should generate 10K+/mth as it sits. This residence sits on a peaceful slice of urban space, perfectly nestled along a picturesque tree-lined one-way street with brick sidewalks, which is renowned as one of DC's most desirable streets according to the Washingtonian Magazine. Just steps from the renowned Le Diplomate and the beloved Call Your Mother Deli, with easy access to Whole Foods and Amazon Fresh, you'll have an array of culinary delights at your fingertips. Corcoran St NW is an extraordinary find, with limited traffic it is the perfect balance of accessibility and tranquility. Offering its blend of historic charm and modern amenities, this Victorian row home presents a remarkable opportunity to reside in one of the most sought-after neighborhoods in the city. Don't miss your chance to experience the epitome of refined living in Logan Circle.\n\nThe residence was built in 1890 and converted to three separately metered units in 1978. The original brick exterior was repointed in 2009, and all the front windows are mahogany thermo-pane installed in 2010. Enter through the original french doors in-thru the foyer to the entry hall. The primary unit is on two levels and offers 2 bedroom 2 bathrooms, high ceilings, wood burning fireplace, floor to ceiling bay windows. In addition there are two beautiful, one bedroom separately metered units. The property offers over 3000 sf of exclusively living space to enjoy and a glorious large rear yard. This provides the new owners with the versatility to either rent as it is or adapt it to your desire and expand the footprint of the house. \n\nThe prime location offers easy access to a sophisticated urban lifestyle and convenience to Whole Foods, Trader Joe's, several gyms, dog parks, cafes, restaurants, and bars, all just out your front door. With a walk score of 98, it's a walker's and biker's paradise, and you can easily access to the U Street Cardozo Metro (yellow/green) or Dupont Circle, McPherson Square Metro stations, as well as numerous bus stops. Surrounding neighborhoods, include: DuPont Circle, Logan Circle, City Center, U Street Corridor, and Shaw, 10 mins to Regan National Airport, Kennedy Center or Georgetown. \n\nCall for private shows, the owner is a licensed realtor in DC & MD and has owned the property since 1993.\n\n** PARTICIPATING IN A 1031 TAX EXCHANGE **", + "features": [ + "Air Conditioning" + ], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Townhouse", + "MLS Type": "Multi-Family / Fee Simple", + "Year Built": "1890", + "Lot Size": "0.04 AC / 1,800 SF", + "County": "District of Columbia", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Tax ID Number": "0240//0024", + "Ownership": "Fee Simple", + "Structure Type": "Interior Row/Townhouse", + "Style": "Federal", + "Levels/Stories": "Other", + "Waterfront": "No", + "Garage": "No", + "Expected On Market Date": "04-07-2025", + "Subdivision": "LOGAN (WASHINGTON DC)", + "Legal Subdivision": "Old City 2", + "Total Parking Spaces": "0", + "Central Air": "Yes", + "Basement": "No", + "Above Grade Finished SQFT": "2,136.00", + "Above Grade Fin SQFT Source": "Assessor", + "Below Grade Finished SQFT": "546.00", + "Below Grade Fin SQFT Source": "Assessor", + "Below Grade Unfinished SQFT": "274.00", + "Below Grade Unfin SQFT Source": "Assessor", + "Total Below Grade SQFT": "820.00", + "Total Below Grade SQFT Source": "Assessor", + "New Construction": "No" + }, + "agent": { + "name": "Sean McDonald", + "email": "sean.mcdonald@compass.com", + "telephone": "2027186381" + } + }, + "1901018048420666961": { + "listing_id": "1901018048420666961", + "source_url": "https://www.compass.com/homedetails/5516-Village-Green-Los-Angeles-CA-90016/1KNM7U_pid/", + "retrieved_at": "2026-09-06T03:42:47.810302+00:00", + "html_sha256": "2e7fab4b7e6342fca4faa4b486f7e3df32105587a42a5b23f041716b266ff09b", + "price": 585000, + "address": "5516 Village Green", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90016", + "neighborhood": "Baldwin Vista", + "latitude": 34.0199428, + "longitude": -118.3651269, + "beds": 2, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 826, + "property_type": "Condo", + "year_built": 1942, + "mls_number": "26783991", + "status_text": "Active", + "days_on_market": 99, + "listed_at_ms": 1776841200000, + "description": "This charming 826 sq. ft. ground-level home in historic Village Green offers a serene retreat surrounded by 68 acres of lush greenery. Featuring 2 bedrooms, 1 bath, timeless parquet floors, and a remodeled kitchen and bathroom, it seamlessly blends character with modern comfort. Step out to your private patio or enjoy the convenience of a one-car garageall while benefiting from the Mills Act's property tax savings. Village Green isn't just a home; it's a lifestyle. With community events, 24-hour security, and a prime location near LAX, Beverly Hills, and Culver City, this vibrant oasis puts the best of Los Angeles at your doorstep. History, charm, and convenience await. Welcome home!", + "features": [ + "Garage", + "Assigned Parking", + "Laundry in Building", + "Pets Conditional", + "Parking Included", + "Pet Friendly", + "Guest Parking", + "Private Outdoor Space", + "Unfurnished" + ], + "property_facts": { + "Status": "Active", + "MLS #": "26783991", + "Days on Market": "99", + "HOA Fees": "$851 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1942", + "County": "Los Angeles County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Zoning": "LARD4", + "Style": "Mid-Century", + "Association Fee Frequency": "Monthly", + "Property Attached YN": "true", + "Parcel Number": "5025007081", + "Total Units": "629.0", + "Living Area": "826", + "Source Living Area": "Vendor Enhanced", + "Area": "Park Hills Heights (PHHT)", + "Lot Size Area": "443132", + "Source Lot Size Area": "Vendor Enhanced", + "Home owner Dues": "$851", + "HOA Fee Frequency 1": "Monthly", + "Assessor Parcel Number": "5025-007-081", + "Directions": "Between S Ridgeley and S Burnside off Coliseum entering Court 8." + }, + "agent": { + "name": "Emilia Arau", + "email": "emilia.arau@compass.com", + "telephone": "3109630683" + } + }, + "1903065816685552009": { + "listing_id": "1903065816685552009", + "source_url": "https://www.compass.com/homedetails/332-Vine-St-Aspen-CO-81611/LTMYW_pid/", + "retrieved_at": "2026-09-06T03:38:46.578259+00:00", + "html_sha256": "6093af89d46f8655d00da0e91e781916a8a8c6a72ddfc2d67a3be325a7c9aed8", + "price": 2500000, + "address": "332 Vine Street", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Smuggler", + "latitude": 39.19579299999999, + "longitude": -106.814408, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 878, + "property_type": "Condo", + "year_built": 1980, + "mls_number": "193212", + "status_text": "Active", + "days_on_market": 92, + "listed_at_ms": 1780617600000, + "description": "Perched on the top floor corner of the sought-after Hunter Creek complex, this newly remodeled two-bedroom, two-bath residence offers the perfect blend of privacy, luxury, and access to Aspen's best. Overlooking the serene Hunter Creek Trail, this ''jewel box'' in the trees invites you in with the sounds of nature and the elegance of refined design. Fully remodeled in 2023, this home is being offered turn-key, just in time for ski season! Thoughtful, modern finishes and a European-inspired kitchen with premium appliances bring both style and function to the space. Timeless furnishings and a well-considered layout make this condo ideal for a true ''lock and leave'' lifestyle. Enjoy year-round adventure with easy access to the Rio Grande and Hunter Creek Trail systems for biking, hiking, and fly fishing. And when it's time to hit the slopes or the town, you're only a 15-minute stroll—or a quick shuttle ride from your doorstep—to Aspen Mountain, The Gondola, and all the world-class dining, shopping, and entertainment of Aspen's vibrant Core. Whether you're seeking a mountain escape, an elegant investment, or a basecamp for adventure, this residence offers it all with ease, style, and proximity.", + "features": [ + "Pool", + "Common Outdoor Space", + "Washer / Dryer in Unit", + "Air Conditioning", + "Top Floor", + "Pet Friendly", + "Parking Included", + "Private Outdoor Space" + ], + "property_facts": { + "Status": "Active", + "MLS #": "193212", + "Days on Market": "92", + "Taxes": "$3,197 / year", + "HOA Fees": "$703 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1980", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "No", + "Furnished": "Furnished", + "Sub/Loc": "Hunter Creek" + }, + "agent": { + "name": "The Carter Group", + "email": "info@thecartergroup.co", + "telephone": "970-925-6060" + } + }, + "1916891292675064801": { + "listing_id": "1916891292675064801", + "source_url": "https://www.compass.com/homedetails/1038-Owl-Creek-Rd-Aspen-CO-81611/LQB4Z_pid/", + "retrieved_at": "2026-09-06T03:38:52.977071+00:00", + "html_sha256": "d04378f4863e0d59a92a402391cb3ea4be07f83401c40043cbaae14e6fb45a60", + "price": 10995000, + "address": "1038 Owl Creek Road", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "West Aspen", + "latitude": 39.2220342, + "longitude": -106.8722727, + "beds": 4, + "baths_full": 4, + "baths_half": 0, + "baths_total": 4, + "sqft": 5047, + "property_type": "Single Family", + "year_built": 1906, + "mls_number": "190422", + "status_text": "Active", + "days_on_market": 333, + "listed_at_ms": 1759795200000, + "description": "A striking expression of contemporary Aspen living, this private gated retreat has been transformed into a design-forward sanctuary just minutes from town on exclusive Owl Creek Road. The fully renovated residence blends sophisticated European minimalism with warm organic textures, curated designer furnishings, and artisan finishes. From Henry Beguelin furnishings to handcrafted Rina Menardi ceramics, every detail reflects a refined, cosmopolitan style. \r\n\r\nExpansive redwood decks, layered outdoor living spaces, and mature landscaping create a seamless indoor-outdoor experience enhanced by integrated lighting and sound throughout the property. A separate 6-car garage with lofted studio offers exceptional flexibility as a private lounge, wellness space, showroom, or entertainment venue complete with a DJ system, televisions, and ambient lighting. Offered fully turn-key for immediate enjoyment.", + "features": [ + "Garage", + "Air Conditioning", + "Private Outdoor Space" + ], + "property_facts": { + "Status": "Active", + "MLS #": "190422", + "Days on Market": "333", + "Taxes": "$12,900 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family", + "Year Built": "1906", + "Lot Size": "0.50 AC / 21,780 SF", + "County": "Pitkin County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Garage": "Yes", + "Style": "Ranch", + "Furnished": "Furnished", + "Fireplace: # Fireplaces": "1", + "Sub/Loc": "East Owl Creek" + }, + "agent": { + "name": "Steven Shane", + "email": "steven.shane@compass.com", + "telephone": "9709486005" + } + }, + "1921893066529157649": { + "listing_id": "1921893066529157649", + "source_url": "https://www.compass.com/homedetails/K-St-SE-Washington-DC-20003/1921893066529157649_lid/", + "retrieved_at": "2026-09-06T03:48:08.398901+00:00", + "html_sha256": "478abf161e65e7bf3db3b1684ea2096754f252332fd7ed56cf1d70a94188d02b", + "price": 749000, + "address": "K Street Southeast", + "unit": "", + "city": "Washington", + "state": "DC", + "zip": "20003", + "neighborhood": "Capitol Hill", + "latitude": null, + "longitude": null, + "beds": 2, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 1313, + "property_type": "Condo", + "year_built": 2016, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Welcome to 1433 K Street SE, Unit 101, a modern boutique condominium in the heart of Capitol Hill. This spacious 2-bedroom, 2.5-bath loft-style condo spans over 1,300 sq ft and offers 20+ foot ceilings, hardwood floors, and abundant natural light. The main level features an open kitchen with KitchenAid stainless steel appliances, shaker-style cabinetry, and bar seating, along with a powder room for guests. The living area flows to a private patio, while a main-level bedroom includes its own en-suite bath. \n\nUpstairs, the loft area is ideal for an office or flex space and leads to the primary suite with two custom walk-in closets, dual vanities, and a glass-enclosed shower. Additional highlights include secure garage parking, in-unit laundry, and smart home features with Amazon Key and ADT access. \n\nBuilt in 2016, this well-managed community is just blocks to the metro, The Roost, Eastern Market, dining, shopping, parks, and Nationals Park.", + "features": [ + "Dryer", + "Washer", + "Air Conditioning", + "Garage", + "Parking Included", + "Assigned Parking", + "Lowrise", + "On-site Parking", + "Security System" + ], + "property_facts": { + "Status": "Coming Soon", + "Condo/Co-op Fees": "$411 / month", + "Property Type": "Condo", + "MLS Type": "Residential", + "Year Built": "2016", + "County": "District of Columbia" + }, + "regional_facts": { + "Tax ID Number": "1066//2017", + "Ownership": "Condominium", + "Condo Coop Association": "Yes", + "HOA": "No", + "Entry Floor Number": "1", + "Structure Type": "Unit/Flat/Apartment", + "Style": "Loft With Bedrooms, Loft, Contemporary", + "Levels/Stories": "2", + "Furnished": "No", + "Unit Building Type": "Garden 1 - 4 Floors", + "Waterfront": "No", + "Garage": "No", + "Subdivision": "CAPITOL HILL (WASHINGTON DC)", + "Building Name": "TERRACE ON K (WASHINGTON DC)", + "Legal Subdivision": "Old City 1", + "Total Parking Spaces": "1", + "Washer/Dryer/Hook Up in Unit Y/N": "Yes", + "Central Air": "Yes", + "Basement": "No", + "Above Grade Finished SQFT": "1,313.00", + "Above Grade Fin SQFT Source": "Estimated", + "Below Grade Finished SQFT": ".00", + "Below Grade Fin SQFT Source": "Assessor", + "Below Grade Unfinished SQFT": ".00", + "Below Grade Unfin SQFT Source": "Assessor", + "Total Below Grade SQFT": ".00", + "Total Below Grade SQFT Source": "Assessor", + "New Construction": "No", + "Building Winterized Y/N": "No" + }, + "agent": { + "name": "Jeff Chreky", + "email": "jeff.chreky@compass.com", + "telephone": "3014551441" + } + }, + "1926269156959548849": { + "listing_id": "1926269156959548849", + "source_url": "https://www.compass.com/homedetails/666-Massachusetts-Ave-Boston-MA-02118/1ZH6D8_pid/", + "retrieved_at": "2026-09-06T03:40:13.047720+00:00", + "html_sha256": "ec06f24bd6a10f4fa9b245abfe69ac977ad3d4d69f9a2f61669a1c704b6f2a2e", + "price": null, + "address": "666 Massachusetts Avenue", + "unit": "", + "city": "Boston", + "state": "MA", + "zip": "02118", + "neighborhood": "South End", + "latitude": 42.3360024, + "longitude": -71.0760331, + "beds": 9, + "baths_full": 7, + "baths_half": 0, + "baths_total": 7, + "sqft": 5050, + "property_type": "Multi Family", + "year_built": 2017, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Enjoy this 2017 fully renovated, 5 unit brownstone ready to go and fully tenanted at $19,000/month for '25-26. This multifamily offers high ceilings, large window exposures, open living room & kitchen floor-plans, white marble countertops, hardwood flooring throughout, bathrooms with walk-in showers & glass doors, recessed LED lighting, Bosch appliances, in-unit laundry, central a/c and large, private decks including a roof top deck for the penthouse unit. Don't forget the two deeded parking spots that come with it. ", + "features": [ + "Dryer", + "Washer", + "Air Conditioning", + "Central Heating", + "Street Parking", + "Private Patio", + "Private Roof Deck", + "Deck", + "Hardwood Floors", + "Recessed Lighting", + "Parking Included" + ], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Multi Family", + "MLS Type": "Multi-family / 5+ Family - 5+ Units Up/Down", + "Year Built": "2017", + "County": "Suffolk County", + "Buyer's Agent Compensation": "1%" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "South End", + "Area": "MA-Boston, MA-Boston-South End", + "Open Parking Spaces": "2.00", + "Parking Spaces Total": "2" + }, + "agent": { + "name": "Josh Stiles", + "email": "josh.stiles@compass.com", + "telephone": "6175815907" + } + }, + "1927103338444070521": { + "listing_id": "1927103338444070521", + "source_url": "https://www.compass.com/homedetails/9555-Castle-Creek-Rd-Aspen-CO-81612/ECUR8_pid/", + "retrieved_at": "2026-09-06T03:38:53.660722+00:00", + "html_sha256": "d98f78f50cea8a25bd29c98873983099a0b4e48279b608417462f8a7fa2f0bdf", + "price": 10950000, + "address": "9555 Castle Creek Road", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81612", + "neighborhood": "Aspen Area", + "latitude": 39.081012, + "longitude": -106.807317, + "beds": 5, + "baths_full": 2, + "baths_half": 1, + "baths_total": 4, + "sqft": 4954, + "property_type": "Single Family", + "year_built": 1982, + "mls_number": "190089", + "status_text": "Closed", + "days_on_market": 358, + "listed_at_ms": 1757548800000, + "description": "This is a true legacy property in Aspen checking all of the boxes for a rare and valuable piece of real estate. Discover the privacy of this extraordinary 21-acre property along Castle Creek, where aspen groves and open views create an exceptional natural sanctuary. This fully remodeled 5-bedroom 4,954 square foot mountain residence, designed by renowned Galambos Architects, offers tranquility in an unmatched natural setting.\r\n\r\nBordered by White River National Forest, this flat, usable acreage provides endless recreation opportunities. Meander through aspen groves to a private glamping tent, or unwind in the hot tub surrounded by natural beauty. Enjoy the zipline or challenge each other at the axe-throwing area. Direct Castle Creek access offers fishing and cold plunge opportunities.\r\n\r\nMultiple outdoor seating areas adjacent to the house invite year-round enjoyment, including two fire pits for evening gatherings, an outdoor dining table and comfortable front porch seating for the spit and whittle club. The main floor features the living room and den with a wood-burning fireplace, gourmet kitchen, a spectacular glassed-in dining room that brings the outside in, and the primary suite. The upper level office overlooks the Aspen grove, providing an inspiring work environment with fiber optic internet for productivity. In addition, the upper level features two bedrooms, two bathrooms and a private deck. The lower level creates an entertaining hub with a media room, bar, game room, and two guest bedrooms that walk out to outdoor spaces, maximizing natural light and easy access to nature.\r\n\r\nNine miles from the roundabout gives quick access to Cathedral Lake, American Lake, and Conundrum Creek trailheads, plus Ashcroft Nordic skiing and backcountry adventures toward Pearl Pass and the Alfred Braun Hut System. Your drive to Aspen follows the serene Castle Creek corridor through some of Colorado's most beautiful terrain. This private mountain compound offers the perfect balance for all that Aspen has to offer while offering the beauty, peace and quiet that draws us to the mountains of Colorado. Don't miss this special opportunity!", + "features": [ + "Garage", + "Air Conditioning", + "Waterfront", + "Private Outdoor Space" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "190089", + "Days on Market": "358", + "Taxes": "$25,802 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family", + "Year Built": "1982", + "Lot Size": "21.40 AC / 932,183 SF", + "County": "Pitkin County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Garage": "Yes", + "Property Faces": "North", + "Furnished": "Furnished", + "Sub/Loc": "Castle Creek" + }, + "agent": { + "name": "Blake Appleby", + "email": "blake.appleby@compass.com", + "telephone": "9703791143" + } + }, + "1929546519660550161": { + "listing_id": "1929546519660550161", + "source_url": "https://www.compass.com/homedetails/201-Fell-St-San-Francisco-CA-94102/1QXTMU_pid/", + "retrieved_at": "2026-09-06T03:46:31.125527+00:00", + "html_sha256": "49f174d1ecdca4770b09e3ec725a459ccfc6a46acd3942be2b3d4e8c26d6ff57", + "price": 67000, + "address": "201 Fell Street", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94102", + "neighborhood": "Hayes Valley", + "latitude": 37.7760366, + "longitude": -122.4212977, + "beds": null, + "baths_full": 0, + "baths_half": 0, + "baths_total": null, + "sqft": 350, + "property_type": "Other", + "year_built": null, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Fantastic Corner Sandwich shop business for sale. Directly across from the San Francisco Jazz Center. Nina's Cafe has been an institution for many years for surrounding schools,local workers and dedicated clients for catering, lunches and much more. Nina's has a dedicated website for parents at nearby schools to order their kids lunch online. Great lease terms.\n", + "features": [], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Other", + "County": "San Francisco County" + }, + "regional_facts": {}, + "agent": { + "name": "Steven Gerry", + "email": "steven.gerry@compass.com", + "telephone": "4158462849" + } + }, + "1932843813647058465": { + "listing_id": "1932843813647058465", + "source_url": "https://www.compass.com/homedetails/Glen-Rae-St-Austin-TX-78702/1932843813647058465_lid/", + "retrieved_at": "2026-09-06T03:39:31.494257+00:00", + "html_sha256": "f5bc87ad9c2f1dc34eb50ae89434070500904af6706b08c9cd857628109d2ddf", + "price": null, + "address": "Glen Rae Street", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78702", + "neighborhood": "Rosewood", + "latitude": null, + "longitude": null, + "beds": 4, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 2511, + "property_type": "Condo", + "year_built": 2026, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Unit 3 – 2,511 SQFT | 4 Beds | 3.5 Baths | Private Pool\n\nUnit 3 at 2908 Glen Rae is the premier residence in this exclusive three-home luxury development in East Austin, created by Brownstone Capital Investments, Pavonetti Architecture, and Studio Brownstone. Spanning 2,511 SQFT, this detached home offers 4 bedrooms and 3.5 baths, elevated by a rare private pool, making it the ultimate retreat for both relaxation and entertaining.\n\nHighlights:\n\nExpansive open-concept layout with abundant natural light\n\nLuxury finishes and curated interiors by Studio Brownstone\n\nSeamless indoor-outdoor living with a private pool and yard\n\nThoughtful design blending timeless style with everyday functionality\n\nLocated in the heart of East Austin, minutes from Downtown, restaurants, and entertainment\n\nEstimated Completion: April 2026", + "features": [ + "Below Ground Pool", + "Central AC" + ], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Condo", + "Year Built": "2026", + "County": "Travis County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision Name": "Lorraine Heights", + "Waterfront": "No", + "Elementary School": "Oak Springs", + "Elementary School District": "Austin ISD", + "Middle Or Junior School": "Kealing", + "Senior High School": "Eastside Memorial", + "Levels": "Three or More", + "Property Condition": "New Construction", + "Pool Private": "Yes" + }, + "agent": { + "name": "Darsh Parikh", + "email": "darsh.parikh@compass.com", + "telephone": "5125933138" + } + }, + "1940902821421093121": { + "listing_id": "1940902821421093121", + "source_url": "https://www.compass.com/homedetails/1220-Red-Butte-Dr-Aspen-CO-81611/LRIVB_pid/", + "retrieved_at": "2026-09-06T03:38:56.236079+00:00", + "html_sha256": "0dac2420cde506935f8b8f6fa5a085145053d54813e4859739aec801ba73b209", + "price": 22950000, + "address": "1220 Red Butte Drive", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "West Aspen", + "latitude": 39.206403, + "longitude": -106.8347536, + "beds": 5, + "baths_full": 5, + "baths_half": 1, + "baths_total": 5.5, + "sqft": 5872, + "property_type": "Single Family", + "year_built": 1984, + "mls_number": "190297", + "status_text": "Active", + "days_on_market": 338, + "listed_at_ms": 1759104000000, + "description": "Unique opportunity to own one of Aspen's most magical contemporary homes located on the Roaring Fork River. Located only 2.5 miles from the vibrancy of downtown Aspen, this thoughtfully designed residence offers the perfect blend of privacy, serenity, and proximity. With the Roaring Fork in your backyard, the home provides seamless indoor-outdoor living, featuring multiple entertaining areas, including an expansive riverside backyard, generous decks, and a beautifully designed courtyard patio. Inside, natural light floods the open-concept living spaces, which include a chef's kitchen, dining area, great room, and five en-suite bedrooms. A versatile oversized flex space offers endless possibilities; ideal for a wellness retreat, media room, executive office, or artist's studio. Art walls are abundant throughout. With the Rio Grande Trail just moments away, this home offers both connection to nature and easy access to Aspen's year-round vitality.", + "features": [ + "Garage", + "Washer / Dryer in Unit", + "Air Conditioning", + "Waterfront", + "Private Outdoor Space" + ], + "property_facts": { + "Status": "Active", + "MLS #": "190297", + "Days on Market": "338", + "Taxes": "$48,058 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family", + "Year Built": "1984", + "Lot Size": "0.56 AC / 24,393 SF", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "Yes", + "Property Faces": "Southwest", + "Style": "Split Level, Contemporary", + "Furnished": "Furnished", + "Fireplace: # Fireplaces": "2", + "Sub/Loc": "Red Butte Subd" + }, + "agent": { + "name": "Steven Shane", + "email": "steven.shane@compass.com", + "telephone": "9709486005" + } + }, + "1942957581307470537": { + "listing_id": "1942957581307470537", + "source_url": "https://www.compass.com/homedetails/2117-N-Bingham-St-Chicago-IL-60647/1X803T_pid/", + "retrieved_at": "2026-09-06T03:41:09.487339+00:00", + "html_sha256": "8d0632f0c0167f00a7b396817cbb35957ee047707aef7e9bd96878c5e0be550c", + "price": 1197000, + "address": "2117 North Bingham Street", + "unit": "", + "city": "Chicago", + "state": "IL", + "zip": "60647", + "neighborhood": "Logan Square", + "latitude": 41.919218, + "longitude": -87.692624, + "beds": 4, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": null, + "property_type": "Single Family", + "year_built": 2026, + "mls_number": "12475717", + "status_text": "Closed", + "days_on_market": 10, + "listed_at_ms": 1779685200000, + "description": "In addition to the attached garage fitted for an EV, this home backs up to the train. Most people stop there, certain they've already figured it out. But that's the difference-you kept going. And because you did, you find what they missed: triple-pane windows, acoustic detailing, and sound attenuation that shifts the clatter into nothing more than the hum of the city. Step inside and the calculus changes, light stretching across wide-plank white oak floors, rooms that feel open yet grounded, proportions that make space feel generous without wasting a foot. What looked like a reason to stay no, starts to feel like the smartest yes you've made all year. At the center, the kitchen anchors everything, not as a stage, but as the place you'll actually live in. Built-in Dacor appliances with a Bosche dishwasher, warm Taj Mahal quartzite counters, and cabinetry that works as hard as it looks surround an island that pulls double duty: dinner prep one night, kids' projects the next, late-night laptops when the home finally quiets. It's a space designed for use, which is why it impresses without trying. Friends stay longer than expected, conversations run late, and you'll find yourself lingering, too. Upstairs, the primary suite is a daily reset: a walk-in closet that doesn't need qualifying, a shower you'll look forward to stepping into, heated floors warming underfoot before you're fully awake, and a separate water closet that gives the space the privacy it deserves. Side-by-side laundry is exactly where it should be, on the bedroom level. Two additional bedrooms share the floor, balanced in size and proportion so no one feels like they drew the short straw. The lower level stretches the home further: a full bedroom and bath, flexible space that adapts to the phase you're in, and a wet bar that makes entertaining-or just unwinding-second nature. It's the kind of downstairs that grows with you, shifting from play space to game nights to extended guest quarters without missing a beat. Above it all, the layered outdoor living adds more than square footage, it adds ways of living. The rooftop deck, prepped with gas, water, electrical, and low voltage, waits for summer dinners and fall sunsets with the city skyline as a backdrop. The deck above the garage feels like a private extension, a bonus that works as well for morning coffee as it does for a quiet nightcap. Logan Square isn't just the backdrop, it's part of the purchase. Bang Bang Pie a short walk away, Longman & Eagle for a night out, the boulevards, the Blue Line when you need it, the Kennedy when you don't. Trader Joe's down the street is official. At this price, a new single-family in Logan with this much space, these finishes, and this location won't wait for you to think it over. Some homes you scroll past. Some you stop at. And some, like 2117 N. Bingham, you remember, because they make you question what you thought you knew.", + "features": [ + "Deck", + "Gated Community", + "Common Roof Deck", + "Garage", + "Automatic Garage Door", + "Attached Parking", + "Washer / Dryer in Unit", + "Dryer", + "Washer", + "Laundry in Building", + "Central AC", + "Air Conditioning", + "Gas Heat", + "Dishwasher", + "Stainless Steel Appliances", + "Disposal", + "Refrigerator", + "Range Hood", + "Fireplace", + "Wet Bar", + "Hardwood Floors", + "High Ceilings", + "Walk-in Closet", + "Basement", + "Forced Air", + "Range", + "Air Purification System", + "Parking Included", + "Gas Dryer Hookup", + "Private Outdoor Space", + "Full Basement" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "12475717", + "Days on Market": "10", + "Property Type": "Single Family", + "MLS Type": "Detached Single / 2 Stories", + "Year Built": "2026", + "Lot Size": "0.04 AC / 1,848 SF", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - Logan Square", + "Township": "West Chicago", + "Ownership": "Fee Simple", + "Num Of Garage Spaces": "2.0", + "Num Of Parking Spaces": "2.0", + "Parking Included in Price": "Yes", + "Air Conditioning Type": "Central Air, Zoned", + "Num of Interior Fireplaces": "1", + "Heat/Fuel": "Natural Gas, Forced Air, Zoned, Radiant Floor" + }, + "agent": { + "name": "John Grafft", + "email": "john.grafft@compass.com", + "telephone": "3127197325" + } + }, + "1951565555154767201": { + "listing_id": "1951565555154767201", + "source_url": "https://www.compass.com/homedetails/725-E-Durant-Ave-Unit-22-Aspen-CO-81611/LRPJ0_pid/", + "retrieved_at": "2026-09-06T03:38:57.177203+00:00", + "html_sha256": "1a51779f76d43f8863d05ae5101275868695b31def290c9b3d8a14c029574c12", + "price": 3199000, + "address": "725 East Durant Avenue, Unit 22", + "unit": "22", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Aspen Central Core", + "latitude": 39.1864692, + "longitude": -106.8164319, + "beds": 1, + "baths_full": 1, + "baths_half": 1, + "baths_total": 1.5, + "sqft": 828, + "property_type": "Condo", + "year_built": 1968, + "mls_number": "190477", + "status_text": "Active", + "days_on_market": 326, + "listed_at_ms": 1760400000000, + "description": "Expertly and recently redesigned, this 828-square-foot garden-level residence offers a seamless blend of modern sophistication and mountain charm. Every element is brand new: plumbing, electrical, HVAC, lighting, walls, and floors. With a private entrance and direct access to underground parking, this peaceful downtown retreat is just steps from the Gondola and all that Aspen's vibrant core has to offer.\r\n\r\nThe fully appointed pied-à-terre includes a rare condo/hotel designation, ensuring short-term rental eligibility. Whether you're seeking a stylish getaway or a strategic investment, this turnkey property delivers elevated Aspen living in every detail.", + "features": [ + "Garage", + "Pool", + "Air Conditioning", + "Pet Friendly", + "Parking Included" + ], + "property_facts": { + "Status": "Active", + "MLS #": "190477", + "Days on Market": "326", + "Taxes": "$5,423 / year", + "HOA Fees": "$2,544 / quarter", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1968", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "Yes", + "Property Faces": "West", + "Furnished": "Furnished", + "Fireplace: # Fireplaces": "1", + "Sub/Loc": "Chateau Dumont" + }, + "agent": { + "name": "Steven Shane", + "email": "steven.shane@compass.com", + "telephone": "9709486005" + } + }, + "1951672067306878497": { + "listing_id": "1951672067306878497", + "source_url": "https://www.compass.com/homedetails/800-E-Hopkins-Ave-Unit-A3-Aspen-CO-81611/LQT2P_pid/", + "retrieved_at": "2026-09-06T03:38:57.756945+00:00", + "html_sha256": "412d5e0188c8c28c20d69023a91f650b42f39bb31d707027028b4866503de60b", + "price": 4550000, + "address": "800 East Hopkins Avenue, Unit A3", + "unit": "A3", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Aspen Central Core", + "latitude": 39.189007, + "longitude": -106.8144962, + "beds": 3, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 1440, + "property_type": "Condo", + "year_built": 1974, + "mls_number": "191066", + "status_text": "Closed", + "days_on_market": 178, + "listed_at_ms": 1765756800000, + "description": "Experience the ultimate in luxury and convenience with this newly renovated two-level condo located in the heart of Aspen. Just steps from the gondola, restaurant row, the Rio Grande Trail, and all the premier shopping Aspen has to offer, this 3-bedroom, 2.5-bathroom residence seamlessly blends style and functionality. Boasting a state-of-the-art Bulthaup kitchen, elegant Duravit bathrooms, with high-end finishes and appliances throughout, this condo is designed for sophisticated living. Enjoy stunning views of Aspen Mountain from one of two south-facing patios or relax in the living room by the real wood-burning fireplace. With its perfect combination of comfort, elegance, and prime location, this Larkspur condo also comes with an assigned one-car parking space in downtown Aspen—an ideal retreat for those who value both luxury and convenience.", + "features": [ + "Washer / Dryer in Unit", + "Pet Friendly", + "Parking Included", + "Private Outdoor Space" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "191066", + "Days on Market": "178", + "Taxes": "$6,507 / year", + "HOA Fees": "$5,525 / quarter", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1974", + "County": "Pitkin County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Garage": "No", + "Style": "Contemporary", + "Furnished": "Furnished", + "Fireplace: # Fireplaces": "1", + "Sub/Loc": "Larkspur" + }, + "agent": { + "name": "Wendy Wogan", + "email": "wendy.wogan@compass.com", + "telephone": "9709488948" + } + }, + "1952597186755126769": { + "listing_id": "1952597186755126769", + "source_url": "https://www.compass.com/homedetails/211-Steiner-St-San-Francisco-CA-94117/2145C1_pid/", + "retrieved_at": "2026-09-06T03:46:31.276263+00:00", + "html_sha256": "703fa4b156fb85b46de3b87aa82d87336fe7c1499adaf69ab16781f4f5f457e1", + "price": 213000, + "address": "211 Steiner Street", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94117", + "neighborhood": "Hayes Valley", + "latitude": 37.7711548, + "longitude": -122.4321311, + "beds": null, + "baths_full": 0, + "baths_half": 0, + "baths_total": null, + "sqft": 1400, + "property_type": "Multi Family", + "year_built": null, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Business For Sale – Turnkey Salon in Prime Location\nThis well-established and vibrant salon offers a rare turnkey opportunity for entrepreneurs and beauty professionals alike. Time-honored and highly regarded in the community, this business is ideally positioned for someone ready to continue its success or introduce a fresh new concept.\n\nServices offered include, but are not limited to:\n\nNails\n\nWaxing\n\nMassage\n\nSkin treatments\n\nThe salon has been expertly managed and benefits from affordable lease terms, making it an excellent opportunity for both experienced operators and first-time owners. With a strong foundation already in place, the business presents significant potential for growth and expansion under new ownership.\n\nDisclosures available upon request. Serious inquiries only.", + "features": [], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Multi Family", + "County": "San Francisco County", + "Buyer's Agent Compensation": "5%" + }, + "regional_facts": {}, + "agent": { + "name": "Steven Gerry", + "email": "steven.gerry@compass.com", + "telephone": "4158462849" + } + }, + "1953270100630407017": { + "listing_id": "1953270100630407017", + "source_url": "https://www.compass.com/homedetails/2401-16th-St-San-Francisco-CA-94110/21589J_pid/", + "retrieved_at": "2026-09-06T03:46:32.538675+00:00", + "html_sha256": "b1838473d663fba5ce2342179f58431dc53024cf5cbbda463ca997ca00dada99", + "price": 993775, + "address": "2401 16th Street", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94110", + "neighborhood": "Inner Mission", + "latitude": 37.7653592, + "longitude": -122.4106189, + "beds": 0, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 2384, + "property_type": "Condo", + "year_built": null, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Introducing a prime ground floor commercial condo in the heart of San Francisco, this distinguished 2,384 SF condo stands as a testament to timeless architecture, dating back to 1909. Zoned UMU, the property offers a versatile canvas for a range of office and commercial endeavors including retail and food and beverage. Boasting a location in the thriving market of San Francisco, this property presents an exceptional prospect for the astute investor seeking to capitalize on the city's dynamic commercial landscape. With its rich historical significance and prime positioning, this property stands poised to deliver enduring value and potential for the discerning investor.\n\nStrategically located in the bustling heart of San Francisco, the area surrounding the property boasts a vibrant mix of business and leisure. Within walking distance, professionals can enjoy access to renowned tech headquarters, pioneering startups, and top-notch dining and entertainment options. The nearby Yerba Buena Gardens provides a refreshing urban oasis, while the Moscone Center serves as the premier venue for major conferences and events. ", + "features": [], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Condo", + "County": "San Francisco County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": {}, + "agent": { + "name": "Steven Gerry", + "email": "steven.gerry@compass.com", + "telephone": "4158462849" + } + }, + "1956041055605751361": { + "listing_id": "1956041055605751361", + "source_url": "https://www.compass.com/homedetails/195-Willoughby-Ave-Unit-1517-1518-Brooklyn-NY-11205/217F32_pid/", + "retrieved_at": "2026-09-06T03:45:20.210016+00:00", + "html_sha256": "72d8b53dfb1a3e7d99bd6ba5e183e94f83b6eeb36df0c27eceb0bfbc84d47783", + "price": 1125000, + "address": "195 Willoughby Avenue, Unit 1517/1518", + "unit": "1517/1518", + "city": "Brooklyn", + "state": "NY", + "zip": "11205", + "neighborhood": "Clinton Hill", + "latitude": 40.6924643, + "longitude": -73.9642235, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1217, + "property_type": "Co-op", + "year_built": 1958, + "mls_number": "", + "status_text": "Contract Signed", + "days_on_market": 8, + "listed_at_ms": 1778171689653, + "description": "Note: The units are not legally combined. \n\nWelcome to 1517/1518. Upon entering the unit, you’ll appreciate a foyer area with a full coat closet and an additional walk-in closet. As you enter the living area, you're greeted by a north-facing combined living and dining room-area with stunning views of Manhattan and Clinton Hill. Adjacent to this open living-space is a galley-style kitchen featuring extended countertops, wine-fridge, and cabinets into a windowed breakfast area sharing the same views as the living room-area, and stainless steel appliances.\n\nTo the left of the foyer area is a closeted hallway leading to a full bathroom and a generous primary bedroom featuring additional exposure to the cityscape of the living areas. \n\nThe opposite end of the living area takes you to the second bedroom space, currently separated by a sliding partition. The generous secondary bedroom-area is expansive, featuring its own private-entry, an office or an additional walk-in closet. A long, closeted foyer guides you to its own private full bath. The combined unit boasts ample closet space throughout.\n\nBuilt in 1958, the Willoughby Walk Cooperative Apartments are comprised of a 287-unit high-rise at 195 Willoughby Avenue as well as a 287-unit high-rise at 185 Hall Street in Clinton Hill, Brooklyn. Both buildings feature a resident super, multiple elevators, basement laundry, 24/7 security at their front entrances, bike storage and parking. The apartments range from 3 bedrooms to studios, and many feature terraces. Subletting is on a case-by-case basis for a maximum of one year during ownership, co-purchasing is allowed. Pets are welcome.\n\nEnjoy nearby restaurants, cafes, and shopping. Minutes from Barclays Center, Fort Greene Park, Pratt Institute, Downtown Brooklyn, and Manhattan, and close to the G train at Classon Avenue station. \n\n", + "features": [ + "Full-Time Doorman", + "Elevator", + "Laundry in Building", + "Home Office", + "On-site Parking For Rent", + "Voice Intercom", + "Bike Room", + "Private Storage For Rent", + "Northwestern Exposure", + "Assigned Parking", + "Midrise", + "Security Staff", + "Highrise" + ], + "property_facts": { + "Status": "Contract Signed", + "Days on Market": "8", + "Pet Policy": "Allowed", + "Maintenance": "$1,806 / month", + "Min. Down Pymt": "10%", + "Total Rooms": "7.0", + "Property Type": "Co-op", + "Year Built": "1958", + "County": "Kings County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": {}, + "agent": { + "name": "Charlie Lewis", + "email": "charlie.lewis@compass.com", + "telephone": "9174074248" + } + }, + "1961864764333808601": { + "listing_id": "1961864764333808601", + "source_url": "https://www.compass.com/homedetails/229-W-Hallam-St-Aspen-CO-81611/LREEA_pid/", + "retrieved_at": "2026-09-06T03:38:59.023924+00:00", + "html_sha256": "a8bd7d5b1c5f43fae76115af5a67901e29ab6895bab3bf9e3075d75f9e7f9b85", + "price": 10185000, + "address": "229 West Hallam Street", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "The West End", + "latitude": 39.1932217, + "longitude": -106.8241753, + "beds": 4, + "baths_full": 4, + "baths_half": 1, + "baths_total": 4.5, + "sqft": 3207, + "property_type": "Single Family", + "year_built": 1886, + "mls_number": "190755", + "status_text": "Closed", + "days_on_market": 257, + "listed_at_ms": 1762646400000, + "description": "Charming Remodeled Victorian in Coveted West End Neighborhood! This classic remodeled Victorian home is located on a highly sought-after street in the vibrant near West End, easily walkable to town and or a concert at the Music Tent or cultural events hosted by the Aspen Institute, known as one of the historic three sister homes it sits on desirable Hallam Street. \r\n\r\n- There are four bedrooms, each with en-suite bathrooms—ideal for family living or guest accommodations.\r\n- A charming powder room is conveniently located on the main entry level.\r\n- The primary suite boasts abundant natural light, soaring ceilings, and a generous walk-in closet for ample storage.\r\n- The fourth bedroom is located on the lower level, also featuring an en-suite bathroom and includes and a versatile room that can be an office or walk in closet.\r\n- The main level showcases an open-concept layout that seamlessly combines the living room, kitchen, and dining area, perfect for entertaining it leads to an English sun-filled atrium that enhances the indoor-outdoor living experience and connects to the backyard.\r\n- The backyard is an inviting space for grilling, dining, or relaxation, providing a private retreat in the heart of town.\r\n- Air conditioning units are installed throughout the main and upper levels, ensuring comfort during warmer months.\r\nWith its blend of historic charm and modern amenities, this Victorian home offers a unique opportunity for those seeking an elegant lifestyle in a prime location.", + "features": [ + "Washer / Dryer in Unit", + "Air Conditioning", + "Private Outdoor Space" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "190755", + "Days on Market": "257", + "Taxes": "$22,186 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family", + "Year Built": "1886", + "Lot Size": "0.09 AC / 3,920 SF", + "County": "Pitkin County", + "Buyer's Agent Compensation": "2.5%", + "Compensation Remarks": "Excluded buyers and variable commission." + }, + "regional_facts": { + "Garage": "No", + "Style": "Victorian", + "Fireplace: # Fireplaces": "1", + "Sub/Loc": "None" + }, + "agent": { + "name": "Lex Tarumianz", + "email": "lex.tarumianz@aspensnowmasssir.com", + "telephone": "970-618-5648" + } + }, + "1967539321536067401": { + "listing_id": "1967539321536067401", + "source_url": "https://www.compass.com/homedetails/1698-Tigertail-Ave-Miami-FL-33133/1D9WQ2_pid/", + "retrieved_at": "2026-09-06T03:44:28.595989+00:00", + "html_sha256": "3866b1fa8f90aa4abf5c1d50bf1725aaabf68cb4e29d0fde14a85cca7f07d665", + "price": 7950000, + "address": "1698 Tigertail Avenue", + "unit": "", + "city": "Miami", + "state": "FL", + "zip": "33133", + "neighborhood": "Northeast Coconut Grove", + "latitude": 25.7421111, + "longitude": -80.22134770000001, + "beds": 6, + "baths_full": 7, + "baths_half": 0, + "baths_total": 7, + "sqft": 5300, + "property_type": "Single Family", + "year_built": 2026, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Discover an exceptional new-construction luxury residence in the heart of North Coconut Grove. Positioned on a beautifully landscaped corner lot and embraced by mature trees, this stunning home offers approximately 5,300 sq ft of refined living with 6 bedrooms and 7 baths.\n\nDesigned to seamlessly connect indoor and outdoor living, the residence features expansive windows, a dramatic stairwell skylight, and sophisticated natural tones throughout. Exceptional Italian craftsmanship includes a custom BINOVA kitchen with a floor-to-ceiling panoramic window, PIANCA closets and walk-ins, PAIL interior doors, premium Thermador appliances, Bosch dishwasher, wine cooler, and designer lighting. Elegant bathrooms feature Hansgrohe fixtures, backlit mirrors, integrated sinks, and a custom Onyx powder room.\n\nThe spacious primary suite offers an Italian closet system, dedicated makeup vanity, and private terrace access, while a second master-style suite provides an ideal retreat for guests or family. Outdoors, enjoy a lagoon-style Obsidian pool, built-in Artisan BBQ, cabana bathroom, outdoor powder room, and lush surroundings designed for effortless entertaining. Smart-home technology, high-impact windows, striking architectural details, and expansive-format flooring complete this exceptional offering. Luxury reimagined in one of Miami’s most coveted neighborhoods.\n", + "features": [ + "Barbecue Area", + "Heated Pool", + "Below Ground Pool", + "Washer / Dryer", + "Central AC", + "Dishwasher", + "Wine Cooler", + "Double Oven", + "Refrigerator", + "Cooktop", + "Built-Ins", + "Private Entrance", + "High Ceilings", + "Walk-in Closet", + "Custom Closet", + "Primary Ensuite with Separate Shower", + "Separate Vanities", + "Central Heating", + "High Speed Internet", + "Smart Home", + "Smart Thermostat", + "Freezer", + "Luxury", + "Outdoor Grill" + ], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Single Family", + "Year Built": "2026", + "Lot Size": "0.21 AC / 9,097 SF", + "County": "Miami-Dade County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Waterfront": "No", + "Area": "41", + "Sq Ft Liv Area": "5300.0" + }, + "agent": { + "name": "Ivan Chorney", + "email": "ivan.chorney@compass.com", + "telephone": "3052227977" + } + }, + "1970580822273265497": { + "listing_id": "1970580822273265497", + "source_url": "https://www.compass.com/homedetails/195-Garfield-Pl-Unit-1L-Brooklyn-NY-11215/21HWK4_pid/", + "retrieved_at": "2026-09-06T03:45:20.439119+00:00", + "html_sha256": "43c99c9aa413e3e9a786b961165f03563aaf8d2fad6a6e8474bd9038c2b2493c", + "price": 1700000, + "address": "195 Garfield Place, Unit 1L", + "unit": "1L", + "city": "Brooklyn", + "state": "NY", + "zip": "11215", + "neighborhood": "Park Slope", + "latitude": 40.6728233, + "longitude": -73.97757899999999, + "beds": 3, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": null, + "property_type": "Co-op", + "year_built": 1931, + "mls_number": "", + "status_text": "Sold", + "days_on_market": 23, + "listed_at_ms": 1776873199448, + "description": "A rare opportunity to own a true three-bedroom with private outdoor space in the highly regarded Garfield North cooperative. Set in the heart of prime Park Slope, this expansive duplex offers the feel of townhouse living with the ease of a professionally managed co-op.\n\nThe upper level welcomes you with a spacious entry foyer, complete with generous closet space and a flexible area well-suited for a home office, reading corner, or drop spot for daily urban gear. Toward the rear, a full bathroom sits just off the closeted hallway into your huge primary bedroom with its high ceilings overlooking your own lush private backyard.\n\nDownstairs, the home opens into a natural gathering space. The kitchen flows easily into the dining room, creating a comfortable setting for both daily routines and hosting. Enjoy preparing meals in the brand new kitchen with all new quartz countertops, cabinets, and stainless steel appliances. Beyond, the living room anchors the unit, with glass doors that open directly to your private outdoor space providing an inviting extension of the home, whether for al fresco dining or simply unwinding. Two well-proportioned bedrooms are thoughtfully positioned on opposite ends of this level, offering separation and flexibility, with a second full bathroom centrally located.\n\nResidence 1L presents a compelling opportunity to shape a substantial two-level home with excellent proportions in one of Brooklyn’s most established neighborhoods. The apartment is move-in ready or presents an opportunity to custom tailor to your lifestyle should you wish.\n\nGarfield North is a long-standing cooperative known for its strong financials, offering a part-time superintendent, large modern laundry room, bike storage, video intercom, and Verizon Fios connectivity. Pet friendly upon approval. The building is nearing completion of a comprehensive façade and parapet restoration, along with a recently finished brand new roof.\n\nJust outside, Park Slope unfolds in every direction—from the shops and restaurants along 7th Avenue to the open green expanse of Prospect Park just a few blocks away. 5th Avenue’s lively mix of cafés and neighborhood favorites is equally close, and multiple subway lines (2/3, B/Q, F/G/R) provide easy access throughout the city.\n\nPlease note there is a monthly capital assessment of $674.28 in place through April 2027.\n", + "features": [ + "Primary Ensuite", + "Hardwood Floors", + "Elevator", + "Laundry in Building", + "Window AC can be Installed", + "Dishwasher", + "Formal Dining Room", + "Northern Exposure", + "Video Intercom", + "Bike Room", + "Baseboard Heating", + "Lowrise", + "Tile Floors" + ], + "property_facts": { + "Status": "Sold", + "Days on Market": "23", + "Pet Policy": "Allowed", + "Maintenance": "$2,071 / month", + "Min. Down Pymt": "20%", + "Total Rooms": "7.0", + "Property Type": "Co-op", + "Year Built": "1931", + "County": "Kings County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": {}, + "agent": { + "name": "Greg Schmalbach", + "email": "greg.schmalbach@compass.com", + "telephone": "7188444275" + } + }, + "1971667828977703721": { + "listing_id": "1971667828977703721", + "source_url": "https://www.compass.com/homedetails/1951-W-Huron-St-Chicago-IL-60622/1XU1P6_pid/", + "retrieved_at": "2026-09-06T03:41:09.551307+00:00", + "html_sha256": "b63a1f27ad474f00a39e760263e188533731ab48fe9743b72a7ea181660417df", + "price": 2150000, + "address": "1951 West Huron Street", + "unit": "", + "city": "Chicago", + "state": "IL", + "zip": "60622", + "neighborhood": "West Town", + "latitude": 41.8938399, + "longitude": -87.6765566, + "beds": 5, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 4500, + "property_type": "Single Family", + "year_built": 2007, + "mls_number": "12515409", + "status_text": "Active ( Private )", + "days_on_market": null, + "listed_at_ms": null, + "description": "Exquisite recently remodeled all-brick SFH in Ukrainian Village/West Town on a quiet one-way street! The large home features 5 bedrooms + 3.1 baths, 4,500sf of living space, with 5 separate outdoor spaces. 1st Floor features a sun-filled open living room with a wood-burning fireplace that opens to a large, formal dining room, updated powder room and the gourmet chef's eat-in kitchen with high-end SS appliances (Thermador, Gaggenau & Meile), built-in espresso & coffee maker, new quartz countertops, and subway tile backsplash with custom cabinetry, opens to a large, South-facing Family room w/ built-ins that has glass French-doors that open to a large patio and roof-top deck over the garaage - perfect for entertaining! The 2nd level features a huge primary bedroom with a walk-in closet and balcony, 2nd laundry room 2 additional bedrooms (very large front bedroom), 2 updated baths, including the primary bath with body sprays/rain shower, whirlpool jacuzzi tub, & double-vanity. Lower-level features include radiant heated floors throughout, a huge rec room with a gas fireplace, a full wet bar with a 140-bottle wine fridge, and a walk-out private front patio. Refinished hardwood floors, new paint/trim throughout, new dual heating/cooling zones, laundry on upper and lower floors, 5 outdoor spaces including a 1,900 sq ft new full roof top deck (with newer composite decking & roof) with awesome skyline views! Excellent location within walking distance to all the area restaurants, parks, shopping, schools, transportation & more!", + "features": [ + "Deck", + "Patio", + "Gated Community", + "Common Roof Deck", + "Garage", + "Automatic Garage Door", + "Detached Parking", + "Sauna", + "Washer / Dryer in Unit", + "Dryer", + "Washer", + "Laundry in Building", + "Central AC", + "Air Conditioning", + "Gas Heat", + "Dishwasher", + "Microwave", + "Stainless Steel Appliances", + "Disposal", + "Double Oven", + "Refrigerator", + "Fireplace", + "Wet Bar", + "Hardwood Floors", + "Basement", + "Forced Air", + "Radiant Heating", + "Range", + "Air Purification System", + "Traditional", + "Security System", + "Intercom", + "Private Outdoor Space", + "Full Basement" + ], + "property_facts": { + "Status": "Active ( Private )", + "MLS #": "12515409", + "Taxes": "$20,209 / year", + "Property Type": "Single Family", + "MLS Type": "Detached Single / 2 Stories", + "Year Built": "2007", + "Lot Size": "0.07 AC / 2,927 SF", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - West Town", + "Township": "West Chicago", + "Ownership": "Fee Simple", + "Num Of Garage Spaces": "2.0", + "Num Of Parking Spaces": "2.0", + "Parking Included in Price": "Yes", + "Air Conditioning Type": "Central Air, Zoned", + "Num of Interior Fireplaces": "2", + "Heat/Fuel": "Natural Gas, Forced Air, Radiant, Zoned, Radiant Floor", + "Architectural Style": "Traditional" + }, + "agent": { + "name": "Derek DiSera", + "email": "derek.disera@compass.com", + "telephone": "7732551550" + } + }, + "1972541164406932321": { + "listing_id": "1972541164406932321", + "source_url": "https://www.compass.com/homedetails/1036-Liberty-Park-Dr-Unit-38A-Austin-TX-78746/1F3WH3_pid/", + "retrieved_at": "2026-09-06T03:38:23.590384+00:00", + "html_sha256": "4bee94d9da065f3d46bb7745ab81bf17ca8e191dedbee684e390100c98cf6d7e", + "price": 1400000, + "address": "1036 Liberty Park Drive, Unit 38A", + "unit": "38A", + "city": "Austin", + "state": "TX", + "zip": "78746", + "neighborhood": "Treemont", + "latitude": 30.2686831, + "longitude": -97.7889654, + "beds": 4, + "baths_full": 3, + "baths_half": null, + "baths_total": 3, + "sqft": 2889, + "property_type": "Condo", + "year_built": 2007, + "mls_number": "8453917", + "status_text": "Active", + "days_on_market": null, + "listed_at_ms": null, + "description": "Presenting an exclusive off-market opportunity in the sought-after Rollingwood/Westlake area, located within the esteemed Eanes ISD. This 4-bedroom condominium currently has tenants in place until April 2027, offering a great rental income investment. Nestled in the gated community of Villas at Treemont, this quaint neighborhood provides easy access to Zilker Park, Lady Bird Lake, Barton Springs and the vibrant downtown Austin scene. Enjoy walking proximity to ACL Fest & various events at Zilker Park. A private back community gate provides walkability to the Shops at Mira Vista for grocery shopping at Trader Joe’s or lunch at Panera Bread. Nearby Treemont Park is a hidden gem for meeting up with neighbors. Step inside to discover a dedicated home office on the main floor. Google fiber ready! The multiple dining areas include a formal dining room, breakfast room & a kitchen with a breakfast bar. The kitchen has the beauty of stainless appliances with the convenience of gas cooking on a 6-burner cooktop. The open kitchen flows into the inviting Family Room, featuring a stone fireplace & built-ins for storage. The Primary Suite & secondary bedroom are located on the main floors, while two additional bedrooms await upstairs. Step out onto the screened back balcony for a relaxing, shaded retreat that leads to a fenced backyard bordered by serene shade trees. Upstairs a versatile 12x12 flex space provides endless opportunities, whether as a game room or additional living area. A separate Media Room is a great gathering area for the family, or could be a 5th bedroom, while an attic walkout provides easy access to storage items such as holiday decorations.", + "features": [ + "Air Conditioning", + "Attached Garage", + "Balcony", + "Carpet Floors", + "Ceiling Fan", + "Central AC", + "Chandeliers", + "Common Outdoor Space", + "Cooktop", + "Dishwasher", + "Disposal", + "Driveway", + "Dryer", + "Electric Dryer Hookup", + "Electric Oven", + "Fireplace", + "Foyer", + "Garage", + "Gated Community", + "Hardwood Floors", + "High Ceilings", + "Hot Water Heating", + "Ice Maker", + "Internet Included", + "Laundry in Building", + "Microwave", + "Parking Included", + "Patio", + "Porch", + "Private Outdoor Space", + "Private Yard", + "Recessed Lighting", + "Refrigerator", + "Shared Driveway", + "Soaking Tub", + "Stone Floors", + "Tile Floors", + "Washer", + "Washer / Dryer in Unit", + "Washer Hookup", + "Wooden Area Views" + ], + "property_facts": { + "Status": "Active", + "MLS #": "8453917", + "Taxes": "$24,663 / year", + "HOA Fees": "$270 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "2007", + "County": "Travis County" + }, + "regional_facts": { + "Subdivision Name": "Villas At Treemont Amd", + "Waterfront": "No", + "Waterfront Description": "None", + "Water Access Description": "Public", + "View": "Trees/Woods", + "View YN": "Yes", + "Parcel Number": "01071110140000", + "Tax Lot": "381", + "Elementary School": "Cedar Creek (Eanes ISD)", + "Elementary School District": "Eanes ISD", + "Middle Or Junior School": "Hill Country", + "Middle Or Junior School District": "Eanes ISD", + "Senior High School": "Westlake", + "High School District": "Eanes ISD", + "Levels": "Two", + "Master on Main": "Yes", + "Main Level Bedrooms": "2", + "Num Living": "2", + "Living Area Source": "PublicRecords", + "Year Built Source": "PublicRecords", + "Property Condition": "Resale", + "Pool Private": "No", + "Pool Features": "None", + "Spa": "No", + "Spa Features": "None" + }, + "agent": { + "name": "Dylan Everett", + "email": "dylan.everett@compass.com", + "telephone": "5126807523" + } + }, + "1977208754577401065": { + "listing_id": "1977208754577401065", + "source_url": "https://www.compass.com/homedetails/Juanita-St-Austin-TX-78704/1977208754577401065_lid/", + "retrieved_at": "2026-09-06T03:39:31.943561+00:00", + "html_sha256": "0d891873aa306823d0ecf45698b9f3fc28c0887b453d6e2e3b30bad4f2a92784", + "price": null, + "address": "Juanita Street", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78704", + "neighborhood": "Galindo", + "latitude": null, + "longitude": null, + "beds": 4, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 2122, + "property_type": "Condo", + "year_built": null, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Positioned just minutes from Downtown Austin, Zilker Park, South Congress, South Lamar, and some of the city’s most iconic dining, shopping, and entertainment. Designed for the modern lifestyle, each home offers an uber-functional layout, elevated craftsmanship, and designer-selected finishes that create a seamless blend of comfort and sophistication.\n\nThoughtfully planned interiors feature open-concept living spaces, large picture windows, curated lighting, custom cabinetry, and high-end fixtures throughout. Every detail has been meticulously crafted to deliver a refined living experience in one of Austin’s most desirable central locations.\n\nUnit 1\n\n4 Beds\n\n3.5 Baths\n\n2,122 SQFT\n\nExpansive main-level living + dining\n\nThoughtfully designed upper-level bedrooms\n\nLuxury finishes throughout", + "features": [], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Condo", + "County": "Travis County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision Name": "South Austin", + "Waterfront": "No", + "Elementary School District": "Austin ISD" + }, + "agent": { + "name": "Darsh Parikh", + "email": "darsh.parikh@compass.com", + "telephone": "5125933138" + } + }, + "1977215870457428705": { + "listing_id": "1977215870457428705", + "source_url": "https://www.compass.com/homedetails/Juanita-St-Austin-TX-78704/1977215870457428705_lid/", + "retrieved_at": "2026-09-06T03:39:33.666755+00:00", + "html_sha256": "aded74d221c6e9e4b7201e04ca2edc014191f9091ca33d904dbbe5dcc1fd1279", + "price": 1199000, + "address": "1004 Juanita Street, Unit 2", + "unit": "2", + "city": "Austin", + "state": "TX", + "zip": "78704", + "neighborhood": "Galindo", + "latitude": 30.2422033, + "longitude": -97.7654172, + "beds": 4, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 2122, + "property_type": "Condo", + "year_built": 2026, + "mls_number": "8444519", + "status_text": "Active", + "days_on_market": 92, + "listed_at_ms": 1780635600000, + "description": "Welcome to the Juanita Residence in South Bouldin — an ultra-luxury detached home by Canedo Builders, ideally positioned in the heart of South Austin’s coveted 78704, just minutes from Downtown Austin, Zilker Park, South Congress, South Lamar, and some of the city’s most iconic dining, shopping, and entertainment destinations. Designed for the modern lifestyle, this residence offers an uber-functional layout paired with elevated craftsmanship and designer-selected finishes that seamlessly blend comfort and sophistication, while thoughtfully planned interiors showcase open-concept living spaces, large picture windows, curated lighting, custom cabinetry, and high-end fixtures throughout, creating a bright, refined atmosphere for both everyday living and effortless entertaining. The home features 4 bedrooms, 3.5 baths, approximately 2,122 square feet of living space, and a private Delphina pool for year-round enjoyment, delivering the perfect balance of luxury, livability, and lock-and-leave convenience in one of Austin’s most desirable central locations. Whether you’re seeking modern elegance, unbeatable proximity to the city’s best amenities, or a turnkey luxury lifestyle, this is a rare opportunity to own a newly built residence in one of Austin’s most vibrant corridors.", + "features": [ + "Above Ground Pool", + "Air Conditioning", + "Carport Parking", + "Ceiling Fan", + "Central AC", + "Central Heating", + "City Views", + "Driveway", + "Hardwood Floors", + "High Ceilings", + "Pool", + "Porch", + "Private Pool", + "Private Yard", + "Recessed Lighting", + "Tile Floors", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Active", + "MLS #": "8444519", + "Days on Market": "92", + "Taxes": "$11,701 / year", + "Property Type": "Condo", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "2026", + "County": "Travis County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision Name": "La Perla", + "Waterfront": "No", + "Waterfront Description": "None", + "Water Access Description": "Public", + "View": "City Lights, City, Neighborhood", + "View YN": "Yes", + "Parcel Number": "04030504040003", + "Tax Lot": "2", + "Tax Block": "F", + "Elementary School": "Dawson", + "Elementary School District": "Austin ISD", + "Middle Or Junior School": "Lively", + "Middle Or Junior School District": "Austin ISD", + "Senior High School": "Travis", + "High School District": "Austin ISD", + "Levels": "Two", + "Master on Main": "No", + "Num Living": "2", + "Living Area Source": "Builder", + "Year Built Source": "Builder", + "Property Condition": "New Construction", + "Pool Private": "Yes", + "Pool Features": "Above Ground, Outdoor Pool" + }, + "agent": { + "name": "Darsh Parikh", + "email": "darsh.parikh@compass.com", + "telephone": "5125933138" + } + }, + "1977766518458693761": { + "listing_id": "1977766518458693761", + "source_url": "https://www.compass.com/homedetails/1162-Tiehack-Rd-Aspen-CO-81611/LRVDU_pid/", + "retrieved_at": "2026-09-06T03:39:01.183560+00:00", + "html_sha256": "af589f77074f2c4016b219d6110ff178949ca243d65dd994d5da6370f4ea3ae2", + "price": 38500000, + "address": "1162 Tiehack Road", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "West Aspen", + "latitude": 39.1900357, + "longitude": -106.8544597, + "beds": 6, + "baths_full": 6, + "baths_half": 3, + "baths_total": 7.5, + "sqft": 7811, + "property_type": "Single Family", + "year_built": 2006, + "mls_number": "190845", + "status_text": "Active", + "days_on_market": 290, + "listed_at_ms": 1763510400000, + "description": "Embodying the Aspen lifestyle, this 7,956-square-foot, six en suite bedroom estate pairs refined mountain living with exceptional convenience--next door to the Tiehack Chairlift and 3.5 miles to downtown Aspen. Recently remodeled and impeccably furnished, the residence offers an effortless blend of sophistication and comfort.\r\n\r\nAmenity-rich, the property features a hot tub, cold plunge, and pizza oven nestled within a generous backyard. Inside, two inviting entertaining spaces complement a private gym and massage room, along with a walk-in, humidity- and temperature-controlled wine cellar.\r\n\r\nState-of-the-art technology enhances every detail--from Sonos sound and remote shades to a comprehensive security system with cameras, oxygen in the primary suite, motion-sensor lighting, and a fully integrated Control4 smart home network. For the automotive and outdoor enthusiast, a spacious garage with BendPak lifts accommodates four cars and includes dedicated bike storage. Flawlessly executed, this estate stands as the epitome of Aspen's modern mountain luxury.", + "features": [ + "Garage", + "Gym", + "Washer / Dryer in Unit", + "Air Conditioning", + "Pet Friendly", + "Private Outdoor Space" + ], + "property_facts": { + "Status": "Active", + "MLS #": "190845", + "Days on Market": "290", + "Taxes": "$46,055 / year", + "HOA Fees": "$5,300 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family", + "Year Built": "2006", + "Lot Size": "1.03 AC / 44,866 SF", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "Yes", + "Property Faces": "South", + "Style": "Other, Contemporary", + "Furnished": "Furnished", + "Fireplace: # Fireplaces": "5", + "Sub/Loc": "Maroon Creek Club" + }, + "agent": { + "name": "Steven Shane", + "email": "steven.shane@compass.com", + "telephone": "9709486005" + } + }, + "1977806263674661849": { + "listing_id": "1977806263674661849", + "source_url": "https://www.compass.com/homedetails/2729-Glassell-St-Unit-4-Los-Angeles-CA-90026/21KK6Z_pid/", + "retrieved_at": "2026-09-06T03:42:50.192266+00:00", + "html_sha256": "2cdad11f5c4391ff28b1d4e6cb9b28757328b6e91514e43c3e99ea7cd6b85f82", + "price": 2150, + "address": "2729 Glassell Street, Unit 4", + "unit": "4", + "city": "Los Angeles", + "state": "CA", + "zip": "90026", + "neighborhood": "Silver Lake", + "latitude": 34.0712426, + "longitude": -118.2780372, + "beds": 2, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": null, + "property_type": "Rental", + "year_built": 1960, + "mls_number": "P1-24983", + "status_text": "Active", + "days_on_market": 290, + "listed_at_ms": 1763539200000, + "description": "Location, location, location. Centrally located near the Eastside is a 2 bedroom, 1 bathroom second floor unit with modern updates in a vibrant community. Crawfords will become your local hang, one block away, with easy access to the 101, Silver Lake and Echo Park. One parking spot is included. Pets will be considered.", + "features": [ + "Parking Included" + ], + "property_facts": { + "Status": "Active", + "MLS #": "P1-24983", + "Days on Market": "290", + "Available Date": "11/17/2025", + "Property Type": "Rental", + "MLS Type": "Residential Lease / Apartment", + "Year Built": "1960", + "County": "Los Angeles County" + }, + "regional_facts": { + "View": "No", + "Parking Spaces Total": "0", + "Private Pool": "No", + "Cooling Type": "None", + "Furnished": "Furnished", + "Lot Size Source": "Estimated", + "Property Attached YN": "true", + "Common Walls": "2+ Common Walls", + "Fireplace": "No", + "Spa": "No", + "Association Fee": "$.00", + "Subdivision Name": "Other", + "Subdivision Name Other": "Rampart Village", + "Senior Community": "No", + "Parcel Number": "5156021022", + "Area": "Silver Lake - Echo Park (C21)", + "Directions": "North of Beverly, East of Occidental" + }, + "agent": { + "name": "Teresa Fuller", + "email": "teresa.fuller@compass.com", + "telephone": "6264830710" + } + }, + "1978138900377088801": { + "listing_id": "1978138900377088801", + "source_url": "https://www.compass.com/homedetails/333-E-Colden-Ave-Los-Angeles-CA-90003/21KMZJ_pid/", + "retrieved_at": "2026-09-06T03:42:52.091962+00:00", + "html_sha256": "4baf1fc63bfff552ae3dc7ced0d3fa7e3ea8bd6ce98e9ca44c3d20a78c4fd5fd", + "price": 450000, + "address": "333 East Colden Avenue", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90003", + "neighborhood": "Green Meadows", + "latitude": 33.9494501, + "longitude": -118.2683627, + "beds": null, + "baths_full": 0, + "baths_half": 0, + "baths_total": null, + "sqft": null, + "property_type": "Single Family", + "year_built": null, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "", + "features": [], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Single Family", + "County": "Los Angeles County" + }, + "regional_facts": { + "Area": "Los Angeles Southwest (C34)" + }, + "agent": { + "name": "Ron Jackson", + "email": "ron.jackson@compass.com", + "telephone": "3107485959" + } + }, + "1981397852464551841": { + "listing_id": "1981397852464551841", + "source_url": "https://www.compass.com/homedetails/120-Turtle-Cove-Aspen-CO-81611/LSHB7_pid/", + "retrieved_at": "2026-09-06T03:39:01.411603+00:00", + "html_sha256": "e43860222b347a0d9d768b52f6d89f1477f04ad2e691b9e97c7d801b8b6596ea", + "price": 4250000, + "address": "120 Turtle Cove", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Brush Creek Village", + "latitude": 39.2529818, + "longitude": -106.8959507, + "beds": 3, + "baths_full": 3, + "baths_half": 0, + "baths_total": 3, + "sqft": 2342, + "property_type": "Single Family", + "year_built": 1972, + "mls_number": "190892", + "status_text": "Pending", + "days_on_market": 256, + "listed_at_ms": 1763942400000, + "description": "Taken down to the studs and reimagined with exceptional design, this newly completed (mid-November) single-family home in the Aspen School District is a true showcase of modern mountain living. Offered fully furnished with a curated Arhaus furniture package, this condo alternative is the perfect choice.\r\n\r\nSited on a 2.5-acre lot in Brush Creek, 120 Turtle Cove captures dramatic, unobstructed views from every angle. Thoughtful upgrades abound, including a newly added two-car carport, a 10-person jacuzzi, a handcrafted custom Nootka barrel sauna, and a Focus suspended fireplace handcrafted in Courchevel.", + "features": [ + "Gym", + "Washer / Dryer in Unit", + "Air Conditioning", + "Pet Friendly", + "Private Outdoor Space" + ], + "property_facts": { + "Status": "Pending", + "MLS #": "190892", + "Days on Market": "256", + "Taxes": "$8,343 / year", + "HOA Fees": "$50 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family", + "Year Built": "1972", + "Lot Size": "2.22 AC / 96,703 SF", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "No", + "Style": "Contemporary", + "Furnished": "Furnished", + "Fireplace: # Fireplaces": "1", + "Sub/Loc": "Brush Creek Village" + }, + "agent": { + "name": "Steven Shane", + "email": "steven.shane@compass.com", + "telephone": "9709486005" + } + }, + "1983047348118888593": { + "listing_id": "1983047348118888593", + "source_url": "https://www.compass.com/homedetails/1000-W-Adams-St-Unit-817-Chicago-IL-60607/1I2REX_pid/", + "retrieved_at": "2026-09-06T03:41:09.984474+00:00", + "html_sha256": "d84fac77b60b498ca110b80984de3836d795919e76800912a379d56be7e63aa0", + "price": null, + "address": "1000 West Adams Street, Unit 817", + "unit": "817", + "city": "Chicago", + "state": "IL", + "zip": "60607", + "neighborhood": "West Loop", + "latitude": 41.8794696, + "longitude": -87.6523003, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": null, + "property_type": "Condo", + "year_built": 2001, + "mls_number": "12524638", + "status_text": "Active ( Private )", + "days_on_market": null, + "listed_at_ms": null, + "description": "Welcome to urban living at its finest at 1000 West Adams Street, Unit 817! This stunning unit offers a perfect blend of style and convenience with its loft-style design and sleek finishes. Step inside this spacious fully updated 2-bedroom, 2-bathroom home and be greeted by an open-concept layout featuring soaring ceilings, hardwood floors, and a cozy fireplace, perfect for relaxing evenings. The modern kitchen is a chef's dream, boasting quartz countertops, stainless steel appliances, island for more counter space and casual dining. The primary bedroom includes a walk-in closet and an en-suite bathroom, while the second bedroom is equally inviting with ample closet space. Both bathrooms were completely updated with an elegant design with contemporary fixtures. Enjoy your morning coffee or unwind after a long day on your private balcony, or head up to the common roof deck for panoramic city views. The building offers a range of top-notch amenities, including a doorman, elevator, attached garage and a gym to keep you active. Additional perks include a bike room, valet cleaners, and business center. Large additional storage room included. Don't miss out on this incredible opportunity to live in a mid rise gem with all the modern conveniences you could ask for. Steps away from the beautiful Mary Bartelme Park, Target, Mariano's, Whole Foods, the Morgan 'L' stop or the UIC Halsted 'L' stop and West Loop's Restaurant Row on Randolph!", + "features": [ + "Balcony", + "Common Roof Deck", + "Doorman", + "Elevator", + "Garage", + "Automatic Garage Door", + "On-site Parking", + "Tandem Parking", + "Attached Parking", + "Gym", + "Washer / Dryer in Unit", + "Dryer", + "Washer", + "Laundry in Building", + "Central AC", + "Gas Heat", + "Dishwasher", + "Microwave", + "Stainless Steel Appliances", + "Disposal", + "Refrigerator", + "Granite Kitchen Counter", + "Fireplace", + "Hardwood Floors", + "Bike Room", + "Common Storage", + "Walk-in Closet", + "Forced Air", + "Corner Lot", + "Valet Cleaners", + "Midrise", + "Parking Included", + "Pet Friendly", + "Business Center", + "Snow Removal Included", + "Storage Available", + "Range", + "Washer Hookup", + "Pets Conditional" + ], + "property_facts": { + "Status": "Active ( Private )", + "MLS #": "12524638", + "Pet Policy": "Allowed", + "Taxes": "$9,950 / year", + "HOA Fees": "$814 / month", + "Property Type": "Condo", + "MLS Type": "Attached Single / Condo", + "Year Built": "2001", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - Near West Side", + "Township": "West Chicago", + "Ownership": "Condo", + "Num Of Garage Spaces": "2.0", + "Num Of Parking Spaces": "2.0", + "Parking Included in Price": "No", + "Air Conditioning Type": "Central Air", + "Num of Interior Fireplaces": "1", + "Heat/Fuel": "Natural Gas, Forced Air", + "Pets Allowed": "Yes" + }, + "agent": { + "name": "Stephanie Englund Siegel", + "email": "stephanie.siegel@compass.com", + "telephone": "7737506423" + } + }, + "1987285135257096177": { + "listing_id": "1987285135257096177", + "source_url": "https://www.compass.com/homedetails/315-E-Dean-St-Unit-B51-Aspen-CO-81611/LSCYZ_pid/", + "retrieved_at": "2026-09-06T03:39:02.889971+00:00", + "html_sha256": "27ad72243414959ffbd3dad7f875ec5ed8f648a4a7088fc05d1b4956160e68fc", + "price": 1495000, + "address": "315 East Dean Street, Unit B51", + "unit": "B51", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Aspen Central Core", + "latitude": 39.1869935, + "longitude": -106.8212945, + "beds": 2, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 1612, + "property_type": "Multi Family", + "year_built": 2004, + "mls_number": "190949", + "status_text": "Active", + "days_on_market": 284, + "listed_at_ms": 1764028800000, + "description": "Experience the epitome of elegance and modern luxury at the St Regis Residence Club over Christmas & New years every year. These weeks are by far are the most desirable and vibrant time to be in Aspen In addition this membership offers a week in June over the prestigious Idea's festival and a bonus ski week in early December. This 2 bedroom & 2 .5 bath offers a sophisticated bend of modern style & mountain charm. \r\n \r\nExperience the finest amenities designed for indulgence and relaxation whether it is the on site RAKxa spa & wellness center or the Snow lodge live concerts. The St Regis also offers heated outdoor pool & hot tubs, in town transportation, dedicated concierge, owners storage, dining options, room service, lobby lounge, valet parking and twice a day housekeeping creating an unparalleled living experience. Week #'s for this fixed membership are # 25, 48, 51, 52.\r\n\r\nSeller has done a trade of week #25 & #48 for 2026 exchanging for week # 35 & #36. ( August 29th - Sept 12th ) That's 2 consecutive weeks over the Jazz Aspen labor day concerts. \r\n\r\nSt Regis Residence club Aspen has reciprocity with St Regis NYC and offers travel privileges through all hotels under the Marriot umbrella.", + "features": [ + "Elevator", + "Doorman", + "Garage", + "Pool", + "Common Outdoor Space", + "Air Conditioning", + "Pet Friendly", + "Parking Included" + ], + "property_facts": { + "Status": "Active", + "MLS #": "190949", + "Days on Market": "284", + "HOA Fees": "$22,000 / year", + "Property Type": "Multi Family", + "MLS Type": "Fractional / Duplex", + "Year Built": "2004", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "Yes", + "Property Faces": "East", + "Style": "Other", + "Furnished": "Furnished", + "Sub/Loc": "St Regis Club" + }, + "agent": { + "name": "Sheryl Goldman", + "email": "sheryl@compass.com", + "telephone": "9703790770" + } + }, + "1988681691840304113": { + "listing_id": "1988681691840304113", + "source_url": "https://www.compass.com/homedetails/450-S-Original-St-Unit-8-Aspen-CO-81611/LSGS7_pid/", + "retrieved_at": "2026-09-06T03:39:03.012958+00:00", + "html_sha256": "0fd7299cb44e78fd62d423a94869040059b4bc098b9bd213d13e7da6bb6c916b", + "price": 3995000, + "address": "450 South Original Street, Unit 8", + "unit": "8", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Aspen Central Core", + "latitude": 39.1867092, + "longitude": -106.8152106, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 932, + "property_type": "Condo", + "year_built": 1963, + "mls_number": "190971", + "status_text": "Active", + "days_on_market": 275, + "listed_at_ms": 1764806400000, + "description": "If exceptional interior design, premium finishes, an unbeatable location, Aspen Mountain views, and effortless access to downtown are at the top of your wish list, 450 South Original delivers on every point. This beautifully remodeled second-floor, two-bedroom, two-bath residence showcases hardwood floors, a dedicated workstation, a gas fireplace, a charming breakfast nook, and a spacious covered terrace perfect for entertaining, complete with comfortable seating and an outdoor grill. Additional highlights include abundant storage, an in-unit washer and dryer, and a highly sought-after assigned parking space.", + "features": [ + "Washer / Dryer in Unit", + "Air Conditioning", + "Pet Friendly", + "Parking Included" + ], + "property_facts": { + "Status": "Active", + "MLS #": "190971", + "Days on Market": "275", + "Taxes": "$7,838 / year", + "HOA Fees": "$4,000 / quarter", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1963", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "No", + "Property Faces": "West", + "Style": "Contemporary", + "Furnished": "Furnished", + "Fireplace: # Fireplaces": "1", + "Sub/Loc": "450 Orginal-FKA Mittendorf" + }, + "agent": { + "name": "Steven Shane", + "email": "steven.shane@compass.com", + "telephone": "9709486005" + } + }, + "1991494172450990729": { + "listing_id": "1991494172450990729", + "source_url": "https://www.compass.com/homedetails/724-N-Hayden-Rd-Aspen-CO-81611/LQX0N_pid/", + "retrieved_at": "2026-09-06T03:39:04.478935+00:00", + "html_sha256": "bd78e577e23c945e27ecac6b6fe9c1abb9c9418fabe0f0e11bbbee30ebe01d4a", + "price": 34500000, + "address": "724 North Hayden Road", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "West Aspen", + "latitude": 39.16251200000001, + "longitude": -106.84935, + "beds": 5, + "baths_full": 4, + "baths_half": 1, + "baths_total": 4.5, + "sqft": 5417, + "property_type": "Single Family", + "year_built": 2024, + "mls_number": "190997", + "status_text": "Closed", + "days_on_market": 206, + "listed_at_ms": 1765152000000, + "description": "A published and award-winning architectural gem, the North Hayden Residence stands as one of Aspen's most exceptional mountain properties offering privacy, design pedigree, and panoramic mountain views. Completed in 2024 and featured as the cover story of Galerie Magazine's Winter 2025/2026 issue and named the winner of Interior Design Magazine's Best of the Year Awards (Residential Outdoor Space), this home represents the pinnacle of alpine modern living.\r\n\r\nLocated just 2.5 miles up Castle Creek Road--a quick 8-minute drive to Aspen's world-class dining, skiing, and culture yet worlds away in feel--the nearly 11 acre property is surrounded by Aspen groves, alpine forest, and a network of mulched paths. Adjacent to the property is the Congo Trail which provides access to Highlands ski mountain. The residence is thoughtfully sited to maximize sunlight and capture sweeping views of Ajax Mountain, Red Mountain, Ruthie's Lift, Highlands, and the legendary Highland Bowl.\r\n\r\nDesigned by Cristof Eigelberger in collaboration with interior designer Elizabeth Stanley, the home is a masterclass in rustic-modern integration and craftsmanship. Carved into a south-facing slope in the Castle Creek Valley, the architecture's low horizontal profile--composed of dry-stacked granite, shou sugi ban, and minimalist blackened steel--appears to emerge organically from the mountainside. Granite spine walls extend into the earth, steel-framed windows by MHB and Ottima pull in abundant natural light, and fractured black flagstone flooring flows effortlessly from the interior to heated outdoor terraces.\r\n\r\nInside, the home is rich with texture, warmth, and material authenticity. Reclaimed oak wraps the walls, ceilings, and floors adding timeless character. A custom plaster, tinted to echo local aspen bark, sets a serene tonal backdrop for a curated collection of contemporary art.\r\n\r\nThe main living room centers on a commanding granite wood burning fireplace, flanked by sliding walls of glass that open to the terraces. The kitchen is both sculptural and inviting, anchored by a 14-foot oak island and textured black stone, bespoke cabinetry, and Gaggenau appliances. A floating steel plate staircase rises through a double-height volume like a piece of sculpture to a private primary retreat.\r\nThe home offers 5 bedrooms, 4.5 baths, an office, and a surround-sound media room that doubles as the 5th bedroom. Outdoor living spaces are designed for year-round enjoyment, including a private rooftop deck with fire feature off the primary suite, a custom granite spa, a built-in firepit with banquette, and an Argentine-style grill. Green roofs, solar panels, custom lighting design with Lutron controls, and a generous 2.5-car garage elevate both sustainability and convenience.\r\n\r\nLandscape architecture by DesignWorkshop seamlessly blends the built environment with its alpine surroundings, creating a timeless conversation between structure and land.\r\n\r\nThe North Hayden Residence is more than a home--it is a rare, deeply considered mountain retreat where architecture, landscape, and lifestyle come together in perfect harmony. Modern yet timeless, rugged yet refined, it stands as one of Aspen's most extraordinary offerings.", + "features": [ + "Garage", + "Washer / Dryer in Unit", + "Air Conditioning", + "Waterfront", + "Private Outdoor Space" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "190997", + "Days on Market": "206", + "Taxes": "$36,810 / year", + "HOA Fees": "$1,400 / quarter", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family", + "Year Built": "2024", + "Lot Size": "10.65 AC / 463,914 SF", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "Yes", + "Style": "Contemporary", + "Furnished": "Partially", + "Fireplace: # Fireplaces": "2", + "Sub/Loc": "Castle Creek" + }, + "agent": { + "name": "Elizabeth Blackbird Stanley", + "email": "elizabeth.stanley@compass.com", + "telephone": "5128263605" + } + }, + "2004098274682072873": { + "listing_id": "2004098274682072873", + "source_url": "https://www.compass.com/homedetails/190-W-Lupine-Dr-Aspen-CO-81611/LRR90_pid/", + "retrieved_at": "2026-09-06T03:39:06.457197+00:00", + "html_sha256": "0f6ae09740efb074e9f717ee9c3c00fe158926f243bf83fd036750ac268ef30a", + "price": 14995000, + "address": "190 West Lupine Drive", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "East Aspen", + "latitude": 39.1833879, + "longitude": -106.8012035, + "beds": 5, + "baths_full": 5, + "baths_half": 2, + "baths_total": 6, + "sqft": 5470, + "property_type": "Single Family", + "year_built": 2007, + "mls_number": "191211", + "status_text": "Pending", + "days_on_market": 227, + "listed_at_ms": 1767052800000, + "description": "190 W. Lupine Drive is a rare offering where bespoke design, refined comfort, and an irreplaceable Aspen setting converge. A true statement of mountain luxury, the residence commands immediate architectural presence and timeless sophistication.\r\n\r\nThe grand foyer reveals a breathtaking great room defined by reclaimed wide-plank white oak flooring, a reclaimed barnwood ceiling, and exposed steel I-beam accents—each element thoughtfully curated to create a modern alpine aesthetic. Designed for both effortless entertaining and elevated everyday living, the home unfolds with a seamless open-concept flow between the kitchen, dining, and living areas.\r\n\r\nThe main-level primary suite is a private alpine sanctuary, featuring spa-caliber bath finishes, a dedicated private office, a spacious walk-in closet, direct patio access, a gas fireplace, and captivating views of Aspen Mountain.\r\n\r\nIndoor living extends gracefully outdoors to an expansive concrete aggregate terrace, anchored by a hard-lined gas fire pit and an elegant dining area. Framed by manicured sodded lawn, perennial gardens, and tranquil aspen groves, the grounds offer a rare sense of privacy and serenity—an idyllic setting for year-round enjoyment.", + "features": [ + "Garage", + "Washer / Dryer in Unit", + "Air Conditioning", + "Private Outdoor Space" + ], + "property_facts": { + "Status": "Pending", + "MLS #": "191211", + "Days on Market": "227", + "Taxes": "$32,833 / year", + "HOA Fees": "$200 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family", + "Year Built": "2007", + "Lot Size": "0.37 AC / 16,117 SF", + "County": "Pitkin County", + "Buyer's Agent Compensation": "2.25%" + }, + "regional_facts": { + "Garage": "Yes", + "Style": "Contemporary", + "Furnished": "Furnished", + "Fireplace: # Fireplaces": "4", + "Sub/Loc": "Mountain Valley" + }, + "agent": { + "name": "Doug Leibinger", + "email": "doug@compass.com", + "telephone": "9703799045" + } + }, + "2008346842162298705": { + "listing_id": "2008346842162298705", + "source_url": "https://www.compass.com/homedetails/415-E-Dean-St-35-Week-35-Aspen-CO-81611/2008346842162298705_lid/", + "retrieved_at": "2026-09-06T03:39:08.286548+00:00", + "html_sha256": "6ace55196c17c594f0260ee68b375baa130659a1d63786f3c5f16ce1f8ba54e9", + "price": 175000, + "address": "415 East Dean St # 35 Week 35", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Aspen Central Core", + "latitude": 39.1866543, + "longitude": -106.8199561, + "beds": 3, + "baths_full": 3, + "baths_half": 0, + "baths_total": 3, + "sqft": 1831, + "property_type": "Condo", + "year_built": 2005, + "mls_number": "191219", + "status_text": "Active", + "days_on_market": 248, + "listed_at_ms": 1767139200000, + "description": "2024 renovations completed (including new decor, furniture, lighting, paint and carpets). The Aspen Mountain Residences is nestled at the base of the mountain between the St. Regis and Little Nell properties. Bars, restaurants, shopping and nightlife are literally a few steps from The Aspen. The multitude of amenities and services include daily maid service, concierge, valet, heated outdoor pool along with 2 hot tubs, gym, fire pit, ski shop, e-bikes for owners use and daily breakfast service. Unit 35 is located on the 3rd floor. Enjoy Aspen mountain views from the patio. Prime fixed summer time at the end of August / beginning of September together with additional float time. 2026 Fixed dates: Sat, August 29 to Sat, September 5. 1/20th interest - includes fixed week and float week every year and additional float week every other year.", + "features": [ + "Hot Tub", + "Elevator", + "Doorman", + "Concierge", + "Gym", + "Pool", + "Air Conditioning", + "Mountain Views", + "Private Outdoor Space", + "No Pets", + "Parking Included" + ], + "property_facts": { + "Status": "Active", + "MLS #": "191219", + "Days on Market": "248", + "HOA Fees": "$12,885 / year", + "Property Type": "Condo", + "MLS Type": "Fractional / Condominium", + "Year Built": "2005", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "No", + "Property Faces": "East", + "Sub/Loc": "G.A. resort condos aka The Aspen Mountain Residences" + }, + "agent": { + "name": "Nancy Marie Stover", + "email": "nancystover@live.com", + "telephone": "970-948-4350" + } + }, + "2011904179804361681": { + "listing_id": "2011904179804361681", + "source_url": "https://www.compass.com/homedetails/566-6th-Ave-San-Francisco-CA-94118/1PBCCF_pid/", + "retrieved_at": "2026-09-06T03:46:34.250398+00:00", + "html_sha256": "8d74b8408523f6fbcf4e526a9e86a87123f87b58dc411a5a02b08e33f2d9cc80", + "price": 2775000, + "address": "566 6th Avenue", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94118", + "neighborhood": "Inner Richmond", + "latitude": 37.7778927, + "longitude": -122.4639313, + "beds": 4, + "baths_full": 3, + "baths_half": null, + "baths_total": 3, + "sqft": 2498, + "property_type": "Condo", + "year_built": 1904, + "mls_number": "426124481", + "status_text": "Closed", + "days_on_market": 9, + "listed_at_ms": 1779865200000, + "description": "Thoughtfully renovated in 2023, this exceptional bi-level upper condo combines modern sophistication with everyday functionality in the heart of one of San Francisco's most desirable neighborhoods, the Inner Richmond. Rarely available and flexible 4-bedroom, 3-bathroom configuration with generous living spaces has been thoughtfully designed for both comfortable daily living and effortless entertaining. Contemporary interiors showcase wide-plank oak hardwood flooring, modern finishes, and an abundance of natural light throughout. An exclusive-use private rear yard provides a rare outdoor retreat, perfect for relaxing, dining, or hosting guests. At the center of the home is a beautifully appointed gourmet kitchen featuring chef's grade stainless-steel appliances, sleek modern cabinetry, slab countertops and seamless integration with the open-concept living and dining areas. The building underwent extensive major system upgrades during the renovation, including new heating, roof, foundation, dual pane windows, and smart home technology offering a true \"turn-key\" and modern residence. Additional conveniences include in-unit laundry, 1 full size side-by-side garage parking, and EV hookups. Ideally situated near the popular shops, cafes, restaurants, and transit along Balboa Street and Clement Street, and just moments from Golden Gate Park, the Inner Richmond offers exceptional access to some of the city's best neighborhood amenities, outdoor spaces, and local conveniences.", + "features": [ + "Air Conditioning", + "Attached Garage", + "Central Heating", + "Dishwasher", + "Disposal", + "Electric Vehicle Charging Station(s)", + "Garage", + "Garden Views", + "Laundry", + "Parking Included", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "426124481", + "Days on Compass": "9", + "HOA Fees": "$270 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1904", + "County": "San Francisco County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Parking Features": "Attached, Electric Vehicle Charging Station(s), Side By Side, Unassigned, Side by Side, On Site - Mapped (Condo Only)", + "Architectural Style": "Contemporary", + "View Description": "Garden, San Francisco", + "Cross Street": "Balboa St", + "Total Parking Spaces": "1" + }, + "agent": { + "name": "Kristen Stuecher", + "email": "kristen.stuecher@compass.com", + "telephone": "4159484888" + } + }, + "2014657704352455905": { + "listing_id": "2014657704352455905", + "source_url": "https://www.compass.com/homedetails/315-E-Dean-St-Unit-B62-Aspen-CO-81611/LSUQ9_pid/", + "retrieved_at": "2026-09-06T03:39:08.714095+00:00", + "html_sha256": "c3d4390ec07551ef5fc5018c45de40b29d47ab362eacc62d653fedbd6c0fab12", + "price": 425000, + "address": "315 East Dean Street, Unit B62", + "unit": "B62", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Aspen Central Core", + "latitude": 39.1869935, + "longitude": -106.8212945, + "beds": 2, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 1473, + "property_type": "Multi Family", + "year_built": 2004, + "mls_number": "191312", + "status_text": "Active", + "days_on_market": 611, + "listed_at_ms": 1735776000000, + "description": "Experience the epitome of elegance and modern luxury at the St Regis Residence club. This 2 bedroom 2.5 bath winter premier membership offers 3 prime ski weeks and i mid season week every year on a rotational basis . Weeks for the current season have all been accounted for. Buyer will have the privilege of picking there own weeks and dates for the upcoming 2026 | 2027 ski season\r\n \r\nExperience the finest amenities designed for indulgence and relaxation whether it is the on site RAKxa spa & wellness center or the Snow lodge live concerts. The St Regis also offers heated outdoor pool & hot tubs, in town transportation, dedicated concierge, owners storage, dining options, room service, lobby lounge, valet parking and twice a day housekeeping creating an unparalleled living experience.\r\n\r\n\r\nSt Regis Residence club Aspen has reciprocity with St Regis NYC and offers travel privileges through all hotels under the Marriot umbrella.", + "features": [ + "Elevator", + "Doorman", + "Garage", + "Pool", + "Common Outdoor Space", + "Air Conditioning", + "Pet Friendly", + "Parking Included" + ], + "property_facts": { + "Status": "Active", + "MLS #": "191312", + "Days on Market": "611", + "HOA Fees": "$22,000 / year", + "Property Type": "Multi Family", + "MLS Type": "Fractional / Duplex", + "Year Built": "2004", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "Yes", + "Property Faces": "East", + "Style": "Other", + "Furnished": "Furnished", + "Sub/Loc": "St Regis Club" + }, + "agent": { + "name": "Sheryl Goldman", + "email": "sheryl@compass.com", + "telephone": "9703790770" + } + }, + "2024239871727304937": { + "listing_id": "2024239871727304937", + "source_url": "https://www.compass.com/homedetails/Eddy-St-San-Francisco-CA-94109/2024239871727304937_lid/", + "retrieved_at": "2026-09-06T03:46:34.788804+00:00", + "html_sha256": "c488b6b87ab2f8cb840fb27a66674f74b7bb23debdaa1d7f07070ffd94b96fd5", + "price": 580000, + "address": "Eddy Street", + "unit": "D", + "city": "San Francisco", + "state": "CA", + "zip": "94109", + "neighborhood": "Western Addition", + "latitude": 37.7822775, + "longitude": -122.4269298, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 816, + "property_type": "Condo", + "year_built": 1992, + "mls_number": "426103744", + "status_text": "Closed", + "days_on_market": 0, + "listed_at_ms": 1780642800000, + "description": "Well-configured 2-bedroom, 2-bath residence in the heart of San Francisco's Western Addition, offering exceptional walkability, convenience, and value. The home features an expansive living area with flexible layout options, two well-appointed bedrooms, and a private balcony off the primary suite. The kitchen offers a functional design with generous storage, ideal for everyday living. Residents also enjoy access to a rooftop area for exclusive use. One secure parking space is included. Ideally located in Cathedral Hill, just moments from Jefferson Square Park and within easy walking distance to Japantown, Hayes Valley, and the Civic Center.", + "features": [ + "Attached Garage", + "Garage", + "Parking Included" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "426103744", + "Days on Compass": "0", + "HOA Fees": "$483 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1992", + "County": "San Francisco County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Parking Features": "Attached, Side by Side, On Site", + "Cross Street": "Laguna St", + "Total Parking Spaces": "1" + }, + "agent": { + "name": "Eric Li", + "email": "eric.li@compass.com", + "telephone": "4156098796" + } + }, + "2026979539362870169": { + "listing_id": "2026979539362870169", + "source_url": "https://www.compass.com/homedetails/315-E-Dean-St-Unit-B53-Aspen-CO-81611/LQVC6_pid/", + "retrieved_at": "2026-09-06T03:39:08.790899+00:00", + "html_sha256": "8f6be7ce2fec14fc6a8a0a8f778a6e7c23728e4e50210931bba11462e1291b81", + "price": 285000, + "address": "315 East Dean Street, Unit B53", + "unit": "B53", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Aspen Central Core", + "latitude": 39.1869935, + "longitude": -106.8212945, + "beds": 2, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 1557, + "property_type": "Condo", + "year_built": 2004, + "mls_number": "191464", + "status_text": "Closed", + "days_on_market": 205, + "listed_at_ms": 1768953600000, + "description": "Summer fixed membership available in a luxurious 2 bedroom, 2.5 bath unit which offers 2 consecutive fixed prime summer weeks, 1 spring ski and 1 mid -season week every year. The dates for 2026 are week # 13 ( March 28th - April 4th) Week # 22 ( May 30th - June 6th ) Week #23\r\n ( June 6th - 13th) Mid season week # 45\r\n (November 7th - 14th ) \r\n\r\nExperience all the luxuries & amenities the St. Regis has to offer. From dedicated concierge, twice daily housekeeping, room service, RAKxa wellness spa, outdoor pool & hot tubs, fitness center, fine dining, lobby lounge with live music, owner's storage, valet & transportation. In addition you will receive platinum travel privileges' through out all Marriott properties world - wide.\r\n\r\nPhotos are not of the actual unit. Floor plans vary slightly.", + "features": [ + "Elevator", + "Doorman", + "Garage", + "Pool", + "Common Outdoor Space", + "Air Conditioning", + "Pet Friendly", + "Parking Included" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "191464", + "Days on Market": "205", + "HOA Fees": "$22,000 / year", + "Property Type": "Condo", + "MLS Type": "Fractional / Condominium", + "Year Built": "2004", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "Yes", + "Property Faces": "East", + "Style": "Other", + "Furnished": "Furnished", + "Sub/Loc": "St Regis Club" + }, + "agent": { + "name": "Sheryl Goldman", + "email": "sheryl@compass.com", + "telephone": "9703790770" + } + }, + "2029213104600093465": { + "listing_id": "2029213104600093465", + "source_url": "https://www.compass.com/homedetails/301-E-Hyman-Ave-Unit-103-WKS-26-36-51-Aspen-CO-81611/266TL5_pid/", + "retrieved_at": "2026-09-06T03:39:09.970740+00:00", + "html_sha256": "669ede6c7cb9fe8e4a6b16fe31618ef6c85ea7588ad3384548a1bc998a9ebcaa", + "price": 77500, + "address": "301 East Hyman Avenue, Unit 103 (WKS 26 36 51)", + "unit": "103 (WKS 26 36 51)", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Aspen Central Core", + "latitude": 39.1889848, + "longitude": -106.8206493, + "beds": 1, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1.75, + "sqft": 714, + "property_type": "Condo", + "year_built": 1982, + "mls_number": "191496", + "status_text": "Closed", + "days_on_market": 202, + "listed_at_ms": 1769558400000, + "description": "Opportunity to own 3 incredible set weeks in the heart of Aspen with early July (typically 4th of July WE), early Sept (Labor Day), and even late Dec / Christmas week. The Prospector has an unbeatable location overlooking Wagner Park, directly facing Aspen Mtn. and across from the historic Wheeler Opera House. This one bedroom, two bath, 714 sq. ft. condo in the core of Aspen has an additional murphy bed area with bathroom and sleeper sofa that can accommodate up to 6 people. Steps to all the fabulous restaurants, shops & Silver Queen Gondola. Enjoy the views while relaxing on your private deck with hot tub. Prospector amenities include: daily housekeeping, heated underground parking, and on-site management team. Large common deck for BBQ's with sweeping views of town, Wagner Park, Aspen Mountain, and Independence Pass. HOA dues include all utilities and property taxes! Photos are stock photos and may not be representative of actual unit.", + "features": [ + "Hot Tub", + "Deck", + "Underground Parking", + "Parking Included", + "Common Deck" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "191496", + "Days on Market": "202", + "HOA Fees": "$1,200 / quarter", + "Property Type": "Condo", + "MLS Type": "Fractional / Condominium", + "Year Built": "1982", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "No", + "Property Faces": "South", + "Furnished": "Furnished", + "Sub/Loc": "Prospector" + }, + "agent": { + "name": "Bruce L. Johnson", + "email": "bruce.johnson@elliman.com", + "telephone": "970-618-0825" + } + }, + "2029252096787926185": { + "listing_id": "2029252096787926185", + "source_url": "https://www.compass.com/homedetails/315-E-Dean-St-Unit-B30-Aspen-CO-81611/JWVYF_pid/", + "retrieved_at": "2026-09-06T03:39:12.078758+00:00", + "html_sha256": "0202fa7c0abaac5921e466a5fdb2426e807ffa710ed09ef9443038ec24d30f4f", + "price": 700000, + "address": "315 East Dean Street, Unit B30", + "unit": "B30", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Aspen Central Core", + "latitude": 39.1869935, + "longitude": -106.8212945, + "beds": 3, + "baths_full": 3, + "baths_half": 0, + "baths_total": 3, + "sqft": 2100, + "property_type": "Condo", + "year_built": 2004, + "mls_number": "191498", + "status_text": "Closed", + "days_on_market": 134, + "listed_at_ms": 1769472000000, + "description": "Winter premier ownership in a 3 bedroom 3 full bath St Regis Residence club unit offers you 3 prime ski winter weeks and 1 mid season week every year on a rotational basis. Weeks for the 2026 | 2027 ski season are selected in June Buyer will have the privilege of choosing there desired weeks and dates upon a successful closing by June 2026\r\n\r\nExperience the epitome of elegance and exceptional luxuries and amenities the St Regis has to offer. Twice a day housekeeping, owners storage, dedicated concierge, RAKxa wellness spa, in town transportation, outdoor pool & and hot tubs, lobby lounge, live music, two restaurants & room service. Pamper the pooch. The St Regis is a very pet friendly property. In addition you will receive many Marriott travel privilege's world -wide.", + "features": [ + "Elevator", + "Doorman", + "Garage", + "Pool", + "Common Outdoor Space", + "Air Conditioning", + "Pet Friendly", + "Parking Included" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "191498", + "Days on Market": "134", + "HOA Fees": "$25,986 / year", + "Property Type": "Condo", + "MLS Type": "Fractional / Condominium", + "Year Built": "2004", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "Yes", + "Style": "Other", + "Furnished": "Furnished", + "Sub/Loc": "St Regis Club" + }, + "agent": { + "name": "Sheryl Goldman", + "email": "sheryl@compass.com", + "telephone": "9703790770" + } + }, + "2029481186232648585": { + "listing_id": "2029481186232648585", + "source_url": "https://www.compass.com/homedetails/200-Brannan-St-Unit-130-San-Francisco-CA-94107/1PS0NG_pid/", + "retrieved_at": "2026-09-06T03:46:35.100552+00:00", + "html_sha256": "1e1c20ef147c40ce9de02cba8860e3b40979c69209106316d0172443214d649a", + "price": 1475000, + "address": "200 Brannan Street, Unit 130", + "unit": "130", + "city": "San Francisco", + "state": "CA", + "zip": "94107", + "neighborhood": "South Beach", + "latitude": 37.7838833, + "longitude": -122.3906104, + "beds": 1, + "baths_full": 1, + "baths_half": 1, + "baths_total": 1.5, + "sqft": 1645, + "property_type": "Condo", + "year_built": 2004, + "mls_number": "426097941", + "status_text": "Active", + "days_on_market": 17, + "listed_at_ms": 1787122800000, + "description": "Calling all tech buyers who want location & convenience w/expansive work-from-home space in a secure, concierge building including 24-hour door person for packages & food deliveries. This enormous condo has a huge private primary suite + a media room with impressive scale making it ideal for weekend guests, hanging out or added work from home space! Thoughtfully remodeled, this one-of-a-kind residence combines unparalleled comfort and space. The spectacular remodeled eat-in kitchen is outfitted with custom cabinetry and top-of-the-line Thermador Smart appliances, a 5-burner gas range with hood, and a wine fridge. Custom finishes elevate the space, with Cambria quartz countertops, an Artistic Tile backsplash, under-cabinet lighting, hidden outlets, custom drawer dividers, and a custom-built quartz storage cabinet. Every detail has been meticulously curated to enhance your culinary experience. The expansive primary suite includes a spacious bedroom with doors, a massive walk-in closet, desk space, and a spa-like bathroom with a double-sink vanity and a separate soaking tub. Add'l upgrades include automated shades, upgraded flooring, and a dramatic designer light fixture that provides ambient lighting across both levels. This well-managed, full-service building has a fitness center, serene courtyard gardens, and concierge services. In-unit laundry and one deeded parking space that's EV capable. A+ location in close proximity to Open AI, Teridion CaptivateIQ, Hayden AI Tech, Jackson Square, Oracle Park, Chase Center, the UCSF Mission Bay campus, FiDi, and an array of cafes and shops. This is a rare opportunity to enjoy a quiet oasis while being close to everything! A truly unique opportunity! Note: Photos were taken at a previous date and do not reflect current furnishings.", + "features": [ + "Air Conditioning", + "Attached Garage", + "Carpet Floors", + "Central Heating", + "Concierge", + "Dishwasher", + "Elevator", + "Garage", + "Gym", + "Laundry", + "Microwave", + "Midrise", + "Parking Included", + "Pet Friendly", + "Pets Conditional", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Active", + "MLS #": "426097941", + "Days on Compass": "17", + "Pet Policy": "Allowed", + "HOA Fees": "$1,128 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "2004", + "County": "San Francisco County", + "Buyer's Agent Compensation": "2.5%", + "Compensation Remarks": "Seller will consider Buyer Compensation " + }, + "regional_facts": { + "Directions to Property": "Doorman Entrance is on Delancey. Typically there is parking available on Delancey during showings.", + "Parking Features": "Driveway, Attached, Enclosed, Garage Door Opener, Inside Entrance, Side By Side, Independent, On Site - Mapped (Condo Only)", + "Architectural Style": "Contemporary, Modern/High Tech", + "Cross Street": "Delancey", + "Total Parking Spaces": "1" + }, + "agent": { + "name": "Cece Doricko", + "email": "cecedoricko@compass.com", + "telephone": "4152647482" + } + }, + "2031338722812374913": { + "listing_id": "2031338722812374913", + "source_url": "https://www.compass.com/homedetails/Tbd-Pfister-Dr-Aspen-CO-81611/LRKCC_pid/", + "retrieved_at": "2026-09-06T03:39:12.262012+00:00", + "html_sha256": "12493930a6cde5eaf19a4f6520236d9c072a5ced8b7b58d8f877716b70ef55b5", + "price": 4500000, + "address": "Tbd Pfister Drive", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "West Aspen", + "latitude": 39.194708, + "longitude": -106.857761, + "beds": null, + "baths_full": null, + "baths_half": null, + "baths_total": 0, + "sqft": null, + "property_type": "Land", + "year_built": null, + "mls_number": "191532", + "status_text": "Active", + "days_on_market": 216, + "listed_at_ms": 1769904000000, + "description": "Build your dream mountain retreat on this exceptional vacant lot with sweeping peak views, lush alpine surroundings, and the serene Aspen lifestyle. Build up to 10,000 sq ft without purchasing TDRs — 6,000 sq ft above grade and 4,000 sq ft below. This rare parcel lets you design a bespoke estate—modern masterpiece, cozy chalet, or timeless residence—tailored to your vision. Don't miss the chance to create a legacy property.", + "features": [], + "property_facts": { + "Status": "Active", + "MLS #": "191532", + "Days on Market": "216", + "Taxes": "$46,916 / year", + "HOA Fees": "$5,220 / year", + "Property Type": "Land", + "MLS Type": "Residential Vacant Land / Single Family Lot", + "Lot Size": "0.59 AC", + "County": "Pitkin County" + }, + "regional_facts": { + "Sub/Loc": "Maroon Creek Club" + }, + "agent": { + "name": "Kendall Dalton", + "email": "kendall.dalton@elliman.com", + "telephone": "901-605-5041" + } + }, + "2034361121030986649": { + "listing_id": "2034361121030986649", + "source_url": "https://www.compass.com/homedetails/2120-Vermont-Ave-NW-Unit-123-Washington-DC-20001/1T8YES_pid/", + "retrieved_at": "2026-09-06T03:48:11.454393+00:00", + "html_sha256": "be898e19380978052c4d7a251df84dcbe75263a71d91fa72cd8b9bbb826e43ae", + "price": 665000, + "address": "2120 Vermont Avenue Northwest, Unit 123", + "unit": "123", + "city": "Washington", + "state": "DC", + "zip": "20001", + "neighborhood": "U-Street", + "latitude": 38.9187901, + "longitude": -77.02491599999999, + "beds": 3, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1292, + "property_type": "Condo", + "year_built": 2006, + "mls_number": "DCDC2244234", + "status_text": "Active", + "days_on_market": 58, + "listed_at_ms": 1783483200000, + "description": "True 3 bedroom condos are called Unicorns in the DC market because there's so few of them. This one has all the features you want + 2 parking spots + storage + it's convenient. Living here is:\n\n-Daily trips to Whole Foods because it's across the street (if that's your thing!)\n-Easy Metro rides because the Metro (Green/Yellow line) stop is 3 blocks away.\n-Breakfast at Café Unido.\n-Concerts at 9:30 Club.\n-Late night slices at Andy's.\n-Movies at Atlantic Plumbing.\n-Starting the day watching the sun rise (if you're an early bird!). It's a corner unit and it faces east, south and west.\n\nThe unit is sun drenched and spans 1,300 sf with 2 parking spots and storage! This is not a street-level unit—it’s elevated, ensuring privacy.\n\nThe bright living room is bathed in natural light, thanks to east and south facing floor-to-ceiling windows. An open floor plan, DuChâteau wide plank hardwood floors, and soaring 9’+ ceilings make this home perfect for both living and entertaining. The gourmet kitchen with it's u-shaped floor plan is a chef’s dream. It has sleek quartz countertops, stainless steel appliances and ample storage.\n\nThe spacious primary bedroom has a generous walk-in closet outfitted by California Closets, providing generous wardrobe space and storage. The updated en-suite bathroom offers dual vanities with quartz countertops, Restoration Hardware medicine cabinets and a custom, corner cabinet for linen storage.\n\nThe second bedroom is spacious and the closet equipped with an Elfa closet system. The third bedroom is currently used as an office, outfitted with a custom California Closets desk and additional storage.\n\nEnjoy the luxury of two parking spots conveniently located directly in front of the elevator, along with a dedicated storage space. The building offers an array of amenities, including a rooftop deck, barbecue area, gym, concierge and on site management.", + "features": [ + "Doorman", + "Concierge", + "Common Roof Deck", + "Barbecue Area", + "Washer / Dryer", + "Elevator", + "Garage", + "Gym", + "Bike Room", + "Private Storage Included", + "Common Storage", + "Basement", + "Assigned Parking", + "Midrise", + "Security System" + ], + "property_facts": { + "Status": "Active", + "MLS #": "DCDC2244234", + "Days on Market": "58", + "Pet Policy": "Allowed", + "Taxes": "$6,277 / year", + "Condo/Co-op Fees": "$1,130 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condo", + "Year Built": "2006", + "County": "District of Columbia", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Tax ID Number": "0358//2058", + "Ownership": "Condominium", + "Condo Coop Association": "Yes", + "HOA": "No", + "Entry Floor Number": "1", + "Structure Type": "Unit/Flat/Apartment", + "Style": "Contemporary", + "Levels/Stories": "1", + "Unit Building Type": "Mid-Rise 5 - 8 Floors", + "Waterfront": "No", + "Garage": "Yes", + "Subdivision": "OLD CITY #2 (WASHINGTON DC)", + "Building Name": "Old City 2 (WASHINGTON DC)", + "Legal Subdivision": "Old City 2", + "Total Parking Spaces": "2", + "Washer/Dryer/Hook Up in Unit Y/N": "Yes", + "Central Air": "No", + "Basement": "Yes", + "Above Grade Finished SQFT": "1,292.00", + "Above Grade Fin SQFT Source": "Assessor", + "Below Grade Finished SQFT": ".00", + "Below Grade Fin SQFT Source": "Assessor", + "Below Grade Unfinished SQFT": ".00", + "Below Grade Unfin SQFT Source": "Assessor", + "Total Below Grade SQFT": ".00", + "Total Below Grade SQFT Source": "Assessor", + "New Construction": "No", + "Property Condition": "Excellent" + }, + "agent": { + "name": "Jen Angotti", + "email": "jennifer.angotti@compass.com", + "telephone": "2022854238" + } + }, + "2038763065666255609": { + "listing_id": "2038763065666255609", + "source_url": "https://www.compass.com/homedetails/522-Hickory-St-San-Francisco-CA-94102/1QW15S_pid/", + "retrieved_at": "2026-09-06T03:46:36.805050+00:00", + "html_sha256": "e16b8f80dbc4a962d6996a88743aada082408d1c200f2a0a61c627e3b026d0d3", + "price": 3800000, + "address": "522 Hickory Street", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94102", + "neighborhood": "Hayes Valley", + "latitude": 37.7747989, + "longitude": -122.4286173, + "beds": 3, + "baths_full": 3, + "baths_half": 2, + "baths_total": 4, + "sqft": 2982, + "property_type": "Single Family", + "year_built": 2022, + "mls_number": "426103127", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Expertly crafted, this 4-level single-family home in Hayes Valley showcases outdoor space on every floor & sweeping 360-degree views from a private rooftop deck. Nestled on serene Hickory Street, it offers both seclusion & walkable access to acclaimed restaurants,SF Opera & Symphony, amazing retail and transit options. The gourmet kitchen is anchored by a striking island & features custom matte cabinetry with minimalist black hardware, full-height built-ins & premium Bosch appliances: 5-burner gas cooktop, microwave, dishwasher, refrigerator & freezer. A tall Thermador wine cooler, veined quartz countertops, matching backsplash & under-cabinet lighting elevate the space, which opens to the dining/living area. Three en suite bedrooms include built-out closets, plus a versatile office/wellness room. The interior offers 3 full baths, 2 half baths with designer wallpaper & 3 distinct media/living spaces. Wide-plank Duchateau floors, Nest-controlled 4-zone radiant heat, built-in speakers, Ring security & 1 car garage with EV outlet complete this refined city retreat.", + "features": [ + "Attached Garage", + "Garage" + ], + "property_facts": { + "Status": "Coming Soon", + "MLS #": "426103127", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "2022", + "Lot Size": "0.03 AC / 1,250 SF", + "County": "San Francisco County" + }, + "regional_facts": { + "Parking Features": "Attached, Independent, On Site (Single Family Only)", + "Cross Street": "Webster", + "Total Parking Spaces": "1" + }, + "agent": { + "name": "Shane Nugent", + "email": "shane.nugent@compass.com", + "telephone": "4158023717" + } + }, + "2039739777685968689": { + "listing_id": "2039739777685968689", + "source_url": "https://www.compass.com/homedetails/803-E-Durant-Ave-Unit-8-Aspen-CO-81611/LQU25_pid/", + "retrieved_at": "2026-09-06T03:39:13.193766+00:00", + "html_sha256": "bb321f2aa0f775a790a3c2a0e7fccc5848db12cf7fdc9fddedbfa98f9bd8cb1a", + "price": 4350000, + "address": "803 East Durant Avenue, Unit 8", + "unit": "8", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Aspen Central Core", + "latitude": 39.1862216, + "longitude": -106.8153027, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 960, + "property_type": "Condo", + "year_built": 1965, + "mls_number": "191947", + "status_text": "Active", + "days_on_market": 180, + "listed_at_ms": 1773014400000, + "description": "Perfectly positioned just two blocks from the Silver Queen Gondola, this light-filled Aspen condo delivers the mountain lifestyle buyers are looking for. Enjoy direct views of Aspen Mountain from both the living room and kitchen, creating a stunning backdrop year-round.\r\n\r\nThe open-concept kitchen is designed for both entertaining and everyday comfort, featuring quartz countertops, a breakfast bar, dining for four, and high-end designer appliances. The living area is centered around a quartz-surround gas fireplace, offering a warm and inviting space to unwind after a day on the slopes. Heated floors run throughout the residence, and custom-built cabinetry in every room provides thoughtful storage with a clean, modern aesthetic.\r\n\r\nThe condo comfortably accommodates five guests with a spacious primary suite offering a king bed and private balcony nestled among the trees, a second bedroom with a split king, and a queen sleeper sofa in the living room for added flexibility.\r\n\r\nLocated in the desirable Le Clairvaux complex, the property includes off-street parking with 1 assigned space, and exceptional walkability to skiing, dining, shopping, and nightlife. STR Permit #068114", + "features": [ + "Washer / Dryer in Unit", + "Air Conditioning", + "Pet Friendly" + ], + "property_facts": { + "Status": "Active", + "MLS #": "191947", + "Days on Market": "180", + "Taxes": "$7,488 / year", + "HOA Fees": "$5,517 / quarter", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1965", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "No", + "Property Faces": "South", + "Style": "Other, Ranch", + "Furnished": "Furnished", + "Sub/Loc": "Le Clairvaux" + }, + "agent": { + "name": "Judd Clarence", + "email": "judd.clarence@compass.com", + "telephone": "9706881804" + } + }, + "2039960093113405161": { + "listing_id": "2039960093113405161", + "source_url": "https://www.compass.com/homedetails/131-Mt-Vernon-St-Unit-2-Boston-MA-02108/1Z91PH_pid/", + "retrieved_at": "2026-09-06T03:40:15.897286+00:00", + "html_sha256": "69c19d1aed8b52415745e93e1a5824e17bd909898f84187d4f45687acd4b0b62", + "price": 2995000, + "address": "131 Mt Vernon Street, Unit 2", + "unit": "2", + "city": "Boston", + "state": "MA", + "zip": "02108", + "neighborhood": "Beacon Hill", + "latitude": 42.35775, + "longitude": -71.071046, + "beds": 4, + "baths_full": 3, + "baths_half": 0, + "baths_total": 3, + "sqft": 2183, + "property_type": "Condo", + "year_built": 1890, + "mls_number": "73517422", + "status_text": "Active", + "days_on_market": 115, + "listed_at_ms": 1778644800000, + "description": "Located on the desirable “Flat” of Beacon Hill at the corner of Charles and Mt Vernon Streets, 131 Mt Vernon Street, Unit 2 offers a rare opportunity to own a distinctive Beacon Hill residence that lives like a single-family home with a direct access, private front entrance and two private outdoor spaces. This bright, sun-filled home offers four bedrooms, three full bathrooms, expansive living and dining spaces and two private decks. Set within a professionally maintained, self-managed five-unit association, this is a unique chance to enjoy classic Beacon Hill living with the space, layout and feel of a single-family home in an unbeatable location.", + "features": [ + "Washer / Dryer in Unit", + "Laundry in Building", + "Air Conditioning", + "Forced Air", + "Common Outdoor Space", + "Private Outdoor Space", + "Pets Conditional" + ], + "property_facts": { + "Status": "Active", + "MLS #": "73517422", + "Days on Market": "115", + "Taxes": "$34,559 / year", + "HOA Fees": "$564", + "Property Type": "Condo", + "MLS Type": "Condominium/Co-Op / Condo", + "Year Built": "1890", + "County": "Suffolk County" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "Beacon Hill", + "Area": "MA-Boston-Beacon Hill, MA-Boston", + "Style": "Rowhouse", + "Garage Spaces": "0", + "Open Parking Spaces": ".00", + "Parking Spaces Total": "0", + "Unit Placement": "Middle" + }, + "agent": { + "name": "Kevin Caulfield", + "email": "kcaulfield@compass.com", + "telephone": "6175013685" + } + }, + "2044075882472469257": { + "listing_id": "2044075882472469257", + "source_url": "https://www.compass.com/homedetails/420-Mission-Bay-Blvd-N-Unit-120-San-Francisco-CA-94158/1OZVW1_pid/", + "retrieved_at": "2026-09-06T03:46:38.152561+00:00", + "html_sha256": "796ba6c8d79fb293906ee27725cd2dadb0d2d66465546a318c831a7866e83746", + "price": 899000, + "address": "420 Mission Bay Boulevard North, Unit 120", + "unit": "120", + "city": "San Francisco", + "state": "CA", + "zip": "94158", + "neighborhood": "Mission Bay", + "latitude": 37.7715936, + "longitude": -122.3885893, + "beds": 1, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 928, + "property_type": "Condo", + "year_built": 2012, + "mls_number": "426105057", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Welcome to Madrone Residence #120, a rare opportunity to own a thoughtfully designed one-bedroom, one-bathroom home in one of Mission Bay's most desirable luxury communities. This inviting residence features an open-concept floor plan that maximizes space and natural light, creating a comfortable environment for both everyday living and entertaining. One of the home's most unique features is its private gated entrance, allowing direct outdoor accessperfect for dog owners, morning walks, or simply enjoying the convenience of stepping outside without entering the main lobby. Situated near Mission Bay's beautifully landscaped greenways and parks, the residence offers an ideal blend of urban living and outdoor accessibility. Inside, the home showcases hardwood flooring throughout the living and kitchen areas, adding warmth and elegance to the space. The well-designed layout provides ample room for living and dining, while multiple closets offer exceptional storage rarely found in a one-bedroom residence. The home also includes one car parking space and a large private storage unit, providing both convenience and functionality. Living at Madrone means enjoying a true resort-style lifestyle. Developed by Bosa Development, Madrone is renowned for its impressive collection of luxury amenities designed to elevate everyday living. Residents enjoy access to a heated outdoor swimming pool, spa and jacuzzi, dry and wet saunas, a state-of-the-art fitness center, and beautifully maintained outdoor BBQ and lounge areas. Additional amenities include a business center, conference room, social lounge with billiards, and a private movie theater, creating a community that seamlessly combines comfort, wellness, and entertainment. The location is second to none. Positioned in the heart of Mission Bay, Madrone places residents within walking distance of some of San Francisco's most exciting destinations and employers. Nearby attractions include Chase Center, Oracle Park, and the vibrant waterfront community of Mission Rock. Major employers and institutions such as University of California, San Francisco, Kaiser Permanente, NVIDIA, OpenAI, and Uber are all just minutes away. Residents also enjoy exceptional connectivity throughout the Bay Area. The neighborhood offers convenient access to Highways 101, 280, and 80, as well as Caltrain stations at 4th & King and 22nd Street.", + "features": [ + "Assigned Parking", + "Barbecue Area", + "Bike Room", + "Billiards Room", + "Common Media / Recreation Room", + "Common Outdoor Space", + "Doorman", + "Elevator", + "Full-Time Doorman", + "Game Room", + "Garage", + "Gym", + "Intercom", + "Laundry in Building", + "Lowrise", + "Pet Friendly", + "Pool", + "Private Storage For Rent", + "Private Storage Included", + "Resident's Lounge", + "Screening Room", + "Security System" + ], + "property_facts": { + "Status": "Coming Soon", + "MLS #": "426105057", + "Pet Policy": "Allowed", + "HOA Fees": "$1,261 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "2012", + "County": "San Francisco County" + }, + "regional_facts": { + "Cross Street": "3rd Street" + }, + "agent": { + "name": "Jessie Lee", + "email": "jessie.lee@compass.com", + "telephone": "4155186402" + } + }, + "2045193330521720449": { + "listing_id": "2045193330521720449", + "source_url": "https://www.compass.com/homedetails/2329-N-Cambridge-Ave-Unit-C-Chicago-IL-60614/26M087_pid/", + "retrieved_at": "2026-09-06T03:41:14.734156+00:00", + "html_sha256": "6ffc4449a0579faec23d42d0afe1f6cde287e39f804f6c4edaeffd6136fec17c", + "price": 2100000, + "address": "2329 North Cambridge Avenue, Unit C", + "unit": "C", + "city": "Chicago", + "state": "IL", + "zip": "60614", + "neighborhood": "Lincoln Park", + "latitude": 41.924678360965785, + "longitude": -87.64229123475532, + "beds": 4, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 2930, + "property_type": "Townhouse", + "year_built": 2026, + "mls_number": "12573026", + "status_text": "Active", + "days_on_market": 95, + "listed_at_ms": 1780462800000, + "description": "Phase One 50% sold! Delivery starting in 45 days. Welcome to Cambridge: Lincoln Park's newest luxury rowhome development by renowned builder Ogden Partners and designed by Booth Hansen Architects, known for their exceptional craftsmanship and thoughtfully designed residences. Cambridge offers luxury living in the heart of the city with timeless architecture, refined finishes, and spacious functional layouts designed for modern city living.This beautifully appointed four bedroom residence offers a seamless blend of modern style and everyday comfort. Spanning four thoughtfully designed levels, the home begins with an oversized heated attached garage, welcoming foyer and a spacious bedroom with ensuite bathroom. This space flows directly into a large patio and private fenced yard, providing the perfect setting for outdoor gatherings and relaxation. The main living level showcases an elegant living room filled with natural light, bay window overlooking the landscaped courtyard, and features a sleek floating fireplace. Living room flows seamlessly into the designated dining area, perfect for entertaining. The designer kitchen is a standout, boasting custom cabinetry, quartz island with overhang, quartz backsplash, top-of-the-line appliances, and butler's pantry. Kitchen opens directly into the great room featuring a Juliette balcony, creating an ideal layout for hosting guests or enjoying family time. Powder room completes this level. Third floor offers the spacious primary bedroom which features a walk-in closet and spa-like bathroom with double sinks and large shower. Two additional bedrooms, additional full bathroom, and laundry room complete this floor. Fourth floor offers a spacious rec room with wet bar, storage and opens directly to the private roof terrace equipped with electric. Cambridge offers a rare opportunity to own a brand-new luxury rowhome in one of Chicago's most desirable neighborhoods, built by one of the city's premier luxury developers and designed to deliver both elegance and exceptional livability. Experience everything this incredible home has to offer, just steps away from award winning restaurants, top-rated schools, charming shops, scenic parks, convenient public transit and a short walk away from the lakefront trail.", + "features": [ + "Deck", + "Patio", + "Common Roof Deck", + "Garage", + "Automatic Garage Door", + "Heated Garage Parking", + "Attached Parking", + "Shared Driveway", + "Washer / Dryer in Unit", + "Dryer", + "Washer", + "Central AC", + "Dishwasher", + "Microwave", + "Disposal", + "Refrigerator", + "Freezer", + "Range Hood", + "Wet Bar", + "Walk-in Closet", + "Range", + "Fence", + "Pet Friendly", + "Snow Removal Included" + ], + "property_facts": { + "Status": "Active", + "MLS #": "12573026", + "Days on Market": "95", + "HOA Fees": "$175 / month", + "Property Type": "Townhouse", + "MLS Type": "Attached Single / T3-Townhouse 3+ Stories", + "Year Built": "2026", + "Lot Size": "0.02 AC / 1,000 SF", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - Lincoln Park", + "Township": "North Chicago", + "Ownership": "Fee Simple w/ HO Assn.", + "Num Of Garage Spaces": "1.0", + "Num Of Parking Spaces": "1.0", + "Parking Included in Price": "Yes", + "Air Conditioning Type": "Central Air", + "Num of Interior Fireplaces": "1", + "Heat/Fuel": "None", + "Pets Allowed": "Yes" + }, + "agent": { + "name": "Jeff Lowe", + "email": "jeff.lowe@compass.com", + "telephone": "3123391133" + } + }, + "2045193417050253617": { + "listing_id": "2045193417050253617", + "source_url": "https://www.compass.com/homedetails/2329-N-Cambridge-Ave-Unit-G-Chicago-IL-60614/26M089_pid/", + "retrieved_at": "2026-09-06T03:41:16.861708+00:00", + "html_sha256": "5a710df564cca784fdcb4b7d68230a17607952ce63093be22b7edd379ee254ec", + "price": 1950000, + "address": "2329 North Cambridge Avenue, Unit G", + "unit": "G", + "city": "Chicago", + "state": "IL", + "zip": "60614", + "neighborhood": "Lincoln Park", + "latitude": 41.924678360965785, + "longitude": -87.64229123475532, + "beds": 3, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 2915, + "property_type": "Townhouse", + "year_built": 2026, + "mls_number": "12573046", + "status_text": "Pending", + "days_on_market": 42, + "listed_at_ms": 1780462800000, + "description": "Phase One 50% sold! Delivery starting in 45 days. Welcome to Cambridge: Lincoln Park's newest luxury rowhome development by renowned builder Ogden Partners and designed by Booth Hansen Architects, known for their exceptional craftsmanship and thoughtfully designed residences. Cambridge offers luxury living in the heart of the city with timeless architecture, refined finishes, and spacious functional layouts designed for modern city living. This beautifully appointed three bedroom residence offers a seamless blend of modern style and everyday comfort. Spanning four thoughtfully designed levels, the home begins with the oversized heated attached garage, welcoming foyer and a spacious bedroom with ensuite bathroom. This space flows directly into a large patio and private fenced yard, providing the perfect setting for outdoor gatherings and relaxation. The main living level showcases an elegant living room filled with natural light, bay window overlooking the landscaped courtyard, and features a sleek floating fireplace. Living room flows seamlessly into the designated dining area, perfect for entertaining. The designer kitchen is a standout, boasting custom cabinetry, quartz island with overhang, quartz backsplash, top-of-the-line appliances, and butler's pantry. Kitchen opens directly into the great room featuring a Juliette balcony, creating an ideal layout for hosting guests or enjoying family time. Powder room completes this level. Third floor offers the spacious primary bedroom which features 2 walk-in closets and spa -like bathroom with double sinks, shower and separate soaking tub. Additional bedroom with ensuite bathroom and laundry room complete this floor. Fourth floor offers a spacious rec room with wet bar, storage and opens directly to the private roof terrace equipped with electric. Cambridge offers a rare opportunity to own a brand-new luxury rowhome in one of Chicago's most desirable neighborhoods, built by one of the city's premier luxury developers and designed to deliver both elegance and exceptional livability. Experience everything this incredible home has to offer, just steps away from award winning restaurants, top-rated schools, charming shops, scenic parks, convenient public transit and a short walk away from the lakefront trail.", + "features": [ + "Deck", + "Patio", + "Common Roof Deck", + "Garage", + "Automatic Garage Door", + "Heated Garage Parking", + "Attached Parking", + "Shared Driveway", + "Washer / Dryer in Unit", + "Dryer", + "Washer", + "Central AC", + "Electric Heat", + "Dishwasher", + "Microwave", + "Disposal", + "Refrigerator", + "Freezer", + "Range Hood", + "Fireplace", + "Range", + "Pet Friendly", + "Snow Removal Included" + ], + "property_facts": { + "Status": "Pending", + "MLS #": "12573046", + "Days on Market": "42", + "HOA Fees": "$175 / month", + "Property Type": "Townhouse", + "MLS Type": "Attached Single / T3-Townhouse 3+ Stories", + "Year Built": "2026", + "Lot Size": "0.02 AC / 1,000 SF", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - Lincoln Park", + "Township": "North Chicago", + "Ownership": "Fee Simple w/ HO Assn.", + "Num Of Garage Spaces": "1.0", + "Num Of Parking Spaces": "1.0", + "Parking Included in Price": "Yes", + "Air Conditioning Type": "Central Air", + "Num of Interior Fireplaces": "1", + "Heat/Fuel": "Electric, Zoned", + "Pets Allowed": "Yes" + }, + "agent": { + "name": "Jeff Lowe", + "email": "jeff.lowe@compass.com", + "telephone": "3123391133" + } + }, + "2049572693447448697": { + "listing_id": "2049572693447448697", + "source_url": "https://www.compass.com/homedetails/610-S-W-End-St-Unit-D201-Aspen-CO-81611/LRC2A_pid/", + "retrieved_at": "2026-09-06T03:39:13.706846+00:00", + "html_sha256": "bb51b73773d7bd50c9f1c1a19bd2e8656bef6009d4274a2ed6f14d31262eee02", + "price": 4795000, + "address": "610 South W End Street, Unit D201", + "unit": "D201", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Aspen Central Core", + "latitude": 39.1846705, + "longitude": -106.8136639, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1052, + "property_type": "Condo", + "year_built": 1972, + "mls_number": "191813", + "status_text": "Active", + "days_on_market": 191, + "listed_at_ms": 1772064000000, + "description": "This exquisitely Swiss Chalet-inspired two-bedroom condominium, masterfully transformed by renowned interior designer Andrew Brown, commands direct views of Aspen Mountain and embodies refined European elegance. Ideally positioned in Aspen's coveted Central Core, this exceptional, sophisticated design-forward retreat presents a rare opportunity to own a beautifully appointed, impeccably finished, turnkey luxury hotel-quality residence. just a short walk to the gondola and the cultural heart of downtown Aspen.\r\n\r\nThe living area is richly layered with Pierre Frey wallpaper, crystal fireplace logs, and sumptuous textures throughout. Upholstery finished exclusively in solid wool bouclé reinforces a sense of understated opulence. All furnishings and beds were custom designed specifically for the residence, seamlessly blending refined aesthetics with thoughtful functionality, including discreet luggage storage integrated into bespoke beds. The primary suite is a true sanctuary, featuring a hand-sewn sheepskin wall and an antique atelier mirror that add warmth, depth, and rare artisanal character to condominium living.\r\n\r\nWith an acceptable offer, Seller may consider contributing toward a portion of, or the full amount of, the special assessment, to be negotiated and documented in writing.", + "features": [ + "Elevator", + "Doorman", + "Gym", + "Pool", + "Common Outdoor Space", + "Washer / Dryer in Unit", + "Air Conditioning", + "Waterfront", + "Pet Friendly", + "Private Outdoor Space", + "Parking Included" + ], + "property_facts": { + "Status": "Active", + "MLS #": "191813", + "Days on Market": "191", + "Taxes": "$7,710 / year", + "HOA Fees": "$52,164 / year", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1972", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "No", + "Property Faces": "South", + "Furnished": "Furnished", + "Fireplace: # Fireplaces": "1", + "Sub/Loc": "Gant" + }, + "agent": { + "name": "Ashley Efraim", + "email": "ashley.efraim@compass.com", + "telephone": "2066617098" + } + }, + "2049586279368920025": { + "listing_id": "2049586279368920025", + "source_url": "https://www.compass.com/homedetails/1542-15th-St-San-Francisco-CA-94103/1R90JV_pid/", + "retrieved_at": "2026-09-06T03:46:38.410614+00:00", + "html_sha256": "d172cae08e7bb511b0d5c1f7e92be1bd05827224cd10c0fa0bba95179fac4968", + "price": 1295000, + "address": "1542 15th Street", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94103", + "neighborhood": "Inner Mission", + "latitude": 37.766958, + "longitude": -122.41862, + "beds": 3, + "baths_full": 1, + "baths_half": 1, + "baths_total": 1.5, + "sqft": 1380, + "property_type": "Condo", + "year_built": 1906, + "mls_number": "426107614", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Perched on the top floor of a classic San Francisco Edwardian, this beautifully remodeled, spacious 3 bedroom, 1.5 bath condo blends period charm with modern updates. Soaring high ceilings, rich hardwood floors, original architectural details, and a stunning double parlor create a warm, light-filled home that's hard to find at any price. The extensively updated kitchen features granite countertops, stainless steel appliances, and maple cabinetry, opening directly to a private redwood deck perfect for morning coffee or evening entertaining. A formal dining room, elegant bay windows, cozy fireplace, and thoughtful built-ins throughout give this home a character that new construction simply can't replicate. Additional highlights include a large private storage room, and one-car parking and W/D in the unit rare finds in this part of the city. All of this just steps from the best of the Mission and Valencia corridor world-class restaurants, cafes, boutiques, and nightlife right outside your door, with quick access to BART, Muni, and the 101/280/80 freeways.", + "features": [ + "Garage", + "Parking Included" + ], + "property_facts": { + "Status": "Coming Soon", + "MLS #": "426107614", + "HOA Fees": "$350 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1906", + "County": "San Francisco County" + }, + "regional_facts": { + "Parking Features": "Garage Faces Front, Independent, On Site", + "Cross Street": "Natoma", + "Total Parking Spaces": "1" + }, + "agent": { + "name": "Andreas Ernst", + "email": "andreas.ernst@compass.com", + "telephone": "4154098247" + } + }, + "2049595231070769025": { + "listing_id": "2049595231070769025", + "source_url": "https://www.compass.com/homedetails/730-Twining-Flats-Rd-Aspen-CO-81611/LTPYR_pid/", + "retrieved_at": "2026-09-06T03:39:15.397376+00:00", + "html_sha256": "d80035f643e8d1a5ddf3e71cf0d4670244a6b352f0b0779a54481de8729c2676", + "price": 8500000, + "address": "730 Twining Flats Road", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Woody Creek", + "latitude": 39.2771655, + "longitude": -106.8928543, + "beds": 3, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 4992, + "property_type": "Single Family", + "year_built": 1997, + "mls_number": "191820", + "status_text": "Active", + "days_on_market": 191, + "listed_at_ms": 1772064000000, + "description": "Nestled on two lush acres along the picturesque Roaring Fork River, 730 Twining Flats Road offers an unparalleled riverside living experience. This magnificent property boasts a perfect blend of privacy and convenience, with a prime location just 10 minutes from Aspen and Snowmass. Upon arrival, the private and peaceful setting with lush landscaping and the soothing sounds of the river welcomes you to this exquisite riverside property. This setting sets the stage for the surreal outdoor settings that await. A grand two-story foyer with a custom wood door greets you, setting the stage for the luxurious interior that lies ahead with stone floors, floor-to-ceiling windows, and a circular staircase with wrought iron railing, creating an elegant prelude. \r\n\r\nVoluminous windows throughout the home capture the serene river setting, while the expansive patio and fire pit provide the perfect spot to embrace the tranquility of the outdoor space. The sunroom captures the serene river setting with stone, high wood ceilings, and wood beams, creating a truly enchanting space. The open floor plan seamlessly connects the expansive kitchen to the dining area, offering al fresco dining options overlooking the river. The kitchen has two center islands - one with bar seating, a six-burner Wolfe range with griddle, abundant storage, and a butler pantry with refrigerator and freezer, cooktop, sink, and dishwasher. There's also a sitting area off the kitchen with a river rock gas fireplace.\r\n\r\nAs you ascend to the upper level, a loft seating area with vaulted ceilings and built-ins awaits. This space is perfect for unwinding and taking in the breathtaking surroundings. The primary bedroom, situated on the second floor, boasts a private deck overlooking the river, providing a serene backdrop to wake up to. The spacious dressing room, vast primary closet, and a 5-piece bathroom featuring a large vanity\r\nand dual sinks ensure both luxury and functionality. Additionally, a workout room with vaulted ceilings, built-in speakers, and access to a private deck completes this exceptional space.\r\n\r\nAdditionally, this exceptional property features two guest suites on the main level, each with unique access to outdoor living spaces, ensuring secluded living spaces for all. The finished garage, storage shed, mud room with elevator, and well-equipped laundry room further enhance the convenience and practicality of this riverside retreat. With its exquisite architecture and an idyllic location perfectly capturing the essence of riverside living, 730 Twining Flats Road beckons you to indulge in the unique life experience along the Roaring Fork River.", + "features": [ + "Washer / Dryer in Unit", + "Air Conditioning", + "Waterfront", + "Private Outdoor Space" + ], + "property_facts": { + "Status": "Active", + "MLS #": "191820", + "Days on Market": "191", + "Taxes": "$20,387 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family", + "Year Built": "1997", + "Lot Size": "2.00 AC / 87,120 SF", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "No", + "Style": "Split Level", + "Furnished": "Unfurnished", + "Sub/Loc": "Twining Flats" + }, + "agent": { + "name": "Doug Leibinger", + "email": "doug@compass.com", + "telephone": "9703799045" + } + }, + "2050412430891064289": { + "listing_id": "2050412430891064289", + "source_url": "https://www.compass.com/homedetails/Jackson-St-San-Francisco-CA-94118/2050412430891064289_lid/", + "retrieved_at": "2026-09-06T03:46:40.289575+00:00", + "html_sha256": "23188c642eab97e57ecdfae47be037d9d429e709b5c8c62a8f63863587995a8d", + "price": null, + "address": "Jackson Street", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94118", + "neighborhood": "Presidio Heights", + "latitude": null, + "longitude": null, + "beds": 7, + "baths_full": 5, + "baths_half": 2, + "baths_total": 6, + "sqft": null, + "property_type": "", + "year_built": null, + "mls_number": "", + "status_text": "Canceled", + "days_on_market": null, + "listed_at_ms": null, + "description": "", + "features": [], + "property_facts": {}, + "regional_facts": {}, + "agent": null + }, + "2052487366618989937": { + "listing_id": "2052487366618989937", + "source_url": "https://www.compass.com/homedetails/2006-Mountain-View-Rd-Austin-TX-78703/1F5N36_pid/", + "retrieved_at": "2026-09-06T03:39:36.669549+00:00", + "html_sha256": "97b2411531c017342347f6f96f32d63d59801809b94a1fb140273f7768eeae3c", + "price": 6499000, + "address": "2006 Mountain View Road", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78703", + "neighborhood": "Tarrytown", + "latitude": 30.296631, + "longitude": -97.772297, + "beds": 7, + "baths_full": 7, + "baths_half": 1, + "baths_total": 7.5, + "sqft": 5370, + "property_type": "Single Family", + "year_built": 2026, + "mls_number": "3827407", + "status_text": "Active", + "days_on_market": null, + "listed_at_ms": null, + "description": "Welcome to 2006 Mountain View Road — a striking architectural statement in the heart of Tarrytown. Thoughtfully built by award-winning OTTO Design Build with interiors in collaboration with acclaimed designer Jessica McIntyre, this newly constructed estate blends timeless materials with refined contemporary detailing across approximately 5,370 SF.\n\nA dramatic sweeping staircase anchors the foyer, framed by clean sightlines and expansive glazing that draws natural light throughout the home. The floorplan balances openness and privacy, creating seamless flow between gathering spaces while offering intentional separation where desired. Main living areas are defined by generous ceiling heights, hardwood flooring, and layered architectural detailing. The chef’s kitchen serves as a design focal point, featuring premium appliances, custom cabinetry, and a layout equally suited for everyday living and elevated entertaining. Adjacent dining and living spaces connect effortlessly to the outdoors. The residence includes seven bedrooms and seven and a half bathrooms, including a detached pool house and private guest casita, providing flexibility for guests, multigenerational living, or creative workspace.\n\nPrivately positioned within its own dedicated corridor, the entire primary suite wing functions as a luxurious retreat, offering expansive quarters and closet, a spa-inspired bath and a sense of calm.\n\nThe lower level enhances the lifestyle experience with a media room, fitness studio, sauna, & relaxation lounge — integrating wellness into the home’s architectural design. A resort-style pool anchors the expansive lot, complemented by multiple seating areas beneath mature trees. Located in one of Austin’s most cherished neighborhoods, the property offers proximity to parks, trails, top-rated schools, and central Austin’s vibrant dining and cultural scene.\n\nAnticipated Completion: Summer 2026\nPre-completion pricing subject to adjustment.\nFinishes subject to change", + "features": [ + "Air Conditioning", + "Balcony", + "Below Ground Pool", + "Breakfast Bar", + "Cabana", + "Ceiling Fan", + "Central AC", + "Central Heating", + "Chandeliers", + "Covered Parking", + "Dishwasher", + "Disposal", + "Electric Dryer Hookup", + "Fireplace", + "Foyer", + "Garage", + "Hardwood Floors", + "Heated Pool", + "High Ceilings", + "Pantry", + "Pool", + "Pool House", + "Porch", + "Private Outdoor Space", + "Private Pool", + "Private Yard", + "Range", + "Range Hood", + "Recessed Lighting", + "Refrigerator", + "Sauna", + "Soaking Tub", + "Tile Floors", + "Walk-in Closet", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Active", + "MLS #": "3827407", + "Taxes": "$24,525 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "2026", + "Lot Size": "0.23 AC / 10,071 SF", + "County": "Travis County" + }, + "regional_facts": { + "Subdivision Name": "Tarry Town 03", + "Waterfront": "No", + "Waterfront Description": "None", + "Water Access Description": "Public", + "View": "None", + "View YN": "No", + "Parcel Number": "01170711070000", + "Tax Lot": "118", + "Elementary School": "Casis", + "Elementary School District": "Austin ISD", + "Middle Or Junior School": "O Henry", + "Middle Or Junior School District": "Austin ISD", + "Senior High School": "Austin", + "High School District": "Austin ISD", + "Levels": "Three Or More", + "Master on Main": "Yes", + "Main Level Bedrooms": "2", + "Num Living": "4", + "Living Area Source": "Plans", + "Year Built Source": "PublicRecords", + "Pool Private": "Yes", + "Pool Features": "Gunite, Heated, In Ground, Outdoor Pool, Pool/Spa Combo" + }, + "agent": { + "name": "Mike Mogavero", + "email": "mike.mogavero@compass.com", + "telephone": "5125806580" + } + }, + "2053405737774603969": { + "listing_id": "2053405737774603969", + "source_url": "https://www.compass.com/homedetails/3206-Morrison-St-NW-Washington-DC-20015/1TDAGQ_pid/", + "retrieved_at": "2026-09-06T03:48:12.055474+00:00", + "html_sha256": "b63f05e1f0ecebc00f7447f3e7aed5ae3b26387ace220937ea9fa9b4cbb54a83", + "price": 3150000, + "address": "3206 Morrison Street Northwest", + "unit": "", + "city": "Washington", + "state": "DC", + "zip": "20015", + "neighborhood": "Chevy Chase DC", + "latitude": 38.9638324, + "longitude": -77.0646987, + "beds": 5, + "baths_full": 5, + "baths_half": 1, + "baths_total": 5.5, + "sqft": 5000, + "property_type": "Single Family", + "year_built": 1925, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Step into timeless elegance with this stunning 1925 Spanish Revival Colonial, currently undergoing an extraordinary renovation and expansion by the renowned Dogwood Restoration. Perfectly positioned in the coveted heart of Chevy Chase and within the sought-after Lafayette school cluster, this home seamlessly blends classic charm with modern luxury.\n\nThe main level is designed for effortless living and entertaining, featuring an expansive chef’s kitchen, a formal dining room, a spacious living room, a cozy family room, a private office, and a stylish powder room. Upstairs, you’ll find four generously sized bedrooms, including a serene primary suite, along with a convenient second-level laundry room and three beautifully designed baths that exude spa-like sophistication.\n\nThe lower level offers a versatile retreat, with a large recreation room complete with a chic wet bar, an additional bedroom, and a full bath—perfect for guests or an au pair. A rare attached two-car garage adds convenience, while the expansive backyard offers endless possibilities for outdoor gatherings, gardening, or simply relaxing in your own private oasis.\n\nAll this, just blocks from Lafayette Elementary School and Park, as well as the charming Broad Branch Market. This home isn’t just a place to live—it’s a lifestyle, offering the perfect blend of community, convenience, and luxury. Don't miss the chance to make it yours!", + "features": [ + "Dryer", + "Washer", + "Central AC", + "Air Conditioning", + "Marble Bathroom", + "Double Sink Bathroom", + "Fireplace", + "Hardwood Floors", + "Walk-in Closet", + "Basement", + "Primary Ensuite with Separate Shower", + "Primary Ensuite with Separate Tub" + ], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Single Family", + "MLS Type": "Residential / Fee Simple", + "Year Built": "1925", + "County": "District of Columbia" + }, + "regional_facts": { + "Ownership": "Fee Simple", + "Structure Type": "Detached", + "Style": "Spanish, Colonial", + "Levels/Stories": "Tri-Level", + "Subdivision": "CHEVY CHASE (WASHINGTON DC)", + "Total Parking Spaces": "4", + "Central Air": "Yes", + "Basement": "Yes", + "Above Grade Finished SQFT": "5,000.00", + "New Construction": "No", + "Property Condition": "Excellent" + }, + "agent": { + "name": "Jennifer Knoll", + "email": "jennifer.knoll@compass.com", + "telephone": "2024412301" + } + }, + "2053518968379535417": { + "listing_id": "2053518968379535417", + "source_url": "https://www.compass.com/homedetails/2145-Franklin-St-Unit-1-San-Francisco-CA-94109/18ZHPC_pid/", + "retrieved_at": "2026-09-06T03:46:41.333774+00:00", + "html_sha256": "7d56fe83826a935292847648b26528b6664f85c727526a1f12d77be7312c392f", + "price": 1477000, + "address": "2145 Franklin Street, Unit 1", + "unit": "1", + "city": "San Francisco", + "state": "CA", + "zip": "94109", + "neighborhood": "Pacific Heights", + "latitude": 37.79435470000001, + "longitude": -122.4250422, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1700, + "property_type": "Condo", + "year_built": 1917, + "mls_number": "426115571", + "status_text": "Closed", + "days_on_market": 13, + "listed_at_ms": 1780038000000, + "description": "Elegant 2BD, 2BA residence in a secure 7-unit historic Pacific Heights building, ideally positioned near the borders of Russian Hill and Polk Gulch. Just moments from Polk, Union, and Fillmore Streets, this home places boutiques, dining, nightlife, and cafes right at your doorstep. Located on the first floor with minimal stairs, the residence offers convenient access for full-time living or as a refined pied-a-terre. Classic San Francisco character pairs beautifully with modern updates, including hardwood floors and a spacious open living and dining area designed for comfortable everyday living and entertaining. The large eat-in kitchen features quartz countertops, high-end appliances, ample cabinetry, and a stylish, functional layout ideal for cooking, hosting, and gathering. The ensuite primary bedroom offers dual built-in closets and an updated bath with a clawfoot tub, granite-enclosed shower with dual shower heads, single vanity, and tiled floor. A central family room separates the bedrooms, adding privacy, flexibility, and an additional space to relax, work, or unwind. Off the hall, a flexible storage room currently functions as the adjacent bedroom's closet, while the guest bath includes a standing shower and a closet with stackable washer/dryer. With timeless character, thoughtful updates, and one of San Francisco's most beloved neighborhood corridors just outside your door, this Pacific Heights residence offers the perfect blend of classic charm, city convenience, and everyday elegance.", + "features": [ + "Disposal", + "Fireplace", + "Pet Friendly", + "Tile Floors", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "426115571", + "Days on Compass": "13", + "Pet Policy": "Allowed", + "HOA Fees": "$1,200 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1917", + "County": "San Francisco County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Directions to Property": "Corner of Franklin and Pacific", + "Cross Street": "Pacific Ave" + }, + "agent": { + "name": "David Juarez", + "email": "davidjuarez@compass.com", + "telephone": "4157139705" + } + }, + "2053924700174731745": { + "listing_id": "2053924700174731745", + "source_url": "https://www.compass.com/homedetails/3770-Kumquat-Ave-Miami-FL-33133/1C8HD6_pid/", + "retrieved_at": "2026-09-06T03:44:31.284802+00:00", + "html_sha256": "29aaa94aed8fadf9fdef4290ec0d6d9d1c22864f2ab45228bc9d745ca1176a58", + "price": 4950000, + "address": "3770 Kumquat Avenue", + "unit": "", + "city": "Miami", + "state": "FL", + "zip": "33133", + "neighborhood": "South Grove", + "latitude": 25.7241259, + "longitude": -80.254493, + "beds": 5, + "baths_full": 5, + "baths_half": 2, + "baths_total": 6, + "sqft": 3875, + "property_type": "Single Family", + "year_built": 2018, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Spectacular modern residence offering 3,875 total square feet of living area, featuring 5 bedrooms, 5 full bathrooms, and 2 half bathrooms, set on a tranquil, tree-lined street in the heart of Coconut Grove. This 2018 new construction showcases expansive open living spaces, double-height ceilings, and floor-to-ceiling high-impact windows that flood the home with natural light. The sleek, minimalist kitchen is designed for both style and function. Upstairs, the luxurious primary suite features a private wet bar and additional den or office space. All bedrooms include en-suite bathrooms and extended balconies overlooking lush Grove greenery. Outdoors, enjoy a covered terrace and heated pool ideal for entertaining, as well as a fully functioning roof deck finished with artificial turf, covered area, and utilities to add a summer kitchen, hot tub, or other special amenities. A rare opportunity to enjoy a luxury lifestyle with added privacy and space in one of Miami’s most desirable neighborhoods.", + "features": [ + "Balcony", + "Private Roof Deck", + "Heated Pool", + "Below Ground Pool", + "Library / Den", + "Dryer", + "Washer", + "Central AC", + "Dishwasher", + "Refrigerator", + "Wall Oven", + "Double Sink Bathroom", + "Floor to Ceiling Windows", + "Window Treatments", + "Built-Ins", + "High Ceilings", + "Ceramic Floors", + "Tile Floors", + "Recessed Lighting", + "Chandeliers", + "Walk-in Closet", + "Custom Closet", + "Primary Ensuite with Separate Tub", + "Central Heating", + "Primary Ensuite", + "Freezer", + "Island Kitchen", + "Stove", + "Laundry Room", + "Awnings", + "Lighting", + "Security System" + ], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Single Family", + "Year Built": "2018", + "Lot Size": "0.16 AC / 7,150 SF", + "County": "Miami-Dade County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Waterfront": "No", + "Area": "41", + "Sq Ft Liv Area": "3875.0" + }, + "agent": { + "name": "Brett Eaglstein", + "email": "brett.eaglstein@compass.com", + "telephone": "3056998050" + } + }, + "2053924822858538897": { + "listing_id": "2053924822858538897", + "source_url": "https://www.compass.com/homedetails/3770-3792-Kumquat-Ave-Miami-FL-33133/26PT5K_pid/", + "retrieved_at": "2026-09-06T03:44:32.332474+00:00", + "html_sha256": "376ed629893aaaec5156f0ca869af26a61547705f5854589ab2bda6ebf4e1c84", + "price": 6495000, + "address": "3770-3792 Kumquat Avenue", + "unit": "", + "city": "Miami", + "state": "FL", + "zip": "33133", + "neighborhood": "South Grove", + "latitude": 25.7240949, + "longitude": -80.2544918, + "beds": 5, + "baths_full": 5, + "baths_half": 2, + "baths_total": 6, + "sqft": 3875, + "property_type": "Single Family", + "year_built": null, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Combined offering of 3770 Kumquat Ave and 3792 Kumquat Ave, presenting a rare opportunity to own a modern residence along with the adjacent vacant lot for added privacy and potential. The vacant lot at 3792 Kumquat spans 7,150 square feet, while 3770 Kumquat Ave is also available for individual purchase.\n\nSpectacular modern residence offering 3,875 total square feet of living area, featuring 5 bedrooms, 5 full bathrooms, and 2 half bathrooms, set on a tranquil, tree-lined street in the heart of Coconut Grove. This 2018 new construction showcases expansive open living spaces, double-height ceilings, and floor-to-ceiling high-impact windows that flood the home with natural light. The sleek, minimalist kitchen is designed for both style and function. Upstairs, the luxurious primary suite features a private wet bar and additional den or office space. All bedrooms include en-suite bathrooms and extended balconies overlooking lush Grove greenery. Outdoors, enjoy a covered terrace and heated pool ideal for entertaining, as well as a fully functioning roof deck finished with artificial turf, covered area, and utilities to add a summer kitchen, hot tub, or other special amenities. \n\nAn exceptional opportunity to enjoy modern luxury with the flexibility of additional land in one of Miami’s most desirable neighborhoods.", + "features": [ + "Balcony", + "Private Roof Deck", + "Heated Pool", + "Below Ground Pool", + "Library / Den", + "Dryer", + "Washer", + "Central AC", + "Dishwasher", + "Refrigerator", + "Wall Oven", + "Double Sink Bathroom", + "Floor to Ceiling Windows", + "Window Treatments", + "Built-Ins", + "High Ceilings", + "Ceramic Floors", + "Tile Floors", + "Recessed Lighting", + "Chandeliers", + "Walk-in Closet", + "Custom Closet", + "Primary Ensuite with Separate Tub", + "Central Heating", + "Primary Ensuite", + "Freezer", + "Island Kitchen", + "Stove", + "Laundry Room", + "Awnings", + "Lighting", + "Security System" + ], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Single Family", + "County": "Miami-Dade County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Waterfront": "No", + "Area": "41", + "Sq Ft Liv Area": "3875.0" + }, + "agent": { + "name": "Brett Eaglstein", + "email": "brett.eaglstein@compass.com", + "telephone": "3056998050" + } + }, + "2053942360426125497": { + "listing_id": "2053942360426125497", + "source_url": "https://www.compass.com/homedetails/2720-N-Ashland-Ave-Unit-2S-Chicago-IL-60614/26PX1S_pid/", + "retrieved_at": "2026-09-06T03:41:18.616441+00:00", + "html_sha256": "8cab0da35c5a26fb67b177b13f0c9daa25dd8b4cc5bf94aa22f46b58e6bb06c7", + "price": 850000, + "address": "2720 North Ashland Avenue, Unit 2S", + "unit": "2S", + "city": "Chicago", + "state": "IL", + "zip": "60614", + "neighborhood": "Lincoln Park", + "latitude": 41.93122735747244, + "longitude": -87.6687387552013, + "beds": 3, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1650, + "property_type": "Condo", + "year_built": 2026, + "mls_number": "12583263", + "status_text": "Active ( Private )", + "days_on_market": null, + "listed_at_ms": null, + "description": "Presenting this new, extra wide, 6 unit building in Lincoln Park, delivering Fall 2026. This oversized 3 bed /2 bath simplex features a bright open layout with large windows, high ceilings, 8' doors, oak flooring, balcony and custom mudrooms/builtins. Stylish kitchen with Artos Fixtures, Bosch appliances, quartz counters, custom Rift and Bone cabinetry and pantry. Primary suite offers fully built out closets, steam shower, heated floors, and Kohler fixtures. Private outdoor space with porcelain pavers. EV ready garage parking. Concrete between the floors. Steps to Wrightwood Park. Please email for more information. Pictures are of builders most recent project. The units are framed and we can walk through them.", + "features": [ + "Garage", + "Pet Friendly" + ], + "property_facts": { + "Status": "Active ( Private )", + "MLS #": "12583263", + "Pet Policy": "Allowed", + "Property Type": "Condo", + "MLS Type": "Attached Single / Condo", + "Year Built": "2026", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - Lincoln Park", + "Township": "Lake View", + "Ownership": "Condo", + "Num Of Garage Spaces": "1.0", + "Num Of Parking Spaces": "1.0", + "Parking Included in Price": "Yes", + "Pets Allowed": "Yes" + }, + "agent": { + "name": "Tim Sheahan", + "email": "tim.sheahan@compass.com", + "telephone": "7739689889" + } + }, + "2058964874974707001": { + "listing_id": "2058964874974707001", + "source_url": "https://www.compass.com/homedetails/2471-N-Albany-Ave-Chicago-IL-60647/1W17RT_pid/", + "retrieved_at": "2026-09-06T03:41:18.894439+00:00", + "html_sha256": "d2eb913bf8e41acaa8784f1ededd6ccff66ee8b1c751cd1455abcfd7152a8672", + "price": 900000, + "address": "2471 North Albany Avenue", + "unit": "", + "city": "Chicago", + "state": "IL", + "zip": "60647", + "neighborhood": "Logan Square", + "latitude": 41.9263593, + "longitude": -87.70608089999999, + "beds": 0, + "baths_full": null, + "baths_half": null, + "baths_total": 0, + "sqft": null, + "property_type": "Multi Family", + "year_built": null, + "mls_number": "12607136", + "status_text": "Contingent ( Private )", + "days_on_market": 0, + "listed_at_ms": null, + "description": "Beautiful, classic greystone located in the heart of Logan Square! Updated, legal 3 flat oozing character with many original vintage details, large windows, hardwood floors and great natural light. Separate utilities and heat. Peaceful backyard with newer steps, freshly painted and 2 car garage. Wonderful Logan Square neighborhood, close to the park, farmers market, restaurants and shops. Showings begin Monday 4-27.", + "features": [ + "Garage", + "Full Basement" + ], + "property_facts": { + "Status": "Contingent ( Private )", + "MLS #": "12607136", + "Days on Market": "0", + "Property Type": "Multi Family", + "MLS Type": "Two to Four Units", + "County": "Cook County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Area": "CHI - Logan Square", + "Township": "West Chicago", + "Num Of Garage Spaces": "2.0", + "Num Of Parking Spaces": "2.0" + }, + "agent": { + "name": "Stuart Schwartz", + "email": "stuart.schwartz@compass.com", + "telephone": "7739888839" + } + }, + "2059650484278121113": { + "listing_id": "2059650484278121113", + "source_url": "https://www.compass.com/homedetails/1821-N-Milwaukee-Ave-Unit-401-Chicago-IL-60647/1XFY02_pid/", + "retrieved_at": "2026-09-06T03:41:21.786565+00:00", + "html_sha256": "a9c1f550fc3761d254296d426c31c3da4723575932cc6fd909f537c8b9732f1b", + "price": 650000, + "address": "1821 North Milwaukee Avenue, Unit 401", + "unit": "401", + "city": "Chicago", + "state": "IL", + "zip": "60647", + "neighborhood": "Bucktown", + "latitude": 41.9145943, + "longitude": -87.6835636, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1445, + "property_type": "Condo", + "year_built": 2006, + "mls_number": "12590742", + "status_text": "Active ( Private )", + "days_on_market": null, + "listed_at_ms": null, + "description": "Elevate your lifestyle in this exquisite top-floor condo, nestled within a boutique Bucktown building. This 2-bedroom, 2-bathroom residence is a masterclass in modern luxury, where thoughtful upgrades and premium details create a home that's as functional as it is breathtaking. Step into a luminous haven, where rich Brazilian cherry floors glisten under the natural light, elegant crown molding adds timeless sophistication, and built-in surround sound sets the tone for seamless entertaining or quiet indulgence. At its heart, the kitchen is a culinary sanctuary, boasting freshly painted cabinetry, a sleek new backsplash, polished stone countertops, and state-of-the-art stainless steel appliances, including a Grohe faucet for a touch of refinement. The open layout flows effortlessly into the living area, where the building's only fireplace becomes your cozy retreat during chilly Chicago evenings. The primary suite is a celebration of elevated design, featuring custom molding, bespoke cabinetry, and an en-suite bathroom that rivals a luxury spa. Here, marble floors, a striking accent wall, and chic modern updates create a space of serene sophistication. The second bedroom, equally inviting, has been rejuvenated with custom details and a fresh palette, offering comfort and style in equal measure. Both bathrooms exude luxury, with their stunning marble flooring and meticulous finishes that elevate everyday routines into indulgent escapes. Outdoor living reaches new heights with two private spaces: a cozy front balcony, just the right size for a grill or a quiet chair where you can unwind with a good book, and a spacious rear deck transformed into a city oasis. The rear deck features lounge chairs, a firepit, and plush seating, all with skyline views as your backdrop. Recent updates, including newly installed windows, enhance both energy efficiency and peace of mind, while high-end mechanicals like a Carrier furnace with an Aprilaire humidifier, an AO Smith water heater, and a Whirlpool washer/dryer ensure effortless living. Located just steps from the iconic 606 Trail, this home offers unparalleled access to one of Chicago's most celebrated urban greenways. Enjoy walking, biking, and public art installations along the trail, as well as nearby parks like Walsh Park and Churchill Field Park. The vibrant Milwaukee Avenue corridor is at your doorstep, featuring local favorites like Ipsento 606, Small Cheval, and Margie's Candies, along with boutique shops, yoga studios, and more. Commuting is a breeze with the CTA Blue Line - Western Station just a short walk away. Complete with garage parking, a storage unit, and a prime location in one of Chicago's most vibrant neighborhoods, this home is a rare find for those who demand nothing less than the extraordinary. Your Bucktown sanctuary awaits, don't let it slip away!", + "features": [ + "Balcony", + "Deck", + "Elevator", + "Garage", + "Automatic Garage Door", + "Detached Parking", + "Washer / Dryer in Unit", + "Laundry in Building", + "Central AC", + "Dishwasher", + "Microwave", + "Stainless Steel Appliances", + "Disposal", + "Refrigerator", + "Cooktop", + "Fireplace", + "Hardwood Floors", + "Bike Room", + "Common Storage", + "Walk-in Closet", + "Voice Intercom", + "Pet Friendly", + "Range", + "Washer Hookup", + "Lowrise" + ], + "property_facts": { + "Status": "Active ( Private )", + "MLS #": "12590742", + "Pet Policy": "Allowed", + "Taxes": "$9,122 / year", + "HOA Fees": "$450 / month", + "Property Type": "Condo", + "MLS Type": "Attached Single / Condo", + "Year Built": "2006", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - Logan Square", + "Township": "West Chicago", + "Ownership": "Condo", + "Num Of Garage Spaces": "1.0", + "Num Of Parking Spaces": "1.0", + "Parking Included in Price": "Yes", + "Air Conditioning Type": "Central Air", + "Num of Interior Fireplaces": "1", + "Pets Allowed": "Yes" + }, + "agent": { + "name": "Eli Masud", + "email": "eli.masud@compass.com", + "telephone": "6306974540" + } + }, + "2062482365143339697": { + "listing_id": "2062482365143339697", + "source_url": "https://www.compass.com/homedetails/555-E-Durant-Ave-Unit-2C-Aspen-CO-81611/26YEIR_pid/", + "retrieved_at": "2026-09-06T03:39:19.052027+00:00", + "html_sha256": "ac37de76b65b235ed7d65b2b6187a1dbe6077c2890f14c22b2ee8aea19d18cac", + "price": 6175000, + "address": "555 East Durant Avenue, Unit 2C", + "unit": "2C", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Aspen Central Core", + "latitude": 39.1869153, + "longitude": -106.8186213, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1287, + "property_type": "Condo", + "year_built": 1965, + "mls_number": "192022", + "status_text": "Closed", + "days_on_market": 164, + "listed_at_ms": 1773619200000, + "description": "Rarely available and highly desirable, this two-bedroom, two-bathroom North of Nell condominium is ideally positioned in Aspen's coveted Gondola Plaza. Take in unobstructed views of Aspen Mountain and the Silver Queen Gondola from your private terrace, an iconic front-row seat to Aspen's legendary slopes.\r\n\r\nWith world-class skiing and the vibrant downtown just steps away, the residence delivers the ultimate ski-in/ski-out lifestyle.\r\n\r\nFull on-site management ensures effortless ownership, while its location within Aspen's exclusive lodging district allows unrestricted rentals, offering a rare combination of luxury retreat and premier investment opportunity.", + "features": [ + "Doorman", + "Garage", + "Air Conditioning" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "192022", + "Days on Market": "164", + "Taxes": "$10,973 / year", + "HOA Fees": "$33,235 / year", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1965", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "Yes", + "Property Faces": "South", + "Style": "Contemporary", + "Furnished": "Furnished", + "Fireplace: # Fireplaces": "1", + "Sub/Loc": "North Nell" + }, + "agent": { + "name": "Steven Shane", + "email": "steven.shane@compass.com", + "telephone": "9709486005" + } + }, + "2062615686154056553": { + "listing_id": "2062615686154056553", + "source_url": "https://www.compass.com/homedetails/2720-N-Ashland-Ave-Unit-3S-Chicago-IL-60614/26YFT6_pid/", + "retrieved_at": "2026-09-06T03:41:22.782384+00:00", + "html_sha256": "fdb9704ab978da79b801ea1b91b0ae441119f5d06134659b0dbb7e64bf5912b2", + "price": 950000, + "address": "2720 North Ashland Avenue, Unit 3S", + "unit": "3S", + "city": "Chicago", + "state": "IL", + "zip": "60614", + "neighborhood": "Lincoln Park", + "latitude": 41.93122735747244, + "longitude": -87.6687387552013, + "beds": 3, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1800, + "property_type": "Condo", + "year_built": 2026, + "mls_number": "12593769", + "status_text": "Pending ( Private )", + "days_on_market": 0, + "listed_at_ms": null, + "description": "Presenting this new, extra wide, 6 unit building in Lincoln Park, delivering Fall 2026. This oversized 3 bed /2 bath penthouse features a bright open layout with large windows, high ceilings, 8' doors, oak flooring, balcony, custom mudrooms/builtins dry bar area and an interior staircase to a massive roofdeck with pergola. Stylish kitchen with Artos Fixtures, Bosch appliances, quartz counters andcustom Rift and Bone cabinetry. Primary suite offers fully built out closets, steam shower, heated floors, and Kohler fixtures. Private outdoor space with porcelain pavers. EV ready garage parking. Concrete between the floors. Steps to Wrightwood Park. Please email for more information. Pictures are of builders most recent project. The units are framed and we can walk through them.", + "features": [ + "Garage", + "Pet Friendly" + ], + "property_facts": { + "Status": "Pending ( Private )", + "MLS #": "12593769", + "Days on Market": "0", + "Pet Policy": "Allowed", + "Property Type": "Condo", + "MLS Type": "Attached Single / Condo", + "Year Built": "2026", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - Lincoln Park", + "Township": "Lake View", + "Ownership": "Condo", + "Num Of Garage Spaces": "1.0", + "Num Of Parking Spaces": "1.0", + "Parking Included in Price": "Yes", + "Pets Allowed": "Yes" + }, + "agent": { + "name": "Tim Sheahan", + "email": "tim.sheahan@compass.com", + "telephone": "7739689889" + } + }, + "2063262020096201761": { + "listing_id": "2063262020096201761", + "source_url": "https://www.compass.com/homedetails/4221-Sunnyside-Ave-Los-Angeles-CA-90066/1IVQ4P_pid/", + "retrieved_at": "2026-09-06T03:42:54.898841+00:00", + "html_sha256": "5f681201a07e8d5e4389a4b799abfc56a6f00e2baab00506c22b861c9f07a36f", + "price": 2905000, + "address": "4221 Sunnyside Avenue", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90066", + "neighborhood": "Marina del Rey", + "latitude": 33.9894682, + "longitude": -118.43801, + "beds": 5, + "baths_full": 4, + "baths_half": null, + "baths_total": 4, + "sqft": 2098, + "property_type": "Single Family", + "year_built": 1941, + "mls_number": "SB26100335", + "status_text": "Closed", + "days_on_market": 10, + "listed_at_ms": 1778137200000, + "description": "Built by a designer for the most discerning buyer, a masterclass in organic, warm, contemporary design and effortless California living, this stunningly reimagined 5-bedroom, 4-bath home with/ADU blends elevated finishes with an unmistakable sense of comfort and style. Framed by lush landscaping, mature olive and palm trees, glowing textured glass lighting, and a spacious EV-ready driveway, the home opens to sun-drenched interiors with soaring 10-foot ceilings, expansive windows, and wide plank white oak floors throughout. The designer kitchen is equal parts functional and beautiful, featuring custom white oak cabinetry, porcelain counters and backsplash, champagne bronze accents, and a full suite of brand-new JennAir appliances with built-in refrigeration, while the adjacent dining area stuns with bespoke built-ins, Zellige tile, travertine pulls, and dedicated wine and beverage refrigeration. A sleek gel-fuel fireplace anchors the open-concept living space, while every bedroom offers custom floor-to-ceiling built-in closets and every bath showcases a curated blend of terrazzo, cement, marble, and natural textures with sophisticated gold and champagne finishes. The vaulted primary suite opens directly to the private backyard retreat, complete with an outdoor kitchen featuring honed cement countertops, built-in grill and sink, expansive patio space, and endless potential for a future pool or additional amenities. Completing the property is a beautifully finished studio ADU with full kitchen, retro appliances, white oak shelving, and handcrafted Zellige details — an exceptional extension of the home’s refined yet inviting aesthetic.", + "features": [ + "Washer / Dryer in Unit", + "Air Conditioning", + "Parking Included" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "SB26100335", + "Days on Market": "10", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1941", + "Lot Size": "0.12 AC / 5,414 SF", + "County": "Los Angeles County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "View": "Yes", + "Parking Spaces Total": "2", + "Private Pool": "No", + "Cooling Type": "Central Air, Ductless", + "Total Units": "1.0", + "Building Type": "Detached", + "Lot Size Source": "Assessor", + "Living Area": "2098", + "Assessor Parcel Number": "4230-012-014", + "Property Attached YN": "false", + "Common Walls": "No Common Walls", + "New Construction": "No", + "Stories Total": "1", + "Entry Level": "1", + "Fireplace": "Yes", + "Pool": "No", + "Spa": "No", + "Association": "No", + "Association Fee": "$.00", + "Senior Community": "No", + "Parcel Number": "4230012014", + "Area": "Marina Del Rey (C12)", + "High School District": "Los Angeles Unified", + "Directions": "From Maxella, north on Sunnyside to property." + }, + "agent": { + "name": "Ryan Shaw", + "email": "ryan.shaw@compass.com", + "telephone": "3109634027" + } + }, + "2063568587228404361": { + "listing_id": "2063568587228404361", + "source_url": "https://www.compass.com/homedetails/Brannan-St-San-Francisco-CA-94107/2063568587228404361_lid/", + "retrieved_at": "2026-09-06T03:46:41.639981+00:00", + "html_sha256": "820bfd63cb92dff69d920e58851474dd117880cfb3eaca7495c1f16eec69ea0e", + "price": 1400000, + "address": "Brannan Street", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94107", + "neighborhood": "South Beach", + "latitude": null, + "longitude": null, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1173, + "property_type": "Condo", + "year_built": 2002, + "mls_number": "", + "status_text": "Canceled", + "days_on_market": null, + "listed_at_ms": null, + "description": "Flooded with natural light, this stunning corner unit offers sweeping views from floor-to-ceiling windows that span two walls—capturing San Francisco’s downtown skyline, Twin Peaks, and partial Bay Bridge vistas, day and night. The dramatic open-concept living and dining area flows seamlessly to a private balcony, perfect for relaxing or entertaining against the city backdrop.\n\nThe upscale chef’s kitchen features high-end finishes and appliances. A spacious primary suite offers a custom-designed walk-in closet and a spa-inspired bath adorned with Carrera marble and elegant marble flooring. The second bedroom functions as a guest suite with direct access to the second full bath.\n\nAdditional highlights include hardwood flooring, designer lighting, in-unit washer/dryer, and central air conditioning. Located in The Brannan, South Beach’s premier luxury address, this home includes one deeded parking space and a private storage unit.", + "features": [ + "Assigned Parking", + "Balcony", + "Barbecue Area", + "Bike Room", + "Central AC", + "Common Outdoor Space", + "Common Terrace", + "Concierge", + "Doorman", + "Dual Pane Windows", + "Elevator", + "Full-Time Doorman", + "Garage", + "Gas Stove", + "Granite Kitchen Counter", + "Gym", + "Hardwood Floors", + "Heated Pool", + "Highrise", + "Hot Tub", + "Pool", + "Private Storage For Rent", + "Private Storage Included", + "Security Staff", + "Security System", + "Spa", + "Storage Available", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Canceled", + "Pet Policy": "Allowed", + "Property Type": "Condo", + "Year Built": "2002", + "County": "San Francisco County" + }, + "regional_facts": { + "View Description": "City Lights, City, Bridge(s), Bay" + }, + "agent": { + "name": "Afsaneh (Afi) Valizadeh", + "email": "afi.v@compass.com", + "telephone": "4154951114" + } + }, + "2064114763598202257": { + "listing_id": "2064114763598202257", + "source_url": "https://www.compass.com/homedetails/253-E-Delaware-Pl-Unit-22B-Chicago-IL-60611/1VPBJC_pid/", + "retrieved_at": "2026-09-06T03:41:23.535090+00:00", + "html_sha256": "4fc4c15bdae1c61fd6963f8ce599eda5e0261e88777c5a3a09f19499df93f1be", + "price": 165000, + "address": "253 East Delaware Place, Unit 22B", + "unit": "22B", + "city": "Chicago", + "state": "IL", + "zip": "60611", + "neighborhood": "Downtown Chicago", + "latitude": 41.8990955, + "longitude": -87.6198735, + "beds": 0, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 650, + "property_type": "Condo", + "year_built": 1961, + "mls_number": "12595519", + "status_text": "Closed", + "days_on_market": 39, + "listed_at_ms": 1779858000000, + "description": "Welcome to your new in-town condo. This adorable Streeterville/Gold Coast studio in an unbeatable location offers great natural light with city and lake views from this southeast-facing corner unit on a high floor. Coin laundry is available in the building. This full-service building includes 24-hour door staff, an exercise room, party room, beautifully updated lobby and hallways, and a massive shared rooftop deck with amazing 360-degree views. Garage parking may be available within the building for rent. Perfectly situated close to Northwestern Memorial Hospital, Michigan Avenue, Water Tower, public transit, and both Oak Street and Ohio Street Beaches along with plenty of amazing shopping options. Please note: the owner must occupy the unit for one year before renting. The unit is move-in ready, but at this price point you can also bring your creative ideas to add your special touches and make it yours! Other rental parking options available nearby. 2024 taxes were $2,442.08. Monthly HOA of $505 includes most utilities except electricity (unit $477 and $28 internet/cable). Please view 360 interactive floor plan to get a full appreciation of this great space.", + "features": [ + "Doorman", + "Elevator", + "Garage", + "Heated Garage Parking", + "Attached Parking", + "Gym", + "Laundry in Building", + "Wall Unit", + "Microwave", + "Refrigerator", + "Bike Room", + "Common Storage", + "Radiant Heating", + "Common Laundry", + "Snow Removal Included", + "Range", + "Parking Included", + "Pet Friendly", + "Pets Conditional", + "Highrise" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "12595519", + "Days on Market": "39", + "Pet Policy": "Allowed", + "Taxes": "$2,442 / year", + "HOA Fees": "$505 / month", + "Property Type": "Condo", + "MLS Type": "Attached Single / Condo", + "Year Built": "1961", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - Near North Side", + "Township": "North Chicago", + "Ownership": "Condo", + "Num Of Garage Spaces": "1.0", + "Num Of Parking Spaces": "1.0", + "Parking Included in Price": "No", + "Air Conditioning Type": "Wall Unit(s)", + "Heat/Fuel": "Radiant", + "Pets Allowed": "Yes" + }, + "agent": { + "name": "Brad Zibung", + "email": "brad.zibung@compass.com", + "telephone": "7732697609" + } + }, + "2065549979030704945": { + "listing_id": "2065549979030704945", + "source_url": "https://www.compass.com/homedetails/Undisclosed-Address-Los-Angeles-CA-90042/2065549979030704945_lid/", + "retrieved_at": "2026-09-06T03:42:55.364331+00:00", + "html_sha256": "15e521352544b1b3f08a72004bc039993c1331e7f596abdc12f6825f56f409c7", + "price": null, + "address": "Undisclosed Address", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90042", + "neighborhood": "Highland Park", + "latitude": null, + "longitude": null, + "beds": null, + "baths_full": null, + "baths_half": null, + "baths_total": 0, + "sqft": null, + "property_type": "", + "year_built": null, + "mls_number": "", + "status_text": "Expired", + "days_on_market": null, + "listed_at_ms": null, + "description": "", + "features": [], + "property_facts": {}, + "regional_facts": {}, + "agent": null + }, + "2066028057703971705": { + "listing_id": "2066028057703971705", + "source_url": "https://www.compass.com/homedetails/4515-Stuart-St-Denver-CO-80212/1299TT_pid/", + "retrieved_at": "2026-09-06T03:41:54.926351+00:00", + "html_sha256": "5fd6380127e7982944c1670034421045f2157f0848a1ab11f3080a50b564fe21", + "price": 1595000, + "address": "4515 Stuart Street", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80212", + "neighborhood": "Berkeley", + "latitude": 39.7787026, + "longitude": -105.0430247, + "beds": 4, + "baths_full": 3, + "baths_half": 2, + "baths_total": 5, + "sqft": 3620, + "property_type": "Other", + "year_built": 2026, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Beautiful pre-construction opportunity in one of Denver’s most desirable neighborhoods. This stunning 4-bedroom, 5 bathroom duplex seamlessly blends contemporary style with high-quality craftsmanship across multiple spacious levels.\n\nThe main floor features an open-concept layout designed for both everyday living and entertaining, highlighted by a bright living room with a double-sided fireplace, a spacious dining area, and a designer kitchen complete with a walk-in pantry and dedicated coffee bar. A private study and convenient powder bath complete the main level.\n\nUpstairs, the primary suite offers a relaxing retreat with a walk-in closet and a luxurious en suite bathroom. Two additional bedrooms, a full bathroom, and a conveniently located laundry room provide both comfort and functionality.\n\nThe third-floor offers even more versatility, featuring a bonus room, wet bar, bathroom, and access to a rooftop deck—ideal for entertaining or enjoying Colorado sunsets.\n\nThe finished basement expands your living space with a large family room, an additional bedroom, full bathroom, and ample storage—perfect for guests or a secondary living area.\n\nThis thoughtfully designed home offers modern living at its finest with multiple indoor and outdoor living spaces, making it a rare opportunity in a prime Denver location.", + "features": [ + "Duplex", + "Fireplace", + "Full Basement", + "Open Kitchen", + "Pantry", + "Powder Room", + "Primary Ensuite", + "Private Roof Deck", + "Walk-in Closet" + ], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Other", + "Year Built": "2026", + "Lot Size": "0.08 AC / 3,375 SF", + "County": "Denver County" + }, + "regional_facts": { + "Structure Type": "Duplex", + "Levels": "Three Or More", + "Subdivision Name": "Berkeley" + }, + "agent": { + "name": "Josh Mckinley", + "email": "josh.mckinley@compass.com", + "telephone": "7203753661" + } + }, + "2069801875370937905": { + "listing_id": "2069801875370937905", + "source_url": "https://www.compass.com/homedetails/8430-SW-98th-St-Miami-FL-33156/1D7YEM_pid/", + "retrieved_at": "2026-09-06T03:44:36.160021+00:00", + "html_sha256": "6dcf2a9a9fa7719c3ac4627345e717bbb8bb08db58a1a4c4a80ee3cf841c5101", + "price": 3995000, + "address": "8430 Southwest 98th Street", + "unit": "", + "city": "Miami", + "state": "FL", + "zip": "33156", + "neighborhood": "Kendall", + "latitude": 25.6786403, + "longitude": -80.3320294, + "beds": 5, + "baths_full": 4, + "baths_half": 1, + "baths_total": 4.5, + "sqft": 5289, + "property_type": "Single Family", + "year_built": 1995, + "mls_number": "A12078998", + "status_text": "Active", + "days_on_market": 4, + "listed_at_ms": 1788235200000, + "description": "Set on an expansive 1.09-acre lot in one of Miami’s most desirable residential enclaves, this Mediterranean-inspired estate offers exceptional privacy, space, and potential. Spanning 5,289 sqft, the residence features 5 bedrooms and 5 bathrooms with high ceilings, light-filled interiors, generously sized rooms, and multiple living areas. Lush mature landscaping surrounds the property, creating a private and serene setting with expansive lawns and ample outdoor space. A resort-style pool and charming gazebo provide the perfect backdrop for entertaining and outdoor living. Built in 1995, the home offers a versatile layout and timeless architectural character, presenting an incredible opportunity to renovate, modernize, or customize to your vision. Ideally situated on a quiet residential street within walking distance of Riviera Preparatory School, Target, and Whole Foods, with convenient access to Dadeland Mall, Pinecrest, and major highways. A rare offering combining over an acre of land, an impressive footprint, a prime location, and endless potential in a highly sought-after Miami neighborhood.", + "features": [ + "Below Ground Pool", + "Air Conditioning", + "Dishwasher", + "Pet Friendly", + "Parking Included" + ], + "property_facts": { + "Status": "Active", + "MLS #": "A12078998", + "Days on Market": "4", + "Taxes": "$17,840 / year", + "Property Type": "Single Family", + "MLS Type": "Single Family / Single", + "Year Built": "1995", + "Lot Size": "1.09 AC / 47,480 SF", + "County": "Miami-Dade County", + "Buyer's Agent Compensation": "2%" + }, + "regional_facts": { + "Subdivision": "N/A", + "Style": "Pool Only", + "Waterfront": "No", + "View": "Pool Area View", + "Area": "50", + "Geographic Area": "Other Geographic Area (Out Of Area Only)", + "Num Stories": "1", + "Sq Ft Total": "7737", + "Sq Ft Liv Area": "5289.0", + "AdjustedAreaSF": "6625.0", + "Year Built Description": "Resale" + }, + "agent": { + "name": "Brett Eaglstein", + "email": "brett.eaglstein@compass.com", + "telephone": "3056998050" + } + }, + "2069803915438681177": { + "listing_id": "2069803915438681177", + "source_url": "https://www.compass.com/homedetails/3620-19th-St-Unit-29-San-Francisco-CA-94110/1QYYS9_pid/", + "retrieved_at": "2026-09-06T03:46:44.717435+00:00", + "html_sha256": "a0c332374eea62bc9155014f539d32cd9e2e9986e0576b702826e0520f8a4e44", + "price": 2100000, + "address": "3620 19th Street, Unit 29", + "unit": "29", + "city": "San Francisco", + "state": "CA", + "zip": "94110", + "neighborhood": "Mission Dolores", + "latitude": 37.7601561, + "longitude": -122.4243176, + "beds": 3, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": null, + "property_type": "Delete", + "year_built": 2008, + "mls_number": "426116269", + "status_text": "Sold Off Mls", + "days_on_market": 0, + "listed_at_ms": 1779260400000, + "description": "Spacious and thoughtfully designed 3BD/2BA residence at Chelsea Park, ideally located in the heart of Mission Dolores. This home offers a well-balanced floor plan with generous living spaces, bright north-facing light, and a rare sense of privacy within a boutique, elevator building. The open-concept living and dining area serves as the centerpiece of the home, thoughtfully separating the expansive primary suite from two well-proportioned bedrooms and an adjacent full bath, creating an ideal layout for both comfort and functionality. The kitchen is both refined and practical, featuring honed granite countertops, M8 cabinetry, a Bertazzoni range, and stainless steel appliances. Additional highlights include fresh interior paint, new carpet in the bedrooms, updated light fixtures, custom closet upgrades, excellent storage throughout, in-unit washer/dryer, bike storage, and one-car parking in stacking system. Chelsea Park is known for its peaceful, tucked-away setting just moments from Dolores Park and neighborhood favorites like Tartine, Bi-Rite, Valencia Street, and the Castro. Easy access to MUNI, BART, tech shuttles, and Highways 280/101 makes commuting seamless. A rare opportunity to own a spacious, well-appointed home in one of San Francisco's most vibrant and connected neighborhoods.", + "features": [ + "Assigned Parking", + "Attached Garage", + "Bike Room", + "Carpet Floors", + "Common Garden", + "Common Outdoor Space", + "Dishwasher", + "Disposal", + "Elevator", + "Garage", + "Gazebo", + "Laundry", + "Lowrise", + "Microwave", + "Pet Friendly", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Sold Off Mls", + "MLS #": "426116269", + "Days on Compass": "0", + "HOA Fees": "$1,006 / month", + "Property Type": "Delete", + "MLS Type": "Delete / Condominium", + "Year Built": "2008", + "Lot Size": "0.90 AC / 39,396 SF", + "County": "San Francisco County" + }, + "regional_facts": { + "Parking Features": "Attached, Mechanical Lift, Independent, On Site – Monthly Fee (Condo Only)", + "Architectural Style": "Contemporary", + "Cross Street": "Oakwood", + "Total Parking Spaces": "1" + }, + "agent": { + "name": "Cindy Manning", + "email": "cindy.manning@compass.com", + "telephone": "4153851031" + } + }, + "2070360234129868217": { + "listing_id": "2070360234129868217", + "source_url": "https://www.compass.com/homedetails/2126-Connecticut-Ave-NW-Unit-Undisclosed-Washington-DC-20008/2070360234129868217_lid/", + "retrieved_at": "2026-09-06T03:48:14.841169+00:00", + "html_sha256": "b8e03fa40fc8c4ecaa63b2955edf1ae48774ec33c4b91f6b0579609a5a678452", + "price": 591250, + "address": "2126 Connecticut Avenue Northwest, Unit 58", + "unit": "58", + "city": "Washington", + "state": "DC", + "zip": "20008", + "neighborhood": "Kalorama", + "latitude": 38.9183423, + "longitude": -77.04803609999999, + "beds": 2, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 980, + "property_type": "Condo", + "year_built": 1910, + "mls_number": "DCDC2250714", + "status_text": "Closed", + "days_on_market": 63, + "listed_at_ms": 1780027200000, + "description": "This elegant 2BR/1BA residence at The Dresden one of Kaloramas most distinguished Best Addresses offers approximately 1,050 square feet of beautifully updated living space. Soaring nine-foot ceilings, gleaming hardwood floors, replacement windows, and custom Roman shades fill the home with natural light, while antique lighting fixtures and timeless details crown molding, original doors, and classic wainscoting add rich architectural character throughout.\n\nThe open-concept living and dining areas flow seamlessly into a thoughtfully updated kitchen, featuring abundant cabinetry, a gas Bosch range, beautiful stone counter tops, stainless steel appliances, recessed lighting, and a pantry perfectly suited for both everyday living and entertaining.\n\nTwo generously sized bedrooms offer comfort and flexibility, including a spacious primary with a walk-in closet. Additional highlights include a private storage unit and the convenience of same-floor laundry located just across from the unit.\n\nDesigned by renowned architect Albert H. Beers and built by Harry Wardman in 1909, The Dresden is celebrated for its distinctive rounded faade and stately rooftop garden. This full-service, pet- and investor-friendly building offers a 24-hour concierge, a well-equipped fitness center, and one of the most spectacular rooftop terraces in Washington, DC.\n\nIdeally located in the heart of Kalorama, residents enjoy close proximity to neighborhood favorites including The Phillips Collection, Mitchell Park, Rock Creek Park, and the Spanish Steps, along with the vibrant shops and dining of Dupont Circle. With both Dupont Circle and Woodley Park Metro stations nearby, this home offers the perfect blend of historic charm, modern comfort, and urban convenience.\n\nWelcome home.", + "features": [ + "Concierge", + "Common Roof Deck", + "Common Outdoor Space", + "Laundry in Building", + "Laundry on Every Floor", + "Elevator", + "Air Conditioning", + "Gym", + "Bike Room", + "Private Storage Included", + "Common Storage", + "Assigned Parking", + "On-site Parking", + "Security Included", + "Midrise", + "Security System" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "DCDC2250714", + "Days on Market": "63", + "Pet Policy": "Allowed", + "Taxes": "$5,831 / year", + "Condo/Co-op Fees": "$1,045 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condo", + "Year Built": "1910", + "County": "District of Columbia" + }, + "regional_facts": { + "Tax ID Number": "2527//2040", + "Ownership": "Condominium", + "Condo Coop Association": "Yes", + "HOA": "No", + "Entry Floor Number": "5", + "Structure Type": "Unit/Flat/Apartment", + "Style": "Contemporary", + "Levels/Stories": "1", + "Unit Building Type": "Mid-Rise 5 - 8 Floors", + "Waterfront": "No", + "Garage": "No", + "Subdivision": "KALORAMA (WASHINGTON DC)", + "Building Name": "Kalorama (WASHINGTON DC)", + "Cross Street": "Kalorama Rd NW", + "Legal Subdivision": "Kalorama", + "Total Parking Spaces": "0", + "Washer/Dryer/Hook Up in Unit Y/N": "No", + "Central Air": "Yes", + "Basement": "No", + "Above Grade Finished SQFT": "980.00", + "Above Grade Fin SQFT Source": "Assessor", + "Below Grade Finished SQFT": ".00", + "Below Grade Fin SQFT Source": "Assessor", + "Below Grade Unfinished SQFT": ".00", + "Below Grade Unfin SQFT Source": "Assessor", + "Total Below Grade SQFT": ".00", + "Total Below Grade SQFT Source": "Assessor", + "New Construction": "No", + "Property Condition": "Excellent" + }, + "agent": { + "name": "Ty Hreben", + "email": "ty@compass.com", + "telephone": "3237753825" + } + }, + "2071157297801650385": { + "listing_id": "2071157297801650385", + "source_url": "https://www.compass.com/homedetails/7-Upton-St-Unit-1-Boston-MA-02118/1ZABYS_pid/", + "retrieved_at": "2026-09-06T03:40:22.627477+00:00", + "html_sha256": "6caf3856777b58e28597d5170b2387bcac5f31a10b8b5aad3f0614955b1118e2", + "price": 1850000, + "address": "7 Upton Street, Unit 1", + "unit": "1", + "city": "Boston", + "state": "MA", + "zip": "02118", + "neighborhood": "South End", + "latitude": 42.3419507, + "longitude": -71.071528, + "beds": 3, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1750, + "property_type": "Condo", + "year_built": 1899, + "mls_number": "73516775", + "status_text": "Sold", + "days_on_market": 38, + "listed_at_ms": 1778558400000, + "description": "Refined, single-level living with exceptional outdoor space at 7 Upton Street, Unit 1. Ideally located within the South End’s coveted Union Park neighborhood, this well-appointed 3-bedroom, 2-bath residence blends classic brownstone character with thoughtful updates, featuring a private entrance, expansive private patio, one direct-access deeded parking space, central air conditioning, and newly installed Marvin windows.The floor-through layout offers a seamless flow between living, dining, and bedroom spaces, providing both comfort and functionality for everyday living and entertaining.Perfectly positioned on one of the South End’s most sought-after streets, just moments from acclaimed restaurants, boutiques, and neighborhood parks, this home offers a quintessential city lifestyle with the rare benefit of private outdoor space.", + "features": [ + "Laundry in Building", + "Air Conditioning", + "Forced Air", + "Central Heating", + "Pool", + "Common Outdoor Space", + "Private Outdoor Space", + "Marina", + "Parking Included", + "Pet Friendly", + "Snow Removal Included" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "73516775", + "Days on Market": "38", + "Taxes": "$12,771 / year", + "HOA Fees": "$408 / month", + "Property Type": "Condo", + "MLS Type": "Condominium/Co-Op / Condo", + "Year Built": "1899", + "County": "Suffolk County" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "South End", + "Area": "MA-Boston-South End, MA-Boston", + "Style": "Rowhouse", + "Garage Spaces": "0", + "Open Parking Spaces": "1.00", + "Parking Spaces Total": "1", + "Unit Placement": "Garden" + }, + "agent": { + "name": "Jaclyn LeClair", + "email": "jaclyn.leclair@compass.com", + "telephone": "5857292414" + } + }, + "2074277135160161193": { + "listing_id": "2074277135160161193", + "source_url": "https://www.compass.com/homedetails/520-N-St-SW-Unit-S622-Washington-DC-20024/1U60YS_pid/", + "retrieved_at": "2026-09-06T03:48:15.095154+00:00", + "html_sha256": "61186e11cfa65caa6f11cbda016d5bed06a8cbce59809f23f2a7ef13aba39805", + "price": 274900, + "address": "520 N Street Southwest, Unit S622", + "unit": "S622", + "city": "Washington", + "state": "DC", + "zip": "20024", + "neighborhood": "Southwest Waterfront", + "latitude": 38.8738895, + "longitude": -77.0184269, + "beds": 1, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 591, + "property_type": "Co-op", + "year_built": 1966, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Top-Floor Junior 1-Bedroom Co-op with Balcony | Harbour Square, SW Waterfront DC\n\nWelcome to Unit S622 at 520 N Street SW—a tranquil, top-floor junior 1-bedroom co-op located in the highly desirable Harbour Square community. Nestled in Washington, DC's vibrant Southwest Waterfront neighborhood, this bright and airy home offers an unparalleled urban oasis.\n\nSweeping Vistas & Smart Design\n\nOnce inside you’re instantly greeted by a stunning wall of windows that bathe the space in natural light. This home boasts one of the best assets in the city: an extra-large, west-facing private balcony. Overlooking the community's gorgeous green spaces and water garden, it is the perfect spot to unwind at the end of the day.\n\nThe thoughtfully designed 591-square-foot layout features a spacious living and dining room combination that maximizes space and flow. The galley kitchen comes equipped with electric cooking and plenty of cabinetry. The dedicated bedroom area offers top-floor tranquility and features a built-in Murphy bed and a flexible partition for easy privacy. With ample storage space throughout, this home is a rare find!\n\nResort-Style Amenities at Harbour Square\n\nExperience luxury living at Harbour Square Co-op. Residents enjoy top-notch amenities including a 24/7 gatehouse with security, breathtaking common roof terraces to take in the city and its monuments, outdoor green spaces, a fully equipped gym, a beautiful indoor pool, and convenient laundry facilities.\n\nHassle-free living is yours, as the $1,257.63 monthly co-op fee includes property taxes, central air conditioning and heat, electricity, water, AND high-speed cable and internet!\n\nUnbeatable SW DC Location\n\nMake the vibrant SW Waterfront your new backyard! You are perfectly positioned just minutes from the world-class dining, shopping, and entertainment at The Wharf. Enjoy easy access to Arena Stage, Yards Park, and the National Mall. Commuting is a breeze with nearby Metro stations, multiple bus routes, and easy access to major highways.\n\nKey Features & Co-op Details:\n\nAddress: 520 N St SW, Unit S622, Washington, DC 20024\n\nLayout: Junior 1 Bedroom / 1 Full Bathroom (591 Sq. Ft.)\n\nOutdoor Space: Extra-large, west-facing private balcony.\n\nSpecial Features: Top-floor unit, built-in Murphy bed, wall of windows.\n\nParking: On-site rental garage parking is available starting at $185/mo (EV charging available). Assigned and guest parking options are also offered.\n\nAmenities: 24/7 gatehouse, indoor pool, gym, roof terraces, and bike storage.\n\nAll-Inclusive Fee: $1,257.63/mo covers property taxes, HVAC, electricity, water, and cable/internet!\n\nPet Policy: Very pet-friendly—no restrictions on the number or size of pets!\n\nLeasing: Renting is permitted after 2 years of ownership (limited to 3 years).\n\nDon't miss out on this incredible opportunity to own a top-floor unit with outdoor space in one of DC's best neighborhoods. Contact us today to schedule your private tour of 520 N St SW, Unit S622!\n\n\n\n\nApproximately 591 square feet per the co-op's records.\nAll unit size references are approximate and should not be used for valuation.\nSome photos are virtually staged.\n\nFAQ's\n\n• Renting is allowed after 2 years of ownership and limited to 3 years\n• Ownership cannot be taken in an LLC or corporation. Owners must be natural persons or a trust of the occupant\n• Harbour Square requires all cash purchasers to obtain a cash evaluation letter as part of the Board Approval process\n• No restriction on the number or size of pets\n• Laundry is in the basement of each building (NOTE: owners can add washer and dryer in the unit))\n• Parking spaces are rented from the co-op\n• Electric car charging is available in the garage using ChargePoint\n• Monthly co-op fee includes property taxes, utilities, cable/internet and more\n• Harbour Square is becoming a non-smoking property (see management office for more info)", + "features": [ + "Concierge", + "Common Roof Deck", + "Barbecue Area", + "Common Garden", + "Common Outdoor Space", + "Laundry in Building", + "Elevator", + "On-site Parking For Rent", + "Garage", + "Gym", + "Pool", + "Indoor Pool", + "Bike Room", + "Common Storage", + "Central Heating", + "Assigned Parking", + "Guest Parking", + "Storage Available", + "On-site Parking", + "Security Staff", + "Highrise", + "Security System" + ], + "property_facts": { + "Status": "Coming Soon", + "Pet Policy": "Allowed", + "HOA Fees": "$1,258 / month", + "Property Type": "Co-op", + "MLS Type": "Residential / Cooperative", + "Year Built": "1966", + "County": "District of Columbia", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Ownership": "Cooperative", + "Structure Type": "Unit/Flat/Apartment", + "Style": "Contemporary", + "Levels/Stories": "1", + "Subdivision": "SOUTHWEST WATERFRONT (WASHINGTON DC)", + "Total Parking Spaces": "0", + "Central Air": "No", + "Basement": "No", + "Above Grade Finished SQFT": "591.00", + "New Construction": "No" + }, + "agent": { + "name": "Steven Dean", + "email": "steve.dean@compass.com", + "telephone": "2025256499" + } + }, + "2074455926394275209": { + "listing_id": "2074455926394275209", + "source_url": "https://www.compass.com/homedetails/198-Dolores-St-Unit-6-San-Francisco-CA-94103/1P99JE_pid/", + "retrieved_at": "2026-09-06T03:46:44.887597+00:00", + "html_sha256": "d24f38ded2fee78b337bc70b8a542a0f5c1c072d787591b4bdb634d405e04337", + "price": 800000, + "address": "198 Dolores Street, Unit 6", + "unit": "6", + "city": "San Francisco", + "state": "CA", + "zip": "94103", + "neighborhood": "Mission Dolores", + "latitude": 37.7665063, + "longitude": -122.4268377, + "beds": 1, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 695, + "property_type": "Co-op", + "year_built": 1962, + "mls_number": "426117739", + "status_text": "Closed", + "days_on_market": 39, + "listed_at_ms": 1778742000000, + "description": "Welcome to 198 Dolores - a rare Palm Tree Dolores residence. This charming one-bedroom, one-bathroom corner flat in Mission Dolores offers an exceptional lifestyle. Just three blocks from Mission Dolores Park and steps from Whole Foods and Safeway, the unit features all hardwood floors and serene views of lush palm trees lining Dolores Street. It includes 1 deeded parking space with a large storage unit in front, and HOA dues are $300/month, supporting a welcoming, well-managed community. Enjoy boutique shopping, restaurants, and bars along Valencia, Mission, and Church Streets, while experiencing the family-friendly vibe of Noe Valley. Convenient shuttle service to Google, Genentech, and Facebook is just around the corner.", + "features": [ + "Attached Garage", + "Dishwasher", + "Disposal", + "Garage", + "Park Views", + "Parking Included", + "Pet Friendly", + "Pets Conditional" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "426117739", + "Days on Compass": "39", + "Pet Policy": "Allowed", + "HOA Fees": "$300 / month", + "Property Type": "Co-op", + "MLS Type": "Residential / Tenancy in Common", + "Year Built": "1962", + "County": "San Francisco County" + }, + "regional_facts": { + "Parking Features": "Attached, Covered, Enclosed, Garage Door Opener, Side by Side, On Site, On Site - Mapped (Condo Only)", + "View Description": "City Lights, Park/Greenbelt", + "Cross Street": "15th Street", + "Total Parking Spaces": "1" + }, + "agent": { + "name": "Jessie Lee", + "email": "jessie.lee@compass.com", + "telephone": "4155186402" + } + }, + "2074865658539990729": { + "listing_id": "2074865658539990729", + "source_url": "https://www.compass.com/homedetails/830-E-Durant-Ave-Aspen-CO-81611/LQX0W_pid/", + "retrieved_at": "2026-09-06T03:39:19.211423+00:00", + "html_sha256": "45188df1bc745991f4c9fa997b699f5f5c9ef531eef6d1dda06cfbdb83f67838", + "price": 24950000, + "address": "830 East Durant Avenue", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Aspen Central Core", + "latitude": 39.1865963, + "longitude": -106.8147727, + "beds": 4, + "baths_full": 4, + "baths_half": 0, + "baths_total": 4, + "sqft": 4005, + "property_type": "Townhouse", + "year_built": 1995, + "mls_number": "192246", + "status_text": "Active", + "days_on_market": 157, + "listed_at_ms": 1775001600000, + "description": "Introducing Aspen's most sought-after property! This recently and beautifully remodeled downtown Aspen residence features four bedrooms, a two-car garage, and a terrace with stunning views of Aspen Mountain. Perfectly located for ultimate convenience, it's just a five-minute walk to the Aspen Mountain Gondola, as well as premier dining and shopping. Offered fully furnished and turnkey, this Enclave home is ready for you to enjoy today and forever!", + "features": [ + "Garage", + "Washer / Dryer in Unit", + "Air Conditioning", + "Private Outdoor Space" + ], + "property_facts": { + "Status": "Active", + "MLS #": "192246", + "Days on Market": "157", + "Taxes": "$43,155 / year", + "HOA Fees": "$8,800 / quarter", + "Property Type": "Townhouse", + "MLS Type": "Residential / Townhouse", + "Year Built": "1995", + "Lot Size": "0.08 AC / 3,484 SF", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "Yes", + "Property Faces": "North", + "Style": "Split Level, Contemporary", + "Furnished": "Furnished", + "Fireplace: # Fireplaces": "3", + "Sub/Loc": "Enclave @ Aspen" + }, + "agent": { + "name": "Steven Shane", + "email": "steven.shane@compass.com", + "telephone": "9709486005" + } + }, + "2076551998662666769": { + "listing_id": "2076551998662666769", + "source_url": "https://www.compass.com/homedetails/2021-1st-Ave-Unit-F20-Seattle-WA-98121/2781ZU_pid/", + "retrieved_at": "2026-09-06T03:47:11.041286+00:00", + "html_sha256": "920cc716419de1fc1b5c7873f8b4db433f5339375dc54f567c131c059d65dab6", + "price": 1995000, + "address": "2021 1st Avenue, Unit F20", + "unit": "F20", + "city": "Seattle", + "state": "WA", + "zip": "98121", + "neighborhood": "Pike-Market", + "latitude": 47.6111076, + "longitude": -122.3431835, + "beds": 2, + "baths_full": 1, + "baths_half": 1, + "baths_total": 2.25, + "sqft": 1900, + "property_type": "Condo", + "year_built": 1982, + "mls_number": "2500003", + "status_text": "Active", + "days_on_market": 154, + "listed_at_ms": 1775286000000, + "description": "Panoramic, unobstructed views of Puget Sound, the Olympic Mountains, the Seattle skyline, and Pike Place Market set the tone for this exceptional penthouse offering. Defined by vaulted ceilings, expansive balconies, and a signature enclosed atrium, the home blends architectural character with natural light. The elevated kitchen overlooks the main living space and frames the view beyond, creating a seamless connection between everyday living and entertaining.Located within a full-service, concierge-managed building with secure access and dedicated parking. HOA dues include water, sewer, garbage, common area maintenance, and building services. Moments from Pike Place Market and Seattle’s most iconic dining destinations, this is a rare in-city penthouse opportunity.", + "features": [ + "Air Conditioning", + "Carpet Floors", + "Central AC", + "Central Vacuum", + "Ceramic Floors", + "City Views", + "Common Outdoor Space", + "Contemporary", + "Dishwasher", + "Dryer", + "Electric Dryer Hookup", + "Elevator", + "Forced Air", + "Garage", + "Gated Community", + "Hardwood Floors", + "Laundry in Building", + "Microwave", + "Refrigerator", + "Security Gate", + "Skylight", + "Walk-in Closet", + "Washer", + "Washer / Dryer in Unit", + "Washer Hookup" + ], + "property_facts": { + "Status": "Active", + "MLS #": "2500003", + "Days on Market": "154", + "Cumulative Days on Market": "154", + "Taxes": "$15,822 / year", + "HOA Fees": "$4,399 / month", + "Property Type": "Condo", + "MLS Type": "Residential", + "Year Built": "1982", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Downtown", + "School District": "Seattle", + "View": "City, Mountains, Sound, Territorial", + "Number of Assigned Spaces": "1", + "Total Covered Parking": "1", + "Entry Date": "04-04-2026", + "Energy Source": "Electric" + }, + "agent": { + "name": "Bob Bennion", + "email": "bob.bennion@compass.com", + "telephone": "2063287200" + } + }, + "2077913668911779665": { + "listing_id": "2077913668911779665", + "source_url": "https://www.compass.com/homedetails/417-Buena-Vista-Ave-E-San-Francisco-CA-94117/1R3CTY_pid/", + "retrieved_at": "2026-09-06T03:46:45.398764+00:00", + "html_sha256": "159414b6a59677e34bf45c76b3e0a15b9aeba36984d1aeff017274b2ff8d8e4f", + "price": 1590000, + "address": "417 Buena Vista Avenue East", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94117", + "neighborhood": "Buena Vista-Ashbury Heights", + "latitude": 37.76638700000001, + "longitude": -122.440847, + "beds": null, + "baths_full": null, + "baths_half": null, + "baths_total": null, + "sqft": null, + "property_type": "Land", + "year_built": null, + "mls_number": "426120609", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Dream big. Step into a world of timeless elegance and unparalleled opportunity with this San Francisco property. Situated on coveted Buena Vista Avenue E across from Buena Vista Park, the land and MLS#426119283 APN 2607106 will be sold together as one transaction only, and not separately. MLS#426119283 is a 1915 home on a double lot. Imagine with this adjacent parcel, an extraordinary urban retreat boasting remarkable frontage overlooking the natural beauty of Buena Vista Park offering breathtaking views of the SF Bay and Corona Heights. Host gatherings, cultivate a lush garden, or simply enjoy the luxury of space. This is your chance to experience the ultimate city living with room to breathe, play, and dream. APN 2607073 - MLS# 426120609 and APN 2607106 - MLS#426119283, will be sold together as one transaction only, and not separately. Some photos are from 2016 and may show prior landscaping not current landscaping.", + "features": [ + "Bay Views", + "City Views", + "Park Views" + ], + "property_facts": { + "Status": "Coming Soon", + "MLS #": "426120609", + "Property Type": "Land", + "MLS Type": "Land / Residential Lot", + "County": "San Francisco County" + }, + "regional_facts": { + "Directions to Property": "On a lovely part of Buena Vista Avenue E across from Buena Vista Park.", + "View Description": "Bay, City, City Lights, Park/Greenbelt, San Francisco", + "Cross Street": "Upper Terrace" + }, + "agent": { + "name": "Susan Getz", + "email": "susan.getz@compass.com", + "telephone": "4157933340" + } + }, + "2078407869357531361": { + "listing_id": "2078407869357531361", + "source_url": "https://www.compass.com/homedetails/17145-SW-90th-Ave-Miami-FL-33157/1C7AS8_pid/", + "retrieved_at": "2026-09-06T03:38:23.605399+00:00", + "html_sha256": "e8790c0ca959dcfc712e49b1d6ecd84081514438345095d3fbf0fcff3e5a57c0", + "price": 1650000, + "address": "17145 Southwest 90th Avenue", + "unit": "", + "city": "Miami", + "state": "FL", + "zip": "33157", + "neighborhood": "Palmetto Bay", + "latitude": 25.6107339, + "longitude": -80.3383803, + "beds": 3, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1514, + "property_type": "Single Family", + "year_built": 1957, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Move-in ready 3-bedroom, 2-bath home on a nearly 38,000 square foot lot. This private tropical retreat features mature landscaping, enhanced security, and exceptional privacy with generous space between neighbors. Enjoy the freedom of open land, which is ideal for future expansion, customization, or relaxed outdoor living and entertaining. A perfect blend of comfort today with room to grow tomorrow.", + "features": [], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Single Family", + "Year Built": "1957", + "Lot Size": "0.87 AC / 37,897 SF", + "County": "Miami-Dade County" + }, + "regional_facts": { + "Waterfront": "No", + "Area": "50", + "Sq Ft Liv Area": "1514.0" + }, + "agent": { + "name": "Jenna Citron Pinchuk", + "email": "jenna.citron@compass.com", + "telephone": "3056069267" + } + }, + "2078424821475758689": { + "listing_id": "2078424821475758689", + "source_url": "https://www.compass.com/homedetails/1113-Rhode-Island-Ave-NW-Washington-DC-20005/1ULZVB_pid/", + "retrieved_at": "2026-09-06T03:48:17.102608+00:00", + "html_sha256": "8df4b35cf2097247b25bd6161d0d376eab0178eb03c069e7e0ba81475195b5a7", + "price": 1195000, + "address": "1113 Rhode Island Avenue Northwest", + "unit": "", + "city": "Washington", + "state": "DC", + "zip": "20005", + "neighborhood": "Logan Circle", + "latitude": 38.9105317, + "longitude": -77.02782169999999, + "beds": 6, + "baths_full": 3, + "baths_half": null, + "baths_total": 3, + "sqft": 3412, + "property_type": "Townhouse", + "year_built": 1900, + "mls_number": "DCDC2254634", + "status_text": "Active", + "days_on_market": 40, + "listed_at_ms": 1785211200000, + "description": "Step into the timeless elegance of this grand Victorian just steps from Logan Circle. Boasting an impressive façade, this home is rich with original details that exude historic charm. A side-hall entrance welcomes you into a spacious layout featuring a large living room, a cozy parlor, and a formal dining room—all adorned with stunning arches, intricate mantles, and gorgeous original wood floors. The home is further enhanced by a striking skylight that floods the interior with natural light, showcasing the soaring ceilings and expansive 3,706 square feet of living space, including a tall English basement.\nThe property's average condition provides a canvas for value-add improvements, and incredible opportunity to restore it to its former grandeur with its remarkable bones and unbeatable Logan Circle location, this is your chance to create a truly breathtaking residence.", + "features": [ + "Basement" + ], + "property_facts": { + "Status": "Active", + "MLS #": "DCDC2254634", + "Days on Market": "40", + "Taxes": "$10,985 / year", + "Property Type": "Townhouse", + "MLS Type": "Residential / Fee Simple", + "Year Built": "1900", + "Lot Size": "0.02 AC / 1,071 SF", + "County": "District of Columbia" + }, + "regional_facts": { + "Tax ID Number": "0310//0028", + "Ownership": "Fee Simple", + "Condo Coop Association": "No", + "HOA": "No", + "Structure Type": "Interior Row/Townhouse", + "Style": "Victorian", + "Levels/Stories": "3", + "Waterfront": "No", + "Garage": "No", + "Subdivision": "OLD CITY #2 (WASHINGTON DC)", + "Legal Subdivision": "Old City 2", + "Total Parking Spaces": "0", + "Central Air": "No", + "Basement": "Yes", + "Above Grade Finished SQFT": "2,766.00", + "Above Grade Fin SQFT Source": "Assessor", + "Below Grade Finished SQFT": "646.00", + "Below Grade Fin SQFT Source": "Assessor", + "Below Grade Unfinished SQFT": "294.00", + "Below Grade Unfin SQFT Source": "Assessor", + "Total Below Grade SQFT": "940.00", + "Total Below Grade SQFT Source": "Assessor", + "New Construction": "No" + }, + "agent": { + "name": "Ethan Carson", + "email": "ethan.carson@compass.com", + "telephone": "2023020438" + } + }, + "2078479686554124009": { + "listing_id": "2078479686554124009", + "source_url": "https://www.compass.com/homedetails/1823-16th-St-NW-Unit-2-Washington-DC-20009/1TFG8E_pid/", + "retrieved_at": "2026-09-06T03:48:18.899101+00:00", + "html_sha256": "ba84ebc9bdbab289cc63f9ad93b3055032ba25c930636ade3710affe3f52213f", + "price": null, + "address": "1823 16th Street Northwest, Unit 2", + "unit": "2", + "city": "Washington", + "state": "DC", + "zip": "20009", + "neighborhood": "Dupont Circle", + "latitude": 38.9150031, + "longitude": -77.0361688, + "beds": 3, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 2902, + "property_type": "Condo", + "year_built": 1920, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Architecturally stunning three-bedroom townhome. There are three exceptionally large bedrooms and 3 1/2 baths. One of two primary bedrooms located on the top level is the crowning jewel of this residence. The top floor master suite seamlessly integrates a bedroom, study, and solarium living room within an open plan. Moveable panels afford flexibility, allowing for the customization of each area to suit individual preferences for privacy and relaxation. The unique sky suite includes an ensuite bathroom, stunning city views from solarium lounge and balcony. Two additional bedrooms are located on the second level. The second 322 SF primary bedroom features an ensuite bath plus amazing storage. The third 322 SF bedroom boasts two walk-in closets with access to the hallway full bathroom. The main level boasts expansive open spaces, featuring a contemporary eat-in kitchen, formal dining room, and living room with a fireplace and balcony are ideal for both daily living and entertaining guests in style. The private garden area leads to the secure and gated one car parking with alley access to Swann Street. Located in the heart of the vibrant Dupont neighborhood, you will experience easy access to restaurants, grocery markets, shops and more. The iron gated and meticulously landscaped garden walkway greets and guides you to the main entrance of this stunning contemporary townhome. Welcome to 1823 16th Street, where luxury and convenience converge to offer one of Washington's premier addresses for city living.", + "features": [ + "Primary Ensuite", + "Balcony", + "Private Patio", + "Private Yard", + "Patio", + "Fence", + "Common Garden", + "Dryer", + "Washer", + "Central AC", + "Air Conditioning", + "Street Parking", + "Formal Dining Room", + "Foyer", + "Powder Room", + "Home Office", + "Library / Den", + "Total Renovation", + "Renovated Bath", + "Renovated Kitchen", + "Granite Kitchen Counter", + "Eat-in Kitchen", + "Windowed Kitchen", + "Open Kitchen", + "Breakfast Nook", + "Range Hood", + "Dishwasher", + "Stainless Steel Appliances", + "Jacuzzi Tub", + "Working Fireplace", + "Decorative Fireplace", + "Fireplace", + "Built-Ins", + "Spiral Staircase", + "Hardwood Floors", + "Walk-in Closet", + "Custom Closet", + "Primary Ensuite with Separate Shower", + "Primary Ensuite with Separate Tub", + "Eastern Exposure", + "Western Exposure", + "Gas Stove", + "Refrigerator", + "Stove", + "Laundry Room", + "Attach / Row Hse", + "Assigned Parking", + "On-site Parking", + "Parking Included", + "Electric Gate", + "Security Gate", + "Storage Shed" + ], + "property_facts": { + "Status": "Coming Soon", + "Pet Policy": "Allowed", + "Taxes": "$4,135 semi-annually", + "HOA Fees": "$130 / month", + "Property Type": "Condo", + "Year Built": "1920", + "County": "District of Columbia" + }, + "regional_facts": { + "Ownership": "Condominium", + "Structure Type": "Interior Row/Townhouse", + "Levels/Stories": "Three or More (3+)", + "Subdivision": "LOGAN CIRCLE (WASHINGTON DC)", + "Legal Subdivision": "OLD CITY #2", + "Total Parking Spaces": "1", + "Central Air": "Yes", + "Basement": "No", + "Above Grade Finished SQFT": "2,902.00", + "New Construction": "No" + }, + "agent": { + "name": "Scott Polk", + "email": "scott.polk@compass.com", + "telephone": "2022565460" + } + }, + "2078501167304401553": { + "listing_id": "2078501167304401553", + "source_url": "https://www.compass.com/homedetails/Massachusetts-Ave-NW-Washington-DC-20001/2078501167304401553_lid/", + "retrieved_at": "2026-09-06T03:48:19.285063+00:00", + "html_sha256": "6ed8f4dd9fbe6c851f0419dee898cf802de2a512c9fd484b9e9d77a1806de62b", + "price": 824900, + "address": "1010 Massachusetts Avenue Northwest, Unit 1208", + "unit": "1208", + "city": "Washington", + "state": "DC", + "zip": "20001", + "neighborhood": "Logan Circle", + "latitude": 38.9033795, + "longitude": -77.0266704, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1050, + "property_type": "Condo", + "year_built": 2007, + "mls_number": "DCDC2268232", + "status_text": "Active", + "days_on_market": 83, + "listed_at_ms": 1781496000000, + "description": "Experience elevated city living in this spacious 2-bedroom, 2-bath residence offering off-street parking and approximately 1,050 square feet of thoughtfully designed living space in the heart of downtown Washington, DC. This light-filled home features expansive windows, an open-concept living and dining area, hardwood flooring, and a functional layout ideal for both everyday living and entertaining. The well-appointed kitchen flows seamlessly into the main living space, while the generously sized primary suite includes a private full bath and ample closet space. A second bedroom and full bathroom provide flexibility for guests, a home office, or additional living space. In-unit washer and dryer add everyday convenience.\n\nThis residence conveys with one garage parking space, a rare and valuable feature for downtown living. Residents also enjoy access to a rooftop pool and outdoor terrace, perfect for relaxing, entertaining, and taking in sweeping city views. Additional building amenities include concierge service, secure entry, elevator access, and professionally managed common areas.\n\nIdeally located just steps from some of DC’s best dining, shopping, and entertainment, this home places you moments from CityCenterDC, Capital One Arena, the Walter E. Washington Convention Center, and multiple Metro stations for easy commuting. Enjoy close proximity to popular neighborhoods including Penn Quarter, Chinatown, Logan Circle, and Mount Vernon Square, along with countless restaurants, coffee shops, and nightlife options right outside your door.\n\nWith generous square footage, two full bedrooms, two bathrooms, rooftop pool access, and one dedicated garage parking space, this residence offers the perfect combination of comfort, convenience, and vibrant downtown living.", + "features": [ + "Concierge", + "Elevator", + "Air Conditioning", + "Pool", + "Highrise", + "Security System" + ], + "property_facts": { + "Status": "Active", + "MLS #": "DCDC2268232", + "Days on Market": "83", + "Pet Policy": "Allowed", + "Taxes": "$5,996 / year", + "Condo/Co-op Fees": "$920 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condo", + "Year Built": "2007", + "County": "District of Columbia" + }, + "regional_facts": { + "Tax ID Number": "0342//2138", + "Ownership": "Condominium", + "Condo Coop Association": "Yes", + "HOA": "No", + "Entry Floor Number": "11", + "Structure Type": "Unit/Flat/Apartment", + "Style": "Contemporary", + "Levels/Stories": "1", + "Unit Building Type": "Hi-Rise 9+ Floors", + "Waterfront": "No", + "Garage": "Yes", + "Subdivision": "MASSACHUSETTS AVENUE HEIGHTS (WASHINGTON DC)", + "Building Name": "Central (WASHINGTON DC)", + "Legal Subdivision": "Central", + "Total Parking Spaces": "1", + "Washer/Dryer/Hook Up in Unit Y/N": "Yes", + "Central Air": "Yes", + "Basement": "No", + "Above Grade Finished SQFT": "1,050.00", + "Above Grade Fin SQFT Source": "Assessor", + "Below Grade Finished SQFT": ".00", + "Below Grade Fin SQFT Source": "Assessor", + "Below Grade Unfinished SQFT": ".00", + "Below Grade Unfin SQFT Source": "Assessor", + "Total Below Grade SQFT": ".00", + "Total Below Grade SQFT Source": "Assessor", + "New Construction": "No" + }, + "agent": { + "name": "Jeff Chreky", + "email": "jeff.chreky@compass.com", + "telephone": "3014551441" + } + }, + "2078529746754764753": { + "listing_id": "2078529746754764753", + "source_url": "https://www.compass.com/homedetails/25-Isabella-St-Unit-502-Boston-MA-02116/278F6Q_pid/", + "retrieved_at": "2026-09-06T03:40:32.675372+00:00", + "html_sha256": "dd27acc8f09fbb43e99b2dabb6a89e95adba3eab3e81440853a8979283f39983", + "price": 3000000, + "address": "25 Isabella Street, Unit 502", + "unit": "502", + "city": "Boston", + "state": "MA", + "zip": "02116", + "neighborhood": "Bay Village", + "latitude": 42.3488844, + "longitude": -71.0705256, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1519, + "property_type": "Condo", + "year_built": null, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Introducing La Victoire—a rare collection of 18 uncompromising residences in the heart of Bay Village, perfectly positioned between the vibrant South End and Back Bay neighborhoods.\n\nBorn from the reimagining of the historic Our Lady of Victories Church (est. 1891), La Victoire is a masterwork of revival and restraint. Finegold Alexander’s celebrated architectural vision, paired with KEMS Corporation’s precision in development and construction, brings this landmark back to life with modern elegance and quiet grandeur.\n\nThis boutique offering presents floor plans each distinct and designed to match the individuality of the person who will call it home. From expanisve one-bedroom lofts to sweeping 2,500 sq ft three-bedroom residences, La Victoire also unveils rare duplex and triplex layouts for those seeking a heightened sense of vertical living.\n\nEvery home at La Victoire is framed by brilliant city views and crafted with intentional detail. Seductive marble-wrapped primary baths with double vanities and soaking tubs, sleek paneled Gaggenau appliances with integrated beverage columns, and dramatic powder rooms that make a statement of their own. Penthouse terraces wrap the skyline, letting your mornings unfold with quiet promise and your evenings melt into something deeply unforgettable just like the residence itself.\n\nIn-person appointments have begun at our Newbury Street sales gallery, located on the 3rd floor of 126 Newbury Street.\n", + "features": [ + "Elevator", + "Washer / Dryer in Unit", + "Floor to Ceiling Windows", + "Recessed Lighting", + "Walk-in Closet", + "Custom Closet", + "Dual Pane Windows", + "Midrise" + ], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Condo", + "County": "Suffolk County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "Bay Village", + "Area": "MA-Boston, MA-Boston-Bay Village", + "Garage Spaces": "1", + "Parking Spaces Total": "0" + }, + "agent": { + "name": "Sarah Maguire", + "email": "sarah.maguire@compass.com", + "telephone": "6177979679" + } + }, + "2078645864685447305": { + "listing_id": "2078645864685447305", + "source_url": "https://www.compass.com/homedetails/2385-NW-32nd-St-Miami-FL-33142/1CEECU_pid/", + "retrieved_at": "2026-09-06T03:44:39.926336+00:00", + "html_sha256": "9ca8ae657ead2d2d177fcd1d3889472c856f0e1bd17423038e248318f2c202c4", + "price": 590000, + "address": "2385 Northwest 32nd Street", + "unit": "", + "city": "Miami", + "state": "FL", + "zip": "33142", + "neighborhood": "Allapattah", + "latitude": 25.8058432, + "longitude": -80.2355949, + "beds": 4, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 2180, + "property_type": "Multi Family", + "year_built": 1975, + "mls_number": "A12014723", + "status_text": "Closed", + "days_on_market": 44, + "listed_at_ms": 1778126400000, + "description": "Located in the rapidly growing neighborhood of Allapattah, this multifamily duplex offers an incredible opportunity to own in one of Miami’s most up-and-coming areas. Just 15 minutes from Downtown Miami, Wynwood, the Design District, and other major Miami attractions, the location combines convenience, growth, and strong future potential. Ideal for investors seeking rental income or buyers looking to get into a neighborhood before values continue to rise, this property sits in the heart of an area experiencing significant redevelopment and appreciation. A rare opportunity to secure a multifamily property in one of Miami’s emerging hotspots.", + "features": [ + "Air Conditioning", + "Parking Included" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "A12014723", + "Days on Market": "44", + "Taxes": "$8,503 / year", + "Property Type": "Multi Family", + "MLS Type": "Single Family / Single", + "Year Built": "1975", + "Lot Size": "0.13 AC / 5,600 SF", + "County": "Miami-Dade County", + "Buyer's Agent Compensation": "2%" + }, + "regional_facts": { + "Subdivision": "NEW HAVEN SUB", + "Style": "R30-No Pool/No Water", + "Waterfront": "No", + "View": "None", + "Area": "31", + "Sq Ft Total": "2269", + "Sq Ft Liv Area": "2180.0", + "AdjustedAreaSF": "2052.0", + "Year Built Description": "Effective Year Built" + }, + "agent": { + "name": "Louis Urbina", + "email": "louis.urbina@compass.com", + "telephone": "7863557423" + } + }, + "2079308373491549353": { + "listing_id": "2079308373491549353", + "source_url": "https://www.compass.com/homedetails/1336-Chestnut-St-San-Francisco-CA-94123/1HRDYZ_pid/", + "retrieved_at": "2026-09-06T03:46:46.250267+00:00", + "html_sha256": "bf43fb3d4aa604760340c3c934be6845649a7887fd55b2608e8e43c0ceca6151", + "price": 4300000, + "address": "1336 Chestnut Street", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94123", + "neighborhood": "Marina District", + "latitude": 37.80236970000001, + "longitude": -122.4255342, + "beds": 3, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 2930, + "property_type": "Condo", + "year_built": 2025, + "mls_number": "426116306", + "status_text": "Sold Off Mls", + "days_on_market": 0, + "listed_at_ms": 1779433200000, + "description": "Arrive via direct elevator access into a sun-drenched great room where living, dining, and kitchen unfold as one, designed for both effortless daily living and elevated entertaining. Wide plank white oak floors, integrated cabinetry, and clean, modern lines create a warm, composed environment, while southern light moves gently through the space. The kitchen is both striking and highly functional, anchored by a generous island and outfitted with a full suite of WiFi-connected Thermador appliances, equally suited to quiet mornings and more ambitious culinary moments. Living and dining areas flow with ease, forming a natural gathering space at the heart of the home. Beyond, the home offers a sense of comfort and quiet flexibility. The primary suite looks out over the serene, exclusive-use yard and patio below through floor-to-ceiling windows with mechanized shades, and features a walk-in closet and a spa-like bath with dual vanities, a walk-in shower with dual shower heads, and a Toto washlet. Two additional well-proportioned bedrooms, a second bath, powder room, and two thoughtfully placed alcoves, ideal for a workspace or quiet retreat, complete the level. A rare extension of the home unfolds below, where a flexible bonus space, well suited for guests, an au pair, or media room, opens directly to the expansive private patio and backyard, creating a seamless indoor-outdoor experience. The fully reimagined building reflects a thoughtful, high-quality renovation, where modern systems meet timeless design. Lutron lighting, automated shades, built-in speakers, air conditioning, solar, and sound-dampening construction provide a level of comfort and ease rarely found. Additional amenities include in-unit laundry, garage parking with EV charging, bike storage, and low-water landscaping. Ideally located in the Marina, moments from neighborhood favorites, transportation, and waterfront living.", + "features": [ + "Air Conditioning", + "Dishwasher", + "Disposal", + "Dryer", + "Electric Vehicle Charging Station(s)", + "Elevator", + "Garage", + "Garden Views", + "Laundry", + "Library / Den", + "Marina", + "Media / Recreation Room", + "Microwave", + "Pet Friendly", + "Powder Room", + "Private Patio", + "Radiant Heating", + "Walk-in Closet", + "Washer" + ], + "property_facts": { + "Status": "Sold Off Mls", + "MLS #": "426116306", + "Days on Compass": "0", + "Pet Policy": "Allowed", + "HOA Fees": "$450 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "2025", + "County": "San Francisco County" + }, + "regional_facts": { + "Parking Features": "Electric Vehicle Charging Station(s), Garage Faces Front, Inside Entrance, Side By Side, Side by Side, On Site - Mapped (Condo Only)", + "Architectural Style": "Contemporary, Modern/High Tech", + "View Description": "Garden, San Francisco", + "Cross Street": "Franklin", + "Total Parking Spaces": "1" + }, + "agent": { + "name": "Dale Boutiette", + "email": "dale.boutiette@compass.com", + "telephone": "4157481519" + } + }, + "2080328806299006633": { + "listing_id": "2080328806299006633", + "source_url": "https://www.compass.com/homedetails/889-Francisco-St-Unit-1206-Los-Angeles-CA-90017/1HZZ01_pid/", + "retrieved_at": "2026-09-06T03:42:59.480792+00:00", + "html_sha256": "9f08aea383a99bd805d22a07df86a17a3d52768d3bc394956c639c9a286c817c", + "price": 998000, + "address": "889 Francisco Street, Unit 1206", + "unit": "1206", + "city": "Los Angeles", + "state": "CA", + "zip": "90017", + "neighborhood": "Downtown Los Angeles", + "latitude": 34.04786199999999, + "longitude": -118.2643371, + "beds": 2, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 1489, + "property_type": "Condo", + "year_built": 2017, + "mls_number": "26757747", + "status_text": "Active", + "days_on_market": 102, + "listed_at_ms": 1776668400000, + "description": "Perched above the vibrant South Park skyline, Residence 1206 at Metropolis offers a refined blend of modern design, elevated amenities, and effortless city living. This sophisticated 2-bedroom, 2.5-bath corner unit showcases an ideal floor plan framed by huge windows that flood the space with natural light while capturing dynamic city views. The chef's kitchen features contemporary cabinetry, integrated premium appliances, and clean quartz surfaces, perfectly balancing form and function. The living area flows seamlessly to create an ideal setting for both relaxed evenings and stylish entertaining. The primary bedroom suite is a serene retreat, complete with generous closet space and a spa-inspired bath finished with modern fixtures and refined materials. Every detail has been thoughtfully curated to deliver a polished, turnkey residence. Residents of Metropolis enjoy access to an unparalleled bevy of resort-style amenities, including an amenity deck with pool and cabanas, fitness center, clubhouse, screening room, business center, and 24-hour concierge, all designed to elevate the everyday. Situated in the heart of Downtown Los Angeles, this premier address places you moments from world-class dining, Whole Foods, LA Live, Crypto.com Arena, and the city's most dynamic cultural and entertainment destinations. A rare opportunity to own a contemporary residence in one of DTLA's most coveted full-service buildings.", + "features": [ + "Barbecue Area", + "Playground", + "Elevator", + "Garage", + "Assigned Parking", + "Gym", + "Pool", + "Sauna", + "Billiards Room", + "Picnic Area", + "Washer / Dryer in Unit", + "Air Conditioning", + "Pets Conditional", + "Parking Included", + "Guest Parking", + "Private Outdoor Space", + "Pet Friendly", + "Unfurnished" + ], + "property_facts": { + "Status": "Active", + "MLS #": "26757747", + "Days on Market": "102", + "HOA Fees": "$1,448 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "2017", + "County": "Los Angeles County", + "Buyer's Agent Compensation": "2%" + }, + "regional_facts": { + "Zoning": "LAC2", + "Style": "Modern", + "Association Fee Frequency": "Monthly", + "Property Attached YN": "true", + "Parcel Number": "5144023138", + "Total Units": "514.0", + "Living Area": "1489", + "Source Living Area": "Builder", + "Area": "Downtown L.A. (C42)", + "Lot Size Area": "98939", + "Source Lot Size Area": "Assessor", + "Home owner Dues": "$1,448", + "HOA Fee Frequency 1": "Monthly", + "HOA Fee 2": "$521", + "HOA Fee Frequency 2": "Monthly", + "Assessor Parcel Number": "5144-023-138", + "Directions": "google.com" + }, + "agent": { + "name": "David Lukan", + "email": "david.lukan@compass.com", + "telephone": "8054034935" + } + }, + "2081381488396660801": { + "listing_id": "2081381488396660801", + "source_url": "https://www.compass.com/homedetails/415-Buena-Vista-Ave-E-San-Francisco-CA-94117/1Q1AQO_pid/", + "retrieved_at": "2026-09-06T04:13:31.577716+00:00", + "html_sha256": "40f9cab1de5a3d51faebfde0093e17c0f0f990b988f5a60fba744baed41b9836", + "price": 5950000, + "address": "415 Buena Vista Avenue East", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94117", + "neighborhood": "Buena Vista-Ashbury Heights", + "latitude": 37.7663875, + "longitude": -122.4410176, + "beds": 5, + "baths_full": 4, + "baths_half": 1, + "baths_total": 4.5, + "sqft": null, + "property_type": "Single Family", + "year_built": 1915, + "mls_number": "426119283", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "The Model Deserves the Best Infrastructure. So Do You. Located on coveted Buena Vista Avenue East, facing the sweeping greenery of the park, this rare expansive 1915 masterpiece is more than a home. It's your next great project. Flexible spaces include multiple bedrooms and bathrooms, family room, game room with loft, laundry room, and wine cellar. A foundation of something extraordinary, waiting for the right mind to take it to its full potential. The combined footprint offers a commanding location and breathtaking views of Corona Heights and the SF Bay. The architecture is solid. The combined land is over-sized. The upside is asymmetric. Imagine the upgrade path. Opportunity to create a world-class home designed around deep work and inspired living. Imagine building a dedicated home office with views worthy of your best thinking. Create a seamlessly automated smart home built to specs you actually approve of, not whatever shipped by default. There's a sports court. Imagine adding a wellness and recovery pavilion or a guest suite for collaborators flying in from around the globe. The existing Edwardian residence is your starting point. It's generous, full of character with a floor plan that rewards a thoughtful, technically sophisticated redesign. This neighborhood puts you minutes from Cole Valley, NOPA, Duboce Triangle, Noe Valley, the Mission, Hayes Valley, and the CalTrain corridor. Properties like this are the rarest of rare finds. The data is clear. Opportunities like this don't repeat. APN 2607106 and APN 2607073 (MLS #426120609) will be sold together as one transaction only, and not separately. Some photos are virtual digital images or photos from 2016. SF Assessor Planning report states 8 rooms.", + "features": [ + "Dishwasher", + "Disposal", + "Dryer", + "Garage", + "Parking Included", + "Washer" + ], + "property_facts": { + "Status": "Coming Soon", + "MLS #": "426119283", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1915", + "County": "San Francisco County" + }, + "regional_facts": { + "Directions to Property": "On a lovely part of Buena Vista Avenue E across from Buena Vista Park.", + "Parking Features": "Garage Faces Front, Uncovered Parking Space, Independent, On Site (Single Family Only)", + "Architectural Style": "Edwardian", + "Cross Street": "Upper Terrace", + "Total Parking Spaces": "3" + }, + "agent": { + "name": "Susan Getz", + "email": "susan.getz@compass.com", + "telephone": "4157933340" + } + }, + "2082272035478937921": { + "listing_id": "2082272035478937921", + "source_url": "https://www.compass.com/homedetails/3800-W-17th-Ave-Denver-CO-80204/12334O_pid/", + "retrieved_at": "2026-09-06T04:11:27.413557+00:00", + "html_sha256": "abf9609d424a461a299243a3c71e8ab3b13a9131fbe1170d35b8f09a43f01685", + "price": 920000, + "address": "3800 West 17th Avenue", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80204", + "neighborhood": "West Colfax", + "latitude": 39.7437578, + "longitude": -105.0373173, + "beds": 4, + "baths_full": 2, + "baths_half": null, + "baths_total": 3, + "sqft": 2683, + "property_type": "Mixed Use", + "year_built": 1942, + "mls_number": "1058482", + "status_text": "Sold", + "days_on_market": 77, + "listed_at_ms": 1778133600000, + "description": "Rare redevelopment opportunity directly across from iconic Sloan's Lake with truly unobstructed lake and mountain views in one of Denver's most sought-after neighborhoods. The highly desirable U-TU-C zoning creates exceptional flexibility for developers and investors looking to capitalize on one of the area's increasingly rare redevelopment sites. The lot presents a prime opportunity to scrape the existing structure and build a significantly larger luxury single-family residence with rooftop lake and mountain views or explore duplex development potential. Surrounded by luxury redevelopment and just steps from the lake, trails, parks, restaurants, and vibrant neighborhood amenities, this property offers a unique combination of location, lifestyle, and long-term investment potential. Easy access to downtown Denver, Highlands, Edgewater, and major commuter routes further enhances its appeal.For buyers seeking a long-term hold opportunity, the existing home also offers the potential to completely renovate and hold as a rental in an area with strong demand, or add an ADU for supplemental income or multigenerational living. Opportunities offering this combination of unobstructed views, premier location, and redevelopment flexibility are becoming increasingly rare in the Sloan's Lake/West Colfax area. Bring your architect, builder, or vision and unlock the full potential of this exceptional property.*Buyer/Buyer's Agent to verify all zoning, allowable uses, and development possibilities.", + "features": [ + "Air Conditioning", + "Attached Parking", + "Central AC", + "Deck", + "Dishwasher", + "Electricity Included", + "Forced Air", + "Microwave", + "Partial Basement", + "Patio", + "Refrigerator", + "Water Views" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "1058482", + "Days on Compass": "77", + "Taxes": "$5,088 / year", + "Property Type": "Mixed Use", + "MLS Type": "Residential / Mixed Use", + "Year Built": "1942", + "Lot Size": "0.18 AC", + "County": "Denver County" + }, + "regional_facts": { + "Locale": "Denver" + }, + "agent": { + "name": "Chandra Rose", + "email": "chandra.rose@compass.com", + "telephone": "3039171725" + } + }, + "2082783054412235593": { + "listing_id": "2082783054412235593", + "source_url": "https://www.compass.com/homedetails/2335-Glencoe-St-Denver-CO-80207/1378LY_pid/", + "retrieved_at": "2026-09-06T04:11:30.182656+00:00", + "html_sha256": "ac81ca8c87d6683d86f7478d570feb84310919597d5f3238f4ea4dd626d57966", + "price": 2500000, + "address": "2335 Glencoe Street", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80207", + "neighborhood": "North Park Hill", + "latitude": 39.75189460000001, + "longitude": -104.9260866, + "beds": 6, + "baths_full": 3, + "baths_half": 1, + "baths_total": 5, + "sqft": 4943, + "property_type": "Single Family", + "year_built": 2004, + "mls_number": "9585307", + "status_text": "Closed", + "days_on_market": 25, + "listed_at_ms": 1778824800000, + "description": "Seller is selling 2 lots & 2 houses (2333 Glencoe & 2335 Glencoe). Park Hill compound opportunity with flexibility for multi-generational living, income potential, or future expansion. One completed in 2005 and the 2nd home is a bonus 11,670 total square foot lots. Total for both homes is $2.7M\r\n\r\nLocated in sought-after Park Hill, this unique offering presents a rare opportunity to own a true urban compound featuring a beautifully appointed 2005-built main residence paired with an adjacent historic home on a combined 11,680 sq ft of land.\r\n\r\nThe primary home at 2335 Glencoe St is a standout Park Hill gem, offering an open floor plan with hardwood floors, high ceilings, and quality finishes throughout. The spacious primary suite features a 5-piece bath, Juliet balcony, and oversized walk-in closet. The finished basement adds versatility with a full bedroom, full bath with steam shower, built-in bar, and generous recreation space. Outdoor living shines with a wraparound porch, new patio, vegetable garden, and private yard designed for entertaining.\r\n\r\nAdjacent at 2333 Glencoe St sits a 1906 bungalow on a 3,870 sq ft lot. Public records show approximately 691 sq ft, offering opportunity for renovation, guest quarters, rental income, studio space, or future redevelopment. It represents rare value-add potential.\r\n\r\nTogether, these properties create an exceptional opportunity: a luxury residence with an additional structure on a nearly 12,000 sq ft combined lot. Ideal for a multi-generational compound, income potential, or future expansion, this offering delivers unmatched flexibility in one of Denver’s most established neighborhoods. Walkable to shops, restaurants, schools, parks, the zoo, and City Park.", + "features": [ + "Balcony", + "Barbecue Area", + "Basement", + "Carpet Floors", + "Central AC", + "Deck", + "Dishwasher", + "Double Oven", + "Fireplace", + "Forced Air", + "Full Basement", + "Garage", + "Gas Heat", + "Granite Kitchen Counter", + "High Ceilings", + "Island Kitchen", + "Patio", + "Private Yard", + "Tile Floors", + "Traditional", + "Unfurnished", + "Walk-in Closet" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "9585307", + "Days on Compass": "25", + "Taxes": "$9,005 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "2004", + "Lot Size": "0.27 AC / 11,670 SF", + "County": "Denver County", + "Compensation Remarks": "buyer agent negotiable" + }, + "regional_facts": { + "Structure Type": "House", + "Architectural Style": "Traditional", + "Levels": "Two", + "Subdivision Name": "Park Hill", + "Association": "No", + "Multiple Associations": "No", + "Basement": "Yes" + }, + "agent": { + "name": "Marcy Eastman", + "email": "marcy.eastman@compass.com", + "telephone": "7204365494" + } + }, + "2082950701053509025": { + "listing_id": "2082950701053509025", + "source_url": "https://www.compass.com/homedetails/347-W-4th-St-Manhattan-NY-10014/20PM81_pid/", + "retrieved_at": "2026-09-06T04:12:45.523596+00:00", + "html_sha256": "96dacbe70e271058d1c7046a06d9c833304ca0db3c1ccac3c8e059f87efaf494", + "price": 35000, + "address": "347 West 4th Street", + "unit": "", + "city": "Manhattan", + "state": "NY", + "zip": "10014", + "neighborhood": "West Village", + "latitude": 40.73909949999999, + "longitude": -74.0037225, + "beds": 3, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 2192, + "property_type": "Townhouse", + "year_built": 1927, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 23, + "listed_at_ms": 1778012896142, + "description": "347 West 4th Street is a 22-foot-wide Federal style townhouse in the heart of the West Village — completely renovated, while preserving and restoring the original architectural details that make this home truly irreplaceable.\n\nSpanning 2,192 square feet across four floors with 3 bedrooms, 3 full bathrooms, and 1 half bathroom, the ceiling heights alone set this home apart: 11'3\" on the parlor floor, 10' on the second, 9'3\" on the third, and 9'10\" on the fourth.\n\nThe kitchen is outfitted with a curated suite of European appliances — a Fulgor Milano range, Bertazzoni steam oven, Fisher & Paykel dishwasher, and Liebherr refrigerator — and the bathrooms are appointed with the same standard of care, including a stand-up European shower.\n\nThis is a rare opportunity for a long term or short-term lease of a beautifully designed and furnished home in exquisite condition.", + "features": [ + "Fireplace", + "Hardwood Floors", + "Central AC", + "Total Renovation", + "Brownstone", + "Lowrise" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "23", + "Available Date": "08/01/2026", + "Lease Term": "Lease Length: Negotiable,Other, Lease Length Min/Max: 2-24 mo", + "Total Rooms": "7.0", + "Property Type": "Townhouse", + "Year Built": "1927", + "Lot Size": "547 SF", + "County": "New York County" + }, + "regional_facts": {}, + "agent": { + "name": "Shari Matluck Colton", + "email": "shari.matluck@compass.com", + "telephone": "3053358060" + } + }, + "2083405751345714505": { + "listing_id": "2083405751345714505", + "source_url": "https://www.compass.com/homedetails/Tremont-St-Boston-MA-02118/2083405751345714505_lid/", + "retrieved_at": "2026-09-06T04:10:48.071791+00:00", + "html_sha256": "6289539cbbf75553ff1177a79085f3f4b8e360e737725f33802832244563c8b0", + "price": null, + "address": "Tremont Street", + "unit": "", + "city": "Boston", + "state": "MA", + "zip": "02118", + "neighborhood": "South End", + "latitude": null, + "longitude": null, + "beds": 10, + "baths_full": 6, + "baths_half": 4, + "baths_total": 8, + "sqft": 3800, + "property_type": "Multi Family", + "year_built": 1899, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "EXCLUSIVELY OFF-MARKET | Prime 5-unit multifamily investment opportunity located at 775 Tremont Street, along one of the South End’s most established corridors. The building consists of five leased two-bedroom residences with a strong and consistent history of occupancy and cash flow. Units feature modern finishes, in-unit laundry, and thoughtful renovations, complemented by rear decks, a roof deck, and two on-site parking spaces offering additional income potential.\n\nThe property presents a stabilized income profile in a core Boston location with enduring rental demand driven by proximity to Northeastern University, Berklee College of Music, Boston Architectural College, Boston University School of Medicine, Boston Medical Center, Back Bay, the Prudential Center, MBTA transit, and Tremont Street’s dining and retail corridor. It boasts a 97 Walk Score, 96 Transit Score, and 97 Bike Score.\n\nThe asset offers upside and flexibility for savvy buyers, including potential for future condo conversion and an attractive option for 1031 exchange investors seeking a turn-key, income-producing replacement property. Offered as a compelling blend of current yield, long-term appreciation, and optionality, 775 Tremont Street is well-suited for investors targeting stable Boston fundamentals with future repositioning potential.\n\nAdditional details and financials available upon request. For questions, contact Katherine at katherine.donahue@compass.com [no text messages please].", + "features": [ + "Washer / Dryer in Unit", + "Window AC Installed", + "Balcony", + "Common Outdoor Space", + "Dishwasher", + "Renovated Kitchen and Bath", + "Exposed Brick", + "Decorative Fireplace", + "Hardwood Floors", + "Southern Exposure", + "Gas Heat", + "Gas Stove", + "Midrise", + "Laundry in Every Unit" + ], + "property_facts": { + "Status": "Coming Soon", + "Taxes": "$26,516 / year", + "Property Type": "Multi Family", + "MLS Type": "Multi-family", + "Year Built": "1899", + "Lot Size": "0.04 AC / 1,600 SF", + "County": "Suffolk County" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "South End", + "Area": "MA-Boston, MA-Boston-South End", + "Open Parking Spaces": "2.00", + "Parking Spaces Total": "2" + }, + "agent": { + "name": "Katherine Donahue", + "email": "katherine.donahue@compass.com", + "telephone": "6176333440" + } + }, + "2083551080812289809": { + "listing_id": "2083551080812289809", + "source_url": "https://www.compass.com/homedetails/88-SW-7th-St-Unit-PH4303-Miami-FL-33130/1CZD9G_pid/", + "retrieved_at": "2026-09-06T04:12:26.809944+00:00", + "html_sha256": "64c323e4904420095cd9d325012b6fc2c7d5df3de9bd25426e498eaa8582ea8a", + "price": 5799900, + "address": "88 Southwest 7th Street, Unit PH4303", + "unit": "PH4303", + "city": "Miami", + "state": "FL", + "zip": "33130", + "neighborhood": "Brickell", + "latitude": 25.7671018, + "longitude": -80.1944626, + "beds": 3, + "baths_full": 4, + "baths_half": 1, + "baths_total": 4.5, + "sqft": 3115, + "property_type": "Condo", + "year_built": 2016, + "mls_number": "A12055974", + "status_text": "Active", + "days_on_market": 49, + "listed_at_ms": 1784347200000, + "description": "Welcome to **Villa Iris**, an extraordinary penthouse in the heart of Brickell City Centre, Miami’s premier destination for luxury shopping, world-class dining, and entertainment. Enjoy the ultimate walkable lifestyle with everything just steps away. This exceptional residence features an expansive **1,000 SF private terrace** with a summer kitchen and jacuzzi, seamlessly blending indoor and outdoor living—perfect for entertaining or relaxing under the Miami skyline. The spacious floor plan offers **3 bedrooms and 4.5 bathrooms and service quarters **three assigned parking spaces**, a rare luxury in Brickell. Experience unmatched privacy, elegance, and convenience in one of Miami’s most prestigious addresses. A true villa in the sky.", + "features": [ + "Cabana", + "Common Roof Deck", + "Barbecue Area", + "Playground", + "Common Garden", + "Common Outdoor Space", + "Doorman", + "Concierge", + "Elevator", + "Garage", + "Gym", + "Pool", + "Playroom", + "Resident's Lounge", + "Common Media / Recreation Room", + "Billiards Room", + "Heated Pool", + "Air Conditioning", + "Dishwasher", + "Wine Storage", + "On Site Restaurant", + "Valet Parking", + "Pet Friendly", + "Business Center", + "Assigned Parking", + "Security Gate", + "Highrise", + "Security System" + ], + "property_facts": { + "Status": "Active", + "MLS #": "A12055974", + "Days on Market": "49", + "Pet Policy": "Allowed", + "Taxes": "$78,709 / year", + "HOA Fees": "$5,231 / month", + "Property Type": "Condo", + "MLS Type": "Condo/Co-Op/Villa/Townhouse / Condo", + "Year Built": "2016", + "County": "Miami-Dade County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision": "RISE CONDO", + "Complex Name": "RISE BRICKELL CITY CENTER", + "Style": "Condo 5+ Stories", + "Waterfront": "No", + "View": "Bay, Other View, Skyline View", + "Unit View": "Bay, Other View, Skyline View", + "Furnished": "Unfurnished", + "Area": "41", + "Auction": "No", + "Sq Ft Total": "4370", + "Sq Ft Liv Area": "3115.0", + "Year Built Description": "Resale" + }, + "agent": { + "name": "Arelis Cosme", + "email": "areliscosme@compass.com", + "telephone": "7862520689" + } + }, + "2083780977904271137": { + "listing_id": "2083780977904271137", + "source_url": "https://www.compass.com/homedetails/14-NE-108th-St-Miami-FL-33161/1CZBPR_pid/", + "retrieved_at": "2026-09-06T04:12:29.939261+00:00", + "html_sha256": "d402ceeffd962198d8f52aac1e4196fd11db6bbdff2af7dd995a047792452f78", + "price": 895000, + "address": "14 Northeast 108th Street", + "unit": "", + "city": "Miami Shores", + "state": "FL", + "zip": "33161", + "neighborhood": "Miami Shores", + "latitude": 25.8739747, + "longitude": -80.19742269999999, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1519, + "property_type": "Single Family", + "year_built": 1951, + "mls_number": "A12029860", + "status_text": "Closed", + "days_on_market": 16, + "listed_at_ms": 1780459200000, + "description": "Here's your chance to own a Miami Shores home under $925K on a lovely street. Built in 1951 with 1,519 sq ft of interior living space plus garage. Large 9,225 sq ft lot in a desirable non-flood zone. Perfect palette for a discerning buyer who wants to choose cosmetic improvements according to their own personal needs and taste. Major structural upgrades already done including a 2024 new roof, 2021 new septic and drainfield, all windows and doors are impact resistant, updated open kitchen. Great bones with original architectural characteristics including oak and terrazzo floors, built in dining cabinets, and more. Attached garage offers potential conversion to a 3rd bedroom and bathroom. Prime location walkable to downtown Miami Shores shops, library, dining, cafes, gyms, and parks. Wonderful community amenities including A+ schools, community pool and children's waterpark, tennis, pickleball, basketball courts, golf course, recreation center and sports fields.", + "features": [ + "Golf Course Community", + "Air Conditioning", + "Hardwood Floors", + "Parking Included", + "Communal Pool", + "Communal Tennis Court", + "Pickleball" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "A12029860", + "Days on Market": "16", + "Taxes": "$5,839 / year", + "Property Type": "Single Family", + "MLS Type": "Single Family / Single", + "Year Built": "1951", + "Lot Size": "0.21 AC / 9,225 SF", + "County": "Miami-Dade County", + "Buyer's Agent Compensation": "2.5%", + "Compensation Remarks": "2.5% to buyers agent and 2.5% to listing agent" + }, + "regional_facts": { + "Subdivision": "DUNNINGS MIAMI SHORES EXT", + "Style": "R30-No Pool/No Water", + "Waterfront": "No", + "View": "Garden View", + "Area": "21", + "Num Stories": "1", + "Sq Ft Total": "1819", + "Sq Ft Liv Area": "1519.0", + "AdjustedAreaSF": "1659.0", + "Year Built Description": "Resale" + }, + "agent": { + "name": "Lori Brandt", + "email": "lori.brandt@compass.com", + "telephone": "7865531962" + } + }, + "2083819820825444401": { + "listing_id": "2083819820825444401", + "source_url": "https://www.compass.com/homedetails/1942-Buchanan-St-San-Francisco-CA-94115/1P856O_pid/", + "retrieved_at": "2026-09-06T04:13:30.883152+00:00", + "html_sha256": "8792185ccc763b42a07e5218e9dba80634d8641e3f9387c120a1906b58ead9e5", + "price": 2200000, + "address": "1942 Buchanan Street", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94115", + "neighborhood": "Lower Pacific Heights", + "latitude": 37.788038, + "longitude": -122.430024, + "beds": 2, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 1480, + "property_type": "Condo", + "year_built": 1904, + "mls_number": "426129540", + "status_text": "Sold Off Mls", + "days_on_market": 0, + "listed_at_ms": 1784617200000, + "description": "Private showings are available now! Classic San Francisco charm meets modern elegance! This top-floor Edwardian condo showcases spectacular original detailing combined with tasteful updates. Just two blocks from highly coveted Filmore Street and Lafayette Park, this stunning condo is minutes from one of San Francisco's most popular shopping areas. An entertainer's dream, the expansive living room and open floorplan offer a perfect space for gatherings. Intricate moldings and a wood-burning fireplace showcase true SF craftsmanship, while high ceilings and the abundance of natural light create an open and spacious feel. With Cesar Stone countertops, plentiful cabinet storage and top-of-the-line appliances the remodeled chef's kitchen has it all! Enjoy grilling and outdoor dining amongst the city rooftops on the sunny south-facing deck, while the large dining room offers a sophisticated place for more formal hosting. Both bedrooms are good-sized and include generous closet space, and an additional office space offers the perfect place to work from home. A private garage with laundry and added storage complete this Lower Pacific Heights gem! Don't miss the opportunity to make this exquisite condo in one of San Francisco's most desired locations your new home! Tenants will vacate the property by Juli 1, 2026.", + "features": [ + "Attached Garage", + "City Views", + "Dishwasher", + "Disposal", + "Dryer", + "Garage", + "Parking Included", + "Security Gate", + "Tile Floors", + "Washer", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Sold Off Mls", + "MLS #": "426129540", + "Days on Compass": "0", + "HOA Fees": "$485 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1904", + "County": "San Francisco County", + "Compensation Remarks": "please call agent" + }, + "regional_facts": { + "Parking Features": "Attached, Enclosed, Garage Door Opener, Garage Faces Front, Private, Independent, On Site", + "Architectural Style": "Edwardian", + "View Description": "City, City Lights, Hills", + "Cross Street": "Pine", + "Total Parking Spaces": "1" + }, + "agent": { + "name": "Charlene Attard", + "email": "charlene.attard@compass.com", + "telephone": "4156088585" + } + }, + "2084372143343598409": { + "listing_id": "2084372143343598409", + "source_url": "https://www.compass.com/homedetails/1832-Corcoran-St-NW-Washington-DC-20009/1UDDQ1_pid/", + "retrieved_at": "2026-09-06T04:14:13.729704+00:00", + "html_sha256": "5e1ce5f31b40372e4adb496d73125ff64abc7575f164eb78e80a638d4f4fa6bc", + "price": 2300000, + "address": "1832 Corcoran Street Northwest", + "unit": "", + "city": "Washington", + "state": "DC", + "zip": "20009", + "neighborhood": "Dupont Circle", + "latitude": 38.9117861, + "longitude": -77.0428074, + "beds": 4, + "baths_full": 3, + "baths_half": 0, + "baths_total": 3, + "sqft": 2331, + "property_type": "Townhouse", + "year_built": 1888, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Introducing an exceptional semi-detached residence in the heart of Dupont Circle, offering four bedrooms and three baths in a beautifully reimagined setting.\n\nIdeally situated on a quiet block on Corcoran Street, this one-way span does not attract through traffic, offering a rare sense of privacy and calm while remaining only moments from Dupont Circle and the vibrant restaurants, shops, and amenities that define the neighborhood. \n\nThoughtfully redesigned through a collaboration between DC designer Nicholas Beck and the internationally acclaimed architecture firm Olson Kundig, this home reflects a rare level of craftsmanship and design. Three exposures fill the home with natural light, highlighting generous ceiling heights, wide plank hardwood floors, bay windows, and three Juliet balconies that add architectural charm.\n\nThe main level is designed for both everyday living and entertaining, featuring an eat-in kitchen, a comfortable sitting area, and a formal living room anchored by a wood-burning fireplace.\n\nThe upper level hosts the spacious primary suite, complete with custom cabinetry closets and its own wood burning fireplace, creating a warm and inviting retreat. A well appointed guest bedroom on this floor adds convenience and flexibility.\n\nThe top level offers incredible versatility, featuring an additional bedroom with a built-in Murphy bed that seamlessly transforms into a beautifully designed home office with a built-in desk. This level opens to the rooftop deck, set among the treetops and complete with a custom retractable awning, creating a private and inviting space for relaxing or entertaining.\n\nThe lower level provides a fully separate one bedroom suite with a private entrance, ideal for guests, extended stays, or flexible income potential.\n\nWith its combination of architectural pedigree, turnkey condition, and premier location, this is a truly distinctive offering in one of Washington’s most desirable neighborhoods.", + "features": [ + "Juliet Balcony", + "Private Roof Deck", + "Roof Deck", + "Washer / Dryer", + "Air Conditioning", + "Total Renovation", + "Marble Kitchen Counter", + "Breakfast Nook", + "Range Hood", + "Dishwasher", + "Double Sink Bathroom", + "Floor to Ceiling Windows", + "Bay Windows", + "Oversized Windows", + "Fireplace", + "Built-Ins", + "Private Entrance", + "Hardwood Floors", + "High Ceilings", + "Chandeliers", + "Custom Closet", + "Curved Stairs", + "Separate Vanities", + "Soaking Tub", + "Gas Stove", + "Kitchen Dining", + "Refrigerator", + "Semi-Detached", + "Awnings", + "On-site Parking" + ], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Townhouse", + "MLS Type": "Residential", + "Year Built": "1888", + "Lot Size": "0.02 AC / 698 SF", + "County": "District of Columbia", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Ownership": "Fee Simple", + "Structure Type": "End of Row/Townhouse", + "Style": "Other", + "Levels/Stories": "Three or More (3+)", + "Subdivision": "DUPONT CIRCLE (WASHINGTON DC)", + "Total Parking Spaces": "1", + "Central Air": "Yes", + "Basement": "No", + "Above Grade Finished SQFT": "2,331.00", + "New Construction": "No" + }, + "agent": { + "name": "Katherine Pennington", + "email": "katherine.pennington@compass.com", + "telephone": "3013024135" + } + }, + "2084394305768927185": { + "listing_id": "2084394305768927185", + "source_url": "https://www.compass.com/homedetails/457-W-Broadway-Unit-Undisclosed-South-Boston-MA-02127/2084394305768927185_lid/", + "retrieved_at": "2026-09-06T04:10:49.069959+00:00", + "html_sha256": "ea02090803a2c67bd1c1ce111fb6f86ce185a65c62822ff3d8535fbf743483c7", + "price": null, + "address": "457 West Broadway, Unit Undisclosed", + "unit": "Undisclosed", + "city": "South Boston", + "state": "MA", + "zip": "02127", + "neighborhood": "South Boston Waterfront", + "latitude": 42.3358413, + "longitude": -71.04648399999999, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 929, + "property_type": "Condo", + "year_built": null, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Introducing 457 West Broadway, Unit 406—a sophisticated and sun-filled residence offering the perfect blend of modern comfort and effortless city living.\n\nPositioned on an upper floor, this thoughtfully designed home features an open-concept layout ideal for both everyday living and entertaining. Expansive windows invite in natural light, highlighting the spacious living and dining areas and creating a warm, inviting atmosphere throughout.\n\nThe kitchen is beautifully appointed with quartz countertops, high-end appliances, and sleek white cabinetry complemented by wood grain accents, creating a clean, contemporary aesthetic with a touch of warmth. It flows seamlessly into the main living area, perfect for both casual living and hosting.\n\nGenerously sized bedrooms provide a peaceful retreat, while the bathroom(s) are designed with both style and functionality in mind.\n\nAdditional highlights include [in-unit laundry / central air / hardwood floors / assigned parking — customize as needed], offering convenience and comfort at every turn.\n\nLocated in a desirable building, residents enjoy easy access to nearby shopping, dining, parks, and transportation—making this an exceptional opportunity for both homeowners and investors alike.", + "features": [], + "property_facts": { + "Status": "Coming Soon", + "Taxes": "$10,986 / year", + "Property Type": "Condo", + "County": "Suffolk County" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "South Boston", + "Area": "MA-Boston, MA-Boston-South Boston", + "Garage Spaces": "1" + }, + "agent": { + "name": "Scott Farrell & Partners", + "email": "sfp@compass.com", + "telephone": "508.367.7467" + } + }, + "2085017423130603593": { + "listing_id": "2085017423130603593", + "source_url": "https://www.compass.com/homedetails/21-W-Goethe-St-Unit-15A-Chicago-IL-60610/1W3UDC_pid/", + "retrieved_at": "2026-09-06T04:11:13.476130+00:00", + "html_sha256": "380201c5602753dad985b1223047e0ff20503cda36f479a04550f32dcf905d2b", + "price": 274900, + "address": "21 West Goethe Street, Unit 15A", + "unit": "15A", + "city": "Chicago", + "state": "IL", + "zip": "60610", + "neighborhood": "Gold Coast", + "latitude": 41.90545849999999, + "longitude": -87.62962639999999, + "beds": 1, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": null, + "property_type": "Condo", + "year_built": 1962, + "mls_number": "12621319", + "status_text": "Active ( Private )", + "days_on_market": null, + "listed_at_ms": null, + "description": "This is your opportunity to own a one bedroom, high floor corner unit in Gold Coast's best location. Enjoy stunning sunset views from your floor to ceiling, northwest facing windows overlooking the 3 Arts Club Roof Top at Restoration Hardware. This is a rarely available, updated corner unit featuring one of the largest layouts for a one bedroom in the building with a spacious, open concept living and dining room, high-end custom kitchen with stainless steel appliances, and gorgeous quartz countertops. An oversized bedroom features floor to ceiling, wall to wall closets enclosed behind full-length mirror closet doors and updated, marble-clad bathroom offer a comfortable, spa-like living environment for you to call home. Located steps from all that Gold Coast has to offer, enjoy some of Chicago's best restaurants, shopping, beaches, public transportation, and more. Full amenity building offers a 24-hour doorman, pool deck with cabanas and grills. Professional management and storage unit are just added bonuses.", + "features": [ + "Doorman", + "Elevator", + "Garage", + "Automatic Garage Door", + "Heated Garage Parking", + "On-site Parking", + "Attached Parking", + "Pool", + "Laundry in Building", + "Central AC", + "Air Conditioning", + "Gas Heat", + "Dishwasher", + "Microwave", + "Stainless Steel Appliances", + "Refrigerator", + "Bike Room", + "Common Storage", + "Communal Pool", + "Service Elevator", + "Parking Included", + "Pet Friendly", + "Laminate Floors", + "Common Laundry", + "Snow Removal Included", + "Range", + "Highrise" + ], + "property_facts": { + "Status": "Active ( Private )", + "MLS #": "12621319", + "Pet Policy": "Allowed", + "Taxes": "$4,209 / year", + "HOA Fees": "$1,067 / month", + "Property Type": "Condo", + "MLS Type": "Attached Single / Condo", + "Year Built": "1962", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - Near North Side", + "Township": "North Chicago", + "Ownership": "Condo", + "Num Of Garage Spaces": "0.0", + "Num Of Parking Spaces": "0.0", + "Parking Included in Price": "No", + "Air Conditioning Type": "Central Air", + "Heat/Fuel": "Natural Gas, Hot Water/Steam", + "Pets Allowed": "Yes" + }, + "agent": { + "name": "Eddie Colatorti", + "email": "eddie.colatorti@compass.com", + "telephone": "2248296221" + } + }, + "2085093375214988561": { + "listing_id": "2085093375214988561", + "source_url": "https://www.compass.com/homedetails/Undisclosed-Address-Los-Angeles-CA-90027/2085093375214988561_lid/", + "retrieved_at": "2026-09-06T04:12:01.708777+00:00", + "html_sha256": "dab3bcb32fe5d8c32abca8b0c71c368ee2994c7a62187ab4fd0a230ec5d34180", + "price": null, + "address": "Undisclosed Address", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90027", + "neighborhood": "Los Feliz", + "latitude": null, + "longitude": null, + "beds": 8, + "baths_full": 8, + "baths_half": 0, + "baths_total": 8, + "sqft": null, + "property_type": "", + "year_built": null, + "mls_number": "", + "status_text": "Expired", + "days_on_market": null, + "listed_at_ms": null, + "description": "", + "features": [], + "property_facts": {}, + "regional_facts": {}, + "agent": null + }, + "2085119372299869049": { + "listing_id": "2085119372299869049", + "source_url": "https://www.compass.com/homedetails/79-SW-12th-St-Unit-2201S-Miami-FL-33130/1CBN4F_pid/", + "retrieved_at": "2026-09-06T04:12:27.733257+00:00", + "html_sha256": "e7b6a301ec25f6cf38929415b21d15fd7fbae2ae75775231204a2fe9944a2c20", + "price": 680000, + "address": "79 Southwest 12th Street, Unit 2201S", + "unit": "2201S", + "city": "Miami", + "state": "FL", + "zip": "33130", + "neighborhood": "Brickell", + "latitude": 25.762752, + "longitude": -80.19466899999999, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1099, + "property_type": "Condo", + "year_built": 2008, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Discover the finest 2-bedroom condo currently available at Axis at Brickell. This stunning corner unit sits in the building's most coveted line, offering breathtaking water views, an open floor plan with elegant porcelain tile flooring, a sprawling wraparound balcony, and generously sized rooms.\nRecent upgrades include a brand-new washer and dryer and a newer central A/C system. The unit can be purchased fully furnished and comes with two tandem parking spaces and a rare, deeded oversized storage unit—a hard-to-find bonus in Brickell.\nAxis stands as one of Brickell's best communities, ideally located in the heart of the neighborhood. Residents enjoy a new gym, party and two pools. Backed by strong financials and excellent management, this is a building you can buy into with confidence.\nDon't miss this opportunity, reach out today to schedule your private showing.", + "features": [ + "Balcony", + "Barbecue Area", + "Common Outdoor Space", + "Doorman", + "Full-Time Doorman", + "Concierge", + "Elevator", + "Garage", + "Gym", + "Pool", + "Sauna", + "Playroom", + "Common Media / Recreation Room", + "Billiards Room", + "Heated Pool", + "Central AC", + "Stainless Steel Appliances", + "Jacuzzi Tub", + "Double Sink Bathroom", + "Bike Room", + "Spa", + "Valet Parking", + "Southwestern Exposure", + "Security Staff", + "Assigned Parking", + "Dog Run", + "Storage", + "Highrise" + ], + "property_facts": { + "Status": "Coming Soon", + "Pet Policy": "Allowed", + "HOA Fees": "$1,287 / month", + "Property Type": "Condo", + "MLS Type": "Residential Rental", + "Year Built": "2008", + "County": "Miami-Dade County", + "Compensation Remarks": "Seller will consider all offers of compensation " + }, + "regional_facts": { + "Subdivision": "THE AXIS ON BRICKELL CONDO", + "Style": "Condo 5+ Stories", + "Waterfront": "No", + "Area": "41", + "Sq Ft Liv Area": "1099.0", + "AdjustedAreaSF": "1099.0" + }, + "agent": { + "name": "Ryan Aulenti", + "email": "ryan.aulenti@compass.com", + "telephone": "2038564187" + } + }, + "2085607227661634345": { + "listing_id": "2085607227661634345", + "source_url": "https://www.compass.com/homedetails/Address-Upon-Request-Denver-CO-80206/2085607227661634345_lid/", + "retrieved_at": "2026-09-06T04:11:35.878854+00:00", + "html_sha256": "790b9cbea10ecf286ae9b4d89ff604efd370c6029f43c0a9e342309d59daa016", + "price": 817500, + "address": "1897 York Street", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80206", + "neighborhood": "City Park West", + "latitude": 39.7466422, + "longitude": -104.960169, + "beds": 4, + "baths_full": 2, + "baths_half": 1, + "baths_total": 3, + "sqft": 1689, + "property_type": "Townhouse", + "year_built": 2017, + "mls_number": "3498380", + "status_text": "Closed", + "days_on_market": 4, + "listed_at_ms": 1779256800000, + "description": "Welcome to this incredible custom property directly across from City Park. Featuring four bedrooms and 2.5 bathrooms, this home is modern, beautiful, and truly one of a kind. The expansive main floor deck offers exceptional indoor outdoor living, perfect for enjoying Colorado’s sunshine and fresh air. The main level showcases an open concept layout with high ceilings, seamlessly connecting the kitchen, dining, and living areas. The kitchen is appointed with high end finishes, including honed granite countertops. The lower level includes spacious two bedrooms, a Jack and Jill bathroom, and a conveniently located laundry area. The upper level includes a gorgeous primary suite, complete with an en suite bathroom, walk-in closets, and an additional bedroom perfect for an office, nursery, or exercise room. The crown jewel of this property is its serene setting - while the address is on York, the home truly lives like it’s on Gaylord. Tucked privately toward the back of the lot and secluded from traffic noise, it offers a peaceful oasis directly across from City Park. Additional highlights include a tankless water heater, a garage + extra parking behind it, electronic sun shade, integrated whole-home audio with wiring throughout the interior and deck, a gas fireplace, and real hardwood floors. Ideally located near City Park, the Denver Zoo, and the Denver Museum of Nature and Science, and just blocks from some of Denver’s best dining options.", + "features": [ + "Attached Garage", + "Built-Ins", + "Cable Included", + "Carpet Floors", + "Central AC", + "Deck", + "Dishwasher", + "Disposal", + "Dryer", + "Dual Pane Windows", + "Electricity Included", + "Fireplace", + "Forced Air", + "Garage", + "Gas Included", + "Granite Kitchen Counter", + "Hot Water Heating", + "Internet Included", + "Island Kitchen", + "Microwave", + "Pantry", + "Parking Included", + "Patio", + "Private Outdoor Space", + "Range Hood", + "Refrigerator", + "Tile Floors", + "Unfurnished", + "Washer", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "3498380", + "Days on Compass": "4", + "Taxes": "$3,975 / year", + "Property Type": "Townhouse", + "MLS Type": "Residential / Townhouse", + "Year Built": "2017", + "Lot Size": "0.03 AC / 1,367 SF", + "County": "Denver County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Structure Type": "Townhouse", + "Architectural Style": "Urban Contemporary", + "Levels": "Three Or More", + "Subdivision Name": "City Park West", + "Association": "No", + "Basement": "No" + }, + "agent": { + "name": "Sarah Nolan", + "email": "sarah.nolan@compass.com", + "telephone": "7344767533" + } + }, + "2085668456983506497": { + "listing_id": "2085668456983506497", + "source_url": "https://www.compass.com/homedetails/11307-Morrison-St-North-Hollywood-CA-91601/1KAISN_pid/", + "retrieved_at": "2026-09-06T04:12:02.277054+00:00", + "html_sha256": "ee655ac3d37bfe7f7b29e60cbdf327f8b187de383afc12956085fe4164d0f301", + "price": 989000, + "address": "11307 Morrison Street", + "unit": "", + "city": "North Hollywood", + "state": "CA", + "zip": "91601", + "neighborhood": "Mid-Town North Hollywood", + "latitude": 34.1610642, + "longitude": -118.3776197, + "beds": 3, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 1676, + "property_type": "Single Family", + "year_built": 2017, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Located in the vibrant heart of the NoHo Arts District, this stylish, light-filled contemporary residence offers the perfect blend of design, functionality, and urban convenience. Spanning three levels of thoughtfully designed living space, plus a large private rooftop deck, this home delivers modern living at its best. The second level serves as the main living hub, featuring 9ft ceilings and open-concept layout ideal for both everyday living and entertaining. A sleek gourmet kitchen anchors the space, complete with counter seating, custom cabinetry, designer tile, and a powder room, all complemented by warm oak plank flooring. Upstairs, two spacious ensuite bedrooms provide comfort and privacy with custom motorized blinds. While a versatile ground-floor bedroom with its own ensuite bath is perfect for guests, a home office, or creative studio. Private gated driveway and EV charging capabilities in garage. Gas hookups on patio and roof, perfect for grilling. Move-in ready and impeccably finished throughout, this home is just moments from some of the area's best dining, art galleries, and entertainment, with convenient access to major freeways for an easy commute.", + "features": [ + "Central AC", + "Hardwood Floors", + "Central Heating", + "Semi-Detached" + ], + "property_facts": { + "Status": "Coming Soon", + "Condo/Co-op Fees": "$99 / month", + "Property Type": "Single Family", + "Year Built": "2017", + "County": "Los Angeles County", + "Buyer's Agent Compensation": "2.5%", + "Compensation Remarks": "Buyer's Agent compensation of 2.5% only with full priced offer" + }, + "regional_facts": { + "Living Area": "1676", + "Area": "North Hollywood (NHO)", + "Assessor Parcel Number": "2353-029-028" + }, + "agent": { + "name": "Pam Griffiths", + "email": "pam.griffiths@compass.com", + "telephone": "3107177886" + } + }, + "2085803637547846065": { + "listing_id": "2085803637547846065", + "source_url": "https://www.compass.com/homedetails/S-5th-St-Austin-TX-78704/2085803637547846065_lid/", + "retrieved_at": "2026-09-06T04:10:38.868377+00:00", + "html_sha256": "495bfff696fb4f949e3d8c594b93f72607a5f59621149868b475a3999d37a4ed", + "price": null, + "address": "South 5th Street", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78704", + "neighborhood": "Bouldin Creek", + "latitude": null, + "longitude": null, + "beds": 4, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 2176, + "property_type": "Condo", + "year_built": 2026, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "", + "features": [ + "Hardwood Floors" + ], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Condo", + "Year Built": "2026", + "County": "Travis County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision Name": "Bouldin Add North Ext", + "Waterfront": "No", + "Elementary School": "Becker", + "Elementary School District": "Austin ISD", + "Middle Or Junior School": "Lively MS (Fulmore)", + "Senior High School": "Travis", + "Levels": "Two", + "Property Condition": "New Construction", + "Pool Private": "Yes" + }, + "agent": { + "name": "Darsh Parikh", + "email": "darsh.parikh@compass.com", + "telephone": "5125933138" + } + }, + "2085803818984863153": { + "listing_id": "2085803818984863153", + "source_url": "https://www.compass.com/homedetails/1710-Holly-St-Austin-TX-78702/1FJRJP_pid/", + "retrieved_at": "2026-09-06T04:10:39.278009+00:00", + "html_sha256": "8cf308e809fbf9b9be9e47017047a5bfa6153f9ff42d5e7a7a55885bf416863c", + "price": 595000, + "address": "1710 Holly Street", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78702", + "neighborhood": "East Cesar Chavez", + "latitude": 30.25403379999999, + "longitude": -97.7272959, + "beds": 1, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 686, + "property_type": "Single Family", + "year_built": 1927, + "mls_number": "1820436", + "status_text": "Active", + "days_on_market": 106, + "listed_at_ms": 1778734800000, + "description": "OPEN HOUSE, SAT 9/5, 10a-12p -- Agent / Architect will be on site to answer any of your development questions and will have a feasibility study for reference. *** Feasibility study has been completed, property is developable in a few variations under City of Austin SF & HOME regulations. Reach out for more information! *** // A quintessential 1920s bungalow now ready for its new lease on life! Great opportunity to remodel, expand, flip or re-develop in the highly desired Holly / ECC area of east Austin. 1710 Holly St is a great candidate for a remodel / addition using the classic bungalow architecture as your starting point. Additionally, with the new CoA HOME zoning, there is also an ability to add a second and/or third dwelling on the property. The large 6300+ gently sloping sf lot has great alley access and a tall, shady pecan tree canopy. The hard to beat location offers walking convenience to the Lady Bird Hike & Bike, Rainey St, Cesar Chavez & E 6th hotspots such as Suerte, Whistlers, Canje, White horse, or the dozens of others!", + "features": [ + "Air Conditioning", + "Central AC", + "Central Heating", + "Parking Included", + "Porch", + "Private Outdoor Space", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Active", + "MLS #": "1820436", + "Days on Market": "106", + "Taxes": "$12,542 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1927", + "Lot Size": "0.15 AC / 6,372 SF", + "County": "Travis County" + }, + "regional_facts": { + "Subdivision Name": "Popes Resub", + "Waterfront": "No", + "Waterfront Description": "None", + "Water Access Description": "Public", + "View": "None", + "View YN": "No", + "Parcel Number": "02020706190000", + "Tax Lot": "19", + "Tax Block": "8", + "Elementary School": "Sanchez", + "Elementary School District": "Austin ISD", + "Middle Or Junior School": "Martin", + "Middle Or Junior School District": "Austin ISD", + "Senior High School": "Eastside Early College", + "High School District": "Austin ISD", + "Levels": "One", + "Master on Main": "No", + "Main Level Bedrooms": "1", + "Num Living": "1", + "Living Area Source": "PublicRecords", + "Year Built Source": "PublicRecords", + "Property Condition": "See Remarks", + "Pool Private": "No", + "Pool Features": "None" + }, + "agent": { + "name": "Ed Hughey", + "email": "ed.hughey@compass.com", + "telephone": "5129400950" + } + }, + "2087832171556297009": { + "listing_id": "2087832171556297009", + "source_url": "https://www.compass.com/homedetails/2501-Canterbury-Ln-E-Unit-322-Seattle-WA-98112/1SBDYU_pid/", + "retrieved_at": "2026-09-06T04:13:43.457092+00:00", + "html_sha256": "98d5795a07f51ed1e01ed848ad4a600d7742103aff39a757bb06bd4ea16d7634", + "price": 499000, + "address": "2501 Canterbury Lane East, Unit 322", + "unit": "322", + "city": "Seattle", + "state": "WA", + "zip": "98112", + "neighborhood": "Madison Park", + "latitude": 47.6425811, + "longitude": -122.2810617, + "beds": 2, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 891, + "property_type": "Condo", + "year_built": 1967, + "mls_number": "2493501", + "status_text": "Pending", + "days_on_market": 133, + "listed_at_ms": 1776668400000, + "description": "A short distance from the shoreline in Madison Park, this updated two-bedroom home offers a balance of comfort and lifestyle. Recently refreshed, the residence features a renovated kitchen and bath, in-unit laundry, and a bright layout with western exposure. A generous lanai extends the living space outdoors, while secure garage parking—located just steps from the elevator—adds everyday convenience. Two storage lockers provide additional functionality. Residents enjoy a private pool and marina, with easy access to the water for kayaking or paddle boarding. No rental cap offers long-term flexibility in this well-established community.", + "features": [ + "Ceramic Floors", + "Common Outdoor Space", + "Communal Pool", + "Contemporary", + "Dishwasher", + "Disposal", + "Dryer", + "Electric Dryer Hookup", + "Elevator", + "Garage", + "Gated Community", + "Gym", + "Lake Views", + "Laminate Floors", + "Laundry in Building", + "Microwave", + "Private Outdoor Space", + "Radiant Heating", + "Refrigerator", + "Security Gate", + "Washer", + "Washer / Dryer in Unit", + "Washer Hookup", + "Waterfront" + ], + "property_facts": { + "Status": "Pending", + "MLS #": "2493501", + "Days on Market": "133", + "Cumulative Days on Market": "133", + "Taxes": "$5,023 / year", + "HOA Fees": "$990 / month", + "Property Type": "Condo", + "MLS Type": "Residential", + "Year Built": "1967", + "County": "King County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Community Name": "Madison Park", + "School District": "Seattle", + "View": "Lake, Partial, Territorial", + "Number of Assigned Spaces": "1", + "Total Covered Parking": "1", + "Entry Date": "04-20-2026", + "Energy Source": "Electric" + }, + "agent": { + "name": "Evan Wyman", + "email": "evan.wyman@compass.com", + "telephone": "2068989111" + } + }, + "2088063562122699249": { + "listing_id": "2088063562122699249", + "source_url": "https://www.compass.com/homedetails/199-Caoba-Ct-Miami-FL-33143/1CW7C1_pid/", + "retrieved_at": "2026-09-06T04:12:32.152759+00:00", + "html_sha256": "f50891f09078e310549ce46fa8e179876871cc7429a91158f40486bdcdc23f80", + "price": 13995000, + "address": "199 Caoba Court", + "unit": "", + "city": "Coral Gables", + "state": "FL", + "zip": "33143", + "neighborhood": "Cocoplum", + "latitude": 25.6977868, + "longitude": -80.2551387, + "beds": 5, + "baths_full": 5, + "baths_half": 3, + "baths_total": 6.5, + "sqft": 5342, + "property_type": "Single Family", + "year_built": 2025, + "mls_number": "A12032572", + "status_text": "Active", + "days_on_market": 88, + "listed_at_ms": 1780977600000, + "description": "The only turnkey offering in coveted Islands of Cocoplum, fully designer-furnished in an elegant neutral palette. Over 6200 total sf (see plans and sf calcs) completely reimagined, expanded, and finished in 2025, this exceptional residence is located in the gated Islands of Cocoplum and backs directly to the community green park, with private gated backyard access. The home features European white Oak floors, striking book-matched marble, & custom millwork by Italkraft & B&B Italia. A Savant A/V system, Lutron lighting, in-wall speakers, & 7 AC zones elevate comfort throughout. The kitchen is outfitted with Sub-Zero & Wolf appliances, on-demand hot, cold, and carbonated water, plus 2 ice makers. Entertaining spaces include a fully appointed bar, a temperature-controlled wine room with 2 integrated Sub-Zero wine coolers, & movie room with laser shot simulator. Downstarirs floor plan offers a full bedroom suite downstairs & 2 powder rooms. A striking staircase curves gracefully around an atrium showcasing statement art. Upstairs features a media room, office/powder room, the grand primary suite with 2 walk-in closets and terrace, & 3 additional bedroom suites. 2 car gar+lifts.\r\nOutside, enjoy a Koi pond, marble driveway, French drain system, 60 kW generator, summer kitchen, 400lb ice maker, green walls, underwater pool speakers. Amenities incl guarded entry, security patrol, clubhouse, pool, gym, tennis, pickle ball, volleyball, basketball, and playground. LA is area under AC.", + "features": [ + "Boat Dock", + "Security Patrol", + "Heated Pool", + "Below Ground Pool", + "Air Conditioning", + "Dishwasher", + "Hardwood Floors", + "Parking Included", + "Guest Parking", + "Communal Pool", + "Communal Tennis Court" + ], + "property_facts": { + "Status": "Active", + "MLS #": "A12032572", + "Days on Market": "88", + "Taxes": "$36,400 / year", + "HOA Fees": "$1,500 / quarter", + "Property Type": "Single Family", + "MLS Type": "Residential / Single", + "Year Built": "2025", + "Lot Size": "0.32 AC / 13,972 SF", + "County": "Miami-Dade County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision": "COCOPLUM SEC 2 PLAT F", + "Complex Name": "COCOPLUM SEC 2 PLAT F", + "Style": "Pool Only", + "Waterfront": "No", + "View": "Club Area View, Garden View", + "Unit View": "Clubhouse, Garden", + "Area": "41", + "Num Stories": "2", + "Sq Ft Total": "6244", + "Sq Ft Liv Area": "5342.0", + "Building Area Alt Source": "Architect/Engineer", + "Year Built Description": "Effective Year Built" + }, + "agent": { + "name": "Tere Shelton Bernace", + "email": "tere.sheltonbernace@compass.com", + "telephone": "3056077212" + } + }, + "2088539773340517209": { + "listing_id": "2088539773340517209", + "source_url": "https://www.compass.com/homedetails/Address-Upon-Request-Jamaica-Plain-MA-02130/2088539773340517209_lid/", + "retrieved_at": "2026-09-06T04:10:51.087859+00:00", + "html_sha256": "e032719f70ba6bdf299da12fea7bec609099df39e10e5453984ac9b998e2a112", + "price": 850000, + "address": "Address Upon Request", + "unit": "", + "city": "Jamaica Plain", + "state": "MA", + "zip": "02130", + "neighborhood": "Jamaica Plain", + "latitude": null, + "longitude": null, + "beds": 3, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 1450, + "property_type": "Condo", + "year_built": 1987, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Nestled within the highly desirable Cabot Estate, this stylish and inviting townhouse offers a harmonious blend of modern updates and tranquil living. Step inside to discover a fully renovated kitchen and bathes, showcasing contemporary finishes that are as stylish as they are functional. The private balcony invites you to unwind while soaking in serene, tree-lined views—a perfect retreat after a long day.\n\nBeyond your doorstep, the meticulously maintained grounds reveal a wealth of amenities, including a sparkling pool and tennis courts, and community rooms for larger functions. Inside, the home boasts excellent closet space, a spacious primary suite, and the convenience of an attached garage and laundry room.\n\nThis is more than a home; it’s a lifestyle. Cabot Estate is situated on 23 acres, with 24/7 security. Set across the enchanting Jamaica Pond, it is a slice of nature's heaven in the City, with easy access to Longwood Medical, Downtown, Museum of Fine Art, and the Emerald necklace. Don’t miss the chance to experience all the comfort, elegance, and community that Cabot Estate has to offer!\n", + "features": [ + "Gym", + "Common Media / Recreation Room", + "Billiards Room", + "Club House", + "Tennis Court", + "Laundry in Every Unit" + ], + "property_facts": { + "Status": "Coming Soon", + "HOA Fees": "$1,155 / month", + "Property Type": "Condo", + "Year Built": "1987", + "County": "Suffolk County" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "Jamaica Plain", + "Area": "MA-Boston, MA-Boston-Jamaica Plain", + "Garage Spaces": "1", + "Open Parking Spaces": "1.00", + "Parking Spaces Total": "2" + }, + "agent": { + "name": "Ruth Malkin", + "email": "ruth.malkin@compass.com", + "telephone": "6172910323" + } + }, + "2088686925983473945": { + "listing_id": "2088686925983473945", + "source_url": "https://www.compass.com/homedetails/1032-N-Wood-St-Chicago-IL-60622/1XCDEY_pid/", + "retrieved_at": "2026-09-06T04:11:14.243903+00:00", + "html_sha256": "5d7a532a25fe3c386da42379516e00658cbd53242fa4320726365de2beabe653", + "price": 2599000, + "address": "1032 North Wood Street", + "unit": "", + "city": "Chicago", + "state": "IL", + "zip": "60622", + "neighborhood": "East Village", + "latitude": 41.9006276, + "longitude": -87.6725318, + "beds": 6, + "baths_full": 4, + "baths_half": 2, + "baths_total": 5, + "sqft": 5000, + "property_type": "Single Family", + "year_built": null, + "mls_number": "12625574", + "status_text": "Contingent ( Private )", + "days_on_market": 0, + "listed_at_ms": null, + "description": "Introducing 1032 N Wood, a historic red brick two flat in the heart of Wicker Park reimagined as a luxury single-family residence. Offering over 5,000 sq ft of refined living, this home blends timeless architecture with unique transitional finishes and bespoke details rarely found in spec builds. Highlights include a soaring 10' ceiling basement, expansive rooftop deck, wide plank oak floors and unique custom finishes throughout. A remarkable fusion of character, craftsmanship, and modern comfort. Early Fall delivery, customizations available.", + "features": [ + "Garage", + "Washer / Dryer in Unit", + "Full Basement" + ], + "property_facts": { + "Status": "Contingent ( Private )", + "MLS #": "12625574", + "Days on Market": "0", + "Taxes": "$15,113 / year", + "Property Type": "Single Family", + "MLS Type": "Detached Single / 3 Stories", + "County": "Cook County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Area": "CHI - West Town", + "Num Of Garage Spaces": "2.0", + "Num Of Parking Spaces": "2.0" + }, + "agent": { + "name": "Charlie Cohen", + "email": "charlie.cohen@compass.com", + "telephone": "8472877791" + } + }, + "2089265470199710337": { + "listing_id": "2089265470199710337", + "source_url": "https://www.compass.com/homedetails/2120-N-Lincoln-Park-W-Unit-15-Chicago-IL-60614/1XBS1G_pid/", + "retrieved_at": "2026-09-06T04:11:14.790091+00:00", + "html_sha256": "695820b2d00ad762f910b50e342feeff3f24feae0915feb0ae730342c99f13f8", + "price": 4100000, + "address": "2120 North Lincoln Park West, Unit 15", + "unit": "15", + "city": "Chicago", + "state": "IL", + "zip": "60614", + "neighborhood": "Lincoln Park", + "latitude": 41.9208673, + "longitude": -87.6366482, + "beds": 3, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 4400, + "property_type": "Condo", + "year_built": 2000, + "mls_number": "12615964", + "status_text": "Closed", + "days_on_market": 4, + "listed_at_ms": 1778994000000, + "description": "Set within one of Lincoln Park's most admired intimate buildings. This Exceptional Duplex Overlooking Lincoln Park is positioned along one of Chicago's most coveted park addresses, this remarkable duplex residence offers sweeping, unobstructed views of Lincoln Park and an elevated standard of living rarely found. After entering the condo with its most gracious foyer It's Living spaces and 3 terraces overlook the beauty of the Park with extraordinary light and gracious proportions throughout. Thoughtfully designed for both everyday comfort and sophisticated entertaining, the home features high ceilings, beautiful flooring, and expansive living spaces filled with natural light. The chef's kitchen flows seamlessly into a gracious family room, both overlooking the park creating a warm yet refined setting for gathering. The residence offers three generously sized bedrooms and three and a half baths, The luxurious primary suite serves as a private retreat with terrace access overlooking Lincoln Park. The walk-in closet is a fashionista's dream. A plethora of fabulous closet space elevates this luxurious experience. The Primary bathroom is truly spa like. The second floor is Complete with a well sized laundry room which is enviable for any owner. The formal dining room captures the beauty of the park and also as its backdrop. Additional features include a den and 4th bedroom currently used as a workout room. Another fabulous feature is the private elevator access directly into the residence, four parking spaces with electric capability, dedicated storage, and the privacy of a boutique, intimate building. A truly special offering-refined, rare and perfectly positioned in the heart of Lincoln Park. There really in not anything quite like it. The building has 24 hour door person that keys you to your own private floor. The building also has a workout room and bike room. 2120 LPW is Perfectly located in Lincoln Park with it most scenic surroundings and great walk ability to restaurants and all the charm the area provides.", + "features": [ + "Doorman", + "Elevator", + "Garage", + "Heated Garage Parking", + "Attached Parking", + "Dryer", + "Washer", + "Central AC", + "Air Conditioning", + "Dishwasher", + "Microwave", + "Disposal", + "Double Oven", + "Bike Room", + "Common Storage", + "Forced Air", + "Air Purification System", + "Parking Included", + "Pet Friendly", + "Intercom", + "Snow Removal Included", + "Range", + "Highrise", + "Security System" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "12615964", + "Days on Market": "4", + "Pet Policy": "Allowed", + "Taxes": "$97,044 / year", + "HOA Fees": "$7,186 / month", + "Property Type": "Condo", + "MLS Type": "Attached Single / Condo", + "Year Built": "2000", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - Lincoln Park", + "Township": "North Chicago", + "Ownership": "Condo", + "Num Of Garage Spaces": "4.0", + "Num Of Parking Spaces": "4.0", + "Parking Included in Price": "Yes", + "Air Conditioning Type": "Central Air", + "Heat/Fuel": "Forced Air", + "Pets Allowed": "Yes" + }, + "agent": { + "name": "Melinda Jakovich-Lagrange", + "email": "melindajakovichlagrange@compass.com", + "telephone": "3129533425" + } + }, + "2089401443252366393": { + "listing_id": "2089401443252366393", + "source_url": "https://www.compass.com/homedetails/10-Joan-Dr-Denver-CO-80221/12KVL5_pid/", + "retrieved_at": "2026-09-06T04:11:33.433794+00:00", + "html_sha256": "3cf5835df7a2fed2db115c3d24dfcb9aed8248e2ea5ab397d6487c3c3e89cbe3", + "price": 490000, + "address": "10 Joan Drive", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80221", + "neighborhood": "Sherrelwood Estates", + "latitude": 39.8383401, + "longitude": -104.9871923, + "beds": 3, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1870, + "property_type": "Single Family", + "year_built": 1960, + "mls_number": "4777279", + "status_text": "Closed", + "days_on_market": 3, + "listed_at_ms": 1780034400000, + "description": "Set in Sherrelwood Estates with quick access to both neighborhood parks and downtown Denver, 10 Joan Dr offers the ease of brick ranch living with the added flexibility of a finished basement and attached 2-car garage. This 3-bedroom, 2-bathroom home offers 1,870 square feet of functional living space in a location that keeps daily life connected to both recreation and city access.\r\n\r\nThe classic brick exterior sets the tone, while inside, the ranch-style layout provides comfortable main-level living and a floor plan that works well for a variety of lifestyles. The finished basement adds valuable bonus space for a second living area, home office, workout zone, guest setup, or media room, giving buyers the flexibility to use the home in a way that fits their needs. A 2-car attached garage adds everyday convenience along with additional storage potential.\r\n\r\nBeyond the home itself, the location is a major draw. Sherrelwood Park is less than two miles away, Water World is under 10 minutes from the property, and Downtown Denver is reachable in less than 20 minutes, making it easy to enjoy both neighborhood living and city amenities. For buyers searching for a brick ranch in Denver with a finished basement, attached garage, and strong access to parks, entertainment, and commuting routes, 10 Joan Dr delivers practical space and a well-connected location.", + "features": [ + "Attached Garage", + "Basement", + "Central AC", + "Cooktop", + "Dishwasher", + "Dryer", + "Forced Air", + "Freezer", + "Full Basement", + "Garage", + "Microwave", + "Patio", + "Private Yard", + "Refrigerator", + "Washer" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "4777279", + "Days on Compass": "3", + "Taxes": "$2,456 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1960", + "Lot Size": "0.20 AC / 8,610 SF", + "County": "Adams County", + "Buyer's Agent Compensation": "2.8%" + }, + "regional_facts": { + "Structure Type": "House", + "Architectural Style": "Mid-Century Modern", + "Levels": "One", + "Subdivision Name": "Sherrelwood Estates", + "Association": "No", + "Basement": "Yes" + }, + "agent": { + "name": "Lauren Mulcahy", + "email": "lauren.mulcahy@compass.com", + "telephone": "6303732727" + } + }, + "2089510772869620353": { + "listing_id": "2089510772869620353", + "source_url": "https://www.compass.com/homedetails/260-W-10th-St-Unit-1E-Manhattan-NY-10014/213U1T_pid/", + "retrieved_at": "2026-09-06T04:12:46.529740+00:00", + "html_sha256": "8909a5934c1f164677cff275c3b1597262b37e932847e252f1ac8096e4ed9a24", + "price": 8500, + "address": "260 West 10th Street, Unit 1E", + "unit": "1E", + "city": "Manhattan", + "state": "NY", + "zip": "10014", + "neighborhood": "West Village", + "latitude": 40.7335171, + "longitude": -74.00708209999999, + "beds": 1, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1250, + "property_type": "Co-op", + "year_built": 1910, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 35, + "listed_at_ms": 1776900294577, + "description": "SHORT TERM – 3 Month Rental Available from May 15th to August 31st \n\nWelcome to Apt 1E, a beautifully furnished 1,250 sq. ft. duplex in the heart of the West Village. This 1-bedroom, 2-bathroom apartment also features a separate office/den, creating a versatile and comfortable living space. Nestled in one of the West Village's most secluded areas, this charming unit boasts a European flair with stunning art and elegant design.\n\nThe duplex offers two entrances: one on the upper level and a private entrance on the lower level, located on West 10th Street. The spacious living room downstairs features a wood-burning fireplace, 10' ceilings, and an open modern kitchen equipped with high-end stainless steel Miele appliances. A queen-size sofa bed provides extra accommodation for guests. Ascend the spiral staircase to the second floor, where you'll find a large, bright bedroom with 12' ceilings, a hallway, and a full bathroom. Continue down the hallway to discover a second full bathroom and a bonus room perfect for use as an office or den. Additional amenities include on-site WiFi/cable, and a washer and dryer.\n\nResidents can enjoy the communal rooftop on the fifth floor, offering breathtaking 360-degree views, including the Empire State Building and World Trade Center. Situated on a picturesque tree-lined street, this location is just a short stroll from Hudson River Park, the High Line Park, the Whitney Museum, and excellent dining options. Convenient transportation options, including the Path train, buses, and subways, are just a few blocks away. ", + "features": [ + "Common Roof Deck", + "Exposed Brick", + "Working Fireplace", + "Built-Ins", + "Columns", + "Spiral Staircase", + "Private Entrance", + "Hardwood Floors", + "High Ceilings", + "Oversized Windows", + "Walk Up", + "Laundry in Building", + "Wall Unit", + "Dishwasher", + "Stainless Steel Appliances", + "Gas Oven", + "Sleeping Loft", + "Home Office", + "Renovated Kitchen", + "Granite Kitchen Counter", + "Pullman Kitchen", + "Open Kitchen", + "Northern Exposure", + "Recessed Lighting", + "Skylight", + "Fully Furnished", + "Cooktop", + "Gas Stove", + "Midrise", + "Art Studio", + "Intercom", + "Refrigerator", + "High Speed Internet" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "35", + "Pet Policy": "Allowed", + "Rental Incentives": "No Fee", + "Available Date": "05/25/2026", + "Lease Term": "Lease Length: Negotiable,6 Months, Lease Length Min/Max: 6-6 mo", + "Furnished": "Fully Furnished", + "Total Rooms": "4.0", + "Property Type": "Co-op", + "Year Built": "1910", + "County": "New York County" + }, + "regional_facts": {}, + "agent": { + "name": "Kevin Geloso", + "email": "kevin.geloso@compass.com", + "telephone": "6463876606" + } + }, + "2090063303014835353": { + "listing_id": "2090063303014835353", + "source_url": "https://www.compass.com/homedetails/13626-Shablow-Ave-Sylmar-CA-91342/1KRR16_pid/", + "retrieved_at": "2026-09-06T04:12:02.133859+00:00", + "html_sha256": "32606657f36442d8c9fae11f4f9ba181c35f946dcf853eef98af73f338d61610", + "price": 739000, + "address": "13626 Shablow Avenue", + "unit": "", + "city": "Sylmar", + "state": "CA", + "zip": "91342", + "neighborhood": "Sylmar", + "latitude": 34.3205845, + "longitude": -118.4080723, + "beds": 3, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1068, + "property_type": "Single Family", + "year_built": 1962, + "mls_number": "26782399", + "status_text": "Active Under Contract", + "days_on_market": 72, + "listed_at_ms": 1776841200000, + "description": "Your last chance to make this your home is this weekend (Aug. 29-30)! Welcome to your new home, perched near the foothills with breathtaking mountain vistas, this 3-bedroom, 2-bathroom gem offers the perfect blend of modern efficiency and California outdoor living. While the main home offers a comfortable 1,068 sq. ft. of living space, plus over 400sq/ft from the garage conversion (unpermitted) which adds a versatile fourth room perfect for a home office, gym, guest suite, or new primary room, complete with ample built-in storage. There is no shortage when it comes to security and parking. The home is fully gated and the RV parking space offers plenty of parking or space for additional storage. The solar panels will ensure you will never need to worry about power costs again. The backyard is your private oasis, featuring a hot tub, the ideal spot to unwind under the stars after a long day. This neighborhood is very family friendly, offer lots of nearby outdoor recreation, and is very quiet. This home is priced to move quickly so don't miss out on this rare opportunity to make this your new home. Offer deadline on Monday, May 25th at 12 PM***Photos edited with AI***", + "features": [ + "Washer / Dryer in Unit", + "Air Conditioning", + "Parking Included", + "Unfurnished" + ], + "property_facts": { + "Status": "Active Under Contract", + "MLS #": "26782399", + "Days on Market": "72", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1962", + "Lot Size": "0.17 AC / 7,521 SF", + "County": "Los Angeles County" + }, + "regional_facts": { + "Zoning": "LARS", + "Style": "Traditional", + "Property Attached YN": "false", + "Parcel Number": "2580003021", + "Living Area": "1068", + "Source Living Area": "Vendor Enhanced", + "Area": "Sylmar (SYL)", + "Lot Size Area": "7521", + "Source Lot Size Area": "Vendor Enhanced", + "Assessor Parcel Number": "2580-003-021", + "Directions": "Take the Hubbard St exit from the 210 highway and head north. Turn right on Shablow Ave and the home will be on your left." + }, + "agent": { + "name": "Matthew Alimena", + "email": "matthew.alimena@compass.com", + "telephone": "2139321223" + } + }, + "2090125255159432873": { + "listing_id": "2090125255159432873", + "source_url": "https://www.compass.com/homedetails/2846-N-Christiana-Ave-Unit-2-Chicago-IL-60618/1WG9AW_pid/", + "retrieved_at": "2026-09-06T04:11:17.401445+00:00", + "html_sha256": "41eb43c2137cbe7d089971c6eec79e764ff3687f6f16d560a3a028ff9fc1302a", + "price": 310000, + "address": "2846 North Christiana Avenue, Unit 2", + "unit": "2", + "city": "Chicago", + "state": "IL", + "zip": "60618", + "neighborhood": "Avondale", + "latitude": 41.933428, + "longitude": -87.71132290000001, + "beds": 2, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": null, + "property_type": "Condo", + "year_built": null, + "mls_number": "12647835", + "status_text": "Closed", + "days_on_market": 7, + "listed_at_ms": 1778648400000, + "description": "Welcome home to this charming 2-bedroom, 1-bath condo ideally positioned on the border of Logan Square and Avondale. Tucked on a quiet, tree-lined street, this location offers easy access to the Square, Milwaukee Avenue, and some of the neighborhood's best spots. Inside, the home features a natural, easy flow with an open-concept layout that lives beautifully. The kitchen is both functional and inviting, complete with granite countertops, stainless steel appliances, and a generous island with space for prep and seating. The living area overlooks a peaceful courtyard, creating a calm and comfortable setting. Both bedrooms are well-sized with great closet space and natural light. The bathroom includes a soaking tub/shower combination and a vanity with storage. Additional highlights include central heating and cooling, a dedicated storage closet, and convenient access to common laundry just below the unit. All of this in a location that truly checks every box, with close proximity to CTA, the expressway, restaurants, bars, and everyday conveniences.", + "features": [ + "Laundry in Building", + "Central AC", + "Gas Heat", + "Dishwasher", + "Microwave", + "Stainless Steel Appliances", + "Refrigerator", + "Granite Kitchen Counter", + "Window Treatments", + "Hardwood Floors", + "Common Storage", + "Forced Air", + "Common Laundry", + "Snow Removal Included", + "Storage Available", + "Air Purification System", + "Range", + "Pet Friendly", + "Pets Conditional", + "Lowrise" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "12647835", + "Days on Market": "7", + "Pet Policy": "Allowed", + "Taxes": "$5,080 / year", + "HOA Fees": "$435 / month", + "Property Type": "Condo", + "MLS Type": "Attached Single / Condo", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - Avondale", + "Township": "Jefferson", + "Ownership": "Condo", + "Num Of Parking Spaces": "0.0", + "Parking Included in Price": "No", + "Air Conditioning Type": "Central Air", + "Heat/Fuel": "Natural Gas, Forced Air", + "Pets Allowed": "Yes" + }, + "agent": { + "name": "Melanie Everett", + "email": "melanie.everett@compass.com", + "telephone": "6305367723" + } + }, + "2090174752702796977": { + "listing_id": "2090174752702796977", + "source_url": "https://www.compass.com/homedetails/2819-E-22nd-St-Austin-TX-78722/1FNC7N_pid/", + "retrieved_at": "2026-09-06T04:10:39.576833+00:00", + "html_sha256": "c5e9e7d284044dee970b0277bb539ab8572504830f5498e05bf0c72ba216521b", + "price": 2250000, + "address": "2819 East 22nd Street", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78722", + "neighborhood": "Rosewood", + "latitude": 30.2840314, + "longitude": -97.71059129999999, + "beds": 7, + "baths_full": 5, + "baths_half": 2, + "baths_total": 6, + "sqft": 4454, + "property_type": "Single Family", + "year_built": 2018, + "mls_number": "4583059", + "status_text": "Closed", + "days_on_market": 58, + "listed_at_ms": 1778648400000, + "description": "***OPEN HOUSE: THIS SUNDAY (5/31) 1-3 PM*** Casa Verde is a rare East Austin compound offering two distinct residences on an expansive .27-acre lot, blending thoughtful design with real income potential. The main home features soaring ceilings, multiple living areas, a dedicated office, and curated finishes throughout, including a Viking range, Bosch appliances, motorized shades, and Lutron lighting. Outdoor living unfolds across three separate entertaining areas with a wraparound porch, pergola, patios, and a wood-burning fireplace, all set within a private, fenced yard. The detached second residence lives as a fully separate home with its own garage and porch, offering flexibility for guests, multigenerational living, or short-term rental income. Located just moments from Manor Road favorites like Salty Sow, Este, Bird Bird Biscuit, and Love Supreme, with easy access to Downtown, UT, and the airport, this is a versatile property positioned for both immediate enjoyment and long-term value.", + "features": [ + "Air Conditioning", + "Attached Garage", + "Carpet Floors", + "Ceiling Fan", + "Central AC", + "Central Heating", + "Dishwasher", + "Disposal", + "Double Oven", + "Dryer", + "Fireplace", + "Garage", + "Hardwood Floors", + "High Ceilings", + "Hot Water Heating", + "Laundry in Building", + "Microwave", + "Porch", + "Private Outdoor Space", + "Range", + "Range Hood", + "Refrigerator", + "Soaking Tub", + "Tile Floors", + "Walk-in Closet", + "Washer", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "4583059", + "Days on Market": "58", + "Taxes": "$32,116 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "2018", + "Lot Size": "0.27 AC / 11,782 SF", + "County": "Travis County" + }, + "regional_facts": { + "Subdivision Name": "Austin Heights", + "Waterfront": "No", + "Waterfront Description": "None", + "Water Access Description": "Public", + "View": "Neighborhood", + "Parcel Number": "02121202200000", + "Tax Lot": "21", + "Tax Block": "2", + "Elementary School": "Campbell", + "Elementary School District": "Austin ISD", + "Middle Or Junior School": "Kealing", + "Middle Or Junior School District": "Austin ISD", + "Senior High School": "McCallum", + "High School District": "Austin ISD", + "Levels": "Three Or More", + "Master on Main": "No", + "Main Level Bedrooms": "1", + "Num Living": "3", + "Living Area Source": "Plans", + "Year Built Source": "PublicRecords", + "Property Condition": "Resale", + "Pool Private": "No", + "Pool Features": "None", + "Spa": "No", + "Spa Features": "None" + }, + "agent": { + "name": "Wade Giles", + "email": "wade.giles@compass.com", + "telephone": "5128086756" + } + }, + "2090231550893436001": { + "listing_id": "2090231550893436001", + "source_url": "https://www.compass.com/homedetails/Undisclosed-Address-Los-Angeles-CA-90068/2090231550893436001_lid/", + "retrieved_at": "2026-09-06T04:12:07.814036+00:00", + "html_sha256": "7e251eb89b23259429a32d540e5ddaf8cf03cfab2c4cae406ee65e3c31589bf7", + "price": 3950000, + "address": "3001 Passmore Drive", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90068", + "neighborhood": "Sunset Strip-Hollywood Hills West", + "latitude": 34.1265931, + "longitude": -118.3517588, + "beds": 6, + "baths_full": 5, + "baths_half": 1, + "baths_total": 5.5, + "sqft": 4416, + "property_type": "Single Family", + "year_built": 1926, + "mls_number": "26740155", + "status_text": "Active", + "days_on_market": 43, + "listed_at_ms": 1784876400000, + "description": "Set behind private gates on an extraordinary 31,000+ square-foot promontory parcel, this rare Hollywood Hills estate commands sweeping, unobstructed panoramic views. Elevated above its surroundings and enveloped in remarkable privacy, the property is accessed via a private driveway leading to an off-street motor court/sports court with ample parking. Stone pathways wind through expansive lawns and mature gardens to a sun-drenched pool and spa. At the heart of the estate, a beautifully updated French Country residence pairs timeless architecture with refined contemporary living. The estate includes a 4-bedroom, 5-bath main residence with a generous bonus room above the garage, along with a detached 1-bedroom guest house with its own private entrance. Steeped in Hollywood history with a distinguished celebrity pedigree, the estate blends architectural charm, remarkable provenance, and an unparalleled setting. Rare in both scale and location, this is a true promontory estate offering expansive grounds, extraordinary privacy, and panoramic views from one of the Hollywood Hills' most coveted vantage points.", + "features": [ + "Garage", + "Pool", + "Laundry in Building", + "Air Conditioning", + "Parking Included", + "Guest Parking", + "Private Outdoor Space", + "Unfurnished" + ], + "property_facts": { + "Status": "Active", + "MLS #": "26740155", + "Days on Market": "43", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1926", + "Lot Size": "0.72 AC / 31,548 SF", + "County": "Los Angeles County" + }, + "regional_facts": { + "Zoning": "LARE15", + "Style": "Country French", + "Property Attached YN": "false", + "Parcel Number": "2427008046", + "Living Area": "4416", + "Source Living Area": "Appraiser", + "Area": "Sunset Strip - Hollywood Hills West (C03)", + "Lot Size Area": "31548", + "Source Lot Size Area": "Assessor", + "Assessor Parcel Number": "2427-008-046", + "Directions": "Woodrow Wilson to Passmore or Cahuenga to Oakshire to Passmore" + }, + "agent": { + "name": "Or Brodsky", + "email": "or.brodsky@compass.com", + "telephone": "3106232319" + } + }, + "2090750718311068225": { + "listing_id": "2090750718311068225", + "source_url": "https://www.compass.com/homedetails/1718-Occidental-Blvd-Los-Angeles-CA-90026/1JQ6UE_pid/", + "retrieved_at": "2026-09-06T04:12:05.427235+00:00", + "html_sha256": "7e18c9f36a7bbf2644ee487e60da633b3224b844a721d9361c7396e1c2faa7a8", + "price": 1299000, + "address": "1718 Occidental Boulevard", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90026", + "neighborhood": "Silver Lake", + "latitude": 34.0894164, + "longitude": -118.2675832, + "beds": 2, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 1113, + "property_type": "Single Family", + "year_built": 1936, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Located in the heart of Silver Lake, 1718 N Occidental Blvd is a super charming 1936 bungalow that perfectly blends vintage character with modern functionality. Set up off the street for enhanced privacy, the home opens into a stunning great room featuring high open-beamed ceilings, clean white walls, and engineered wood flooring. The interior boasts an updated, spacious kitchen with a breakfast bar and an adjacent flex room perfectly suited for a professional home office or a guest daybed. Double French doors lead from the living space to a covered porch and a flat, grassy backyard complete with turf and vegetable gardens, all while offering serene treetop and mountain views. The property’s hillside location provides an extraordinary level of access to the best of Silver Lake. It is situated just steps from the Silver Lake Reservoir and Meadows and the local dog park, making it an ideal spot for outdoor enthusiasts. Residents are also just down the street from La Mill Coffee and the premier shops and restaurants on Sunset Boulevard. This home offers a private, serene retreat in one of the neighborhood's most desirable pockets, balancing 1930s traditional style with a prime urban lifestyle and at a great price! \n", + "features": [], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Single Family", + "Year Built": "1936", + "County": "Los Angeles County" + }, + "regional_facts": { + "Living Area": "1113", + "Area": "Silver Lake - Echo Park (C21)", + "Assessor Parcel Number": "5423-021-019" + }, + "agent": { + "name": "Alan Taylor", + "email": "alan.taylor@compass.com", + "telephone": "8182171767" + } + }, + "2090873409185950569": { + "listing_id": "2090873409185950569", + "source_url": "https://www.compass.com/homedetails/1300-13th-St-NW-Unit-905-Washington-DC-20005/1TRGKC_pid/", + "retrieved_at": "2026-09-06T04:14:13.883965+00:00", + "html_sha256": "b375b8817b2031c7ad8a516ba8ca15f09a4090185882ac8b44a6ec4da82b2be2", + "price": 925000, + "address": "1300 13th Street Northwest, Unit 905", + "unit": "905", + "city": "Washington", + "state": "DC", + "zip": "20005", + "neighborhood": "Logan Circle", + "latitude": 38.9074709, + "longitude": -77.02986419999999, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1156, + "property_type": "Condo", + "year_built": 2002, + "mls_number": "DCDC2257724", + "status_text": "Active", + "days_on_market": 31, + "listed_at_ms": 1785988800000, + "description": "Welcome to Solo Piazza.\n\nDiscover upscale living in the heart of the city, just one block from historic Logan Circle Park. From here, enjoy a short stroll to downtown, City Center and an exciting array of local favorites, including Whole Foods Market and the Farragut North Metro (approx. 0.6 miles).\n\nEnter through a tasteful, concierge-attended lobby and ascend to Penthouse 905. Bathed in natural light from floor-to-ceiling windows and doors, this residence offers expansive skyline views of DC from every room with South, West and Northern exposures. The spacious, well-designed layout features 2 bedrooms and 2 modern luxury baths. The gourmet \"cook’s kitchen\" is equipped with gas cooking, stone countertops, Subzero refrigerator and high-end Poggenpohl cabinetry.\n\nProperty Highlights:\n\nGenerous private balcony with city views.\n\nSoaring 9-foot ceilings and a gas fireplace.\n\nNew primary bedroom custom wardrobe and dresser built in convey.\n\nRefinished hardwood flooring .\n\nTwo garage parking spaces and dedicated extra storage. (P 48-49)\n\nAccess to a stunning rooftop terrace and a serene, Zen-inspired courtyard.\n\nExperience a quiet, serene environment just steps away from the best DC has to offer.", + "features": [ + "Concierge", + "Common Roof Deck", + "Dryer", + "Washer", + "Elevator", + "Air Conditioning", + "Garage", + "Gym", + "Fireplace", + "Common Storage", + "Assigned Parking", + "On-site Parking", + "Security Included", + "Parking Included", + "Security System" + ], + "property_facts": { + "Status": "Active", + "MLS #": "DCDC2257724", + "Days on Market": "31", + "Pet Policy": "Allowed", + "Taxes": "$6,693 / year", + "Condo/Co-op Fees": "$1,173 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condo", + "Year Built": "2002", + "County": "District of Columbia", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Tax ID Number": "0243//2129", + "Ownership": "Condominium", + "Condo Coop Association": "Yes", + "HOA": "No", + "Entry Floor Number": "9", + "Structure Type": "Penthouse Unit/Flat/Apartment", + "Style": "Contemporary", + "Levels/Stories": "1", + "Unit Building Type": "Hi-Rise 9+ Floors", + "Waterfront": "No", + "Views": "City, Panoramic", + "Garage": "Yes", + "Subdivision": "LOGAN CIRCLE (WASHINGTON DC)", + "Building Name": "Old City 2 (WASHINGTON DC)", + "Legal Subdivision": "Old City 2", + "Total Parking Spaces": "2", + "Washer/Dryer/Hook Up in Unit Y/N": "Yes", + "Central Air": "Yes", + "Basement": "No", + "Above Grade Finished SQFT": "1,156.00", + "Above Grade Fin SQFT Source": "Assessor", + "Below Grade Finished SQFT": ".00", + "Below Grade Fin SQFT Source": "Assessor", + "Below Grade Unfinished SQFT": ".00", + "Below Grade Unfin SQFT Source": "Assessor", + "Total Below Grade SQFT": ".00", + "Total Below Grade SQFT Source": "Assessor", + "New Construction": "No" + }, + "agent": { + "name": "Martin Toews", + "email": "martin.toews@compass.com", + "telephone": "2022559195" + } + }, + "2091443059070060769": { + "listing_id": "2091443059070060769", + "source_url": "https://www.compass.com/homedetails/40-Fay-St-Unit-H706-Boston-MA-02118/1ZLNRR_pid/", + "retrieved_at": "2026-09-06T04:10:52.581506+00:00", + "html_sha256": "2b61110d87ef3b687283a62da0d3679d277cad8acc5b29f856a558627d0557e0", + "price": 1495000, + "address": "40 Fay Street, Unit H706", + "unit": "H706", + "city": "Boston", + "state": "MA", + "zip": "02118", + "neighborhood": "South End", + "latitude": 42.3433259, + "longitude": -71.0647962, + "beds": 2, + "baths_full": 1, + "baths_half": 1, + "baths_total": 1.5, + "sqft": 1400, + "property_type": "Condo", + "year_built": 2006, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Perched on the seventh floor of Gateway Terrace, this one of a kind, 1,400 sq ft penthouse loft, originally designed by renowned Ruhl Walker Architects, Inc., boasts double height ceilings and a wall of windows allowing for streaming sunlight. The living room commands immediate attention, floor-to-ceiling windows wrap the space in light and deliver views of the South End, while Philips Hue lighting and integrated Sonos audio set the tone throughout. The flexible layout includes a full bedroom with suited bath, a second bedroom or dedicated office, and 1.5 baths, offering the versatility today's buyers demand without sacrificing an ounce of design.\n\nOver the past twelve years, the current owners have invested thoughtfully throughout. The kitchen features a Bosch suite of appliances, alongside a Blomberg oven, Hansgrohe faucet, LED under-cabinet lighting, and custom cabinetry work. The home is outfitted with Lutron Caséta dimmers and switches in every room, and storage has been maximized at every turn, from a built-out entrance closet to extensive attic shelving and a well-organized pantry.\n\nSituated at the intersection of SoWa and Ink Block, two of the South End's most energized corridors, the building is steps from Whole Foods, the beloved SoWa Open Market, and Harrison Avenue's celebrated artist galleries. Some of Boston's finest restaurants are within a short walk, including the acclaimed dining along Tremont Street's Restaurant Row and the Eight Streets neighborhood. Easy highway access puts downtown, Back Bay, and Logan within minutes. This is a neighborhood that has already arrived, and continues to grow.\n\nA rare opportunity to own a truly upgraded, one-of-a-kind home at the heart of it all.", + "features": [ + "Elevator", + "Washer / Dryer in Unit", + "Dryer", + "Washer", + "Laundry in Building", + "Central AC", + "Air Conditioning", + "Forced Air", + "Assigned Parking", + "Garage", + "Yoga Studio", + "Private Roof Deck", + "Deck", + "Common Roof Deck", + "Barbecue Area", + "Common Garden", + "Common Outdoor Space", + "Dishwasher", + "Granite Kitchen Counter", + "Eat-in Kitchen", + "Chef's Kitchen", + "Built-Ins", + "High Ceilings", + "Private Storage Included", + "Recessed Lighting", + "Custom Closet", + "Security System", + "Penthouse", + "Primary Ensuite", + "Concrete Floors", + "Island Kitchen", + "Parking Included", + "Freezer", + "Common Courtyard" + ], + "property_facts": { + "Status": "Coming Soon", + "Taxes": "$13,001 / year", + "HOA Fees": "$1,739 / month", + "Property Type": "Condo", + "MLS Type": "Condominium/Co-Op", + "Year Built": "2006", + "County": "Suffolk County" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "South End", + "Area": "MA-Boston, MA-Boston-South End", + "Garage Spaces": "1", + "Open Parking Spaces": ".00", + "Parking Spaces Total": "1" + }, + "agent": { + "name": "Megan Kopman", + "email": "megan@compass.com", + "telephone": "6173099495" + } + }, + "2091535249419390513": { + "listing_id": "2091535249419390513", + "source_url": "https://www.compass.com/homedetails/2238-Market-St-Unit-407-San-Francisco-CA-94114/1P6IRB_pid/", + "retrieved_at": "2026-09-06T04:13:30.764004+00:00", + "html_sha256": "2c070ba27097bdebac12919ac73de5701f04385269f5309a780feb670bb5b279", + "price": 1405000, + "address": "2238 Market Street, Unit 407", + "unit": "407", + "city": "San Francisco", + "state": "CA", + "zip": "94114", + "neighborhood": "Duboce Triangle", + "latitude": 37.76547800000001, + "longitude": -122.4320361, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1142, + "property_type": "Condo", + "year_built": 2022, + "mls_number": "426123041", + "status_text": "Closed", + "days_on_market": 62, + "listed_at_ms": 1778828400000, + "description": "Residence 407 is a luxurious home in a boutique, newly constructed building at the intersection of Duboce Triangle and the Castro. This 2-bedroom, 2-bath residence spans approximately 1,142 sq ft and offers modern design with comfortable city living. Filled with natural light, the home features expansive windows and a sunlit bay window overlooking the garden, creating a peaceful retreat above Market Street. The open-concept layout includes a dedicated dining area flowing into the kitchen and living space. The kitchen offers light ash cabinetry, oversized ivory and matte grey countertops, and Bosch appliances. Wide-plank hardwood floors, window shades, and recessed LED lighting complete the clean, contemporary aesthetic. The primary suite includes two closets, floor-to-ceiling windows, and a spa-like ensuite bath with dual floating vanities and a walk-in shower. The second bedroom, enclosed with sliding glass doors and a closet, works well as a guest room, office, or flex space. A second bath includes a soaking tub. Additional features include in-unit LG washer/dryer, A/C, double-pane windows, and one-car parking. Built in 2022, 2238 Market offers secure Latch entry, Google Fiber wiring, bike storage, pet spa, and Luxer package system with refrigerated storage. The rooftop terrace features panoramic views, an outdoor kitchen, and lounge areas. Located steps from Whole Foods, Safeway, parks, dining, and transit, Residence 407 offers convenience with a quiet, elevated setting.", + "features": [ + "Air Conditioning", + "Attached Garage", + "Central Heating", + "Disposal", + "Elevator", + "Garage", + "Garden Views", + "Laundry", + "Microwave", + "Parking Included", + "Tile Floors", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "426123041", + "Days on Compass": "62", + "HOA Fees": "$1,017 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "2022", + "County": "San Francisco County" + }, + "regional_facts": { + "Parking Features": "Driveway, Shared Driveway, Attached, Enclosed, Inside Entrance, Side by Side, On Site", + "Architectural Style": "Contemporary, Modern/High Tech", + "View Description": "Garden", + "Cross Street": "15th St", + "Total Parking Spaces": "1" + }, + "agent": { + "name": "Todd Montgomery", + "email": "todd.montgomery@compass.com", + "telephone": "4152036022" + } + }, + "2092521007319369297": { + "listing_id": "2092521007319369297", + "source_url": "https://www.compass.com/homedetails/302134005-0535-Miami-FL-33167/27CY43_pid/", + "retrieved_at": "2026-09-06T04:12:29.832523+00:00", + "html_sha256": "fe89520a32c63b34d5c4431a1c210de84d849200f85fe3a4f2c1280c757ae9bb", + "price": 315000, + "address": "302134005-0535 ", + "unit": "", + "city": "Miami", + "state": "FL", + "zip": "33167", + "neighborhood": "Westview", + "latitude": null, + "longitude": null, + "beds": null, + "baths_full": 0, + "baths_half": 0, + "baths_total": null, + "sqft": null, + "property_type": "Land", + "year_built": null, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Welcome to an exceptional opportunity to own a prime piece of land in beautiful Miami, FL. Located at 302134005-0535, this unique property offers endless potential to design and create the space of your dreams.\n\nPerfectly situated in one of the most sought-after areas, Little River Farms, this land provides a blank canvas to build a custom home, or long-term investment. Spanning an ample size, this property boasts plenty of space to bring your vision to life while still offering the convenience and beauty Miami is known for. \n\n Whether you’re looking to build your future residence or develop your next project, this piece of land is ready to make your vision a reality.\n\nDon't miss out on this rare chance to secure a piece of Miami real estate. Contact us today to explore the possibilities and learn how you can make this land yours. Opportunities like this don’t come around often—act now!", + "features": [], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Land", + "Lot Size": "0.34 AC", + "Buyer's Agent Compensation": "2%" + }, + "regional_facts": { + "Waterfront": "No", + "Area": "12" + }, + "agent": { + "name": "Rhonda Johnson", + "email": "rhonda.johnson@compass.com", + "telephone": "9542405569" + } + }, + "2092936499796805081": { + "listing_id": "2092936499796805081", + "source_url": "https://www.compass.com/homedetails/150-Joralemon-St-Unit-7A-Brooklyn-NY-11201/2051X0_pid/", + "retrieved_at": "2026-09-06T04:12:48.286510+00:00", + "html_sha256": "d9024a1ff32644c0aedc4ea6bdbe4f8cca07e809ad23e5b54b93b5f8bb608d45", + "price": 1250000, + "address": "150 Joralemon Street, Unit 7A", + "unit": "7A", + "city": "Brooklyn", + "state": "NY", + "zip": "11201", + "neighborhood": "Brooklyn Heights", + "latitude": 40.6927741, + "longitude": -73.9933156, + "beds": 2, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": null, + "property_type": "Co-op", + "year_built": 1926, + "mls_number": "", + "status_text": "Active", + "days_on_market": 117, + "listed_at_ms": 1778516996043, + "description": "Iconic unobstructed Brooklyn Heights views for days from this exceptionally chic, custom-designed residence. The thoughtfully configured open floorplan is enhanced by high ceilings, customized lighting and storage, and wide-plank oak flooring.\n\nThe open kitchen features copious custom cabinetry, quartz Caesarstone countertops, a Miele cooktop and steam oven, and an integrated Liebherr refrigerator. The living and dining room, flooded with Northern sun is cooled with through-wall air conditioning concealed within elegant woodwork. Flowing off the main living space is a flexible second bedroom, currently opened to function as a sunny home office, complete with built-in storage below.\n\nThe primary sleeping area is enhanced by custom closets, a built-in queen-sized bed, Roman shades, and electric blackout shades, creating a serene and highly functional retreat. The home also features a beautifully finished bathroom with glass tile, triple medicine cabinets, a heated mirror in the shower, and a bidet, along with a convenient linen closet across the hall.\n\nLaundry is located on the same floor - equally convenient to in-unit without the rumble or loss of any closet space.\n\n150 Joralemon Street is a 12-story Art Deco Pre War elevator building constructed in 1926. It is situated at Clinton Street among Brooklyn Heights’ most revered and historic tree-lined streets. This Cooperative is well run with strong financials and allows pets, subletting, and pied-à-terres. Basement storage for each unit is INCLUDED, laundry room on every floor, 2 updated oversized elevators, live-in Super and 2 Porters, Butterfly MX keyless entry (to your smartphone) + Video intercom system, and elegant and modern gut-renovated lobby.\n\nBUILDING AMENITIES\n• Community Room\n• Fitness Room / Gym\n• Bike Room\n• Secure Package Room (FedEx, UPS, Amazon, etc deliver directly to a locked package room)\n\nPerched in the epicenter of historic Brooklyn Heights, enjoy peace of mind at home and close proximity to the Brooklyn Bridge Park directly down Joralemon, the world-famous Promenade, DUMBO, Cobble Hill, Downtown Brooklyn, local boutiques, restaurants, coffee shops, markets, and all major transportation.\n\n◆ $168.67/Month Capital Assessment\n", + "features": [ + "Gym", + "Playroom", + "Common Media / Recreation Room", + "Built-Ins", + "Hardwood Floors", + "High Ceilings", + "Elevator", + "Laundry in Building", + "Laundry on Every Floor", + "Dishwasher", + "Stainless Steel Appliances", + "Media / Recreation Room", + "Total Renovation", + "Breakfast Bar", + "Open Kitchen", + "Northern Exposure", + "Recessed Lighting", + "Custom Closet", + "Video Intercom", + "Bike Room", + "Private Storage Included", + "Lowrise", + "Highrise" + ], + "property_facts": { + "Status": "Active", + "Days on Market": "117", + "Pet Policy": "Allowed", + "Maintenance": "$2,012 / month", + "Min. Down Pymt": "20%", + "Total Rooms": "4.0", + "Property Type": "Co-op", + "Year Built": "1926", + "County": "Kings County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": {}, + "agent": { + "name": "Carlin Wright", + "email": "carlin@compass.com", + "telephone": "9172754714" + } + }, + "2093567991816288225": { + "listing_id": "2093567991816288225", + "source_url": "https://www.compass.com/homedetails/Address-Upon-Request-Miami-FL-33129/2093567991816288225_lid/", + "retrieved_at": "2026-09-06T04:12:35.984200+00:00", + "html_sha256": "84d4494ce0e3a591c43c530a2d11beecd6fa1d79c1ca53355ce977c532f26a9a", + "price": 1075000, + "address": "545 Southwest 11th Street, Unit 308", + "unit": "308", + "city": "Miami", + "state": "FL", + "zip": "33129", + "neighborhood": "The Roads", + "latitude": 25.763509, + "longitude": -80.203244, + "beds": 3, + "baths_full": 3, + "baths_half": null, + "baths_total": 3, + "sqft": 1527, + "property_type": "Condo", + "year_built": 2020, + "mls_number": "A12008891", + "status_text": "Closed", + "days_on_market": 5, + "listed_at_ms": 1778817600000, + "description": "A rare opportunity in The Roads to own a like-new penthouse residence with a private rooftop terrace. This exceptionally unique offering presents endless potential to create a stunning sunset retreat, summer kitchen, or elevated entertaining space overlooking the city skyline and twinkling lights of Brickell. Nestled within an exclusive boutique building just moments from Brickell, this sophisticated 3bd/3ba penthouse offers soaring ceilings, an expansive open-concept layout, and thoughtfully separated bedrooms designed for both comfort and privacy. Refined interiors are complemented by custom closets, double window treatments, Italkraft cabinetry, Bosch appliances, a wine cooler, and a dedicated laundry nook.Set within a boutique community distinguished by striking architecture from renowned architect Kobi Karp, this residence delivers an elevated lifestyle in one of Miami’s most desirable neighborhoods.", + "features": [ + "Pool", + "Air Conditioning", + "Dishwasher", + "Pet Friendly", + "Lowrise", + "Parking Included" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "A12008891", + "Days on Market": "5", + "Taxes": "$17,102 / year", + "HOA Fees": "$1,512 / month", + "Property Type": "Condo", + "MLS Type": "Condo/Co-Op/Villa/Townhouse / Condo", + "Year Built": "2020", + "County": "Miami-Dade County" + }, + "regional_facts": { + "Subdivision": "ELEVEN IN THE ROADS CONDO", + "Complex Name": "ELEVEN IN THE ROADS CONDO", + "Style": "Condo 1-4 Stories", + "Waterfront": "No", + "View": "Skyline View", + "Unit View": "Skyline View", + "Area": "41", + "Sq Ft Total": "1527", + "Sq Ft Liv Area": "1527.0", + "AdjustedAreaSF": "1527.0", + "Year Built Description": "Resale" + }, + "agent": { + "name": "Hayley Dodge", + "email": "hayley@compass.com", + "telephone": "6316035124" + } + }, + "2093657618966950593": { + "listing_id": "2093657618966950593", + "source_url": "https://www.compass.com/homedetails/1443-Chapin-St-NW-Unit-402-Washington-DC-20009/27DD23_pid/", + "retrieved_at": "2026-09-06T04:14:13.255721+00:00", + "html_sha256": "5a21f3ea571c9363068b4f63f5a8028f0b62c0b7abe693714da89dfac769bcde", + "price": 895000, + "address": "1443 Chapin Street Northwest, Unit 402", + "unit": "402", + "city": "Washington", + "state": "DC", + "zip": "20009", + "neighborhood": "Columbia Heights", + "latitude": 38.9217237, + "longitude": -77.0341122, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1188, + "property_type": "Condo", + "year_built": 2014, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Experience elevated city living in this stunning two-story, 2-bedroom, 2-bath condo. Bathed in natural sunlight, this contemporary home features an airy layout and modern finishes throughout. Built in 2014, the building offers the perfect blend of newer construction and urban convenience. Unwind on your private balcony with sweeping, incredible views that make every day feel special. A true gem in one of DC’s most vibrant neighborhoods.", + "features": [ + "Washer / Dryer in Unit", + "Elevator", + "Central AC", + "Garage", + "Breakfast Bar", + "Chef's Kitchen", + "Cooktop", + "Dishwasher", + "Bike Room", + "Private Storage Included", + "Forced Air", + "Assigned Parking", + "Storage Available", + "Lowrise", + "Security System" + ], + "property_facts": { + "Status": "Coming Soon", + "Pet Policy": "Allowed", + "Property Type": "Condo", + "Year Built": "2014", + "County": "District of Columbia", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Ownership": "Fee Simple", + "Structure Type": "Unit/Flat/Apartment", + "Levels/Stories": "Other", + "Subdivision": "COLUMBIA HEIGHTS (WASHINGTON DC)", + "Total Parking Spaces": "1", + "Central Air": "Yes", + "Basement": "No", + "Above Grade Finished SQFT": "1,188.00", + "New Construction": "No" + }, + "agent": { + "name": "Harrison Halem", + "email": "harrison.halem@compass.com", + "telephone": "3018029281" + } + }, + "2093821945682826265": { + "listing_id": "2093821945682826265", + "source_url": "https://www.compass.com/homedetails/1625-Larimer-St-Unit-1904-Denver-CO-80202/12HC4M_pid/", + "retrieved_at": "2026-09-06T04:11:34.561187+00:00", + "html_sha256": "4da50600af77ef7f702272a48079b7e9365ec3c9835e751e02008dcc5b1a60cf", + "price": 350000, + "address": "1625 Larimer Street, Unit 1904", + "unit": "1904", + "city": "Denver", + "state": "CO", + "zip": "80202", + "neighborhood": "LoDo", + "latitude": 39.7496168, + "longitude": -104.9973713, + "beds": 1, + "baths_full": 1, + "baths_half": 1, + "baths_total": 2, + "sqft": 816, + "property_type": "Condo", + "year_built": 1980, + "mls_number": "8952048", + "status_text": "Closed", + "days_on_market": 2, + "listed_at_ms": 1778738400000, + "description": "Welcome to this beautifully updated 19th floor condo at the Barclay Towers with simply stunning city and mountain views. Recent full renovation. Inside features stainless steel appliances, tile backsplash, soft close cabinets, quartz counters with peninsula/island seating, dining area and open floor plan to the living space. Private primary bedroom and additional bathroom for guests. Garage parking, storage and RARE washer/dryer in unit!\r\n\r\nBuilding amenities include pool, gym, grills, courtyard, and full time concierge. Catch the elevator and come on up. Take a look!", + "features": [ + "Attached Garage", + "Cable Included", + "Carpet Floors", + "Central AC", + "City Views", + "Common Laundry", + "Communal Pool", + "Dishwasher", + "Disposal", + "Doorman", + "Dual Pane Windows", + "Eat-in Kitchen", + "Electricity Included", + "Elevator", + "Forced Air", + "Garage", + "Gym", + "Island Kitchen", + "Laundry in Building", + "Microwave", + "Mountain Views", + "Pantry", + "Parking Included", + "Pet Friendly", + "Refrigerator", + "Sauna", + "Security Included", + "Snow Removal Included", + "Underground Parking", + "Vinyl Floors", + "Washer", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "8952048", + "Days on Compass": "2", + "Pet Policy": "Allowed", + "Taxes": "$2,409 / year", + "HOA Fees": "$8,724 / year", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1980", + "County": "Denver County" + }, + "regional_facts": { + "Structure Type": "High Rise (8+)", + "Architectural Style": "Paved, Eat-in Kitchen, Pantry, Kitchen Island, Full Primary Bath, Condominium", + "View": "City, Mountain(s)", + "Levels": "One", + "Subdivision Name": "Barclay Towers", + "Association": "Yes", + "Multiple Associations": "No", + "Basement": "No" + }, + "agent": { + "name": "Jennifer Stenbak, MBA", + "email": "jennifer.stenbak@compass.com", + "telephone": "3032570904" + } + }, + "2093826804842752145": { + "listing_id": "2093826804842752145", + "source_url": "https://www.compass.com/homedetails/6760-SW-62nd-Ter-Miami-FL-33143/1D0URF_pid/", + "retrieved_at": "2026-09-06T04:12:37.022846+00:00", + "html_sha256": "d61345b9c2b8a4b914aad834c0d41d524623a3caea6c84126707f5f27efa23bc", + "price": 1395000, + "address": "6760 Southwest 62nd Terrace", + "unit": "", + "city": "South Miami", + "state": "FL", + "zip": "33143", + "neighborhood": "South Miami", + "latitude": 25.7121943, + "longitude": -80.3033561, + "beds": 5, + "baths_full": 3, + "baths_half": null, + "baths_total": 3, + "sqft": 2764, + "property_type": "Single Family", + "year_built": 1966, + "mls_number": "A12029112", + "status_text": "Closed", + "days_on_market": 8, + "listed_at_ms": 1780372800000, + "description": "Bring your architect, designer, and vision to this South Miami renovation canvas. Commanding a prime, oversized corner lot, this solid 1966 concrete block home is offered for the first time in its history. Custom-built by the seller and exclusively lived in by a single family, its rare, single-owner pedigree guarantees an uncompromised structural baseline. The property is a true mid-century time capsule preserved in its original condition. Vintage design purists will appreciate the untouched character pieces, including the retro kitchen and classic pink & blue bathrooms with double sinks. The floor plan features a 2-car garage and is flooded with natural light, offering an ideal footprint to configure a modern open-concept flow. To understand the immense potential here, one must look at the surrounding neighborhood dynamics, where luxury homes in SoMi have recently sold for >$6.5M. Even though those properties represent brand-new construction and this is a classic 1966 footprint, there is undeniable value built into this estate. Purchasing a home with this level of structural integrity allows a buyer to bypass the heavy lifting of starting from scratch while capturing the same prestigious neighborhood prestige. Perfectly situated, you are minutes away from top schools, parks & major corridors. Whether your goal is a custom remodel or a high-yield design flip, a corner lot of this magnitude with single-owner frame presents a great foundation. Strictly sold AS-IS, PRICE FIRM.", + "features": [ + "Below Ground Pool", + "Air Conditioning", + "Parking Included" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "A12029112", + "Days on Market": "8", + "Taxes": "$6,400 / year", + "Property Type": "Single Family", + "MLS Type": "Single Family / Single", + "Year Built": "1966", + "Lot Size": "0.31 AC / 13,490 SF", + "County": "Miami-Dade County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Subdivision": "TRANQUILITY ESTS", + "Style": "Pool Only", + "Waterfront": "No", + "View": "Garden View", + "Area": "40", + "Num Stories": "1", + "Sq Ft Total": "3521", + "Sq Ft Liv Area": "2764.0", + "AdjustedAreaSF": "2979.0", + "Year Built Description": "Resale" + }, + "agent": { + "name": "Ana Cortina Leighton", + "email": "ana.leighton@compass.com", + "telephone": "3055868899" + } + }, + "2094258061888190329": { + "listing_id": "2094258061888190329", + "source_url": "https://www.compass.com/homedetails/62-N-3rd-St-Unit-5A-Brooklyn-NY-11249/204LYW_pid/", + "retrieved_at": "2026-09-06T04:12:48.514822+00:00", + "html_sha256": "9c8abf7cde28b3900007a641dc5fafdc3e6c7d97fa27b6c30f1b307bb846fed4", + "price": 8000, + "address": "62 North 3rd Street, Unit 5A", + "unit": "5A", + "city": "Brooklyn", + "state": "NY", + "zip": "11249", + "neighborhood": "Williamsburg", + "latitude": 40.7174349, + "longitude": -73.9633396, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1010, + "property_type": "Condo", + "year_built": 2017, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 9, + "listed_at_ms": 1778527365992, + "description": "If you’ve been looking for a private outdoor space and impeccable quality, character and design, this 2 bed 2 bath apartment has it all - over 1000 sqf on the 5th floor of a boutique condominium, featuring floor-to-ceiling windows, exposed 10’ high concrete ceilings and split bedroom layout — plus it’s own storage. The private balcony extends from the living and main bedroom and is big enough to fit a sofa and dining table with chairs to enjoy on those summer nights, while the floor-to-ceiling windows bring in a luminous wash of all day light.

Central A/C and in-unit washer/dryer are a given - completed with a truly luxurious kitchen that features energy star appliances such as built -in Bosch drawer microwave and dishwasher, the five-burner Bosch stove and the seamlessly built-in Liebherr fridge.

The spa-like master bathroom has marble walls, heated floors, a deep soaking tub and double sink and connects to the bedroom through an enormous walk-in closet.

Building amenities include a virtual doorman security system, a secure package room, bicycle storage, keyless entry, and private storage - which is included in the rent.

The location is unbeatable: just one block away from the waterfront and to the best that Williamsburg has to offer - including the newly opened Trader Joes across the street.

Pets are allowed. ", + "features": [ + "Private Terrace", + "Common Outdoor Space", + "Gym", + "Floor to Ceiling Windows", + "Elevator", + "Washer / Dryer in Unit", + "Central AC", + "Double Sink Bathroom", + "Walk-in Closet", + "Video Intercom", + "Private Storage Included", + "Private Storage For Rent", + "Primary Ensuite with Separate Tub", + "Midrise", + "Storage", + "Lowrise", + "Intercom" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "9", + "Pet Policy": "Allowed", + "Rental Incentives": "No Fee", + "Available Date": "06/30/2026", + "Lease Term": "Lease Length: 12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "3.0", + "Property Type": "Condo", + "Year Built": "2017", + "County": "Kings County" + }, + "regional_facts": {}, + "agent": { + "name": "Zsuzsanna Bircsak", + "email": "zsuzsanna.bircsak@compass.com", + "telephone": "9293917584" + } + }, + "2094356142457399105": { + "listing_id": "2094356142457399105", + "source_url": "https://www.compass.com/homedetails/2544-W-North-Ave-Unit-2B-Chicago-IL-60647/1XOFDT_pid/", + "retrieved_at": "2026-09-06T04:11:19.142295+00:00", + "html_sha256": "250a918d1b5648e3296f34a6e356c746199ef631c1f6437d0607905fa5ca60b6", + "price": 526500, + "address": "2544 West North Avenue, Unit 2B", + "unit": "2B", + "city": "Chicago", + "state": "IL", + "zip": "60647", + "neighborhood": "Wicker Park", + "latitude": 41.910518, + "longitude": -87.6915709, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1500, + "property_type": "Condo", + "year_built": null, + "mls_number": "12642786", + "status_text": "Closed", + "days_on_market": 6, + "listed_at_ms": 1778648400000, + "description": "Sought-after, architecturally significant loft featuring exposed brick, timber beams, soaring ceilings, and oversized windows that fill the South-facing home with natural light year round. Homes are rarely available in this building - don't miss your chance! The extra-wide layout offers exceptional flexibility, highlighted by a spacious primary suite with dedicated home office. Tastefully updated kitchen includes stainless appliances, including a gas range, granite countertops and on-trend backsplash and updated bathrooms blend modern finishes with classic loft character. Additional features include in-unit washer/dryer, an impressive 28' x 8' private storage locker, and one exterior parking space. Enjoy the panoramic shared roof deck with sweeping city views. Unbeatable location that is conveniently close to the CTA Blue Line and The 606 Trail, with easy access to Wicker Park, Bucktown, Humboldt Park and Logan Square favorites. This is true loft living at its best.", + "features": [ + "Common Roof Deck", + "On-site Parking", + "Assigned Parking", + "Washer / Dryer in Unit", + "Central AC", + "Gas Heat", + "Hardwood Floors", + "High Ceilings", + "Bike Room", + "Common Storage", + "Common Patio", + "Storage Available", + "Parking Included", + "Pet Friendly", + "Lowrise", + "Security System" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "12642786", + "Days on Market": "6", + "Pet Policy": "Allowed", + "Taxes": "$7,498 / year", + "HOA Fees": "$252 / month", + "Property Type": "Condo", + "MLS Type": "Attached Single / Condo", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - West Town", + "Township": "West Chicago", + "Ownership": "Condo", + "Num Of Garage Spaces": "0.0", + "Num Of Parking Spaces": "1.0", + "Parking Included in Price": "Yes", + "Air Conditioning Type": "Central Air", + "Heat/Fuel": "Natural Gas", + "Pets Allowed": "Yes" + }, + "agent": { + "name": "Jessica Coulson", + "email": "jessica.coulson@compass.com", + "telephone": "8473343356" + } + }, + "2094449974113275841": { + "listing_id": "2094449974113275841", + "source_url": "https://www.compass.com/homedetails/3426-NW-Market-St-Seattle-WA-98107/1S2XSG_pid/", + "retrieved_at": "2026-09-06T04:13:45.426790+00:00", + "html_sha256": "158ccf39e8753c248d5e4beea27efdee1a7a6d6361bfa150b4c3c7fec6ad11fa", + "price": 990000, + "address": "3426 Northwest Market Street", + "unit": "", + "city": "Seattle", + "state": "WA", + "zip": "98107", + "neighborhood": "Sunset Hill", + "latitude": 47.6688726, + "longitude": -122.4021297, + "beds": 3, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 1520, + "property_type": "Single Family", + "year_built": 2014, + "mls_number": "2515322", + "status_text": "Sold", + "days_on_market": 33, + "listed_at_ms": 1777446000000, + "description": "Not all modern homes are created equal, and this one proves it. This stand-alone 3-bedroom home is perched to capture unobstructed views of Salmon Bay & Shilshole, and stands apart with something rarely found in newer construction: both gorgeous scenery and a truly usable yard. Floor-to-ceiling windows with southwestern exposure flood the home with natural light while framing stunning water and mountain views from nearly every level. Enjoy golden hour from the living room, unwind in the primary suite, or take it all in from the rooftop deck, complete with a wet bar for effortless entertaining and 360-degree views that never get old. The flexible layout offers space to live, work, and host with ease. The primary suite is a true retreat with sweeping views, a large walk-in closet, and a spa-like 5-piece bath. Outside, the large yard delivers what most vertical homes cannot. A deck for dining, garden beds, storage shed, and plenty of space for a dog to run. Off-street parking included. Tucked into a quieter pocket just moments from Ballard’s shops, restaurants, and brewery scene, you get the best of both worlds with walkability when you want it and a peaceful retreat when you do not. A rare blend of style, function, and views, because you should not have to choose.", + "features": [ + "Air Conditioning", + "Bay Views", + "Carpet Floors", + "Ceramic Floors", + "City Views", + "Dishwasher", + "Disposal", + "Driveway", + "Dryer", + "Hardwood Floors", + "Microwave", + "Modern", + "Off-Street Parking", + "Refrigerator", + "Walk-in Closet", + "Washer", + "Wet Bar" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "2515322", + "Days on Market": "33", + "Cumulative Days on Market": "92", + "Taxes": "$8,796 / year", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "2014", + "Lot Size": "0.03 AC / 1,246 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Ballard", + "School District": "Seattle", + "View": "Bay, City, Mountains, Sound, Territorial", + "Number of Assigned Spaces": "1", + "Total Covered Parking": "0", + "Entry Date": "04-29-2026", + "Energy Source": "Electric,Natural Gas", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "Shoshana Godwin", + "email": "shoshana.godwin@compass.com", + "telephone": "3608880777" + } + }, + "2094470215975252201": { + "listing_id": "2094470215975252201", + "source_url": "https://www.compass.com/homedetails/1108-39th-Ave-E-Seattle-WA-98112/1RWGOP_pid/", + "retrieved_at": "2026-09-06T04:13:49.160126+00:00", + "html_sha256": "7003b444c81f2a9b948cf84ee45f6b6f2fcea48c113d27d14363b01d261a4c87", + "price": 4575000, + "address": "1108 39th Avenue East", + "unit": "", + "city": "Seattle", + "state": "WA", + "zip": "98112", + "neighborhood": "Denny Blaine", + "latitude": 47.6289224, + "longitude": -122.2823331, + "beds": 4, + "baths_full": 2, + "baths_half": 1, + "baths_total": 3.25, + "sqft": 4540, + "property_type": "Single Family", + "year_built": 1924, + "mls_number": "2514865", + "status_text": "Sold", + "days_on_market": 15, + "listed_at_ms": 1777446000000, + "description": "Offered for the first time in 53 years—an iconic Washington Park showpiece, where legacy, architectural presence & breathtaking, cinematic views harmonize! Set on one of the most desired streets in Washington Park, this striking residence channels the quiet glamour of the Hollywood Hills within one of Seattle’s most coveted locations. Spanning a beautifully proportioned 8,450-sq ft parcel, this beauty delivers an unforgettable arrival with unparalleled curb appeal—architectural, luminous & magnetic! Walls of glass frame sweeping vistas of Lake Washington, Mount Rainier & the Cascade Mountains, with light moving through the interiors from sunrise to sunset. Gracious living & dining spaces flow seamlessly for elevated entertaining. French doors open, creating a fluid indoor-outdoor experience, while a cozy den with a built-in bar offers a more intimate retreat. Upstairs, three bedrooms & two baths include a stunning primary suite—spacious & serene—anchored by a wood-burning stove & framed by panoramic, far-reaching, dazzling views. Below, a private guest suite is complemented by generous storage. A sun-drenched terrace invites effortless lounging, dining & golden-hour gatherings, all set against the ever-changing light over the water. Impeccably maintained & absolutely immaculate, with a two-car EV-ready garage & just moments from the Madison Park Village. An extraordinary offering—iconic, elevated, unforgettable.", + "features": [ + "Air Conditioning", + "Attached Garage", + "Basement", + "Carpet Floors", + "Ceramic Floors", + "City Views", + "Concrete Floors", + "Dishwasher", + "Disposal", + "Double Oven", + "Dryer", + "Fireplace", + "Forced Air", + "Garage", + "Hardwood Floors", + "Lake Views", + "Marble Floors", + "Microwave", + "Refrigerator", + "Security System", + "Skylight", + "Walk-in Closet", + "Washer", + "Wet Bar" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "2514865", + "Days on Market": "15", + "Cumulative Days on Market": "15", + "Taxes": "$37,639 / year", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "1924", + "Lot Size": "0.19 AC / 8,450 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Washington Park", + "School District": "Seattle", + "View": "City, Lake, Mountains, Territorial", + "Number of Assigned Spaces": "4", + "Total Covered Parking": "2", + "Entry Date": "04-29-2026", + "Energy Source": "Electric,Natural Gas", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "Spafford Robbins", + "email": "spafford.robbins@compass.com", + "telephone": "2069637770" + } + }, + "2094524796503321457": { + "listing_id": "2094524796503321457", + "source_url": "https://www.compass.com/homedetails/2470-43rd-Ave-San-Francisco-CA-94116/1Q39AU_pid/", + "retrieved_at": "2026-09-06T04:13:33.439996+00:00", + "html_sha256": "948697fb12b839803592f48aaede6ad838009903db4c6bd55a2338d4dc361d24", + "price": 2115000, + "address": "2470 43rd Avenue", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94116", + "neighborhood": "Outer Parkside", + "latitude": 37.7406232, + "longitude": -122.5010612, + "beds": 4, + "baths_full": 3, + "baths_half": null, + "baths_total": 3, + "sqft": 1821, + "property_type": "Single Family", + "year_built": 1944, + "mls_number": "ML82045740", + "status_text": "Sold", + "days_on_market": 16, + "listed_at_ms": 1778569200000, + "description": "Step into this fully reimagined 4-bedroom, 3-bathroom gem in the heart of Outer Parkside, where modern elegance meets coastal charm. From the moment you enter, youre greeted by an open, airy layout designed to maximize natural lighthighlighted by gleaming hardwood floors, sophisticated recessed lighting, and built-in ceiling speakers that bring music and ambiance to every corner of the home. The kitchen is a true showstopper, boasting breathtaking ocean views that make every meal feel like a retreat. Thoughtfully updated with brand-new electrical, plumbing, a sleek new roof, new HVAC and built-in sound system, ethernet wired in all rooms, this home has been crafted for both style and peace of mind. The artistic design touches, including an electric fireplace in the living room, create cozy yet striking spaces perfect for relaxing or entertaining. Downstairs, a spacious family room offers endless possibilities, while the expansive deck and low-maintenance backyard provide ample room for outdoor gatherings or quiet afternoons soaking in the coastal breeze. This home isn't just a place to liveits a lifestyle upgrade waiting to happen. Don't miss the chance to call this masterpiece your own!", + "features": [ + "Fireplace" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "ML82045740", + "Days on Compass": "16", + "Property Type": "Single Family", + "MLS Type": "Single-Family Homes / Single-Family Homes", + "Year Built": "1944", + "Lot Size": "0.07 AC / 3,000 SF", + "County": "San Francisco County" + }, + "regional_facts": { + "MLS City Name": "SAN FRANCISCO", + "Building Type": "Detached", + "Garage Spaces": "1", + "Cross Street": "Taraval" + }, + "agent": { + "name": "Jenny Lu Wang", + "email": "jenny.wang@compass.com", + "telephone": "6502886600" + } + }, + "2095117238428302473": { + "listing_id": "2095117238428302473", + "source_url": "https://www.compass.com/homedetails/1419-McGilvra-Blvd-E-Seattle-WA-98112/1S13FU_pid/", + "retrieved_at": "2026-09-06T04:13:46.906654+00:00", + "html_sha256": "404f40b431f547d7b30f7d1d54d06f926726be091fc6318c9bc9e3183920c6ec", + "price": 1995000, + "address": "1419 McGilvra Boulevard East", + "unit": "", + "city": "Seattle", + "state": "WA", + "zip": "98112", + "neighborhood": "Madison Park", + "latitude": 47.63159690000001, + "longitude": -122.2817245, + "beds": 3, + "baths_full": 1, + "baths_half": null, + "baths_total": 2.5, + "sqft": 3430, + "property_type": "Single Family", + "year_built": 1927, + "mls_number": "2512560", + "status_text": "Pending", + "days_on_market": 94, + "listed_at_ms": 1777532400000, + "description": "A striking Stuart Silk–designed contemporary—custom, refined & undeniably cool! This architectural showpiece unfolds w/ dramatic scale: soaring ceilings, walls of glass & bold, sculptural lines that create a breathtaking sense of volume, light & presence. Flooded with natural light, every space feels elevated and expansive. Sleek, modern, and serene, the residence lives as a private, design-forward sanctuary. A stunning chef’s kitchen—appointed w/ Wolf & Bosch appliances—anchors expansive, open-concept living spaces designed for elevated entertaining. Airy, lofted volumes enhance the home’s dynamic flow, where each space feels both connected & intentional. Offering 3 bedrooms & 2.5 bathrooms, this gem is thoughtfully designed w/ floor-to-ceiling built-ins & a standout flex den/office w/ partial Lake Washington views—an inspired architectural moment w/ dramatic wow factor! Vaulted ceilings & walls of windows sharpen the modern aesthetic, allowing light to pour in from every angle. Copious storage, alley access & a spacious two-car garage. This polished, editorial-worthy residence is perfectly positioned just moments from Madison Park, steps to waterfront beaches & nearby tennis courts. Enjoy effortless access to beloved cafés, boutique shops & some of Seattle’s best dining—an exceptional, walkable lifestyle in one of the city’s most coveted enclaves!", + "features": [ + "Air Conditioning", + "Basement", + "Carpet Floors", + "Ceramic Floors", + "Concrete Floors", + "Dishwasher", + "Disposal", + "Dryer", + "Forced Air", + "Garage", + "Hardwood Floors", + "Lake Views", + "Partial Basement", + "Refrigerator", + "Security Gate", + "Washer" + ], + "property_facts": { + "Status": "Pending", + "MLS #": "2512560", + "Days on Market": "94", + "Cumulative Days on Market": "94", + "Taxes": "$23,125 / year", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "1927", + "Lot Size": "0.08 AC / 3,600 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Washington Park", + "School District": "Seattle", + "View": "Lake, Partial, Territorial", + "Number of Assigned Spaces": "2", + "Total Covered Parking": "2", + "Entry Date": "04-30-2026", + "Energy Source": "Natural Gas", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "Spafford Robbins", + "email": "spafford.robbins@compass.com", + "telephone": "2069637770" + } + }, + "2095146936190510225": { + "listing_id": "2095146936190510225", + "source_url": "https://www.compass.com/homedetails/4907-Majestic-Dr-Austin-TX-78745/1FHQRA_pid/", + "retrieved_at": "2026-09-06T04:10:40.193408+00:00", + "html_sha256": "37d997cf488d763d05f289db289a44c9095f42a93359facd641d1b6d50222160", + "price": 745000, + "address": "4907 Majestic Drive", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78745", + "neighborhood": "Park Forest", + "latitude": 30.2199084, + "longitude": -97.78741199999999, + "beds": 3, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 1772, + "property_type": "Single Family", + "year_built": 2026, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Welcome to The Majestic Residences — a boutique infill community where modern design meets intentional South Austin living.\n\nThis thoughtfully designed collection offers three distinct residences, each with its own personality and lifestyle appeal — giving buyers the rare opportunity to choose a home that truly fits the way they live.\n\nThe front residence delivers standout curb appeal and a strong street presence, perfect for those who appreciate a classic single-family feel. The middle unit is designed for ease and efficiency, featuring a thoughtful yard — just enough space for your pup — paired with a true lock-and-leave lifestyle. The rear residence offers added privacy with a fully fenced yard, ideal for entertaining, pets, or creating your own outdoor retreat.\n\nInside, each home is elevated with carefully curated selections, blending modern finishes with warm, livable design. Expect custom lighting, elevated details, and unique touches that set these residences apart from typical new construction. Every unit is also equipped with EV charging capability, bringing convenience and future-forward living to your doorstep.\n\nLocated just minutes from downtown Austin — you’re perfectly positioned near South Lamar’s most sought-after destinations. Start your day at Radio Coffee & Beer or Cosmic Coffee + Beer Garden, and wind down at local favorites like Loro, Uchi, and Matt's El Rancho.\n\nWhether you're seeking low-maintenance luxury, outdoor space, or a stylish home base close to the city’s energy, The Majestic Residences deliver a refined, flexible lifestyle in one of Austin’s most dynamic neighborhoods.\n\nThree homes. Three lifestyles. One exceptional address.\n\nAll units are 3 beds, 2.5 baths.\n\nCompletion - Summer 2026\n\nDM for a private tour! ", + "features": [ + "High Ceilings" + ], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Single Family", + "Year Built": "2026", + "County": "Travis County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision Name": "Park Forest ", + "Waterfront": "No", + "Elementary School District": "Austin ISD" + }, + "agent": { + "name": "Barbie Bowen", + "email": "barbie.bowen@compass.com", + "telephone": "5126099211" + } + }, + "2095177779264693489": { + "listing_id": "2095177779264693489", + "source_url": "https://www.compass.com/homedetails/305-W-98th-St-Unit-4AN-Manhattan-NY-10025/200DC1_pid/", + "retrieved_at": "2026-09-06T04:12:50.008357+00:00", + "html_sha256": "5ecb586591d4358e91cec2fadadce6f8a826749128027e13911a642b37744b89", + "price": 930000, + "address": "305 West 98th Street, Unit 4AN", + "unit": "4AN", + "city": "Manhattan", + "state": "NY", + "zip": "10025", + "neighborhood": "Upper West Side", + "latitude": 40.7970607, + "longitude": -73.97274110000001, + "beds": 1, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": null, + "property_type": "Co-op", + "year_built": 1930, + "mls_number": "", + "status_text": "Sold", + "days_on_market": 0, + "listed_at_ms": 1778875877824, + "description": "A rare balance of classic charm and modern ease, this thoughtfully reimagined residence at the Schuyler Arms offers the best of prewar character and contemporary, open-plan sensibility.\n\nBathed in natural light from five generously proportioned windows, this home feels both airy and inviting. The footprint offers remarkable flexibility: the oversized one-bedroom layout can be seamlessly converted into a Two-Bedroom configuration, yielding a substantial primary, with a spacious second bedroom.\n\nFour well-appointed closets, including a walk-in, provide exceptional storage. The expansive, step-down primary suite creates a sense of separation and retreat. \n\nAt the heart of the home, a sleek, modern kitchen pairs rich cherry cabinetry with granite countertops and a large central island, ideal for casual dining or effortless entertaining. Premium appliances, including a concealed Liebherr refrigerator and Frigidaire dishwasher, complete the space with style and functionality.\n\nThe renovated bathroom features a deep soaking tub complemented by Hansgrohe fixtures. Soaring Nine-Foot ceilings enhance the sense of volume throughout, while tranquil views over a tree-lined street add a layer of calm.\n\nResidents of this pet-friendly cooperative enjoy a full-service lifestyle, including a 24-hour attended lobby, live-in superintendent, two updated laundry rooms, and bike storage (waitlist). The incredibly low monthly maintenance of $1,766.05 covers Spectrum cable.\n\nPerfectly positioned just moments from Riverside Park, with convenient access to local and express subway lines as well as the crosstown M96 bus. Please note: pieds-à-terre are not permitted, and a 2% transfer fee is payable by the seller.\n\nAn exceptional opportunity to own a refined, flexible home in a coveted setting—one that truly delivers on both style and substance.\n\n*There is a current assessment of $247.50/month.\n", + "features": [ + "Doorman", + "Full-Time Doorman", + "Concierge", + "Hardwood Floors", + "High Ceilings", + "Oversized Windows", + "Elevator", + "Laundry in Building", + "Window AC Installed", + "Dishwasher", + "Renovated Bath", + "Granite Kitchen Counter", + "Northern Exposure", + "Recessed Lighting", + "Walk-in Closet", + "Bike Room", + "Refrigerator", + "Contemporary", + "Midrise" + ], + "property_facts": { + "Status": "Sold", + "Days on Market": "0", + "Pet Policy": "Allowed", + "Maintenance": "$1,766 / month", + "Min. Down Pymt": "20%", + "Total Rooms": "3.0", + "Property Type": "Co-op", + "MLS Type": "Co-op", + "Year Built": "1930", + "County": "New York County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": {}, + "agent": { + "name": "Niklas Hackstein", + "email": "niklas.hackstein@compass.com", + "telephone": "7186661377" + } + }, + "2095758880146018681": { + "listing_id": "2095758880146018681", + "source_url": "https://www.compass.com/homedetails/634-Washington-St-Unit-4B-Manhattan-NY-10014/20NKIJ_pid/", + "retrieved_at": "2026-09-06T04:12:52.343613+00:00", + "html_sha256": "9a1d85e21dc5a71f46c85dc5dccc368859ed345321ed0171b7084a7941f26ad6", + "price": 1750000, + "address": "634 Washington Street, Unit 4B", + "unit": "4B", + "city": "Manhattan", + "state": "NY", + "zip": "10014", + "neighborhood": "West Village", + "latitude": 40.732216, + "longitude": -74.0089362, + "beds": 3, + "baths_full": 1, + "baths_half": 1, + "baths_total": 1.5, + "sqft": null, + "property_type": "Co-op", + "year_built": 1975, + "mls_number": "", + "status_text": "Contract Signed", + "days_on_market": 18, + "listed_at_ms": 1777904697502, + "description": "Welcome to Apartment 4B at 634 Washington Street—a rare West Village corner duplex with 3\nexposures, offering scale, light, and an exceptional layout.\n\nSpanning across the 4th and 5th floors but only 3 flights up, this three-bedroom, one-and-a-half-bath home is thoughtfully laid out with a loft space, an abundance of closets throughout and additional storage under the stairs.\n\nEnter through the foyer and into a dramatic west facing living room with a double-height ceiling and large windows that bring in beautiful afternoon light. Adjacent is a proper windowed dining area, well-suited for entertaining, and a galley kitchen with electric stove, dishwasher and a closet space for a washer/dryer. The potential exists to open the wall for a more expansive, open layout.\n\nThe lower level features a powder room and the first of three king-sized bedrooms, this one facing east with beautiful morning light. There are hard wood floors throughout and thru the wall air conditioning.\n\nUpstairs, a south facing windowed loft overlooks the living room and offers flexibility as a home office, reading nook, or fitness area. This level also includes a full bathroom and two additional\nking-sized bedrooms. The largest bedroom features a full wall of closets and open views facing east and the second bedroom faces west.\n\nWest Village Houses is a well-maintained, financially sound cooperative comprised of 420\nresidences, with beautifully landscaped gardens, a live-in superintendent, laundry facilities, bike storage, video intercom, private security, and notably low maintenance.\n\nLocated just one block from the Hudson River waterfront and park, with easy access to bike and\njogging paths, and the PATH train. Also close to the Whitney Museum, City Island, Chelsea Market, Brooklyn Fair and the neighborhood’s best dining, shopping, and cultural offerings.", + "features": [ + "Penthouse", + "Corner Unit", + "Common Garden", + "Hardwood Floors", + "Walk Up", + "Washer / Dryer Hookup", + "Laundry in Building", + "Wall Unit", + "Dishwasher", + "Formal Dining Room", + "Foyer", + "Powder Room", + "Home Office", + "Galley Kitchen", + "Southern Exposure", + "Eastern Exposure", + "Western Exposure", + "Voice Intercom", + "Video Intercom", + "Bike Room", + "Midrise", + "Parking Included", + "Intercom", + "Lowrise" + ], + "property_facts": { + "Status": "Contract Signed", + "Days on Market": "18", + "Pet Policy": "Allowed", + "Maintenance": "$3,038 / month", + "Min. Down Pymt": "20%", + "Total Rooms": "6.5", + "Property Type": "Co-op", + "MLS Type": "Co-op", + "Year Built": "1975", + "County": "New York County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": {}, + "agent": { + "name": "Danielle Sevier", + "email": "dsevier@compass.com", + "telephone": "9179915386" + } + }, + "2095760251155001393": { + "listing_id": "2095760251155001393", + "source_url": "https://www.compass.com/homedetails/629-5th-St-NE-Washington-DC-20002/1U52VE_pid/", + "retrieved_at": "2026-09-06T04:14:14.016724+00:00", + "html_sha256": "7058c237b4721a24908c726336c59e95e6ae8c018a5173c30fc8d982b1830ea7", + "price": 1151000, + "address": "629 5th Street Northeast", + "unit": "", + "city": "Washington", + "state": "DC", + "zip": "20002", + "neighborhood": "Capitol Hill", + "latitude": 38.8981507, + "longitude": -76.99923810000001, + "beds": 3, + "baths_full": 3, + "baths_half": null, + "baths_total": 3, + "sqft": 2161, + "property_type": "Townhouse", + "year_built": 1910, + "mls_number": "DCDC2265942", + "status_text": "Closed", + "days_on_market": 3, + "listed_at_ms": 1781323200000, + "description": "One of the best values on one of the best blocks on Capitol Hill, 629 5th Street NE offers the space, flexibility and location that buyers have been waiting for. Freshly painted and polished, this classic Hill residence is move-in ready while still offering room to personalize and make it your own.\n\nStep inside to a welcoming foyer that opens to a spacious living room filled with natural light—an inviting space for relaxing, entertaining, or gathering with friends and family. The adjoining dining room easily accommodates both everyday meals and holiday celebrations.\n\nThe lower level kitchen/family room combination provides ample workspace, storage and an informal dining area. French doors provide direct access to the updated gigantic rear outdoor space, making grilling, gardening, and al fresco dining a breeze. Alley access off rear patio makes the creation of off street parking possible with a simple regrade. \n\nUpstairs, you'll find generously sized bedrooms with excellent closet space and flexibility for a variety of needs. The primary bedroom with en suite bath offers a peaceful retreat, while additional bedroom and bonus skylit den can easily serve as guest rooms, children's rooms, home offices, or creative spaces. Each bedroom has its own full bath. The 3rd bedroom with full bath is located on the lower level. \n\nThe location is exceptional—set on one of Capitol Hill's most desirable blocks, just moments from parks, schools, neighborhood restaurants, local shops, and convenient Metro access.\n\nOffering generous room sizes, a flexible floor plan, fresh updates, and an unbeatable location, 629 5th Street NE represents a rare opportunity to own a spacious Capitol Hill home at an exceptional value.", + "features": [ + "Dryer", + "Washer", + "Air Conditioning", + "Fireplace", + "Basement" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "DCDC2265942", + "Days on Market": "3", + "Taxes": "$7,767 / year", + "Property Type": "Townhouse", + "MLS Type": "Residential / Fee Simple", + "Year Built": "1910", + "Lot Size": "0.04 AC / 1,610 SF", + "County": "District of Columbia", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Tax ID Number": "0834//0041", + "Ownership": "Fee Simple", + "Condo Coop Association": "No", + "HOA": "No", + "Structure Type": "Interior Row/Townhouse", + "Style": "Victorian", + "Levels/Stories": "3", + "Waterfront": "No", + "Garage": "No", + "Subdivision": "CAPITOL HILL (WASHINGTON DC)", + "Legal Subdivision": "Old City 1", + "Total Parking Spaces": "0", + "Central Air": "Yes", + "Basement": "Yes", + "Above Grade Finished SQFT": "1,596.00", + "Above Grade Fin SQFT Source": "Assessor", + "Below Grade Finished SQFT": "565.00", + "Below Grade Fin SQFT Source": "Assessor", + "Below Grade Unfinished SQFT": "233.00", + "Below Grade Unfin SQFT Source": "Assessor", + "Total Below Grade SQFT": "798.00", + "Total Below Grade SQFT Source": "Assessor", + "New Construction": "No" + }, + "agent": { + "name": "Dare Johnson", + "email": "dare@compass.com", + "telephone": "2029572947" + } + }, + "2095783539130259441": { + "listing_id": "2095783539130259441", + "source_url": "https://www.compass.com/homedetails/1555-N-Wood-St-Unit-201-Chicago-IL-60622/1X46M8_pid/", + "retrieved_at": "2026-09-06T04:11:20.463950+00:00", + "html_sha256": "80b54133b1e8e225568b2019de0ca7ce26550774f20f789f08f4e73a68f8438e", + "price": 805000, + "address": "1555 North Wood Street, Unit 201", + "unit": "201", + "city": "Chicago", + "state": "IL", + "zip": "60622", + "neighborhood": "Wicker Park", + "latitude": 41.91030019999999, + "longitude": -87.6722226, + "beds": 3, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": null, + "property_type": "Condo", + "year_built": 2004, + "mls_number": "12638411", + "status_text": "Closed", + "days_on_market": 11, + "listed_at_ms": 1778562000000, + "description": "Welcome to the heart of Bucktown/Wicker Park! This extra-wide, corner 3-bedroom, 2-bath residence offers an exceptional blend of style, space, and convenience. Enjoy elevator access and garage parking, along with abundant natural light streaming through oversized picture windows and soaring 10' ceilings. The recently renovated kitchen features custom two-toned cabinetry, extended quartz countertops, and a full suite of stainless steel appliances, including a wine cooler. The expansive living and dining area is perfect for entertaining, complete with a sleek, stone tiled gas fireplace. Throughout the home, you'll find wide-plank engineered hardwood flooring and generous storage. The spacious primary suite offers a true retreat, with a spa-like bath featuring a separate soaking tub and shower, along with a large, professionally organized walk-in closet. Both 2nd and 3rd bedrooms are equal size and provide functional space for bedroom or office. Step outside to two private outdoor spaces, a welcoming front terrace and an expansive rear deck, ideal for relaxing or hosting guests. All of this in an unbeatable location just steps from Six Corners, the Blue Line, the expressway, the 606 Trail, and some of the neighborhood's best dining, shopping, and nightlife.", + "features": [ + "Balcony", + "Deck", + "Common Outdoor Space", + "Elevator", + "Garage", + "Attached Parking", + "Dryer", + "Washer", + "Central AC", + "Ceiling Fan", + "Gas Heat", + "Dishwasher", + "Microwave", + "Stainless Steel Appliances", + "Disposal", + "Refrigerator", + "Fireplace", + "Hardwood Floors", + "Voice Intercom", + "Cable Included", + "Private Outdoor Space", + "Pet Friendly", + "Snow Removal Included", + "Range", + "Washer Hookup", + "Pets Conditional", + "Lowrise", + "Security System" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "12638411", + "Days on Market": "11", + "Pet Policy": "Allowed", + "Taxes": "$11,940 / year", + "HOA Fees": "$444 / month", + "Property Type": "Condo", + "MLS Type": "Attached Single / Condo", + "Year Built": "2004", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - West Town", + "Township": "West Chicago", + "Ownership": "Condo", + "Num Of Garage Spaces": "1.0", + "Num Of Parking Spaces": "1.0", + "Parking Included in Price": "Yes", + "Air Conditioning Type": "Central Air", + "Num of Interior Fireplaces": "1", + "Heat/Fuel": "Natural Gas", + "Pets Allowed": "Yes" + }, + "agent": { + "name": "Elizabeth Lothamer", + "email": "elizabeth.lothamer@compass.com", + "telephone": "7736555344" + } + }, + "2095788616787751217": { + "listing_id": "2095788616787751217", + "source_url": "https://www.compass.com/homedetails/2-Haven-St-Boston-MA-02118/1Z6WDG_pid/", + "retrieved_at": "2026-09-06T04:10:56.821654+00:00", + "html_sha256": "da9087b4d18dd5c4ceb4fac618cd8c4e12c086810ec50525c826470af0b8af31", + "price": 2925000, + "address": "2 Haven Street", + "unit": "", + "city": "Boston", + "state": "MA", + "zip": "02118", + "neighborhood": "South End", + "latitude": 42.339128, + "longitude": -71.0746805, + "beds": 4, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 2391, + "property_type": "Single Family", + "year_built": 1890, + "mls_number": "73518913", + "status_text": "Sold", + "days_on_market": 26, + "listed_at_ms": 1778731200000, + "description": "Tucked along a quiet one-way street & backing directly to one of the South End's most coveted gardens, 2 Haven St is a four-bedroom single-family home w/ a personality all its own, thoughtfully designed throughout, w/ details that set it apart. The main level is made for easy living, an open kitchen, dining, & living layout that flows naturally to a private patio, w/ the garden beyond creating a rare sense of depth & greenery seldom found in the city. Upstairs, four full bedrooms are joined by two flex spaces, adaptable to a home office, gym, nursery, or guest suite, offering a versatility that grows with the home. Distinctive design runs throughout, with considered finishes & well-placed niches that give the home genuine character within an efficient layout. A full, unfinished basement provides suburban-like storage, & garage rental parking across the street is a meaningful convenience. 2 Haven Street delivers privacy, outdoor space, & architectural character in equal measure.", + "features": [ + "Air Conditioning", + "Forced Air", + "Garage", + "Hardwood Floors", + "Parking Included", + "Private Outdoor Space", + "Full Basement" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "73518913", + "Days on Market": "26", + "Taxes": "$21,813 / year", + "Property Type": "Single Family", + "MLS Type": "Single Family / Attached", + "Year Built": "1890", + "County": "Suffolk County", + "Compensation Remarks": "Seller will consider offers with buyer's agent compensation" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "South End", + "Area": "MA-Boston-South End, MA-Boston", + "Architectural Style": "Other (See Remarks)", + "Style": "Other (See Remarks)", + "Garage Spaces": "1", + "Open Parking Spaces": ".00", + "Parking Spaces Total": "1" + }, + "agent": { + "name": "Kopman Adler + Co", + "email": "kopmanadler@compass.com", + "telephone": "617.309.9495" + } + }, + "2095855481308818553": { + "listing_id": "2095855481308818553", + "source_url": "https://www.compass.com/homedetails/Address-Upon-Request-Jamaica-Plain-MA-02130/2095855481308818553_lid/", + "retrieved_at": "2026-09-06T04:53:06.974409+00:00", + "html_sha256": "cbee9e21ae104e3d8b8df89dbfaba30774aa35d17d515aa6a3da7feda8d00b24", + "price": 825000, + "address": "3305 Washington Street, Unit 204", + "unit": "204", + "city": "Boston", + "state": "MA", + "zip": "02130", + "neighborhood": "Jamaica Plain", + "latitude": 42.3105829, + "longitude": -71.1038034, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1188, + "property_type": "Condo", + "year_built": 2021, + "mls_number": "73517642", + "status_text": "Sold", + "days_on_market": 5, + "listed_at_ms": 1778644800000, + "description": "Skip the renovations. This one's already perfect. Welcome to 3305 Washington St — a stunning 2-bed, 2-bath condo offering 1,100+ sq ft of modern luxury in the heart of Jamaica Plain. Built in 2021, every detail has been accounted for. The open-concept layout is flooded with natural light from oversized windows and anchored by a chef's kitchen featuring Calcutta quartz counters, a dramatic slab backsplash, top-of-the-line Bosch appliances, beverage fridge and a large pantry for all the storage you never thought you'd have in the city. Relax in the spacious primary suite with a large walk-in closet, or step out to your private covered outdoor space — a rare city find. Designer bathrooms with Grohe hardware add a spa-like touch. Central A/C, GE front-loading in-unit laundry, heated garage parking, deeded storage, and a gated common courtyard complete the package. Two blocks from the Green Street T, with JP's best restaurants, breweries, and Franklin Park at your doorstep", + "features": [ + "Washer / Dryer in Unit", + "Dryer", + "Washer", + "Air Conditioning", + "Forced Air", + "Central Heating", + "Off-Street Parking", + "Garage", + "Common Outdoor Space", + "Dishwasher", + "Microwave", + "Disposal", + "Range", + "Refrigerator", + "Freezer", + "Tennis Court", + "Private Outdoor Space", + "Golf Course Community", + "Gas Heat", + "Attached Garage", + "Parking Included", + "Pets Conditional", + "Snow Removal Included" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "73517642", + "Days on Market": "5", + "Taxes": "$9,445 / year", + "HOA Fees": "$460 / month", + "Property Type": "Condo", + "MLS Type": "Condominium/Co-Op / Condo", + "Year Built": "2021", + "County": "Suffolk County" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "Jamaica Plain", + "Area": "MA-Boston-Jamaica Plain, MA-Boston", + "Style": "Mid-Rise", + "Garage Spaces": "1", + "Open Parking Spaces": ".00", + "Parking Spaces Total": "1", + "Unit Placement": "Back, Middle" + }, + "agent": { + "name": "The Muncey Group", + "email": "themunceygroup@compass.com", + "telephone": "617-905-6445" + } + }, + "2095873168370080441": { + "listing_id": "2095873168370080441", + "source_url": "https://www.compass.com/homedetails/Kingsboro-Park-Jamaica-Plain-MA-02130/2095873168370080441_lid/", + "retrieved_at": "2026-09-06T04:10:57.178993+00:00", + "html_sha256": "3691f029e7f50b1440e3bd07b05186b5690fa0ec3e52d243a2c15356e00b429a", + "price": 805000, + "address": "15 Kingsboro Park, Unit 2", + "unit": "2", + "city": "Boston", + "state": "MA", + "zip": "02130", + "neighborhood": "Jamaica Plain", + "latitude": 42.3179481, + "longitude": -71.11154549999999, + "beds": 3, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 1184, + "property_type": "Condo", + "year_built": 1920, + "mls_number": "73517437", + "status_text": "Sold", + "days_on_market": 6, + "listed_at_ms": 1778644800000, + "description": "Enjoy all that Jamaica Plain has to offer on this vibrant, dead-end street in the middle of it all. The backyard is perfect for entertaining, and when you need a break, retreat to the large sunroom and curl up with your favorite book. The open dining and living room are perfect for hosting gatherings, and the kitchen with a large pantry, and ample counter space make it a breeze. Beamed ceilings, a built-in china cabinet, and a decorative fireplace add a charming, historic touch throughout. Rest easy knowing the big-ticket items are already done: the home features a fully updated heating system and newer hot water heater, so you can move in and enjoy from day one. Pack your things away in the garage or basement and head out to your choice of excellent restaurants and outdoor activities. Only 1/2 mile to Jamaica Pond or Stony Brook T, and one block from the #39 bus. Kingsboro Park is one of the most coveted streets in JP - make it your new home", + "features": [ + "Washer / Dryer in Unit", + "Dryer", + "Washer", + "Air Conditioning", + "Forced Air", + "Common Parking", + "Garage", + "Common Outdoor Space", + "Dishwasher", + "Disposal", + "Range", + "Refrigerator", + "Gas Heat", + "Detached", + "Pet Friendly", + "Parking Included" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "73517437", + "Days on Market": "6", + "Taxes": "$6,996 / year", + "HOA Fees": "$268 / month", + "Property Type": "Condo", + "MLS Type": "Condominium/Co-Op / Condo", + "Year Built": "1920", + "County": "Suffolk County" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "Jamaica Plain", + "Area": "MA-Boston-Jamaica Plain, MA-Boston", + "Style": "2/3 Family", + "Garage Spaces": "0", + "Open Parking Spaces": ".00", + "Parking Spaces Total": "0", + "Unit Placement": "Upper, Top/Penthouse" + }, + "agent": { + "name": "The Muncey Group", + "email": "themunceygroup@compass.com", + "telephone": "617-905-6445" + } + }, + "2095934286325029505": { + "listing_id": "2095934286325029505", + "source_url": "https://www.compass.com/homedetails/415-E-Dean-St-Unit-5-Week-5-Aspen-CO-81611/2095934286325029505_lid/", + "retrieved_at": "2026-09-06T04:10:36.021954+00:00", + "html_sha256": "539355c59ce27c47a541b850dd6f79889ab4a5c875ce8ed37b4a537c71cd6fe2", + "price": 145000, + "address": "415 East Dean St Unit 5 Week 5", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Aspen Central Core", + "latitude": 39.1866543, + "longitude": -106.8199561, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1519, + "property_type": "Condo", + "year_built": 2005, + "mls_number": "192653", + "status_text": "Active", + "days_on_market": 127, + "listed_at_ms": 1777593600000, + "description": "2024 renovations completed (including new decor, furniture, lighting, paint and carpets). The Aspen Mountain Residences is nestled at the base of the mountain between the St. Regis and Little Nell properties. Bars, restaurants, shopping and nightlife are literally a few steps from The Aspen. The multitude of amenities and services include daily maid service, concierge, valet, heated outdoor pool along with 2 hot tubs, gym, fire pit, ski shop, e-bikes for owners use and daily breakfast service. Unit 5 is a spacious luxury two bedroom/two bath condominium at over 1500 sq. ft. Conveniently located on the first floor with high ceilings (11 feet) and walk out to fire pit area. Large lock off bedroom features two queen beds. Enjoy ski week #5 every year together with additional float time. \r\n1/20th interest - includes 1 fixed week and 1 float week every year plus additional float week every other year.", + "features": [ + "Hot Tub", + "Elevator", + "Doorman", + "Concierge", + "Garage", + "Gym", + "Pool", + "Washer / Dryer in Unit", + "Air Conditioning", + "High Ceilings", + "No Pets", + "Parking Included" + ], + "property_facts": { + "Status": "Active", + "MLS #": "192653", + "Days on Market": "127", + "HOA Fees": "$8,603 / year", + "Property Type": "Condo", + "MLS Type": "Fractional / Condominium", + "Year Built": "2005", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "Yes", + "Property Faces": "East", + "Style": "Contemporary", + "Furnished": "Furnished", + "Sub/Loc": "G.A. resort condos aka The Aspen Mountain Residences" + }, + "agent": { + "name": "Thomas S. Carr", + "email": "tcarr@aspenreinfo.com", + "telephone": "970-379-9935" + } + }, + "2097930857405393601": { + "listing_id": "2097930857405393601", + "source_url": "https://www.compass.com/homedetails/485-Brickell-Ave-Unit-1909-Miami-FL-33131/1CZS9I_pid/", + "retrieved_at": "2026-09-06T04:12:35.402804+00:00", + "html_sha256": "9b31da5c55835db0ba26d906db54bb98e6e3a209b07e37d41f1105b5c4eaeede", + "price": 875000, + "address": "485 Brickell Avenue, Unit 1909", + "unit": "1909", + "city": "Miami", + "state": "FL", + "zip": "33131", + "neighborhood": "Icon Brickell", + "latitude": 25.7686625, + "longitude": -80.188727, + "beds": 2, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 953, + "property_type": "Condo", + "year_built": 2009, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Investor’s Goldmine in Brickell! Short-Term Rentals Allowed – Rare Opportunity in Icon Brickell Tower 3! This beautifully furnished 2-bed, 1-bath unit (09-line) offers panoramic bay and skyline views from the 19th floor. Boasting over 950 sqft of marble-floored living space, this residence is a top performer with over 90% occupancy and strong rental returns. Located in the heart of Miami’s financial district with unmatched amenities: a massive resort-style pool, full-service spa, world-class gym, 24/7 valet & security, and top-tier dining at your doorstep. Perfect for investors seeking high ROI and flexibility.\n", + "features": [ + "Common Roof Deck", + "Doorman", + "Concierge", + "Elevator", + "Garage", + "Gym", + "Pool", + "Steam Room", + "Sauna", + "Common Media / Recreation Room", + "Billiards Room", + "Heated Pool", + "Assigned Parking", + "On Site Restaurant", + "Spa", + "Valet Parking", + "Security Gate", + "Security Staff", + "Infinity Pool", + "Highrise", + "Hotel" + ], + "property_facts": { + "Status": "Coming Soon", + "Pet Policy": "Allowed", + "Property Type": "Condo", + "Year Built": "2009", + "County": "Miami-Dade County" + }, + "regional_facts": { + "Waterfront": "No", + "Area": "41", + "Sq Ft Liv Area": "953.0" + }, + "agent": { + "name": "Sheree Saint-victor", + "email": "sheree.saintvictor@compass.com", + "telephone": "7549717771" + } + }, + "2097930925335885545": { + "listing_id": "2097930925335885545", + "source_url": "https://www.compass.com/homedetails/485-Brickell-Ave-Unit-1609-Miami-FL-33131/1CJJ5K_pid/", + "retrieved_at": "2026-09-06T04:12:35.044691+00:00", + "html_sha256": "88d5554b83d06705fe52eba7f7a658f1a7d28469740c260b054159231331539c", + "price": 875000, + "address": "485 Brickell Avenue, Unit 1609", + "unit": "1609", + "city": "Miami", + "state": "FL", + "zip": "33131", + "neighborhood": "Icon Brickell", + "latitude": 25.7686625, + "longitude": -80.188727, + "beds": 2, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 953, + "property_type": "Condo", + "year_built": 2009, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "High-Demand Investment in Icon Brickell! Approved for Short-Term Rentals and delivering exceptional ROI performance, this turnkey 2-bedroom, 1-bath unit in the coveted 09-line is a golden opportunity for savvy investors. This residence is a top performer with over 90% occupancy. With 953 sq ft of bright, furnished interiors and sweeping Biscayne Bay views, this residence checks every box for profitability. Enjoy full access to 5-star amenities including a 300-ft resort pool, spa, fitness center, valet, and 24/7 concierge – all in the heart of Brickell. Buy individually or bundle with Unit 1909 for a premier portfolio package.\n", + "features": [ + "Common Roof Deck", + "Doorman", + "Concierge", + "Elevator", + "Garage", + "Gym", + "Pool", + "Steam Room", + "Sauna", + "Common Media / Recreation Room", + "Billiards Room", + "Heated Pool", + "Assigned Parking", + "On Site Restaurant", + "Spa", + "Valet Parking", + "Security Gate", + "Security Staff", + "Infinity Pool", + "Highrise", + "Hotel" + ], + "property_facts": { + "Status": "Coming Soon", + "Pet Policy": "Allowed", + "Property Type": "Condo", + "Year Built": "2009", + "County": "Miami-Dade County" + }, + "regional_facts": { + "Waterfront": "No", + "Area": "41", + "Sq Ft Liv Area": "953.0" + }, + "agent": { + "name": "Sheree Saint-victor", + "email": "sheree.saintvictor@compass.com", + "telephone": "7549717771" + } + }, + "2097934634878769001": { + "listing_id": "2097934634878769001", + "source_url": "https://www.compass.com/homedetails/2816-S-Bentley-Ave-Los-Angeles-CA-90064/1JQGYH_pid/", + "retrieved_at": "2026-09-06T04:12:05.506061+00:00", + "html_sha256": "57e00cedad5a833043884527cf01cbe21456b8dd1e822c2d06eb6c175291ddbe", + "price": 1320000, + "address": "2816 South Bentley Avenue", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90064", + "neighborhood": "Cheviot Hills-Rancho Park", + "latitude": 34.0300148, + "longitude": -118.428655, + "beds": 3, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1443, + "property_type": "Single Family", + "year_built": 1951, + "mls_number": "26827629", + "status_text": "Sold", + "days_on_market": 11, + "listed_at_ms": 1777878000000, + "description": "Opportunity knocks in prime West Los Angeles. This 3-bedroom, 2-bath home presents a rare chance to renovate, reimagine, or rebuild in a highly desirable neighborhood. The property features a functional layout with original hardwood floors and a living room fireplace, offering a solid foundation for those ready to bring their vision to life.While the home is in need of significant updates and repairs, key components such as a 200-amp electrical panel and updated plumbing provide a valuable head start. The spacious backyard includes a heated pool, covered patio, and detached garage ideal for future enhancement or potential ADU conversion. Located just blocks from Trader Joe's, Clover Avenue Elementary, and convenient Westside amenities, this is an exceptional value-add opportunity for investors, builders, or buyers looking to customize a home in a premier location.", + "features": [ + "Garage", + "Pool", + "Washer / Dryer in Unit", + "Parking Included", + "Private Outdoor Space", + "Unfurnished" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "26827629", + "Days on Market": "11", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1951", + "Lot Size": "0.13 AC / 5,753 SF", + "County": "Los Angeles County" + }, + "regional_facts": { + "Water Front": "None", + "Zoning": "LAR1", + "Style": "Traditional", + "Property Attached YN": "false", + "Parcel Number": "4251004007", + "Living Area": "1443", + "Source Living Area": "Vendor Enhanced", + "Area": "West Los Angeles (WLA)", + "Lot Size Area": "5753", + "Source Lot Size Area": "Vendor Enhanced", + "Assessor Parcel Number": "4251-004-007", + "Directions": "North of National Blvd. - East of Sepulveda Blvd." + }, + "agent": { + "name": "Michael Haddad", + "email": "michael.haddad@compass.com", + "telephone": "3104304842" + } + }, + "2097945406758037993": { + "listing_id": "2097945406758037993", + "source_url": "https://www.compass.com/homedetails/421-W-Huron-St-Unit-604-Chicago-IL-60654/1XE4XC_pid/", + "retrieved_at": "2026-09-06T04:11:20.439429+00:00", + "html_sha256": "842495fa2e1630cddfda06e76b1a5d651bfc62383ce924c35b75578f77939a4d", + "price": 514900, + "address": "421 West Huron Street, Unit 604", + "unit": "604", + "city": "Chicago", + "state": "IL", + "zip": "60654", + "neighborhood": "River North", + "latitude": 41.8944434, + "longitude": -87.6395533, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1195, + "property_type": "Condo", + "year_built": 2001, + "mls_number": "12634566", + "status_text": "Contingent", + "days_on_market": 85, + "listed_at_ms": 1780981200000, + "description": "Beautifully updated corner 2 bed / 2 bath condo filled with natural light from multiple exposures. Renovated in 2018 and move-in ready, this home features hardwood floors throughout and a spacious living/dining area with designer lighting from Lightology. The open-concept kitchen is ideal for entertaining with an expanded island, quartz countertops, subway tile backsplash, under-cabinet lighting, soft-close Klearvue cabinetry, Studio 41 hardware, custom pantry, and GE stainless steel appliances. The primary suite easily fits a king bed and features a fully renovated ensuite bath with dual vanity and high-end finishes including a Toto toilet and glass shower doors. Split-bedroom layout offers privacy, with a versatile second bedroom perfect for an office, nursery, or guest room. Both bathrooms are fully updated. Enjoy a 20-foot private balcony, perfect for entertaining. Additional highlights include Hunter Douglas power shades, updated black window frames (2023), new washer/dryer (2022), and custom closets. Heated garage parking available for 35k. Storage included. Located in full-amenity Huron Pointe with 24/7 door staff, fitness center, and rooftop deck. Quiet River North location just steps to Montgomery Ward Park, East Bank Club, the Riverwalk, top restaurants, and public transit. Turnkey, stylish, and truly one of a kind.", + "features": [ + "Doorman", + "Elevator", + "Garage", + "Attached Parking", + "Gym", + "Central AC", + "Air Conditioning", + "Electric Heat", + "Gas Heat", + "Bike Room", + "Common Storage", + "Snow Removal Included", + "Pet Friendly", + "Highrise" + ], + "property_facts": { + "Status": "Contingent", + "MLS #": "12634566", + "Days on Market": "85", + "Pet Policy": "Allowed", + "Taxes": "$6,767 / year", + "HOA Fees": "$824 / month", + "Property Type": "Condo", + "MLS Type": "Attached Single / Condo", + "Year Built": "2001", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - Near North Side", + "Subdivision": "Huron Pointe", + "Township": "North Chicago", + "Ownership": "Condo", + "Num Of Garage Spaces": "1.0", + "Num Of Parking Spaces": "1.0", + "Parking Included in Price": "No", + "Air Conditioning Type": "Central Air", + "Heat/Fuel": "Natural Gas, Electric", + "Pets Allowed": "Yes" + }, + "agent": { + "name": "Wilfredo Freddy Nunez", + "email": "freddy.nunez@compass.com", + "telephone": "7733295747" + } + }, + "2097967731200691625": { + "listing_id": "2097967731200691625", + "source_url": "https://www.compass.com/homedetails/654-Frontenac-Ave-Los-Angeles-CA-90065/1KSEZO_pid/", + "retrieved_at": "2026-09-06T04:12:05.857635+00:00", + "html_sha256": "554e0fa83030f88ede4d572ce621b6a77244bf0e91e564803c500778feb48ecb", + "price": 777000, + "address": "654 Frontenac Avenue", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90065", + "neighborhood": "Mount Washington", + "latitude": 34.1022903, + "longitude": -118.2119313, + "beds": 1, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1.25, + "sqft": 851, + "property_type": "Single Family", + "year_built": 1929, + "mls_number": "26829043", + "status_text": "Sold", + "days_on_market": 17, + "listed_at_ms": 1777878000000, + "description": "Imagine this: Mt. Washington in its untamed glory, where the streetcar meandered through the wilderness to whisk you away from the hustle of downtown. Now, fast forward, this enchanting mini Villa invites you to reclaim that sense of escape. Perched among the trees, it's a boho dream: a cozy 1-bedroom, 1-bath sanctuary upstairs, with a versatile bonus space below, a perfect hideaway for your art studio, writing nook, or meditative office, complete with its own bath and private entrance. Step outside, and the magic continues. The lot is a gardener's paradise, with secret corners waiting to be discovered, including a hidden garden tucked by the 1-car garage, a whimsical retreat all its own. And those canyon views & City lights? They'll soothe your soul every single day. All this, just minutes from the vibrant energy of Northeast L.A. This is where the city fades, and your bohemian escape begins.", + "features": [ + "Washer / Dryer in Unit", + "Parking Included", + "Private Outdoor Space", + "Unfurnished" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "26829043", + "Days on Market": "17", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1929", + "Lot Size": "0.12 AC / 5,318 SF", + "County": "Los Angeles County" + }, + "regional_facts": { + "Zoning": "LAR1", + "Style": "Cottage", + "Cross Streets": "Avenue 45", + "Property Attached YN": "false", + "Parcel Number": "5465004004", + "Living Area": "851", + "Source Living Area": "Taped", + "Area": "Mount Washington (680)", + "Lot Size Area": "5318", + "Source Lot Size Area": "Assessor", + "Assessor Parcel Number": "5465-004-004", + "Directions": "Cross Street W Ave 45" + }, + "agent": { + "name": "Edith Reyna", + "email": "edith.reyna@compass.com", + "telephone": "3232522445" + } + }, + "2097984564385442145": { + "listing_id": "2097984564385442145", + "source_url": "https://www.compass.com/homedetails/150-Charles-St-Unit-3AS-Manhattan-NY-10014/1K6RPP_pid/", + "retrieved_at": "2026-09-06T04:12:52.741124+00:00", + "html_sha256": "fdf416758412ce24086f267c146f7f860ad36e5858ebba6273b479a05c63d9dc", + "price": 8995000, + "address": "150 Charles Street, Unit 3AS", + "unit": "3AS", + "city": "Manhattan", + "state": "NY", + "zip": "10014", + "neighborhood": "West Village", + "latitude": 40.7338121, + "longitude": -74.0089966, + "beds": 3, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 2461, + "property_type": "Condo", + "year_built": 2013, + "mls_number": "", + "status_text": "Contract Signed", + "days_on_market": 83, + "listed_at_ms": 1777987547447, + "description": "A private elevator opens into a grand foyer, leading to an oversized great room with floor-to-ceiling windows.\n\nThis premier three-bedroom, three-and-a-half-bathroom residence also includes a dedicated office space and boasts soaring 12-foot ceilings. Spanning 2,461 square feet, the layout is designed for both comfort and elegance.\n\nThe custom Molteni kitchen is both stylish and functional, featuring Alabama white marble countertops, Lefroy Brooks fixtures, and top-of-the-line Miele, Sub-Zero, and Wolf appliances, perfect for entertaining or everyday living.\n\nThe primary bedroom serves as a tranquil retreat, bathed in natural light from east-facing floor-to-ceiling windows. The en-suite bathroom is beautifully appointed with Alabama white marble, a double vanity, deep soaking tub, walk-in shower, and radiant heated floors. The suite also includes a large walk-in closet along with an additional closet for ample storage.\n\nThe secondary bedrooms are equally well-appointed, each offering spacious closets, full en-suite bathrooms, and custom window treatments.\n\nFor added convenience, the residence includes a dedicated laundry room equipped with a full-size washer and dryer, built-in storage, and a sink. Throughout the home, you’ll find custom window treatments, concealed A/V speakers for a cinematic experience, and a smartphone-controlled security system for peace of mind. Owner/Broker.", + "features": [ + "Primary Ensuite", + "Full-Time Doorman", + "Concierge", + "Common Roof Deck", + "Common Garden", + "Common Outdoor Space", + "Gym", + "Health Club", + "Pool", + "Steam Room", + "Hot Tub", + "Sauna", + "Playroom", + "Yoga Studio", + "Resident's Lounge", + "Common Media / Recreation Room", + "Hardwood Floors", + "High Ceilings", + "Floor to Ceiling Windows", + "Oversized Windows", + "Elevator", + "Washer / Dryer in Unit", + "Washer / Dryer Hookup", + "Dryer", + "Washer", + "Laundry in Building", + "Central AC", + "Dishwasher", + "Wine Cooler", + "Double Oven", + "Gas Oven", + "Foyer", + "Powder Room", + "Home Office", + "Breakfast Bar", + "Chef's Kitchen", + "Double Sink Bathroom", + "Eastern Exposure", + "Western Exposure", + "Walk-in Closet", + "Bike Room", + "Cold Storage", + "Common Storage", + "Garage", + "Primary Ensuite with Separate Shower", + "Primary Ensuite with Separate Tub", + "Soaking Tub", + "Cooktop", + "Wall Oven", + "Range Hood", + "Spa", + "Full-Time Concierge", + "Valet Parking", + "Common Terrace", + "Refrigerator", + "Range", + "Security Gate", + "Common Courtyard", + "Security System", + "Midrise", + "Parking Included", + "Laundry in Every Unit", + "Private Storage for Sale", + "Stove", + "Highrise" + ], + "property_facts": { + "Status": "Contract Signed", + "Days on Market": "83", + "Pet Policy": "Allowed", + "Taxes": "$4,336 / month", + "Common Charges": "$5,643 / month", + "Min. Down Pymt": "10%", + "Total Rooms": "6.0", + "Property Type": "Condo", + "MLS Type": "Condo", + "Year Built": "2013", + "County": "New York County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": {}, + "agent": { + "name": "Holly Parker", + "email": "holly.parker@compass.com", + "telephone": "9175877288" + } + }, + "2097990989622977241": { + "listing_id": "2097990989622977241", + "source_url": "https://www.compass.com/homedetails/808-Brickell-Key-Dr-Unit-408-Miami-FL-33131/1D1FFL_pid/", + "retrieved_at": "2026-09-06T04:12:38.742235+00:00", + "html_sha256": "8e6054f4131312bcdd082280e596f653b93d3f388da490f41014dc31c9f04a64", + "price": 1975000, + "address": "808 Brickell Key Drive, Unit 408", + "unit": "408", + "city": "Miami", + "state": "FL", + "zip": "33131", + "neighborhood": "Brickell Key", + "latitude": 25.7686993, + "longitude": -80.183191, + "beds": 2, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 2093, + "property_type": "Condo", + "year_built": 1998, + "mls_number": "A12011177", + "status_text": "Active", + "days_on_market": 92, + "listed_at_ms": 1780632000000, + "description": "Experience exceptional island living in this impeccably renovated waterfront residence on exclusive, gated Brickell Key. Thoughtfully curated & designed by Fine Line Furniture, the home showcases stunning bay views, 2 private terraces, soaring 15-foot ceilings, & high-end finishes throughout. The custom kitchen features imported European cabinetry by Nobilia, marble countertops, & a suite of top-of-the-line Italian appliances, including ILVE & a built-in cappuccino system, along with a refrigerated wine cellar. Living spaces are elevated by bespoke millwork, custom ceiling detailing, & built-in shelving designed by Fine Line Furniture, creating a refined yet functional environment. Select furnishings include pieces by Artefacto & Roche Bobois, complementing the home’s elevated aesthetic. The primary suite offers a true spa-like experience, featuring imported Italian marble including Calacatta Viola & Portoro, custom vanities & mirrors by Mia Cucina, & premium fixtures by Gessi. The space is further enhanced by a chromotherapy soaking tub & a smart TOTO toilet system. A fully built-out closet by Closet Factory provides exceptional storage, complete with custom detailing & integrated lighting. Motorized window treatments by The Shade Store & designer wall coverings by Phillip Jeffries complete the home’s sophisticated finish. A highly sought-after parking space is conveniently located on the same floor, along with a dedicated storage unit.", + "features": [ + "Waterfront", + "Barbecue Area", + "Playground", + "Common Outdoor Space", + "Doorman", + "Concierge", + "Elevator", + "On-site Parking For Rent", + "Garage", + "Gym", + "Health Club", + "Pool", + "Sauna", + "Basketball Court", + "Playroom", + "Yoga Studio", + "Racquet Ball", + "Common Media / Recreation Room", + "Billiards Room", + "Tennis Court", + "Game Room", + "Dryer", + "Washer", + "Central AC", + "Air Conditioning", + "Electric Heat", + "Dishwasher", + "Disposal", + "Refrigerator", + "Fireplace", + "Bike Room", + "Private Storage For Rent", + "Spa", + "Valet Parking", + "Pet Friendly", + "Assigned Parking", + "Guest Parking", + "Range", + "Security Gate", + "Highrise", + "Security System", + "Attached Garage" + ], + "property_facts": { + "Status": "Active", + "MLS #": "A12011177", + "Days on Market": "92", + "Pet Policy": "Allowed", + "Taxes": "$17,277 / year", + "HOA Fees": "$1,880 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1998", + "County": "Miami-Dade County" + }, + "regional_facts": { + "Furnished": "Furniture Negotiable", + "View": "Bay, Water", + "Waterfront Details": "None, Bay", + "Waterfront": "Yes", + "Style": "WF/No Ocean Access, Condo 5+ Stories, Condo/Timeshare", + "Year Built Numeric": "1998", + "Pets Allowed YN": "Yes", + "Subdivision": "TWO TEQUESTA POINT CONDO", + "Waterview Description": "Bay" + }, + "agent": { + "name": "Nancy Batchelor", + "email": "nancy.batchelor@compass.com", + "telephone": "3059032850" + } + }, + "2097993237191321777": { + "listing_id": "2097993237191321777", + "source_url": "https://www.compass.com/homedetails/222-W-14th-St-Unit-9D-Manhattan-NY-10011/20UO9D_pid/", + "retrieved_at": "2026-09-06T04:12:53.158259+00:00", + "html_sha256": "b1365b69e5e4a4c3b160b01fbf87a05fcbd02617fa456be513b6a08de6b13dc8", + "price": 5500, + "address": "222 West 14th Street, Unit 9D", + "unit": "9D", + "city": "Manhattan", + "state": "NY", + "zip": "10011", + "neighborhood": "West Village", + "latitude": 40.7389431, + "longitude": -74.0012691, + "beds": 0, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": null, + "property_type": "Condo", + "year_built": 1987, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 31, + "listed_at_ms": 1777911483097, + "description": "Mint condition West Village junior one bedroom with 24-hour doorman with spectacular open views south over the landmarked West Village all the way to the World Trade Center. Sunlight pours in all day through panoramic windows and shines into every corner of this newly renovated unit. The modern open kitchen has ample cabinet and counters, an oversized refrigerator and oven, and a dishwasher. A wall of large custom closets ensures that even those with the most abundant of wardrobes will have plenty of storage. The spa-like bathroom, with glass-enclosed shower, provides a calming sanctuary.\n\nThe Sequoia Condominium is an excellent elevator building, complete with 24-hour doorman, large windowed gym, laundry room, and a live-in superintendent. Fabulously located in the West Village, and minutes from Meatpacking, Greenwich Village, Chelsea, and easy access to every major subway line. Entertainment, shopping, and culinary opportunities are so plentiful you could eat dinner at a different restaurant for a year and not have the same meals twice.\n\n$20 per applicant and guarantor for initial credit check\n$150 for condo application\n$60 per applicant and guarantor for condo to run credit\n$200 move-in fee\n$200 move-out fee (not due until move-out)", + "features": [ + "Full-Time Doorman", + "Gym", + "Elevator", + "Laundry in Building", + "Southern Exposure", + "Garage", + "Midrise", + "Highrise" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "31", + "Pet Policy": "Allowed", + "Rental Incentives": "No Fee", + "Available Date": "07/01/2026", + "Lease Term": "Lease Length: 12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "2.0", + "Property Type": "Condo", + "Year Built": "1987", + "County": "New York County" + }, + "regional_facts": {}, + "agent": { + "name": "Sean Devine", + "email": "sean.devine@compass.com", + "telephone": "3472421881" + } + }, + "2098031721222622417": { + "listing_id": "2098031721222622417", + "source_url": "https://www.compass.com/homedetails/377-W-First-St-Unit-2-South-Boston-MA-02127/1Y8A01_pid/", + "retrieved_at": "2026-09-06T04:10:59.359129+00:00", + "html_sha256": "5ea662120020a81c16158c7e2cf085dc1bb604c402e277f94ce301523bafde36", + "price": 1700000, + "address": "377 West First Street, Unit 2", + "unit": "2", + "city": "Boston", + "state": "MA", + "zip": "02127", + "neighborhood": "South Boston Waterfront", + "latitude": 42.3380516, + "longitude": -71.04492069999999, + "beds": 3, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 2272, + "property_type": "Condo", + "year_built": 2020, + "mls_number": "73518042", + "status_text": "Sold", + "days_on_market": 22, + "listed_at_ms": 1778644800000, + "description": "Thoughtfully designed and impeccably finished, this residence delivers on every detail. Coffered ceilings and hardwood floors set an elegant foundation for the main living space, and a dramatic wall of windows brings in exceptional natural light. Gas fireplace adds warmth to the living space, while the private balcony extends it outdoors. The Chef's kitchen is outfitted with a Wolf gas range, paneled Sub-Zero refrigerator, an oversized island with bar seating, plus a wet bar with two wine fridges for effortless hosting. The Primary Suite offers a spacious custom walk-in closet and a spa-like ensuite with double vanity, soaking tub, and glass-enclosed shower. 2 additional bedrooms, each with generous closet space, are served by a second full bath with tub/shower combo. An in-unit laundry room, extra storage and 2 garage parking adds everyday convenience. Nestled within a boutique 9-unit building, residents enjoy beautifully curated common spaces, including a rooftop deck with grills.", + "features": [ + "Elevator", + "Washer / Dryer in Unit", + "Dryer", + "Washer", + "Air Conditioning", + "Forced Air", + "Assigned Parking", + "Garage", + "Common Outdoor Space", + "Dishwasher", + "Microwave", + "Disposal", + "Wet Bar", + "Hardwood Floors", + "Range", + "Refrigerator", + "Freezer", + "Tennis Court", + "Washer Hookup", + "Parking Included", + "Private Outdoor Space", + "Pet Friendly", + "Tile Floors", + "Snow Removal Included", + "Attached Garage" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "73518042", + "Days on Market": "22", + "Taxes": "$17,894 / year", + "HOA Fees": "$645 / month", + "Property Type": "Condo", + "MLS Type": "Condominium/Co-Op / Condo", + "Year Built": "2020", + "County": "Suffolk County" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "South Boston", + "Area": "MA-Boston-South Boston, MA-Boston", + "Style": "Low-Rise", + "Garage Spaces": "2", + "Open Parking Spaces": ".00", + "Parking Spaces Total": "2", + "Unit Placement": "Corner" + }, + "agent": { + "name": "The Mazer Group", + "email": "mazergroup@compass.com", + "telephone": "617.905.7379" + } + }, + "2098042148597621689": { + "listing_id": "2098042148597621689", + "source_url": "https://www.compass.com/homedetails/321-Commonwealth-Ave-Unit-40-Boston-MA-02115/1YMLQZ_pid/", + "retrieved_at": "2026-09-06T04:10:59.916600+00:00", + "html_sha256": "2be399b5d356d2179dfb5b07aaff83c7efb3f7df5fcb260126eb822a96455a20", + "price": 2350000, + "address": "321 Commonwealth Avenue, Unit 40", + "unit": "40", + "city": "Boston", + "state": "MA", + "zip": "02115", + "neighborhood": "Back Bay", + "latitude": 42.3499646, + "longitude": -71.08694129999999, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1425, + "property_type": "Condo", + "year_built": 1800, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "On the sunny side of Commonwealth, in a luxury building, this bright and airy Penthouse boasts an open layout that makes living and hosting feel effortless. Lofty ceilings contribute to a wonderful sense of space in a triple-wide building, with expansive windows framing breathtaking Back Bay views. The living room is grounded by stained hardwood floors and anchored by a wood-burning fireplace framed in statuary marble, flowing into the dining area with amazing natural light from the skylight above. There is an additional space off the living room, perfect for an office or another bedroom. The kitchen is beautifully outfitted with custom cabinetry, Dornbracht fixtures, Sub-Zero fridge and Wolf gas cooktop. The spacious primary bedroom features a walk-in closet and an exquisite spa-like ensuite bathroom with a skylight, glass shower, and Victoria & Albert soaking tub. The second bedroom is generously sized, and the full bathroom was just renovated and features a gorgeous glass-enclosed shower. Ascend spiral stairs to the private roof deck with 360 city views, a fire pit hard-plumbed with natural gas and a grill perfect for entertaining. One deeded parking space rounds out this exceptional offering.", + "features": [ + "Walk Up", + "Washer / Dryer in Unit", + "Central AC", + "Forced Air", + "Private Roof Deck", + "Dishwasher", + "Stainless Steel Appliances", + "Gas Oven", + "Renovated Bath", + "Granite Kitchen Counter", + "Breakfast Bar", + "Windowed Kitchen", + "Open Kitchen", + "Range Hood", + "Fireplace", + "Crown Mouldings", + "Spiral Staircase", + "Hardwood Floors", + "Recessed Lighting", + "Chandeliers", + "Skylight", + "Walk-in Closet", + "Soaking Tub", + "Southern Exposure", + "Primary Ensuite", + "Tile Floors", + "Freezer", + "Gas Stove", + "Island Kitchen", + "Refrigerator", + "Intercom" + ], + "property_facts": { + "Status": "Coming Soon", + "Taxes": "$17,524 / year", + "HOA Fees": "$1,273 / month", + "Property Type": "Condo", + "Year Built": "1800", + "County": "Suffolk County" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "Back Bay", + "Area": "MA-Boston, MA-Boston-Back Bay", + "Open Parking Spaces": "1.00", + "Parking Spaces Total": "1" + }, + "agent": { + "name": "The Mazer Group", + "email": "mazergroup@compass.com", + "telephone": "617.905.7379" + } + }, + "2098047198749416809": { + "listing_id": "2098047198749416809", + "source_url": "https://www.compass.com/homedetails/4128-Chase-St-Denver-CO-80212/126677_pid/", + "retrieved_at": "2026-09-06T04:11:37.418301+00:00", + "html_sha256": "48a0976e49cee3d1cbc4585862565dbcf760b8a55e9051eb6cde3c9d3354e494", + "price": 1595000, + "address": "4128 Chase Street", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80212", + "neighborhood": "Mountain View", + "latitude": 39.7735498, + "longitude": -105.0564036, + "beds": 4, + "baths_full": 2, + "baths_half": 2, + "baths_total": 5, + "sqft": 4528, + "property_type": "Single Family", + "year_built": 2023, + "mls_number": "3642551", + "status_text": "Closed", + "days_on_market": 97, + "listed_at_ms": 1777874400000, + "description": "Sophisticated modern living just blocks from Tennyson and minutes to Downtown! Soaring 10’ ceilings on the main level and 9’ ceilings above create a grand sense of space, while exposed metal beams and a striking monolithic staircase deliver architectural impact. Designed for seamless entertaining, the elegant scullery features a dual-zone wine fridge, additional sink, and walk-in pantry. The oversized primary suite is a private retreat, complete with a spa-inspired bath and sleek curbless shower. Seamless indoor-outdoor living extends to a private yard and an expansive rooftop retreat—perfect for relaxing or hosting under the Colorado sky. The third-floor penthouse elevates the experience even further, offering a stylish gathering space with a wet bar, mini fridge, and half bath—ideal for movie nights, game days, or sophisticated entertaining. Set your showing today!", + "features": [ + "Balcony", + "Breakfast Bar", + "Carpet Floors", + "Central AC", + "Contemporary", + "Dishwasher", + "Disposal", + "Dog Run/Park", + "Double Oven", + "Dual Pane Windows", + "Eat-in Kitchen", + "Electricity Included", + "Fireplace", + "Forced Air", + "Freezer", + "Garage", + "Gas Heat", + "Gas Included", + "Granite Kitchen Counter", + "High Ceilings", + "Hot Water Heating", + "Island Kitchen", + "Microwave", + "Mountain Views", + "Pantry", + "Parking Included", + "Private Outdoor Space", + "Private Yard", + "Range", + "Range Hood", + "Refrigerator", + "Tile Floors", + "Walk-in Closet", + "Wet Bar" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "3642551", + "Days on Compass": "97", + "Taxes": "$6,585 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "2023", + "Lot Size": "0.15 AC / 6,534 SF", + "County": "Jefferson County" + }, + "regional_facts": { + "Structure Type": "House", + "Architectural Style": "Contemporary", + "View": "Mountain(s)", + "Levels": "Three Or More", + "Subdivision Name": "Columbia Heights", + "Association": "No", + "Basement": "No" + }, + "agent": { + "name": "Ty Dokken", + "email": "ty.dokken@compass.com", + "telephone": "3032464857" + } + }, + "2098063543490317537": { + "listing_id": "2098063543490317537", + "source_url": "https://www.compass.com/homedetails/23-E-10th-St-Unit-321-Manhattan-NY-10003/202F0M_pid/", + "retrieved_at": "2026-09-06T04:12:54.397947+00:00", + "html_sha256": "2ceac78b53287eae10c89403911aa6dcd64b17aff72a86220f503d5437ac670b", + "price": 9995, + "address": "23 East 10th Street, Unit 321", + "unit": "321", + "city": "Manhattan", + "state": "NY", + "zip": "10003", + "neighborhood": "Greenwich Village", + "latitude": 40.7327657, + "longitude": -73.9934301, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": null, + "property_type": "Co-op", + "year_built": 1882, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 63, + "listed_at_ms": 1777919864388, + "description": "Spacious 2 Bed/2 Bath home at 23 E 10th Street - available for a July 1, 2026 lease start.\n\nThis well-proportioned residence features high ceilings, wide plank floors, and great natural light throughout. The open kitchen is designed for everyday living with stone countertops, custom cabinetry, stainless steel appliances, and a seamless flow into the living and dining area.\n\nBoth bedrooms are generously sized. The second bedroom faces west over University Place, while the primary bedroom enjoys quiet eastern exposures. Both bathrooms are modern and well maintained, with the primary featuring a glass-enclosed shower. A private washer and dryer adds convenience.\n\nLocated at The Albert, a full-service pre-war cooperative, residents enjoy 24-hour door staff, a resident manager, and a recently updated lobby and hallways. The building also offers bike storage and a beautifully landscaped, furnished roof deck.\nSet on a tree-lined Greenwich Village block between Union Square and Washington Square Park, you’re moments from multiple subway lines, the Union Square Greenmarket, NYU, and some of downtown’s best dining, shopping, and cultural destinations.\n\nUpfront costs include: 1st Month’s Rent, 1 Month Security, and a $65 Application Submission Fee. No pets permitted.\n\nNote: The Board is not accepting Guarantors for Sublets. Applicants must show 40X the rent as income.", + "features": [ + "Full-Time Doorman", + "Roof Deck", + "Common Roof Deck", + "Hardwood Floors", + "High Ceilings", + "Elevator", + "Washer / Dryer", + "Washer / Dryer in Unit", + "Laundry in Building", + "Air Conditioning", + "Stainless Steel Appliances", + "Open Kitchen", + "Eastern Exposure", + "Western Exposure", + "Custom Closet", + "Bike Room", + "Midrise", + "Highrise" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "63", + "Pet Policy": "Not Allowed", + "Rental Incentives": "No Fee", + "Available Date": "07/15/2026", + "Lease Term": "Lease Length: Renewal Option,12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "4.0", + "Property Type": "Co-op", + "MLS Type": "Co-op", + "Year Built": "1882", + "County": "New York County" + }, + "regional_facts": {}, + "agent": { + "name": "Endre Boksay", + "email": "endre.boksay@compass.com", + "telephone": "9175830168" + } + }, + "2098071507626581761": { + "listing_id": "2098071507626581761", + "source_url": "https://www.compass.com/homedetails/470-W-24th-St-Unit-11G-Manhattan-NY-10011/2098071507626581761_lid/", + "retrieved_at": "2026-09-06T04:12:59.162110+00:00", + "html_sha256": "93b658958134af49db08e9575b67b64c1384932022ceb36b6ff02bd3e9f6778f", + "price": 6950, + "address": "470 West 24th Street, Unit 11G", + "unit": "11G", + "city": "Manhattan", + "state": "NY", + "zip": "10011", + "neighborhood": "Chelsea", + "latitude": 40.7480377, + "longitude": -74.00347339999999, + "beds": 1, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": null, + "property_type": "Co-op", + "year_built": 1930, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 7, + "listed_at_ms": 1777920813755, + "description": "Welcome to 11G at London Terrace Towers, a bright, beautiful, and completely custom one-bedroom primely located in the heart of Chelsea. With amazing storage and great southern sunlight, this bespoke pre-war home is just what you’ve been looking for.\n\nEntering the home, you are greeted by ample sunlight from the south-facing living room. A beautifully designed chef’s kitchen features pristine marble slabs on both the countertops and the custom island, which also has storage below. The kitchen overlooks a warm and generously proportioned living room with plenty of space for seating and entertaining. A convenient work-from-home nook sits right off of the kitchen, completing this home as the perfect place to relax, dine, work, and enjoy company.\n\nThe large primary bedroom features south-facing windows and a full wall of closet space, providing amazing storage. A stunning dressing area with even more storage serves as a pass-through to a luxurious double-entry bathroom, complete with a spa tub and separate glass-enclosed shower.\n\nLondon Terrace Towers is a full service prewar building, including a full-time doorman and resident manager. Complete building amenities for residents to enjoy: a superb gym, beautiful heated pool, men’s & women’s private lounges with saunas, planted common roof deck, and a garage (separate fee). London Terrace Towers is at the epicenter of West Chelsea art galleries, and is surrounded by excellent restaurants, as well as multiple parks such as the ever-evolving Hudson River Park, the High Line Park, Chelsea Piers, Chelsea Market, and so much more.\n\nA full building application required for approval. \n\n", + "features": [ + "Full-Time Doorman", + "Common Roof Deck", + "Common Garden", + "Common Outdoor Space", + "Gym", + "Health Club", + "Pool", + "Steam Room", + "Sauna", + "Hardwood Floors", + "Elevator", + "Laundry in Building", + "Dishwasher", + "Stainless Steel Appliances", + "Dressing Area", + "Renovated Kitchen and Bath", + "Marble Kitchen Counter", + "Eat-in Kitchen", + "Chef's Kitchen", + "Open Kitchen", + "Southern Exposure", + "Walk-in Closet", + "Custom Closet", + "Bike Room", + "Garage", + "Bidet", + "Double Entry Bathroom", + "Primary Ensuite with Separate Shower", + "Soaking Tub", + "Gas Stove", + "Island Kitchen", + "Highrise" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "7", + "Pet Policy": "Not Allowed", + "Rental Incentives": "No Fee", + "Available Date": "06/15/2026", + "Lease Term": "Lease Length: 12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "3.0", + "Property Type": "Co-op", + "MLS Type": "Co-Operative", + "Year Built": "1930", + "County": "New York County" + }, + "regional_facts": {}, + "agent": { + "name": "Michael Johnson", + "email": "mij@compass.com", + "telephone": "6464366453" + } + }, + "2098075776052603609": { + "listing_id": "2098075776052603609", + "source_url": "https://www.compass.com/homedetails/2516-Ivan-Hill-Ter-Los-Angeles-CA-90039/1L482W_pid/", + "retrieved_at": "2026-09-06T04:12:08.815247+00:00", + "html_sha256": "e28216cef2e563e639b513d52bf728838553f9a0ec182c35a4c9af7b5d5deeba", + "price": 2620000, + "address": "2516 Ivan Hill Terrace", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90039", + "neighborhood": "Silver Lake", + "latitude": 34.1038919, + "longitude": -118.2601316, + "beds": 4, + "baths_full": 3, + "baths_half": 0, + "baths_total": 3, + "sqft": 2922, + "property_type": "Single Family", + "year_built": 1928, + "mls_number": "26829147", + "status_text": "Sold", + "days_on_market": 9, + "listed_at_ms": 1777878000000, + "description": "Tucked away on a quiet cul-de-sac in Silver Lake, this stately traditional residence offers rare privacy, expansive grounds, and a lifestyle that feels both elevated and effortlessly California. Inside, a classic center hall floor plan creates a sense of scale and symmetry. The layout flows naturally from one space to the next, with abundant natural light and garden and mountain views throughout. The heart of the home is an open kitchen, dining, and living space featuring an original high barrel ceiling. The kitchen has been beautifully renovated with custom cabinetry, Heath tile, Schoolhouse accent lights, and stainless steel appliances, anchored by a center island ideal for entertaining. A separate formal living room on this level offers high ceilings and sweeping views of the San Gabriel Mountains, with an adjacent flexible space well-suited as an office, den, or fifth bedroom. A full bathroom completes the main level. Upstairs, four generously sized bedrooms are framed by treetop and mountain views, offering a peaceful retreat from the city below. The primary suite features a private deck, a spacious walk-in closet, and connected bath, creating a true sanctuary within the home. A spacious third floor has been transformed into a light-filled creative space - perfect for a studio, home office, or playroom. Outside, the sprawling grounds unfold into multiple living spaces connected by meandering pathways that weave throughout the property. Just off the kitchen, a shaded, canopied dining area is perfect for relaxed outdoor entertaining. A large grassy lawn offers space for play or gathering, while the front yard features a thoughtfully designed urban farm space with raised planter beds and multiple fruit trees, including lemon, lime, apple, and fig. A two-car garage and plenty of off-street parking make getting in and out of the home and having guests a breeze. Ideally located within the Ivanhoe Elementary School boundary, this home is a rare offering that combines classic architecture, thoughtful updates, and lush, usable grounds in one of Silver Lake's most coveted enclaves.", + "features": [ + "Garage", + "Washer / Dryer in Unit", + "Air Conditioning", + "Parking Included", + "Private Outdoor Space", + "Unfurnished" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "26829147", + "Days on Market": "9", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1928", + "Lot Size": "0.21 AC / 9,185 SF", + "County": "Los Angeles County" + }, + "regional_facts": { + "Zoning": "LAR1", + "Style": "Traditional", + "Property Attached YN": "false", + "Parcel Number": "5439012009", + "Living Area": "2922", + "Source Living Area": "Other", + "Area": "Silver Lake (671)", + "Lot Size Area": "9185", + "Source Lot Size Area": "Vendor Enhanced", + "Assessor Parcel Number": "5439-012-009", + "Directions": "Rowena to Lakewood. Left on Ivan Hill Terrace. Property on Right at the end of the street." + }, + "agent": { + "name": "John Podhor", + "email": "john.podhor@compass.com", + "telephone": "3235929750" + } + }, + "2098079763736686521": { + "listing_id": "2098079763736686521", + "source_url": "https://www.compass.com/homedetails/308-N-7th-St-Unit-6D-Brooklyn-NY-11211/20J4YW_pid/", + "retrieved_at": "2026-09-06T04:12:56.218133+00:00", + "html_sha256": "8d109e129489b52a879e3d5dc63677ac5918fc66c5d33f22e9848a70c0cb3e1f", + "price": 5800, + "address": "308 North 7th Street, Unit 6D", + "unit": "6D", + "city": "Brooklyn", + "state": "NY", + "zip": "11211", + "neighborhood": "Williamsburg", + "latitude": 40.7149053, + "longitude": -73.95313809999999, + "beds": 1, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 727, + "property_type": "Condo", + "year_built": 2019, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 9, + "listed_at_ms": 1777921797921, + "description": "This stunning, 1-bedroom condominium with a private balcony is located in the heart of Williamsburg. Ideally-located, quiet and luxurious, this south-facing apartment has sun-soaked, floor-to-ceiling windows and unobstructed views of Brooklyn. This is the one you’ve been waiting for!\n\nWith interior design by the renowned Paris Forino, this home is masterfully crafted. The immaculate, open kitchen--adorned in custom oak cabinets, Italian custom arabescato corichia natural stone countertops and backsplash--flows seamlessly into the living room and is outfitted with a Bosch appliance package that includes an oven, four-burner stovetop, and dishwasher. Completing the sleek kitchen design are the fully integrated refrigerator and freezer. The private bedroom, with oversized, south-facing windows-- and spacious enough to accommodate a king-sized bed--serves as a serene retreat. The stylish bathroom comes complete with an under-mount signature bathtub, waterworks fixtures, Malibu toilet, and lacquer finish vanity with natural stone countertop. The home features beautiful 7-inch wide plank oak flooring, multi-zone heating and central air, and a Bosch washer-dryer in the unit. Step outside to your private balcony to enjoy the warm, relaxing breeze and commanding views over Brooklyn--perfect for enjoying the spring and summer days.\n\n308 N 7th Street is a luxury building with an attended lobby and a wealth of amenities for residents, including a landscaped garden; a state-of-the-art fitness center, lounge, and children’s playroom all overlooking an outdoor terrace; bike room and cold storage; and a gorgeous rooftop with breathtaking city views. \n\nThe building is conveniently located in Williamsburg just blocks from the L, G and M subway lines, and is surrounded by endless opportunities for high-end shopping, restaurants, and entertainment.\n\n$20 credit check fee \n$650 Processing fee (non-refundable)\n$125 Screening fee per person 18+ (non-refundable)\n$500 Expedite application fee (non-refundable, if applicable, must sign expedite application\nform)\n$1,000 Refundable Move In/out Deposit", + "features": [ + "Full-Time Doorman", + "Balcony", + "Common Roof Deck", + "Common Garden", + "Common Outdoor Space", + "Gym", + "Playroom", + "Hardwood Floors", + "High Ceilings", + "Floor to Ceiling Windows", + "Oversized Windows", + "Casement Windows", + "Elevator", + "Washer / Dryer in Unit", + "Central AC", + "Dishwasher", + "Foyer", + "Marble Kitchen Counter", + "Premium Counters", + "Windowed Kitchen", + "Chef's Kitchen", + "Open Kitchen", + "Marble Bathroom", + "Southern Exposure", + "Recessed Lighting", + "Custom Closet", + "Bike Room", + "Cold Storage", + "Garage", + "Central Heating", + "On-site Parking", + "Midrise", + "Lowrise" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "9", + "Pet Policy": "Allowed", + "Rental Incentives": "No Fee", + "Available Date": "06/15/2026", + "Lease Term": "Lease Length: 12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "3.0", + "Property Type": "Condo", + "Year Built": "2019", + "County": "Kings County" + }, + "regional_facts": {}, + "agent": { + "name": "Sarah Riegle", + "email": "s.riegle@compass.com", + "telephone": "9173716595" + } + }, + "2098090982878987185": { + "listing_id": "2098090982878987185", + "source_url": "https://www.compass.com/homedetails/130-Prospect-Pl-Unit-1-Brooklyn-NY-11217/27CHGP_pid/", + "retrieved_at": "2026-09-06T04:10:32.899561+00:00", + "html_sha256": "3b4208ae26b1549d7a9ef12e7a2396e790a595654f7cd02f8f8dddfe66a4c823", + "price": 1495000, + "address": "130 Prospect Place, Unit 1", + "unit": "1", + "city": "Brooklyn", + "state": "NY", + "zip": "11217", + "neighborhood": "Prospect Heights", + "latitude": 40.6784144, + "longitude": -73.9729025, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1200, + "property_type": "Co-op", + "year_built": 1930, + "mls_number": "", + "status_text": "Contract Signed", + "days_on_market": 57, + "listed_at_ms": 1778095813863, + "description": "At the center of it all - with room to breathe. Perfectly located at the crossroads of Park Slope and Prospect Heights, this lofty and spacious home sits on the SECOND FLOOR of a well-kept five-story co-op. Blending prewar character with modern functionality, its expansive interiors offer room to work, entertain, and unwind, together or apart.\n\n- Distinctive architectural details include 10-foot ceilings, curved walls, graceful arches, original wood shutters, and exposed brick\n- Massive 225 SF living room anchored by a full wall of custom built-ins\n- Separate home office easily doubles as a guest room\n- Efficient kitchen with stainless steel appliances and abundant storage, open to the dining area for effortless everyday living and entertaining\n- Two bedrooms overlooking charming Brooklyn brownstones\n- Primary bedroom features exposed brick walls and an ensuite bath\n\nSet on a tree-lined block with the best of both neighborhoods just moments away, enjoy a short stroll to Prospect Park, the Brooklyn Museum, and Brooklyn Botanic Garden. Express B/Q/2/3 trains are just 2–5 minutes away.\n\nThis pet-friendly 12-unit building offers a common roof deck with panoramic city views, bike and stroller storage, in-building laundry, and permits in-unit washer/dryers.", + "features": [ + "Common Roof Deck", + "Built-Ins", + "Hardwood Floors", + "Laundry in Building", + "Voice Intercom", + "Video Intercom", + "Bike Room", + "Midrise", + "Brownstone" + ], + "property_facts": { + "Status": "Contract Signed", + "Days on Market": "57", + "Pet Policy": "Allowed", + "Maintenance": "$1,908 / month", + "Min. Down Pymt": "20%", + "Total Rooms": "6.0", + "Property Type": "Co-op", + "Year Built": "1930", + "County": "Kings County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": {}, + "agent": { + "name": "Rezwan Sharif", + "email": "rezwan@compass.com", + "telephone": "9174341920" + } + }, + "2098125340638062953": { + "listing_id": "2098125340638062953", + "source_url": "https://www.compass.com/homedetails/135-W-4th-St-Unit-3W-Manhattan-NY-10012/18ZH9E_pid/", + "retrieved_at": "2026-09-06T04:12:56.276710+00:00", + "html_sha256": "39f8a4bd8dd2a4dba3d30db474dd915555c61802a68972af1aaea323b7b6abad", + "price": 16000, + "address": "135 West 4th Street, Unit 3W", + "unit": "3W", + "city": "Manhattan", + "state": "NY", + "zip": "10012", + "neighborhood": "Greenwich Village", + "latitude": 40.731576, + "longitude": -73.99992999999999, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 2033, + "property_type": "Condo", + "year_built": 1860, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 52, + "listed_at_ms": 1777927231122, + "description": "Stunning Loft with Historic Charm in the Heart of Greenwich Village\n\nWelcome to Residence 3W at 135 West 4th Street—a spacious and unique 2,000+ square foot loft that blends original architectural detail with modern updates. Set within a beautifully converted 1860s church, this one-of-a-kind home features soaring ceilings, oversized windows, and striking original stained-glass accents throughout.\n\nA private elevator opens directly into an expansive living and dining area highlighted by a dramatic stained-glass focal point. A long central gallery—perfect for displaying artwork—connects the space, while a skylight adds even more natural light. The open kitchen is designed for both everyday living and entertaining, complete with a large marble island, high-end appliances, and generous storage.\n\nThe primary bedroom offers a quiet retreat with a bay window, walk-in closet, and en-suite bathroom featuring a soaking tub and separate shower. The second bedroom is also well-proportioned and includes its own bathroom, providing flexibility for guests or a home office setup.\n\nLocated on a charming, tree-lined block just moments from Washington Square Park, this boutique building offers private elevator access, a virtual doorman, and an intimate residential setting with only a few units per floor. Enjoy easy access to some of the best dining, shopping, and transit options in Greenwich Village.\n\nAvailable for rent—experience a truly distinctive Village home with character you won’t find anywhere else.\n\nSome photos may be virtually staged.", + "features": [ + "Primary Ensuite", + "Remote Doorman", + "Hardwood Floors", + "Elevator", + "Washer / Dryer in Unit", + "Central AC", + "Dishwasher", + "Gas Oven", + "Northern Exposure", + "Walk-in Closet", + "Private Storage Included", + "Central Heating", + "Refrigerator", + "Gas Stove", + "Midrise" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "52", + "Pet Policy": "Allowed", + "Rental Incentives": "No Fee", + "Available Date": "05/04/2026", + "Lease Term": "Lease Length: Renewal Option,12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "4.0", + "Property Type": "Condo", + "MLS Type": "Condo", + "Year Built": "1860", + "County": "New York County" + }, + "regional_facts": {}, + "agent": { + "name": "Ramzis Hadzhi", + "email": "ramzis.hadzhi@compass.com", + "telephone": "3478326720" + } + }, + "2098140028712522937": { + "listing_id": "2098140028712522937", + "source_url": "https://www.compass.com/homedetails/227-NE-2nd-St-Unit-1909-Miami-FL-33132/1CJXII_pid/", + "retrieved_at": "2026-09-06T04:12:38.774428+00:00", + "html_sha256": "6f22d4903e707a9e66323603a0943ca4c3cb26e01e4a40a889f6be36afaf8266", + "price": 395000, + "address": "227 Northeast 2nd Street, Unit 1909", + "unit": "1909", + "city": "Miami", + "state": "FL", + "zip": "33132", + "neighborhood": "Miami Central Business District", + "latitude": 25.7765046, + "longitude": -80.189686, + "beds": 1, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 549, + "property_type": "Condo", + "year_built": 2020, + "mls_number": "A12012861", + "status_text": "Closed", + "days_on_market": 16, + "listed_at_ms": 1779076800000, + "description": "Modern 1 bed / 1 bath at YOTELPAD Downtown Miami with full short-term rental flexibility—Airbnb, VRBO, whatever you want. No restrictions, which is rare for this location.\r\n\r\nThe layout is smart and efficient, with clean, modern finishes and a comfortable living space that actually works whether you’re staying in it or renting it out.\r\n\r\nThe building is what really sells it. You’ve got a resort-style pool deck, fitness center, co-working and lounge spaces, plus an on-site restaurant and bar. Full-service feel with concierge, valet, and 24/7 security—so it’s easy for both owners and guests.\r\n\r\nLocation-wise, it doesn’t get much better. You’re right in the center of Downtown—steps to Bayfront Park, the marina, restaurants, nightlife, and everything happening around there. Quick access to Brickell, Wynwood, the Design District, Miami Beach, and the airport, which is exactly what short-term renters are looking for.\r\n\r\nWhether you’re buying it as an investment or want something flexible you can actually use, this one makes a lot of sense. Strong rental demand, prime location, and no restrictions—it checks the boxes.", + "features": [ + "Barbecue Area", + "Doorman", + "Concierge", + "Elevator", + "Gym", + "Common Media / Recreation Room", + "Billiards Room", + "Heated Pool", + "Air Conditioning", + "Dishwasher", + "Bike Room", + "On Site Restaurant", + "Valet Parking", + "Parking Included", + "Common Hot Tub", + "Business Center", + "Highrise", + "Security System" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "A12012861", + "Days on Market": "16", + "Pet Policy": "Allowed", + "Taxes": "$7,814 / year", + "HOA Fees": "$851 / month", + "Property Type": "Condo", + "MLS Type": "Condo/Co-Op/Villa/Townhouse / Condo", + "Year Built": "2020", + "County": "Miami-Dade County" + }, + "regional_facts": { + "Subdivision": "MAP OF MIAMI DADE CO. FL.", + "Complex Name": "Yotel", + "Style": "Condo 5+ Stories", + "Waterfront": "No", + "View": "Skyline View", + "Unit View": "Skyline View", + "Area": "42", + "Sq Ft Total": "549", + "Sq Ft Liv Area": "549.0", + "AdjustedAreaSF": "549.0", + "Year Built Description": "Resale" + }, + "agent": { + "name": "Nancy Batchelor", + "email": "nancy.batchelor@compass.com", + "telephone": "3059032850" + } + }, + "2098142923051051441": { + "listing_id": "2098142923051051441", + "source_url": "https://www.compass.com/homedetails/1350-Josephine-St-Unit-206-Denver-CO-80206/12T823_pid/", + "retrieved_at": "2026-09-06T04:11:40.431937+00:00", + "html_sha256": "6da913a097d18b88e9935322835723f982d6b7c026d24e541f24e43ec9836e06", + "price": 214900, + "address": "1350 Josephine Street, Unit 206", + "unit": "206", + "city": "Denver", + "state": "CO", + "zip": "80206", + "neighborhood": "Congress Park", + "latitude": 39.7377934, + "longitude": -104.9583387, + "beds": 1, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 606, + "property_type": "Condo", + "year_built": 1966, + "mls_number": "2193757", + "status_text": "Active", + "days_on_market": 124, + "listed_at_ms": 1777874400000, + "description": "Seller offering: $7,500 incentive to help lower your monthly payment or reduce cash needed at closing. Fully renovated, fireplace-warmed, and move-in ready in the heart of Congress Park. This top-to-bottom updated 1-bedroom at Dublin Terrace delivers a rare combination at this price point in 80206: fresh designer finishes, a private balcony, a living room fireplace, a dedicated off-street parking space, and access to the building's outdoor pool.\r\n\r\nInside, the kitchen has been completely reimagined with new quartz countertops, new stainless steel appliances, and custom-painted cabinetry in an on-trend warm gray that anchors the entire space. Fresh paint, all-new baseboards, new lighting, and refinished hardwood floors carry through the open-concept living and dining area, where the fireplace creates a true focal point in the living room. The bedroom is genuinely sized for a queen with room to spare, and the full bath has been thoughtfully updated. Forced-air heat and central A/C — a meaningful upgrade over the baseboard-heated buildings nearby — keep the unit comfortable year-round. Tastefully staged and ready to show.\r\n\r\nStep outside your door and you've got Dublin Terrace's outdoor pool for summer afternoons, plus a dedicated off-street parking space waiting in back — two amenities that quietly separate this building from most of the competition in the neighborhood.\r\nBeyond the building, Congress Park is yours: the Denver Botanic Gardens, Cheesman Park, and Congress Park itself are all within an easy walk, and the 12th Avenue and Colfax corridors put coffee, brunch, music, and some of Denver's most-loved restaurants at the end of the block. Cherry Creek shopping, City Park, and the RiNo galleries and breweries are a short hop away. Congress Park has long been one of Denver's most enduring neighborhoods.\r\n\r\nThe HOA covers heat, water, sewer, trash, snow removal, insurance, and exterior maintenance — true lock-and-leave living.", + "features": [ + "Balcony", + "Central AC", + "Dishwasher", + "Disposal", + "Electricity Included", + "Forced Air", + "Private Outdoor Space", + "Range", + "Refrigerator", + "Snow Removal Included" + ], + "property_facts": { + "Status": "Active", + "MLS #": "2193757", + "Days on Compass": "124", + "Taxes": "$1,072 / year", + "HOA Fees": "$4,918 / year", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1966", + "County": "Denver County" + }, + "regional_facts": { + "Structure Type": "Mid Rise (4-7)", + "Architectural Style": "Paved, Full Primary Bath, Condominium", + "Levels": "Two", + "Subdivision Name": "Congress Park", + "Association": "Yes", + "Multiple Associations": "No", + "Basement": "No" + }, + "agent": { + "name": "Alex Neir", + "email": "alex.neir@compass.com", + "telephone": "7209354399" + } + }, + "2098144832675737689": { + "listing_id": "2098144832675737689", + "source_url": "https://www.compass.com/homedetails/5-Great-Jones-St-Manhattan-NY-10012/21KHFY_pid/", + "retrieved_at": "2026-09-06T04:12:57.087032+00:00", + "html_sha256": "6934ad42ea3f167d937665717351b7950ef578d7604eac8785d82034d63ed54f", + "price": 10000, + "address": "5 Great Jones Street", + "unit": "4", + "city": "Manhattan", + "state": "NY", + "zip": "10012", + "neighborhood": "NoHo", + "latitude": 40.7273343, + "longitude": -73.9941869, + "beds": 2, + "baths_full": 1, + "baths_half": 1, + "baths_total": 1.5, + "sqft": 1180, + "property_type": "Co-op", + "year_built": 1845, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 13, + "listed_at_ms": 1777929554808, + "description": "Quintessential Noho loft! Occupying the entire floor, this sun-drenched home is well over 1000 square feet. It has been meticulously renovaated yet maintains all the original detail that makes it extra special. The expansive living/dining room has 11 foot pressed-tin ceilings, two decorative fireplaces with exposed brick, beautiful original hardwood floors and a huge chef's kitchen with a gorgeous island with seating for 4 that is perfect for dining and entertaining. The primary bedroom with bright southern exposure is accessed through elegant French doors and includes a spa-like windowed primary bathroom that has been fully renovated. The windowed second bedroom also works well as an office and off the room is an updated half bath and in-unit washer/dryer. Available for June 1 move-in, this iconic loft home is 3 flights up but well worth the walk up. Located in a historic loft building with a video intercom with only one apartment per floor, don't miss this incredible find!", + "features": [ + "Exposed Brick", + "Decorative Fireplace", + "Hardwood Floors", + "High Ceilings", + "Walk Up", + "Laundry in Building", + "Renovated Kitchen and Bath", + "Breakfast Bar", + "Windowed Bathroom", + "Northern Exposure", + "Southern Exposure", + "Voice Intercom", + "Bike Room", + "Midrise" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "13", + "Pet Policy": "Allowed", + "Rental Incentives": "No Fee", + "Available Date": "06/01/2026", + "Lease Term": "Lease Length: Renewal Option,12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "4.5", + "Property Type": "Co-op", + "Year Built": "1845", + "County": "New York County" + }, + "regional_facts": {}, + "agent": { + "name": "Michele Matilla", + "email": "michele.matilla@compass.com", + "telephone": "2122555555" + } + }, + "2098166596374269265": { + "listing_id": "2098166596374269265", + "source_url": "https://www.compass.com/homedetails/2230-Fink-St-Los-Angeles-CA-90068/1KEWGN_pid/", + "retrieved_at": "2026-09-06T04:12:09.751619+00:00", + "html_sha256": "7b852f5067e1f4c3d5ad99a3d3f19e9488c91517e917c9e37feeed8eace8121c", + "price": 1450000, + "address": "2230 Fink Street", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90068", + "neighborhood": "Hollywood Hills East", + "latitude": 34.1113808, + "longitude": -118.3302784, + "beds": 3, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 1230, + "property_type": "Single Family", + "year_built": 1948, + "mls_number": "26829541", + "status_text": "Sold", + "days_on_market": 29, + "listed_at_ms": 1777878000000, + "description": "Welcome to 2230 Fink St, a hidden gem nestled at the end of a serene cul-de-sac in the heart of Los Angeles. This secluded retreat offers the perfect balance between calmness and vibrant city living. A grand gate welcomes you to the property, framing it beautifully while providing exceptional privacy. Inside, natural light floods every corner of this thoughtfully designed three-bedroom home, creating a warm, inviting atmosphere. The layout balances style and functionality, offering space for both cozy nights in and gatherings. With undeniable curb appeal and an expansive lot, this home is an oasis in one of L.A.'s most vibrant neighborhoods. Just moments from the best dining, shopping, and entertainment, it offers the perfect escape from city life.", + "features": [ + "Washer / Dryer in Unit", + "Air Conditioning" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "26829541", + "Days on Market": "29", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1948", + "Lot Size": "0.17 AC / 7,458 SF", + "County": "Los Angeles County" + }, + "regional_facts": { + "Zoning": "LAR1", + "Style": "Bungalow", + "Property Attached YN": "false", + "Parcel Number": "5576014044", + "Living Area": "1230", + "Source Living Area": "Vendor Enhanced", + "Area": "Hollywood Hills East (C30)", + "Lot Size Area": "7458", + "Source Lot Size Area": "Vendor Enhanced", + "Assessor Parcel Number": "5576-014-044", + "Directions": "Please use the property address listed in the details. For the most convenient access, we recommend parking on Holly Drive and taking a short walk to the property." + }, + "agent": { + "name": "Lucas Arias", + "email": "lucas.arias@compass.com", + "telephone": "9092439587" + } + }, + "2098215781802252161": { + "listing_id": "2098215781802252161", + "source_url": "https://www.compass.com/homedetails/45-S-Dover-St-Denver-CO-80226/12JVLD_pid/", + "retrieved_at": "2026-09-06T04:11:44.311875+00:00", + "html_sha256": "95dbf3d5fa4270464803673d8bc0475bfd3a742027febacf2ce01b0ce5a19087", + "price": 465000, + "address": "45 South Dover Street", + "unit": "", + "city": "Lakewood", + "state": "CO", + "zip": "80226", + "neighborhood": "Mid-Lakewood", + "latitude": 39.7159167, + "longitude": -105.0941717, + "beds": 3, + "baths_full": 1, + "baths_half": 0, + "baths_total": 2, + "sqft": 2240, + "property_type": "Single Family", + "year_built": 1955, + "mls_number": "6772123", + "status_text": "Closed", + "days_on_market": 4, + "listed_at_ms": 1780552800000, + "description": "Welcome to 45 S Dover Street, a rare opportunity in the highly desirable Meadowlark neighborhood of Lakewood. Situated on an expansive approximately 9,000 square foot lot, this property offers incredible potential for investors, renovators, or buyers looking to create a personalized home in a prime location.\r\n\r\nSurrounded by mature landscaping and set on a quiet, established block, the existing layout features 3 bedrooms and 2 bathrooms, with a functional footprint that lends itself well to thoughtful updates or a full renovation.\r\n\r\nInside, the home presents a blank canvas with solid fundamentals. Open up the main floor to create an amazing entertaining space, design the primary suite of your dreams, and reconfigure the basement that offers excellent ceiling height and ample square footage. With the right vision, this space could easily be expanded to include additional bedrooms and bathrooms, making a 4 bedroom, 3 bathroom configuration very achievable. This flexibility opens the door for both strong resale potential and long term livability.\r\n\r\nFor investors, this is a compelling value add opportunity in a neighborhood where renovated homes continue to see strong demand. For owner occupants, it is a chance to customize a home to your exact preferences while building equity in an established community.\r\n\r\nThe Meadowlark location is another major highlight. Known for its mid century charm and large lots the neighborhood offers a suburban feel with convenient access to both Denver and the mountains. You are just minutes from Belmar, with its mix of shopping, dining, and entertainment, as well as quick access to 6th Avenue for an easy commute downtown or west to the foothills. Nearby parks and trails further enhance the lifestyle appeal.\r\n\r\nProperties with this combination of lot size, layout flexibility, and location do not come up often. Whether you are looking for your next project or a place to build your long term home, 45 S Dover Street is full of potential.", + "features": [ + "Attached Garage", + "Basement", + "Dryer", + "Electricity Included", + "Evaporative Cooling", + "Forced Air", + "Freezer", + "Garage", + "Private Yard", + "Refrigerator", + "Washer" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "6772123", + "Days on Compass": "4", + "Taxes": "$3,376 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1955", + "Lot Size": "0.21 AC / 8,973 SF", + "County": "Jefferson County" + }, + "regional_facts": { + "Structure Type": "House", + "Architectural Style": "Mid-Century Modern", + "Levels": "One", + "Subdivision Name": "More", + "Association": "No", + "Basement": "Yes" + }, + "agent": { + "name": "David Krohne", + "email": "david.krohne@compass.com", + "telephone": "7204125003" + } + }, + "2098617463065591129": { + "listing_id": "2098617463065591129", + "source_url": "https://www.compass.com/homedetails/160-Columbia-Heights-Unit-10F-Brooklyn-NY-11201/20XR8C_pid/", + "retrieved_at": "2026-09-06T04:12:59.412493+00:00", + "html_sha256": "c8cfb66f224b47f1ff5849b27d386b257e46acea69c26ac4c7c9bdb8352baa3a", + "price": 2195000, + "address": "160 Columbia Heights, Unit 10F", + "unit": "10F", + "city": "Brooklyn", + "state": "NY", + "zip": "11201", + "neighborhood": "Brooklyn Heights", + "latitude": 40.6982329, + "longitude": -73.9966402, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": null, + "property_type": "Co-op", + "year_built": 1937, + "mls_number": "", + "status_text": "Contract Signed", + "days_on_market": 69, + "listed_at_ms": 1778079102347, + "description": "SHOWINGS BY APPOINTMENT ONLY\n\nPENTHOUSE DUPLEX WITH WATER VIEWS FROM EVERY ROOM!\n\nWelcome to one of Brooklyn Heights' most distinctive and artfully appointed residences — a sun-drenched South and East exposed penthouse duplex with a wrap around terrace that effortlessly blends bold design sensibility with the timeless elegance in New York's most coveted neighborhood.\n\nPerched high above the rooftops with sweeping, unobstructed views of New York Harbor, the Manhattan & Brooklyn skylines, and the Hudson River, this exceptional two-bedroom, two-bathroom corner home is a rare find for the discerning buyer who refuses to compromise on either style or location.\n\nThe crown jewel of this property is the terrace: a sprawling outdoor sanctuary with jaw-dropping panoramic views of Brooklyn and the Harbor, lower Manhattan, and the Statue of Liberty. With planters, dining and lounge areas, and open sky in every direction, this is truly a space for relaxation and chic entertaining — your own outdoor retreat!\n\nThe open-concept living, dining and kitchen, is flooded with natural light through dramatic large windows. Hardwood floors run throughout, anchoring a space that feels simultaneously airy and warm. Recent updates include a newly installed Mitsubishi mini-split system and updated electrical work, ensuring modern comfort without sacrificing the home's character.\n\nThe recently renovated open kitchen is a true chef's showcase, featuring custom green cabinetry, Caesarstone countertops and backsplash, a professional Bertazzoni range and refrigerator, Bosch dishwasher, and a Kraus sink and faucet.\n\nBoth bedrooms are massive, easily accommodating king sized beds and either able to serve as the primary. Each offers the kind of calm, light-filled retreat that is rare to find, each fitted with elegant Shadestore window treatments. The lower level is currently configured as the primary suite, a serene escape complete with a custom built-in white oak wardrobe, a generous walk-in closet, and an en-suite bath. The primary shower is as close as you can come to an outdoor shower with fantastic views of NY Harbor. The second bedroom upstairs — currently configured as a charming children's room — with three closets with newly built-out shelving, wonderful views, and an en-suite bathroom, which features a large soaking tub wrapped in soft seafoam glass tile.\n\n160 Columbia Heights is a lovely Art Deco cooperative standing right on The Promenade, where residents enjoy a part-time doorman, resident super, laundry, bike room and storage. Pets and pieds-à-terres are permitted with board approval. It's in a prime location within the Brooklyn Heights Historic District, directly adjacent to the massive Brooklyn Bridge Park, offering 85 acres of glorious waterfront outdoor space and greenery. The shops, services and dining of Brooklyn Heights, Cobble Hill and Dumbo are within easy reach. It's just one stop to Wall St on the 2/3 subway lines, minutes from the 4/5/A/C and R trains and the Fulton Ferry landing.\n", + "features": [ + "Duplex", + "Corner Unit", + "Part-Time Doorman", + "Private Terrace", + "Private Wrap Around Terrace", + "Hardwood Floors", + "Oversized Windows", + "Elevator", + "Laundry in Building", + "Central AC", + "Foyer", + "Renovated Kitchen and Bath", + "Open Kitchen", + "Windowed Bathroom", + "Northern Exposure", + "Southern Exposure", + "Eastern Exposure", + "Walk-in Closet", + "Bike Room", + "Midrise", + "Highrise" + ], + "property_facts": { + "Status": "Contract Signed", + "Days on Market": "69", + "Pet Policy": "Allowed", + "Maintenance": "$2,816 / month", + "Min. Down Pymt": "20%", + "Total Rooms": "5.0", + "Property Type": "Co-op", + "MLS Type": "Co-op", + "Year Built": "1937", + "County": "Kings County" + }, + "regional_facts": {}, + "agent": { + "name": "Micha Hendel", + "email": "micha.hendel@compass.com", + "telephone": "9178815419" + } + }, + "2098677674774135873": { + "listing_id": "2098677674774135873", + "source_url": "https://www.compass.com/homedetails/3413-48th-Ave-SW-Seattle-WA-98116/1SL1GT_pid/", + "retrieved_at": "2026-09-06T04:13:50.280554+00:00", + "html_sha256": "4cbb2a9e405a0a2e09ff0e64f02c48534186a37d630f29cf139c05f4a2b767b3", + "price": 1032300, + "address": "3413 48th Avenue Southwest", + "unit": "", + "city": "Seattle", + "state": "WA", + "zip": "98116", + "neighborhood": "North Admiral", + "latitude": 47.5734066, + "longitude": -122.3937015, + "beds": 3, + "baths_full": 1, + "baths_half": null, + "baths_total": 1.75, + "sqft": 1680, + "property_type": "Single Family", + "year_built": 1952, + "mls_number": "2516892", + "status_text": "Sold", + "days_on_market": 7, + "listed_at_ms": 1777964400000, + "description": "Spacious and refreshed, this inviting home sits on a large lot in a desirable West Seattle location. Inside, you’ll find brand-new tile in the kitchen and bathroom, along with new carpet that adds warmth and a fresh feel throughout. The home features two main level bedrooms and a generous primary bedroom with an attached en suite, offering a comfortable and private retreat. A dedicated dining area opens to an entertainment deck and private backyard—ideal for gatherings or relaxing outdoors. Conveniently located near the Admiral District, with easy access to shops, dining, and bus lines, this home combines comfort, updates, and location. A fantastic opportunity to own a move-in-ready home in one of West Seattle’s most sought-after neighborhoods! Four + off street parking spots.", + "features": [ + "Air Conditioning", + "Basement", + "Carpet Floors", + "Ceramic Floors", + "Dishwasher", + "Dryer", + "Fireplace", + "Forced Air", + "Hardwood Floors", + "Off-Street Parking", + "Refrigerator", + "Walk-in Closet", + "Washer" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "2516892", + "Days on Market": "7", + "Cumulative Days on Market": "7", + "Taxes": "$7,790 / year", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "1952", + "Lot Size": "0.15 AC / 6,466 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Genesee", + "School District": "Seattle", + "View": "Territorial", + "Number of Assigned Spaces": "4", + "Total Covered Parking": "0", + "Offers Review Date": "05-12-2026", + "Entry Date": "05-05-2026", + "Energy Source": "Natural Gas", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "Stine Jackson", + "email": "stine.schoening@compass.com", + "telephone": "4083205256" + } + }, + "2098678005436583905": { + "listing_id": "2098678005436583905", + "source_url": "https://www.compass.com/homedetails/1330-Greenwich-St-San-Francisco-CA-94109/1R4GCG_pid/", + "retrieved_at": "2026-09-06T04:13:34.912960+00:00", + "html_sha256": "417d0b833051b9c5c0cd71152751e5b8e3efdaf5ceee2bf973f0d4d17ed95197", + "price": 2600024, + "address": "1330 Greenwich Street", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94109", + "neighborhood": "Russian Hill", + "latitude": 37.8008935, + "longitude": -122.4217536, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1905, + "property_type": "Condo", + "year_built": 1895, + "mls_number": "426127961", + "status_text": "Closed", + "days_on_market": 20, + "listed_at_ms": 1779951600000, + "description": "Set within a rare two-residence compound in prime Russian Hill, this fully reimagined historic detached cottage blends classic San Francisco charm with thoughtful modern upgrades. Offering privacy, character, and exceptional flexibility, the residence lives like a single-family home with access to shared compound amenities including elevator service, landscaped grounds, and parking. Warmth and volume define the interiors, highlighted by abundant natural light and outlooks toward Pacific Heights and the Presidio. A formal entry with coat closet opens to a dramatic living room featuring exposed beam ceilings, oversized picture windows, and a gas fireplace. Finishes include Douglas Fir floors on the upper level and tile below, with recessed lighting throughout. The chef's kitchen is designed for both function and style, appointed with marble countertops, a Franke apron sink, Viking gas range, Bosch dishwasher, and Liebherr refrigerator. Direct access to the professionally landscaped garden creates seamless indoor/outdoor flow, ideal for entertaining. The front bedroom sits adjacent to a renovated full bath with double vanity, glass-enclosed shower, heated towel rack, and Toto fixtures. Upstairs, a private bedroom retreat captures southwesterly outlooks, complete with custom closet, Murphy bed, and access to a deck. An additional full bath features a soaking tub, custom tilework, and designer lighting. The lower level offers a versatile space suited for a gym, office, or wellness retreat, highlighted by an oversized custom steam sauna. A loft area provides a unique secret reading nook with its own deck. Additional features include a full laundry room and tankless water heater. Part of a comprehensively upgraded compound with new foundation, electrical, and mechanical systems, this distinctive cottage presents a rare opportunity for owner-users, multi-generational living, or income potential in one of San Francisco's most sought-after neighborhoods.", + "features": [ + "Parking Included" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "426127961", + "Days on Compass": "20", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1895", + "County": "San Francisco County" + }, + "regional_facts": { + "Parking Features": "Enclosed, Inside Entrance, Independent, On Site - Mapped (Condo Only)", + "Cross Street": "Larkin", + "Total Parking Spaces": "1" + }, + "agent": { + "name": "John Farnham + Laura Rogers Team", + "email": "housesfteam@compass.com", + "telephone": "415.515.9211" + } + }, + "2098680140269799641": { + "listing_id": "2098680140269799641", + "source_url": "https://www.compass.com/homedetails/137-Putnam-Ave-Brooklyn-NY-11238/2072SR_pid/", + "retrieved_at": "2026-09-06T04:12:59.176680+00:00", + "html_sha256": "9d43bad9ecb2ab71bce780b803e2d38b73bf805b6c21de0088ce5f242906e82d", + "price": 2499000, + "address": "137 Putnam Avenue", + "unit": "", + "city": "Brooklyn", + "state": "NY", + "zip": "11238", + "neighborhood": "Bedford-Stuyvesant", + "latitude": 40.683479, + "longitude": -73.956666, + "beds": 5, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 2753, + "property_type": "Townhouse", + "year_built": 1901, + "mls_number": "", + "status_text": "Active", + "days_on_market": 123, + "listed_at_ms": 1777993368349, + "description": "ALL OPEN HOUSES ARE BY APPOINTMENT ONLY\n\nWelcome to 137 Putnam Avenue, a rare and generous 25-foot-wide, two-family property set on a 100-foot-deep lot, perfectly positioned on tree-lined block where Clinton Hill meets Bedford-Stuyvesant.\n\nThoughtfully renovated about 14 years ago and well-maintained, this elegant residence seamlessly blends classic Brooklyn charm with modern comfort. Configured as a gracious and well appointed owner’s duplex and a spacious two-bedroom top floor rental, this home offers both refined living and excellent income potential.\n\nThe owner’s duplex unfolds across the garden and parlor levels, designed with an emphasis on light, space, and effortless flow. The garden level presents an open-concept layout: a thoughtfully designed chef’s kitchen overlooking the lush garden, a generous dining area ideal for entertaining, and a sunlit living room at the front of the home adjacent to a private entrance. A powder room and dedicated laundry room add convenience to this level.\n\nUpstairs, the parlor floor impresses with soaring 9.5-foot ceilings, rich oak hardwood flooring, and an abundance of natural light. The serene and spacious primary suite is facing the tranquil garden and features dual closets and a spa-like en-suite bath with an oversized shower. Two additional bedrooms, both with ample closet space share a full bathroom with a soaking tub.\n\nThe top-floor residence, accessible via a separate entrance above the stoop, is equally inviting. This well-kept apartment offers two peaceful garden-facing bedrooms, a full bath with a tub and a bright, expansive living and dining area bathed in natural light. The open kitchen comes with a dishwasher, gas stove and microwave, while an in-unit washer and dryer enhance everyday ease.\n\nThe semi-finished basement provides additional flexibility and houses updated mechanical systems, all in excellent condition. Each unit benefits from its own gas boiler and water heater, and the home’s electrical system has been fully upgraded.\n\nIdeally located, moments from the vibrant dining and cultural scene along Franklin Avenue, this townhouse offers the perfect balance of tranquility and connectivity with the nearby access to the C train providing an easy commute to Manhattan, in addition to the elevated Shuttle. Additionally, the LIRR at the Nostrand Avenue station (approximately a 10-minute walk away) is providing access to the City Terminal Zone and various Long Island branches.\n\nLast but not least, this unicorn comes with a huge amount of FAR (approximately 2,250 sf). Check the final number with your architect, but you can basically double the buildable area up to 5,000 sf. Property will be delivered vacant at closing. \n\nPlease email me for additional information.", + "features": [ + "Primary Ensuite", + "Private Yard", + "Hardwood Floors", + "High Ceilings", + "Washer / Dryer in Unit", + "Dishwasher", + "Stainless Steel Appliances", + "Gas Oven", + "Energy Star Appliances", + "Powder Room", + "Granite Kitchen Counter", + "Windowed Kitchen", + "Chef's Kitchen", + "Open Kitchen", + "Windowed Bathroom", + "Granite Bathroom", + "Northern Exposure", + "Southern Exposure", + "Custom Closet", + "Dual Closet", + "Ceramic Bathroom", + "WaterSense Fixtures", + "Cooktop", + "Central Heating", + "Gas Heat", + "Gas Stove", + "Island Kitchen", + "Pantry", + "Intercom", + "Refrigerator", + "Dual Pane Windows", + "House", + "Full Basement", + "Stove", + "Lowrise", + "Kitchen Dining" + ], + "property_facts": { + "Status": "Active", + "Days on Market": "123", + "Taxes": "$231 / month", + "Maintenance": "$250 / month", + "Min. Down Pymt": "20%", + "Total Rooms": "11.0", + "Property Type": "Townhouse", + "Year Built": "1901", + "Lot Size": "2,500 SF / 25' x 100'", + "County": "Kings County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": {}, + "agent": { + "name": "Patricia Laligant", + "email": "patricia.laligant@compass.com", + "telephone": "9173627749" + } + }, + "2098681291724144441": { + "listing_id": "2098681291724144441", + "source_url": "https://www.compass.com/homedetails/1332-Greenwich-St-San-Francisco-CA-94109/1P29MP_pid/", + "retrieved_at": "2026-09-06T04:13:34.889253+00:00", + "html_sha256": "bedb336eebaee5e98885a5b4f59fc082cf4ea5d74331fc6e4db994b6b64cf0e2", + "price": 6500000, + "address": "1332 Greenwich Street", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94109", + "neighborhood": "Russian Hill", + "latitude": 37.801038, + "longitude": -122.421733, + "beds": 3, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 2542, + "property_type": "Condo", + "year_built": 1895, + "mls_number": "426127964", + "status_text": "Closed", + "days_on_market": 20, + "listed_at_ms": 1779951600000, + "description": "Set within a rare two-residence compound in prime Russian Hill, this design-forward detached rear home rebuilt in 2017 by award-winning architect Jonathan Feldman offers modern scale, curated finishes, and sweeping views spanning the Golden Gate Bridge, Bay, and city skyline. Thoughtfully designed for seamless indoor/outdoor living, the residence combines clean architectural lines with warm materials, custom millwork, and exceptional natural light. Main living level offers an open-concept kitchen, living, and dining spaces that flow effortlessly to a south-facing deck through metal-framed doors. The kitchen features a waterfall-edge island, composite countertops, six-burner Wolf range, Sub-Zero glass-front refrigerator, Asko dishwasher, beverage refrigerator, and custom pull-out pantry. A serene living room is anchored by an oversized gas fireplace with marble surround, built-ins, and partial water views. Two en-suite bedrooms on the main level include a rear suite with built-ins, walk-in closet, and custom window treatments, and a front suite with metal-framed doors opening to a private patio, along with built-in desk and custom closets. The Primary Suite is a top floor private retreat with vaulted ceilings, oak detailing, hardwood floors, and skylight, along with dual custom closets and a spa-inspired bath with floating double vanity, marble shower, and bay views. An adjacent family room opens directly to a large panoramic view deck with expansive outlooks capturing the Golden Gate Bridge, Marin Headlands, Mt. Tamalpais, Angel Island, Palace of Fine Arts, and the Presidio and is equipped with outdoor water and electrical for elevated entertaining. Additional Features: Elevator access from garage to house entrance; strong indoor/outdoor connection; dramatic ceiling volume; laundry room and mudroom; powder room with floating marble vanity; dedicated media/Savant system closet; integrated Savant AV; comprehensive interior/exterior security; custom lighting and premium finishes throughout. A Mediterranean-inspired garden retreat with multiple patios, custom trellises, water feature, and redwood fencing. Fully automated lighting and irrigation create a private, low-maintenance outdoor environment. Ideally located near Hyde and Polk Street corridors, Alice Marble Tennis Courts, Aquatic Park, and Francisco Park, this turnkey residence offers rare scale, flexibility, and iconic San Francisco views.", + "features": [ + "Parking Included" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "426127964", + "Days on Compass": "20", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1895", + "County": "San Francisco County" + }, + "regional_facts": { + "Parking Features": "Enclosed, Independent, On Site - Mapped (Condo Only)", + "Cross Street": "Larkin", + "Total Parking Spaces": "2" + }, + "agent": { + "name": "John Farnham + Laura Rogers Team", + "email": "housesfteam@compass.com", + "telephone": "415.515.9211" + } + }, + "2098695916221535001": { + "listing_id": "2098695916221535001", + "source_url": "https://www.compass.com/homedetails/300-Virginia-St-Unit-809-Seattle-WA-98101/27ESWS_pid/", + "retrieved_at": "2026-09-06T04:13:51.459277+00:00", + "html_sha256": "7cc200aabf9f3e2708a19832b1fb330d712c148a014836fb2aff7cce6cf1f9b0", + "price": 1080000, + "address": "300 Virginia Street, Unit 809", + "unit": "809", + "city": "Seattle", + "state": "WA", + "zip": "98101", + "neighborhood": "Belltown", + "latitude": 47.6128082, + "longitude": -122.340875, + "beds": 2, + "baths_full": 1, + "baths_half": null, + "baths_total": 1.75, + "sqft": 940, + "property_type": "Condo", + "year_built": 2025, + "mls_number": "2518237", + "status_text": "Active", + "days_on_market": 123, + "listed_at_ms": 1777964400000, + "description": "First Light, designed by architect James KM Cheng and glass artist John Hogan is Westbank’s latest residential tower in Downtown Seattle. This Southwest 2 Bedroom Home offers an expansive layout, with a wraparound balcony and 1.75 bathrooms. Floor-to-ceiling, triple-paned windows allow for spectacular views of the City. Each home features custom-designed interiors by the architect and includes custom B&B Italia cabinetry, light finishes with contrasting details, Kohler fixtures, Miele appliances, keyless entry & hardwoods throughout. Amenities include a 47th floor 25-meter rooftop sky pool & jacuzzies, rooftop garden, fitness & wellness center, bike lounge, pet play area, spa & residents lounge.", + "features": [ + "Air Conditioning", + "Central AC", + "City Views", + "Common Outdoor Space", + "Common Roof Deck", + "Communal Pool", + "Dishwasher", + "Disposal", + "Dryer", + "Elevator", + "Forced Air", + "Garage", + "Gated Community", + "Gym", + "Lake Views", + "Microwave", + "Pets Conditional", + "Refrigerator", + "Snow Removal Included", + "Walk-in Closet", + "Washer" + ], + "property_facts": { + "Status": "Active", + "MLS #": "2518237", + "Days on Market": "123", + "Cumulative Days on Market": "123", + "HOA Fees": "$900 / month", + "Property Type": "Condo", + "MLS Type": "Residential", + "Year Built": "2025", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Downtown", + "School District": "Seattle", + "View": "City, Lake, Mountains, Sound", + "Number of Assigned Spaces": "0", + "Entry Date": "05-05-2026", + "Energy Source": "Electric,Natural Gas" + }, + "agent": { + "name": "Doug Sonnenberg", + "email": "dougsonnenberg@compass.com", + "telephone": "8018242845" + } + }, + "2098698929351071737": { + "listing_id": "2098698929351071737", + "source_url": "https://www.compass.com/homedetails/300-Virginia-St-Unit-811-Seattle-WA-98101/27ET0L_pid/", + "retrieved_at": "2026-09-06T04:13:51.800671+00:00", + "html_sha256": "27681e2e440414a8279c302fe6d86bb9acfcbacbed9a914bfea15ff853a753e9", + "price": 595000, + "address": "300 Virginia Street, Unit 811", + "unit": "811", + "city": "Seattle", + "state": "WA", + "zip": "98101", + "neighborhood": "Belltown", + "latitude": 47.6128082, + "longitude": -122.340875, + "beds": 1, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 586, + "property_type": "Condo", + "year_built": 2025, + "mls_number": "2518236", + "status_text": "Active", + "days_on_market": 123, + "listed_at_ms": 1777964400000, + "description": "First Light, designed by architect James KM Cheng and glass artist John Hogan is Westbank’s latest residential tower in Downtown Seattle. This West facing traditional 1 Bedroom Home offers an open, efficient layout, with a spacious balcony and one full bathroom. Floor-to-ceiling, triple-paned windows allow for spectacular Belltown city views. Each home features custom-designed interiors by the architect and includes custom B&B Italia cabinetry, light finishes with contrasting details, Kohler fixtures, Miele appliances, keyless entry and hardwoods throughout. Amenities include a 47th floor 25-meter rooftop sky pool & jacuzzies, a rooftop garden, fitness & wellness center, bike lounge, pet play area, spa & resident’s lounge", + "features": [ + "Air Conditioning", + "Central AC", + "City Views", + "Common Outdoor Space", + "Common Roof Deck", + "Communal Pool", + "Corner Lot", + "Dishwasher", + "Disposal", + "Dryer", + "Elevator", + "Forced Air", + "Garage", + "Gated Community", + "Gym", + "Microwave", + "Ocean Views", + "Pets Conditional", + "Refrigerator", + "Snow Removal Included", + "Walk-in Closet", + "Washer" + ], + "property_facts": { + "Status": "Active", + "MLS #": "2518236", + "Days on Market": "123", + "Cumulative Days on Market": "123", + "HOA Fees": "$600 / month", + "Property Type": "Condo", + "MLS Type": "Residential", + "Year Built": "2025", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Downtown", + "School District": "Seattle", + "View": "City, Mountains, Ocean, Sound, Territorial", + "Number of Assigned Spaces": "0", + "Entry Date": "05-05-2026", + "Energy Source": "Electric,Natural Gas" + }, + "agent": { + "name": "Doug Sonnenberg", + "email": "dougsonnenberg@compass.com", + "telephone": "8018242845" + } + }, + "2098711673928053369": { + "listing_id": "2098711673928053369", + "source_url": "https://www.compass.com/homedetails/410-Jefferson-Ave-Unit-3-Brooklyn-NY-11221/1ZXYNG_pid/", + "retrieved_at": "2026-09-06T04:12:59.727566+00:00", + "html_sha256": "9c0a6a28fc82dda5a5cadead250bbec64bee1550478937a0ad8b2b361c7f4862", + "price": 2925, + "address": "410 Jefferson Avenue, Unit 3", + "unit": "3", + "city": "Brooklyn", + "state": "NY", + "zip": "11221", + "neighborhood": "Bedford-Stuyvesant", + "latitude": 40.6840923, + "longitude": -73.9415504, + "beds": 2, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 750, + "property_type": "Apartment", + "year_built": 1905, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 19, + "listed_at_ms": 1777997127462, + "description": "Super Charming Home for rent Bedford-Stuyvesant!\n\nStep into this sunny and charming 2-bedroom, 1-bath top-floor apartment nestled in a classic brownstone on one of Bed-Stuy's peaceful, tree-lined streets. This home is all about warmth and character, with plenty of light streaming in through large windows. The living room and bathroom overlook a serene garden, while the bedrooms face the quiet, picturesque street—offering the perfect blend of privacy and tranquility.\n\nThe kitchen has been lovingly maintained, and the spacious bathroom is a showstopper with its vintage clawfoot tub and an oversized window that lets in natural light. Plus, you’ll love the added convenience of an in-unit washer and dryer (goodbye, laundromat trips!). Hardwood floors and exposed brick walls complete the look, bringing a timeless charm to the space.\n\nLocation? You can’t beat it! This apartment sits smack in the middle of Bed-Stuy’s vibrant community, surrounded by some of the neighborhood’s favorite spots like Saraghina, Peaches, & Therapy Wine Bar, and so many more. Whether you’re craving a cozy coffee, a delicious bite, or a night out, it’s all just around the corner.\n\nCommuting is a breeze with the C train at Kingston-Throop Avenue or a quick stroll to the A train at Nostrand Avenue.\n\nAdditional details:\n\nPet-friendly (dogs and cats considered case-by-case).\nHeat and gas included in the rent—tenants only cover electricity and cable.\nAvailable now!", + "features": [ + "Entire Floor", + "Exposed Brick", + "Hardwood Floors", + "Elevator", + "Walk Up", + "Washer / Dryer in Unit", + "Window AC can be Installed", + "Gas Oven", + "Energy Star Appliances", + "Granite Kitchen Counter", + "Chef's Kitchen", + "Windowed Bathroom", + "Northern Exposure", + "Southern Exposure", + "Custom Closet", + "Voice Intercom", + "Ceramic Bathroom", + "Double Entry Bathroom", + "Soaking Tub", + "Central Heating", + "Gas Stove", + "Brownstone", + "Refrigerator", + "Lowrise" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "19", + "Rental Incentives": "No Fee", + "Available Date": "05/05/2026", + "Lease Term": "Lease Length: 12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "5.0", + "Property Type": "Apartment", + "Year Built": "1905", + "Lot Size": "1,750 SF / 18' x 100'", + "County": "Kings County" + }, + "regional_facts": {}, + "agent": { + "name": "Justin DuPree", + "email": "justin.dupree@compass.com", + "telephone": "9177571348" + } + }, + "2098730215016681681": { + "listing_id": "2098730215016681681", + "source_url": "https://www.compass.com/homedetails/170-NW-44th-St-Miami-FL-33127/1DXC7A_pid/", + "retrieved_at": "2026-09-06T04:12:39.359773+00:00", + "html_sha256": "ff0d42b1a7bced5bd2be7a9326abd5e0a5cae9b9903107dcc35b69c890fe7902", + "price": 2749000, + "address": "170 Northwest 44th Street", + "unit": "", + "city": "Miami", + "state": "FL", + "zip": "33127", + "neighborhood": "Buena Vista Heights", + "latitude": 25.8157176, + "longitude": -80.19894819999999, + "beds": 4, + "baths_full": 4, + "baths_half": 1, + "baths_total": 4.5, + "sqft": null, + "property_type": "Single Family", + "year_built": 2026, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Welcome to this custom 4-bedroom, 4.5-bath residence perfectly positioned in Buena Vista West, moments from the Miami Design District, Midtown, and Wynwood. This organic architectural retreat features a main house and detached guest house connected by a spa-like pool oasis with summer kitchen and lush tropical landscaping. Back inside, the chef's kitchen features top of the line appliances, floor to ceiling cabinetry, gas range and a wet bar. Volume ceilings, natural light, and seamless indoor-outdoor transitions define the open floor plan — ideal for both entertaining and everyday living. Designed with an organic modern aesthetic, the new owner will enjoy use of natural stone in the floors, walls and bathrooms as the goal of this home is to have a true connection to nature.\nWith an Estimated Mid summer delivery date, this property captures the essence of Miami's vibrant yet tranquil lifestyle. Schedule your private tour today.", + "features": [], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Single Family", + "Year Built": "2026", + "Lot Size": "0.17 AC / 7,200 SF", + "County": "Miami-Dade County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Waterfront": "No", + "Area": "31" + }, + "agent": { + "name": "Tristan Alexander", + "email": "tristan.alexander@compass.com", + "telephone": "3055429495" + } + }, + "2098744464745260265": { + "listing_id": "2098744464745260265", + "source_url": "https://www.compass.com/homedetails/362-Ward-St-Seattle-WA-98109/1RN8WQ_pid/", + "retrieved_at": "2026-09-06T04:13:53.247762+00:00", + "html_sha256": "a2b4b6cf8d1752c93f6e95236c33fdb93b3b49095097c0450b86123ee4e9b9ae", + "price": 4950000, + "address": "362 Ward Street", + "unit": "", + "city": "Seattle", + "state": "WA", + "zip": "98109", + "neighborhood": "East Queen Anne", + "latitude": 47.6282538, + "longitude": -122.3497183, + "beds": 5, + "baths_full": 4, + "baths_half": 1, + "baths_total": 4.5, + "sqft": 4420, + "property_type": "Single Family", + "year_built": 2020, + "mls_number": "2517961", + "status_text": "Sold", + "days_on_market": 93, + "listed_at_ms": 1777964400000, + "description": "Elevated luxury in the heart of Queen Anne. Awaken with the sun over Seattle’s Emerald City & take in breathtaking, panoramic views of the Space Needle, skyline & Puget Sound from every level of this stunning 3-story residence. Designed for modern luxury, the home showcases soaring floor-to-ceiling glass walls, elegant contemporary finishes & cutting-edge smart home technology. Host unforgettable gatherings in the open-concept kitchen, living & picture-perfect dining spaces featuring rich hardwood floors, a striking fireplace & premier espresso, Sub-Zero & Wolf appliances—all set against awe-inspiring city & water vistas. Experience seamless indoor-outdoor living on a private, expansive rooftop deck with a fridge, BBQ, fireplace & wiring for a hot tub—the ideal place to savor Seattle’s sunsets for years to come. The primary suite's beautiful views pair with a dual-sided fireplace, patio, spa-inspired ensuite bath, wall to wall Carrera marble & heated floors. Unwind in your movie theater with surround sound, recharge in the fitness center, or indulge in a glass from your wine cellar. Highlights: 2 electric car chargers, sustainable solar panels, sleek Fleetwood doors & windows with 3M UV coating for energy efficiency, a dumb waiter for garbage/laundry & a wet bar. Beautifully maintained PNW/Japanese garden with sprinkler system. Blocks from Queen Anne, this home offers an unparalleled blend of luxury, technology & style—all with unmatched views of vibrant Seattle.", + "features": [ + "Air Conditioning", + "Attached Garage", + "Basement", + "Bay Views", + "Carpet Floors", + "Central AC", + "Ceramic Floors", + "City Views", + "Contemporary", + "Dishwasher", + "Disposal", + "Driveway", + "Dryer", + "Fireplace", + "Forced Air", + "Garage", + "Hardwood Floors", + "Microwave", + "Pantry", + "Refrigerator", + "Security System", + "Skylight", + "Walk-in Closet", + "Washer", + "Wet Bar" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "2517961", + "Days on Market": "93", + "Cumulative Days on Market": "163", + "Taxes": "$51,490 / year", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "2020", + "Lot Size": "0.11 AC / 4,860 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Queen Anne", + "School District": "Seattle", + "View": "Bay, City, Mountains, Sound", + "Number of Assigned Spaces": "4", + "Total Covered Parking": "2", + "Entry Date": "05-05-2026", + "Energy Source": "Electric,Natural Gas", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "Mike Moghaddas", + "email": "mike.moghaddas@compass.com", + "telephone": "4258301316" + } + }, + "2098864023212997433": { + "listing_id": "2098864023212997433", + "source_url": "https://www.compass.com/homedetails/58-Maroon-Dr-Aspen-CO-81611/LR44Y_pid/", + "retrieved_at": "2026-09-06T04:10:36.257473+00:00", + "html_sha256": "b1d9c64aeaff8acc1cb21d2319a7be844cbec47b15b899a730a1327971aa00ca", + "price": 9500000, + "address": "58 Maroon Drive", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "West Aspen", + "latitude": 39.1985353, + "longitude": -106.8480061, + "beds": 4, + "baths_full": 3, + "baths_half": 2, + "baths_total": 4, + "sqft": 3267, + "property_type": "Single Family", + "year_built": 1976, + "mls_number": "192702", + "status_text": "Closed", + "days_on_market": 43, + "listed_at_ms": 1777939200000, + "description": "Located less than a mile away from Aspen, this two-level chalet, completely remodeled in 2014, offers an open floor plan that blends the indoors seamlessly with nature. Vaulted oak ceilings and expansive windows flood the space with natural light, while a rock mantle wood-burning fireplace adds warmth. The chef's kitchen boasts marble countertops and a 5 burner range, perfect for entertaining. The home features dual master suites, including one with a private deck and spacious bathroom on the second level. Two additional bedrooms include custom built-ins and serene views. One of the highlights of the property is the large, flat lawn with mountain views of Aspen and Highlands. There is also a detached two car garage. Just minutes from downtown Aspen, Aspen schools, recreation center, skiing, hiking, and biking. For a one of a kind compound in Aspen, this property can be purchased with the neighboring property at 28 Maroon Drive.", + "features": [ + "Range", + "Deck", + "Garage", + "Air Conditioning", + "Chef's Kitchen", + "Built-Ins", + "Mountain Views" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "192702", + "Days on Market": "43", + "Taxes": "$23,168 / year", + "HOA Fees": "$2,000 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family", + "Year Built": "1976", + "Lot Size": "1.08 AC / 47,044 SF", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "Yes", + "Property Faces": "East", + "Furnished": "Unfurnished", + "Sub/Loc": "Pyramid View" + }, + "agent": { + "name": "Carrie Wells", + "email": "carrie@carriewells.com", + "telephone": "970-925-7000" + } + }, + "2098874792650727321": { + "listing_id": "2098874792650727321", + "source_url": "https://www.compass.com/homedetails/1343-Ives-Pl-SE-Washington-DC-20003/1UZLUD_pid/", + "retrieved_at": "2026-09-06T04:14:17.338153+00:00", + "html_sha256": "10a85a7ddb884bfb8a33298f44e57b9e5ceefc32dc8b017bd40e4423596d2cef", + "price": 640000, + "address": "1343 Ives Place Southeast", + "unit": "", + "city": "Washington", + "state": "DC", + "zip": "20003", + "neighborhood": "Capitol Hill", + "latitude": 38.8788938, + "longitude": -76.9866839, + "beds": 2, + "baths_full": 1, + "baths_half": 1, + "baths_total": 1.5, + "sqft": 1255, + "property_type": "Townhouse", + "year_built": 1927, + "mls_number": "DCDC2261452", + "status_text": "Closed", + "days_on_market": 24, + "listed_at_ms": 1778644800000, + "description": "A home that’s been loved for over 30 years is ready for its next chapter.\n\nFrom the moment you arrive, there’s a sense of coming home —the welcoming front porch sets the tone, opening into a sunny living room with a fireplace and built in bookshelves. The dining room overlooks a sweet, private backyard, while the updated galley kitchen offers a bright and efficient space. Don't miss the first floor powder room - what a surprise! Beautiful wood floors run throughout, adding warmth and thoughts of barefoot morning breakfast!\n\nUpstairs, two gracious bedrooms and an updated full bath are bathed in natural light, creating a calm and comfortable retreat.\n\nDownstairs, a full walk-out basement opens the door to even more—whether you envision additional living space, a guest suite, or a home office, it’s a blank canvas ready to grow with you.\n\nAnd then there are the thoughtful upgrades, including solar panels that offer both sustainability and meaningful savings on electricity.\n\nTucked on a quiet, almost storybook block - have you heard of Ives Place? This home offers the best of both worlds—peaceful and residential, yet just steps to the Metro, The Roost DC, and walkable to Eastern Market and Barracks Row.\n\nA rare opportunity to have a move-in ready home that still has room for you to live and upgrade in time - rooted in history, and ready for what’s next.", + "features": [ + "Fireplace", + "Basement" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "DCDC2261452", + "Days on Market": "24", + "Taxes": "$1,526 / year", + "Property Type": "Townhouse", + "MLS Type": "Residential / Fee Simple", + "Year Built": "1927", + "Lot Size": "0.03 AC / 1,125 SF", + "County": "District of Columbia", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Tax ID Number": "1046//0090", + "Ownership": "Fee Simple", + "Condo Coop Association": "No", + "HOA": "No", + "Structure Type": "Interior Row/Townhouse", + "Style": "Art Deco", + "Levels/Stories": "3", + "Waterfront": "No", + "Garage": "No", + "Subdivision": "HILL EAST (WASHINGTON DC)", + "Legal Subdivision": "Old City 1", + "Central Air": "No", + "Basement": "Yes", + "Above Grade Finished SQFT": "912.00", + "Above Grade Fin SQFT Source": "Assessor", + "Below Grade Finished SQFT": "343.00", + "Below Grade Fin SQFT Source": "Assessor", + "Below Grade Unfinished SQFT": "113.00", + "Below Grade Unfin SQFT Source": "Assessor", + "Total Below Grade SQFT": "456.00", + "Total Below Grade SQFT Source": "Assessor", + "New Construction": "No", + "Property Condition": "Good" + }, + "agent": { + "name": "Jacquelyn Sink", + "email": "jackie.sink@compass.com", + "telephone": "2023525793" + } + }, + "2098901119248348881": { + "listing_id": "2098901119248348881", + "source_url": "https://www.compass.com/homedetails/566-Wolff-St-Denver-CO-80204/12D59Q_pid/", + "retrieved_at": "2026-09-06T04:11:40.505435+00:00", + "html_sha256": "45ebc4b26560980fcccf74a57ac5d8a0b41383ed6c1b40c48c70e220d08ab0b2", + "price": 345000, + "address": "566 Wolff Street", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80204", + "neighborhood": "Barnum West", + "latitude": 39.7249392, + "longitude": -105.0483213, + "beds": 4, + "baths_full": 1, + "baths_half": 0, + "baths_total": 2, + "sqft": 1676, + "property_type": "Single Family", + "year_built": 1953, + "mls_number": "6336494", + "status_text": "Closed", + "days_on_market": 3, + "listed_at_ms": 1778220000000, + "description": "Wonderful value and great potential in the Denver Barnum West neighborhood!! Great bones on this home with two bedrooms and a bathroom on each level. This is the perfect opportunity for someone to create sweat equity or even possibly fix it up for a flip! Amazingly convenient location, with very easy access to 6th Avenue. Thus, you are just minutes away from downtown Denver or heading to the mountains. The basement includes two non-conforming bedrooms and a bathroom, and the main floor has hardwood floors. In addition, the furnace, A/C, and water heater are all newer. Nice-sized yard with a detached garage for off-street parking. Do not miss out on this opportunity to make this one your own!!", + "features": [ + "Central AC", + "Dishwasher", + "Dryer", + "Electricity Included", + "Forced Air", + "Full Basement", + "Garage", + "Gas Heat", + "Parking Included", + "Private Outdoor Space", + "Private Yard", + "Refrigerator", + "Washer", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "6336494", + "Days on Compass": "3", + "Taxes": "$2,475 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1953", + "Lot Size": "0.15 AC / 6,640 SF", + "County": "Denver County" + }, + "regional_facts": { + "Structure Type": "House", + "Architectural Style": "Mid-Century Modern", + "Levels": "One", + "Subdivision Name": "Barnum West", + "Association": "No", + "Basement": "Yes" + }, + "agent": { + "name": "Shannon Duncan", + "email": "shannon.duncan@compass.com", + "telephone": "3032637651" + } + }, + "2099346785984239625": { + "listing_id": "2099346785984239625", + "source_url": "https://www.compass.com/homedetails/8809-42nd-Ave-SW-Seattle-WA-98136/1SS13S_pid/", + "retrieved_at": "2026-09-06T04:13:55.143728+00:00", + "html_sha256": "f5b09687ece2800092ab45410ced9d8b2835a627dd55452165e55ea4b9234c00", + "price": 2377700, + "address": "8809 42nd Avenue Southwest", + "unit": "", + "city": "Seattle", + "state": "WA", + "zip": "98136", + "neighborhood": "Fauntleroy", + "latitude": 47.5249062, + "longitude": -122.3857876, + "beds": 4, + "baths_full": 1, + "baths_half": 1, + "baths_total": 2.25, + "sqft": 3050, + "property_type": "Single Family", + "year_built": 1953, + "mls_number": "2513217", + "status_text": "Sold", + "days_on_market": 6, + "listed_at_ms": 1778050800000, + "description": "Modern luxury above the Sound: Experience amazing PNW living in this meticulously reimagined Fauntlee Hills home. Remodeled to the studs in 2013-2014, this modern home blends high-end features with breathtaking natural beauty, offering unobstructed panoramic views of the Olympic Mountains, Puget Sound, and the rhythmic passage of the ferries. The heart of the home: the chef’s kitchen (fully remodeled in 2022) features a professional appliance suite including a 6-burner Wolf gas range, a Viking double oven with French doors, and a Sub-Zero fridge/freezer. The open-concept main floor highlights the view from all areas, with a wall of windows and 2 sets of French doors that lead to the expansive Western-facing deck. Thoughtful design meets ultimate comfort with a primary suite conveniently located on the entry level. Every bedroom includes custom built-ins, maximizing style and storage. Downstairs boasts full-height living, 3 additional bedrooms, a custom entertainment area and easy access to the huge fenced back yard and spa area – a private sanctuary in a park-inspired setting. The professionally landscaped front yard is a work of art, and also features a tranquil entry water feature and a full sprinkler system. Enjoy total peace of mind with a brand-new roof (Dec 2025), new electrical, and updated plumbing (2014). Whether you’re relaxing in the hot tub or entertaining on the deck, the views remain the star of the show. Enjoy turn-key luxury the moment you arrive.", + "features": [ + "Attached Garage", + "Basement", + "Carpet Floors", + "Dishwasher", + "Disposal", + "Double Oven", + "Driveway", + "Dryer", + "Fireplace", + "Forced Air", + "Garage", + "Hardwood Floors", + "Microwave", + "Private Outdoor Space", + "Radiant Heating", + "Refrigerator", + "Security System", + "Spa", + "Walk-in Closet", + "Washer" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "2513217", + "Days on Market": "6", + "Cumulative Days on Market": "6", + "Taxes": "$13,854 / year", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "1953", + "Lot Size": "0.27 AC / 11,552 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Fauntleroy", + "School District": "Seattle", + "View": "Islands, Mountains, Sound, Territorial", + "Number of Assigned Spaces": "3", + "Total Covered Parking": "1", + "Offers Review Date": "05-12-2026", + "Entry Date": "05-06-2026", + "Energy Source": "Electric,Natural Gas", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "Jennifer Huggins", + "email": "jennifer.huggins@compass.com", + "telephone": "2068165829" + } + }, + "2099359967020959689": { + "listing_id": "2099359967020959689", + "source_url": "https://www.compass.com/homedetails/150-E-3rd-St-Unit-2-Manhattan-NY-10009/27F149_pid/", + "retrieved_at": "2026-09-06T04:13:02.007874+00:00", + "html_sha256": "fb7276bc02a750842d30dd230bab6ae434c22c51dd280e921abc787308d41eb3", + "price": 5500, + "address": "150 East 3rd Street, Unit 2", + "unit": "2", + "city": "Manhattan", + "state": "NY", + "zip": "10009", + "neighborhood": "East Village", + "latitude": 40.7234106, + "longitude": -73.985092, + "beds": 2, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": null, + "property_type": "Rental", + "year_built": 1900, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 6, + "listed_at_ms": 1778074410110, + "description": "*Massive living room in the East Village\n\nThis unit is up just 1 flight with oversized street facing windows that bring natural light into this spacious living room. Perfect for entertaining, the living area can comfortably fit both a large sectional couch and a dining table. This unit also features two queen-sized bedrooms with ample closet space, a modern kitchen with updated appliances, and a large entry way perfect for additional storage.\n\nShort walk to the F for easy commuting, and just steps from Tompkins Square Park and all the best restaurants and bars in the East Village and the Lower East Side!\n\n*Rent includes cooking gas, water, and heat.\n*$20 credit check to apply\n*Guarantor/Rhino required", + "features": [ + "Hardwood Floors", + "Dishwasher", + "Voice Intercom", + "Midrise" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "6", + "Pet Policy": "Only Cats Allowed", + "Rental Incentives": "No Fee", + "Available Date": "06/01/2026", + "Lease Term": "Lease Length: 12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "3.0", + "Property Type": "Rental", + "Year Built": "1900", + "County": "New York County" + }, + "regional_facts": {}, + "agent": { + "name": "Ricardo De La Torre", + "email": "ricardo.delatorre@compass.com", + "telephone": "2134536892" + } + }, + "2099381091675141849": { + "listing_id": "2099381091675141849", + "source_url": "https://www.compass.com/homedetails/21-Glen-Rd-Unit-10-Jamaica-Plain-MA-02130/1ZH6AJ_pid/", + "retrieved_at": "2026-09-06T04:11:04.157313+00:00", + "html_sha256": "ee380485443d3ccf4e8eb5930f35c56c88cfd5ff40c13cda9708874b196f89a3", + "price": 695000, + "address": "21 Glen Road, Unit 10", + "unit": "10", + "city": "Boston", + "state": "MA", + "zip": "02130", + "neighborhood": "Jamaica Plain", + "latitude": 42.309072, + "longitude": -71.104152, + "beds": 2, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 1005, + "property_type": "Condo", + "year_built": 2023, + "mls_number": "73517497", + "status_text": "Sold", + "days_on_market": 7, + "listed_at_ms": 1778644800000, + "description": "Perched on the top floor of a modern Jamaica Plain building, this penthouse unit delivers the kind of light and openness that stops you the moment you step inside. Floor-to-ceiling windows frame shifting seasonal views of the surrounding landscape, and the clean lines of the interior settle into calm while the city hums below. The open layout flows naturally from the living area into a well-appointed kitchen anchored by a large island, where morning coffee turns into weekend gatherings without missing a beat. Both bedrooms offer custom closets that make daily life feel effortless, and the full-size in-unit washer and dryer add genuine convenience. Sliding glass doors bring in a cross breeze that softens the urban energy below. Central air, elevator access, and private storage round out the practical side of this newer-construction home that is perfectly positioned between the Green Street T Station, Franklin Park, the Brewery Complex, and the Southwest Corridor's parks and bike paths.", + "features": [ + "Elevator", + "Washer / Dryer in Unit", + "Dryer", + "Washer", + "Air Conditioning", + "Forced Air", + "Off-Street Parking", + "Assigned Parking", + "Common Outdoor Space", + "Dishwasher", + "Microwave", + "Disposal", + "Range", + "Refrigerator", + "Private Outdoor Space", + "Golf Course Community", + "Gas Heat", + "Parking Included", + "Pet Friendly", + "Snow Removal Included" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "73517497", + "Days on Market": "7", + "Taxes": "$4,144 / year", + "HOA Fees": "$422 / month", + "Property Type": "Condo", + "MLS Type": "Condominium/Co-Op / Condo", + "Year Built": "2023", + "County": "Suffolk County" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "Jamaica Plain", + "Area": "MA-Boston-Jamaica Plain, MA-Boston", + "Style": "Low-Rise, Garden", + "Garage Spaces": "0", + "Open Parking Spaces": "1.00", + "Parking Spaces Total": "1", + "Unit Placement": "Upper, Top/Penthouse, Corner" + }, + "agent": { + "name": "The Muncey Group", + "email": "themunceygroup@compass.com", + "telephone": "617-905-6445" + } + }, + "2099403464016671481": { + "listing_id": "2099403464016671481", + "source_url": "https://www.compass.com/homedetails/393-Classon-Ave-Unit-2-Brooklyn-NY-11238/202X2V_pid/", + "retrieved_at": "2026-09-06T04:13:02.245638+00:00", + "html_sha256": "08e908838b81c11c201f6ee4664d74603334036592f37a5889d0d9b68fae6deb", + "price": 5000, + "address": "393 Classon Avenue, Unit 2", + "unit": "2", + "city": "Brooklyn", + "state": "NY", + "zip": "11238", + "neighborhood": "Bedford-Stuyvesant", + "latitude": 40.6876276, + "longitude": -73.9595868, + "beds": 2, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": null, + "property_type": "Apartment", + "year_built": 1970, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 12, + "listed_at_ms": 1778079595313, + "description": "393 Classon Avenue’s second floor apartment has been renovated to meet all your needs in this three story building on the border of Bed-Stuy and Clinton Hill.\n\nThe second floor apartment has exposed brick, central air conditioning and heating, new hardwood floors and an in-unit washer & dryer you will love coming home! The second bedroom is spacious while the primary bedroom is large enough to fit a queen sized bed and some extra furniture. There is ample storage throughout the apartment’s closets, with the entry closet and second bedroom closet being pretty deep. You will love to entertain guests in your open kitchen/living/dining area. Stone countertops, a five burner stove, built-in microwave, and a dishwasher make the kitchen a treat to make your next meal.\n\nTwo blocks away from the G train at Classon Avenue and with several buses nearby getting to where you need to be will be a breeze! Plus you get to enjoy all that Bed-Stuy and Clinton Hill have to offer with the apartment’s central location to the two nabes.\n", + "features": [ + "Exposed Brick", + "Decorative Fireplace", + "Hardwood Floors", + "Washer / Dryer in Unit", + "Central AC", + "Dishwasher", + "Stainless Steel Appliances", + "Gas Oven", + "Granite Kitchen Counter", + "Windowed Kitchen", + "Northern Exposure", + "Southern Exposure", + "Recessed Lighting", + "Central Heating", + "Gas Stove", + "Lowrise", + "Electric Heat" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "12", + "Rental Incentives": "No Fee", + "Available Date": "06/01/2026", + "Lease Term": "Lease Length: 12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "5.0", + "Property Type": "Apartment", + "Year Built": "1970", + "Lot Size": "1,908 SF / 26' x 75'", + "County": "Kings County" + }, + "regional_facts": {}, + "agent": { + "name": "Luther Hines", + "email": "luther.hines@compass.com", + "telephone": "9172261622" + } + }, + "2099406452962035657": { + "listing_id": "2099406452962035657", + "source_url": "https://www.compass.com/homedetails/814-31st-Ave-S-Seattle-WA-98144/1S4UKX_pid/", + "retrieved_at": "2026-09-06T04:13:55.040017+00:00", + "html_sha256": "58ab2ed3fe58ecf6f703b6e20b81947a6e02ed091b0d6de6f4f38624a5d5fa9c", + "price": 1885000, + "address": "814 31st Avenue South", + "unit": "", + "city": "Seattle", + "state": "WA", + "zip": "98144", + "neighborhood": "Leschi", + "latitude": 47.5952462, + "longitude": -122.2922668, + "beds": 4, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 2961, + "property_type": "Single Family", + "year_built": 1988, + "mls_number": "2517444", + "status_text": "Sold", + "days_on_market": 5, + "listed_at_ms": 1778050800000, + "description": "Gorgeous contemporary Leschi home showcasing unobstructed, panoramic views of Lake Washington, the Cascades and the Bellevue skyline. True chef’s kitchen featuring Wolf, Sub-Zero, Miele, Blue Star. Take in the breathtaking scenery from your private rooftop deck, watch the Blue Angels fly by. Perfect for entertaining or relaxing above it all. Freshly painted and filled with natural light, the expansive living room creates an airy, inviting space, while the large dining room with access to a deck to enjoy more of the fabulous views. The luxurious primary suite features, spacious closets, spa-inspired bath. The lower-level bedroom offers flexibility as an office or guest room. Parking for 3 cars just off the quiet dead-end alley. Move right in and enjoy life in one of Seattle’s most sought-after neighborhoods. Minutes to downtown, the eastside and a short walk to restaurants, shops and the lake.", + "features": [ + "Air Conditioning", + "Carpet Floors", + "Central AC", + "Ceramic Floors", + "Dishwasher", + "Disposal", + "Double Oven", + "Driveway", + "Dryer", + "Fireplace", + "Forced Air", + "Hardwood Floors", + "Lake Views", + "Microwave", + "Modern", + "Refrigerator", + "Security Gate", + "Washer" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "2517444", + "Days on Market": "5", + "Cumulative Days on Market": "5", + "Taxes": "$1,914 / year", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "1988", + "Lot Size": "0.09 AC / 4,120 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Leschi", + "School District": "Seattle", + "View": "Lake, Mountains", + "Number of Assigned Spaces": "3", + "Total Covered Parking": "0", + "Entry Date": "05-06-2026", + "Energy Source": "Electric,Natural Gas", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "Toby Lumpkin", + "email": "toby.lumpkin@compass.com", + "telephone": "2067862035" + } + }, + "2099417930314207729": { + "listing_id": "2099417930314207729", + "source_url": "https://www.compass.com/homedetails/90-Thompson-St-Unit-E2-Manhattan-NY-10012/20PBDW_pid/", + "retrieved_at": "2026-09-06T04:13:02.567781+00:00", + "html_sha256": "aec06cad97b956e552ecdab76e871918976199c62bf1fa2a9cb320b7324fefa3", + "price": 5895, + "address": "90 Thompson Street, Unit E2", + "unit": "E2", + "city": "Manhattan", + "state": "NY", + "zip": "10012", + "neighborhood": "SoHo", + "latitude": 40.725135, + "longitude": -74.00208700000002, + "beds": 2, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": null, + "property_type": "Apartment", + "year_built": 1900, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 6, + "listed_at_ms": 1778081319787, + "description": "apt", + "features": [ + "Elevator", + "Walk Up", + "Washer / Dryer in Unit", + "Central AC", + "Stainless Steel Appliances", + "Windowed Kitchen", + "Open Kitchen", + "Video Intercom", + "Midrise", + "Lowrise" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "6", + "Rental Incentives": "No Fee", + "Available Date": "06/01/2026", + "Lease Term": "Lease Length: 12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "5.0", + "Property Type": "Apartment", + "Year Built": "1900", + "Lot Size": "4,712 SF / 50' x 94'", + "County": "New York County" + }, + "regional_facts": {}, + "agent": { + "name": "Shara Pratt", + "email": "shara.pratt@compass.com", + "telephone": "6464067928" + } + }, + "2099456968421234601": { + "listing_id": "2099456968421234601", + "source_url": "https://www.compass.com/homedetails/941-11th-Ave-E-Unit-3-Seattle-WA-98102/1SPS60_pid/", + "retrieved_at": "2026-09-06T04:13:55.100760+00:00", + "html_sha256": "ae7066e9169603ca67a811c2c0efb6d490b631aa6ace4150235200fa30fd836e", + "price": 2350000, + "address": "941 11th Avenue East, Unit 3", + "unit": "3", + "city": "Seattle", + "state": "WA", + "zip": "98102", + "neighborhood": "Capitol Hill", + "latitude": 47.62802689999999, + "longitude": -122.3183004, + "beds": 2, + "baths_full": 1, + "baths_half": null, + "baths_total": 1.75, + "sqft": 2121, + "property_type": "Condo", + "year_built": 1920, + "mls_number": "2516247", + "status_text": "Active", + "days_on_market": 122, + "listed_at_ms": 1778050800000, + "description": "Sophisticated residence at the iconic Fairmont—a classic brick, turn-of-the-century New York–style building—offering Space Needle and Olympic Mountain views. Elegant and thoughtfully designed, the open-concept layout flows seamlessly. Hardwood floors and natural light define the grand living room with marble fireplace, complemented by a library with a second fireplace. An additional west-facing family room offers a bar sink with space for a mini fridge or wine cooler, all set against sunset views. The gourmet kitchen features a Wolf range and deep sink framing the Space Needle view, with a dining room and custom built-ins just beyond. Two spacious en-suite bedrooms provide excellent storage, including a primary with balcony. Oversized storage unit and a private two-car garage. Perfectly positioned moments from Volunteer Park and the vibrant 15th Ave E corridor, this is city living at its most refined.", + "features": [ + "Ceramic Floors", + "City Views", + "Common Outdoor Space", + "Dishwasher", + "Disposal", + "Dryer", + "Garage", + "Gym", + "Hardwood Floors", + "Microwave", + "Parking Included", + "Pet Friendly", + "Washer" + ], + "property_facts": { + "Status": "Active", + "MLS #": "2516247", + "Days on Market": "122", + "Cumulative Days on Market": "122", + "Taxes": "$15,486 / year", + "HOA Fees": "$2,942 / month", + "Property Type": "Condo", + "MLS Type": "Residential", + "Year Built": "1920", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Capitol Hill", + "School District": "Seattle", + "View": "City, Mountains, Sound, Territorial", + "Number of Assigned Spaces": "2", + "Total Covered Parking": "2", + "Entry Date": "05-06-2026", + "Energy Source": "Natural Gas" + }, + "agent": { + "name": "Bob Bennion", + "email": "bob.bennion@compass.com", + "telephone": "2063287200" + } + }, + "2099471767385500449": { + "listing_id": "2099471767385500449", + "source_url": "https://www.compass.com/homedetails/175-Jackson-St-Unit-4A-Brooklyn-NY-11211/210AQL_pid/", + "retrieved_at": "2026-09-06T04:13:02.904409+00:00", + "html_sha256": "488f6544c888e46330d7b56fc9961742b9273ad8a60ea61a46247fdc53622233", + "price": 5700, + "address": "175 Jackson Street, Unit 4A", + "unit": "4A", + "city": "Brooklyn", + "state": "NY", + "zip": "11211", + "neighborhood": "Williamsburg", + "latitude": 40.7169665, + "longitude": -73.94377, + "beds": 1, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 745, + "property_type": "Condo", + "year_built": 2019, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 8, + "listed_at_ms": 1778087737761, + "description": "Available June 1st - Washer/Dryer - Central Air - Easy Approval. No pets, please.\n\nSpacious and sunny 1-bedroom, 1-bathroom residence with bright southern exposure and natural light throughout the day. The thoughtfully designed layout features oversized double-pane windows, white oak hardwood floors, an in-unit washer/dryer, and central air for year-round comfort.\n\nThe open chef’s kitchen blends seamlessly into the living and dining area and is outfitted with premium Miele, Bosch, and Liebherr appliances, high-gloss white lacquer cabinetry, and sleek Caesarstone countertops. The spacious bathroom is finished with a polished Caesarstone vanity, oversized Duravit soaking tub, Grohe fixtures, Kohler toilet, and a medicine cabinet.\n\nResidents of 175 Jackson Street enjoy a full suite of amenities including a furnished rooftop with sweeping city views, fitness center, bike storage, private storage, virtual intercom security system, and trash compactor on every floor.\n\nPerfectly positioned in the heart of Williamsburg, the building is moments from the Graham Avenue and Lorimer Street L/G subway stations, McCarren Park, Cooper Park, and some of the neighborhood’s best restaurants, cafés, shopping, and everyday conveniences.", + "features": [ + "Doorman", + "Common Roof Deck", + "Gym", + "Hardwood Floors", + "High Ceilings", + "Elevator", + "Walk Up", + "Washer / Dryer in Unit", + "Washer / Dryer Hookup", + "Laundry in Building", + "Central AC", + "Air Conditioning", + "Dishwasher", + "Gas Oven", + "Chef's Kitchen", + "Southern Exposure", + "Bike Room", + "Private Storage For Rent", + "Garage", + "Soaking Tub", + "Trash Compactor", + "Gas Stove", + "Island Kitchen", + "On-site Parking", + "Midrise", + "Intercom", + "Freezer", + "Storage Available", + "Security System" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "8", + "Pet Policy": "Not Allowed", + "Rental Incentives": "No Fee", + "Available Date": "06/01/2026", + "Lease Term": "Lease Length: 12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "3.0", + "Property Type": "Condo", + "MLS Type": "Condo", + "Year Built": "2019", + "County": "Kings County" + }, + "regional_facts": {}, + "agent": { + "name": "Kryon Grant", + "email": "kryon.grant@compass.com", + "telephone": "9178538644" + } + }, + "2099481009802507913": { + "listing_id": "2099481009802507913", + "source_url": "https://www.compass.com/homedetails/Washington-St-San-Francisco-CA-94118/2099481009802507913_lid/", + "retrieved_at": "2026-09-06T04:13:35.041706+00:00", + "html_sha256": "9f9847edd92fb66b08a13c8c3f7815f21d402fec4b04719cbc7d717adb146fd2", + "price": 4600000, + "address": "Washington Street", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94118", + "neighborhood": "Presidio Heights", + "latitude": 37.789158, + "longitude": -122.451364, + "beds": 3, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 2761, + "property_type": "Condo", + "year_built": 1912, + "mls_number": "426127379", + "status_text": "Closed", + "days_on_market": 0, + "listed_at_ms": 1778742000000, + "description": "Top-floor scale, Golden Gate Bridge views, and a prime Presidio Heights addressthis is one to watch. Approximately 2,761 sq ft (per tax records), offering 3 bedrooms and 2.5 baths, with Golden Gate Bridge outlooks from the living and dining rooms. The home was renovated about 20 years ago and remains fully functional, with an opportunity for a new owner to personalize and elevate over time. Well-maintained building with seismic upgrades, 2-car parking, and a large deeded storage room in the garage. No yard access, but roof deck rights provide outdoor potential. The property will undergo cosmetic updates prior to full market launch.", + "features": [ + "Central Heating", + "Garage", + "Laundry", + "Parking Included", + "Private Outdoor Space", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "426127379", + "Days on Compass": "0", + "HOA Fees": "$5,000 / year", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1912", + "County": "San Francisco County" + }, + "regional_facts": { + "Parking Features": "Garage Faces Front, Tandem, On Site - Mapped (Condo Only)", + "View Description": "Golden Gate Bridge", + "Cross Street": "Laurel", + "Total Parking Spaces": "2" + }, + "agent": { + "name": "Helena Zaludova", + "email": "helena@compass.com", + "telephone": "4155172944" + } + }, + "2099485044697872137": { + "listing_id": "2099485044697872137", + "source_url": "https://www.compass.com/homedetails/Rockwell-Island-Miami-FL-33133/2099485044697872137_lid/", + "retrieved_at": "2026-09-06T04:12:40.793569+00:00", + "html_sha256": "809a38e7a1553c8127150b4ee2709d1af531291f2810b2f23cb04194c7346f25", + "price": 6532000, + "address": "Rockwell Island", + "unit": "", + "city": "Miami", + "state": "FL", + "zip": "33133", + "neighborhood": "The Grove", + "latitude": null, + "longitude": null, + "beds": 6, + "baths_full": 0, + "baths_half": 0, + "baths_total": null, + "sqft": 6501, + "property_type": "Single Family", + "year_built": 2026, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Positioned on the exclusive north side of Bimini, Rockwell Island represents one of the rarest residential offerings in the Caribbean. This private and gated beachfront enclave consists of just 51 homes offer uninterrupted beach-to-bay deep water access that allow large yacht dockage immediately across the home, for the ultimate lifestyle. \n\nSimply 48 Nautical Miles from Miami + Ft Lauderdale, the island is serviced by 20 minute flight via seaplanes, helicopter, and commercial flights including American Airlines, offering effortless connection while remaining entirely removed. \n\nPositioned along one of Rockwell Island’s most spectacular stretches of beachfront, \nL’Sereno captures the essence of elevated island living at its most refined. Expansive yet intimate, refined yet grounded, Uninterrupted panoramic views of the crystalline waters from nearly every major living space.\n\nFrom the moment of arrival, the home unfolds with intention. \nClean architectural lines, warm natural textures, and soaring interior volumes create a sense of quiet sophistication, while walls of glass draw the outdoors inward—allowing the sea, sky, and light to become part of the living experience itself.\n\nDesigned for both entertaining and retreat, L’Sereno embraces the effortless rhythm of island life. Large-scale indoor and outdoor living areas flow seamlessly together, opening onto expansive terraces, private pool environments, and direct beach access just steps away. Gentle sea breezes move naturally through the residence, softening the air and creating an atmosphere that feels perpetually calm and restorative.\n\nBeachfront tennis courts and illuminated padel courts bring an energetic yet refined dimension to the island experience. Positioned near the water’s edge, matches with friends unfold beneath swaying palms and ocean breezes, while evenings carry a distinctly cinematic atmosphere as the courts softly illuminate against the night sky.\n\nEvery detail is centered around experience. Mornings begin with tennis under the rising Bahamian sun. Afternoons transition effortlessly between beach, yacht, and friends. Evenings are defined by sunset reflections and the quiet stillness that only life in the Bahamas can offer.\n\nThis is modern oceanfront living on the grandest scale.\nPrivate, Panoramic, and Profoundly Serene.\n\n\n\n\n", + "features": [ + "Concierge", + "Security Patrol", + "Tennis Court", + "Above Ground Pool", + "Air Conditioning", + "Security Gate", + "Security Staff", + "Security System", + "Communal Tennis Court", + "On Site Restaurant" + ], + "property_facts": { + "Status": "Coming Soon", + "HOA Fees": "$1,800 / month", + "Property Type": "Single Family", + "Year Built": "2026", + "County": "Miami-Dade County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Waterfront": "No", + "Area": "41", + "Sq Ft Liv Area": "6501.0" + }, + "agent": { + "name": "Renier Casanova", + "email": "renier.casanova@compass.com", + "telephone": "3059896884" + } + }, + "2099522833069768625": { + "listing_id": "2099522833069768625", + "source_url": "https://www.compass.com/homedetails/2813-Herkimer-St-Los-Angeles-CA-90039/1J5DO1_pid/", + "retrieved_at": "2026-09-06T04:12:09.426277+00:00", + "html_sha256": "a4674bb410c52436c84aba51711d51e086d31bb92af84f0571785bd7d5866006", + "price": 1175000, + "address": "2813 Herkimer Street", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90039", + "neighborhood": "Silver Lake", + "latitude": 34.108788, + "longitude": -118.2678879, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 962, + "property_type": "Single Family", + "year_built": 1926, + "mls_number": "26830457", + "status_text": "Sold", + "days_on_market": 18, + "listed_at_ms": 1778050800000, + "description": "Tucked behind a wall of leafy hedges, sits 2813 Herkimer, a reimagined 1926 Spanish bungalow you'll be sure to fall in love with. Private, yet close to everything, this two-bedroom, two-bath home is filled with natural light, with windows that look out onto lush greenery from nearly every room. The floor plan is spacious and airy, featuring a large living room that opens to a courtyard through French doorscreating a seamless connection to outdoor living spaces. A dream for any cook, the kitchen has it all: a generous center island, custom cabinetry, and high-end appliances. Both bathrooms have been recently remodeled, including the impressive primary bath with custom tile and a soaking tub designed for true relaxation. Additional highlights include newer windows, oak wood floors throughout, and period architectural details. Located in the Ivanhoe School District, this special sanctuary is moments from beloved neighborhood hotspots such as Blair's, Edendale, Broome Street General Store, Trader Joe's, Gelson's, as well as the iconic Silver Lake Reservoir. This home is truly the best of both worldsinspired living in an unbeatable location.", + "features": [ + "Washer / Dryer in Unit", + "Air Conditioning", + "Parking Included", + "Unfurnished" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "26830457", + "Days on Market": "18", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1926", + "Lot Size": "0.05 AC / 2,373 SF", + "County": "Los Angeles County" + }, + "regional_facts": { + "Zoning": "LAC4", + "Style": "Spanish", + "Property Attached YN": "false", + "Parcel Number": "5434027011", + "Living Area": "962", + "Source Living Area": "Taped", + "Area": "Silver Lake (671)", + "Lot Size Area": "2373", + "Source Lot Size Area": "Assessor", + "Assessor Parcel Number": "5434-027-011", + "Directions": "Rowena to Herkimer" + }, + "agent": { + "name": "Chris Corkum", + "email": "chris.corkum@compass.com", + "telephone": "2135951824" + } + }, + "2099544667215444585": { + "listing_id": "2099544667215444585", + "source_url": "https://www.compass.com/homedetails/270-5th-St-Unit-4C-Brooklyn-NY-11215/1Q6DH7_pid/", + "retrieved_at": "2026-09-06T04:13:10.311225+00:00", + "html_sha256": "35885ecab7db7bdf7339eaabe85f7ff8d655721ddb2cde6bb7cc723ec9a52838", + "price": 1350000, + "address": "270 5th Street, Unit 4C", + "unit": "4C", + "city": "Brooklyn", + "state": "NY", + "zip": "11215", + "neighborhood": "Park Slope", + "latitude": 40.67231880000001, + "longitude": -73.9861713, + "beds": 2, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": null, + "property_type": "Co-op", + "year_built": 1911, + "mls_number": "", + "status_text": "Contract Signed", + "days_on_market": 36, + "listed_at_ms": 1778096428058, + "description": "Welcome to Unit 4C at 270 5th Street, a unique two-bedroom, one-bathroom co-op where historic charm meets modern living. Located in The Milk Factory, a former Borden’s milk plant, this converted co-op blends industrial character with homey comfort in beautiful Park Slope. The standout feature? A private roof deck is your own garden oasis in the sky. One flight of stairs inside the unit leads to your exclusive outdoor space, perfect for entertaining guests, morning yoga, or simply soaking in the unobstructed views of the Brooklyn skyline and JJ Byrne Park, which is just across the street!\n\nInside, the open living area is bathed in light and features a working wood-burning fireplace. Two bedrooms sit near a full bathroom. This pet-friendly elevator building is well-maintained and features a laundry room and private storage for each unit. \n\n270 5th Street, Unit 4C is located steps from J.J. Byrne Park, the weekend Greenmarket, the neighborhood playground, and multiple transit options including the MTA (D,F,G,N,R,W) and LIRR. You’re also moments from restaurants, shopping and other amenities that nearby 5th and 7th Avenues have to offer. Homes with private roof decks in Park Slope don’t come around often! This one checks all the boxes: space, light, outdoor living, location, and charm.\n", + "features": [ + "Private Roof Deck", + "Fireplace", + "Hardwood Floors", + "Elevator", + "Walk Up", + "Laundry in Building", + "Dishwasher", + "Wine Cooler", + "On-site Parking For Rent", + "Video Intercom", + "Video Security", + "Private Storage Included", + "Garage", + "Lowrise", + "Security System", + "Intercom" + ], + "property_facts": { + "Status": "Contract Signed", + "Days on Market": "36", + "Pet Policy": "Allowed", + "Maintenance": "$1,559 / month", + "Min. Down Pymt": "20%", + "Total Rooms": "4.0", + "Property Type": "Co-op", + "Year Built": "1911", + "County": "Kings County", + "Buyer's Agent Compensation": "1.5%" + }, + "regional_facts": {}, + "agent": { + "name": "Denise Manuel-Swift", + "email": "denise.manuel@compass.com", + "telephone": "9177503506" + } + }, + "2099546520544139993": { + "listing_id": "2099546520544139993", + "source_url": "https://www.compass.com/homedetails/2-Douglass-Park-Unit-5-Boston-MA-02118/1ZIKXV_pid/", + "retrieved_at": "2026-09-06T04:11:02.718713+00:00", + "html_sha256": "c6c9c29c63175601dfb656bc2fecb1e2c4d546314322bb0b610541ce6b905192", + "price": 390175, + "address": "2 Douglass Park, Unit 5", + "unit": "5", + "city": "Boston", + "state": "MA", + "zip": "02118", + "neighborhood": "South End", + "latitude": 42.3380291, + "longitude": -71.0834843, + "beds": 2, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 985, + "property_type": "Condo", + "year_built": 2000, + "mls_number": "73519395", + "status_text": "Under Agreement", + "days_on_market": 25, + "listed_at_ms": 1778731200000, + "description": "Welcome to 2 Douglas Park, Unit 5 - a beautifully updated home in the South End offering comfort, style, and affordability. This thoughtfully maintained unit features a modernized kitchen and updated bathroom, complemented by hardwood flooring throughout. Major systems have been recently upgraded, including the HVAC system and an efficient Navien On Demand Tankless hot water installed just a few years ago, providing peace of mind for years to come. The unit includes one dedicated parking space and in unit laundry, adding to everyday convenience. This home is part of an affordable housing program and is restricted to qualified first-time homebuyers. Buyers must meet income and asset requirements, including earning no more than 80% of the area median income- 1 person household max income $92,650, 2 person household max income $105,850. and having less than $100,000 in total assets. All interested buyers must complete certification through the Boston Home Center prior to purchasing.", + "features": [ + "Washer / Dryer in Unit", + "Air Conditioning", + "Forced Air", + "Off-Street Parking", + "Assigned Parking", + "Pet Friendly", + "Snow Removal Included" + ], + "property_facts": { + "Status": "Under Agreement", + "MLS #": "73519395", + "Days on Market": "25", + "Taxes": "$441 / year", + "HOA Fees": "$496 / month", + "Property Type": "Condo", + "MLS Type": "Condominium/Co-Op / Condo", + "Year Built": "2000", + "County": "Suffolk County" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "South End", + "Area": "MA-Boston-South End, MA-Boston", + "Style": "Mid-Rise", + "Garage Spaces": "0", + "Open Parking Spaces": "1.00", + "Parking Spaces Total": "1" + }, + "agent": { + "name": "Al Longo", + "email": "al.longo@compass.com", + "telephone": "6174070094" + } + }, + "2099552630101970601": { + "listing_id": "2099552630101970601", + "source_url": "https://www.compass.com/homedetails/108-Perry-St-Unit-3C-Manhattan-NY-10014/203HR3_pid/", + "retrieved_at": "2026-09-06T04:13:07.256081+00:00", + "html_sha256": "341dabe094e7e836e3c59e16e227e22c2a23eb758994f3841b94f880405c364b", + "price": 5300, + "address": "108 Perry Street, Unit 3C", + "unit": "3C", + "city": "Manhattan", + "state": "NY", + "zip": "10014", + "neighborhood": "West Village", + "latitude": 40.7351559, + "longitude": -74.0057794, + "beds": 1, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": null, + "property_type": "Rental", + "year_built": 1920, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 10, + "listed_at_ms": 1778097377275, + "description": "Welcome to your new sunny sanctuary in the heart of the West Village! It’s the light and location that is the story here.\n\nAs you step inside, you’ll immediately notice the gorgeous exposed brick walls that give this apartment a touch of rustic charm. A ton of natural light comes streaming in from the 4 large windows and the charming breakfast bar offers a great place to start your day.\n\nWhether you’re a seasoned city dweller or new to the Big Apple, this sunny and stylish apartment is sure to steal your heart. So what are you waiting for? Come and experience all the West Village has to offer from your new amazing home.\n\nAll appointments are to be made via email only.\n\nFirst Month Rent: $5,300\nOne month security deposit: $5,300\nCredit Check: $20/applicant\nMonthly Gas and Electric", + "features": [ + "Exposed Brick", + "Hardwood Floors", + "Elevator", + "Walk Up", + "Breakfast Bar", + "Open Kitchen", + "Voice Intercom" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "10", + "Pet Policy": "Only Cats Allowed", + "Rental Incentives": "No Fee", + "Available Date": "05/01/2026", + "Lease Term": "Lease Length: 12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "3.0", + "Property Type": "Rental", + "Year Built": "1920", + "County": "New York County" + }, + "regional_facts": {}, + "agent": { + "name": "Max Moondoc", + "email": "max.moondoc@compass.com", + "telephone": "9178604749" + } + }, + "2099572245494376561": { + "listing_id": "2099572245494376561", + "source_url": "https://www.compass.com/homedetails/Rockwell-Island-Miami-FL-33133/2099572245494376561_lid/", + "retrieved_at": "2026-09-06T04:12:42.633496+00:00", + "html_sha256": "4df19e5ea53e3ac9cd6a9358e7ce9e4005dd34a44b895b356a52d2da1acf94a4", + "price": 5000000, + "address": "Rockwell Island", + "unit": "", + "city": "Miami", + "state": "FL", + "zip": "33133", + "neighborhood": "Virginia Pointe Condominiums", + "latitude": null, + "longitude": null, + "beds": 4, + "baths_full": 4, + "baths_half": 1, + "baths_total": 4.5, + "sqft": 4588, + "property_type": "Single Family", + "year_built": 2026, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Positioned on the exclusive north side of Bimini, Rockwell Island represents one of the rarest residential offerings in the Caribbean. This private and gated beachfront enclave consists of just 51 homes offer uninterrupted beach-to-bay deep water access that allow large yacht dockage immediately across the home, for the ultimate lifestyle.\n\nSimply 48 Nautical Miles from Miami + Ft Lauderdale, the island is serviced by 20 minute flight via seaplanes, helicopter, and commercial flights including American Airlines, offering effortless connection while remaining entirely removed.\n\nPositioned along one of Rockwell Island’s most spectacular stretches of beachfront, Plantation captures the essence of timeless island living through a more classic architectural expression. \n\nElegant yet relaxed, refined yet charming, the residence is framed by uninterrupted panoramic views of crystalline turquoise waters from nearly every space.\n\nFrom the moment of arrival, the home unfolds with quiet intention. \nInspired by the enduring qualities of traditional plantation estates, the architecture blends symmetry, warmth, and proportion with modern coastal living. Expansive interiors, natural textures, and soaring volumes create an atmosphere that feels both elevated and welcoming, while walls of glass draw the outdoors inward—allowing the sea, sky, and shifting light to become part of the everyday experience.\n\nDesigned for gathering as much as retreat, Plantation embraces the effortless rhythm of island life. Indoor and outdoor living spaces transition seamlessly toward expansive terraces, private pool environments, and direct access to powder-soft sand just steps away. Gentle sea breezes move naturally through the residence, creating a feeling of calm and understated luxury throughout.\n\nBeyond the shoreline, beachfront tennis courts and illuminated padel courts bring an energetic yet refined dimension to the island experience. Positioned near the water’s edge, matches with friends unfold beneath swaying palms and ocean breezes, while evenings take on a cinematic atmosphere as the courts softly illuminate against the night sky.\n\nEvery detail is centered around experience. Mornings begin with coffee overlooking still waters and tennis beneath the rising Bahamian sun. Afternoons drift effortlessly between beach, yacht, and open sea. Evenings are defined by sunset reflections, warm gatherings, and the quiet serenity that only life in the Bahamas can offer.\n\nCorresponding Bay lot Available with dockage.\n\nPlantation is a timeless interpretation of oceanfront living. Private, peaceful, and profoundly connected to the sea.", + "features": [ + "Concierge", + "Air Conditioning", + "Eat-in Kitchen", + "Chef's Kitchen", + "California Closet", + "Custom Closet", + "Stone Floors" + ], + "property_facts": { + "Status": "Coming Soon", + "HOA Fees": "$1,850 / month", + "Property Type": "Single Family", + "Year Built": "2026", + "County": "Miami-Dade County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Waterfront": "Yes", + "Area": "41", + "Sq Ft Liv Area": "4588.0" + }, + "agent": { + "name": "Renier Casanova", + "email": "renier.casanova@compass.com", + "telephone": "3059896884" + } + }, + "2099624805744139113": { + "listing_id": "2099624805744139113", + "source_url": "https://www.compass.com/homedetails/54-Richland-Ave-San-Francisco-CA-94110/1Q3L6U_pid/", + "retrieved_at": "2026-09-06T04:13:36.647139+00:00", + "html_sha256": "b293f3010f52ceafa4f93e8464c4cea3ff780fa875fdda4d8a7ca9aeb62cd79e", + "price": 1950000, + "address": "54 Richland Avenue", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94110", + "neighborhood": "Bernal Heights", + "latitude": 37.735882, + "longitude": -122.425721, + "beds": 3, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 1896, + "property_type": "Single Family", + "year_built": 1913, + "mls_number": "426128471", + "status_text": "Closed", + "days_on_market": 15, + "listed_at_ms": 1778655600000, + "description": "Welcome to 54 Richland Avenue on the border between Glen Park and Bernal Heights! This stately 2 story Edwardian has the coveted layout with 3 bedrooms plus full bath all on the upstairs level. The main level features a large living room with fireplace and window seat, formal dining room, updated kitchen and laundry room with bonus 1/2 bath. Downstairs is the garage and a large basement area for expansion potential. The yard is large and can be enjoyed from a deck that leads from the dining area to the yard below. The location is premium as you have the Glen Park BART, easy freeway access and Cortland Avenue all close by. Welcome Home!", + "features": [ + "Central Heating", + "Dryer", + "Fireplace", + "Full Basement", + "Garage", + "Parking Included", + "Tile Floors", + "Washer" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "426128471", + "Days on Compass": "15", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1913", + "Lot Size": "0.06 AC / 2,495 SF", + "County": "San Francisco County" + }, + "regional_facts": { + "Directions to Property": "Miguel to Richland or Mission to Richland", + "Parking Features": "Driveway, Garage Door Opener, Independent, On Site (Single Family Only)", + "Architectural Style": "Edwardian", + "Cross Street": "Arlington", + "Total Parking Spaces": "1" + }, + "agent": { + "name": "Dave Cunningham", + "email": "dave.cunningham@compass.com", + "telephone": "4152444779" + } + }, + "2099646221877080193": { + "listing_id": "2099646221877080193", + "source_url": "https://www.compass.com/homedetails/9559-E-Iowa-Cir-Denver-CO-80247/1307GN_pid/", + "retrieved_at": "2026-09-06T04:11:40.884912+00:00", + "html_sha256": "c9a155c61f4fd423fbe0e00188813554b350b581d418f6f265eb80c5632b9cb0", + "price": 450463, + "address": "9559 East Iowa Circle", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80247", + "neighborhood": "Dayton Triangle", + "latitude": 39.686774, + "longitude": -104.876926, + "beds": 4, + "baths_full": 2, + "baths_half": 1, + "baths_total": 3, + "sqft": 1650, + "property_type": "Townhouse", + "year_built": 2001, + "mls_number": "1058378", + "status_text": "Sold", + "days_on_market": 44, + "listed_at_ms": 1778047200000, + "description": "Thoughtfully improved and consistently cared for, this home offers meaningful updates, efficiency, and flexible space where it matters most. The current owner has repainted and extended the beautiful oak hardwood floors throughout the main level and added LVP flooring on the upper, which ties in perfectly with the homes design. This clean and bright layout is the perfect place to call home. All carpet has been removed except for the stairs which owner left for comfort and safety.Upstairs includes three bedrooms, two bathrooms, a primary suite with a large walk-in closet, and a useful nook well suited for a home office or, exercise or homework area. The basement provides excellent flexibility with two egress windows and a closet, allowing for a fourth bedroom or cozy theater/game room. A paid-off solar system helps reduce utility costs, while the barely used hot tub adds an extra layer of luxury and comfort. There is noting better than dipping into your own hot tub after a long day at work or on the slopes! This home is ready for the next owner to love!", + "features": [ + "Attached Parking", + "Central AC", + "Dishwasher", + "Dryer", + "Electricity Included", + "Fireplace", + "Forced Air", + "Microwave", + "Partial Basement", + "Patio", + "Refrigerator", + "Washer" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "1058378", + "Days on Compass": "44", + "Taxes": "$3,403 / year", + "HOA Fees": "$1,020 / year", + "Property Type": "Townhouse", + "MLS Type": "Residential / Townhouse", + "Year Built": "2001", + "Lot Size": "0.07 AC / 3,049 SF", + "County": "Arapahoe County" + }, + "regional_facts": { + "Locale": "Denver", + "Description 1": "Townhouse" + }, + "agent": { + "name": "Brody J. Stinson", + "email": "brody.stinson@compass.com", + "telephone": "7209895895" + } + }, + "2099650396409116897": { + "listing_id": "2099650396409116897", + "source_url": "https://www.compass.com/homedetails/608-2nd-St-Brooklyn-NY-11215/2037Z9_pid/", + "retrieved_at": "2026-09-06T04:13:08.513278+00:00", + "html_sha256": "b1694eed72d21e3e00814a74be654b5e42fc381bf95b140c636a4012170de59f", + "price": 6500000, + "address": "608 2nd Street", + "unit": "", + "city": "Brooklyn", + "state": "NY", + "zip": "11215", + "neighborhood": "Park Slope", + "latitude": 40.6693968, + "longitude": -73.9749106, + "beds": 5, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 4315, + "property_type": "Townhouse", + "year_built": 1901, + "mls_number": "", + "status_text": "Sold", + "days_on_market": 36, + "listed_at_ms": 1778109031988, + "description": "A Park Block trophy home. 608 2nd Street is a four story mid block limestone with Park Slope provenance. Located on one of, if not the neighborhood’s best blocks, 608 2nd Street provides almost 4,000 square feet of classic townhouse charm. The original details throughout the home have been lovingly preserved, especially on the home’s parlor floor. \n\nAscend the classic stoop and step into the exquisite parlor floor—which impresses with original woodwork and soaring 10’4” ceilings. The front parlor features the three windows of the barrel front facade, topped with original stained glass. Moving through the home, intricate, handcrafted, woodwork leads you to the elegant library, featuring coffered ceilings, a decorative fireplace, and custom floor-to-ceiling built-ins with original leaded glass doors. The rear of this floor houses a bright butler’s pantry/wet bar illuminated by a large skylight, alongside a full bathroom overlooking the garden.\n\nThe third floor of the house is dedicated to the primary suite, featuring a massive front bedroom with large windows, crown moldings, and a decorative fireplace. The flexible rear space is connected by a walkthrough dressing area with two sinks and ample closet space. In the hallway, you will find an inglenook, a unique feature that only some of the turn of the century townhomes possess. The windowed primary bathroom has a soaking tub and shower.\n\nThe third floor is highlighted by a spectacular stained-glass skylight in the hallway. This level offers 3 bedrooms, two of which are extra spacious with decorative fireplaces and ample closet space. Connecting the 2 large bedrooms are the original private vanities and closets. \n\nThe garden floor features a grand, formal dining room with a decorative mantle. The gourmet kitchen is outfitted with a Bosch gas stove, double ovens, a large pantry, and space for counter stool seating. The rear garden room leads to a laundry area with hookups, a convenient half bath, and access to the south-facing backyard. The additional ground-floor entrance provides additional shed storage for bikes and strollers.\n\nCentrally located, 608 2nd Street has easy access to everything that folks move to Park Slope to enjoy. The 3rd Street entrance to Prospect Park is around the corner, shops and dining on 7th Ave are only 2 blocks away, and the house is zoned for PS 321. New neighborhood hotspots include Vato, Il Leone, Heaps, and Mariscos El Submarino. Neighborhood favorites still standing include Al Di La, Cousin Johns, and La Taqueria. ", + "features": [ + "Private Yard", + "Decorative Fireplace", + "Crown Mouldings", + "Decorative Mouldings", + "Built-Ins", + "Columns", + "Wet Bar", + "Hardwood Floors", + "High Ceilings", + "Bay Windows", + "Oversized Windows", + "Washer / Dryer Hookup", + "Dishwasher", + "Double Oven", + "Formal Dining Room", + "Foyer", + "Library / Den", + "Eat-in Kitchen", + "Windowed Kitchen", + "Windowed Bathroom", + "Southern Exposure", + "Skylight", + "Wall Oven", + "Full Basement", + "Pantry", + "Attach / Row Hse" + ], + "property_facts": { + "Status": "Sold", + "Days on Market": "36", + "Taxes": "$1,402 / month", + "Total Rooms": "12.0", + "Property Type": "Townhouse", + "Year Built": "1901", + "Lot Size": "1,812 SF / 19' x 95'", + "County": "Kings County", + "Buyer's Agent Compensation": "2.25%" + }, + "regional_facts": {}, + "agent": { + "name": "Joe Ryan", + "email": "joe.ryan@compass.com", + "telephone": "9174532676" + } + }, + "2099661280199638449": { + "listing_id": "2099661280199638449", + "source_url": "https://www.compass.com/homedetails/2040-Broadway-Unit-102-San-Francisco-CA-94115/1LNE7O_pid/", + "retrieved_at": "2026-09-06T04:13:38.879649+00:00", + "html_sha256": "a582b78293b3a6ef5733be0c8273011593080b8b8b4252a9f5be5ae4aded1fd1", + "price": 1700000, + "address": "2040 Broadway, Unit 102", + "unit": "102", + "city": "San Francisco", + "state": "CA", + "zip": "94115", + "neighborhood": "Pacific Heights", + "latitude": 37.7950974, + "longitude": -122.431284, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1330, + "property_type": "Condo", + "year_built": 1988, + "mls_number": "426128512", + "status_text": "Closed", + "days_on_market": 0, + "listed_at_ms": 1779346800000, + "description": "This beautiful unit showcases exceptional design and well maintained. Set in an elegant, European-inspired building on a prestigious block, it offers easy access to Fillmore, Union, and Upper Polk Streets. Spacious and stylish, the home is ideal as a full-time residence or a luxurious pied--terre. The split-level living and dining areas flow seamlessly to a lush terrace and elevated deck perfect for entertaining. Stunning, ever-changing Bay views provide a breathtaking backdrop for both everyday living and special gatherings. Complete with side-by-side garage parking (with interior access) and a deeded storage space, this home offers the perfect blend of convenience, charm, and sophistication. *Photos are Virtually Staged, Finishes and views may vary.", + "features": [ + "Assigned Parking", + "Elevator", + "Garage", + "Microwave", + "Parking Included", + "Tile Floors" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "426128512", + "Days on Compass": "0", + "HOA Fees": "$1,935 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1988", + "County": "San Francisco County" + }, + "regional_facts": { + "Parking Features": "Assigned, Inside Entrance, See Remarks, Independent, On Site", + "Cross Street": "Buchanan", + "Total Parking Spaces": "1" + }, + "agent": { + "name": "Joske Thompson", + "email": "joske.thompson@compass.com", + "telephone": "4156082233" + } + }, + "2099679468665145089": { + "listing_id": "2099679468665145089", + "source_url": "https://www.compass.com/homedetails/450-S-Main-St-Unit-305-Seattle-WA-98104/1SIZ37_pid/", + "retrieved_at": "2026-09-06T04:13:57.590893+00:00", + "html_sha256": "ffa479595941cf2ddab5381d8242b658810a0c544d00ab3bc67f48040709f6a1", + "price": 323000, + "address": "450 South Main Street, Unit 305", + "unit": "305", + "city": "Seattle", + "state": "WA", + "zip": "98104", + "neighborhood": "International District", + "latitude": 47.6002447, + "longitude": -122.3280012, + "beds": 1, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 558, + "property_type": "Condo", + "year_built": 2021, + "mls_number": "2519653", + "status_text": "Sold", + "days_on_market": 23, + "listed_at_ms": 1778050800000, + "description": "KODA. One of Seattle’s newest developments, showcasing remarkable views of Elliott Bay, the downtown skyline, and Mount Rainier. Thoughtfully positioned for an ambient, walkable lifestyle, just moments from Seattle’s iconic sports stadiums, King Street Station, and the Northwest’s most celebrated culinary destinations. This studio residence offers a refined, European inspired design highlighted by Pental Quartz countertops, Blomberg stainless steel appliances, Kohler fixtures, and expansive floor to ceiling windows that flood the space with natural light and frame the surrounding cityscape. Clean lines and efficient design create a residence that feels both intentional and enduring. An opportunity to live at the center of it all, where architecture, location, and lifestyle converge. Ideal for those seeking a modern urban home in the heart of the Pacific Northwest’s premier city.", + "features": [ + "Air Conditioning", + "Bay Views", + "Central AC", + "Ceramic Floors", + "City Views", + "Common Outdoor Space", + "Common Roof Deck", + "Corner Lot", + "Dishwasher", + "Disposal", + "Dryer", + "Electric Dryer Hookup", + "Elevator", + "Forced Air", + "Garage", + "Gym", + "Modern", + "Off-Street Parking", + "Pet Friendly", + "Refrigerator", + "Washer", + "Washer / Dryer in Unit", + "Washer Hookup" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "2519653", + "Days on Market": "23", + "Cumulative Days on Market": "127", + "Taxes": "$3,160 / year", + "HOA Fees": "$593 / month", + "Property Type": "Condo", + "MLS Type": "Residential", + "Year Built": "2021", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "International District", + "School District": "Seattle", + "View": "Bay, City, Mountains, Territorial", + "Number of Assigned Spaces": "0", + "Entry Date": "05-06-2026", + "Energy Source": "Electric" + }, + "agent": { + "name": "Mark Popach", + "email": "mark.popach@compass.com", + "telephone": "4252973088" + } + }, + "2099685450614835857": { + "listing_id": "2099685450614835857", + "source_url": "https://www.compass.com/homedetails/8-Pierrepont-St-Unit-3-Brooklyn-NY-11201/210LXA_pid/", + "retrieved_at": "2026-09-06T04:13:12.447237+00:00", + "html_sha256": "a0f05bd1483d8d67285578f9b60dd8372a09776dcfeb2119edb78cd732a90296", + "price": 1160000, + "address": "8 Pierrepont Street, Unit 3", + "unit": "3", + "city": "Brooklyn", + "state": "NY", + "zip": "11201", + "neighborhood": "Brooklyn Heights", + "latitude": 40.6960719, + "longitude": -73.9968015, + "beds": 1, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": null, + "property_type": "Co-op", + "year_built": 1900, + "mls_number": "", + "status_text": "Sold", + "days_on_market": 19, + "listed_at_ms": 1778113210673, + "description": "Write Your Novel Here

\nStorybook Brooklyn Heights Floor-Through w/Private Terraces & Decorative Fireplace

\nPierrepont Street is one of Brooklyn Heights’ most coveted spots. Lined with mature trees and beautiful architecture, this corner of the Heights is the kind of street that would be pleasure to call home.

\nAlong Pierrepont is a heartwarming townhouse built around 1900. There are three residences at this historical address. Two easy flights up in this handsome building is a very special floor-through home. With soaring ceilings, custom woodwork, a decorative fireplace, and a private terrace in the treetops, this winsome home has a big inspiring scale, a comfortable layout, and a creative soul.

\nStretch out in the large living/dining room with a big, open kitchen. With its period detail, a private planting terrace overlooking Pierrepont Street, and its wonderful woodwork and clever storage, this great room is ideal for entertaining.

\nRelax in the gorgeous, grand bedroom. With its comforting scale, its marvelous millwork, its decorative fireplace, its generous closets/storage, and its access to this home’s sizable “treehouse” terrace, this sweet suite is a peaceful retreat.

\nWith an impressive cook’s kitchen, a spa-like bath, integrated speakers, over-scaled windows, a bonus office alcove, high ceilings, a washer/dryer, and an al fresco living/dining/bbq space (courtesy of this home’a signature terrace), this floor-through find is indeed a rare residence.

\nWith an easy proximity to most every area cultural, dining, shopping, and entertainment destination — and close to many great transportation options (4, N/R, L, A/C and 2/3 trains, Brooklyn Bridge & BQE) — this perfect Pierrepont pad is a standout home.

\nAssessment: $105/month, through December 2026.", + "features": [ + "Remote Doorman", + "Balcony", + "Private Terrace", + "Exposed Brick", + "Decorative Fireplace", + "Crown Mouldings", + "Built-Ins", + "Hardwood Floors", + "High Ceilings", + "Oversized Windows", + "Walk Up", + "Washer / Dryer in Unit", + "Central AC", + "Wall Unit", + "Dishwasher", + "Renovated Kitchen and Bath", + "Breakfast Bar", + "Open Kitchen", + "Granite Bathroom", + "Northern Exposure", + "Southern Exposure", + "Recessed Lighting", + "Custom Closet", + "Soaking Tub", + "Gas Stove", + "Pantry", + "Brownstone", + "Freezer", + "Refrigerator", + "Lowrise" + ], + "property_facts": { + "Status": "Sold", + "Days on Market": "19", + "Pet Policy": "Allowed", + "Maintenance": "$1,932 / month", + "Min. Down Pymt": "20%", + "Total Rooms": "3.0", + "Property Type": "Co-op", + "MLS Type": "Co-op", + "Year Built": "1900", + "County": "Kings County", + "Compensation Remarks": "Please reach out for more info." + }, + "regional_facts": {}, + "agent": { + "name": "Brian K. Lewis", + "email": "blewis@compass.com", + "telephone": "6462287241" + } + }, + "2099697747651666593": { + "listing_id": "2099697747651666593", + "source_url": "https://www.compass.com/homedetails/6121-California-St-San-Francisco-CA-94121/1R5RPM_pid/", + "retrieved_at": "2026-09-06T04:13:39.703195+00:00", + "html_sha256": "2c7b63defaf1a655086adb67841f4ecceb9aedf6037c4cc3f7439813afdac628", + "price": 2100000, + "address": "6121 California Street", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94121", + "neighborhood": "Central Richmond", + "latitude": 37.7837986, + "longitude": -122.4833127, + "beds": 2, + "baths_full": 1, + "baths_half": 1, + "baths_total": 1.5, + "sqft": 1900, + "property_type": "Single Family", + "year_built": 1914, + "mls_number": "426128151", + "status_text": "Closed", + "days_on_market": 9, + "listed_at_ms": 1778655600000, + "description": "Nestled in the highly sought-after Lake District, 6121 California Street presents a rare opportunity to reimagine a home that has been lovingly cherished by the same owners for decades. A true cornerstone for gatherings of family and friends, this special property is ready for its next chapter. Ideally located, the home offers exceptional access to a vibrant array of restaurants, neighborhood shops; including a new Birite Market (Coming in 2027), and some of San Francisco's top-rated public and private schools all within easy walking distance. This classic fixer opportunity features 2 bedrooms+ sunroom and 1.5 bathrooms, along with a beautiful rear yard highlighted by a spacious deck perfect for entertaining or creating your own private outdoor retreat. Bring your vision and transform this well-loved home into the residence of your dreams while continuing its legacy for years to come. Starting a remodel can be daunting, but knowing the property has a newer roof helps ease concerns as you dive into the project. Enjoy proximity to some of the city's most treasured outdoor destinations, including China Beach, Lincoln Park Golf Course, Lands End trails, and the Presidio.", + "features": [ + "Central Heating", + "Fireplace", + "Garage", + "Parking Included", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "426128151", + "Days on Compass": "9", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1914", + "Lot Size": "0.06 AC / 2,495 SF", + "County": "San Francisco County" + }, + "regional_facts": { + "Directions to Property": "Geary to 23rd Avenue. North on 23rd and then left on California", + "Parking Features": "Tandem, On Site (Single Family Only)", + "Architectural Style": "Edwardian", + "Cross Street": "23rd", + "Total Parking Spaces": "2" + }, + "agent": { + "name": "Todd Wiley", + "email": "todd.wiley@compass.com", + "telephone": "4153175888" + } + }, + "2099704849698538665": { + "listing_id": "2099704849698538665", + "source_url": "https://www.compass.com/homedetails/3620-Cesar-Chavez-Unit-404-San-Francisco-CA-94110/1QR261_pid/", + "retrieved_at": "2026-09-06T04:13:39.849168+00:00", + "html_sha256": "dfb061a2dacb0a7e209f4ba42957c54d2d906853520e9ca3f0ec39495303b9be", + "price": 1185000, + "address": "3620 Cesar Chavez, Unit 404", + "unit": "404", + "city": "San Francisco", + "state": "CA", + "zip": "94110", + "neighborhood": "Inner Mission", + "latitude": 37.7483761, + "longitude": -122.4219282, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1038, + "property_type": "Condo", + "year_built": 2020, + "mls_number": "426128137", + "status_text": "Closed", + "days_on_market": 14, + "listed_at_ms": 1778742000000, + "description": "3620 Cesar Chavez #404 is the Mission Modern retreat you've been waiting for. Built in 2020 and being resold for the first time, this stylish condo with 2 beds, 2 baths, and 1 car parking pairs sleek contemporary finishes with timeless city views and an unbeatable location at the crossroads of some of the city's most exciting neighborhoods. Wide-plank wood floors grace the home throughout. The front-facing living room and adjacent dining room form an open social hub framed by beautiful views of the surrounding neighborhoods and hills, and tall windows invite bright southern light, while air conditioning keeps things cool. The kitchen blends streamlined design with serious functionality, featuring generous space on quartz counters and powerful Bertazzoni appliances, including a Master Series range and an integrated refrigerator and dishwasher. The front-facing bedrooms also enjoy sunny southern views. A walk-in closet and elegant ensuite bathroom with double vanity elevate your everyday routines in the primary suite, while the second bedroom is equally bright and versatile. A hall bathroom with bathtub, plus a laundry closet and coat closet, complete this home. Upstairs, the shared rooftop deck delivers sweeping views of downtown, Sutro Tower, and more. Enjoy them while grilling, basking around the fire table, or just kicking back in a lounge chair. Downstairs, a garage space for 1 car with ChargePoint EV charging station, available shared bike parking, and a private storage locker add convenience and flexibility. The city beyond is full of adventure. Dine, shop, and live it up along Valencia, Mission, Church, and 24th Streets - groceries and other essentials, restaurants serving the food of many cultures, vibrant nightlife, and more are on your doorstep. It's easy to see why WalkScore.com rates this location \"Excellent Transit\" as well as a \"Walker's + Biker's Paradise.\" Access to the best of San Francisco is simply effortless!", + "features": [ + "Air Conditioning", + "Barbecue Area", + "Central Heating", + "City Views", + "Common Roof Deck", + "Dishwasher", + "Disposal", + "Electric Vehicle Charging Station(s)", + "Elevator", + "Garage", + "Laundry", + "Midrise", + "Private Outdoor Space", + "Tile Floors", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "426128137", + "Days on Compass": "14", + "HOA Fees": "$768 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "2020", + "County": "San Francisco County" + }, + "regional_facts": { + "Parking Features": "Electric Vehicle Charging Station(s), Garage Door Opener, Garage Faces Front, Inside Entrance, Independent, On Site - Mapped (Condo Only)", + "Architectural Style": "Modern/High Tech", + "View Description": "City, Hills", + "Cross Street": "Guerrero", + "Total Parking Spaces": "1" + }, + "agent": { + "name": "Noel Casey", + "email": "noel.casey@compass.com", + "telephone": "4157480887" + } + }, + "2099729084471069345": { + "listing_id": "2099729084471069345", + "source_url": "https://www.compass.com/homedetails/214-6th-Ave-Venice-CA-90291/1KD9U3_pid/", + "retrieved_at": "2026-09-06T04:12:11.062939+00:00", + "html_sha256": "e52939ff25473bb39a46b753994b0a09fa409c820603b83ecc4a868adfc4fcef", + "price": 2200, + "address": "214 6th Avenue", + "unit": "", + "city": "Venice", + "state": "CA", + "zip": "90291", + "neighborhood": "Venice", + "latitude": 34.0004645, + "longitude": -118.4730188, + "beds": 0, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 300, + "property_type": "Rental", + "year_built": 1951, + "mls_number": "26828607", + "status_text": "Sold", + "days_on_market": 23, + "listed_at_ms": 1778050800000, + "description": "Classic Venice 2 room studio, on a quiet residential street, complete with a dedicated parking spot and, outdoor space which can accommodate extra storage and or a bistro table. There's a top of the line in unit washer/dryer. Santa Monica adjacent, near dining and shopping on Rose Avenue, Whole Foods, and every convenience imaginable on Lincoln Blvd. Just a short distance to Main Street, Abbot Kinney, and the Beach! Separate kitchen and bath, wide plank flooring, and beautiful light. Excellent Credit and Financials required. No smoking. Pets upon approval. Unit features a Queen sized Murphy bed! No smoking. Tenant pays electric, gas, trash, renters insurance and cable/internet", + "features": [ + "Assigned Parking", + "Washer / Dryer in Unit", + "Air Conditioning", + "Pets Conditional", + "Private Outdoor Space", + "Unfurnished", + "Parking Included" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "26828607", + "Days on Market": "23", + "Lease Term": "Lease Length: 1+Year", + "Furnished": "Unfurnished", + "Property Type": "Rental", + "MLS Type": "Residential Lease / Apartment", + "Year Built": "1951", + "Lot Size": "0.10 AC / 4,224 SF", + "County": "Los Angeles County" + }, + "regional_facts": { + "Style": "Bungalow", + "Property Attached YN": "true", + "Parcel Number": "UNAVAILABLE", + "Living Area": "300", + "Source Living Area": "Estimated", + "Area": "Venice (C11)", + "Single Family Or Apt": "Condo/Apt", + "Lot Size Area": "4224", + "Source Lot Size Area": "Assessor", + "Assessor Parcel Number": "UNAVAILABLE", + "Directions": "North of Rose Ave, South of Dewey St, West of 7th Ave, East of 5th Ave" + }, + "agent": { + "name": "Esther Hickman", + "email": "esther.hickman@compass.com", + "telephone": "3106007306" + } + }, + "2099836055832516497": { + "listing_id": "2099836055832516497", + "source_url": "https://www.compass.com/homedetails/222-C-Hoyt-St-Unit-COMMERCIAL-C-Brooklyn-NY-11231/20JDHJ_pid/", + "retrieved_at": "2026-09-06T04:13:10.564720+00:00", + "html_sha256": "37b4bddeec59458b8b4ee26749ac244734c3b0aed5dd0d11ddc82f41bf136475", + "price": 3000, + "address": "222 C Hoyt Street, Unit COMMERCIAL C", + "unit": "COMMERCIAL C", + "city": "Brooklyn", + "state": "NY", + "zip": "11231", + "neighborhood": "Boerum Hill", + "latitude": 40.6835945, + "longitude": -73.98999309999999, + "beds": 0, + "baths_full": 0, + "baths_half": 1, + "baths_total": 0.5, + "sqft": 250, + "property_type": "Rental", + "year_built": 1931, + "mls_number": "", + "status_text": "Active", + "days_on_market": 121, + "listed_at_ms": 1778131164300, + "description": "Welcome to 222 C Hoyt Street, a unique storefront property located in the heart of vibrant Boerum Hill Brooklyn, NY. This versatile space offers endless possibilities, whether you're an investor searching for your next opportunity or a creative entrepreneur seeking a location to bring your vision to life.\n\nThe property features a thoughtfully designed with a half-bathroom, adding convenience to the space. The open layout ensures flexibility to customize the interior to best suit your needs. With a 250 sq. ft. unique, quaint space, this property is all about efficiency and adaptability, giving you the freedom to create the perfect setup for professional use.\n\nLocated in a highly desirable area, 222 C Hoyt Street is surrounded by the charm and energy of Brooklyn. The block features a mix of residential and commercial properties, offering a lively and dynamic environment. The property is also easily accessible by public transportation, making commuting a breeze.\n\nWhether you envision using it as a workspace, small studio, or another creative endeavor, this commercial space delivers potential in a prime location. Don't miss this rare opportunity to lease a flexible space in one of Brooklyn’s most sought-after neighborhoods. \n\nSchedule a private showing today to explore the possibilities that await at 222C Hoyt Street. This is your chance to make a mark in a thriving community. Act now—opportunities like this don’t last long!", + "features": [ + "Ground Floor", + "Oversized Windows", + "Street Parking", + "Eastern Exposure", + "Attach / Row Hse", + "Lowrise" + ], + "property_facts": { + "Status": "Active", + "Days on Market": "121", + "Pet Policy": "Only Cats Allowed", + "Available Date": "03/09/2026", + "Lease Term": "Lease Length: 24 Months, Lease Length Min/Max: 24-24 mo", + "Total Rooms": "0.5", + "Property Type": "Rental", + "Year Built": "1931", + "County": "Kings County" + }, + "regional_facts": {}, + "agent": { + "name": "Cornelia Thomas", + "email": "cornelia.thomas@compass.com", + "telephone": "9179211971" + } + }, + "2100089700579120961": { + "listing_id": "2100089700579120961", + "source_url": "https://www.compass.com/homedetails/11218-35th-Ave-SW-Seattle-WA-98146/1RJZFR_pid/", + "retrieved_at": "2026-09-06T04:13:58.505735+00:00", + "html_sha256": "c4412f0505bafd3d25c645f85af3d1dd10e051b60ae0075cf3e9bea35d32be69", + "price": 650000, + "address": "11218 35th Avenue Southwest", + "unit": "", + "city": "Seattle", + "state": "WA", + "zip": "98146", + "neighborhood": "Arbor Heights", + "latitude": 47.5021932, + "longitude": -122.3758235, + "beds": 4, + "baths_full": 1, + "baths_half": null, + "baths_total": 1.75, + "sqft": 2200, + "property_type": "Single Family", + "year_built": 1955, + "mls_number": "2517656", + "status_text": "Sold", + "days_on_market": 6, + "listed_at_ms": 1778137200000, + "description": "Opportunity knocks in one of West Seattle’s most connected and community oriented neighborhoods. Tucked along the very quiet south end of Arbor Heights, this 4 bedroom Mid-Century daylight Rambler sits on a rare street-to-street lot, offering light living spaces, territorial views, flexibility, privacy, and serious potential. With 2,200sf of space, this is the kind of property savvy buyers wait for; a cosmetic fixer with strong bones and room to build ample equity over time. There is easy access to Lincoln Park, Seola Beach Park and all that makes West Seattle a truly special place to live. This home has been owned by the same family for 60 years and is now ready for a new chapter and new adventures. Whether you’re looking to roll up your sleeves and create your dream home, invest in a value-add project, or settle in and update at your own pace, the possibilities here are substantial. The 6320 sf lot layout opens the door for creative use of space, while the close-knit neighborhood adds that hard-to-find sense of community. Just minutes from local favorites, parks, and amenities, this location continues to be a smart long-term investment. Bring your vision. This is where opportunity meets upside.", + "features": [ + "Basement", + "Carpet Floors", + "Dishwasher", + "Driveway", + "Dryer", + "Fireplace", + "Forced Air", + "Hardwood Floors", + "Off-Street Parking", + "Parking Included", + "Partial Basement", + "Refrigerator", + "Washer" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "2517656", + "Days on Market": "6", + "Cumulative Days on Market": "6", + "Taxes": "$7,820 / year", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "1955", + "Lot Size": "0.15 AC / 6,320 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Arbor Heights", + "School District": "Seattle", + "View": "Territorial", + "Number of Assigned Spaces": "4", + "Total Covered Parking": "1", + "Offers Review Date": "05-12-2026", + "Entry Date": "05-07-2026", + "Energy Source": "Electric,Natural Gas", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "Emily Austin", + "email": "emily.austin@compass.com", + "telephone": "2064221398" + } + }, + "2100114380475873521": { + "listing_id": "2100114380475873521", + "source_url": "https://www.compass.com/homedetails/948-Elyria-Dr-Los-Angeles-CA-90065/1KD77T_pid/", + "retrieved_at": "2026-09-06T04:12:12.530548+00:00", + "html_sha256": "c4a2ef8d86b4bca32c441aa7044560cb269dcbed7b3fe8a0221c532974019e7a", + "price": 2000000, + "address": "948 Elyria Drive", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90065", + "neighborhood": "Mount Washington", + "latitude": 34.1019007, + "longitude": -118.2215267, + "beds": 4, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 2362, + "property_type": "Single Family", + "year_built": 1909, + "mls_number": "26830221", + "status_text": "Sold", + "days_on_market": 15, + "listed_at_ms": 1778137200000, + "description": "Mount Washington Craftsman with views and an expansive lot. Uniquely positioned at the end of a cul-de-sac on a coveted street near an entrance to the 35-acre Elyria Canyon Park, this location offers a peaceful setting with nature and hiking trails at your doorstep. Perched above the street with a commanding presence, the home invites you to soak in sweeping canyon views from the quintessential Craftsman front porch or through the picture windows. The home feels substantial, featuring large rooms and great character, including a stately fireplace flanked by stained glass windows. The thoughtfully designed interiors flow effortlessly, blending the warmth of classic craftsmanship with modern upgrades like the remodeled kitchen and bathrooms, HVAC, paid-off Tesla solar and Powerwall, and an EV charger. Two upstairs bedrooms feature ample closets, casement windows that frame canyon and skyline views, and French doors leading to a large wrap around deck with views of the Griffith Observatory. Downstairs features a family room and two bedrooms, one with an ensuite bathroom and doors leading outside. The large, mostly flat lot offers many possibilities for creating additional space and gardens to enjoy. At the back of the lot is a storage shed surrounded by California native grasses. Sustainability is seamlessly integrated with a greywater system and a newly permitted retaining wall. Nearby are the tranquil Self-Realization Fellowship gardens and the highly sought-after Mt. Washington Elementary School. A short distance down the hill, there are many hip restaurants and cafes in Highland Park and adjacent Northeast LA neighborhoods. This house also comes with some Hollywood history as John Howard Lawson, a founding member of the Screen Writers Guild and one of the legendary Hollywood Ten, once owned it. This is a rare opportunity in an unbeatable location where history, nature, and modern living converge.", + "features": [ + "Washer / Dryer in Unit", + "Air Conditioning", + "Parking Included", + "Unfurnished" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "26830221", + "Days on Market": "15", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1909", + "Lot Size": "0.24 AC / 10,672 SF", + "County": "Los Angeles County" + }, + "regional_facts": { + "Zoning": "LAR1", + "Style": "California Bungalow", + "Property Attached YN": "false", + "Parcel Number": "5464013026", + "Living Area": "2362", + "Source Living Area": "Vendor Enhanced", + "Area": "Mount Washington (680)", + "Lot Size Area": "10672", + "Source Lot Size Area": "Vendor Enhanced", + "Assessor Parcel Number": "5464-013-026", + "Directions": "San Rafael to Elyria" + }, + "agent": { + "name": "Ryan Hanke", + "email": "ryan.hanke@compass.com", + "telephone": "3237931910" + } + }, + "2100118003809190737": { + "listing_id": "2100118003809190737", + "source_url": "https://www.compass.com/homedetails/815-2nd-Ave-N-Unit-A-Seattle-WA-98109/26SCFH_pid/", + "retrieved_at": "2026-09-06T04:13:58.643098+00:00", + "html_sha256": "7c3262b4417a4f61b5601d862fd645ce8c3fa75ed9d5c2025812ac2526fc65c7", + "price": 985000, + "address": "815 2nd Avenue North, Unit A", + "unit": "A", + "city": "Seattle", + "state": "WA", + "zip": "98109", + "neighborhood": "Lower Queen Anne", + "latitude": 47.626822, + "longitude": -122.353286, + "beds": 3, + "baths_full": 1, + "baths_half": 1, + "baths_total": 2.25, + "sqft": 1820, + "property_type": "Townhouse", + "year_built": 2002, + "mls_number": "2519851", + "status_text": "Sold", + "days_on_market": 15, + "listed_at_ms": 1778137200000, + "description": "Perfectly positioned in the heart of Lower Queen Anne at Aloha & 2nd Avenue North, this thoughtfully updated townhome offers comfort, style, and the ultimate setting for vibrant in-city living. Fresh interior paint, new carpet, and beautiful hardwood floors welcome you into a spacious living room with soaring ceilings, abundant natural light, and a cozy gas fireplace. The dining area flows seamlessly into a well-appointed kitchen featuring granite countertops, stainless steel appliances—including a new five-burner gas range and dishwasher—and views overlooking the garden. The primary suite is a peaceful retreat with views of City Scape, Cascade Mountains and a peek-a-boo of the Space Needle, a walk-in closet, and a fully tiled bath with dual vanities. A guest bedroom with vaulted ceilings overlooks the garden. On the lower level, a private guest suite offers sliding doors to the backyard patio, along with a three-quarter bath and convenient garage access. Above it all, the rooftop deck captures views of Elliott Bay and Lake Union—an unbeatable vantage point for watching the Space Needle’s New Year’s Eve fireworks or Lake Union’s Fourth of July celebration. Additional highlights include radiant heat throughout, surround sound, a security system, and an attached one-car garage.", + "features": [ + "Attached Garage", + "Carpet Floors", + "Ceramic Floors", + "City Views", + "Dishwasher", + "Dryer", + "Fireplace", + "Garage", + "Hardwood Floors", + "Lake Views", + "Microwave", + "Radiant Heating", + "Refrigerator", + "Walk-in Closet", + "Washer" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "2519851", + "Days on Market": "15", + "Cumulative Days on Market": "75", + "Taxes": "$9,605 / year", + "Property Type": "Townhouse", + "MLS Type": "Residential", + "Year Built": "2002", + "Lot Size": "0.04 AC / 1,550 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Queen Anne", + "School District": "Seattle", + "View": "City, Lake, Mountains", + "Number of Assigned Spaces": "1", + "Total Covered Parking": "1", + "Entry Date": "05-07-2026", + "Energy Source": "Electric,Natural Gas", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "Melissa Klinnert", + "email": "melissa.klinnert@compass.com", + "telephone": "2063107904" + } + }, + "2100124806047513737": { + "listing_id": "2100124806047513737", + "source_url": "https://www.compass.com/homedetails/8-Charles-Ln-Unit-C-Manhattan-NY-10014/2100124806047513737_lid/", + "retrieved_at": "2026-09-06T04:13:14.287067+00:00", + "html_sha256": "b78d12f0e861ff4cf5a71dab37e9a92b34aaef972ef279c78b2b3af321724aa2", + "price": 15000, + "address": "8 Charles Lane, Unit C", + "unit": "C", + "city": "Manhattan", + "state": "NY", + "zip": "10014", + "neighborhood": "West Village", + "latitude": 40.7341938, + "longitude": -74.0090829, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": null, + "property_type": "Co-op", + "year_built": 1975, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 17, + "listed_at_ms": 1778165586004, + "description": "Welcome home to this West Village treasure, tucked away on a cobblestone land just steps from Hudson River Park and the iconic waterfront. \n\nThe house is one of twelve quaint townhouses that form a coop, each with its own private entrance through charming front gardens. Step from your patio into the bright living room, with 12' ceilings, oversized windows looking north, and tons of space for art. Down steps in the rear is a secluded room which can be used as a den, third bedroom, home office, or media room, with plenty of storage space.\n\nThe eat-in kitchen, elevated several steps up from the lofty living area, has marble flooring, granite countertops, custom cabinetry, and chef's appliances by Viking and Sub-Zero. On this level is a washer/dryer and a full bathroom.\n\nOn the top level of the home are two bedrooms, including the primary. This floor is illuminated by skylights and also has a private terrace facing north off of the primary suite. This bedroom is en-suite and the bathroom features a deep soaking tub, double sink, stone surfaces and a rain shower. The second bedroom is quiet and bright, and has an enormous, attic-like closet for storage.\n\nThe home has central air, is ultra-quiet, private, and is a rare opportunity to join this community-based cooperative. It is a rare opportunity for a buyer who desires a discreen lifestyle without compromising on space or location; 8 Charles Lane lies ideally among the enchanting streets of the West Village, the high-end shopping of Meatpacking, and the incredible serenity of the Village waterfront. ", + "features": [ + "Balcony", + "Private Terrace", + "Spiral Staircase", + "High Ceilings", + "Oversized Windows", + "Washer / Dryer", + "Washer / Dryer in Unit", + "Dryer", + "Washer", + "Central AC", + "Dishwasher", + "Wine Cooler", + "Media / Recreation Room", + "Home Office", + "Granite Kitchen Counter", + "Eat-in Kitchen", + "Double Sink Bathroom", + "Custom Closet", + "Soaking Tub", + "Central Heating" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "17", + "Pet Policy": "Not Allowed", + "Rental Incentives": "No Fee", + "Available Date": "06/15/2026", + "Lease Term": "Lease Length: 12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "5.0", + "Property Type": "Co-op", + "Year Built": "1975", + "County": "New York County" + }, + "regional_facts": {}, + "agent": { + "name": "Brett Walsdorf", + "email": "brett.walsdorf@compass.com", + "telephone": "9177423335" + } + }, + "2100128100690349753": { + "listing_id": "2100128100690349753", + "source_url": "https://www.compass.com/homedetails/610-27th-Ave-E-Seattle-WA-98112/1RRWJL_pid/", + "retrieved_at": "2026-09-06T04:13:58.857871+00:00", + "html_sha256": "d50fa38c83a696dce6250e3377f57ae050f4fc9d0294717840995b5860bb2ed5", + "price": 1315000, + "address": "610 27th Avenue East", + "unit": "", + "city": "Seattle", + "state": "WA", + "zip": "98112", + "neighborhood": "Madison Valley", + "latitude": 47.6246671, + "longitude": -122.2973841, + "beds": 5, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 2180, + "property_type": "Single Family", + "year_built": 1957, + "mls_number": "2510724", + "status_text": "Active", + "days_on_market": 121, + "listed_at_ms": 1778137200000, + "description": "610 27th Ave E is ideally situated near one of Seattle’s true gems, the Washington Park Arboretum. This beautifully maintained mid-century home has been immaculately cared for and showcases classic character throughout, ready for Smart updates and comfortable living. The main floor features three bedrooms, one full bathroom, and stunning fir hardwood floors, creating a warm and cohesive living space. Downstairs, the lower level offers two spacious non-conforming bedrooms, a full bathroom, a flex room, and a recreation room, providing excellent versatility. With its separate entrance, the lower level presents strong potential for revenue generation, guest quarters, or multi-generational living. The outdoor living space does not disappoint, complete with cozy areas for morning coffee, gardening, and entertaining, with potential to add an ADU for additional value or flexibility. The location is exceptional, just minutes from the University of Washington, downtown Seattle, the Eastside, and Lake Washington. Everyday conveniences, including groceries, restaurants, and shops, are all within easy reach, making this home as practical as it is charming.", + "features": [ + "Basement", + "Carpet Floors", + "Dishwasher", + "Fireplace", + "Forced Air", + "Hardwood Floors", + "Laminate Floors", + "Refrigerator", + "Vinyl Floors", + "Washer" + ], + "property_facts": { + "Status": "Active", + "MLS #": "2510724", + "Days on Market": "121", + "Cumulative Days on Market": "121", + "Taxes": "$2,137 / year", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "1957", + "Lot Size": "0.12 AC / 5,300 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Arboretum", + "School District": "Seattle", + "View": "Territorial", + "Number of Assigned Spaces": "0", + "Total Covered Parking": "0", + "Entry Date": "05-07-2026", + "Energy Source": "Electric,Natural Gas", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "Carol Peoples-Procter", + "email": "carol.peoplesprocter@compass.com", + "telephone": "2068493747" + } + }, + "2100132165280906185": { + "listing_id": "2100132165280906185", + "source_url": "https://www.compass.com/homedetails/5519-18th-Ave-S-Seattle-WA-98108/1SA3TH_pid/", + "retrieved_at": "2026-09-06T04:14:00.798152+00:00", + "html_sha256": "06c1bbb9f98e9ca904ad5e84388819342625e4c225ba367f6bf91487c79536fd", + "price": 888000, + "address": "5519 18th Avenue South", + "unit": "", + "city": "Seattle", + "state": "WA", + "zip": "98108", + "neighborhood": "Mid-Beacon Hill", + "latitude": 47.5528428, + "longitude": -122.3101603, + "beds": 4, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1970, + "property_type": "Single Family", + "year_built": 1918, + "mls_number": "2519765", + "status_text": "Sold", + "days_on_market": 5, + "listed_at_ms": 1778137200000, + "description": "This charming Beacon Hill Craftsman will steal your heart. From its storybook curb appeal to the inviting front porch, this house simply feels like home. Step inside to find a perfect blend of timeless charm and modern updates. The main level features two bedrooms and a beautifully remodeled bathroom. At the heart of the home, the kitchen seamlessly connects two spacious living areas, which provide ample space for dining, relaxing, or entertaining. The upper bedrooms feature thoughtful built-ins and warm wood accents. Downstairs, you'll find 2 additional bedrooms, a second bathroom, and a versatile open space perfect for movie nights or a media room. Thoughtful updates throughout include air conditioning, a tankless water heater, new electric panel and fresh paint. Outside, the sunny deck offers breathtaking territorial views, while the lush backyard is a gardener’s dream, bursting with flowering trees, native plants, and brand-new garden beds. The location couldn’t be more convenient as it's just minutes from wonderful eateries, bars and cafes. Plus, light rail and I-5 are moments away for effortless commuting!", + "features": [ + "Air Conditioning", + "Basement", + "Carpet Floors", + "Ceramic Floors", + "Dishwasher", + "Disposal", + "Driveway", + "Dryer", + "Forced Air", + "Microwave", + "Off-Street Parking", + "Partial Basement", + "Refrigerator", + "Vinyl Floors", + "Wall Heaters", + "Washer" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "2519765", + "Days on Market": "5", + "Cumulative Days on Market": "5", + "Taxes": "$6,824 / year", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "1918", + "Lot Size": "0.15 AC / 6,720 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Beacon Hill", + "School District": "Seattle", + "View": "Territorial", + "Number of Assigned Spaces": "2", + "Total Covered Parking": "0", + "Offers Review Date": "05-12-2026", + "Entry Date": "05-07-2026", + "Energy Source": "Electric,Natural Gas", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "Robin Sheridan", + "email": "robin.sheridan@compass.com", + "telephone": "2062405826" + } + }, + "2100134242526915801": { + "listing_id": "2100134242526915801", + "source_url": "https://www.compass.com/homedetails/1430-Pierce-St-Denver-CO-80214/12OQ2I_pid/", + "retrieved_at": "2026-09-06T04:11:43.507361+00:00", + "html_sha256": "36a1ed4283d27eaece02b5a6fb4697a09dd68f97be7beeab2a4f9eadcb1e3313", + "price": 639000, + "address": "1430 Pierce Street", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80214", + "neighborhood": "Two Creeks", + "latitude": 39.7390566171018, + "longitude": -105.07178864480942, + "beds": 3, + "baths_full": 3, + "baths_half": 0, + "baths_total": 3, + "sqft": 1895, + "property_type": "Single Family", + "year_built": 2025, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Take advantage of 3 months of FREE HOA and up to $10k (based on loan terms) from our preferred lender, Jimmy Everetts with The Shield Lending Team! For more details, contact Jimmy at (720) 979-8742. Introducing brand new townhomes in Pierce Creek Village, where modern design meets timeless comfort. Ideally situated between the vibrant heart of Downtown Denver and the breathtaking Rocky Mountains, this home promises a lifestyle of convenience and ease. As you step inside and ascend the stairs, you'll be greeted by a bright and airy open-concept living space. Large windows flood the area with natural light, beautifully showcasing the townhome's expansive layout. The living room flows effortlessly into the well-appointed kitchen, complete with ample storage, sleek stainless steel appliances, and thoughtful design for both function and style. Retreat to the expansive primary suite, featuring a luxurious ensuite bath for ultimate relaxation. With a rooftop patio perfect for taking in Colorado’s stunning sunsets and an attached 2-car garage, this home provides the ideal balance of convenience and luxury. Located in Lakewood's Historic West Colfax corridor, this community is a stone’s throw from the vibrant 40 West Arts District, cultural gems like Casa Bonita, and convenient access to shopping, dining, and the W-Line to Union Station. Enjoy a quick 10-minute drive to Downtown Denver or escape to the Foothills for a scenic getaway. No matter your needs, Pierce Creek Village is more than just a home—it’s a lifestyle. See floor plan and overall site plan in pictures. https://piercecreekvillage.com\n", + "features": [ + "Carpet Floors", + "Central AC", + "Dishwasher", + "Dryer Hookup", + "Eat-in Kitchen", + "Forced Air", + "Kitchen Dining", + "Laundry Room", + "Open Kitchen", + "Pantry", + "Primary Ensuite", + "Private Entrance", + "Range", + "Refrigerator", + "Stainless Steel Appliances", + "Tile Floors", + "Vinyl Floors", + "Washer Hookup", + "Wet Bar" + ], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Single Family", + "Year Built": "2025", + "County": "Jefferson County" + }, + "regional_facts": { + "Structure Type": "House", + "Levels": "Three Or More", + "Subdivision Name": "Lakewood", + "Association": "Yes" + }, + "agent": { + "name": "Lori Abbey", + "email": "loriabbey@compass.com", + "telephone": "7208404984" + } + }, + "2100141366401049057": { + "listing_id": "2100141366401049057", + "source_url": "https://www.compass.com/homedetails/273-State-St-Brooklyn-NY-11201/201HPL_pid/", + "retrieved_at": "2026-09-06T04:13:14.359376+00:00", + "html_sha256": "eaf17802f3db6552ffdde272c867478850a72438a19bbbc369fecda530bc0cbb", + "price": 4700000, + "address": "273 State Street", + "unit": "", + "city": "Brooklyn", + "state": "NY", + "zip": "11201", + "neighborhood": "Boerum Hill", + "latitude": 40.6890942, + "longitude": -73.9878633, + "beds": 4, + "baths_full": 4, + "baths_half": 0, + "baths_total": 4, + "sqft": 3837, + "property_type": "Townhouse", + "year_built": 2005, + "mls_number": "", + "status_text": "Sold", + "days_on_market": 20, + "listed_at_ms": 1778167560053, + "description": "Welcome home! 273 State Street is a striking four-story modern townhouse offering four bedrooms, four bathrooms, and approximately 3,000 square feet of thoughtfully designed living space. Built in 2005 as part of the revered “14 Townhouses” and meticulously maintained, the home blends contemporary design with warm, livable elegance. \n\nFlooded with natural light, the home is anchored by a dramatic 20-foot double-height window looking out to the private garden, creating a bright and airy atmosphere throughout. The open layout is incredibly flexible, ideal for both everyday living and entertaining.\n\nThe garden level welcomes you with a stone-floored entry, a spacious custom California Closet, a full bathroom, and a south-facing guest bedroom or den. The expansive kitchen is the true heart of the home, featuring a premium Sub-Zero refrigerator and a six-burner Wolf range, along with abundant cabinetry and prep space. The adjacent dining area is framed by a stunning double-height wall of glass and opens seamlessly to the landscaped backyard through sliding glass doors, perfect for indoor-outdoor living and dining. \n\nUpstairs, the parlor level offers a gracious and dramatic open space with two distinct seating areas, a wood-burning fireplace, and a glass railing overlooking the dining area below. A custom glass chandelier adds a beautiful sculptural focal point. It reflects light along the tall sidewall, bringing the outdoors in. \n\nThe third floor features two generously sized bedrooms each spanning the full width of the house, two bathrooms - one ensuite - and a laundry room that suburban dreams are made of equipped with full sized washer and vented dryer along with countertop and tons of extra space. \n\nThe entire fourth floor is dedicated to the primary suite, a private retreat complete with a customized dressing area and ample closet space. The spa-like primary bathroom features a deep soaking tub, double vanity, and elegant Carrara marble finishes throughout. Also on this level is a spacious south facing terrace, overlooking tree lined State Street. A great spot for an evening drink or a break from the day.\n\nThe full basement, with nearly 9-foot ceilings, offers exceptional potential for customization or keep as is for an extensive amount of storage.\n\nLocated on an historic and desirable block of State Street, this home is moments from the transportation hub at Borough Hall and Jay Street–MetroTech, as well as some of Brooklyn’s best dining, shopping, and cultural destinations. ", + "features": [ + "Primary Ensuite", + "Private Terrace", + "Private Yard", + "Fireplace", + "Hardwood Floors", + "Oversized Windows", + "Walk Up", + "Washer / Dryer", + "Air Conditioning", + "Dishwasher", + "Stainless Steel Appliances", + "Renovated Kitchen", + "Eat-in Kitchen", + "Marble Bathroom", + "Double Sink Bathroom", + "Southern Exposure", + "Chandeliers", + "Walk-in Closet", + "California Closet", + "Basement", + "Soaking Tub", + "Range Hood", + "Gas Heat", + "Refrigerator", + "House", + "Stone Floors", + "Stove" + ], + "property_facts": { + "Status": "Sold", + "Days on Market": "20", + "Taxes": "$2,085 / month", + "Total Rooms": "8.0", + "Property Type": "Townhouse", + "MLS Type": "Single Family Townhouse", + "Year Built": "2005", + "County": "Kings County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": {}, + "agent": { + "name": "Lindsay Barrett", + "email": "lbb@compass.com", + "telephone": "9173635521" + } + }, + "2100146160419465409": { + "listing_id": "2100146160419465409", + "source_url": "https://www.compass.com/homedetails/58-Remsen-St-Unit-1R-Brooklyn-NY-11201/20E6EK_pid/", + "retrieved_at": "2026-09-06T04:13:14.830548+00:00", + "html_sha256": "3d81fae9a2c3d810e59e2bc063b3c8504a8f7959ee61e3c4fba16fa2190adacc", + "price": 2250000, + "address": "58 Remsen Street, Unit 1R", + "unit": "1R", + "city": "Brooklyn", + "state": "NY", + "zip": "11201", + "neighborhood": "Brooklyn Heights", + "latitude": 40.6943975, + "longitude": -73.99643259999999, + "beds": 2, + "baths_full": 1, + "baths_half": 1, + "baths_total": 1.5, + "sqft": null, + "property_type": "Co-op", + "year_built": 1900, + "mls_number": "", + "status_text": "Contract Signed", + "days_on_market": 8, + "listed_at_ms": 1778168131658, + "description": "Positioned on the sun-filled corner of Remsen and Hicks Streets and just one block to the Brooklyn Heights Promenade, this Parlor level 2BR/1.5BA co-op with extraordinarily rare, double-lot (2000+sf) private garden at 58 Remsen Street is the idyllic townhouse living experience.\n\nEnter the apartment’s foyer, past a half-bath and deep front hall closet and you are swept up in the apartment’s Parlor level features: 11'4\" ceilings, gorgeous window and wall trim, wood floors, exposed brick and a working fireplace. Sunlight streams into the living room from three windows, showing garden views from every angle, mature tree tops and blue skies. The inviting kitchen is open to the living area and has generous storage, a sink hidden from guest’s sight, gas range, dishwasher and washer/dryer. Just off the kitchen is the primary bedroom with east-facing windows bringing in lovely daylight. This bedroom has a walk-in closet and can fit a king-sized bed. The apartment's renovated windowed bathroom is aesthetically pleasing with a wall of cabinetry that hides everything from sight.\n\nHead to the rear of the apartment and find the well-sized second bedroom with an east-facing window and southern exposure. Step through the bedroom’s glass double doors and prepare to be wowed: over 2000sf of fully self-irrigated gardens. It is impossible to overstate the beauty of this garden: There is a charming deck with lush boughs of wisteria, bluestone pavers and two large patios for enjoying your private garden oasis. A leafy tree canopies the large outdoor dining area with plenty of room to host. Pad down the bluestone pavers with verdant plantings on either side to the second, larger patio: a sprawling seating area with a self-standing brick fireplace. There is also a private gated entrance off of Grace Court. This singular garden is an unparalleled delight: areas in which to congregate, walkways that allow you to meander and take in the dozens of plants, flowers and trees as they bloom and grow.\n\n58 Remsen is a 10-unit co-op. The building is pet-friendly, unfortunately no pied-a-terres allowed. Just one block to the Brooklyn Heights Promenade, this apartment is in the heart of historic Brooklyn Heights and close to all the conveniences of city life. Close to Borough Hall and seven subway lines and CitiBike stations. This is a once-in-a-lifetime opportunity to own a Parlor level apartment with probably the largest, most exquisite backyard in all of landmarked Brooklyn Heights.\n", + "features": [ + "Deck", + "Barbecue Area", + "Exposed Brick", + "Fireplace", + "Hardwood Floors", + "High Ceilings", + "Walk Up", + "Washer / Dryer in Unit", + "Wall Unit", + "Gas Oven", + "Chef's Kitchen", + "Open Kitchen", + "Butlers Pantry", + "Southern Exposure", + "Walk-in Closet", + "Garden", + "Gas Stove", + "Storage", + "Southeastern Exposure", + "Lowrise", + "Brownstone" + ], + "property_facts": { + "Status": "Contract Signed", + "Days on Market": "8", + "Pet Policy": "Allowed", + "Maintenance": "$1,912 / month", + "Min. Down Pymt": "20%", + "Total Rooms": "6.0", + "Property Type": "Co-op", + "Year Built": "1900", + "County": "Kings County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": {}, + "agent": { + "name": "Jessica Henson", + "email": "jessica.henson@compass.com", + "telephone": "9176174371" + } + }, + "2100152382590403177": { + "listing_id": "2100152382590403177", + "source_url": "https://www.compass.com/homedetails/453-McGilvra-Blvd-E-Seattle-WA-98112/1T307N_pid/", + "retrieved_at": "2026-09-06T04:14:01.526993+00:00", + "html_sha256": "9c8802df890620918077963305a854f6704c6f9bd52ef916ae9e7bf1cecb7aa8", + "price": 3150000, + "address": "453 McGilvra Boulevard East", + "unit": "", + "city": "Seattle", + "state": "WA", + "zip": "98112", + "neighborhood": "Denny Blaine", + "latitude": 47.6240061, + "longitude": -122.2847627, + "beds": 4, + "baths_full": 2, + "baths_half": 1, + "baths_total": 4.75, + "sqft": 4940, + "property_type": "Single Family", + "year_built": 1947, + "mls_number": "2517906", + "status_text": "Sold", + "days_on_market": 50, + "listed_at_ms": 1778137200000, + "description": "Nestled in the heart of Washington Park offers a rare opportunity to live in one of Seattle’s most iconic and sought-after neighborhoods. Set along a beautiful tree-lined boulevard just moments from the shores of Lake Washington, this home captures the charm, character, and timeless appeal that define Washington Park living. Inside, light-filled spaces create an inviting atmosphere that feels both elegant and comfortable. Large windows bring in natural light while thoughtfully designed living areas provide the perfect setting for everyday living and effortless entertaining. The home offers a wonderful balance of warmth and sophistication, with spaces that flow naturally from room to room. The kitchen and gathering areas serve as the heart of the home, ideal for hosting friends, enjoying dinners, or relaxing after a day by the lake. Private bedrooms provide peaceful retreats, while flexible spaces offer room for a home office, guests, or creative pursuits. Outside, mature trees and classic neighborhood streets create a setting that feels peaceful. Just minutes from the Washington Park Arboretum, Madison Park Village, and scenic lakefront paths, the location offers an unmatched Seattle lifestyle. Opportunities to own along McGilvra Boulevard are rare—this is a home that must be experienced to truly appreciate.", + "features": [ + "Air Conditioning", + "Attached Garage", + "Basement", + "Carpet Floors", + "Ceramic Floors", + "City Views", + "Dishwasher", + "Disposal", + "Double Oven", + "Dryer", + "Fireplace", + "Forced Air", + "Garage", + "Hardwood Floors", + "Lake Views", + "Microwave", + "Refrigerator", + "Spa", + "Washer" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "2517906", + "Days on Market": "50", + "Cumulative Days on Market": "91", + "Taxes": "$27,621 / year", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "1947", + "Lot Size": "0.16 AC / 6,990 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Washington Park", + "School District": "Seattle", + "View": "City, Lake, Mountains, Partial, Territorial", + "Number of Assigned Spaces": "2", + "Total Covered Parking": "2", + "Entry Date": "05-07-2026", + "Energy Source": "Natural Gas", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "Sabina Telenska", + "email": "sabina.telenska@compass.com", + "telephone": "2062280633" + } + }, + "2100217447100274601": { + "listing_id": "2100217447100274601", + "source_url": "https://www.compass.com/homedetails/220-Atlantic-Ave-Unit-2-Brooklyn-NY-11201/27FD4L_pid/", + "retrieved_at": "2026-09-06T04:13:15.434780+00:00", + "html_sha256": "c123f5d388b4c9544b7f5fe9e088eb50dbf13406d6fe73f848ce6a1cd76b5400", + "price": 5500, + "address": "220 Atlantic Avenue, Unit 2", + "unit": "2", + "city": "Brooklyn", + "state": "NY", + "zip": "11201", + "neighborhood": "Cobble Hill", + "latitude": 40.689303, + "longitude": -73.99184570000001, + "beds": 2, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 975, + "property_type": "Rental", + "year_built": 1800, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 6, + "listed_at_ms": 1778176629703, + "description": "This light-filled, renovated apartment will welcome you home after a long day of exploring all that this incredible Cobble Hill location has to offer.\n\nUpon entering this 2 Bedroom, 1 Bath home, you are greeted with streaming light, high ceilings, and gorgeous hardwood floors. The well-designed open kitchen is equipped with Kitchen Aid stainless steel appliances that include a 5 burner stove with a Dual Temp oven, microwave, and dishwasher. The kitchen also has Cesar-stone countertops and a beautiful long kitchen island.\n\nThe loft-like dining/living room gives you plenty of space to have a large dining table and a huge sitting area to entertain.\n\nThe primary bedroom comfortably fits a king-size bed. The bathroom has Mosaic Marble flooring, a dual sink, and a rain showerhead. The windowed bathtub is extra large and has shelving space. This rental unit has its own washer/dryer and plenty of closet space throughout.\n\nConveniently located to everything: just minutes away from 2,3,4,5, A, C, F, N, R, G, Trains. B61, & B63 Bus stop is just a few feet away. Water taxi, restaurants, cafes, bookstores, Trader Joe's, Sahadi's, and plenty of incredible shopping on Atlantic Avenue/Smith & Court Streets. Near Brooklyn Bridge Park & Prospect Park.\n\nLease term is 12 to 24 months.\n", + "features": [ + "Hardwood Floors", + "High Ceilings", + "Washer / Dryer", + "Washer / Dryer in Unit", + "Dryer", + "Washer", + "Laundry in Building", + "Central AC", + "Window AC can be Installed", + "Dishwasher", + "Stainless Steel Appliances", + "Gas Oven", + "Eat-in Kitchen", + "Double Sink Bathroom", + "Eastern Exposure", + "Western Exposure", + "Soaking Tub", + "Gas Stove", + "Island Kitchen", + "Kitchen Dining", + "Refrigerator", + "Stove", + "Lowrise", + "Security System" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "6", + "Pet Policy": "Allowed", + "Rental Incentives": "No Fee", + "Available Date": "06/01/2026", + "Lease Term": "Lease Length: 24 Months, Lease Length Min/Max: 24-24 mo", + "Total Rooms": "3.0", + "Property Type": "Rental", + "Year Built": "1800", + "County": "Kings County" + }, + "regional_facts": {}, + "agent": { + "name": "Lucy Bekheet", + "email": "lucy.bekheet@compass.com", + "telephone": "9179718986" + } + }, + "2100222781369429673": { + "listing_id": "2100222781369429673", + "source_url": "https://www.compass.com/homedetails/2400-Aurora-Ave-N-Unit-210-Seattle-WA-98109/1RI3J0_pid/", + "retrieved_at": "2026-09-06T04:14:01.886211+00:00", + "html_sha256": "7cec390d327718087249bfae28d26dd11553b68f6dede3d9ccf2b01a6d764391", + "price": 1495000, + "address": "2400 Aurora Avenue North, Unit 210", + "unit": "210", + "city": "Seattle", + "state": "WA", + "zip": "98109", + "neighborhood": "East Queen Anne", + "latitude": 47.640245, + "longitude": -122.345754, + "beds": 3, + "baths_full": 1, + "baths_half": 1, + "baths_total": 2.25, + "sqft": 2517, + "property_type": "Condo", + "year_built": 1987, + "mls_number": "2519190", + "status_text": "Active", + "days_on_market": 121, + "listed_at_ms": 1778137200000, + "description": "Perched on the coveted east slope of Queen Anne, this striking modern townhome delivers the perfect balance of style, comfort, and location-just moments from Amazon, Google, South Lake Union, and some of Seattle’s best dining. Part of an impressive $5M building-wide transformation, this beautifully renovated three-bedroom residence is designed to inspire. Dramatic 25+ ft ceilings and expansive floor-to-ceiling windows flood the home with natural light, showcasing sweeping views of Lake Union, Gas Works Park, and Cascade Mountains. Seamlessly blending indoor and outdoor living, enjoy front-row seats to float planes and Fourth of July fireworks from one of three private decks. Inside, the open-concept layout features stunning blonde engineered hardwoods, a sleek chef’s kitchen with modern finishes, a generous pantry, and a welcoming family room anchored by a cozy wood-burning fireplace. The luxurious primary suite offers a true retreat, complete with spa-like touches including a heated towel bar and a dual-fixture shower designed for ultimate relaxation. Comfort meets convenience with central A/C, a rare 3-car garage, an additional off-street parking space, and abundant storage throughout. Move in with confidence—this building has been comprehensively upgraded with a durable Ceraclad exterior, all-new windows, a new roof, and refreshed decks. Pet-friendly with no rental cap, Windwatch offers not just a home, but a lifestyle—with long-term peace of mind built in.", + "features": [ + "Air Conditioning", + "Carpet Floors", + "Central AC", + "Ceramic Floors", + "City Views", + "Common Outdoor Space", + "Dishwasher", + "Dryer", + "Fireplace", + "Forced Air", + "Garage", + "Lake Views", + "Microwave", + "Parking Included", + "Refrigerator", + "Washer" + ], + "property_facts": { + "Status": "Active", + "MLS #": "2519190", + "Days on Market": "121", + "Cumulative Days on Market": "121", + "Taxes": "$9,659 / year", + "HOA Fees": "$1,432 / month", + "Property Type": "Condo", + "MLS Type": "Residential", + "Year Built": "1987", + "County": "King County" + }, + "regional_facts": { + "Community Name": "Westlake", + "School District": "Seattle", + "View": "City, Lake, Mountains", + "Number of Assigned Spaces": "4", + "Total Covered Parking": "3", + "Entry Date": "05-07-2026", + "Energy Source": "Electric" + }, + "agent": { + "name": "Joe Bills", + "email": "joe.bills@compass.com", + "telephone": "2068568736" + } + }, + "2100222800844142641": { + "listing_id": "2100222800844142641", + "source_url": "https://www.compass.com/homedetails/501-W-Main-St-Unit-A101-Aspen-CO-81611/LRBC9_pid/", + "retrieved_at": "2026-09-06T04:10:36.821961+00:00", + "html_sha256": "f643df3f615f1a48efb34e0f17b42239b1567f3fd622986ad768bde7984c3699", + "price": 1925000, + "address": "501 West Main Street, Unit A101", + "unit": "A101", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "neighborhood": "Aspen West End", + "latitude": 39.1922779, + "longitude": -106.8277825, + "beds": 1, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 460, + "property_type": "Condo", + "year_built": 2004, + "mls_number": "192719", + "status_text": "Active", + "days_on_market": 124, + "listed_at_ms": 1777852800000, + "description": "Recently remodeled in 2025, this is one of the quietest and most desirable units in the Christiana complex. It lives more like a cozy mountain cabin--with the added benefit of a pool and hot tub--rather than a typical condo. The unit features an in-unit laundry room and enjoys protected views of Ajax, thanks to its orientation toward the historic portion of the Boomerang Lodge. Impeccably maintained and offered fully furnished, the property is turnkey and ready to enjoy. Strong rental potential with both short- and long-term options. Dogs are allowed for owners, and HOA dues are notably low for a downtown Aspen location. One of the newer complexes in Aspen, this is an excellent opportunity as a starter home, pied-à-terre, or investment property.", + "features": [ + "Pool", + "Washer / Dryer in Unit", + "Laundry in Building", + "Air Conditioning", + "Fully Furnished", + "Pet Friendly", + "Parking Included", + "Laundry" + ], + "property_facts": { + "Status": "Active", + "MLS #": "192719", + "Days on Market": "124", + "Taxes": "$3,191 / year", + "HOA Fees": "$2,201 / quarter", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "2004", + "County": "Pitkin County" + }, + "regional_facts": { + "Garage": "No", + "Property Faces": "Southeast", + "Furnished": "Furnished", + "Fireplace: # Fireplaces": "1", + "Sub/Loc": "Christiana Aspen" + }, + "agent": { + "name": "John Whipple", + "email": "john@whippleandbrewster.com", + "telephone": "970-618-5930" + } + }, + "2100227614806075617": { + "listing_id": "2100227614806075617", + "source_url": "https://www.compass.com/homedetails/702-S-Director-St-Seattle-WA-98108/1T0B0W_pid/", + "retrieved_at": "2026-09-06T04:14:03.346474+00:00", + "html_sha256": "7d6beb9d47b32cb1221aa115d73a969f83db1c2fad7f7842ee620db9ae90145e", + "price": 425000, + "address": "702 South Director Street", + "unit": "", + "city": "Seattle", + "state": "WA", + "zip": "98108", + "neighborhood": "South Park", + "latitude": 47.5224001, + "longitude": -122.3254548, + "beds": 3, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 1490, + "property_type": "Single Family", + "year_built": 1941, + "mls_number": "2520051", + "status_text": "Active", + "days_on_market": 121, + "listed_at_ms": 1778137200000, + "description": "Charming 3-bedroom, 1-bath home offering approximately 1,490 square feet in Seattle's rapidly growing South Park neighborhood. Lightly renovated and move-in ready, this property presents an excellent opportunity for homeowners, investors, or builders looking to generate rental income while exploring future development potential. For those seeking additional opportunity, the adjoining buildable parcels are available for purchase separately, including permit-ready plans for new 2,000+ SF homes. Together, the neighboring properties offer the potential to assemble a unique development opportunity. Please see MLS #2548900, #2476505 & #2476503) for additional details. Whether you're looking for a comfortable home, an investment property, or the opportunity to expand your footprint through the purchase of the adjacent parcels, this property offers exceptional flexibility in one of Seattle's up-and-coming neighborhoods.", + "features": [ + "Corner Lot", + "Dishwasher", + "Forced Air", + "Laminate Floors", + "Microwave", + "Off-Street Parking", + "Parking Included", + "Refrigerator" + ], + "property_facts": { + "Status": "Active", + "MLS #": "2520051", + "Days on Market": "121", + "Cumulative Days on Market": "304", + "Taxes": "$4,931 / year", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "1941", + "Lot Size": "0.07 AC / 2,961 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "South Park", + "School District": "Seattle", + "View": "Territorial", + "Number of Assigned Spaces": "0", + "Total Covered Parking": "0", + "Entry Date": "05-07-2026", + "Energy Source": "Electric,Natural Gas", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "Laura Lynn", + "email": "laura.lynn@compass.com", + "telephone": "4256470550" + } + }, + "2100237732100082185": { + "listing_id": "2100237732100082185", + "source_url": "https://www.compass.com/homedetails/3101-W-18th-Ave-Denver-CO-80204/127QT1_pid/", + "retrieved_at": "2026-09-06T04:11:43.936896+00:00", + "html_sha256": "736602c72a700739bdbe3754aabaf9fcb7de66ff7f3ab2e90eb30aa999268433", + "price": 750000, + "address": "3101 West 18th Avenue", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80204", + "neighborhood": "Cheltenham Heights", + "latitude": 39.7453179, + "longitude": -105.0270625, + "beds": 3, + "baths_full": 2, + "baths_half": 1, + "baths_total": 4, + "sqft": 1762, + "property_type": "Townhouse", + "year_built": 2017, + "mls_number": "6575107", + "status_text": "Closed", + "days_on_market": 25, + "listed_at_ms": 1778133600000, + "description": "Contemporary design meets effortless urban living in this stylish townhome ideally located just moments from Sloan’s Lake. Thoughtfully designed, this home offers a bright, open-concept layout perfect for both everyday living and entertaining.\r\nThe main level features a welcoming entrance foyer, a convenient powder bath, and direct access from the attached 2-car garage—offering both functionality and ease of everyday living.\r\nUpstairs, the second level is designed for modern living, featuring an open kitchen and dining area with quartz countertops, modern cabinetry, stainless steel appliances, and a generous island for seating and prep space. The space is anchored by a sleek linear fireplace, adding both warmth and a striking focal point. The layout flows seamlessly and offers access to a private balcony—ideal for morning coffee or evening relaxation. This level also includes an additional bedroom, offering flexibility for guests or a home office.\r\nThe third level hosts two well-appointed bedrooms, including a spacious primary suite with a walk-in closet and a beautifully finished en-suite bath, along with an additional bedroom. A conveniently located laundry room on this level adds everyday ease and functionality.\r\nOne of the standout features is the expansive rooftop deck, offering incredible space for entertaining, dining, or simply enjoying Colorado’s sunshine with city and mountain views as your backdrop.\r\nPerfectly situated in a prime Denver location near Sloan’s Lake, Edgewater, and some of the city’s best dining, shopping, and recreation, this home blends modern living with exceptional convenience. Just steps from Empower Field at Mile High, enjoy effortless access to Broncos games, major concerts, and year-round events right in your neighborhood.", + "features": [ + "Attached Garage", + "Balcony", + "Baseboard Heating", + "Carpet Floors", + "Central AC", + "City Views", + "Dishwasher", + "Disposal", + "Dryer", + "Eat-in Kitchen", + "Fireplace", + "Forced Air", + "Foyer", + "Garage", + "Island Kitchen", + "Microwave", + "Mountain Views", + "Private Outdoor Space", + "Range", + "Range Hood", + "Refrigerator", + "Walk-in Closet", + "Washer", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "6575107", + "Days on Compass": "25", + "Taxes": "$4,044 / year", + "Property Type": "Townhouse", + "MLS Type": "Residential / Townhouse", + "Year Built": "2017", + "Lot Size": "0.05 AC / 2,388 SF", + "County": "Denver County" + }, + "regional_facts": { + "Structure Type": "Townhouse", + "Architectural Style": "Eat-in Kitchen, Open Floorplan, Walk-In Closet(s), Kitchen Island, Townhouse", + "View": "City, Mountain(s)", + "Levels": "Three Or More", + "Subdivision Name": "Sloans Lake", + "Association": "No", + "Basement": "No" + }, + "agent": { + "name": "Nicole Keiller", + "email": "nicole.keiller@compass.com", + "telephone": "5157202136" + } + }, + "2100281232280226201": { + "listing_id": "2100281232280226201", + "source_url": "https://www.compass.com/homedetails/5960-31st-Ave-SW-Seattle-WA-98126/1SCNB8_pid/", + "retrieved_at": "2026-09-06T04:14:04.191075+00:00", + "html_sha256": "8082951824c45fea39ad1e7de88800a25179a3419b2c9486be0e9af35e6479cb", + "price": 810000, + "address": "5960 31st Avenue Southwest", + "unit": "", + "city": "Seattle", + "state": "WA", + "zip": "98126", + "neighborhood": "High Point", + "latitude": 47.5486505, + "longitude": -122.3719416, + "beds": 3, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 1780, + "property_type": "Single Family", + "year_built": 2007, + "mls_number": "2520012", + "status_text": "Sold", + "days_on_market": 39, + "listed_at_ms": 1778137200000, + "description": "Charming, light-filled corner home with exceptional curb appeal, ideally situated beside a peaceful neighborhood park in a serene, park-like setting. Beautifully updated throughout, this move-in ready residence features a stunning, like-new kitchen with new countertops, sink, faucet, and range. Enjoy seamless indoor-outdoor living with a covered wraparound front porch and a covered deck off the dining room, perfect for year-round enjoyment. A spacious 2-car garage provides excellent parking and storage. Thoughtfully designed for both comfort and convenience, the home offers a warm and inviting atmosphere throughout.Unbeatable West Seattle location near Camp Long and Lincoln Park, both offering scenic wooded trails and abundant outdoor recreation. Close to Alki Beach, local coffee shops, restaurants, and everyday amenities. Easy access to transit, including the RapidRide C Line, and a commuter’s dream, just 15 minutes to Seattle-Tacoma International Airport and downtown Seattle, and approximately 30 minutes to Bellevue. A rare opportunity to own a beautifully refreshed home in a tranquil setting with outstanding walkability and connectivity. This one is not to be missed.", + "features": [ + "Attached Garage", + "Basement", + "Ceramic Floors", + "Common Outdoor Space", + "Dishwasher", + "Disposal", + "Dryer", + "Fireplace", + "Garage", + "Laminate Floors", + "Microwave", + "Off-Street Parking", + "Playground", + "Refrigerator", + "Traditional", + "Walk-in Closet", + "Washer" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "2520012", + "Days on Market": "39", + "Cumulative Days on Market": "39", + "Taxes": "$7,500 / year", + "HOA Fees": "$148 / month", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "2007", + "Lot Size": "0.06 AC / 2,778 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "High Point", + "School District": "Seattle", + "Number of Assigned Spaces": "2", + "Total Covered Parking": "2", + "Entry Date": "05-07-2026", + "Energy Source": "Natural Gas", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "Teri O'Neal", + "email": "teri.oneal@compass.com", + "telephone": "2069141456" + } + }, + "2100294315240937585": { + "listing_id": "2100294315240937585", + "source_url": "https://www.compass.com/homedetails/50-King-St-Unit-9A-Manhattan-NY-10014/27FE4K_pid/", + "retrieved_at": "2026-09-06T04:10:33.739218+00:00", + "html_sha256": "872d7a1f14bb5e9aa7fa3dbda4895bdd6b991b86a1e996fc3d4f390cfe979b5b", + "price": 565000, + "address": "50 King Street, Unit 9A", + "unit": "9A", + "city": "Manhattan", + "state": "NY", + "zip": "10014", + "neighborhood": "Hudson Square", + "latitude": 40.7277436, + "longitude": -74.00471, + "beds": 0, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": null, + "property_type": "Co-op", + "year_built": 1959, + "mls_number": "", + "status_text": "Sold", + "days_on_market": 26, + "listed_at_ms": 1778185793104, + "description": "Welcome to Apartment 9A, a high floor, sunny, oversized studio framed by sweeping open views and endless potential. Currently configured as a spacious studio, this residence offers a rare canvas to reimagine, with the flexibility to incorporate a gracious living area alongside a generously scaled eat-in kitchen or convert the apartment to a one bedroom.\n\nBathed in natural light, the home enjoys three exposures across two directions, overlooking tranquil, landscaped gardens, a quiet retreat in the heart of downtown. The layout is notably expansive for a post-war residence, complemented by abundant storage and a level of care that speaks to its thoughtful upkeep over time.\n\nSet along a charming townhouse block at the crossroads of the West Village and SoHo, 50 King Street is a boutique, well-maintained elevator cooperative. Residents benefit from a live-in superintendent, a central laundry room, and an on-site parking garage. The building welcomes pets, pied-à-terre ownership, and parental purchasing.\n\nLocated within the Charlton-King-Vandam Historic District, now part of the dynamic Hudson Square neighborhood, this address places you moments from some of downtown’s best dining, shopping, and transportation. It also offers proximity to transformative developments including the new headquarters for Google and Disney.\n\nA rare opportunity to bring your vision to life in one of Manhattan’s most compelling and evolving enclaves.", + "features": [ + "Hardwood Floors", + "Oversized Windows", + "Elevator", + "Laundry in Building", + "Wall Unit", + "Dishwasher", + "Foyer", + "Dressing Area", + "Eat-in Kitchen", + "Southern Exposure", + "Eastern Exposure", + "Garage", + "Gas Stove", + "Midrise" + ], + "property_facts": { + "Status": "Sold", + "Days on Market": "26", + "Pet Policy": "Allowed", + "Maintenance": "$1,199 / month", + "Min. Down Pymt": "20%", + "Total Rooms": "2.5", + "Property Type": "Co-op", + "MLS Type": "Co-op", + "Year Built": "1959", + "County": "New York County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": {}, + "agent": { + "name": "Michael J. Franco", + "email": "mfranco@compass.com", + "telephone": "9178174122" + } + }, + "2100306091747647641": { + "listing_id": "2100306091747647641", + "source_url": "https://www.compass.com/homedetails/4011-Greystone-Dr-Austin-TX-78731/1FOD9P_pid/", + "retrieved_at": "2026-09-06T04:10:42.036250+00:00", + "html_sha256": "941e2a0aaed5a1333edc9638bcd413372cae8fa126c63341bf659ed8f11fa9ef", + "price": 1200000, + "address": "4011 Greystone Drive", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78731", + "neighborhood": "Bull Creek", + "latitude": 30.36292619999999, + "longitude": -97.76181, + "beds": 4, + "baths_full": 3, + "baths_half": 0, + "baths_total": 3, + "sqft": 2340, + "property_type": "Single Family", + "year_built": 1969, + "mls_number": "2335045", + "status_text": "Closed", + "days_on_market": 5, + "listed_at_ms": 1778821200000, + "description": "In the heart of Mesa Oaks in Northwest Hills, this single-story 1969 ranch sits on a corner lot that lives far quieter than expected. The driveway opens onto a peaceful dead-end side street that becomes a natural extension of the backyard, perfect for wheeled toys, chalk games, block parties, and more. Behind the property sits a large private parcel that, coupled with the side street, delivers quiet and privacy hard to match.\nInside, a true entry foyer opens to formal living and dining rooms that flow into a soaring vaulted family room anchored by a floor-to-ceiling stacked stone fireplace. Engineered floating wood floors and tile run throughout for easy, low maintenance living.\nThe chef's kitchen renovation opened up the heart of the home with sleek modern European design, quartz counters, stainless appliances, a breakfast area, butler's pantry, and pot filler. The laundry room is a true workhorse with sink, folding space, and storage, leading to the side-facing two-car garage.\nA thoughtful split layout offers two distinct wings. The east wing holds the primary suite plus two additional bedrooms and a second full bath, with one room ready to live as an office for those working from home. The west wing features a large private bedroom with full ensuite, ideal for guests, multigenerational living, a teen retreat, or a second primary.\nSliding glass doors extend the living spaces to a covered patio overlooking the tree-filled yard. It is the kind of backyard where you forget you are minutes from MoPac, 183, the JCC, H-E-B, The Domain, Q2 Stadium, downtown, parks, a public pool, tennis and pickleball, and miles of trails through the surrounding greenbelt. Bike lanes out front connect you to an active, outdoor-friendly lifestyle.\nDoss Elementary and Murchison Middle are less than mile away, ideal for households wanting easy access to exemplary schools. A rare find, surrounded by some of the best neighbors you may ever have in one of Austin's premier zip codes.", + "features": [ + "Air Conditioning", + "Attached Garage", + "Breakfast Bar", + "Carpet Floors", + "Ceiling Fan", + "Central AC", + "Central Heating", + "Chandeliers", + "Common Outdoor Space", + "Cooktop", + "Covered Parking", + "Dishwasher", + "Disposal", + "Driveway", + "Electric Dryer Hookup", + "Electric Oven", + "Fireplace", + "Garage", + "Garden Views", + "Hardwood Floors", + "High Ceilings", + "Hot Water Heating", + "Laundry in Building", + "Microwave", + "Parking Included", + "Patio", + "Playground", + "Porch", + "Private Outdoor Space", + "Private Yard", + "Range Hood", + "Recessed Lighting", + "Tile Floors", + "Walk-in Closet", + "Washer / Dryer in Unit", + "Washer Hookup", + "Wooden Area Views" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "2335045", + "Days on Market": "5", + "Taxes": "$20,723 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1969", + "Lot Size": "0.30 AC / 13,028 SF", + "County": "Travis County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision Name": "Northwest Hills Mesa Oaks Ph", + "Waterfront": "No", + "Waterfront Description": "None", + "Water Access Description": "Public", + "View": "Neighborhood, Trees/Woods", + "View YN": "Yes", + "Parcel Number": "01420415010000", + "Tax Lot": "1", + "Tax Block": "B", + "Elementary School": "Doss (Austin ISD)", + "Elementary School District": "Austin ISD", + "Middle Or Junior School": "Murchison", + "Middle Or Junior School District": "Austin ISD", + "Senior High School": "Anderson", + "High School District": "Austin ISD", + "Levels": "One", + "Master on Main": "Yes", + "Main Level Bedrooms": "4", + "Num Living": "2", + "Living Area Source": "PublicRecords", + "Year Built Source": "PublicRecords", + "Property Condition": "Updated Remodeled", + "Pool Private": "No", + "Pool Features": "None" + }, + "agent": { + "name": "Joe Keenan", + "email": "joe.keenan@compass.com", + "telephone": "5124157653" + } + }, + "2100307535628420929": { + "listing_id": "2100307535628420929", + "source_url": "https://www.compass.com/homedetails/4614-Jinx-Ave-Austin-TX-78745/1FC35I_pid/", + "retrieved_at": "2026-09-06T04:10:44.783304+00:00", + "html_sha256": "fcd52a525cd6f63a49b539461b412035c02ddea107c86084301fca0867e52d74", + "price": 560000, + "address": "4614 Jinx Avenue", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78745", + "neighborhood": "South Manchaca", + "latitude": 30.2199331, + "longitude": -97.7817219, + "beds": 3, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1975, + "property_type": "Single Family", + "year_built": 1966, + "mls_number": "7055787", + "status_text": "Active", + "days_on_market": 93, + "listed_at_ms": 1780549200000, + "description": "Welcome to 78745, one of South Austin's most desirable zip codes on one of the best streets in the neighborhood, close to schools and shopping yet secluded with a welcoming vibe. Built in 1966, this 3-bedroom, 2-bath home (1,975 sq ft) is pure old Austin, lived-in, creative, and full of potential.\nThe bright eat-in kitchen features custom built-in shelving that keeps things organized and has a ton of character, from here you flow into a spacious living room with backyard views. The third bedroom is a light-drenched space that's served as an art studio, with its own exterior access and a connection to a wood workshop/office, perfect as a creative compound, or reimagine it as a primary suite with a third bath, guest quarters, or home office.\nNew roof (June 2026). Priced below appraised value of $600k", + "features": [ + "Air Conditioning", + "Carpet Floors", + "Central AC", + "Central Heating", + "Concrete Floors", + "Disposal", + "Hardwood Floors", + "Laundry in Building", + "Off-Street Parking", + "Parking Included", + "Range", + "Refrigerator", + "Vinyl Floors" + ], + "property_facts": { + "Status": "Active", + "MLS #": "7055787", + "Days on Market": "93", + "Taxes": "$10,538 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1966", + "Lot Size": "0.18 AC / 8,041 SF", + "County": "Travis County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision Name": "Greenwood Forest Sec 02", + "Waterfront": "No", + "Waterfront Description": "None", + "Water Access Description": "Public", + "View": "None", + "View YN": "No", + "Parcel Number": "04121007010000", + "Tax Lot": "8", + "Tax Block": "F", + "Elementary School": "St Elmo", + "Elementary School District": "Austin ISD", + "Middle Or Junior School": "Bedichek", + "Middle Or Junior School District": "Austin ISD", + "Senior High School": "Travis", + "High School District": "Austin ISD", + "Levels": "One", + "Master on Main": "No", + "Main Level Bedrooms": "3", + "Num Living": "1", + "Living Area Source": "PublicRecords", + "Year Built Source": "PublicRecords", + "Property Condition": "Resale", + "Pool Private": "No", + "Pool Features": "None" + }, + "agent": { + "name": "Nanette Labastida", + "email": "nanette.labastida@compass.com", + "telephone": "5129656339" + } + }, + "2100310813146184641": { + "listing_id": "2100310813146184641", + "source_url": "https://www.compass.com/homedetails/2410-Abbot-Kinney-Blvd-Venice-CA-90291/1JU6Z6_pid/", + "retrieved_at": "2026-09-06T04:12:12.014021+00:00", + "html_sha256": "c6908bfb5302cc84c7a3594281bc600ec1f4bc07b427cd520a0439d9d2b60d21", + "price": 2700, + "address": "2410 Abbot Kinney Boulevard", + "unit": "", + "city": "Venice", + "state": "CA", + "zip": "90291", + "neighborhood": "Venice", + "latitude": 33.9883457, + "longitude": -118.4572394, + "beds": 1, + "baths_full": 0, + "baths_half": 0, + "baths_total": 0.75, + "sqft": null, + "property_type": "Rental", + "year_built": null, + "mls_number": "26827465", + "status_text": "Sold", + "days_on_market": 34, + "listed_at_ms": 1778137200000, + "description": "Location! Location! 1 Bed, 1 Bath on the quiet residential section of Abbot Kinney between Venice and Washington. The building is peaceful, gated triplex that feels more like a home than an apartment. Enjoy the greenery, light and privacy only minutes to Venice beach, shopping on Abbot Kinney, Windward Ave, Lincoln Blvd, numerous restaurants and Erewhon. This light and bright apartment features hardwood floors, a full kitchen with quartz countertops, a small dining area and a full bath. The kitchen door opens onto a side yard walkway providing easy storage for your bikes and boards. The outside area features your own outdoor dining space plus a larger shared patio in the back. The unit includes a convenient shared laundry area and 1 parking space. Most pets OK.", + "features": [ + "Washer / Dryer in Unit", + "Laundry in Building", + "Pet Friendly", + "Unfurnished", + "Parking Included" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "26827465", + "Days on Market": "34", + "Pet Policy": "Allowed", + "Lease Term": "Lease Length: None", + "Furnished": "Unfurnished", + "Property Type": "Rental", + "MLS Type": "Residential Lease / Apartment", + "Lot Size": "0.11 AC / 4,946 SF", + "County": "Los Angeles County" + }, + "regional_facts": { + "Style": "Modern", + "Cross Streets": "Abbot Kinney & Woodlawn", + "Property Attached YN": "true", + "Parcel Number": "UNAVAILABLE", + "Total Units": "3.0", + "Area": "Venice (C11)", + "Single Family Or Apt": "Condo/Apt", + "Lot Size Area": "4946", + "Source Lot Size Area": "Assessor", + "Assessor Parcel Number": "UNAVAILABLE", + "Directions": "From Venice Blvd, turn South onto Abbot Kinney Blvd." + }, + "agent": { + "name": "Janin Paine", + "email": "janin.paine@compass.com", + "telephone": "3105605088" + } + }, + "2100314198570186201": { + "listing_id": "2100314198570186201", + "source_url": "https://www.compass.com/homedetails/60-Commonwealth-Ave-Unit-7-Boston-MA-02116/1BZP1X_pid/", + "retrieved_at": "2026-09-06T04:11:08.387022+00:00", + "html_sha256": "9a0cfe1c2fab43539d72e181ef90bc78a5198321df34296e5309ff271e3605de", + "price": 2680000, + "address": "60 Commonwealth Avenue, Unit 7", + "unit": "7", + "city": "Boston", + "state": "MA", + "zip": "02116", + "neighborhood": "Back Bay", + "latitude": 42.35243699999999, + "longitude": -71.0744529, + "beds": 3, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1500, + "property_type": "Condo", + "year_built": 1867, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Rarely available sunny penthouse spanning the entire top floor of a professionally-managed building on the 2nd block of Comm Ave. Enjoy elegant details, traditional finishes & a spacious 3-bed 2-bath layout. The extra-high ceilings, central skylight, living room fireplace, & bay windows overlooking the Comm Ave Mall all add to the luxurious & timeless sophistication of this home. Additional amenities include in-unit laundry, a direct access parking space, and extra storage. Live in one of the city's most sought-after and convenient locations, 1 block from the Boston Public Garden, Newbury Street, and plenty of top restaurants & shops", + "features": [ + "Washer / Dryer in Unit", + "Dryer", + "Washer", + "Air Conditioning", + "Forced Air", + "Common Outdoor Space", + "Dishwasher", + "Fireplace", + "Built-Ins", + "Skylight", + "California Closet", + "Custom Closet", + "Steam Shower", + "Penthouse", + "Range", + "Refrigerator", + "Parking Included", + "Spa" + ], + "property_facts": { + "Status": "Coming Soon", + "Taxes": "$19,454 / year", + "HOA Fees": "$1,057 / month", + "Property Type": "Condo", + "MLS Type": "Condominium/Co-Op", + "Year Built": "1867", + "County": "Suffolk County" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "Back Bay", + "Area": "MA-Boston, MA-Boston-Back Bay", + "Open Parking Spaces": "1.00", + "Parking Spaces Total": "1" + }, + "agent": { + "name": "Siu Fu Lau", + "email": "siu.lau@compass.com", + "telephone": "6177559388" + } + }, + "2100340800888205793": { + "listing_id": "2100340800888205793", + "source_url": "https://www.compass.com/homedetails/Haight-St-San-Francisco-CA-94102/2100340800888205793_lid/", + "retrieved_at": "2026-09-06T04:13:40.337645+00:00", + "html_sha256": "7f4c59b4a049787e97460ce795e984bf4ce8c32797dc2b8c47746953131ef9c2", + "price": null, + "address": "Haight Street", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94102", + "neighborhood": "Hayes Valley", + "latitude": null, + "longitude": null, + "beds": 4, + "baths_full": 3, + "baths_half": 2, + "baths_total": 4, + "sqft": null, + "property_type": "", + "year_built": null, + "mls_number": "", + "status_text": "Canceled", + "days_on_market": null, + "listed_at_ms": null, + "description": "", + "features": [], + "property_facts": {}, + "regional_facts": {}, + "agent": null + }, + "2100342020893986929": { + "listing_id": "2100342020893986929", + "source_url": "https://www.compass.com/homedetails/8622-17th-Ave-NE-Seattle-WA-98115/1SH8LK_pid/", + "retrieved_at": "2026-09-06T04:14:04.608631+00:00", + "html_sha256": "3ee7f638a63bbd70f184b6f297f60300c67b33e1d9881149d2ed5e82bcb6861d", + "price": 802000, + "address": "8622 17th Avenue Northeast", + "unit": "", + "city": "Seattle", + "state": "WA", + "zip": "98115", + "neighborhood": "Maple Leaf", + "latitude": 47.6920037, + "longitude": -122.3092303, + "beds": 2, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 1830, + "property_type": "Single Family", + "year_built": 1939, + "mls_number": "2520151", + "status_text": "Sold", + "days_on_market": 6, + "listed_at_ms": 1778137200000, + "description": "Opportunity awaits in the heart of Maple Leaf! Situated on a large corner lot, this charming Cape Cod home offers endless potential to update, expand, or reimagine entirely. Original character remains intact with oak hardwood floors, coved ceilings, vintage tile, original trim and doors, plus a classic fireplace. Abundant natural light pours through oversized picture windows in the living and dining rooms, creating bright, welcoming spaces ready for your vision. The unfinished basement with excellent ceiling height offers additional possibilities, and the attached garage with driveway, provides convenient off-street parking. Ideally located on a quiet street just blocks to Maple Leaf Reservoir Park, Macrina Bakery & Café, restaurants, transit and light rail. Easy access to UW, Green Lake, Northgate, downtown Seattle and I-5. A rare opportunity in one of North Seattle’s most beloved neighborhoods!", + "features": [ + "Attached Garage", + "Basement", + "Carpet Floors", + "Ceramic Floors", + "Concrete Floors", + "Corner Lot", + "Driveway", + "Dryer", + "Fireplace", + "Forced Air", + "Garage", + "Hardwood Floors", + "Off-Street Parking", + "Refrigerator", + "Traditional", + "Vinyl Floors", + "Washer" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "2520151", + "Days on Market": "6", + "Cumulative Days on Market": "6", + "Taxes": "$7,533 / year", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "1939", + "Lot Size": "0.13 AC / 5,488 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Maple Leaf", + "School District": "Seattle", + "View": "Mountains, Territorial", + "Number of Assigned Spaces": "2", + "Total Covered Parking": "1", + "Offers Review Date": "05-13-2026", + "Entry Date": "05-07-2026", + "Energy Source": "Electric,Oil", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "Riley Sparling-Beckley", + "email": "riley.sparling-beckley@compass.com", + "telephone": "2067992851" + } + }, + "2100344984350719249": { + "listing_id": "2100344984350719249", + "source_url": "https://www.compass.com/homedetails/9823-Arrowsmith-Ave-S-Seattle-WA-98118/1RJ5AN_pid/", + "retrieved_at": "2026-09-06T04:14:05.413549+00:00", + "html_sha256": "b1e222a1c1ba97fc5809c2df83b293c576ca6de16581f8cdfae7e9aba1ba87d4", + "price": 925000, + "address": "9823 Arrowsmith Avenue South", + "unit": "", + "city": "Seattle", + "state": "WA", + "zip": "98118", + "neighborhood": "Rainier Beach", + "latitude": 47.5134823, + "longitude": -122.2529461, + "beds": 5, + "baths_full": 2, + "baths_half": null, + "baths_total": 2.75, + "sqft": 3060, + "property_type": "Single Family", + "year_built": 1907, + "mls_number": "2519407", + "status_text": "Sold", + "days_on_market": 5, + "listed_at_ms": 1778137200000, + "description": "Tucked into the quiet, private Lakeridge community with sweeping Lake Washington views, this 1907 home offers the rare feeling of a city retreat with incredible flexibility. Morning light fills the home through large new windows, while the expansive entertaining deck frames treetops, water, and unforgettable sunrises. Thoughtful updates include a remodeled kitchen with quartz and butcher block counters, refreshed baths, new flooring, interior paint, LED lighting throughout, efficient heaters and new sliders. With 5 bedrooms, 3 baths, 3,060 SF, generous basement storage, ample off-street parking, and a private-entry ADU/mother-in-law suite with kitchenette and strong rental history, the home is designed to gather, host, work, or create income - just minutes from parks, trails, lake launches, cafés, and dining.", + "features": [ + "Air Conditioning", + "Basement", + "Dishwasher", + "Disposal", + "Driveway", + "Dryer", + "Fireplace", + "Hardwood Floors", + "Lake Views", + "Marble Floors", + "Microwave", + "Off-Street Parking", + "Refrigerator", + "Second Kitchen", + "Skylight", + "Walk-in Closet", + "Washer", + "Window AC Installed" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "2519407", + "Days on Market": "5", + "Cumulative Days on Market": "5", + "Taxes": "$9,149 / year", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "1907", + "Lot Size": "0.16 AC / 7,006 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Lakeridge", + "School District": "Seattle", + "View": "Lake", + "Number of Assigned Spaces": "5", + "Total Covered Parking": "0", + "Offers Review Date": "05-12-2026", + "Entry Date": "05-07-2026", + "Energy Source": "Electric", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "Tyler Davis Jones", + "email": "tylerdavisjones@compass.com", + "telephone": "2067071701" + } + }, + "2100386460878470569": { + "listing_id": "2100386460878470569", + "source_url": "https://www.compass.com/homedetails/2056-S-Lincoln-St-Denver-CO-80210/12YVRG_pid/", + "retrieved_at": "2026-09-06T04:11:43.914980+00:00", + "html_sha256": "562248f36cfc1343e6fafe1385c3aa2f5428bdc3808f6d30234faeb5479513c9", + "price": 685000, + "address": "2056 South Lincoln Street", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80210", + "neighborhood": "Platt Park", + "latitude": 39.6792446, + "longitude": -104.9860969, + "beds": 3, + "baths_full": 1, + "baths_half": 0, + "baths_total": 2, + "sqft": 1536, + "property_type": "Single Family", + "year_built": 1927, + "mls_number": "2821914", + "status_text": "Active", + "days_on_market": 121, + "listed_at_ms": 1778133600000, + "description": "Nestled in one of the most desirable neighborhoods, this beautifully updated home offers the perfect blend of modern comfort and unbeatable location. Just a short stroll from the vibrant Pearl Street, you'll have easy access to boutique shopping, top-notch dining, and lively entertainment. Prefer the outdoors? You're moments from serene parks and trails to enjoy Colorado’s natural beauty.\r\n\r\nInside, the home shines with thoughtful updates throughout. From the stylish, contemporary finishes to the functional layout, every detail has been designed to enhance your living experience. The light-filled living spaces invite relaxation, while the updated kitchen is a chef’s dream, perfect for whipping up meals after a day exploring the local hotspots.\r\n\r\nWhether you're savoring a morning coffee on the patio or heading out to enjoy the eclectic mix of nearby restaurants and cafes, this home is all about lifestyle. Don’t miss your chance to experience living at its finest, schedule your showing today!", + "features": [ + "Basement", + "Central AC", + "Dishwasher", + "Disposal", + "Forced Air", + "Garage", + "Microwave", + "Private Outdoor Space", + "Refrigerator" + ], + "property_facts": { + "Status": "Active", + "MLS #": "2821914", + "Days on Compass": "121", + "Taxes": "$2,704 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1927", + "Lot Size": "0.11 AC / 4,690 SF", + "County": "Denver County" + }, + "regional_facts": { + "Structure Type": "House", + "Architectural Style": "Level, Paved", + "Levels": "One", + "Subdivision Name": "Platte Park", + "Association": "No", + "Basement": "Yes" + }, + "agent": { + "name": "Maria Gallucci", + "email": "maria.gallucci@compass.com", + "telephone": "7203666050" + } + }, + "2100390728305882073": { + "listing_id": "2100390728305882073", + "source_url": "https://www.compass.com/homedetails/300-Virginia-St-Unit-1108-Seattle-WA-98101/27FF2V_pid/", + "retrieved_at": "2026-09-06T04:14:06.432669+00:00", + "html_sha256": "ac4490134fbb37d2316f28596f429bfe9cf805e06039b93d047062a4038721fd", + "price": 595000, + "address": "300 Virginia Street, Unit 1108", + "unit": "1108", + "city": "Seattle", + "state": "WA", + "zip": "98101", + "neighborhood": "Belltown", + "latitude": 47.6128082, + "longitude": -122.340875, + "beds": 1, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 548, + "property_type": "Condo", + "year_built": 2025, + "mls_number": "2520208", + "status_text": "Active", + "days_on_market": 121, + "listed_at_ms": 1778137200000, + "description": "First Light, designed by architect James KM Cheng and glass artist John Hogan is Westbank’s latest residential tower in Downtown Seattle. This South facing Urban 1 Bedroom Home offers an open, efficient layout, with a spacious balcony and one full bathroom. Floor-to-ceiling, triple-paned windows allow for spectacular views of Elliot Bay, and the Olympic Mountains. Each home features custom-designed interiors by the architect and includes custom B&B Italia cabinetry, light finishes with contrasting details, Kohler fixtures, Miele appliances, keyless entry and hardwoods throughout. Amenities include a 47th floor 25-meter rooftop sky pool & jacuzzies, a rooftop garden, fitness & wellness center, bike lounge, pet play area, spa & resident’s lounge", + "features": [ + "Air Conditioning", + "Central AC", + "City Views", + "Common Outdoor Space", + "Common Roof Deck", + "Communal Pool", + "Corner Lot", + "Dishwasher", + "Disposal", + "Dryer", + "Elevator", + "Forced Air", + "Garage", + "Gated Community", + "Gym", + "Microwave", + "Ocean Views", + "Pets Conditional", + "Refrigerator", + "Snow Removal Included", + "Walk-in Closet", + "Washer" + ], + "property_facts": { + "Status": "Active", + "MLS #": "2520208", + "Days on Market": "121", + "Cumulative Days on Market": "121", + "HOA Fees": "$600 / month", + "Property Type": "Condo", + "MLS Type": "Residential", + "Year Built": "2025", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Downtown", + "School District": "Seattle", + "View": "City, Mountains, Ocean, Sound, Territorial", + "Number of Assigned Spaces": "0", + "Entry Date": "05-07-2026", + "Energy Source": "Electric,Natural Gas" + }, + "agent": { + "name": "Doug Sonnenberg", + "email": "dougsonnenberg@compass.com", + "telephone": "8018242845" + } + }, + "2100401887998411753": { + "listing_id": "2100401887998411753", + "source_url": "https://www.compass.com/homedetails/1215-Brockton-Ave-Unit-203-Los-Angeles-CA-90025/1J0RA0_pid/", + "retrieved_at": "2026-09-06T04:12:13.536751+00:00", + "html_sha256": "2370994a6d4f176087c751f593ecc31f41f7d2be10a03db95b4a7752235b6cb3", + "price": 949000, + "address": "1215 Brockton Avenue, Unit 203", + "unit": "203", + "city": "Los Angeles", + "state": "CA", + "zip": "90025", + "neighborhood": "West Los Angeles", + "latitude": 34.0452613, + "longitude": -118.4649545, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1581, + "property_type": "Condo", + "year_built": 1982, + "mls_number": "26831277", + "status_text": "Active Under Contract", + "days_on_market": 112, + "listed_at_ms": 1778137200000, + "description": "Perfectly positioned in the heart of West LA, this 2 bed 2 bath single level home offers immediate access to a world of convenience. Yet the moment you cross the threshold, the vibrant energy of the outside fades away. This residence is your private sanctuary where timeless elegance, effortless comfort, and a hint of indulgence come together to craft an escape reminiscent of a Mediterranean getaway. Inside you'll find an expansive, light filled layout that truly feels like home. The living area with a cozy fireplace flows seamlessly to a private balcony perfect for morning coffee or sunset drinks. The exquisitely curated kitchen features premium stainless steel appliances, granite countertops and generous cabinet space, catering to everything from casual meals to dinner parties. The generously sized primary suite is thoughtfully designed boasting a large walk-in closet and a spa-like bath with separate shower and a relaxing soaking tub. The spacious second bedroom boasts an additional walk-in closet providing wonderful flexibility to become your ideal guest room, home office, or creative space. Modern convenience and peace of mind are built right in. A secure entryway, a smart Nest system and gated parking welcome you home with the added perk of city EV charging just outside the front door. Whenever you're ready to venture out, you'll love having the ultimate Westside lifestyle right at your doorstep. Spend your mornings grabbing coffee and brunch at Literati Cafe, Blu Jam, or Lazy Daisy, meet friends for evening drinks at local favorites like Thunderbird, Q's, and Auld Fella, and enjoy the sheer convenience of having both Whole Foods and Erewhon just moments away. Your ultimate Westside retreat is waiting for you.", + "features": [ + "Elevator", + "Garage", + "Assigned Parking", + "Washer / Dryer in Unit", + "Laundry in Building", + "Air Conditioning", + "Parking Included", + "Guest Parking", + "Pets Conditional", + "Lowrise", + "Unfurnished" + ], + "property_facts": { + "Status": "Active Under Contract", + "MLS #": "26831277", + "Days on Market": "112", + "HOA Fees": "$390 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1982", + "County": "Los Angeles County" + }, + "regional_facts": { + "Zoning": "LAR3", + "Style": "Contemporary", + "Association Fee Frequency": "Monthly", + "Property Attached YN": "true", + "Parcel Number": "4263005081", + "Total Units": "18.0", + "Living Area": "1581", + "Source Living Area": "Vendor Enhanced", + "Area": "West Los Angeles (WLA)", + "Lot Size Area": "16067", + "Source Lot Size Area": "Vendor Enhanced", + "Home owner Dues": "$390", + "HOA Fee Frequency 1": "Monthly", + "Assessor Parcel Number": "4263-005-081", + "Directions": "South of Wilshire, East of Bundy" + }, + "agent": { + "name": "Corina Angeles", + "email": "corina.angeles@compass.com", + "telephone": "3104398399" + } + }, + "2100437013713821513": { + "listing_id": "2100437013713821513", + "source_url": "https://www.compass.com/homedetails/3333-Wallingford-Ave-N-Unit-203-Seattle-WA-98103/1SQ92N_pid/", + "retrieved_at": "2026-09-06T04:14:10.814289+00:00", + "html_sha256": "c6aa406b06593f0809e1416640a8ca8f22667169cfd4d4cc51282410e1381402", + "price": 615000, + "address": "3333 Wallingford Avenue North, Unit 203", + "unit": "203", + "city": "Seattle", + "state": "WA", + "zip": "98103", + "neighborhood": "Wallingford", + "latitude": 47.64787459999999, + "longitude": -122.3371569, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1079, + "property_type": "Condo", + "year_built": 2005, + "mls_number": "2514909", + "status_text": "Sold", + "days_on_market": 27, + "listed_at_ms": 1778137200000, + "description": "Welcome to Tavona, a beautifully maintained community perfectly positioned just moments from the entrance to Gas Works Park and the best of the North Lake Union neighborhood. This spacious two-bedroom home offers a thoughtful, open layout with generous room sizes, great natural light, and a calm, private outlook. Inside, the living and dining areas flow easily together, creating a comfortable central gathering space with access to a covered balcony. The kitchen features an efficient layout with ample storage and workspace. Both bedrooms are well-proportioned, with the primary suite offering its own bath and walk-in closet. A large utility room provides excellent in-unit storage along with a newer stackable washer and dryer. Enjoy the beautifully landscaped inner courtyard - a quiet, residents-only oasis with no outside access - along with secure building entry and two reserved, covered parking spaces in the common garage. The community’s location places you close to parks, trails, dining, transit, and the vibrant energy of Wallingford and Fremont. A comfortable, well-designed home in an unbeatable location.", + "features": [ + "Carpet Floors", + "Ceramic Floors", + "Common Outdoor Space", + "Corner Lot", + "Dishwasher", + "Disposal", + "Dryer", + "Electric Dryer Hookup", + "Elevator", + "Garage", + "Gated Community", + "Laminate Floors", + "Microwave", + "Modern", + "Refrigerator", + "Security Gate", + "Vinyl Floors", + "Walk-in Closet", + "Wall Heaters", + "Washer", + "Washer / Dryer in Unit", + "Washer Hookup" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "2514909", + "Days on Market": "27", + "Cumulative Days on Market": "27", + "Taxes": "$5,807 / year", + "HOA Fees": "$809 / month", + "Property Type": "Condo", + "MLS Type": "Residential", + "Year Built": "2005", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Wallingford", + "School District": "Seattle", + "View": "Territorial", + "Number of Assigned Spaces": "2", + "Total Covered Parking": "2", + "Entry Date": "05-07-2026", + "Energy Source": "Electric" + }, + "agent": { + "name": "Lilian Bergsma", + "email": "lilian.bergsma@compass.com", + "telephone": "4259226855" + } + }, + "2100482077441763961": { + "listing_id": "2100482077441763961", + "source_url": "https://www.compass.com/homedetails/204-Smith-St-Unit-2R-Brooklyn-NY-11201/2087D8_pid/", + "retrieved_at": "2026-09-06T04:13:18.484811+00:00", + "html_sha256": "0667ecd6a1119c26d790ffc83afc511f358d4247247e5d8aef0b8fb02661aad6", + "price": 5300, + "address": "204 Smith Street, Unit 2R", + "unit": "2R", + "city": "Brooklyn", + "state": "NY", + "zip": "11201", + "neighborhood": "Cobble Hill", + "latitude": 40.6847296, + "longitude": -73.99201219999999, + "beds": 2, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": null, + "property_type": "Apartment", + "year_built": 1931, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 31, + "listed_at_ms": 1778208176005, + "description": "Step into this completely renovated two-bedroom residence located at 204 Smith Street! Meticulously designed, this home boasts contemporary features, an expansive layout, and a private outdoor area. As you enter, you’ll be welcomed by sprawling hardwood floors, adding a touch of sophistication. Oversized windows flood the rooms with natural light, creating a warm and inviting ambiance. The chef’s kitchen is a standout, featuring sleek stainless steel Haier appliances, including a convenient dishwasher and microwave. Premium counters, a stylish backsplash, contemporary matte black hardware, and a gooseneck sink complete the kitchen’s modern aesthetic. The bright living area provides access to a private terrace, offering an ideal space for relaxation or entertaining.\n\nThe residence includes a pristine, modern full bathroom with white subway tiling contrasting beautifully with industrial sconce lighting and matte black hardware. Additional features include mirrored vanity storage, a suspended sink with extra storage space, and a luxurious deep-soaking tub.\n\nSituated at 204 Smith Street, this home enjoys a prime location with various amenities nearby. Start your day with a visit to Blue Bottle Coffee, Starbucks, or Cobble Hill Coffeeshop—all just a short distance away. For dining options, neighborhood favorites such as Clover Club, Brooklyn Inn, Malai Ice Cream, and Court Street Bagels are easily accessible.\n\nConvenience is paramount, with the Bergen Street F/G subway trains just a block away, ensuring effortless commuting. Trader Joe’s is a few blocks away for convenient grocery shopping, and a leisurely trip will take you to the picturesque Brooklyn Bridge Park. Experience the epitome of modern urban living at 204 Smith Street!\n\nDisclosure of Fees:\n
Application Fee: $20/pp\nFirst Month's Rent
\nSecurity Deposit : 1 Month Rent
\nPet Rent: varies. (Note: Verified service and assistance animals are not considered pets and are not subject to pet rent, in accordance with fair housing law.)\n\nDISCLAIMER\nPlease be advised that Freestone Property Group, Landlord, and its affiliates, utilize exclusive brokers/agents in connection with all rentals of real property. Prospective renters, their brokers and/or agents understand that neither the landlord nor landlord's agents will charge or collect fees to a prospective renter in connection with this property except for administrative and/or application fees as permitted by law. Nor will landlord or Landlord's Agent assume responsibility for any brokerage fees incurred by a prospective renter in connection with this property. Any broker/agent who contacts management in connection with this listing, who is not the exclusive broker is not the landlord's broker/agent and will not be paid by landlord. This listing is being published to prospective renters. This listing may not be re-published without the express written consent of the landlord.\n\nEqual Housing Opportunity:\nListings and services are offered in compliance with the Fair Housing Act and the Equal Opportunity Act. We provide equal professional service to all, without regard to race, color, religion, sex, handicap, familial status, national origin, or other protected status, and support an environment where everyone is welcome and no one is excluded.", + "features": [ + "Private Terrace", + "Hardwood Floors", + "High Ceilings", + "Oversized Windows", + "Walk Up", + "Washer / Dryer in Unit", + "Dishwasher", + "Premium Counters", + "Chef's Kitchen", + "Voice Intercom", + "Contemporary", + "Lowrise" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "31", + "Rental Incentives": "No Fee", + "Available Date": "05/07/2026", + "Lease Term": "Lease Length: 12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "4.0", + "Property Type": "Apartment", + "MLS Type": "Apartment", + "Year Built": "1931", + "Lot Size": "1,600 SF / 20' x 80'", + "County": "Kings County" + }, + "regional_facts": {}, + "agent": { + "name": "David Chang", + "email": "dchang@compass.com", + "telephone": "9144201985" + } + }, + "2100484537790562329": { + "listing_id": "2100484537790562329", + "source_url": "https://www.compass.com/homedetails/590-Race-St-Denver-CO-80206/124VTN_pid/", + "retrieved_at": "2026-09-06T04:11:48.038690+00:00", + "html_sha256": "faaac7a8c32978a65e01190c66563a5b6db6d0c34172534a24f0804bfb43deee", + "price": 2375000, + "address": "590 Race Street", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80206", + "neighborhood": "Denver Country Club", + "latitude": 39.7254058, + "longitude": -104.9630256, + "beds": 5, + "baths_full": 3, + "baths_half": 1, + "baths_total": 5, + "sqft": 4093, + "property_type": "Single Family", + "year_built": 1937, + "mls_number": "8805651", + "status_text": "Closed", + "days_on_market": 54, + "listed_at_ms": 1778133600000, + "description": "Located in the Park Lane Square section of Denver's historic Country Club neighborhood, this grand Tudor-style home seamlessly blends original architectural charm w/ stunning design details & sophisticated updates for today's living. The home's exterior makes a commanding first impression w/ distinguished diamond-bond brickwork, a slate tile roof & substantial masonry walls surrounding the property. Inside, the recently renovated main floor is a masterpiece w/ an open kitchen that boasts a massive Belvedere quartzite island w/ bar seating, Wolf range w/ double-oven, built-in fridge, an impressive Venetian plaster range hood, a spacious walk-in pantry & an extensive bar area w/ glass-front cabinetry, bar sink, bar fridge & undercabinet lighting. The kitchen is open to a formal dining room that flows into a comfortable living room and features a cozy gas fireplace, designer lighting, crown molding & built-ins. A main-floor study with exposed brick & French doors offers the perfect work-from-home retreat. Upstairs, 3 spacious bedrooms are all complete w/ en-suite bathrooms. The primary has a comfortable spa-like 5-piece bathroom including a deep soaking tub, Euro-glass shower, undermount sinks & a generous walk-in closet. A dramatic spiral staircase in the central hall leads up to a finished 3rd level upgraded w/ a mini-split for year-round comfort & perfect for a 4th upstairs bedroom, family room or 2nd home office. The home's finished basement has a comfortable guest bedroom & wine room. Outside, the backyard is an urban oasis w/ beautiful mature trees, lush green lawn, a spacious heated swimming pool, relaxing hot tub, brick patio for alfresco dining & a covered entertainment area w/ included outdoor TV. An attached 2-car garage w/ storage attic provides plenty of space for vehicles & Colorado gear. Enjoy weekend walks down 7th Avenue & easy access to Cherry Creek, Cheesman Park & the Botanic Gardens. This home is truly move-in ready w/ no work to be done!", + "features": [ + "Attached Garage", + "Basement", + "Built-Ins", + "Carpet Floors", + "Central AC", + "Corner Lot", + "Deck", + "Dishwasher", + "Disposal", + "Double Oven", + "Dryer", + "Dual Pane Windows", + "Fireplace", + "Forced Air", + "Foyer", + "Garage", + "Pantry", + "Parking Included", + "Patio", + "Pool", + "Private Outdoor Space", + "Private Yard", + "Range", + "Range Hood", + "Refrigerator", + "Security System", + "Skylight", + "Tile Floors", + "Traditional", + "Tudor", + "Walk-in Closet", + "Washer", + "Wet Bar", + "Wine Cooler" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "8805651", + "Days on Compass": "54", + "Taxes": "$14,138 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1937", + "Lot Size": "0.22 AC / 9,560 SF", + "County": "Denver County" + }, + "regional_facts": { + "Structure Type": "House", + "Architectural Style": "Traditional, Tudor", + "Levels": "Three Or More", + "Subdivision Name": "Country Club", + "Association": "No", + "Multiple Associations": "No", + "Basement": "Yes" + }, + "agent": { + "name": "Leigh Wilbanks", + "email": "leigh.wilbanks@compass.com", + "telephone": "3038849166" + } + }, + "2100519969463620289": { + "listing_id": "2100519969463620289", + "source_url": "https://www.compass.com/homedetails/2415-20th-St-NW-Unit-38-Washington-DC-20009/1ULDJH_pid/", + "retrieved_at": "2026-09-06T04:14:19.541326+00:00", + "html_sha256": "44b64f837b15db2d1b54a89a41933db5d2dc7dda05968c1c5fc9fdc8a6a50ab0", + "price": 750000, + "address": "2415 20th Street Northwest, Unit 38", + "unit": "38", + "city": "Washington", + "state": "DC", + "zip": "20009", + "neighborhood": "Kalorama Triangle", + "latitude": 38.921641, + "longitude": -77.0466868, + "beds": 2, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 1224, + "property_type": "Condo", + "year_built": 1911, + "mls_number": "DCDC2260738", + "status_text": "Closed", + "days_on_market": 8, + "listed_at_ms": 1780545600000, + "description": "Penthouse Living in the Heart of Kalorama\nWelcome to Unit #38 at The Airy View—a stunning top-floor penthouse in this boutique Beaux Arts building that perfectly blends timeless 1912 architectural character with modern luxury. Nestled on a quiet, leafy stretch of 20th Street, this spacious 2-bedroom, 1-bathroom residence offers an elegant urban sanctuary in one of Washington, D.C.’s most coveted neighborhoods.\n\nThis home’s grand proportions stand out, boasting soaring 9-foot ceilings and gorgeous, gleaming hardwood floors that run throughout. The expansive living profile is defined by an incredible wall of windows, bathing the entire space in beautiful natural light while offering serene treetop and city views.\n\nThe living room boasts a rare, cozy wood-burning fireplace, walls of windows, and enough space to host a large gathering in the combined LR/DR. And then there is the spacious eat in kitchen for smaller informal meals.\n\nThis boutique condo also offers central AC and it's own high end front loading in unit Miele washer and dryer for ultimate convenience--a rare find in older buildings.\n\nOutside to the right of the building is a sweet shared garden space and if you have a green thumb (or not) you can grow vegetables, flowers or herbs, or just share with others.\n\nBuilt in 1911–1912, The Airy View is a classic Beaux-Arts style boutique building that exudes historic charm. Located in the peaceful enclaves of Kalorama, you are just steps away from the vibrant dining and cultural scenes of Dupont Circle and Adams Morgan, while maintaining a quiet, residential retreat to come home to.Less than one mile to METRO, in the Oyster School district. Bring your pets: this condo is very pet friendly!\n\nLittle known fact: The Airy View was used in the 1992 film A Few Good Men, starring Tom Cruise, Jack Nickolson and Demi Moore.\nAlso little known fact: the circular driveway was originally built for horses to drop off residents and guests at the front door, which is why the driveway is a wee bit narrow.", + "features": [ + "Dryer", + "Washer", + "Laundry in Building", + "Air Conditioning", + "Fireplace", + "Bike Room", + "Common Storage", + "Security Gate", + "Parking Included" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "DCDC2260738", + "Days on Market": "8", + "Pet Policy": "Allowed", + "Taxes": "$4,437 / year", + "Condo/Co-op Fees": "$639 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condo", + "Year Built": "1911", + "County": "District of Columbia", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Tax ID Number": "2545//2020", + "Ownership": "Condominium", + "Condo Coop Association": "Yes", + "HOA": "No", + "Entry Floor Number": "3", + "Structure Type": "Penthouse Unit/Flat/Apartment", + "Style": "Beaux Arts", + "Levels/Stories": "3", + "Furnished": "No", + "Unit Building Type": "Garden 1 - 4 Floors", + "Waterfront": "No", + "Views": "City", + "Garage": "No", + "Subdivision": "KALORAMA (WASHINGTON DC)", + "Building Name": "THE AIRY VIEW (WASHINGTON DC)", + "Legal Subdivision": "Kalorama", + "Washer/Dryer/Hook Up in Unit Y/N": "Yes", + "Central Air": "Yes", + "Basement": "No", + "Room Count": "4", + "Above Grade Finished SQFT": "1,224.00", + "Above Grade Fin SQFT Source": "Assessor", + "Below Grade Finished SQFT": ".00", + "Below Grade Fin SQFT Source": "Assessor", + "Below Grade Unfinished SQFT": ".00", + "Below Grade Unfin SQFT Source": "Assessor", + "Total Below Grade SQFT": ".00", + "Total Below Grade SQFT Source": "Assessor", + "New Construction": "No", + "Building Winterized Y/N": "Yes", + "Property Condition": "Excellent" + }, + "agent": { + "name": "Cheryl Kurss", + "email": "cheryl.kurss@compass.com", + "telephone": "3013466615" + } + }, + "2100796465066942449": { + "listing_id": "2100796465066942449", + "source_url": "https://www.compass.com/homedetails/5108-Eilers-Ave-Austin-TX-78751/1FB163_pid/", + "retrieved_at": "2026-09-06T04:10:42.672579+00:00", + "html_sha256": "e07c95759b902a3e7b4721df57874f09f695e23c309df668b696734ed015b966", + "price": 949500, + "address": "5108 Eilers Avenue", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78751", + "neighborhood": "North Loop", + "latitude": 30.3135147, + "longitude": -97.7170397, + "beds": 3, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1556, + "property_type": "Single Family", + "year_built": 2001, + "mls_number": "7226602", + "status_text": "Closed", + "days_on_market": 5, + "listed_at_ms": 1783573200000, + "description": "This home creates a feeling the moment you walk in! It has the charm and soul of the Hyde Park craftsman you've been craving, but with the ease and reliability of a newer build. No 1940's surprises, just timeless style and thoughtful updates that let you simply enjoy living here.\nInside, you'll find real pine hardwood floors throughout the main living areas, transom windows above each bedroom, and beautifully renovated bathrooms featuring custom vintage cabinetry as a thoughtful nod to the era that inspired the home. Every space blends character with everyday functionality. The layout lives beautifully, with a spacious kitchen, a full-sized interior laundry room, and generously sized closets throughout. These are the features that make a difference long after move-in day.\nOut back, the yard offers plenty of room to enjoy, while the screened porch becomes an extension of the home. It's the kind of space you'll use every day, whether it's slow mornings with coffee, afternoons reading, or evenings gathered with friends under the mature pecan trees.\nThe location ties it all together. This is the Hyde Park and North Loop lifestyle people are searching for. Start your morning with one of the best cappuccinos in town at Terrible Love or Tiny Grocer, wander the shelves at First Light Books, the neighborhood's community hub, meet friends at Foreign & Domestic or DrinkWell, grab a slice at Home Slice, and spend your weekends exploring the local shops that make this part of Austin so special.\nThen come home to a quiet, tree-lined street where neighbors wave, dogs get walked, and life feels just a little slower. It's rare to find a home that delivers this much character, this much comfort, and this kind of walkable Austin lifestyle all in one place.", + "features": [ + "Air Conditioning", + "Carpet Floors", + "Ceiling Fan", + "Central AC", + "Central Heating", + "Common Outdoor Space", + "Deck", + "Dishwasher", + "Disposal", + "Driveway", + "Dryer", + "Electric Oven", + "Fireplace", + "Gas Oven", + "Hardwood Floors", + "Internet Included", + "Laundry in Building", + "Off-Street Parking", + "Pantry", + "Porch", + "Private Outdoor Space", + "Private Yard", + "Range", + "Recessed Lighting", + "Refrigerator", + "Tile Floors", + "Walk-in Closet", + "Washer", + "Washer / Dryer in Unit", + "Wooden Area Views" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "7226602", + "Days on Market": "5", + "Taxes": "$13,195 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "2001", + "Lot Size": "0.14 AC / 6,272 SF", + "County": "Travis County", + "Compensation Remarks": "Seller is willing to pay buyer agent compensation based on the terms of the offer." + }, + "regional_facts": { + "Subdivision Name": "Highlands", + "Waterfront": "No", + "Waterfront Description": "None", + "Water Access Description": "Public", + "View": "Neighborhood, Trees/Woods", + "View YN": "Yes", + "Parcel Number": "02221103160000", + "Tax Lot": "23", + "Tax Block": "12", + "Elementary School": "Ridgetop", + "Elementary School District": "Austin ISD", + "Middle Or Junior School": "Lamar (Austin ISD)", + "Middle Or Junior School District": "Austin ISD", + "Senior High School": "McCallum", + "High School District": "Austin ISD", + "Levels": "One", + "Master on Main": "Yes", + "Main Level Bedrooms": "3", + "Num Living": "1", + "Living Area Source": "PublicRecords", + "Year Built Source": "PublicRecords", + "Property Condition": "Resale", + "Pool Private": "No", + "Pool Features": "None", + "Spa": "No", + "Spa Features": "None" + }, + "agent": { + "name": "Lisa Muñoz", + "email": "lisa.munoz@compass.com", + "telephone": "5128564549" + } + }, + "2100809739657962025": { + "listing_id": "2100809739657962025", + "source_url": "https://www.compass.com/homedetails/2712-S-5th-St-Unit-B-Austin-TX-78704/1GHUVR_pid/", + "retrieved_at": "2026-09-06T04:10:45.446446+00:00", + "html_sha256": "9a754d07f22c7e2fdf1f61f5cb578738ee5a6fb9c0d6b3e97bcb2af5e1ba8e72", + "price": 675000, + "address": "2712 South 5th Street, Unit B", + "unit": "B", + "city": "Austin", + "state": "TX", + "zip": "78704", + "neighborhood": "The Denizen 04", + "latitude": 30.23890987, + "longitude": -97.7668421, + "beds": 2, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 1797, + "property_type": "Condo", + "year_built": 2013, + "mls_number": "8316804", + "status_text": "Closed", + "days_on_market": 31, + "listed_at_ms": 1779858000000, + "description": "Located in the heart of Austin’s coveted 78704, this spacious modern condo offers the best of urban living with comfort, style, and convenience. The open floor plan, soaring ceilings, and abundant windows fill the home with natural light, creating a bright and airy atmosphere. Warm bamboo flooring flows throughout the entire house.\n\nThe oversized kitchen island serves as the perfect gathering place for entertaining, casual dining, or preparing gourmet meals, while the main level also features a convenient office nook and powder bath.\n\nUpstairs, the generously sized primary suite offers far more space than many newer builds, with ample room for a king-sized bed and additional furnishings. The ensuite bath features dual vanities, a soaking tub, walk-in shower, and spacious layout designed for everyday comfort. Step out onto the private balcony to enjoy your morning coffee overlooking the fenced yard shaded by mature trees.\n\nA secondary bedroom with its own ensuite bath includes a built-in Murphy bed, making the space ideal for guests, a home office, gym, or flexible everyday living.\n\nThe ground-floor storage room has been thoughtfully upgraded into a media room complete with a mini-split HVAC system, creating the ultimate space for movie nights and game-day viewing.\n\nAdditional highlights include a 2-car garage, one deeded uncovered parking space enabling parking for a total of 3 cars, rooftop solar panels that provide significant energy savings, and a recently replaced HVAC system (2026), smart fans, smart lighting, and a whole-home sound system. The living room TVs convey with the home.\n\nResidents of The Denizen enjoy exceptional community amenities including a resort-style pool, pool house, two dog parks, amphitheater, and community garden. HOA fees cover exterior insurance, trash, lawn service and maintenance of the amenities. Ideally located just minutes from South Lamar, South Congress, and downtown Austin, this location truly can’t be beat.", + "features": [ + "Air Conditioning", + "Attached Garage", + "Breakfast Bar", + "Central AC", + "Club House", + "Common Outdoor Space", + "Communal Pool", + "Dishwasher", + "Disposal", + "Dog Run/Park", + "Electric Heat", + "Garage", + "Hardwood Floors", + "Hot Water Heating", + "Microwave", + "Patio", + "Pool", + "Porch", + "Private Outdoor Space", + "Private Yard", + "Range", + "Tile Floors", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "8316804", + "Days on Market": "31", + "Taxes": "$9,472 / year", + "HOA Fees": "$736 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "2013", + "County": "Travis County" + }, + "regional_facts": { + "Subdivision Name": "The Denizen Condominiums", + "Waterfront": "No", + "Waterfront Description": "None", + "Water Access Description": "Public", + "View": "None", + "View YN": "No", + "Parcel Number": "04030511350000", + "Elementary School": "Dawson", + "Elementary School District": "Austin ISD", + "Middle Or Junior School": "Lively", + "Middle Or Junior School District": "Austin ISD", + "Senior High School": "Travis", + "High School District": "Austin ISD", + "Levels": "Three Or More", + "Master on Main": "No", + "Num Living": "1", + "Living Area Source": "Owner", + "Year Built Source": "PublicRecords", + "Property Condition": "Resale", + "Pool Private": "No", + "Pool Features": "None, Community", + "Spa": "No", + "Spa Features": "None", + "Lot Size Dimensions": "0" + }, + "agent": { + "name": "Miranda Molen", + "email": "miranda.molen@compass.com", + "telephone": "5129374781" + } + }, + "2100898745909489569": { + "listing_id": "2100898745909489569", + "source_url": "https://www.compass.com/homedetails/27-Parker-St-Unit-2-Charlestown-MA-02129/1YXMIF_pid/", + "retrieved_at": "2026-09-06T04:11:10.106724+00:00", + "html_sha256": "0c3a3e364a7a71587524184152ba3ac9e50ccc9bb16362d27ce0c0b011512f09", + "price": 780000, + "address": "27 Parker Street, Unit 2", + "unit": "2", + "city": "Boston", + "state": "MA", + "zip": "02129", + "neighborhood": "Charlestown", + "latitude": 42.3830489, + "longitude": -71.0794204, + "beds": 2, + "baths_full": 1, + "baths_half": 1, + "baths_total": 1.5, + "sqft": 1029, + "property_type": "Condo", + "year_built": 1890, + "mls_number": "73516586", + "status_text": "Sold", + "days_on_market": 36, + "listed_at_ms": 1778558400000, + "description": "Nestled on the border of Somerville and Charlestown, this charming 2-bedroom home with an additional office space is an urban gem. Featuring one full bath, one half bath, in-unit laundry, central AC, and a coveted off-street parking space, it perfectly blends comfort and convenience. Enjoy breathtaking Boston skyline views from your deck! Location is everything, and this home delivers. Just minutes away, you’ll find the vibrant Union Square, Broadway’s Restaurant Row, and Assembly Square’s shopping and dining. Prefer a neighborhood vibe? The Tavern at the End of the World is at the end of your street. Commuting is a breeze with Sullivan Station’s Orange Line and the East Somerville Green Line station nearby. Whether you're exploring downtown Boston or soaking up Somerville’s charm, this home puts you at the center of it all!", + "features": [ + "Washer / Dryer in Unit", + "Dryer", + "Washer", + "Air Conditioning", + "Forced Air", + "Off-Street Parking", + "Fence", + "Dishwasher", + "City Views", + "Range", + "Refrigerator", + "Gas Heat", + "Parking Included", + "Private Outdoor Space", + "Pet Friendly" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "73516586", + "Days on Market": "36", + "Taxes": "$5,172 / year", + "HOA Fees": "$180 / month", + "Property Type": "Condo", + "MLS Type": "Condominium/Co-Op / Condo", + "Year Built": "1890", + "County": "Suffolk County" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "Charlestown", + "Area": "MA-Boston-Charlestown, MA-Boston", + "Style": "2/3 Family", + "Garage Spaces": "0", + "Open Parking Spaces": "1.00", + "Parking Spaces Total": "1", + "Unit Placement": "Upper" + }, + "agent": { + "name": "Dana Schaefer", + "email": "dana.schaefer@compass.com", + "telephone": "6177975293" + } + }, + "2100902560301619993": { + "listing_id": "2100902560301619993", + "source_url": "https://www.compass.com/homedetails/313-President-St-Unit-2-Brooklyn-NY-11231/20Q662_pid/", + "retrieved_at": "2026-09-06T04:13:18.765767+00:00", + "html_sha256": "502fd15a585541a2fe1f139109c7b3e2726ecd89df99f557a49280acd4a64621", + "price": 18750, + "address": "313 President Street, Unit 2", + "unit": "2", + "city": "Brooklyn", + "state": "NY", + "zip": "11231", + "neighborhood": "Carroll Gardens", + "latitude": 40.6807403, + "longitude": -73.9934364, + "beds": 3, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 2112, + "property_type": "Rental", + "year_built": 1899, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 13, + "listed_at_ms": 1778258301500, + "description": "Merging historic landmark charm with a masterfully executed gut renovation, this expansive Carroll Gardens triplex offers a rare opportunity for full-immersion brownstone living. Designed with a warm, minimalist aesthetic, the home is anchored by wide-plank white oak floors and soaring ceilings that create an atmosphere of light and air across three meticulously finished levels.\n\nThe parlor floor serves as the heart of the home, featuring an open-concept layout defined by oversized front windows and floor-to-ceiling glass at the rear. The bespoke Henrybuilt kitchen is a culinary masterpiece, showcasing elegant oak trim and book-matched marble backsplashes. This chef-caliber space is fully equipped with a professional Wolf range, a Liebherr refrigerator, and a Bosch dishwasher, all centered around a substantial Paperstone-topped island that overlooks a beautifully restored marble mantle.\n\nThe second level is a versatile domain featuring two spacious bedrooms and a bright, modern bathroom. A large central playspace or media room offers exceptional utility, complete with floor-to-ceiling custom white oak storage cabinets that maintain the home's clean, architectural lines.\n\nThe entire top floor is dedicated to a serene primary sanctuary, where an original exposed brick wall runs the full length of the suite. The massive ensuite bathroom is a sun-drenched retreat, featuring a large skylight, a classic clawfoot tub, a double vanity, and an oversized glass-enclosed shower. An adjacent den or flex space provides the perfect footprint for a quiet home office, library, or nursery.\n\nLiving extends outdoors to a private oasis featuring a raised dining deck that leads directly down to a lush, landscaped backyard. Modern conveniences are integrated throughout, including multi-zone central heating and cooling, a full-sized washer and dryer, and thoughtful designer lighting.\n\nLocated in the highly sought-after heart of Carroll Gardens, this landmarked brownstone is surrounded by the neighborhood's iconic front gardens and tree-lined streets. You are steps away from celebrated local favorites including Frankies 457 Spuntino, Lucali, Buttermilk Channel, and the gourmet offerings of Union Market and Whole Foods. The F and G subway lines at Carroll Street are just a short stroll away, providing effortless access to Manhattan and the rest of Brooklyn.", + "features": [ + "Triplex", + "Primary Ensuite", + "Private Yard", + "Deck", + "Exposed Brick", + "Decorative Fireplace", + "Crown Mouldings", + "Built-Ins", + "Hardwood Floors", + "High Ceilings", + "Floor to Ceiling Windows", + "Oversized Windows", + "Walk Up", + "Washer / Dryer", + "Central AC", + "Dishwasher", + "Stainless Steel Appliances", + "Gas Oven", + "Total Renovation", + "Eat-in Kitchen", + "Windowed Kitchen", + "Open Kitchen", + "Double Sink Bathroom", + "Skylight", + "Soaking Tub", + "Gas Stove", + "Island Kitchen", + "Southwestern Exposure", + "Brownstone", + "Refrigerator", + "Range", + "Southeastern Exposure", + "Lowrise" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "13", + "Pet Policy": "Not Allowed", + "Rental Incentives": "No Fee", + "Available Date": "06/08/2026", + "Lease Term": "Lease Length: 12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "9.0", + "Property Type": "Rental", + "Year Built": "1899", + "County": "Kings County" + }, + "regional_facts": {}, + "agent": { + "name": "Yimin Ge", + "email": "yimin.ge@compass.com", + "telephone": "9179232607" + } + }, + "2100916574741655921": { + "listing_id": "2100916574741655921", + "source_url": "https://www.compass.com/homedetails/1440-N-St-NW-Unit-205-Washington-DC-20005/1TPJLK_pid/", + "retrieved_at": "2026-09-06T04:14:18.704788+00:00", + "html_sha256": "a3d11431c5046e0f6986c20bc04e1ffa092eedbdfe2f10eaac9c68b8865e3925", + "price": 199000, + "address": "1440 N Street Northwest, Unit 205", + "unit": "205", + "city": "Washington", + "state": "DC", + "zip": "20005", + "neighborhood": "Logan Circle", + "latitude": 38.9070531, + "longitude": -77.0332829, + "beds": 0, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 411, + "property_type": "Condo", + "year_built": 1964, + "mls_number": "DCDC2262112", + "status_text": "Active", + "days_on_market": 115, + "listed_at_ms": 1778731200000, + "description": "Incredible value under $200k in logan circle! (INVESTOR-FRIENDLY) Now priced at just $199,000, this bright and efficient studio in the highly sought-after Towne Terrace West building offers the ultimate affordable entry into one of DC's most vibrant neighborhoods. Perfect for a first-time buyer looking to stop paying rent, a pied-à-terre, or a savvy investor seeking a high-yield asset with strong rental demand. Why you'll love it:\n\nAll-Inclusive Living: The condo fee completely covers all utilities (gas, water, electricity, and A/C). Premium Building Perks: Enjoy a pristine rooftop community pool with panoramic city views, a 24-hour concierge front desk, secure entry, and laundry facilities in the building. Unbeatable Location: Boasting a near-perfect walk score, you are steps from the 14th Street Corridor, Whole Foods, elite dining (Le Diplomate), and multiple Metro lines (McPherson Sq & Dupont Circle). Convenience: On-site rental parking is available through the building, and the community is highly pet-friendly. At $199k, this is a rare, smart investment in the heart of the District. Why rent when you can own? Schedule your tour today! Financing note: recent Fannie Mae/Freddie Mac policy changes have eliminated the 50% investor-ownership restriction that previously limited financing options in buildings like this one — second-home and investment buyers now have a clear path to conventional financing. With stricter condo review rules taking effect August 3, 2026, buyers who act now may benefit from a smoother, faster financing process. Don't miss this rare combination of location, low-maintenance living, and immediate financing clarity.", + "features": [ + "Concierge", + "Common Roof Deck", + "Common Outdoor Space", + "Laundry in Building", + "Elevator", + "Air Conditioning", + "Garage", + "Common Storage", + "City Views", + "Assigned Parking", + "On-site Parking", + "Midrise", + "Laundry", + "Security System" + ], + "property_facts": { + "Status": "Active", + "MLS #": "DCDC2262112", + "Days on Market": "115", + "Pet Policy": "Allowed", + "Taxes": "$1,637 / year", + "Condo/Co-op Fees": "$664 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condo", + "Year Built": "1964", + "County": "District of Columbia" + }, + "regional_facts": { + "Tax ID Number": "0212//2229", + "Ownership": "Condominium", + "Condo Coop Association": "Yes", + "HOA": "No", + "Entry Floor Number": "2", + "Structure Type": "Unit/Flat/Apartment", + "Style": "Unit/Flat", + "Levels/Stories": "1", + "Unit Building Type": "Hi-Rise 9+ Floors", + "Waterfront": "No", + "Garage": "No", + "Subdivision": "OLD CITY #1 (WASHINGTON DC)", + "Building Name": "Old City 2 (WASHINGTON DC)", + "Legal Subdivision": "Old City 2", + "Washer/Dryer/Hook Up in Unit Y/N": "No", + "Central Air": "No", + "Basement": "No", + "Above Grade Finished SQFT": "411.00", + "Above Grade Fin SQFT Source": "Assessor", + "Below Grade Finished SQFT": ".00", + "Below Grade Fin SQFT Source": "Assessor", + "Below Grade Unfinished SQFT": ".00", + "Below Grade Unfin SQFT Source": "Assessor", + "Total Below Grade SQFT": ".00", + "Total Below Grade SQFT Source": "Assessor", + "New Construction": "No" + }, + "agent": { + "name": "Jeffrey S Bonilla", + "email": "jeffrey.bonilla@exprealty.com", + "telephone": "2403387019" + } + }, + "2100935784251144513": { + "listing_id": "2100935784251144513", + "source_url": "https://www.compass.com/homedetails/5075-Valentia-St-Denver-CO-80238/131VYP_pid/", + "retrieved_at": "2026-09-06T04:11:47.844726+00:00", + "html_sha256": "91b03c51fb1856236ef557682a87cab2c448d5b1996ea458aa11b4ad3c6e61dd", + "price": 875000, + "address": "5075 Valentia Street", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80238", + "neighborhood": "Central Park", + "latitude": 39.79121230000001, + "longitude": -104.8921896, + "beds": 4, + "baths_full": 2, + "baths_half": 0, + "baths_total": 4, + "sqft": 2953, + "property_type": "Townhouse", + "year_built": 2015, + "mls_number": "2389564", + "status_text": "Closed", + "days_on_market": 5, + "listed_at_ms": 1778738400000, + "description": "Exceptional upgrades and an unbeatable Conservatory Green location come together in this Parkwood Lexington corner townhome set on a quiet one-way street overlooking a charming greenbelt. This home stands apart w/ owned solar, a newer roof, solid hardwood floors across the entire main level & both staircases, a fully custom finished basement w/ wine cellar & infrared sauna, & a rare detached backyard office w/its own mini-split system—creating the perfect blend of luxury living, wellness, & work-from-home flexibility. Step inside to tall, impressive windows that flood the home w/ natural light. Decorative moldings, plantation shutters, and Parkwood’s signature craftsmanship create a home that feels refined and welcoming. The front living and dining spaces flow seamlessly together. The home opens into a beautifully upgraded chef’s kitchen designed for both everyday living and hosting. Gourmet built-in appliances, expansive quartz countertops, timeless white cabinetry, & generous storage space anchor the space. Upstairs, retreat to the luxurious primary suite with neighborhood views, a spa-inspired five-piece bathroom, and a custom-built closet with exceptional storage. Two additional bedrooms, a hall bathroom, and convenient laundry complete this level. The finished basement adds incredible versatility with an additional living room, custom built-ins, a fourth bedroom and bathroom, an office cove with a barn door and built-in-desk, a stunning wine cellar, and an included infrared sauna—creating a unique retreat for relaxation and entertaining. Outside, the custom-designed backyard offers multiple spaces for gathering and dining, along with a fully functional detached office shed with a mini-split system. Located next to a pocket park and close to trails, concerts on the green, the Denver Arts Festival, the neighborhood pool, restaurants, Northfield shops, DIA, Anschutz, downtown, Cherry Creek, & top-rated Central Park schools.", + "features": [ + "Basement", + "Built-Ins", + "Carpet Floors", + "Central AC", + "Common Outdoor Space", + "Communal Pool", + "Communal Tennis Court", + "Cooktop", + "Corner Lot", + "Dishwasher", + "Disposal", + "Dryer", + "Dual Pane Windows", + "Eat-in Kitchen", + "Electricity Included", + "Forced Air", + "Full Basement", + "Garage", + "Gas Heat", + "Gas Included", + "High Ceilings", + "Island Kitchen", + "Microwave", + "Mountain Views", + "Pantry", + "Parking Included", + "Pet Friendly", + "Playground", + "Private Outdoor Space", + "Private Yard", + "Range Hood", + "Refrigerator", + "Sauna", + "Tile Floors", + "Walk-in Closet", + "Washer", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "2389564", + "Days on Compass": "5", + "Taxes": "$5,978 / year", + "HOA Fees": "$696 / year", + "Property Type": "Townhouse", + "MLS Type": "Residential / Townhouse", + "Year Built": "2015", + "Lot Size": "0.07 AC / 2,900 SF", + "County": "Denver County" + }, + "regional_facts": { + "Structure Type": "Townhouse", + "Architectural Style": "Urban Contemporary", + "View": "Mountain(s)", + "Levels": "Two", + "Subdivision Name": "Central Park", + "Association": "Yes", + "Multiple Associations": "No", + "Basement": "Yes" + }, + "agent": { + "name": "Amanda Campbell", + "email": "Amanda@Focus-Brokers.com", + "telephone": "720-471-0116" + } + }, + "2100954713380043057": { + "listing_id": "2100954713380043057", + "source_url": "https://www.compass.com/homedetails/1967-Micheltorena-St-Los-Angeles-CA-90039/1L31EU_pid/", + "retrieved_at": "2026-09-06T04:12:14.971575+00:00", + "html_sha256": "50e0472685a70f926c66aa73d6f699e43fb6b702eed859e48957ac3724de36f0", + "price": 2700000, + "address": "1967 Micheltorena Street", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90039", + "neighborhood": "Silver Lake", + "latitude": 34.0964176, + "longitude": -118.2709802, + "beds": 4, + "baths_full": 4, + "baths_half": 0, + "baths_total": 4, + "sqft": 3267, + "property_type": "Single Family", + "year_built": 1937, + "mls_number": "26831495", + "status_text": "Sold", + "days_on_market": 31, + "listed_at_ms": 1778223600000, + "description": "Capture the essence of Silverlake living in this exceptional 1930's Spanish Colonial Revival located in the prestigious Moreno Highlands and the sought-after Ivanhoe Elementary district. Deeply private and defined by sweeping views, the property begins with an ornate wood entry door with speakeasy window leading to a beautifully landscaped courtyard. This authentic outdoor room features a lionhead fountain, beautiful tilework, and a mature lemon tree perfect for entertaining. The interior is a masterclass in architectural preservation, anchored by a breathtaking living room with original steel casement windows. These windows frame panoramic vistas of the Griffith Observatory, the Hollywood Sign, and the San Gabriel Mountains. Evenings are centered around a rare Batchelder fireplace with a relief-carved floral frieze and matching bookcase. Classic coved ceilings, picture rails, smooth plaster walls, and original oak hardwood floors preserve the home's historic integrity. The chef's kitchen serves as a modern transitional centerpiece, blending period charm with contemporary function. It features a skylight, blue Zia tile backsplash, stone countertops, a center island, stainless steel appliances and a built-in banquette. A formal dining room adds elegance, while a rear deck captures views of Century City and sensational Los Angeles sunsets. The versatile floor plan offers four bedrooms and four bathrooms across three levels. The main floor includes two bathrooms, one featuring striking 1930's poppy-motif decorative ceramic tile and butter-yellow floors. The upstairs level consists of two bedrooms, one with rich wood paneling and a cedar-lined closet, along with an additional daybed and a patio offering breathtaking 360-degree views. Downstairs provides two additional bedrooms with cedar-lined closets and bathrooms and laundry area, completing this hillside sanctuary.", + "features": [ + "Garage", + "Washer / Dryer in Unit", + "Laundry in Building", + "Air Conditioning", + "Private Outdoor Space", + "Unfurnished", + "Parking Included" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "26831495", + "Days on Market": "31", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1937", + "Lot Size": "0.10 AC / 4,338 SF", + "County": "Los Angeles County" + }, + "regional_facts": { + "Zoning": "LAR1", + "Style": "Spanish Colonial", + "Property Attached YN": "false", + "Parcel Number": "5431013024", + "Living Area": "3267", + "Source Living Area": "Vendor Enhanced", + "Area": "Silver Lake (671)", + "Lot Size Area": "4338", + "Source Lot Size Area": "Assessor", + "Assessor Parcel Number": "5431-013-024", + "Directions": "Sunset Blvd. to Micheltorena" + }, + "agent": { + "name": "Lorraine Getz", + "email": "lorraine.getz@compass.com", + "telephone": "3107662289" + } + }, + "2100977648564262489": { + "listing_id": "2100977648564262489", + "source_url": "https://www.compass.com/homedetails/4060-Glencoe-Ave-Unit-302-Marina-Del-Rey-CA-90292/1KJWBW_pid/", + "retrieved_at": "2026-09-06T04:12:15.762542+00:00", + "html_sha256": "f288691a8ab1a81dca6648446d4b4b6e8b820ac24c36e4496acf690a81efa937", + "price": 655000, + "address": "4060 Glencoe Avenue, Unit 302", + "unit": "302", + "city": "Marina del Rey", + "state": "CA", + "zip": "90292", + "neighborhood": "Marina del Rey", + "latitude": 33.9908509, + "longitude": -118.4427061, + "beds": 1, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 774, + "property_type": "Condo", + "year_built": 2004, + "mls_number": "26830789", + "status_text": "Sold", + "days_on_market": 23, + "listed_at_ms": 1778223600000, + "description": "Welcome to this rare top floor residence featuring dramatic vaulted ceilings, abundant natural light and a beautifully updated modern organic design. New wide plank flooring, designer lighting and an open concept layout create a seamless flow ideal for both everyday living and entertaining. Sliding glass doors open to a private deck creating an open and airy living area with an exceptional sense of space and warmth. The spacious bedroom suite features a large walk in closet and a spa inspired bathroom complete with a new vanity, and sleek contemporary finishes. The in unit laundry and ample storage space add unparalleled convenience. Oversized windows flood the residence with natural light throughout the day, creating a warm and inviting ambiance rarely found in a one bedroom residence. Del Rey Terrace offers resort style amenities including a heated pool and spa, fitness center, clubhouse, media room, package lockers, gated parking, secure bike storage and Earthquake insurance. Two side by side parking spaces include a dedicated EV charger. Ideally located in the heart of the vibrant Marina Del Rey Arts District. Moments away from water front dining, shopping and the very best of Westside living.", + "features": [ + "Elevator", + "Garage", + "Assigned Parking", + "Gym", + "Pool", + "Common Media / Recreation Room", + "Screening Room", + "Washer / Dryer in Unit", + "Air Conditioning", + "Guest Parking", + "Security Gate", + "Parking Included", + "Pets Conditional", + "Lowrise", + "Unfurnished", + "Security System" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "26830789", + "Days on Market": "23", + "Pet Policy": "Allowed", + "HOA Fees": "$659 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "2004", + "County": "Los Angeles County" + }, + "regional_facts": { + "Zoning": "LACM(GM)", + "Style": "Contemporary Mediterranean", + "Association Fee Frequency": "Monthly", + "Property Attached YN": "true", + "Parcel Number": "4230007097", + "Total Units": "96.0", + "Living Area": "774", + "Source Living Area": "Developer", + "Area": "Marina Del Rey (C12)", + "Lot Size Area": "59478", + "Source Lot Size Area": "Vendor Enhanced", + "Home owner Dues": "$659", + "HOA Fee Frequency 1": "Monthly", + "Assessor Parcel Number": "4230-007-097", + "Directions": "S of Washington N of Maxella" + }, + "agent": { + "name": "Julianne Renfro", + "email": "juli.pace@compass.com", + "telephone": "3108674380" + } + }, + "2100988736991838417": { + "listing_id": "2100988736991838417", + "source_url": "https://www.compass.com/homedetails/425-E-13th-St-Unit-6L-Manhattan-NY-10009/20DUEX_pid/", + "retrieved_at": "2026-09-06T04:13:18.253558+00:00", + "html_sha256": "091e1177a382bf51d37f71e17895ee452914d7234971bfc2a7462c85409ea36d", + "price": 6300, + "address": "425 East 13th Street, Unit 6L", + "unit": "6L", + "city": "Manhattan", + "state": "NY", + "zip": "10009", + "neighborhood": "East Village", + "latitude": 40.730371, + "longitude": -73.9818968, + "beds": 1, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": null, + "property_type": "Condo", + "year_built": 2008, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 9, + "listed_at_ms": 1778268574545, + "description": "Beautifully designed one-bedroom residence with a large private terrace at the full-service A Building in the East Village. The apartment is bright and thoughtfully laid out, featuring floor-to-ceiling south-facing windows, rich wood flooring, and an open living/dining area that flows directly onto the terrace with open city views.\n\nThe renovated Allmilmo kitchen is finished with white lacquer cabinetry, stone countertops, Bosch appliances, and an integrated Liebherr refrigerator. The home also includes a modern tiled bathroom and in-unit washer/dryer.\n\nThe A Building is a full-service condominium built in 2007 with a striking glass and terra cotta facade. Amenities include a 24-hour doorman and concierge, live-in superintendent, package room, landscaped courtyard, fitness center, and one of downtown’s best rooftop setups with a pool, cabanas, grilling area, and panoramic city views.\n\nLocated between First Avenue and Avenue A, moments from Tompkins Square Park, neighborhood restaurants, cafes, shopping, and multiple subway lines. Guarantors permitted. Sorry, no pets.\n\nAdditional storage cage available for $100/month.\n\nFirst month’s rent and a security deposit equal to one month’s rent are due at lease signing. Additional application fees are as follows:\nApplication Processing Fee: $600 (non-refundable)\nCredit Check Fee: $20 per additional applicant or occupant over 18 (non-refundable)\nMove-In Deposit: $1,500 (refundable)\nMove-In Fee: $250 (non-refundable)", + "features": [ + "Full-Time Doorman", + "Concierge", + "Balcony", + "Private Terrace", + "Common Roof Deck", + "Common Garden", + "Common Outdoor Space", + "Gym", + "Pool", + "Hardwood Floors", + "Elevator", + "Washer / Dryer in Unit", + "Laundry in Building", + "Wall Unit", + "Dishwasher", + "Open Kitchen", + "Southern Exposure", + "Bike Room", + "Private Storage For Rent", + "Midrise", + "Lowrise" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "9", + "Pet Policy": "Not Allowed", + "Rental Incentives": "No Fee", + "Available Date": "07/01/2026", + "Lease Term": "Lease Length: Negotiable,Renewal Option,12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "2.0", + "Property Type": "Condo", + "Year Built": "2008", + "County": "New York County" + }, + "regional_facts": {}, + "agent": { + "name": "Molly Cox", + "email": "molly.cox@compass.com", + "telephone": "2527028544" + } + }, + "2100991656814388401": { + "listing_id": "2100991656814388401", + "source_url": "https://www.compass.com/homedetails/4410-Raritan-St-Denver-CO-80211/128ZXX_pid/", + "retrieved_at": "2026-09-06T04:11:47.689129+00:00", + "html_sha256": "747d6a62591efd3610dcb3cfb0164c0571cd373ba4d6ce5a170634b14c5071ba", + "price": 440000, + "address": "4410 Raritan Street", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80211", + "neighborhood": "Sunnyside", + "latitude": 39.7768808, + "longitude": -105.0088291, + "beds": 2, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 758, + "property_type": "Single Family", + "year_built": 1946, + "mls_number": "4378736", + "status_text": "Active", + "days_on_market": 105, + "listed_at_ms": 1778220000000, + "description": "Classic Sunnyside starter home featuring 2 bedrooms, 1 bath, and the convenience of an attached garage. Situated on a generous, fenced lot, this home is a fantastic opportunity for those seeking a mix of character and value. A few key updates have been done, leaving just enough room for you to bring your own vision and make this Sunnyside gem your own.\r\nWith its prime location, you'll enjoy all the best that Denver has to offer, from the best restaurants and entertainment, near by parks and trails, to highways convenience and outdoor adventures. Downtown, LoHi, Berkeley, and Tennyson—all just minutes away.\r\nWhether you’re looking to settle in or invest and renovate, this property offers a foundation for creating something special.", + "features": [ + "Attached Garage", + "Central AC", + "Dishwasher", + "Dryer", + "Eat-in Kitchen", + "Garage", + "Gas Heat", + "Patio", + "Private Outdoor Space", + "Refrigerator", + "Tile Floors", + "Washer" + ], + "property_facts": { + "Status": "Active", + "MLS #": "4378736", + "Days on Compass": "105", + "Taxes": "$2,108 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1946", + "Lot Size": "0.16 AC / 6,760 SF", + "County": "Denver County" + }, + "regional_facts": { + "Structure Type": "House", + "Architectural Style": "Level, Paved, Eat-in Kitchen", + "Levels": "One", + "Subdivision Name": "Sunnyside", + "Association": "No", + "Basement": "No" + }, + "agent": { + "name": "Mary Hopson", + "email": "mary.hopson@compass.com", + "telephone": "8323879429" + } + }, + "2101012465402569633": { + "listing_id": "2101012465402569633", + "source_url": "https://www.compass.com/homedetails/3542-Greenwood-Ave-Los-Angeles-CA-90066/1KMPT9_pid/", + "retrieved_at": "2026-09-06T04:12:15.589645+00:00", + "html_sha256": "e247f7f117e1d14e0901ab82746541db85281972e040bc68596d7d2f7312af8e", + "price": 5495, + "address": "3542 Greenwood Avenue", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90066", + "neighborhood": "Mar Vista", + "latitude": 34.0049975, + "longitude": -118.4461339, + "beds": 2, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 1010, + "property_type": "Rental", + "year_built": 1947, + "mls_number": "26831623", + "status_text": "Sold", + "days_on_market": 7, + "listed_at_ms": 1778223600000, + "description": "This delightfully remodeled Mar Vista lease offers charm, comfort, and flexible living space, available immediately. Filled with natural light, the home features inviting living and dining areas with hardwood floors, a well-sized galley kitchen that opens to a side patio, and an expanded primary bedroom complete with a fireplace, rebuilt closet, and direct access to a spacious backyard deck and large grassy yard. A converted detached garage adds valuable versatility, making it ideal for a guest room, office, den, or gym. Charming, functional, and easy to show, this home is a standout lease opportunity.", + "features": [ + "Washer / Dryer in Unit", + "Air Conditioning", + "Pets Conditional", + "Parking Included", + "Unfurnished" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "26831623", + "Days on Market": "7", + "Lease Term": "Lease Length: 1+Year,Negotiable", + "Furnished": "Unfurnished", + "Property Type": "Rental", + "MLS Type": "Residential Lease", + "Year Built": "1947", + "Lot Size": "0.11 AC / 4,901 SF", + "County": "Los Angeles County" + }, + "regional_facts": { + "Zoning": "LAR1", + "Style": "Traditional", + "Property Attached YN": "false", + "Parcel Number": "4245006009", + "Living Area": "1010", + "Source Living Area": "Assessor", + "Area": "Palms - Mar Vista (C13)", + "Single Family Or Apt": "Single Family", + "Lot Size Area": "4901", + "Source Lot Size Area": "Assessor", + "Assessor Parcel Number": "4245-006-009", + "Directions": "South of Palms; West of Beethoven" + }, + "agent": { + "name": "Susan Stark", + "email": "susan.stark@compass.com", + "telephone": "3103457450" + } + }, + "2101027647331923921": { + "listing_id": "2101027647331923921", + "source_url": "https://www.compass.com/homedetails/480-NE-31st-St-Unit-PH5402-Miami-FL-33137/1DSOXY_pid/", + "retrieved_at": "2026-09-06T04:10:32.732645+00:00", + "html_sha256": "aa70d6eaba38439d227664f9183d038644116e75fb59665c1d3fcfb2423cb402", + "price": 4500000, + "address": "480 Northeast 31st Street, Unit PH5402", + "unit": "PH5402", + "city": "Miami", + "state": "FL", + "zip": "33137", + "neighborhood": "Paraiso Bay", + "latitude": 25.8061373, + "longitude": -80.1871886, + "beds": 3, + "baths_full": 4, + "baths_half": 1, + "baths_total": 4.5, + "sqft": 2112, + "property_type": "Condo", + "year_built": 2019, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Discover unparalleled luxury and design in the heart of Edgewater! This stunning two-story Upper Penthouse, furnished by acclaimed designer Piero Lissoni, offers 3 bedrooms, 4.5 baths, and a flexible upper-level TV room/library that can easily convert into a 4th bedroom. The highlight of this penthouse is the expansive, nearly 1,000-square-foot private rooftop terrace, complete with a pool, outdoor kitchen, and BBQ grill, perfect for entertaining or relaxing while enjoying breathtaking views of the city, bay, and ocean. As a resident, you’ll enjoy premier amenities like a cutting-edge fitness center, spa, tennis courts, and more.", + "features": [ + "Barbecue Area", + "Common Outdoor Space", + "Doorman", + "Elevator", + "Private Elevator", + "Garage", + "Gym", + "Pool", + "Steam Room", + "Sauna", + "Playroom", + "Resident's Lounge", + "Common Media / Recreation Room", + "Billiards Room", + "Golf Room", + "Screening Room", + "Putting Green", + "Heated Pool", + "Tennis Court", + "Game Room", + "Home Office", + "Library / Den", + "Central AC", + "Air Conditioning", + "Electric Heat", + "Dishwasher", + "Refrigerator", + "Double Sink Bathroom", + "Built-Ins", + "Wine Storage", + "Private Storage Included", + "Walk-in Closet", + "Primary Ensuite with Separate Shower", + "Primary Ensuite with Separate Tub", + "Spa", + "Valet Parking", + "Security Staff", + "Assigned Parking", + "Guest Parking", + "Security Gate", + "Highrise" + ], + "property_facts": { + "Status": "Coming Soon", + "Pet Policy": "Allowed", + "HOA Fees": "$3,129 / month", + "Property Type": "Condo", + "MLS Type": "Condo/Co-Op/Villa/Townhouse", + "Year Built": "2019", + "County": "Miami-Dade County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Waterfront": "Yes", + "Area": "32", + "Sq Ft Liv Area": "2112.0" + }, + "agent": { + "name": "Michael Martirena", + "email": "mike.martirena@compass.com", + "telephone": "3057021035" + } + }, + "2101033665973524889": { + "listing_id": "2101033665973524889", + "source_url": "https://www.compass.com/homedetails/4200-W-17th-Ave-Unit-614-Denver-CO-80204/12TGJ6_pid/", + "retrieved_at": "2026-09-06T04:11:48.014041+00:00", + "html_sha256": "f448c0c3d7f2b1b05b902531eb83e74e10e2f5943523361d78ca74262be8ef7c", + "price": 699000, + "address": "4200 West 17th Avenue, Unit 614", + "unit": "614", + "city": "Denver", + "state": "CO", + "zip": "80204", + "neighborhood": "West Colfax", + "latitude": 39.7436349, + "longitude": -105.0422713, + "beds": 1, + "baths_full": 1, + "baths_half": 1, + "baths_total": 2, + "sqft": 954, + "property_type": "Condo", + "year_built": 2017, + "mls_number": "2232123", + "status_text": "Active", + "days_on_market": 120, + "listed_at_ms": 1778220000000, + "description": "There’s something about waking up to the mountains that never gets old, especially when they’re framed by floor-to-ceiling windows and stretch endlessly beyond your living room. Perched on the 6th floor, this west-facing residence captures unobstructed panoramic views of the Front Range and Sloan’s Lake from nearly every room. For those who have been waiting for the right opportunity at Lakehouse, this is the one that stands apart. All the views, privacy, and lifestyle the building is known for, without the million-dollar price tag.\r\n\r\nInside, clean modern design meets warm, livable comfort. The open-concept layout keeps the views front and center, while the kitchen adds a sophisticated edge with sleek ItalKraft cabinetry, KitchenAid stainless steel appliances, quartz countertops, and a statement backsplash. The primary suite offers a private retreat with a walk-through custom California Closet and a spa-inspired five-piece bath featuring a soaking tub and glass-enclosed shower. Near the entry, a versatile den with an adjacent half bath offers flexibility for a home office, media lounge, or guest room.\r\n\r\nBut what truly sets this home apart is the lifestyle that comes with it. Lakehouse is one of Denver’s most sought-after condo communities, known for its design, location, and focus on everyday well-being. As Colorado’s first residential community certified Gold under the WELL Building Standard, wellness is thoughtfully woven into daily life. Residents enjoy a 70-foot year-round lap pool and hot tub, fitness center, yoga studio, dry sauna, urban garden, sports workshop, pet spa, guest suite, creative spaces, and a full calendar of resident events. Residents also enjoy exclusive perks from the building’s beloved ground-floor dining destinations including Cholon and Gusto. This is more than a condo, it’s the kind of home that quietly enhances the way you live.", + "features": [ + "Attached Garage", + "Balcony", + "Barbecue Area", + "Built-Ins", + "Business Center", + "Cable Included", + "Central AC", + "Common Outdoor Space", + "Communal Pool", + "Contemporary", + "Dishwasher", + "Disposal", + "Dryer", + "Dual Pane Windows", + "Eat-in Kitchen", + "Electricity Included", + "Elevator", + "Fireplace", + "Forced Air", + "Garage", + "Gas Included", + "Gym", + "Handicap Access", + "Heated Garage Parking", + "High Ceilings", + "Lake Front", + "Lake Views", + "Microwave", + "Mountain Views", + "Parking Included", + "Patio", + "Pet Friendly", + "Pets Conditional", + "Pool", + "Private Outdoor Space", + "Range", + "Range Hood", + "Refrigerator", + "Sauna", + "Security Included", + "Snow Removal Included", + "Spa", + "Tile Floors", + "Unfurnished", + "Walk-in Closet", + "Washer", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Active", + "MLS #": "2232123", + "Days on Compass": "120", + "Pet Policy": "Allowed", + "Taxes": "$5,066 / year", + "HOA Fees": "$10,668 / year", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "2017", + "County": "Denver County" + }, + "regional_facts": { + "Structure Type": "High Rise (8+)", + "Architectural Style": "Contemporary, Urban Contemporary", + "View": "Lake, Mountain(s)", + "Levels": "One", + "Subdivision Name": "Sloans Lake", + "Association": "Yes", + "Multiple Associations": "No", + "Basement": "No" + }, + "agent": { + "name": "Emily Craven", + "email": "emily.craven@compass.com", + "telephone": "3142230716" + } + }, + "2101050348435414025": { + "listing_id": "2101050348435414025", + "source_url": "https://www.compass.com/homedetails/3364-S-Elmira-Ct-Denver-CO-80231/12QL84_pid/", + "retrieved_at": "2026-09-06T04:11:54.435832+00:00", + "html_sha256": "71b037513285786a171fdc1c68da928b0ee9416d3ddceb6d95416807fe2cb666", + "price": 679950, + "address": "3364 South Elmira Court", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80231", + "neighborhood": "Hampden Heights", + "latitude": 39.6571147, + "longitude": -104.8723931, + "beds": 4, + "baths_full": 1, + "baths_half": 0, + "baths_total": 3, + "sqft": 2959, + "property_type": "Single Family", + "year_built": 1962, + "mls_number": "7531993", + "status_text": "Closed", + "days_on_market": 5, + "listed_at_ms": 1778824800000, + "description": "Do not miss this marvelous mid-century modern ranch in Hampden Heights, positioned on a quiet cul-de-sac one block from Cherry Creek Trail & High Line Canal trail access. This 4-bedroom 3 bath ranch w/2car garage is thoughtfully updated while maintaining the clean architectural lines & functional design of the original floor plan. Hardwood floors extend throughout the main level with tile baths & composite kitchen flooring. The screened & covered porch creates additional year-round living space overlooking the private backyard setting.\r\nRecent improvements include a new roof, gutters, gutter guards, driveway, exterior paint, shutters, front door with storm door, Dutch back door with screen door, garage door updated lighting throughout, & new carpet in bedroom & basement areas. The primary suite features an updated bath & shower along with custom closet systems & organized storage solutions.\r\nFinished basement offers flexible recreation and entertaining space with a distinctive mid-mod wet bar, sound-insulating panels, cedar closet, and substantial storage capacity. Additional storage is available in both the basement and garage. Convenient access to trails, parks, commuter routes, and daily amenities while tucked within an established residential enclave.", + "features": [ + "Attached Garage", + "Basement", + "Carpet Floors", + "Central AC", + "Dishwasher", + "Disposal", + "Electricity Included", + "Fireplace", + "Forced Air", + "Full Basement", + "Garage", + "Gas Included", + "Granite Kitchen Counter", + "Microwave", + "Private Outdoor Space", + "Private Yard", + "Range", + "Refrigerator", + "Tile Floors" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "7531993", + "Days on Compass": "5", + "Taxes": "$3,238 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1962", + "Lot Size": "0.23 AC / 10,000 SF", + "County": "Denver County" + }, + "regional_facts": { + "Structure Type": "House", + "Architectural Style": "Mid-Century Modern", + "Levels": "One", + "Subdivision Name": "Hampden Heights", + "Association": "No", + "Multiple Associations": "No", + "Basement": "Yes" + }, + "agent": { + "name": "Andi Strouse", + "email": "andi.strouse@compass.com", + "telephone": "3036677078" + } + }, + "2101088063918874001": { + "listing_id": "2101088063918874001", + "source_url": "https://www.compass.com/homedetails/2010-NE-54th-St-Seattle-WA-98105/1SKL8I_pid/", + "retrieved_at": "2026-09-06T04:14:08.257917+00:00", + "html_sha256": "ae2539f3812b77707277ba83d343f06e9cc6076a8b76c0fa51b118c93488639e", + "price": 915000, + "address": "2010 Northeast 54th Street", + "unit": "", + "city": "Seattle", + "state": "WA", + "zip": "98105", + "neighborhood": "University District", + "latitude": 47.6681378, + "longitude": -122.3059372, + "beds": 4, + "baths_full": 2, + "baths_half": 2, + "baths_total": 3, + "sqft": 1940, + "property_type": "Single Family", + "year_built": 1912, + "mls_number": "2518683", + "status_text": "Active", + "days_on_market": 120, + "listed_at_ms": 1778223600000, + "description": "Student housing potential or home renovation in an unbeatable location. Classic Ravenna craftsman, close to everything including everyone's favorite, Ravenna Park. Grab your favorite coffee on your morning walk at Seven Coffee Roasters. Easy access to UW, U Village, Burke-Gilman trail, downtown Seattle, and Eastside tech campuses. Set on a quiet, tree-lined street of classic craftsman's homes of the same era. This property offers timeless character and future potential with some vision and creativity. Features include an inviting 160 feet open, covered front porch, stained glass details, a charming dining room with coffered ceilings that add depth and elegance. Large living room with plenty of natural light, anchored by wood burning fireplace. Elegant main floor with good flow and newer kitchen design. Office on main floor with front facing window for natural light. 600 feet of basement space for bedroom, rec room and/ or storage. Additional full bathroom on lower level. Laundry and storage on lower level. Downstairs is also served by separate exterior entrance to side yard and sidewalk. Detached concrete garage with newer door, surprisingly large and accommodating. Buyer to verify oil tank status and fireplace/chimney condition. New roof and insulation 2025. Curb appeal and superior city location is calling! Fully functional detached garage fits owners older model SUV and is secured with white garage door.", + "features": [ + "Air Conditioning", + "Basement", + "Ceramic Floors", + "Dishwasher", + "Dryer", + "Fireplace", + "Forced Air", + "Garage", + "Hardwood Floors", + "Off-Street Parking", + "Refrigerator", + "Vinyl Floors", + "Walk-in Closet", + "Washer" + ], + "property_facts": { + "Status": "Active", + "MLS #": "2518683", + "Days on Market": "120", + "Cumulative Days on Market": "110", + "Taxes": "$10,200 / year", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "1912", + "Lot Size": "0.06 AC / 2,750 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Ravenna", + "School District": "Seattle", + "Number of Assigned Spaces": "1", + "Total Covered Parking": "1", + "Entry Date": "05-08-2026", + "Energy Source": "Natural Gas", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "Georgia Lee Stevens", + "email": "georgia@compass.com", + "telephone": "2069480431" + } + }, + "2101097044452224137": { + "listing_id": "2101097044452224137", + "source_url": "https://www.compass.com/homedetails/1900-N-Bayshore-Dr-Unit-4606-Miami-FL-33132/1CX9MC_pid/", + "retrieved_at": "2026-09-06T04:12:43.545980+00:00", + "html_sha256": "2ecaeb1f42f897a625898f19660595bcbce4460efa196d82b4c8d1bdd49d400b", + "price": 495000, + "address": "1900 North Bayshore Drive, Unit 4606", + "unit": "4606", + "city": "Miami", + "state": "FL", + "zip": "33132", + "neighborhood": "Quantum on the Bay", + "latitude": 25.7950425, + "longitude": -80.1871288, + "beds": 1, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 951, + "property_type": "Condo", + "year_built": 2008, + "mls_number": "A12017675", + "status_text": "Closed", + "days_on_market": 63, + "listed_at_ms": 1778558400000, + "description": "1 Bedroom + Den & 1 Full Bath. Beautiful high-floor residence with breathtaking bay and skyline views in one of Edgewater’s most desirable waterfront locations across from Margaret Pace Park. The Den/Flex space is ideal for use as a guest room, office, media room, or additional sleeping area. Unit includes installed privacy and blackout shades, 1 assigned parking space, a private storage unit, and the ability to obtain an additional parking space for a nominal monthly fee. Resort-style building amenities include multiple pools, fitness center, sauna, jacuzzi, valet, 24-hour front desk, and more.", + "features": [ + "Waterfront", + "Common Roof Deck", + "Barbecue Area", + "Common Outdoor Space", + "Concierge", + "Elevator", + "On-site Parking For Rent", + "Garage", + "Gym", + "Pool", + "Basketball Court", + "Resident's Lounge", + "Common Media / Recreation Room", + "Billiards Room", + "Tennis Court", + "Game Room", + "Air Conditioning", + "Hardwood Floors", + "Bike Room", + "Private Storage For Rent", + "Valet Parking", + "Bay Front", + "Parking Included", + "Pet Friendly", + "Assigned Parking", + "Common Hot Tub", + "Highrise" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "A12017675", + "Days on Market": "63", + "Pet Policy": "Allowed", + "Taxes": "$7,031 / year", + "HOA Fees": "$827 / month", + "Property Type": "Condo", + "MLS Type": "Condo/Co-Op/Villa/Townhouse / Condo", + "Year Built": "2008", + "County": "Miami-Dade County" + }, + "regional_facts": { + "Subdivision": "QUANTUM ON THE BAY CONDO", + "Complex Name": "QUANTUM ON THE BAY CONDO", + "Style": "Condo 5+ Stories", + "Waterfront": "Yes", + "Waterfront Description": "Bay Front", + "View": "Bay, Intracoastal View, Ocean View", + "Unit View": "Bay, Intracoastal View, Ocean View", + "Area": "32", + "Num Stories": "51", + "Sq Ft Total": "951", + "Sq Ft Liv Area": "951.0", + "AdjustedAreaSF": "951.0", + "Year Built Description": "Effective Year Built" + }, + "agent": { + "name": "BJ Posadas", + "email": "bj.posadas@compass.com", + "telephone": "9548169642" + } + }, + "2101104732955702129": { + "listing_id": "2101104732955702129", + "source_url": "https://www.compass.com/homedetails/143-W-4th-St-Unit-B2-Manhattan-NY-10012/20MSLK_pid/", + "retrieved_at": "2026-09-06T04:13:18.618476+00:00", + "html_sha256": "f859bfc9c8045d6de29b3a4a8fc7680f91dbf5a43458a84c8b85b01fc0cab9e1", + "price": 5300, + "address": "143 West 4th Street, Unit B2", + "unit": "B2", + "city": "Manhattan", + "state": "NY", + "zip": "10012", + "neighborhood": "Greenwich Village", + "latitude": 40.7315063, + "longitude": -74.00025029999999, + "beds": 2, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": null, + "property_type": "Rental", + "year_built": 1900, + "mls_number": "", + "status_text": "Application Pending", + "days_on_market": 6, + "listed_at_ms": 1778282402338, + "description": "Spacious two-bedroom on West 4th Street, right in the heart of Greenwich Village, steps from Washington Square Park. Both bedrooms fit queen-size beds. The apartment has an updated open kitchen with a granite counter, a combo washer-and-dryer unit, a breakfast bar, custom kitchen cabinets, 3 large closets, a storage area, new hardwood floors, and high ceilings. Located conveniently close to the West 4th Street trains. The building has a virtual doorman (Butterfly MX).", + "features": [ + "Hardwood Floors", + "Walk Up", + "Washer / Dryer", + "Washer / Dryer in Unit", + "Total Renovation", + "Midrise", + "Lowrise" + ], + "property_facts": { + "Status": "Application Pending", + "Days on Market": "6", + "Pet Policy": "Allowed", + "Rental Incentives": "No Fee", + "Available Date": "06/01/2026", + "Lease Term": "Lease Length: 12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "4.0", + "Property Type": "Rental", + "Year Built": "1900", + "County": "New York County" + }, + "regional_facts": {}, + "agent": { + "name": "Udi Eliasi", + "email": "udi@compass.com", + "telephone": "6463827378" + } + }, + "2101115485070589113": { + "listing_id": "2101115485070589113", + "source_url": "https://www.compass.com/homedetails/741-Silver-Lake-Blvd-Los-Angeles-CA-90026/27H0OJ_pid/", + "retrieved_at": "2026-09-06T04:12:16.845293+00:00", + "html_sha256": "8c31e98f3f284273f45be9acc1ae4d2a594a1360cdb822188c053b7a34c10797", + "price": 4200, + "address": "741 Silver Lake Boulevard", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90026", + "neighborhood": "Silver Lake", + "latitude": 34.08032, + "longitude": -118.27617, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1138, + "property_type": "Rental", + "year_built": 1936, + "mls_number": "26831743", + "status_text": "Sold", + "days_on_market": 8, + "listed_at_ms": 1778223600000, + "description": "Welcome to Vendome Six, an exclusive private gated community of just six architectural residences in the heart of Silver Lake. This new-construction property blends elevated modern design with striking large curved windows that flood each home with natural light. These beautifully designed 2-bedroom, 2-bathroom residences feature designer-done finishes, expansive private balconies, in-unit laundry, dishwasher, and sophisticated contemporary interiors throughout. Two tandem parking spaces with EV charging. Enjoy unbeatable walkability to some of Silver Lake's most beloved neighborhood destinations including Maury's, Cafe Tropical, Psychic Wines, Bodega Park, and Ohana Superette. Spend your mornings at nearby Bellevue Park or enjoy the scenic walking paths around the Silver Lake Reservoir. A rare opportunity to lease a design-forward residence in one of Los Angeles' most vibrant and walkable neighborhoods.", + "features": [ + "Assigned Parking", + "Washer / Dryer in Unit", + "Air Conditioning", + "Pets Conditional", + "Parking Included", + "Unfurnished" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "26831743", + "Days on Market": "8", + "Lease Term": "Lease Length: 1-Year", + "Furnished": "Unfurnished", + "Property Type": "Rental", + "MLS Type": "Residential Lease", + "Year Built": "1936", + "Lot Size": "0.14 AC / 6,144 SF", + "County": "Los Angeles County" + }, + "regional_facts": { + "Zoning": "LAR3", + "Style": "Architectural", + "Property Attached YN": "true", + "Parcel Number": "5401019028", + "Living Area": "1138", + "Source Living Area": "Developer", + "Area": "Silver Lake (671)", + "Single Family Or Apt": "Condo/Apt", + "Lot Size Area": "6144", + "Source Lot Size Area": "Vendor Enhanced", + "Assessor Parcel Number": "5401-019-028", + "Directions": "Vendome to Silver Lake Blvd." + }, + "agent": { + "name": "Summer Parker", + "email": "summer.parker@compass.com", + "telephone": "3107289710" + } + }, + "2101198770811457321": { + "listing_id": "2101198770811457321", + "source_url": "https://www.compass.com/homedetails/1325-N-Fuller-Ave-Unit-1-Los-Angeles-CA-90046/27H16A_pid/", + "retrieved_at": "2026-09-06T04:12:21.334849+00:00", + "html_sha256": "14a1b566721afe63be67cb56d6810348741f01ea30fd2f1cd8c5d425a09e8cc7", + "price": 2400, + "address": "1325 North Fuller Avenue, Unit 1", + "unit": "1", + "city": "Los Angeles", + "state": "CA", + "zip": "90046", + "neighborhood": "Hollywood", + "latitude": 34.095085, + "longitude": -118.349861, + "beds": 2, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 900, + "property_type": "Rental", + "year_built": 1968, + "mls_number": "26831817", + "status_text": "Sold", + "days_on_market": 18, + "listed_at_ms": 1778223600000, + "description": "Tucked into a gated and beautifully landscaped property just south of Sunset Blvd, this front facing renovated 2 bedroom, 1 bath home offers a rare blend of privacy, charm, and convenience in the heart of the Sunset Fairfax La Brea corridor. Surrounded by lush hedging and overlooking a serene private front yard, the space feels peaceful and hidden away while still moments from restaurants, nightlife, Runyon Canyon, Plummer Park, Ralphs, Hollywood Highland, and the Metro. Inside, the open layout features light floors, ample windows, fresh paint, and great natural light throughout. The updated kitchen includes quartz countertops and stainless steel appliances including a refrigerator, oven, microwave, and dishwasher. A standout feature is the incredible outdoor space with two large private balconies, including a front garden facing balcony and an additional side balcony perfect for relaxing or entertaining. Additional amenities include covered parking, central heat and air, shared laundry, and a pet friendly setting. One year lease. Security deposit equal to one month's rent. Good credit and verifiable income required, or California cosigner.", + "features": [ + "Laundry in Building", + "Air Conditioning", + "Pet Friendly", + "Parking Included", + "Unfurnished" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "26831817", + "Days on Market": "18", + "Pet Policy": "Allowed", + "Lease Term": "Lease Length: 1+Year", + "Furnished": "Unfurnished", + "Property Type": "Rental", + "MLS Type": "Residential Lease", + "Year Built": "1968", + "Lot Size": "0.15 AC / 6,653 SF", + "County": "Los Angeles County" + }, + "regional_facts": { + "Zoning": "LAR3", + "Style": "Traditional", + "Property Attached YN": "true", + "Parcel Number": "5550019023", + "Living Area": "900", + "Source Living Area": "Owner", + "Area": "Hollywood (C20)", + "Single Family Or Apt": "Condo/Apt", + "Lot Size Area": "6653", + "Source Lot Size Area": "Vendor Enhanced", + "Assessor Parcel Number": "5550-019-023", + "Directions": "South of Sunset Blvd. North of Fountain Ave. East of Fairfax Ave. West of N. La Brea Ave." + }, + "agent": { + "name": "Rodney Wittbrodt", + "email": "rodney.wittbrodt@compass.com", + "telephone": "3107954100" + } + }, + "2101206004601992545": { + "listing_id": "2101206004601992545", + "source_url": "https://www.compass.com/homedetails/2620-W-110th-Ave-Denver-CO-80234/1336D9_pid/", + "retrieved_at": "2026-09-06T04:11:54.562583+00:00", + "html_sha256": "78585ca4617842efaab96593853cedf7ba974f888fc69301c6d93bcd4ee455c9", + "price": 659000, + "address": "2620 West 110th Avenue", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80234", + "neighborhood": "Central Westminster", + "latitude": 39.8974994, + "longitude": -105.0198806, + "beds": 3, + "baths_full": 1, + "baths_half": 1, + "baths_total": 3, + "sqft": 2128, + "property_type": "Single Family", + "year_built": 1989, + "mls_number": "7891480", + "status_text": "Closed", + "days_on_market": 15, + "listed_at_ms": 1778652000000, + "description": "Welcome to your new home in the coveted Cedar Bridge neighborhood of Westminster. Tucked on a quiet cul-de-sac and backing directly to the trail that takes you to the nearby pond and playground, as well as endless biking and walking trails, this beautifully updated home offers over 2,000 finished square feet, 3 bedrooms, 3 bathrooms and a walkout basement room that can easily serve as a 4th bedroom, office or flex space. The outdoor spaces shine at this home. Upon arriving, you’ll notice the masterfully designed front porch with built-in lighting and drip irrigation for the planters, an ideal setting for enjoying the morning coffee or enjoying the summer evenings while watching life in the cul-de-sac. The spacious back deck and pergola with automatic timed lighting is perfect for entertaining and relaxing evenings outdoors. The backyard is serene with mature trees that provide enough privacy without interrupting the views. The living room features vaulted ceilings, ample natural light from the oversized windows and the built-in breakfast nook. The fully renovated kitchen boasts premium stainless-steel appliances including a Bosch dishwasher, GE Monogram induction cooktop, custom cabinetry, soft-close drawers, custom glass backsplash, hanging shelves and an enlarged window above the sink. The primary bedroom boasts a generous walk-in closet and mountain views. The family room connects seamlessly to the back deck through a new sliding glass door. The walk-out basement can serve as a 4th bedroom, home office or flex space. This home has been updated with modern light fixtures throughout, radon mitigation & vapor barrier, newer water heater, new carpet, electrical panel, new back fence, newer windows and freshly painted interior & exterior. Enjoy the amenities by having the swimming pool and clubhouse 1 block away. This large lot combines privacy, convenience and Colorado outdoor living. Schedule your showing today!", + "features": [ + "Attached Garage", + "Basement", + "Carpet Floors", + "Central AC", + "Common Outdoor Space", + "Communal Pool", + "Communal Tennis Court", + "Cooktop", + "Crawl Space", + "Deck", + "Dishwasher", + "Disposal", + "Dryer", + "Dual Pane Windows", + "Forced Air", + "Garage", + "High Ceilings", + "Mountain Views", + "Pantry", + "Partial Basement", + "Private Outdoor Space", + "Private Yard", + "Range Hood", + "Tile Floors", + "Walk-in Closet", + "Washer" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "7891480", + "Days on Compass": "15", + "Taxes": "$4,400 / year", + "HOA Fees": "$1,176 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1989", + "Lot Size": "0.19 AC / 8,400 SF", + "County": "Adams County" + }, + "regional_facts": { + "Structure Type": "House", + "Architectural Style": "House/Lot Faces SE, Pantry, Walk-In Closet(s)", + "View": "Mountain(s)", + "Levels": "Multi/Split", + "Subdivision Name": "Cedar Bridge", + "Association": "Yes", + "Multiple Associations": "Yes", + "Basement": "Yes" + }, + "agent": { + "name": "Robin Gerlach", + "email": "robin.gerlach@compass.com", + "telephone": "3039576397" + } + }, + "2101256232709041745": { + "listing_id": "2101256232709041745", + "source_url": "https://www.compass.com/homedetails/1335-Filbert-St-Unit-303-San-Francisco-CA-94109/1PALJH_pid/", + "retrieved_at": "2026-09-06T04:13:41.891269+00:00", + "html_sha256": "8cc354530a3a8ccfb682e51a0662a265d43c073343d0f854d826b66027b32350", + "price": 950000, + "address": "1335 Filbert Street, Unit 303", + "unit": "303", + "city": "San Francisco", + "state": "CA", + "zip": "94109", + "neighborhood": "Russian Hill", + "latitude": 37.7996192, + "longitude": -122.4215521, + "beds": 2, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 990, + "property_type": "Condo", + "year_built": 1924, + "mls_number": "426129428", + "status_text": "Closed", + "days_on_market": 20, + "listed_at_ms": 1779951600000, + "description": "Framed by views of the Golden Gate Bridge and sparkling city lights, 1335 Filbert Street #303 is a top-floor, beautifully updated Russian Hill view condominium! This home provides an exceptional walkable lifestyle, and is a perfect blend of classic San Francisco charm with modern design and updates. Top-floor and filled with natural light, the large living and dining areas flow seamlessly together, creating a comfortable setting for everyday living and entertaining, while large windows showcase iconic Golden Gate Bridge outlooks. The stylish kitchen features sleek European-style cabinetry, waterfall-edge peninsula seating, quartz countertops, and premium Bosch appliances including a vented cooktop, refrigerator, and dishwasher. A custom-built bookshelf-lined hallway adds architectural character while connecting the main living spaces. The home offers a well-appointed bedroom with lush green outlooks, plus a flexible office and second bedroom, ideal for working from home, flex room, or guest use. The spa-inspired bath features ceramic tile, floating vanity, frameless glass shower enclosure, and modern finishes. Complete with in-unit laundry closet and updated lighting. The building includes a shared patio, BBQ deck, and multiple lounging/sitting areas. Incredible, central location just half a block from Polk St dining, cafes, and neighborhood favorites, while also close to Aquatic Park, Ghirardelli Square, George Sterling Park, and Union and Chestnut Street hotspots. This prime Russian Hill location offers quintessential San Francisco living with exceptional convenience.", + "features": [ + "Barbecue Area", + "Bay Views", + "City Views", + "Common Garden", + "Dishwasher", + "Disposal", + "Garage", + "Laundry", + "Laundry in Building", + "Pet Friendly", + "Tennis Court", + "Voice Intercom" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "426129428", + "Days on Compass": "20", + "HOA Fees": "$810 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1924", + "County": "San Francisco County" + }, + "regional_facts": { + "Architectural Style": "Contemporary, Edwardian", + "View Description": "Bay, City, Golden Gate Bridge, San Francisco, Other", + "Cross Street": "Polk St." + }, + "agent": { + "name": "Aaron Bellings", + "email": "aaron.bellings@compass.com", + "telephone": "4156013000" + } + }, + "2101268525165965761": { + "listing_id": "2101268525165965761", + "source_url": "https://www.compass.com/homedetails/48-Gates-St-Unit-1-Boston-MA-02127/1ZHQ90_pid/", + "retrieved_at": "2026-09-06T04:11:08.073915+00:00", + "html_sha256": "b6255f5f94f94b1745948274138f9606e6281dc358e07f711ca0a2cd80cc1ed9", + "price": 970000, + "address": "48 Gates Street, Unit 1", + "unit": "1", + "city": "Boston", + "state": "MA", + "zip": "02127", + "neighborhood": "South Boston", + "latitude": 42.3322854, + "longitude": -71.0479893, + "beds": 2, + "baths_full": 1, + "baths_half": 1, + "baths_total": 1.5, + "sqft": 1112, + "property_type": "Townhouse", + "year_built": 1990, + "mls_number": "73517910", + "status_text": "Sold", + "days_on_market": 15, + "listed_at_ms": 1778644800000, + "description": "OH CANCELLED - OFFER ACCEPTED! Meticulously maintained and thoughtfully designed, this Thomas Park townhome lives like a single family. Bright and airy throughout, this 2 bed, 1.5 bath home features attached garage parking with a private entrance, central AC, private outdoor space and a new roof. The entry level offers an SUV-accommodating garage space, abundant storage, a mudroom, and in-unit washer/dryer. The second floor showcases an open-concept renovated kitchen, living, and dining area with a private deck, electric fireplace, renovated half bath, and sleek dry bar with pantry-style storage. Upstairs, the primary bedroom features vaulted ceilings with a skylight, a king-sized bed wall, double closets, and direct access to the updated full bath. The second bedroom comfortably fits a queen bed, dresser, and workspace, ideal for today’s flexible work-from-home lifestyle. All of this in an unbeatable location just moments from neighborhood favorites.", + "features": [ + "Washer / Dryer in Unit", + "Dryer", + "Washer", + "Laundry in Building", + "Air Conditioning", + "Forced Air", + "Garage", + "Common Outdoor Space", + "Dishwasher", + "Microwave", + "Disposal", + "Hardwood Floors", + "Range", + "Refrigerator", + "Freezer", + "Tennis Court", + "Private Outdoor Space", + "Marina", + "Gas Heat", + "Attached Garage", + "Parking Included" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "73517910", + "Days on Market": "15", + "Taxes": "$5,485 / year", + "HOA Fees": "$300 / month", + "Property Type": "Townhouse", + "MLS Type": "Condominium/Co-Op / Condo", + "Year Built": "1990", + "County": "Suffolk County" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "South Boston", + "Area": "MA-Boston-South Boston, MA-Boston", + "Style": "Townhouse", + "Garage Spaces": "1", + "Open Parking Spaces": ".00", + "Parking Spaces Total": "1", + "Unit Placement": "End" + }, + "agent": { + "name": "The Biega + Kilgore Team", + "email": "bkteam@compass.com", + "telephone": "617.504.7814" + } + }, + "2101271106214428489": { + "listing_id": "2101271106214428489", + "source_url": "https://www.compass.com/homedetails/3402-48th-Ave-SW-Seattle-WA-98116/1SXVD3_pid/", + "retrieved_at": "2026-09-06T04:14:09.091044+00:00", + "html_sha256": "cf7ee3a820a66e881d0ae5c5b8f0d2233f1c551e71233717fea5a3c9deb5c8cd", + "price": 925000, + "address": "3402 48th Avenue Southwest", + "unit": "", + "city": "Seattle", + "state": "WA", + "zip": "98116", + "neighborhood": "North Admiral", + "latitude": 47.5736728, + "longitude": -122.3931237, + "beds": 3, + "baths_full": 1, + "baths_half": null, + "baths_total": 1.75, + "sqft": 1660, + "property_type": "Single Family", + "year_built": 1950, + "mls_number": "2521028", + "status_text": "Sold", + "days_on_market": 46, + "listed_at_ms": 1778223600000, + "description": "Located in the peaceful Admiral community, this 3-bed, 1.75-bath newly renovated gem offers exceptional functionality in the heart of West Seattle. Situated on a corner lot, the property features a versatile layout features two bedrooms on the 1st level and a primary bedroom on the basement level. The modern interior is highlighted by ceramic tile and LVP flooring, and high-efficiency finishes, including insulated windows, operable skylights, and forced air heat. The chef-ready kitchen includes a suite of stainless steel appliances-refrigerator, dishwasher, microwave, and stove-staying with the home, along with a full-size washer and dryer. Perfectly located for outdoor enthusiasts, you are just moments from the iconic waterfront at Alki Beach and the lush trails of Schmitz Preserve Park.", + "features": [ + "Air Conditioning", + "Basement", + "Ceramic Floors", + "Corner Lot", + "Dishwasher", + "Disposal", + "Dryer", + "Forced Air", + "Laminate Floors", + "Microwave", + "Refrigerator", + "Washer" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "2521028", + "Days on Market": "46", + "Cumulative Days on Market": "46", + "Taxes": "$3,528 / year", + "HOA Fees": "$23 / month", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "1950", + "Lot Size": "0.08 AC / 3,484 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Admiral", + "School District": "Seattle", + "Number of Assigned Spaces": "0", + "Total Covered Parking": "0", + "Entry Date": "05-08-2026", + "Energy Source": "Electric,Natural Gas", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "Tyler Hopp", + "email": "tyler.hopp@compass.com", + "telephone": "2067698821" + } + }, + "2101488691888105137": { + "listing_id": "2101488691888105137", + "source_url": "https://www.compass.com/homedetails/4043-N-Damen-Ave-Unit-4-Chicago-IL-60618/1WP1DF_pid/", + "retrieved_at": "2026-09-06T04:11:22.812213+00:00", + "html_sha256": "8e839aa329e9ae54564648e7e49e93e835a788e12531df6f541869cce30a201f", + "price": 826000, + "address": "4043 North Damen Avenue, Unit 4", + "unit": "4", + "city": "Chicago", + "state": "IL", + "zip": "60618", + "neighborhood": "St. Ben's", + "latitude": 41.9555113, + "longitude": -87.6785163, + "beds": 3, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1939, + "property_type": "Condo", + "year_built": 2008, + "mls_number": "12643388", + "status_text": "Closed", + "days_on_market": 5, + "listed_at_ms": 1778734800000, + "description": "Welcome home to this stunning 2-level penthouse featuring 3 bedrooms + office/loft and 4 private outdoor spaces, including an impressive exclusive rooftop deck! The sun-drenched living and dining area boasts soaring ceilings, a gas fireplace, and flows seamlessly to a large front terrace-perfect for grilling and entertaining. The modern kitchen features newer stainless steel appliances, custom cabinetry, granite countertops, a built-in beverage fridge, and a breakfast bar. The primary suite offers a custom walk-in closet, private deck access, and a luxurious marble and stone bathroom with dual sinks, a separate steam shower, and a jacuzzi tub. Great-sized second and third bedrooms provide flexibility for guests, family, or additional work-from-home space. A second full bath features marble and stone finishes with a stand-up shower. Upstairs, you'll find a versatile loft/office area with a wet bar, cabinetry, and access to two additional private decks. The largest rooftop deck features composite decking and offers gorgeous views-perfect for entertaining or relaxing-while the smaller deck provides an ideal space for a garden. Freshly painted with hardwood floors throughout the main and second level, this home also features a new washer and dryer (2025) and a newer HVAC system (2021). One attached garage space is included and conveniently accessed through an interior stairwell. Ideally located near the Brown Line, bus routes, and the best shopping and dining in North Center, as well as top-rated Coonley School, parks, green space, and more!", + "features": [ + "Balcony", + "Deck", + "Common Roof Deck", + "Garage", + "Automatic Garage Door", + "Attached Parking", + "Washer / Dryer in Unit", + "Dryer", + "Washer", + "Central AC", + "Gas Heat", + "Dishwasher", + "Microwave", + "Stainless Steel Appliances", + "Disposal", + "Refrigerator", + "Fireplace", + "Wet Bar", + "Hardwood Floors", + "Forced Air", + "Range", + "Private Outdoor Space", + "Parking Included", + "Pet Friendly", + "Pets Conditional" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "12643388", + "Days on Market": "5", + "Pet Policy": "Allowed", + "Taxes": "$12,255 / year", + "HOA Fees": "$198 / month", + "Property Type": "Condo", + "MLS Type": "Attached Single / Condo", + "Year Built": "2008", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - North Center", + "Township": "Lake View", + "Ownership": "Condo", + "Num Of Garage Spaces": "1.0", + "Num Of Parking Spaces": "1.0", + "Parking Included in Price": "Yes", + "Air Conditioning Type": "Central Air", + "Num of Interior Fireplaces": "1", + "Heat/Fuel": "Natural Gas, Forced Air", + "Pets Allowed": "Yes" + }, + "agent": { + "name": "Meredith Pierson", + "email": "meredith.pierson@compass.com", + "telephone": "6308816741" + } + }, + "2101572006195730833": { + "listing_id": "2101572006195730833", + "source_url": "https://www.compass.com/homedetails/149-W-12th-St-Unit-66-Manhattan-NY-10011/20OWT3_pid/", + "retrieved_at": "2026-09-06T04:13:21.515423+00:00", + "html_sha256": "a19072952b93ceefb2958afac055e91cf30678af61e72b01001d321e32da646f", + "price": 5600, + "address": "149 West 12th Street, Unit 66", + "unit": "66", + "city": "Manhattan", + "state": "NY", + "zip": "10011", + "neighborhood": "West Village", + "latitude": 40.7368306, + "longitude": -73.9993215, + "beds": 1, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": null, + "property_type": "Rental", + "year_built": 1890, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 5, + "listed_at_ms": 1778338105667, + "description": "This renovated unit is located on the 6th floor of an elevator building in prime West Village. The apartment features custom closets, a renovated kitchen with a dishwasher, a sleek bathroom, and high-end custom lighting throughout. The bedroom view is picturesque with loads of natural light, tree lined views, and open sky! \n\nThe building offers the perfect combination of charm and convenience, including a virtual doorman, live-in super, rear garden, elevator, and on-site laundry facilities.\nConveniently located in one of the city’s most desirable neighborhoods, the apartment is surrounded by an array of shops, restaurants, parks, and cultural attractions. \n\nExcellent transportation options nearby, including multiple subway lines and bus routes, make commuting and exploring the city seamless.\n\nDon’t miss this opportunity to experience the best of West Village living. This is a co-op with a simple board package process. \n\nFees for renting this apartment after landlord approval include first months rent, a 1 month security deposit, a $500 application submission fee, $50 credit check fee per applicant and $280 move in fee. ", + "features": [ + "Common Garden", + "Common Outdoor Space", + "Hardwood Floors", + "Elevator", + "Laundry in Building", + "Dishwasher", + "Northern Exposure", + "Eastern Exposure", + "California Closet", + "Voice Intercom", + "Bike Room", + "Northeastern Exposure", + "Midrise", + "Lowrise" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "5", + "Pet Policy": "Allowed", + "Rental Incentives": "No Fee", + "Available Date": "07/01/2026", + "Lease Term": "Lease Length: 12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "3.0", + "Property Type": "Rental", + "Year Built": "1890", + "County": "New York County" + }, + "regional_facts": {}, + "agent": { + "name": "Phillip Salem", + "email": "phillipsalem@compass.com", + "telephone": "3306189688" + } + }, + "2101617930620201057": { + "listing_id": "2101617930620201057", + "source_url": "https://www.compass.com/homedetails/1428-C-St-SE-Washington-DC-20003/1TQI6B_pid/", + "retrieved_at": "2026-09-06T04:14:17.047981+00:00", + "html_sha256": "e7bcc1a4540fa9786baa39940816ed403ce08a49257c300b7ebc65e770747b9e", + "price": 1025000, + "address": "1428 C Street Southeast", + "unit": "", + "city": "Washington", + "state": "DC", + "zip": "20003", + "neighborhood": "Capitol Hill East", + "latitude": 38.8855391, + "longitude": -76.9845296, + "beds": 3, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 1638, + "property_type": "Townhouse", + "year_built": 1914, + "mls_number": "DCDC2260886", + "status_text": "Closed", + "days_on_market": 0, + "listed_at_ms": 1779163200000, + "description": "Fully renovated and brimming with charm, this Federal-style 3 BD/3.5 BA home offers modern luxury and versatility in one of the most sought-after Capitol Hill locations. The expansive hardscaped and landscaped rear lot, fenced and complete with parking—sets the stage for effortless entertaining or serene relaxation.\n\nStep inside to discover a large gourmet kitchen with a dining area, exposed brick accents, and skylights that fill the space with natural light. The flexible first floor features a bedroom (or use it as a den or office!) with an oversized en suite bath. Upstairs, two additional bedrooms each boast deluxe en suite bathrooms with dual vanities and spacious walk-in closets, ensuring comfort and privacy for all.\n\nWith a Walk Score of 81 and Bike Score of 91, this home is perfectly positioned for convenience. Stroll down the street to The Pretzel Bakery or enjoy being just blocks from Eastern Market, Trader Joe’s, Safeway, two Metro stations (Eastern Market & Potomac Ave), and all the vibrant culture, dining, and shopping Capitol Hill has to offer.", + "features": [ + "Air Conditioning", + "Fireplace" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "DCDC2260886", + "Days on Market": "0", + "Taxes": "$9,294 / year", + "Property Type": "Townhouse", + "MLS Type": "Residential Lease / Fee Simple", + "Year Built": "1914", + "Lot Size": "0.04 AC / 1,778 SF", + "County": "District of Columbia", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Tax ID Number": "1060//0085", + "Ownership": "Fee Simple", + "Condo Coop Association": "No", + "HOA": "No", + "Structure Type": "Interior Row/Townhouse", + "Style": "Federal", + "Levels/Stories": "2", + "Waterfront": "No", + "Garage": "No", + "Expected On Market Date": "05-20-2026", + "Subdivision": "CAPITOL HILL (WASHINGTON DC)", + "Legal Subdivision": "Old City 1", + "Total Parking Spaces": "1", + "Central Air": "Yes", + "Basement": "No", + "Above Grade Finished SQFT": "1,638.00", + "Above Grade Fin SQFT Source": "Assessor", + "Below Grade Finished SQFT": ".00", + "Below Grade Fin SQFT Source": "Assessor", + "Below Grade Unfinished SQFT": ".00", + "Below Grade Unfin SQFT Source": "Assessor", + "Total Below Grade SQFT": ".00", + "Total Below Grade SQFT Source": "Assessor", + "New Construction": "No", + "Property Condition": "Excellent" + }, + "agent": { + "name": "Jan Brito", + "email": "jan.brito@compass.com", + "telephone": "3016465774" + } + }, + "2101666954794416105": { + "listing_id": "2101666954794416105", + "source_url": "https://www.compass.com/homedetails/1239-Vermont-Ave-NW-Unit-709-Washington-DC-20005/1UPSCN_pid/", + "retrieved_at": "2026-09-06T04:14:21.052726+00:00", + "html_sha256": "e0267dba184f410984797bde99a28a8ae355fa046673794d399b11ac595b1748", + "price": 539000, + "address": "1239 Vermont Avenue Northwest, Unit 709", + "unit": "709", + "city": "Washington", + "state": "DC", + "zip": "20005", + "neighborhood": "Logan Circle", + "latitude": 38.90699559999999, + "longitude": -77.03068209999999, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 953, + "property_type": "Condo", + "year_built": 1964, + "mls_number": "DCDC2260758", + "status_text": "Closed", + "days_on_market": 40, + "listed_at_ms": 1779940800000, + "description": "Perfectly positioned in Logan Circle, this beautifully designed and fully renovated 2-bedroom, 2-bath residence at Crescent Tower delivers the ideal blend of style, comfort, and connected city living. Perched on a high floor with secure deeded parking included, Residence #709 is filled with exceptional natural light and thoughtfully designed spaces that feel both spacious and inviting.\n\nInside, hardwood floors, designer-selected finishes, curated wallpaper, and painted trim and doors create a polished, elevated atmosphere throughout. The renovated kitchen features stainless steel appliances, new quartz countertops, a custom mahogany frame detail, updated lighting, and an open layout that flows seamlessly into the living and dining areas—perfect for everyday living or hosting memorable parties with friends.\n\nThe spacious primary suite is privately tucked away and enjoys sunny southern exposures, city views, and a customized walk-in closet. French doors lead to a flexible second bedroom and den space, thoughtfully enhanced with a custom “cloffice,” making it ideal for working from home, welcoming overnight guests, or enjoying a dedicated fitness, or creative space.\n\nAdditional highlights include air conditioning, in-unit laundry, upgraded closets, a recently replaced dishwasher and refrigerator, and access to Crescent Tower’s sought-after amenities including a rooftop pool, fitness center, on-site management, and pet-friendly policies.\n\nBeyond the front door, enjoy one of Washington’s most vibrant and walkable neighborhoods. From acclaimed restaurants and neighborhood cafés to boutique shopping, cocktail bars, parks, and convenient Metro access, this location places the very best of DC just moments away. Whether walking or biking to work, meeting friends for dinner, or spending weekends exploring the city, 1239 Vermont Avenue NW #709 offers an exceptional opportunity to experience urban living at its finest. The condo fee includes all utilities and amenities.", + "features": [ + "Common Roof Deck", + "Washer / Dryer", + "Laundry in Building", + "Elevator", + "Air Conditioning", + "Gym", + "Pool", + "Basement", + "Parking Included", + "Security System" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "DCDC2260758", + "Days on Market": "40", + "Pet Policy": "Allowed", + "Taxes": "$2,584 / year", + "Condo/Co-op Fees": "$1,242 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condo", + "Year Built": "1964", + "County": "District of Columbia" + }, + "regional_facts": { + "Tax ID Number": "0245//2065", + "Ownership": "Condominium", + "Condo Coop Association": "Yes", + "HOA": "No", + "Entry Floor Number": "7", + "Structure Type": "Unit/Flat/Apartment", + "Style": "Contemporary", + "Levels/Stories": "1", + "Unit Building Type": "Hi-Rise 9+ Floors", + "Waterfront": "No", + "Views": "City", + "Garage": "No", + "Expected On Market Date": "05-28-2026", + "Subdivision": "LOGAN CIRCLE (WASHINGTON DC)", + "Building Name": "Old City 2 (WASHINGTON DC)", + "Legal Subdivision": "Old City 2", + "Total Parking Spaces": "1", + "Washer/Dryer/Hook Up in Unit Y/N": "Yes", + "Central Air": "Yes", + "Basement": "Yes", + "Above Grade Finished SQFT": "953.00", + "Above Grade Fin SQFT Source": "Estimated", + "Below Grade Finished SQFT": ".00", + "Below Grade Fin SQFT Source": "Assessor", + "Below Grade Unfinished SQFT": ".00", + "Below Grade Unfin SQFT Source": "Assessor", + "Total Below Grade SQFT": ".00", + "Total Below Grade SQFT Source": "Assessor", + "New Construction": "No", + "Property Condition": "Excellent" + }, + "agent": { + "name": "Todd Vassar", + "email": "todd@compass.com", + "telephone": "2023847405" + } + }, + "2101682324779622529": { + "listing_id": "2101682324779622529", + "source_url": "https://www.compass.com/homedetails/3245-45th-Ave-SW-Seattle-WA-98116/1RQ9JG_pid/", + "retrieved_at": "2026-09-06T04:14:10.063392+00:00", + "html_sha256": "16c3e8bf36899c410d69b742dea75873b493a174dcb93d81ebbcdb4e2ef013c6", + "price": 1350000, + "address": "3245 45th Avenue Southwest", + "unit": "", + "city": "Seattle", + "state": "WA", + "zip": "98116", + "neighborhood": "North Admiral", + "latitude": 47.574359, + "longitude": -122.3897049, + "beds": 4, + "baths_full": 1, + "baths_half": null, + "baths_total": 1.75, + "sqft": 2195, + "property_type": "Single Family", + "year_built": 1939, + "mls_number": "2520382", + "status_text": "Sold", + "days_on_market": 3, + "listed_at_ms": 1778310000000, + "description": "Built in 1939, this Cape Cod sits in the quiet residential pocket between North Admiral and Genesee, Set on a 6,500 sq. ft. lot one block from Madison Middle School, on 45th and a short walk to PCC Market and the surrounding neighborhood businesses, the house reflects the rhythm of the community around it: walkable, established, and deeply residential. Inside, the home has retained the original proportions and warmth of its era while incorporating the updates that matter most today — refinished hardwood floors, updated electrical and plumbing systems, fresh interior and exterior paint, and a light-filled great room and kitchen that open naturally toward the backyard. The outdoor space features raised organic garden beds, mature landscaping, wild strawberries, huckleberries, irrigation, and a proper fire pit. A big basement is ideal for movie nights, your little gym, or crafting haven. The long driveway accommodates three+ cars, and the detached garage with its original wood floor now functions best as storage, workshop, or as your gardening outpost. This sweet West Seattle home offers a tree lined neighborhood, proximity to schools, transit and daily essentials.", + "features": [ + "Cape Cod", + "Carpet Floors", + "Ceramic Floors", + "Concrete Floors", + "Dishwasher", + "Dryer", + "Fireplace", + "Forced Air", + "Garage", + "Hardwood Floors", + "Laminate Floors", + "Parking Included", + "Partial Basement", + "Refrigerator", + "Skylight", + "Walk-in Closet", + "Washer" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "2520382", + "Days on Market": "3", + "Cumulative Days on Market": "3", + "Taxes": "$11,154 / year", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "1939", + "Lot Size": "0.16 AC / 6,933 SF", + "County": "King County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Community Name": "Genesee", + "School District": "Seattle", + "View": "Territorial", + "Number of Assigned Spaces": "2", + "Total Covered Parking": "2", + "Entry Date": "05-09-2026", + "Energy Source": "Natural Gas", + "Sewer": "Sewer Connected" + }, + "agent": { + "name": "SUSI MUSI", + "email": "susi.musi@compass.com", + "telephone": "2062145468" + } + }, + "2101686777931183913": { + "listing_id": "2101686777931183913", + "source_url": "https://www.compass.com/homedetails/2252-W-Chicago-Ave-Unit-5S-Chicago-IL-60622/27H2RE_pid/", + "retrieved_at": "2026-09-06T04:11:26.957269+00:00", + "html_sha256": "99f130e12f1d7512ed0eb7575536c8a76d9671a13ec2fb09f67affe14d795aff", + "price": 965000, + "address": "2254 West Chicago Avenue, Unit 5S", + "unit": "5S", + "city": "Chicago", + "state": "IL", + "zip": "60622", + "neighborhood": "Ukrainian Village", + "latitude": 41.8960716653093, + "longitude": -87.6840318626738, + "beds": 3, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": null, + "property_type": "Condo", + "year_built": 2026, + "mls_number": "12643554", + "status_text": "Contingent ( Private )", + "days_on_market": 0, + "listed_at_ms": null, + "description": "Welcome to a truly rare PENTHOUSE opportunity in an eight-unit luxury boutique ELEVATOR building in the heart of Ukrainian Village. Set in the tallest building on the block, this exceptional three-bedroom, two-bath residence offers a one-of-a-kind private rooftop deck with unobstructed Chicago skyline views-an incredibly unique feature rarely available in this neighborhood.Designed on an extra-wide lot, the home offers an open, airy layout with elevated finishes throughout. The European custom kitchen is a showpiece, featuring sleek custom cabinetry, a large peninsula, premium appliances, dramatic quartz countertops, and curated designer lighting. The expansive living room is framed by floor-to-ceiling windows that fill the space with natural light and capture beautiful views of St. Olga and Volodymyr, along with the surrounding historic architecture. A private balcony extends the living space outdoors, creating an effortless indoor-outdoor connection. The elegant dining area is perfectly positioned for entertaining, while the primary suite offers a private retreat with a spa-inspired bath featuring bold veined designer tile, brass plumbing fixtures, a double floating vanity, statement lighting, and a generous walk-in closet. Two additional bedrooms and a beautifully appointed second bath are thoughtfully laid out for comfort and functionality. Surrounded by beloved coffee shops, destination restaurants, local boutiques, and iconic historic churches, this penthouse delivers luxury, privacy, and unforgettable views in one of Chicago's most vibrant neighborhoods. A very rare chance to own a premier penthouse with private rooftop space and sweeping skyline views in Ukrainian Village.", + "features": [ + "Garage", + "Automatic Garage Door", + "Attached Parking", + "Washer / Dryer in Unit", + "Pet Friendly" + ], + "property_facts": { + "Status": "Contingent ( Private )", + "MLS #": "12643554", + "Days on Market": "0", + "Pet Policy": "Allowed", + "Taxes": "$2,826 / year", + "Property Type": "Condo", + "MLS Type": "Attached Single / Condo", + "Year Built": "2026", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - West Town", + "Township": "West Chicago", + "Ownership": "Fee Simple", + "Num Of Garage Spaces": "1.0", + "Num Of Parking Spaces": "1.0", + "Pets Allowed": "Yes" + }, + "agent": { + "name": "Svitlana Creadon", + "email": "svitlana.creadon@compass.com", + "telephone": "7732259027" + } + }, + "2101797987477033161": { + "listing_id": "2101797987477033161", + "source_url": "https://www.compass.com/homedetails/1182-Clermont-St-Unit-1B-Denver-CO-80220/12UQQL_pid/", + "retrieved_at": "2026-09-06T04:11:57.265437+00:00", + "html_sha256": "64522f887f6cb33b14f155cdc2c82b952acd66eb101cbaa79e8b72b699c4114a", + "price": 150000, + "address": "1182 Clermont Street, Unit 1B", + "unit": "1B", + "city": "Denver", + "state": "CO", + "zip": "80220", + "neighborhood": "Bellevue Park", + "latitude": 39.7342945, + "longitude": -104.9348087, + "beds": 1, + "baths_full": 0, + "baths_half": 0, + "baths_total": 1, + "sqft": 454, + "property_type": "Condo", + "year_built": 1951, + "mls_number": "9167357", + "status_text": "Active", + "days_on_market": 115, + "listed_at_ms": 1778652000000, + "description": "Hale Neighborhood Condo | Incredible Value with Utilities Included!\r\n\r\nPerfectly positioned in the heart of Denver's desirable Hale neighborhood and right next to Bellevue/Lindsley Parks, this thoughtfully updated 1-bed, 1-bath garden-level condo offers smart, low-maintenance city living at an unbeatable price point.\r\n\r\nWhy You’ll Love Living Here:\r\n\r\nUnbeatable Utility Value: Say goodbye to high utility bills—HOA fees cover electricity, heat, water, sewer, trash, snow removal, and exterior/grounds maintenance!\r\n\r\nTurn-Key Interior: Freshly painted with modern updates, featuring a bright living space, new flooring, and an updated kitchen complete with brand-new appliances.\r\n\r\nPrivate & Peaceful: Quiet unit setup with no side-by-side neighbors for ultimate privacy.\r\n\r\nDedicated Parking: Includes a dedicated parking space located conveniently just behind the building.\r\n\r\nLocation & Lifestyle: Step out your back door straight into Bellevue/Lindsley Parks, featuring manicured walking paths, tennis and basketball courts, ball fields, and outdoor workout areas. Ideally located steps from the Rose Medical Center campus, and minutes from local coffee shops, fabulous dining, and quick commutes to Cherry Creek and Downtown Denver.\r\n\r\nA rare, low-maintenance turn-key opportunity in a prime Denver location. Schedule your private tour today!", + "features": [ + "Carpet Floors", + "Common Laundry", + "Electricity Included", + "Hot Water Heating", + "Laminate Floors", + "Refrigerator", + "Snow Removal Included", + "Tile Floors" + ], + "property_facts": { + "Status": "Active", + "MLS #": "9167357", + "Days on Compass": "115", + "Taxes": "$733 / year", + "HOA Fees": "$6,986 / year", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "1951", + "County": "Denver County" + }, + "regional_facts": { + "Structure Type": "Low Rise (1-3)", + "Architectural Style": "Paved, Condominium", + "Levels": "One", + "Subdivision Name": "Bellevue Park", + "Association": "Yes", + "Multiple Associations": "No", + "Basement": "No" + }, + "agent": { + "name": "Kelly Turk", + "email": "kellyturk@compass.com", + "telephone": "7202899475" + } + }, + "2102061493988427281": { + "listing_id": "2102061493988427281", + "source_url": "https://www.compass.com/homedetails/1701-40th-Ave-San-Francisco-CA-94122/2102061493988427281_lid/", + "retrieved_at": "2026-09-06T04:13:47.342761+00:00", + "html_sha256": "532b1f5e5d99d2cf3d612d68073db94c4450aaeb7ebd85390603f243017c2968", + "price": 2200000, + "address": "1701 40th Avenue", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94122", + "neighborhood": "Outer Sunset", + "latitude": 37.7549644, + "longitude": -122.4993441, + "beds": 3, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1377, + "property_type": "Single Family", + "year_built": 1940, + "mls_number": "426127659", + "status_text": "Closed", + "days_on_market": 13, + "listed_at_ms": 1778742000000, + "description": "Coastal calm and everyday convenience converge at 1701 40th Avenue, a 3 bedroom / 2 bathroom semi-detached corner home on a quiet block in the heart of the Outer Sunset. This thoughtfully designed and meticulously maintained home features inviting interiors with bright light and hardwood floors, an effortless connection to the outdoors, with proximity to local retail, transit, parks, and the beach. Spanning the front of the home, the living room is anchored by a fireplace and a large picture window framing lovely neighborhood outlooks. The dining room and kitchen, open to one another, encourage easy flow for entertaining and everyday meals. The kitchen balances style and function with stainless-steel appliances, ample quartz counters, and abundant cabinetry. At the rear of the main level are two peaceful bedrooms, each with generous closets. One enjoys views of the ocean in addition to the neighborhood scenery. A skylit bathroom with a bathtub, and a hall closet complete this floor. Downstairs, the spacious primary suite provides a serene retreat with its own ensuite bathroom. An adjacent office creates an ideal work-from-home setup and opens directly onto the backyard. The large patio, perimeter plantings with fruiting lime tree, outdoor shower, and convenient street access make post-beach cleanup and casual outdoor gatherings a breeze. A sizable utility room includes a washer, dryer, sink, folding counter, and cabinets, while also presenting expansion potential. The garage provides parking for 1 car with an additional driveway space, plus versatile storage well-suited for surfboards, bikes, and more, making it easy to enjoy all the outdoor adventures the Westside has to offer. This tranquil residential pocket of the Outer Sunset gives you the best of both worlds: peaceful surroundings with daily conveniences close at hand. WalkScore.com rates the location \"Very Walkable\" and \"Very Bikeable.\" Freeway access is easy via Sunset Boulevard, and downtown commuters can hop on the N Judah train or 7 Noriega bus nearby. Noriega Street, just 1 block south, is known for groceries at Gus's, breakfast at Devil's Teeth, smashburgers at Maillard's, and many other local spots to shop and dine. Sunset ES, Giannini MS, St. Ignatius School, the West Sunset Playground, Ortega Library, and Andytown Coffee are all within 3 blocks.", + "features": [ + "City Views", + "Dishwasher", + "Disposal", + "Dryer", + "Garage", + "Microwave", + "Ocean Views", + "Tile Floors", + "Washer" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "426127659", + "Days on Compass": "13", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1940", + "Lot Size": "0.04 AC / 1,746 SF", + "County": "San Francisco County" + }, + "regional_facts": { + "Parking Features": "Garage Door Opener, Garage Faces Front, Inside Entrance, See Remarks, Independent, On Site (Single Family Only)", + "View Description": "City, Ocean", + "Cross Street": "Moraga", + "Total Parking Spaces": "2" + }, + "agent": { + "name": "Sherri Howe", + "email": "sherri.howe@compass.com", + "telephone": "4156404664" + } + }, + "2102229235249527297": { + "listing_id": "2102229235249527297", + "source_url": "https://www.compass.com/homedetails/477-High-St-Denver-CO-80218/12BI2I_pid/", + "retrieved_at": "2026-09-06T04:11:55.583287+00:00", + "html_sha256": "b830a5f079a6699d753407989bf4606c9d4dc44168ff5682d6ef2fd6565b2156", + "price": 2480000, + "address": "477 High Street", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80218", + "neighborhood": "Denver Country Club", + "latitude": 39.7233967, + "longitude": -104.9651249, + "beds": 5, + "baths_full": 3, + "baths_half": 1, + "baths_total": 5, + "sqft": 5256, + "property_type": "Single Family", + "year_built": 2001, + "mls_number": "4709217", + "status_text": "Closed", + "days_on_market": 18, + "listed_at_ms": 1778738400000, + "description": "This rare 2001 custom-built Country Club residence in the Driving Park Historic District beckons you in with its brick exterior, curved wraparound porch, tall Prairie-style windows, and more than 5,200 interior square feet of living space. The gracious foyer features a wide staircase, oak floors, and arched openings leading into the adjoining living spaces. Inside the front porch is the perfect office or den, with its curved wall of panoramic windows, and the formal dining room opens directly to the front porch, making it the perfect place to entertain and enjoy delicious meals. The living room, with custom built-ins, a gas fireplace, and a stone surround, opens into the stunning kitchen, which features quartzite countertops, a large island (with a prep sink and counter seating), a zellige tile backsplash, and a large walk-in pantry. Radiant heated floors extend through the kitchen, mudroom, and laundry area. The updated mud/laundry room includes custom cubbies, additional storage, and direct access to the oversized 3-car garage. A powder room completes the main level. Upstairs, the expansive primary suite features a private balcony, a walk-in closet, and a luxurious en suite bathroom with heated floors, a soaking tub, steam shower, dual vanities, and a dressing table. Two additional conforming bedrooms (including one with an en suite bathroom and another with a private balcony), a full hallway bathroom, and a non-conforming bedroom with a day bed (and washer/dryer hookups) complete the upper level. The finished basement provides another conforming bedroom, a home gym with epoxy floors and a TV, a 3/4 bathroom, tons of open flex space, and a mechanical/storage room. Nearly the entire interior was remodeled in 2020 including the kitchen, all bathrooms except the primary, mud/laundry room, primary closet, lighting, flooring, and paint! Unbeatable location close to Cherry Creek and within the highly desirable Bromwell/Morey/East boundaries! Buyer to verify all info.", + "features": [ + "Attached Garage", + "Balcony", + "Baseboard Heating", + "Basement", + "Built-Ins", + "Cable Included", + "Carpet Floors", + "Central AC", + "Dishwasher", + "Disposal", + "Dog Run/Park", + "Double Oven", + "Dryer", + "Dual Pane Windows", + "Eat-in Kitchen", + "Electricity Included", + "Fireplace", + "Foyer", + "Full Basement", + "Garage", + "Gas Heat", + "Gas Included", + "Heated Garage Parking", + "High Ceilings", + "Island Kitchen", + "Microwave", + "Mountain Views", + "Pantry", + "Parking Included", + "Patio", + "Private Outdoor Space", + "Private Wrap Around Terrace", + "Private Yard", + "Radiant Heating", + "Range", + "Range Hood", + "Refrigerator", + "Tile Floors", + "Traditional", + "Walk-in Closet", + "Washer" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "4709217", + "Days on Compass": "18", + "Taxes": "$10,733 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "2001", + "Lot Size": "0.16 AC / 7,031 SF", + "County": "Denver County", + "Buyer's Agent Compensation": "2.8%" + }, + "regional_facts": { + "Structure Type": "House", + "Architectural Style": "Traditional", + "View": "Mountain(s)", + "Levels": "Two", + "Subdivision Name": "Country Club", + "Association": "No", + "Basement": "Yes" + }, + "agent": { + "name": "David Schlichter", + "email": "david.schlichter@compass.com", + "telephone": "7204402340" + } + }, + "2102534367317010929": { + "listing_id": "2102534367317010929", + "source_url": "https://www.compass.com/homedetails/218-Garfield-Pl-Unit-3R-Brooklyn-NY-11215/20AJAN_pid/", + "retrieved_at": "2026-09-06T04:13:21.267634+00:00", + "html_sha256": "e2d72efd22babbbac347eff9a29f2c5e8e40e615bdda80f2a5fe6a2db34ba2b1", + "price": 3000, + "address": "218 Garfield Place, Unit 3R", + "unit": "3R", + "city": "Brooklyn", + "state": "NY", + "zip": "11215", + "neighborhood": "Park Slope", + "latitude": 40.671915, + "longitude": -73.9765865, + "beds": 1, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": null, + "property_type": "Rental", + "year_built": 1920, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 2, + "listed_at_ms": 1778452828003, + "description": "This cheerful south-facing Park Slope top-floor Jr. 1BR offers plenty of charm with its original hardwood flooring and decorative moldings. There is a spacious living room with two windows, a separate kitchenette with a skylight, and a cozy windowed bedroom with space for a full or queen-size bed. The rear-facing apartment provides the peaceful tranquility you deserve. Perfectly set in a brownstone on landmarked Garfield Place, you are less than two blocks to the sylvan treasures of Prospect Park and a half block to bustling 7th Avenue and within an easy walk to multiple train lines. Heat and hot water included. Available June 1st. Kindly no pets/no smoking. No laundry on-site—a laundromat is nearby.", + "features": [ + "Junior 1", + "Decorative Mouldings", + "Hardwood Floors", + "High Ceilings", + "Walk Up", + "Kitchenette", + "Southern Exposure", + "Skylight", + "Voice Intercom", + "Lowrise", + "Brownstone" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "2", + "Pet Policy": "Not Allowed", + "Rental Incentives": "No Fee", + "Available Date": "06/01/2026", + "Lease Term": "Lease Length: Negotiable,12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "3.0", + "Property Type": "Rental", + "MLS Type": "Townhouse", + "Year Built": "1920", + "County": "Kings County" + }, + "regional_facts": {}, + "agent": { + "name": "Paul Pinizzotto", + "email": "paul.pinizzotto@compass.com", + "telephone": "9176489628" + } + }, + "2102573612374981985": { + "listing_id": "2102573612374981985", + "source_url": "https://www.compass.com/homedetails/298-Carroll-St-Brooklyn-NY-11231/211YDE_pid/", + "retrieved_at": "2026-09-06T04:13:22.300210+00:00", + "html_sha256": "92d2cd685433bbe900a551e7e878577e42d11c60633aedad099dedaf01a45a7a", + "price": 16000, + "address": "298 Carroll Street", + "unit": "", + "city": "Brooklyn", + "state": "NY", + "zip": "11231", + "neighborhood": "Carroll Gardens", + "latitude": 40.679141, + "longitude": -73.993381, + "beds": 3, + "baths_full": 3, + "baths_half": 0, + "baths_total": 3, + "sqft": 2284, + "property_type": "Townhouse", + "year_built": 1899, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 9, + "listed_at_ms": 1778457506493, + "description": "Set behind a deep front garden on one of Carroll Gardens' most picturesque blocks, 298 Carroll Street is a four-story, single-family townhouse offering generous scale, exceptional outdoor space, and a thoughtful renovation that honors the building's historic character. In spring, a dogwood tree blooms just beyond the parlor windows, an unmistakable marker of the block's particular charm.\n\nThe entry level opens into an open living and dining space, defined by tall ceilings, original marble mantels, and oversized windows drawing in soft northern and southern light. Restored mouldings, deep window casements, and a handsome original newel post speak to the craftsmanship of the building's past. Wide-plank hardwood floors and a restrained, contemporary palette run throughout.\n\nAt the rear, the kitchen is anchored by a large central marble island and framed by three windows overlooking the garden. Custom millwork and integrated appliances offer a layout that is both functional and architectural. A small terrace just off the kitchen provides direct access to the outdoors, with stairs descending to the backyard below, approximately 48 feet deep, landscaped with decking, gravel, and mature plantings, and enclosed by horizontal cedar fencing.\n\nThe garden level extends the home further, with a generous recreation room or den opening directly to the rear yard, plus a secondary bedroom and full bath well-suited as a guest suite or private quarters. Upstairs, the primary bedroom is positioned at the rear of the home and complemented by a walk-in closet and a spa-like bath finished in white square tile and Carrara marble. A second bedroom at the front of the floor is equally light-filled. All three bathrooms share a consistent, carefully executed design. A full basement provides laundry, mechanicals, and ample storage.\n\nLocated in the heart of Carroll Gardens, 298 Carroll Street is moments from Smith Street, Court Street, and the neighborhood's beloved dining and retail destinations, as well as Carroll Park and convenient access to the F and G trains. Carroll Gardens remains one of Brooklyn's most sought-after addresses, and Carroll Street one of its finest blocks.", + "features": [ + "Private Patio", + "Patio", + "Working Fireplace", + "Fireplace", + "Hardwood Floors", + "High Ceilings", + "Washer / Dryer", + "Laundry in Building", + "Stainless Steel Appliances", + "Open Kitchen", + "Northern Exposure", + "Southern Exposure", + "Walk-in Closet", + "Basement", + "Full Basement", + "Brownstone", + "Lowrise" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "9", + "Rental Incentives": "No Fee", + "Available Date": "08/01/2026", + "Lease Term": "Lease Length: 12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "8.0", + "Property Type": "Townhouse", + "MLS Type": "Single Family Townhouse", + "Year Built": "1899", + "Lot Size": "1,841 SF", + "County": "Kings County" + }, + "regional_facts": {}, + "agent": { + "name": "Nick Gavin", + "email": "nick.gavin@compass.com", + "telephone": "6466103055" + } + }, + "2102606818449475417": { + "listing_id": "2102606818449475417", + "source_url": "https://www.compass.com/homedetails/129-Metropolitan-Ave-Unit-1B-Brooklyn-NY-11249/1LG279_pid/", + "retrieved_at": "2026-09-06T04:13:21.326434+00:00", + "html_sha256": "8837d5aac6ac0556ab19efa16f64511e8c913fe9f39687f7447a0daa2277d2cf", + "price": 6250, + "address": "129 Metropolitan Avenue, Unit 1B", + "unit": "1B", + "city": "Brooklyn", + "state": "NY", + "zip": "11249", + "neighborhood": "Williamsburg", + "latitude": 40.7163685, + "longitude": -73.9623539, + "beds": 2, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 1104, + "property_type": "Condo", + "year_built": 2008, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 8, + "listed_at_ms": 1778461464867, + "description": "Enjoy the feel of a private home paired with the ease of condo living in this expansive, thoughtfully designed two-bedroom residence.\n\nThe upper floor features two well-proportioned bedrooms and a bright, windowed kitchen with space for dining. Outfitted with Bosch appliances and generous storage, it’s equally suited for everyday meals or more relaxed gatherings.\n\nDownstairs, a large, versatile living area offers plenty of room to unwind, entertain, or set up a comfortable home office. This level also includes a powder room, in-unit laundry, and abundant storage, adding both comfort and convenience.\n\nAn elevator ride brings you to a beautifully appointed shared rooftop, where open southern exposures and city views provide a calm escape above the neighborhood.\n\nLocated within 129 Metropolitan, an intimate 12-residence condominium in the heart of Williamsburg, you’re surrounded by some of the area’s best dining, shopping, and transit options. The waterfront, Bedford Avenue, and neighborhood favorites like Trader Joe’s and Whole Foods are just minutes away, along with Domino Park and the Bedford Avenue subway for easy access into Manhattan.", + "features": [ + "Common Roof Deck", + "Hardwood Floors", + "Elevator", + "Washer / Dryer", + "Washer / Dryer in Unit", + "Central AC", + "Dishwasher", + "Midrise" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "8", + "Pet Policy": "Not Allowed", + "Rental Incentives": "No Fee", + "Available Date": "07/01/2026", + "Lease Term": "Lease Length: 12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "7.0", + "Property Type": "Condo", + "MLS Type": "Condo", + "Year Built": "2008", + "County": "Kings County" + }, + "regional_facts": {}, + "agent": { + "name": "David Chang", + "email": "dchang@compass.com", + "telephone": "9144201985" + } + }, + "2102741355476499777": { + "listing_id": "2102741355476499777", + "source_url": "https://www.compass.com/homedetails/6374-Macal-Pl-Los-Angeles-CA-90068/1JSLO9_pid/", + "retrieved_at": "2026-09-06T04:12:23.624208+00:00", + "html_sha256": "412079e61f8b7ef2cbaa8abbd8649872666957b3290d3e9eb5b1ae045da603e7", + "price": 1495000, + "address": "6374 Macal Place", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90068", + "neighborhood": "Hollywood Hills East", + "latitude": 34.112711, + "longitude": -118.3284554, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1532, + "property_type": "Single Family", + "year_built": 1957, + "mls_number": "26832107", + "status_text": "Active", + "days_on_market": 118, + "listed_at_ms": 1778396400000, + "description": "Welcome to 6374 Macal Place if you've been looking for a two bed, two bath turnkey Hollywood Hills hideaway nestled on a private street with west-facing exposures and unobstructed views that produce some of the most breathtaking sunsets in all of Hollywood then this is the one. Macal's open concept living area seamlessly flows out onto the balcony space allowing you to take in the views, while the oversized sliding doors and large windows invite in the abundant natural light and cool breezes. Original wood beams and vaulted ceilings maintain the homes Mid-Century pedigree and enhacne it's warmth and character. Macal's kitchen was desinged for people who love to cook and entertain: custom wood cabinetry, soft-close throughout, sleek surfaces, and generous storage. This kitchen elevates your everyday experiences and takes entertaining with friends and family to the next level. The primary suite is privately positioned on its own wing, featuring a spa-like bathroom and potential for a direct deck access. Custom built-ins and his-and-hers closets complete the picture. Sitting on a rare double lot, Macal's outdoor potential is endless. You choose: add the deck of your dreams, an ADU, or maybe a pool ...? Or you could just cast a blanket on the grass, lay down, bask in the sun and ponder the words of David Lynch, \"The golden age of cinema is still alive here, in the smell of jasmine at night and the beautiful weather. And the light is inspiring and energizing... it fills me with the feeling that all possibilities are available\". 6374 Macal: room to dream, to entertain, and to grow. It's Hollywood Hills living at its best.", + "features": [ + "Garage", + "Air Conditioning", + "Parking Included", + "Unfurnished" + ], + "property_facts": { + "Status": "Active", + "MLS #": "26832107", + "Days on Market": "118", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1957", + "Lot Size": "0.20 AC / 8,744 SF", + "County": "Los Angeles County" + }, + "regional_facts": { + "Zoning": "LAR1", + "Style": "Mid-Century", + "Property Attached YN": "false", + "Parcel Number": "5576013050", + "Living Area": "1532", + "Source Living Area": "Assessor", + "Area": "Hollywood Hills East (C30)", + "Lot Size Area": "8744", + "Source Lot Size Area": "Assessor", + "Assessor Parcel Number": "5576-013-050", + "Directions": "consult google maps" + }, + "agent": { + "name": "Richard Wilkinson", + "email": "richard.wilkinson@compass.com", + "telephone": "3234452426" + } + }, + "2102975877501630305": { + "listing_id": "2102975877501630305", + "source_url": "https://www.compass.com/homedetails/4627-N-Kenmore-Ave-Unit-1E-Chicago-IL-60640/1W167Y_pid/", + "retrieved_at": "2026-09-06T04:11:23.977414+00:00", + "html_sha256": "d5f6d363e7bbb4d3040dc47492ecda5131e29a8bbda71a33fe4ad046ed893708", + "price": 425000, + "address": "4627 North Kenmore Avenue, Unit 1E", + "unit": "1E", + "city": "Chicago", + "state": "IL", + "zip": "60640", + "neighborhood": "Uptown Chicago", + "latitude": 41.96628339999999, + "longitude": -87.6558975, + "beds": 2, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 1500, + "property_type": "Condo", + "year_built": 2001, + "mls_number": "12569327", + "status_text": "Contingent", + "days_on_market": 16, + "listed_at_ms": 1786942800000, + "description": "Nestled on a peaceful, tree-lined street in the heart of vibrant Uptown, 4627 N Kenmore Ave Unit 1E is a duplex condo that effortlessly combines modern style, everyday comfort, and unparalleled convenience. From the moment you step inside, you'll feel the warmth of home in the sun-soaked living area, where oversized windows bathe the space in natural light and a cozy gas fireplace invites you to unwind. The open-concept layout flows seamlessly into the chef's kitchen, a true centerpiece equipped with stainless steel appliances, gleaming granite countertops, rich maple cabinetry, and a spacious island perfect for everything from casual breakfasts to hosting friends and family. The main level is designed to impress, featuring beautiful hardwood floors that stretch throughout, a dedicated dining area ideal for dinner parties, and a charming balcony that's perfect for morning coffee or evening relaxation. A convenient half bath adds to the functionality of this level. Upstairs, the thoughtful design continues. The primary suite is a peaceful retreat, boasting generous closet space and a private ensuite bathroom. The large second bedroom offers endless possibilities, use it as a guest room, a home office, or a creative space to suit your needs. High ceilings throughout the home give it an airy feel, while abundant storage and an in-unit washer/dryer enhance the practicality of daily living. One of the standout features. A parking space is included in the price, an invaluable perk in this bustling neighborhood! Additionally, the property allows rentals, offering flexibility for both homeowners and investors. The building itself is equally impressive, with recent updates ensuring peace of mind for years to come. A full roof replacement was completed in 2020, a new AC unit installed in 2021, and a furnace upgrade in 2018, all signs of a well-cared-for property. Location is everything, and this condo delivers. Just minutes from the Red Line, Target, local parks, Montrose Beach, and the lakefront, you'll have endless options for outdoor fun and city exploration. Add to that Uptown's dynamic dining scene and eclectic shops, and you'll never run out of things to do right in your neighborhood. Whether you're looking for a serene retreat or a home that connects you to the best of Chicago living, this is a rare opportunity you won't want to miss. Schedule your showing today and see firsthand why this duplex condo is truly one of a kind!", + "features": [ + "Common Outdoor Space", + "On-site Parking", + "Assigned Parking", + "Playroom", + "Dryer", + "Washer", + "Laundry in Building", + "Central AC", + "Gas Heat", + "Dishwasher", + "Microwave", + "Stainless Steel Appliances", + "Disposal", + "Refrigerator", + "Granite Kitchen Counter", + "Fireplace", + "Built-Ins", + "Hardwood Floors", + "Common Storage", + "Walk-in Closet", + "Voice Intercom", + "Basement", + "Forced Air", + "Private Outdoor Space", + "Parking Included", + "Pet Friendly", + "Snow Removal Included", + "Storage Available", + "Range", + "Washer Hookup", + "Full Basement", + "Lowrise" + ], + "property_facts": { + "Status": "Contingent", + "MLS #": "12569327", + "Days on Market": "16", + "Pet Policy": "Allowed", + "Taxes": "$6,119 / year", + "HOA Fees": "$193 / month", + "Property Type": "Condo", + "MLS Type": "Attached Single / Condo", + "Year Built": "2001", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - Uptown", + "Township": "Lake View", + "Ownership": "Condo", + "Num Of Parking Spaces": "1.0", + "Parking Included in Price": "Yes", + "Air Conditioning Type": "Central Air", + "Num of Interior Fireplaces": "1", + "Heat/Fuel": "Natural Gas, Forced Air", + "Pets Allowed": "Yes" + }, + "agent": { + "name": "Eli Masud", + "email": "eli.masud@compass.com", + "telephone": "6306974540" + } + }, + "2102997268314253465": { + "listing_id": "2102997268314253465", + "source_url": "https://www.compass.com/homedetails/1622-Florida-Ave-NW-Washington-DC-20009/1UP2K9_pid/", + "retrieved_at": "2026-09-06T04:14:22.138405+00:00", + "html_sha256": "073e94e71045eeb51951b52e1145a2ab03a25fed6b1dbc3a0f092d2566dc11f4", + "price": 1146000, + "address": "1622 Florida Avenue Northwest", + "unit": "", + "city": "Washington", + "state": "DC", + "zip": "20009", + "neighborhood": "Dupont Circle", + "latitude": 38.918629, + "longitude": -77.037381, + "beds": 4, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 2136, + "property_type": "Townhouse", + "year_built": 1909, + "mls_number": "DCDC2261096", + "status_text": "Closed", + "days_on_market": 41, + "listed_at_ms": 1778644800000, + "description": "MAJOR PRICE REDUCTION. Located in the north eastern corner of Dupont Circle, this home offers excellent access to Adams Morgan, U Street & Logan Circle and everything those vibrant neighborhoods have to offer. It is also only a few steps away from the newly revitalized Meridian Hill Park.\n\nThis charming home features 3 bedrooms and 2 full bathrooms on the 2nd floor, and an in-law apartment in the basement with an additional bedroom, bathroom & kitchen. There is a large, screened-in patio off the kitchen that was built with steel columns and beams making a second floor expansion easier and less expensive. There is a driveway which is large enough for two small cars to park in tandem and a large additional storage space under the patio.\n\nThe first floor features custom built-ins, recessed lighting and original hardwood floors throughout. The large kitchen has butcher block counter tops and loads of natural light. There is also a first floor powder room for your guests’ convenience. In addition to the 3 bedrooms and 2 full baths on the second floor, there are several skylights maximizing natural light and a newly installed Miele washer/dryer. The basement in-law apartment has both front and rear entrances and its own kitchen and washer/dryer. \n\nRecent upgrades and improvements include: New Roof in 2012, New Furnace 2014, Solar Panels installed in 2016, New Central A/C 2017, Brick Pointing 2018, New Hot Water Heater & Windows 2022, New Refrigerator 2024 & Washer/Dryer 2025. \n\nInventory for houses in this area that have in-law suites & off street parking has been extremely low. With additional unique features like the large, screened patio, solar panels and original architectural features - 1622 Florida Avenue is a rare offering. Don’t miss your opportunity to see it soon.", + "features": [ + "Air Conditioning" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "DCDC2261096", + "Days on Market": "41", + "Taxes": "$10,200 / year", + "Property Type": "Townhouse", + "MLS Type": "Residential / Fee Simple", + "Year Built": "1909", + "Lot Size": "0.04 AC / 1,544 SF", + "County": "District of Columbia" + }, + "regional_facts": { + "Tax ID Number": "0174//0053", + "Ownership": "Fee Simple", + "Condo Coop Association": "No", + "HOA": "No", + "Structure Type": "Interior Row/Townhouse", + "Style": "Traditional, Other", + "Levels/Stories": "3", + "Waterfront": "No", + "Garage": "No", + "Expected On Market Date": "05-13-2026", + "Subdivision": "DUPONT (WASHINGTON DC)", + "Total Parking Spaces": "2", + "Central Air": "Yes", + "Basement": "No", + "Above Grade Finished SQFT": "1,424.00", + "Above Grade Fin SQFT Source": "Estimated", + "Below Grade Finished SQFT": "712.00", + "Below Grade Fin SQFT Source": "Estimated", + "Total Below Grade SQFT": "712.00", + "Total Below Grade SQFT Source": "Estimated", + "New Construction": "No" + }, + "agent": { + "name": "Edward Carp", + "email": "edcarp@compass.com", + "telephone": "2024918700" + } + }, + "2103010511052722345": { + "listing_id": "2103010511052722345", + "source_url": "https://www.compass.com/homedetails/1718-Corcoran-St-NW-Unit-5-Washington-DC-20009/1U4OU4_pid/", + "retrieved_at": "2026-09-06T04:14:21.764138+00:00", + "html_sha256": "7fc73de124920c1678012250c4ca124a97edc797755ded57d712139e4189aeb1", + "price": 315000, + "address": "1718 Corcoran Street Northwest, Unit 5", + "unit": "5", + "city": "Washington", + "state": "DC", + "zip": "20009", + "neighborhood": "Dupont Circle", + "latitude": 38.9117009, + "longitude": -77.0392958, + "beds": 1, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 563, + "property_type": "Condo", + "year_built": 1885, + "mls_number": "DCDC2266530", + "status_text": "Active", + "days_on_market": 93, + "listed_at_ms": 1780632000000, + "description": "Welcome to the Analoston Condominium, Condo #5, in a historic building in a wonderful neighborhood! Fantastic location. Near Adams Morgan, Dupont Circle, U Street and 14th street this condo is a city lovers' dream. Steps to 17th Street, Safeway, restaurants, bars and shops. The condo features exposed brick, custom lighting, and a recently renovated bath and flooring. The modern kitchen has granite counter tops, stainless steel appliances and bright, recessed lighting. There is good storage space with a coat closet, walk-in closet, and panty space. The HOA fee includes gas and electric, no extra bills to deal with. Transportation is easy with a two block walk to the Dupont Circle Metro and multiple bus lines close by. Great Condo for Dog owners, just steps to the outside, Dog Park two blocks away at S Street Park, 17th and S Streets.", + "features": [ + "Laundry in Building", + "Elevator", + "Air Conditioning", + "Basement", + "Midrise", + "Security System" + ], + "property_facts": { + "Status": "Active", + "MLS #": "DCDC2266530", + "Days on Market": "93", + "Pet Policy": "Allowed", + "Taxes": "$2,219 / year", + "Condo/Co-op Fees": "$528 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condo", + "Year Built": "1885", + "County": "District of Columbia", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Tax ID Number": "0155//2039", + "Ownership": "Condominium", + "Condo Coop Association": "Yes", + "HOA": "No", + "Entry Floor Number": "1", + "Structure Type": "Unit/Flat/Apartment", + "Style": "Federal", + "Levels/Stories": "1", + "Unit Building Type": "Mid-Rise 5 - 8 Floors", + "Waterfront": "No", + "Garage": "No", + "Subdivision": "OLD CITY #2 (WASHINGTON DC)", + "Building Name": "OLD CITY 2 (WASHINGTON DC)", + "Cross Street": "17th Street", + "Legal Subdivision": "Old City 2", + "Total Parking Spaces": "0", + "Washer/Dryer/Hook Up in Unit Y/N": "No", + "Central Air": "Yes", + "Basement": "Yes", + "Above Grade Finished SQFT": "563.00", + "Above Grade Fin SQFT Source": "Assessor", + "Below Grade Finished SQFT": ".00", + "Below Grade Fin SQFT Source": "Assessor", + "Below Grade Unfinished SQFT": ".00", + "Below Grade Unfin SQFT Source": "Assessor", + "Total Below Grade SQFT": ".00", + "Total Below Grade SQFT Source": "Assessor", + "New Construction": "No", + "Property Condition": "Excellent" + }, + "agent": { + "name": "Peter Gorog", + "email": "peter.gorog@compass.com", + "telephone": "7036085126" + } + }, + "2103039233638300481": { + "listing_id": "2103039233638300481", + "source_url": "https://www.compass.com/homedetails/3250-Dexter-St-Denver-CO-80207/136FBB_pid/", + "retrieved_at": "2026-09-06T04:11:59.007353+00:00", + "html_sha256": "6221ea01e6fa659a2eef085d7057d4cead9f998b0150c9f4727ad7a83620986e", + "price": 442000, + "address": "3250 Dexter Street", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80207", + "neighborhood": "Northeast Park Hill", + "latitude": 39.7628946, + "longitude": -104.9328851, + "beds": 2, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": 700, + "property_type": "Single Family", + "year_built": 1950, + "mls_number": "4976741", + "status_text": "Closed", + "days_on_market": 14, + "listed_at_ms": 1778824800000, + "description": "MASSIVE PRICE UPDATE! DO NOT MISS! This is the North Park Hill bungalow buyers wait for! Charming, updated, full of personality, and priced in one of Denver’s most sought-after neighborhoods at a level that is becoming harder and harder to find. Perfectly positioned from Axium park and minutes to City Park, the Denver Zoo, the Museum of Nature & Science, RiNo, downtown Denver, neighborhood restaurants, coffee shops, and everyday conveniences, this home delivers the lifestyle Denver buyers want!\r\n\r\nInside, this super charming 2 bed / 1 bath bungalow feels warm, bright, and inviting from the moment you walk in. Hardwood and tile floors, quartz countertops, an updated kitchen, newer appliances, in-unit laundry, ceiling fans, central A/C, fresh interior paint, and thoughtful updates throughout make this home truly move-in ready. The outdoor space is a major standout. The fully fenced backyard is set up for real Colorado living with a pergola, firepit, garden space, chicken Shack, and room to entertain, relax, or enjoy quiet evenings at home. The xeriscaped front yard adds curb appeal and low-maintenance convenience, while the detached 1-car garage provides valuable parking, storage, and flexibility. \r\n\r\nMajor improvements include a newer furnace, water heater, sewer line with cleanout, appliances, front and back doors, front patio, xeriscaping, pergola/firepit, chicken shack, added insulation, attic fan, full crawl space vapor barrier, stained fencing, and custom garage door with MyQ smart app. Solar panels are owned and help offset electric costs. With charm, updates, outdoor living, a park-right-across-the-street location, and easy access to some of Denver’s best amenities, this North Park Hill bungalow is the one buyers will not want to miss! Homes with this combination of location, appeal, and price point do not last! See attached documents for list of improvements. YOU CAN DEVELOP AN ADU ON THIS PROPERTY AS WELL!", + "features": [ + "Air Conditioning", + "Bungalow", + "Cable Included", + "Central AC", + "Dishwasher", + "Disposal", + "Dryer", + "Dual Pane Windows", + "Electricity Included", + "Forced Air", + "Garage", + "Gas Heat", + "Parking Included", + "Private Yard", + "Range", + "Range Hood", + "Refrigerator", + "Security System", + "Tile Floors", + "Unfurnished", + "Washer", + "Washer / Dryer in Unit" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "4976741", + "Days on Compass": "14", + "Taxes": "$2,168 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1950", + "Lot Size": "0.13 AC / 5,662 SF", + "County": "Denver County" + }, + "regional_facts": { + "Structure Type": "House", + "Architectural Style": "Bungalow", + "Levels": "One", + "Subdivision Name": "North Park Hill", + "Association": "No", + "Multiple Associations": "No", + "Basement": "No" + }, + "agent": { + "name": "Robert An", + "email": "robert.an@compass.com", + "telephone": "7193298868" + } + }, + "2103040696091577497": { + "listing_id": "2103040696091577497", + "source_url": "https://www.compass.com/homedetails/2-Northside-Piers-Unit-24Y-Brooklyn-NY-11249/1OXEH9_pid/", + "retrieved_at": "2026-09-06T04:13:24.071650+00:00", + "html_sha256": "525979661fc509d62d0a7afde516f252cf1524dc809f145b4ada644bd9e3127b", + "price": 5850, + "address": "2 Northside Piers, Unit 24Y", + "unit": "24Y", + "city": "Brooklyn", + "state": "NY", + "zip": "11249", + "neighborhood": "Williamsburg", + "latitude": 40.7196518, + "longitude": -73.964024, + "beds": 1, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 762, + "property_type": "Rental", + "year_built": 2010, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 3, + "listed_at_ms": 1778513187093, + "description": "1-bedroom, 1-bathroom residence with floor-to-ceiling windows showcasing twilight views of the striking Manhattan skyline. A generous foyer flows into an open kitchen and spacious living room. The chef's kitchen is finished with honed marble countertops and pure crystal white-stone backsplash, with a roster of top appliances, including Subzero and Bosh fixtures. Wide-plank American walnut floors span throughout the home and storage is plentiful, with one walk-in closet and two large closets with smart built-ins. The bedroom is positioned to capture the same awe-inspiring views, providing late-night relaxation and inspiration. A vented washer/dryer is included. Pets considered on a case by case basis. $25/mo additional rent for pet if approved.\n\nApplication Fees:\n● Move In Fee (Condo Fee) - $500\n● Move-In Deposit (Condo Fee) - $1,000 (refunded immediately after move-in)\n● Board Package Online Fee: $120\n● Lease Processing Fee: $350\n● Board Package Initiation Fee: $75\n● Board Package Digital Submission Fee: $65\n● DepositLink: $18/per transaction (vendor used to collect 1st rent/security)\n● Security Deposit: 1-month's rent\n● 1st Month's Rent: 1-month's rent\n● Lease Renewal Fee: $150 (due at time of renewal)\n\nEnd of Tenancy Fees (Due upon Vacancy):\n● Move Out Fee (Condo Fee) - $500\n● Move Out Deposit (Condo Fee) - $1,000 (refunded immediately after move-out)\n\nOther Potential Fees:\n● Lost Key - Cost to replace paid by Tenant\n● Lost Fob - Cost to replace paid by Tenant\n● Pet Fee - $50/mo (if applicable). \n\n2 Northside Piers features one of the most comprehensive amenities packages in the neighborhood and includes a heated indoor pool, hot tub, full-time concierge, sauna, fitness center with PELOTON Bikes, massage/yoga room, children's playroom, parking garage, refrigerated grocery storage, screening room, lounge, and more. Right outside your door is an incredible 400 foot pier and waterfront esplanade with access to the East River Ferry, a large waterfront park with soccer field and the New Domino Park. The building is central to all the restaurants, bars, hotels, galleries, and everything that has made this one of the hottest neighborhoods in NYC.", + "features": [ + "Full-Time Doorman", + "Concierge", + "Common Roof Deck", + "Gym", + "Pool", + "Indoor Pool", + "Hot Tub", + "Sauna", + "Playroom", + "Yoga Studio", + "Resident's Lounge", + "Common Media / Recreation Room", + "Hardwood Floors", + "Floor to Ceiling Windows", + "Elevator", + "Washer / Dryer in Unit", + "Central AC", + "Dishwasher", + "On-site Parking For Rent", + "Northern Exposure", + "Walk-in Closet", + "Video Security", + "Bike Room", + "Cold Storage", + "Valet Parking", + "Pantry", + "Common Terrace", + "Common Kitchen", + "Laundry in Every Unit", + "Storage Available", + "Private Storage for Sale", + "Highrise" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "3", + "Pet Policy": "Allowed", + "Rental Incentives": "No Fee", + "Available Date": "05/11/2026", + "Lease Term": "Lease Length: Negotiable,12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "3.0", + "Property Type": "Rental", + "Year Built": "2010", + "County": "Kings County" + }, + "regional_facts": {}, + "agent": { + "name": "Ralph Modica", + "email": "ralph@compass.com", + "telephone": "9174070084" + } + }, + "2103084089786276025": { + "listing_id": "2103084089786276025", + "source_url": "https://www.compass.com/homedetails/1939-S-Gilpin-St-Denver-CO-80210/12Y6JU_pid/", + "retrieved_at": "2026-09-06T04:11:58.510170+00:00", + "html_sha256": "f7a8e77adb283fbde8588b9956291e4041b9146e2a180863e7df1d5dd32cbf1f", + "price": 810000, + "address": "1939 South Gilpin Street", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80210", + "neighborhood": "Evanston", + "latitude": 39.6812838, + "longitude": -104.967886, + "beds": 3, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1178, + "property_type": "Single Family", + "year_built": 1952, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "", + "features": [ + "Central AC", + "Contemporary", + "Crawl Space", + "Deck", + "Dishwasher", + "Dryer", + "Dual Pane Windows", + "Eastern Exposure", + "Forced Air", + "Garage", + "Gas Stove", + "Granite Kitchen Counter", + "Hardwood Floors", + "Laundry in Building", + "Open Kitchen", + "Parking Included", + "Patio", + "Primary Ensuite with Separate Shower", + "Range", + "Recessed Lighting", + "Refrigerator", + "Smart Thermostat", + "Stove", + "Walk-in Closet", + "Washer", + "Western Exposure" + ], + "property_facts": { + "Status": "Coming Soon", + "Property Type": "Single Family", + "MLS Type": "Residential", + "Year Built": "1952", + "Lot Size": "0.12 AC / 5,270 SF", + "County": "Denver County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Structure Type": "House", + "Architectural Style": "Contemporary, Cottage", + "Levels": "One", + "Association": "No" + }, + "agent": { + "name": "Courtney O'Shea", + "email": "courtney.oshea@compass.com", + "telephone": "3039084881" + } + }, + "2103086339581286569": { + "listing_id": "2103086339581286569", + "source_url": "https://www.compass.com/homedetails/150-Charles-St-Unit-M10-Manhattan-NY-10014/1K7C1U_pid/", + "retrieved_at": "2026-09-06T04:13:24.693168+00:00", + "html_sha256": "80319376b69aa089cd8d5fb17849523159e08eb7e23e42400c043f020bb2e2fc", + "price": 21500000, + "address": "150 Charles Street, Unit M10", + "unit": "M10", + "city": "Manhattan", + "state": "NY", + "zip": "10014", + "neighborhood": "West Village", + "latitude": 40.7338121, + "longitude": -74.0089966, + "beds": 4, + "baths_full": 4, + "baths_half": 1, + "baths_total": 4.5, + "sqft": 5612, + "property_type": "Condo", + "year_built": 2013, + "mls_number": "", + "status_text": "Contract Signed", + "days_on_market": 14, + "listed_at_ms": 1778518883287, + "description": "The only maisonette at 150 Charles Street with a private internal elevator, M10 makes its first-ever appearance on the market as one of the most significant residences within the building. Expertly redesigned by designer Sane Designs, this extraordinary townhouse seamlessly blends the privacy and scale of single-family living with the services and prestige of West Village luxury condominium living. Every inch of the home has been meticulously curated with bespoke finishes, custom architectural detailing, and a level of craftsmanship rarely seen in downtown Manhattan.\n\nA private entry welcomes you into a richly layered interior defined by custom stained white oak millwork, steel detailing, and bespoke architectural moments throughout. The dramatic great room and formal living spaces are illuminated by sculptural Apparatus fixtures, while custom-designed lighting, Phillip Jeffries wall coverings, and handcrafted steel and glass elements create a residence that feels both deeply luxurious and remarkably intimate. A custom steel fireplace anchors the living room, bringing warmth and artistry to the entertaining spaces. Designed for both entertaining and everyday living, the home features a fully integrated in-wall Sonos sound system throughout.\n\nThe custom Molteni kitchen is equally refined and functional, appointed with Alabama white marble countertops, Lefroy Brooks fixtures, and a full suite of Miele, Sub-Zero, and Wolf appliances. The kitchen opens beautifully into the surrounding front living and dining spaces.\n\nThe primary suite is a true private retreat, wrapped in Phillip Jeffries wall coverings and complemented by bespoke McEwan lighting and custom Poliform closets. Every room throughout the home reflects an uncompromising attention to detail, from the Matthew Fairbanks sconces in the primary bath and entry vestibule to the curated custom lighting installations extending into the landscaped outdoor space.\n\nDesigned by the renowned COOKFOX Architects with interiors by Alan Wanzenberg, 150 Charles has long represented the pinnacle of full-service West Village living. Residents enjoy over 40,000 square feet of private landscaped green space, a covered private driveway and parking, white-glove concierge services, and an unrivaled wellness experience including a 75-foot pool, spa facilities, fitness center, yoga studio, steam room, sauna, plunge pool, massage rooms, and private entertaining spaces.\n\nMaisonette M10 is more than a residence. It is a rare opportunity to acquire a designer townhouse within one of downtown’s most architecturally significant condominium buildings, combining the privacy and scale of a standalone home with the services and amenities of a world-class luxury property.", + "features": [ + "Primary Ensuite", + "Full-Time Doorman", + "Common Roof Deck", + "Common Garden", + "Common Outdoor Space", + "Gym", + "Health Club", + "Pool", + "Steam Room", + "Sauna", + "Playroom", + "Yoga Studio", + "Resident's Lounge", + "Common Media / Recreation Room", + "Working Fireplace", + "Built-Ins", + "Sound System", + "Private Entrance", + "High Ceilings", + "Elevator", + "Washer / Dryer", + "Washer / Dryer in Unit", + "Dryer", + "Washer", + "Central AC", + "Air Conditioning", + "Dishwasher", + "Wine Cooler", + "Gas Oven", + "Foyer", + "Powder Room", + "Home Office", + "Library / Den", + "Chef's Kitchen", + "Windowed Bathroom", + "Double Sink Bathroom", + "Northern Exposure", + "Southern Exposure", + "Bike Room", + "Cold Storage", + "Garage", + "Primary Ensuite with Separate Shower", + "Primary Ensuite with Separate Tub", + "Soaking Tub", + "Wall Oven", + "Range Hood", + "Laundry Room", + "Spa", + "Full-Time Concierge", + "Valet Parking", + "Gas Stove", + "Refrigerator", + "Security Gate", + "Common Courtyard", + "Security System", + "Island Kitchen", + "Midrise", + "Laundry in Every Unit", + "Private Storage for Sale", + "Highrise" + ], + "property_facts": { + "Status": "Contract Signed", + "Days on Market": "14", + "Pet Policy": "Allowed", + "Taxes": "$7,791 / month", + "Common Charges": "$9,015 / month", + "Min. Down Pymt": "10%", + "Total Rooms": "7.0", + "Property Type": "Condo", + "Year Built": "2013", + "County": "New York County" + }, + "regional_facts": {}, + "agent": { + "name": "Holly Parker", + "email": "holly.parker@compass.com", + "telephone": "9175877288" + } + }, + "2103096966395518345": { + "listing_id": "2103096966395518345", + "source_url": "https://www.compass.com/homedetails/1-Northside-Piers-Unit-24J-Brooklyn-NY-11249/200GB3_pid/", + "retrieved_at": "2026-09-06T04:13:25.193097+00:00", + "html_sha256": "a7ae23c8ac9146bdd7c790506b586b6e6140b8df48e1392e175a9ee3938d9d74", + "price": 2075000, + "address": "1 Northside Piers, Unit 24J", + "unit": "24J", + "city": "Brooklyn", + "state": "NY", + "zip": "11249", + "neighborhood": "Williamsburg", + "latitude": 40.719249, + "longitude": -73.963953, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1064, + "property_type": "Condo", + "year_built": 2007, + "mls_number": "", + "status_text": "Contract Signed", + "days_on_market": 93, + "listed_at_ms": 1778519895121, + "description": "Skyline living reaches a different level at Residence 24J at Northside Piers. Positioned high above the Williamsburg waterfront on the coveted northeast corner, this stunning two-bedroom, two-bathroom home captures sweeping, unobstructed views spanning Manhattan, Brooklyn, and Queens from sunrise to sunset.\n\nWrapped in floor-to-ceiling glass and flooded with natural light, the residence has been thoughtfully upgraded with custom finishes throughout. The beautifully updated kitchen seamlessly integrates a built-in bar and pantry, creating an ideal space for entertaining while maximizing storage and functionality. Outfitted with premium appliances from Sub-Zero, Bosch, and Thermador, the kitchen combines both luxury and practicality. Additional custom millwork, built-in shelving, and motorized window treatments elevate the home with a clean, modern sophistication.\n\nStep onto your private balcony and take in iconic Manhattan skyline views, including the unmistakable silhouette of the Chrysler Building. Whether enjoying your morning coffee at sunrise or watching the city light up at night, the outdoor space becomes a true extension of the home.\n\nThe spacious primary suite offers a custom walk-in closet and a spa-like bathroom complete with a soaking tub and separate glass-enclosed shower. Additional features include maple flooring throughout, a vented in-unit washer/dryer, and exceptional natural light from every room. Private storage is also available for purchase at an additional cost.\n\nResidents of Northside Piers enjoy access to an exceptional suite of luxury amenities, including a state-of-the-art fitness center, indoor swimming pool, hot tub, sauna, yoga and massage rooms, full-time concierge service, live-in superintendent, and on-site staff.\n\nLocated directly on the Williamsburg waterfront, moments from acclaimed restaurants, cafés, nightlife, and the East River Ferry, 24J offers the perfect balance of waterfront serenity and vibrant city living. Adding even more value, the residence benefits from approximately 19 years remaining on a 421-a tax abatement — an increasingly rare advantage in today’s market.\n\nA truly special waterfront residence with views that simply never get old.\n\n", + "features": [ + "Full-Time Doorman", + "Part-Time Doorman", + "Concierge", + "Balcony", + "Common Roof Deck", + "Gym", + "Pool", + "Indoor Pool", + "Hot Tub", + "Sauna", + "Playroom", + "Resident's Lounge", + "Common Media / Recreation Room", + "Built-Ins", + "Elevator", + "Washer / Dryer in Unit", + "Laundry in Building", + "Air Conditioning", + "Dishwasher", + "Renovated Kitchen", + "Northern Exposure", + "Eastern Exposure", + "Walk-in Closet", + "Bike Room", + "Private Storage Included", + "Garage", + "Basement", + "Soaking Tub", + "Full-Time Concierge", + "Pantry", + "Refrigerator", + "Range", + "Private Balcony", + "Highrise" + ], + "property_facts": { + "Status": "Contract Signed", + "Days on Market": "93", + "Pet Policy": "Allowed", + "Taxes": "$1,510 / month", + "Common Charges": "$10 / month", + "Min. Down Pymt": "20%", + "Total Rooms": "4.0", + "Property Type": "Condo", + "MLS Type": "Condo", + "Year Built": "2007", + "County": "Kings County", + "Buyer's Agent Compensation": "2%" + }, + "regional_facts": {}, + "agent": { + "name": "Erion Ahmetaj", + "email": "erion.ahmetaj@compass.com", + "telephone": "9175975736" + } + }, + "2103097327265073649": { + "listing_id": "2103097327265073649", + "source_url": "https://www.compass.com/homedetails/669-Saint-Marks-Ave-Unit-2B-Brooklyn-NY-11216/21321X_pid/", + "retrieved_at": "2026-09-06T04:13:26.059641+00:00", + "html_sha256": "fb29422c1f03b2fb54893a838336307f09164f566f28204e5e50b3cd255325f3", + "price": 1799000, + "address": "669 Saint Marks Avenue, Unit 2B", + "unit": "2B", + "city": "Brooklyn", + "state": "NY", + "zip": "11216", + "neighborhood": "Crown Heights", + "latitude": 40.6754594, + "longitude": -73.9509199, + "beds": 3, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 1285, + "property_type": "Condo", + "year_built": 2022, + "mls_number": "", + "status_text": "Active", + "days_on_market": 117, + "listed_at_ms": 1778519938118, + "description": "Residence 2B at 669 Saint Mark’s Avenue is a thoughtfully designed three-bedroom, two-and-a-half-bath home that pairs cutting-edge design with elevated everyday living in the heart of Crown Heights. Built with Passive House principles, the residence emphasizes exceptional energy efficiency, comfort, and modern sustainability without compromising on style. The expansive open-concept living and dining area is framed by triple-pane tilt-and-turn windows that capture beautiful tree-top views and flood the home with natural light, while seamlessly extending onto a private 119-square-foot terrace. At the center of the home, the striking fully windowed kitchen is a true design statement, featuring quartz and wood block countertops, glass finishes, a breakfast bar, and premium appliances including an Elica NikolaTesla Switch induction cooktop, Liebherr refrigerator, and Miele convection oven, all artfully elevated on Lago’s signature glass legs for a dramatic floating effect.\n\nThe spacious primary suite offers a peaceful retreat, complete with generous closet space and a beautifully appointed en-suite bath featuring Lago double vanities, tankless toilets, and a spa-like shower with rainfall and handheld fixtures in matte black finishes. Positioned privately on the opposite wing of the home, two additional queen-sized bedrooms provide flexibility for guests, family, or a home office and share a refined marble-clad hall bath. A chic powder room with Lago’s floating sink and interactive mirror further reflects the home’s distinctive design sensibility, while private basement storage adds convenience to this well-considered residence.\n\nSet in one of Brooklyn’s most vibrant and evolving neighborhoods, Crown Heights offers an ideal blend of historic character and contemporary energy. Tree-lined blocks of classic brownstones meet an ever-growing collection of acclaimed restaurants, cafés, boutiques, and cultural destinations. Residents enjoy close proximity to Prospect Park, the Brooklyn Botanic Garden, the Brooklyn Museum, and excellent transportation options including the 2, 3, 4, 5, S, A, and C trains, offering seamless access throughout Brooklyn and Manhattan.", + "features": [ + "Primary Ensuite", + "Remote Doorman", + "Private Terrace", + "Common Garden", + "Common Outdoor Space", + "Hardwood Floors", + "High Ceilings", + "Oversized Windows", + "Elevator", + "Walk Up", + "Washer / Dryer in Unit", + "Central AC", + "Electric Oven", + "Marble Bathroom", + "Double Sink Bathroom", + "Eastern Exposure", + "Walk-in Closet", + "Video Intercom", + "Video Security", + "Bike Room", + "Cold Storage", + "Private Storage Included", + "Central Heating", + "Electric Stove", + "Island Kitchen", + "Midrise", + "Parking Included", + "Northeastern Exposure", + "Laundry in Every Unit", + "Common Courtyard" + ], + "property_facts": { + "Status": "Active", + "Days on Market": "117", + "Pet Policy": "Allowed", + "Taxes": "$1,041 / month", + "Common Charges": "$948 / month", + "Min. Down Pymt": "10%", + "Total Rooms": "5.5", + "Property Type": "Condo", + "MLS Type": "Condominium", + "Year Built": "2022", + "County": "Kings County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": {}, + "agent": { + "name": "Marta Maletz", + "email": "marta@compass.com", + "telephone": "9175998181" + } + }, + "2103113958138223833": { + "listing_id": "2103113958138223833", + "source_url": "https://www.compass.com/homedetails/3770-May-St-Los-Angeles-CA-90066/1IHZX0_pid/", + "retrieved_at": "2026-09-06T04:12:22.809842+00:00", + "html_sha256": "4b01a6a620508e5aba203ee7adec49965d6a5cadcabf01ede6ed7d6c578e7995", + "price": 3415000, + "address": "3770 May Street", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90066", + "neighborhood": "Mar Vista", + "latitude": 34.0020968, + "longitude": -118.4393333, + "beds": 4, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 2280, + "property_type": "Single Family", + "year_built": null, + "mls_number": "26832149", + "status_text": "Sold", + "days_on_market": 31, + "listed_at_ms": 1778482800000, + "description": "Built and designed by Bespoke Homes California, this Recrafted Residence features 4-bedrooms, 3.5-baths spanning 2,280 SF on a 5,399 SF lot with large oversized 2-car garage. A Recrafted Residence is a transformative, to-the-studs major remodel and addition, with almost all new components comparable to a new construction home. Pitched and vaulted ceilings, skylights, and expansive windows fill the interiors with natural light in this designer-done single story. Wide-plank engineered oak floors throughout lead to a living room centered around a stone fireplace with built-in cabinetry. The living room overlooks the true chef's kitchen, appointed with dual dishwashers, dual copper sinks, oversized Thermador refrigerator and freezer, custom cabinetry, and Michelangelo marble perimeter countertops. The striking soapstone island counter anchors the substantial eat-in bar. The kitchen connects seamlessly to the dining area featuring a built-in wet bar and wine refrigerator. Large sliding glass doors from the main living areas open to a turf yard, creating a natural flow between interior spaces and the outdoors. The tranquil primary suite offers a travertine fireplace, spa-like bath with soaking tub and tile and stone shower, and direct yard access. Each secondary bedroom en suite is curated with tile and stone selections. A private office with custom-built-ins and a Pinky's glass-and-iron door provides flexibility for work or creative pursuits. Smart home technology, a laundry room, oversized garage and a charming front porch overlooking a grassy, fenced front yard complete this contemporary retreat. An exceptional expression of single-level living, ideally located in prime Mar Vista near the beach, and moments from neighborhood coffee shops, dining, and the vibrant Venice Boulevard corridor.", + "features": [ + "Garage", + "Washer / Dryer in Unit", + "Air Conditioning", + "Parking Included", + "Unfurnished" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "26832149", + "Days on Market": "31", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Lot Size": "0.12 AC / 5,399 SF", + "County": "Los Angeles County" + }, + "regional_facts": { + "Zoning": "R1V2", + "Style": "Traditional", + "Property Attached YN": "false", + "Parcel Number": "4246032047", + "Living Area": "2280", + "Source Living Area": "Appraiser", + "Area": "Palms - Mar Vista (C13)", + "Lot Size Area": "5399", + "Source Lot Size Area": "Assessor", + "Assessor Parcel Number": "4246-032-047", + "Directions": "N of Venice, E of Beethoven, S of Palms, W of Centinela" + }, + "agent": { + "name": "Ryan Jancula", + "email": "ryan.jancula@compass.com", + "telephone": "3107296852" + } + }, + "2103119594485966337": { + "listing_id": "2103119594485966337", + "source_url": "https://www.compass.com/homedetails/3822-22nd-St-San-Francisco-CA-94114/1QJFHE_pid/", + "retrieved_at": "2026-09-06T04:13:43.042569+00:00", + "html_sha256": "de3a51b77869dd61a4f8b1f1f8f2558dd2aaf9aae752876ec49bdc569821ed88", + "price": 2500000, + "address": "3822 22nd Street", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94114", + "neighborhood": "Eureka Valley", + "latitude": 37.75481, + "longitude": -122.433175, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": 1188, + "property_type": "Condo", + "year_built": 1900, + "mls_number": "ML82046657", + "status_text": "Sold", + "days_on_market": 5, + "listed_at_ms": 1778742000000, + "description": "Nestled on a premier flat block in the heart of Noe Valley, this timeless 2BD/2BA Victorian-style condo masterfully pairs period grandeur with contemporary flow. The main level is defined by impressive 11-foot ceilings, creating an extraordinary sense of volume and light. This vertical scale is complemented by classic crown molding and a light-filled living room anchored by a stately fireplace and signature bay windows. At the heart of the home, a formal dining room transitions seamlessly into a European-inspired kitchen, a chefs delight featuring a Bertazzoni gas range, granite counters, and a sun-drenched skylight. The layout offers ultimate flexibility with a versatile front bedroom/office and a spacious rear family room that serves as a bridge to the outdoors. Open the doors to your private deck and a lush, shared garden oasis framed by mature lemon and orange trees. Uniquely, the property includes approximately 1,000 sq. ft. of undeveloped attic space, offering massive storage or visionary potential for expansion. Complete with in-unit laundry, two deeded parking spaces, and a Walk Score of 94, this home is just steps from the vibrant boutiques of 24th Street and the greenery of Mission Dolores Park.", + "features": [ + "Fireplace", + "Private Outdoor Space" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "ML82046657", + "Days on Compass": "5", + "HOA Fees": "$334 / month", + "Property Type": "Condo", + "MLS Type": "Condo/Coop/TIC/Loft / Condominium", + "Year Built": "1900", + "County": "San Francisco County" + }, + "regional_facts": { + "MLS City Name": "San Francisco", + "Building Type": "Condo", + "Complex Name": "3822-3822-A 22nd Street", + "Style": "Victorian", + "Garage Spaces": "1", + "Cross Street": "Castro" + }, + "agent": { + "name": "Carol Conte", + "email": "carol.conte@compass.com", + "telephone": "6502792139" + } + }, + "2103137999553056777": { + "listing_id": "2103137999553056777", + "source_url": "https://www.compass.com/homedetails/193-Beacon-St-Unit-PH-Boston-MA-02116/27HY1C_pid/", + "retrieved_at": "2026-09-06T04:11:11.303371+00:00", + "html_sha256": "4fc2161c2dfa0537242d630a8618e17cc041eea9ea61d473a28f6d4930a04566", + "price": 2750000, + "address": "193 Beacon Street, Unit PH", + "unit": "PH", + "city": "Boston", + "state": "MA", + "zip": "02116", + "neighborhood": "Back Bay", + "latitude": 42.3541025, + "longitude": -71.0764149, + "beds": 3, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 2030, + "property_type": "Condo", + "year_built": 1900, + "mls_number": "73519696", + "status_text": "Sold", + "days_on_market": 14, + "listed_at_ms": 1778817600000, + "description": "193 Beacon Street presents an exceptional opportunity to own a refined, full-floor home in the heart of Back Bay just 2 blocks from the Public Garden. This elegant 3-bedroom, 2.5-bath residence is defined by grand proportions, soaring ceilings at over 10 feet on each floor, and architectural details, including intricate moldings and expansive windows that flood the home with natural light. A gracious living + dining space offers an ideal setting for both everyday living and entertaining, seamlessly complemented by an updated kitchen, custom cabinetry, and sleek finishes. The primary suite features an expanded walk-in closet. Custom built-in bay window seating in both front-facing bays, with storage drawers and tailored cushions adds charm and functionality. Crowning the home is a private roof deck perfect for relaxing or entertaining against the iconic backdrop of the Back Bay skyline.1 garage parking space completes this home located in one of Boston's most desirable addresses.", + "features": [ + "Air Conditioning", + "Garage", + "Common Outdoor Space", + "Private Outdoor Space", + "Attached Garage" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "73519696", + "Days on Market": "14", + "Taxes": "$28,349 / year", + "HOA Fees": "$718 / month", + "Property Type": "Condo", + "MLS Type": "Condominium/Co-Op / Condo", + "Year Built": "1900", + "County": "Suffolk County" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "Back Bay", + "Area": "MA-Boston-Back Bay, MA-Boston", + "Style": "Rowhouse", + "Garage Spaces": "1", + "Open Parking Spaces": ".00", + "Parking Spaces Total": "1", + "Unit Placement": "Upper" + }, + "agent": { + "name": "John Gould", + "email": "john.gould@compass.com", + "telephone": "7818204132" + } + }, + "2103143907633028641": { + "listing_id": "2103143907633028641", + "source_url": "https://www.compass.com/homedetails/6190-Temple-Hill-Dr-Los-Angeles-CA-90068/1HZITQ_pid/", + "retrieved_at": "2026-09-06T04:12:23.126423+00:00", + "html_sha256": "c8b85cfb0014211b80318cc10e8df1d1a08cbc5e099d84b04ae0914719db05ae", + "price": 1500143, + "address": "6190 Temple Hill Drive", + "unit": "", + "city": "Los Angeles", + "state": "CA", + "zip": "90068", + "neighborhood": "Hollywood Hills East", + "latitude": 34.1114341, + "longitude": -118.3246202, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 1330, + "property_type": "Single Family", + "year_built": 1959, + "mls_number": "26832357", + "status_text": "Sold", + "days_on_market": 95, + "listed_at_ms": 1778482800000, + "description": "Welcome to this 1959 Mid-Century home by Joseph Railla, AIA, known as Residence Yoshikawa. Thoughtfully updated with a refined, Zen-inspired sensibility, the home blends its original architectural integrity with a calm, material-driven design approach. Set high above Beachwood Canyon, this 2-bedroom, 2-bathroom + office home captures sweeping views of the Downtown Los Angeles skyline. Expansive walls of glass invite natural light throughout while framing the surrounding canyon landscape. Step through the entry, where the gentle sound of water introduces the home's tranquil atmosphere, and continue through double doors into the interior. An office off the foyer provides a flexible work-from-home space. The open living and dining areas, anchored by a period barrel fireplace, flow seamlessly to a covered Ipe wood deck accessible from the living room, kitchen, and primary bedroom creating effortless indoor-outdoor living with an eastern orientation for morning light. The kitchen offers custom finishes and direct access to the deck, ideal for outdoor dining, relaxing, and entertaining. The primary suite features an en-suite bath and a wall of glass with expansive views, while the secondary bedroom complete with its own bath functions equally well as a guest suite, office, or creative studio. A curated palette of stone, glass, and wood adds warmth and continuity throughout. Select design enhancements include hand-set stonework and custom surfaces that emphasize texture, balance, and connection to the natural setting. Below, a garden area with citrus trees offers a peaceful outdoor retreat. Additional features include hardwood floors, central HVAC, and an attached one-car garage with direct access from the second bedroom. A rare opportunity to own a timeless architectural home that pairs Mid-Century design with a serene, modern sensibility.", + "features": [ + "Garage", + "Washer / Dryer in Unit", + "Air Conditioning", + "Parking Included", + "Unfurnished" + ], + "property_facts": { + "Status": "Sold", + "MLS #": "26832357", + "Days on Market": "95", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1959", + "Lot Size": "0.11 AC / 4,953 SF", + "County": "Los Angeles County" + }, + "regional_facts": { + "Water Front": "None", + "Zoning": "LAR1", + "Style": "Mid-Century", + "Cross Streets": "Gower & Temple Hill", + "Property Attached YN": "false", + "Parcel Number": "5585028017", + "Living Area": "1330", + "Source Living Area": "Other", + "Area": "Hollywood Hills East (C30)", + "Lot Size Area": "4953", + "Source Lot Size Area": "Assessor", + "Assessor Parcel Number": "5585-028-017", + "Directions": "Gower north of Franklin, left on Temple Hill", + "School District": "Los Angeles Unified", + "High School District": "Los Angeles Unified" + }, + "agent": { + "name": "Monique Carrabba", + "email": "monique.carrabba@compass.com", + "telephone": "3238992900" + } + }, + "2103148132718454937": { + "listing_id": "2103148132718454937", + "source_url": "https://www.compass.com/homedetails/6228-NW-4th-Ave-Miami-FL-33150/1C880T_pid/", + "retrieved_at": "2026-09-06T04:12:42.501267+00:00", + "html_sha256": "bb3c29c7a8118d1bb01be02402c406a5d2186d75bd7b573302c87d2bfdbf7b52", + "price": 609900, + "address": "6228 Northwest 4th Avenue", + "unit": "", + "city": "Miami", + "state": "FL", + "zip": "33150", + "neighborhood": "Edison", + "latitude": 25.832904, + "longitude": -80.203701, + "beds": null, + "baths_full": null, + "baths_half": null, + "baths_total": null, + "sqft": 1639, + "property_type": "Multi Family", + "year_built": 1985, + "mls_number": "A12011679", + "status_text": "Active", + "days_on_market": 109, + "listed_at_ms": 1779163200000, + "description": "Investor Opportunity ! Spacious Duplex in the heart of Miami’s Little River/Edison district. This property features a 3BR/1BA unit and a 2BR/1BA unit, on a 5,720 sf lot, making it perfect for rental income or a live-and-rent. Recently replaced a/c system. Private front entrance, with driveway parking, and a shared fenced yard with the neighboring unit. Central location close to Miami Edison Senior High, I-95, Wynwood, Design District, and Midtown.", + "features": [ + "Air Conditioning" + ], + "property_facts": { + "Status": "Active", + "MLS #": "A12011679", + "Days on Market": "109", + "Taxes": "$756 / month", + "Property Type": "Multi Family", + "MLS Type": "Multi-Family Income / Duplex", + "Year Built": "1985", + "Lot Size": "0.13 AC / 5,720 SF", + "County": "Miami-Dade County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Subdivision": "GORDON DALE PK", + "Complex Name": "GORDON DALE PK", + "Style": "Duplex", + "Waterfront": "No", + "Area": "31", + "Total Units": "2", + "Num Stories": "1", + "Sq Ft Total": "1651", + "Sq Ft Liv Area": "1639.0", + "AdjustedAreaSF": "1642.0", + "Year Built Description": "Resale" + }, + "agent": { + "name": "Jorge Andrade", + "email": "jorge.andrade@compass.com", + "telephone": "7865876183" + } + }, + "2103155017961921225": { + "listing_id": "2103155017961921225", + "source_url": "https://www.compass.com/homedetails/3333-E-Florida-Ave-Unit-78-Denver-CO-80210/127M20_pid/", + "retrieved_at": "2026-09-06T04:11:58.925037+00:00", + "html_sha256": "582c7b25999cdd9bae1b85a4aa9bf7b9dea53f53194ee6e74b7f6f88dbccaeb2", + "price": 785000, + "address": "3333 East Florida Avenue, Unit 78", + "unit": "78", + "city": "Denver", + "state": "CO", + "zip": "80210", + "neighborhood": "Cory-Merrill", + "latitude": 39.6898712, + "longitude": -104.9477922, + "beds": 2, + "baths_full": 1, + "baths_half": 1, + "baths_total": 3, + "sqft": 2604, + "property_type": "Single Family", + "year_built": 1982, + "mls_number": "5137405", + "status_text": "Closed", + "days_on_market": 4, + "listed_at_ms": 1778479200000, + "description": "Beautiful patio home in sought after Corey Merrill neighborhood that is located in the lock and leave Biscayne community. This property has an open layout that is awash in natural light with multiple windows and skylight(s). The light filled south facing living room, dining room, sun room and the study/den all flow into each other creating a spacious open feel that makes it a great space for connection and entertaining. There is also a half bathroom on the main floor.The kitchen has an eat in breakfast nook, plenty of counter space, a wall of cabinets and a sliding door leading out to the deck. The main floor primary bedroom has a walk in closet and an en-suite bathroom with convenient main floor washer/dryer. There is also a laundry room in the basement. The basement includes a large rec room, another bedroom with en-suite full bathroom, plus a a large storage/utility area. There is an expansive deck area located off the kitchen and sun room that makes for a wonderful private space for relaxing or entertaining.The Biscayne subdivision is ideally located just minutes away from restaurants, shopping, Cherry Creek Mall, Wash Park, RTD Rail line with quick access to I25.", + "features": [ + "Attached Garage", + "Basement", + "Breakfast Bar", + "Carpet Floors", + "Central AC", + "Deck", + "Dishwasher", + "Dryer", + "Eat-in Kitchen", + "Fireplace", + "Forced Air", + "Garage", + "Granite Kitchen Counter", + "High Ceilings", + "Microwave", + "Patio", + "Pet Friendly", + "Range", + "Refrigerator", + "Snow Removal Included", + "Tile Floors", + "Walk-in Closet", + "Washer" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "5137405", + "Days on Compass": "4", + "Taxes": "$3,437 / year", + "HOA Fees": "$4,140 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1982", + "Lot Size": "0.10 AC / 4,180 SF", + "County": "Denver County" + }, + "regional_facts": { + "Structure Type": "House", + "Architectural Style": "Level, House Faces West, Paved, Eat-in Kitchen, Separate Dining Room, Skylights, Sun Room, 3/4 Primary Bath, Patio Home", + "Levels": "One", + "Subdivision Name": "Biscayne", + "Association": "Yes", + "Multiple Associations": "No", + "Basement": "Yes" + }, + "agent": { + "name": "John Farley", + "email": "john.farley@compass.com", + "telephone": "3034756269" + } + }, + "2103165708034858225": { + "listing_id": "2103165708034858225", + "source_url": "https://www.compass.com/homedetails/141-Lefferts-Pl-Unit-GARDEN-Brooklyn-NY-11238/27I7TQ_pid/", + "retrieved_at": "2026-09-06T04:13:26.915611+00:00", + "html_sha256": "d0612ef59a1b857d60875841250eb4e275655c278ae7b424ad2189032f9fb20a", + "price": 4500, + "address": "141 Lefferts Place, Unit GARDEN", + "unit": "GARDEN", + "city": "Brooklyn", + "state": "NY", + "zip": "11238", + "neighborhood": "Bedford-Stuyvesant", + "latitude": 40.68087209999999, + "longitude": -73.9579297, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": 0, + "property_type": "Apartment", + "year_built": 1931, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 47, + "listed_at_ms": 1778528089793, + "description": "Situated at the crossroads of Clinton Hill and Bedford-Stuyvesant, 141 Lefferts Place offers a beautifully reimagined first-floor residence within a classic Brooklyn brownstone, blending timeless old-world charm with modern living. This fully renovated two-bedroom, two-bathroom home features hardwood floors, a striking marble mantle, a modern open kitchen, and thoughtfully curated finishes throughout. Set on a charming tree-lined block, the home is moments from beloved neighborhood cafés, shops, parks, and convenient transportation, offering the very best of Brooklyn living.", + "features": [ + "Private Patio", + "Hardwood Floors", + "Walk Up", + "Eat-in Kitchen", + "Lowrise", + "Garden Unit" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "47", + "Rental Incentives": "No Fee", + "Available Date": "05/11/2026", + "Lease Term": "Lease Length: 12 Months, Lease Length Min/Max: 12-12 mo", + "Total Rooms": "4.0", + "Property Type": "Apartment", + "MLS Type": "House/Building", + "Year Built": "1931", + "Lot Size": "1,800 SF / 20' x 90'", + "County": "Kings County" + }, + "regional_facts": {}, + "agent": { + "name": "Marta Maletz", + "email": "marta@compass.com", + "telephone": "9175998181" + } + }, + "2103170383086404873": { + "listing_id": "2103170383086404873", + "source_url": "https://www.compass.com/homedetails/725-NE-76th-St-Miami-FL-33138/1CWMSP_pid/", + "retrieved_at": "2026-09-06T04:12:44.631794+00:00", + "html_sha256": "8fc54bffb4e230334cc6e4dc0c658328568f70b54fbf3cd42c44d209f6c14a36", + "price": 2600000, + "address": "725 Northeast 76th Street", + "unit": "", + "city": "Miami", + "state": "FL", + "zip": "33138", + "neighborhood": "Aqua Marine", + "latitude": 25.8452621, + "longitude": -80.1817088, + "beds": 5, + "baths_full": 3, + "baths_half": 1, + "baths_total": 3.5, + "sqft": 2839, + "property_type": "Single Family", + "year_built": 1940, + "mls_number": "A12018842", + "status_text": "Closed", + "days_on_market": 54, + "listed_at_ms": 1778817600000, + "description": "Welcome home to this fully renovated 5-bedroom, 3.5-bathroom residence which blends together timeless character with sophisticated modern living along the tree lined streets of Belle Meade. Thoughtfully redesigned while preserving several original architectural charm elements, the home features a seamless open layout curated for today’s lifestyle. A top-of-the-line chef’s kitchen anchors the living and dining spaces, creating an effortless flow for both everyday living and entertaining.\r\n\r\nDesigned by renowned French interior designer Cochet Pais, every detail throughout the home was carefully considered with elevated finishes, clean lines, and a refined yet warm aesthetic. Expansive indoor and outdoor integration leads to a beautifully landscaped backyard with pool, offering the ideal Miami lifestyle experience.\r\n\r\nLocated within Belle Meade’s guard-gated community the property offers an unparalleled lifestyle of seclusion while being just steps away from area shops and restaurants and minutes to top schools Miami Country Day and Cushman School.", + "features": [ + "Heated Pool", + "Air Conditioning", + "Dishwasher", + "Hardwood Floors", + "Parking Included" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "A12018842", + "Days on Market": "54", + "Taxes": "$22,654 / year", + "Property Type": "Single Family", + "MLS Type": "Single Family / Single", + "Year Built": "1940", + "Lot Size": "0.14 AC / 6,250 SF", + "County": "Miami-Dade County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision": "BELLE MEADE", + "Style": "Pool Only", + "Waterfront": "No", + "View": "None", + "Area": "32", + "Num Stories": "2", + "Sq Ft Total": "2851", + "Sq Ft Liv Area": "2839.0", + "Year Built Description": "Resale" + }, + "agent": { + "name": "Tristan Alexander", + "email": "tristan.alexander@compass.com", + "telephone": "3055429495" + } + }, + "2103180070066443385": { + "listing_id": "2103180070066443385", + "source_url": "https://www.compass.com/homedetails/9955-SW-215th-St-Miami-FL-33189/1DBOLO_pid/", + "retrieved_at": "2026-09-06T04:12:50.253085+00:00", + "html_sha256": "44a99d95eabc1f2fe7d16428017e16b1f0dca27ad3317d32022c7697e001fdf3", + "price": 500000, + "address": "9955 Southwest 215th Street", + "unit": "", + "city": "Cutler Bay", + "state": "FL", + "zip": "33189", + "neighborhood": "Cutler Bay", + "latitude": 25.5676044, + "longitude": -80.3533473, + "beds": 2, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": null, + "property_type": "Single Family", + "year_built": 1960, + "mls_number": "A12018658", + "status_text": "Closed", + "days_on_market": 88, + "listed_at_ms": 1778817600000, + "description": "Welcome to this charming Cutler Bay residence. This 2-bedroom, 1-bath home features a bright, open layout with abundant natural light and a seamless flow between living spaces. The interior showcases clean, modern finishes and a thoughtfully updated kitchen with stainless steel appliances.\r\n\r\nOutdoor areas are designed to embrace the South Florida lifestyle, highlighted by a private pool, expansive patio, and a covered pergola perfect for relaxing or hosting. The spacious yard provides privacy and versatility. Enjoy convenient access to parks, shopping, dining, and major roadways at this home.", + "features": [ + "Below Ground Pool", + "Air Conditioning", + "Parking Included" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "A12018658", + "Days on Market": "88", + "Taxes": "$7,880 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single", + "Year Built": "1960", + "Lot Size": "0.17 AC / 7,500 SF", + "County": "Miami-Dade County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision": "CUTLER RIDGE SEC 7", + "Complex Name": "CUTLER RIDGE SEC 7", + "Style": "Pool Only", + "Waterfront": "No", + "View": "None", + "Area": "60", + "Num Stories": "1", + "AdjustedAreaSF": "1011.0", + "Year Built Description": "Resale" + }, + "agent": { + "name": "Tristan Alexander", + "email": "tristan.alexander@compass.com", + "telephone": "3055429495" + } + }, + "2103199530785366897": { + "listing_id": "2103199530785366897", + "source_url": "https://www.compass.com/homedetails/1425-Brickell-Ave-Unit-42F-Miami-FL-33131/1D84HX_pid/", + "retrieved_at": "2026-09-06T04:10:32.748135+00:00", + "html_sha256": "d29d7f657f1421a2e6df69fa15f6374ff03011e0a7fbb8b29aecf885c01151a0", + "price": 11750000, + "address": "1425 Brickell Avenue, Unit 42F", + "unit": "42F", + "city": "Miami", + "state": "FL", + "zip": "33131", + "neighborhood": "Brickell", + "latitude": 25.759088, + "longitude": -80.19181669999999, + "beds": 3, + "baths_full": 4, + "baths_half": 1, + "baths_total": 4.5, + "sqft": 3913, + "property_type": "Condo", + "year_built": 2003, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Floating above the glittering waters of Biscayne Bay, this extraordinary corner residence at the iconic Four Seasons Miami is a masterclass in contemporary luxury. Encompassing 3,913 SF, the home offers three bedrooms, four-and-a-half baths, and awe-inspiring panoramic views spanning Biscayne Bay, Miami Beach, the Atlantic Ocean, Key Biscayne, and the city skyline.. an ever-changing canvas seen from nearly every room.\n\nCompleted in December 2023, the residence was entirely reimagined with a full new build, including electrical, plumbing, and AC systems, and meticulously designed for both beauty and function with exceptional storage throughout. A private elevator lobby, custom built to mirror the residence’s design, provides a grand and seamless arrival.\n\nThe expansive living and dining spaces are enveloped in floor-to-ceiling glass, bathing the interiors in natural light and framing uninterrupted water views from every angle. Custom millwork doors and casings, Holly Hunt wallcoverings, bespoke cabinetry, and wide-plank custom wood tile flooring from Opustone create a refined yet warm aesthetic.\n\nThe chef’s kitchen is a statement of form and function, featuring Italian Stosa cabinetry, slab marble surfaces, an Opustone center island, and top-of-the-line appliances, with direct access to a terrace ideal for elegant indoor-outdoor living.\n\nThe private primary suite is a serene sanctuary, offering a private terrace, custom walk-in closets, and a gorgeous spa-inspired bathroom wrapped in exquisite slab marble with a sunken tub and breathtaking Biscayne Bay views. Each additional bedroom is thoughtfully designed with custom Onare cabinetry and luxurious en-suite baths.\n\nAdditional features include custom closets throughout, custom millwork in all baths, Waterworks bath hardware in polished nickel, custom Willmett door hardware, Harmon hinged doors throughout, Control4 lighting, and two parking spaces with valet service.\n\nResidents enjoy the world-class, five-star amenities synonymous with the Four Seasons lifestyle. Perfectly positioned in a prime location in the heart of Brickell, this residence offers effortless access to Miami’s most coveted destinations. Just minutes from Coconut Grove, and approximately 10 minutes to Miami Beach and Key Biscayne, residents enjoy the ideal balance of vibrant city living, waterfront serenity, and world-class dining, shopping, and cultural experiences.", + "features": [ + "Doorman", + "Concierge", + "Security Patrol", + "Elevator", + "Garage", + "Gym", + "Pool", + "Resident's Lounge", + "Common Media / Recreation Room", + "Billiards Room", + "Heated Pool", + "Total Renovation", + "Renovated Bath", + "Renovated Kitchen", + "Renovated Kitchen and Bath", + "Dryer", + "Washer", + "Laundry in Building", + "Air Conditioning", + "Dishwasher", + "Wine Cooler", + "Double Oven", + "Electric Stove", + "Refrigerator", + "Chef's Kitchen", + "Wall Oven", + "Marble Bathroom", + "Jacuzzi Tub", + "Double Sink Bathroom", + "Floor to Ceiling Windows", + "Window Treatments", + "Crown Mouldings", + "Built-Ins", + "Private Entrance", + "High Ceilings", + "Recessed Lighting", + "Walk-in Closet", + "California Closet", + "Custom Closet", + "Video Security", + "Primary Ensuite with Separate Shower", + "Primary Ensuite with Separate Tub", + "Eastern Exposure", + "Primary Ensuite", + "Spa", + "On Site Restaurant", + "Full-Time Concierge", + "Valet Parking", + "Smart Thermostat", + "Common Sauna", + "Freezer", + "Security Gate", + "Common Hot Tub", + "Island Kitchen", + "Security Staff", + "Assigned Parking", + "Private Balcony", + "Luxury", + "Highrise" + ], + "property_facts": { + "Status": "Coming Soon", + "Pet Policy": "Allowed", + "HOA Fees": "$6,643 / month", + "Property Type": "Condo", + "MLS Type": "Condo/Co-Op/Villa/Townhouse", + "Year Built": "2003", + "County": "Miami-Dade County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision": "Four Seasosn Brickell", + "Waterfront": "Yes", + "Area": "41", + "Sq Ft Liv Area": "3913.0" + }, + "agent": { + "name": "Audrey Ross", + "email": "audrey.ross@compass.com", + "telephone": "3056614003" + } + }, + "2103204820025286625": { + "listing_id": "2103204820025286625", + "source_url": "https://www.compass.com/homedetails/90-Revere-St-Unit-3-Boston-MA-02114/1ZGL6K_pid/", + "retrieved_at": "2026-09-06T04:11:11.561342+00:00", + "html_sha256": "055929458981b503befa8d29ce8d37a34b43de84f5c9e3be52211ff11a21d758", + "price": 3500000, + "address": "90 Revere Street, Unit 3", + "unit": "3", + "city": "Boston", + "state": "MA", + "zip": "02114", + "neighborhood": "Beacon Hill", + "latitude": 42.3595047, + "longitude": -71.06969029999999, + "beds": 3, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 1800, + "property_type": "Condo", + "year_built": 2027, + "mls_number": "", + "status_text": "Coming Soon", + "days_on_market": null, + "listed_at_ms": null, + "description": "Introducing Unit 3 at 90 Revere St., a boutique elevator building ideally situated in the heart of Beacon Hill. Thoughtfully crafted for effortless single-level living, Residence 3 blends timeless design with elevated finishes. White oak hardwood floors, solid wood doors, and polished nickel hardware create a warm yet sophisticated aesthetic throughout the home. The chef’s kitchen is a true centerpiece, featuring custom two-tone shaker cabinetry, Taj Mahal quartzite countertops and full-height backsplash, and a fully integrated suite of Miele appliances, with the option to upgrade to a statement La Cornue range. The elegant living area is anchored by a striking lilac marble fireplace, offering both warmth and architectural character. The serene primary suite is complemented by a spa-inspired bath adorned with Dolomite marble finishes, mosaic tile flooring, and Kallista fixtures. The secondary bath is equally refined, showcasing Bianco Orion marble, a custom vanity, and unlacquered brass fixtures. Residents are welcomed through a beautifully appointed common foyer featuring classic black-and-white marble mosaic flooring, a dramatic statement chandelier, and elevator access that opens directly into the unit. Additional highlights include oversized deeded storage with elevator access and the opportunity to purchase deeded garage parking located less than 100 feet from the building. A rare opportunity to own a meticulously curated residence in one of Boston’s most coveted neighborhoods.\n", + "features": [ + "Elevator", + "Washer / Dryer in Unit", + "Central AC", + "Central Heating", + "Fireplace", + "Private Storage Included" + ], + "property_facts": { + "Status": "Coming Soon", + "HOA Fees": "$889 / month", + "Property Type": "Condo", + "Year Built": "2027", + "County": "Suffolk County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": { + "Town": "Boston", + "MLS Area": "Beacon Hill", + "Area": "MA-Boston, MA-Boston-Beacon Hill" + }, + "agent": { + "name": "Alex Biega", + "email": "alex.biega@compass.com", + "telephone": "5083802231" + } + }, + "2103225906477497457": { + "listing_id": "2103225906477497457", + "source_url": "https://www.compass.com/homedetails/2311-Westoak-Dr-Austin-TX-78704/1FWHEH_pid/", + "retrieved_at": "2026-09-06T04:10:45.321534+00:00", + "html_sha256": "a07f5b06e255911e95c7f163c070f1d04d274a1e5fb94c0511e18240f0c5c17d", + "price": 2695000, + "address": "2311 Westoak Drive", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78704", + "neighborhood": "Barton Hills", + "latitude": 30.2427389, + "longitude": -97.7856517, + "beds": 4, + "baths_full": 4, + "baths_half": 1, + "baths_total": 4.5, + "sqft": 3662, + "property_type": "Single Family", + "year_built": 2018, + "mls_number": "1726892", + "status_text": "Active", + "days_on_market": 102, + "listed_at_ms": 1779771600000, + "description": "Nestled on a quiet side street beneath a canopy of heritage oak trees, this stunning Moazami custom home sits on a spacious lot just under a quarter acre in one of the most coveted pockets of 78704. Enjoy the rare ability to walk to top-rated schools like St. Mark’s and Barton Hills Elementary, while being just moments from the vibrant dining and entertainment scene that defines the area - steps from the historic Broken Spoke and Matt’s El Rancho, and minutes to Uchi, Odd Duck, and Alamo Drafthouse.\n\nThe home offers an exceptionally functional and well designed layout, with a full guest suite and ensuite bath plus a private office on the main level. The kitchen anchors the first floor, opening seamlessly to the formal dining area and featuring a walk-in pantry and generous dine-in island. The adjacent living room is filled with natural light and connects effortlessly to the outdoors through large sliding doors, leading to a spacious backyard, covered patio, and custom-built pool.\n\nUpstairs, a versatile second living area provides the perfect space for a playroom, media room, or additional lounge, complemented by two guest bedrooms. Tucked away at the rear of the home, the primary suite is a private retreat overlooking the treetops and pool, complete with abundant natural light, a spa-like bath, and an impressive walk-in closet.\n\nAdding to the home’s functionality is an oversized garage with tall ceilings, offering ample room for larger SUVs along with generous space for storage.... an increasingly rare feature.\n\nIf you are seeking a move-in ready home that delivers thoughtful design, privacy, and an unbeatable 78704 location, this one stands apart.", + "features": [ + "Air Conditioning", + "Attached Garage", + "Barbecue Area", + "Below Ground Pool", + "Ceiling Fan", + "Central AC", + "Central Heating", + "Chandeliers", + "Common Outdoor Space", + "Cooktop", + "Dishwasher", + "Disposal", + "Double Oven", + "Driveway", + "Electric Dryer Hookup", + "Electric Oven", + "Fireplace", + "Foyer", + "Freezer", + "Garage", + "Gas Heat", + "Hardwood Floors", + "High Ceilings", + "Hot Water Heating", + "Internet Included", + "Laundry in Building", + "Microwave", + "Parking Included", + "Pool", + "Pool Views", + "Porch", + "Private Outdoor Space", + "Private Pool", + "Private Yard", + "Recessed Lighting", + "Refrigerator", + "Soaking Tub", + "Tile Floors", + "Washer / Dryer in Unit", + "Washer Hookup", + "Wooden Area Views" + ], + "property_facts": { + "Status": "Active", + "MLS #": "1726892", + "Days on Market": "102", + "Taxes": "$38,961 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "2018", + "Lot Size": "0.23 AC / 10,149 SF", + "County": "Travis County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision Name": "West Park Add", + "Waterfront": "No", + "Waterfront Description": "None", + "Water Access Description": "Public", + "View": "Neighborhood, Pool, Trees/Woods", + "View YN": "Yes", + "Parcel Number": "04021104280000", + "Tax Lot": "57", + "Elementary School": "Barton Hills", + "Elementary School District": "Austin ISD", + "Middle Or Junior School": "O Henry", + "Middle Or Junior School District": "Austin ISD", + "Senior High School": "Austin", + "High School District": "Austin ISD", + "Levels": "Two", + "Master on Main": "No", + "Main Level Bedrooms": "1", + "Num Living": "3", + "Living Area Source": "PublicRecords", + "Year Built Source": "PublicRecords", + "Property Condition": "Resale", + "Pool Private": "Yes", + "Pool Features": "Gunite, In Ground, Outdoor Pool, Pool/Spa Combo, Tile" + }, + "agent": { + "name": "Austin Stowell", + "email": "austin.stowell@compass.com", + "telephone": "5122948468" + } + }, + "2103234166324388625": { + "listing_id": "2103234166324388625", + "source_url": "https://www.compass.com/homedetails/482-11th-St-Brooklyn-NY-11215/20SX1R_pid/", + "retrieved_at": "2026-09-06T04:10:35.877533+00:00", + "html_sha256": "a0bd377ee452d5b5e3dd9384049321705f8699c13951250704e475e04ba30df2", + "price": 3600000, + "address": "482 11th Street", + "unit": "", + "city": "Brooklyn", + "state": "NY", + "zip": "11215", + "neighborhood": "Park Slope", + "latitude": 40.665664, + "longitude": -73.9830829, + "beds": 3, + "baths_full": 2, + "baths_half": 1, + "baths_total": 2.5, + "sqft": 2553, + "property_type": "Townhouse", + "year_built": 1901, + "mls_number": "", + "status_text": "Sold", + "days_on_market": 10, + "listed_at_ms": 1778673956441, + "description": "PLEASE NO TEXTS OR CALLS.\n\nNestled on a picturesque, tree-lined block in the heart of Park Slope, this beautifully maintained\nbrownstone offers the perfect blend of original architectural detail and thoughtful modern updates—ideal for the buyer seeking warmth, character, and everyday comfort. This is more than a beautifully updated brownstone—it is a home that has been thoughtfully cared for and deeply enjoyed. From mornings in the spacious kitchen to evenings spent gathered around the dining table\nor relaxing in the private outdoor oasis, every space invites connection and comfort. Original details have been preserved not simply for their beauty, but for the warmth and character they bring to daily life, creating an atmosphere that feels both timeless and personal. Now, it stands ready for its next owner to continue the story—to create new memories, traditions, and moments that make a house truly feel like home.\n\nA gracious double-door entry welcomes you inside, where a classic winding staircase leads to the upper level featuring a skylight and three generously sized bedrooms and two full baths. The primary suite with its ensuite bathroom is a true retreat, complete with a private terrace, perfect for morning coffee or evening unwinding, and a long hallway lined with custom-built closets\noffering exceptional storage and a quiet separation from the other bedrooms. The front bedroom facing 11th Street, glowing with early day sunshine has not one but two closets as well as a decorative fireplace and an ensuite bathroom with bathtub. The middle bedroom has ample storage including a large deep closet.\n\nThe parlor level with its fireplace centerpiece is designed for both gracious entertaining and easy living. Enjoy beautiful morning sunlight illuminating a charming living room salon big enough for a piano and seating for large parties. The high ceiling draws you to the beautifully\npreserved period moldings and rosettes. This intricate plasterwork and the ceiling medallions give the space that historic brownstone feel. As you leave the salon, you will see how seamlessly it flows into the large dining room through the original sliding doors that are encased with ornate glass accents. Anchored by a decorative marble fireplace, the graceful dining room provides ample space\nfor a full dining setup, along with two convenient closets to store the pieces that make gatherings meaningful. From here, two separate entrances lead into the show-stopping, oversized remodeled kitchen—the true heart of the home. Look up and you will see a second large skylight\ndraping the kitchen with natural light. The kitchen features an expansive island, stainless steel appliances, including integrated Viking cooktop and oven, Bosch dishwasher, and a cleverly tucked-away Miele electric separate washer and dryer. This space is as functional as it is impressive. There is also room for a breakfast table, and a powder room for added convenience, along with an\nadditional closet space. Just off the kitchen, double doors open to hardwood stairs that lead to your South facing sunny outdoor sanctuary—perfect for grilling, entertaining, or simply relaxing in your own private green space which adds another layer of livability and charm.\n\nAdditional highlights include a refinished basement offering a flexible retreat, ideal as a private seating area, media space, and/or a home office with substantial storage, built-in shelving and mechanicals. Add to this, mini splits for AC and heat, steam heat, new windows, recently\nreplaced roofing and recently reappointed front garden.\nLocated just two blocks from the F train 7th Avenue stop, walkable to Prospect Park and moments\nfrom Park Slope’s renowned restaurants, shops, and amenities. This home also benefits from nearby garage access. \nThis is a rare opportunity to own a classic Brooklyn brownstone. Don't miss it. ", + "features": [ + "Patio", + "Deck", + "Decorative Fireplace", + "Crown Mouldings", + "Decorative Mouldings", + "Built-Ins", + "Private Entrance", + "Hardwood Floors", + "Washer / Dryer", + "Air Conditioning", + "Dishwasher", + "Stainless Steel Appliances", + "Eat-in Kitchen", + "Windowed Kitchen", + "Chef's Kitchen", + "Northern Exposure", + "Southern Exposure", + "Basement", + "Curved Stairs", + "Cooktop", + "Island Kitchen", + "Brownstone", + "Garden" + ], + "property_facts": { + "Status": "Sold", + "Days on Market": "10", + "Taxes": "$456 / month", + "Total Rooms": "7.0", + "Property Type": "Townhouse", + "MLS Type": "House/Building", + "Year Built": "1901", + "Lot Size": "3,438 SF", + "County": "Kings County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": {}, + "agent": { + "name": "Lucie Holt", + "email": "lucie@compass.com", + "telephone": "9177704953" + } + }, + "2103241619216722001": { + "listing_id": "2103241619216722001", + "source_url": "https://www.compass.com/homedetails/5801-Valley-Cir-Austin-TX-78731/1FRCEW_pid/", + "retrieved_at": "2026-09-06T04:10:46.447901+00:00", + "html_sha256": "391655774acaf41d19522c71bf0136b9303eeb60a08bbc0d069962d71fc0c756", + "price": 1975000, + "address": "5801 Valley Circle", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78731", + "neighborhood": "Bull Creek", + "latitude": 30.3430084, + "longitude": -97.7802569, + "beds": 5, + "baths_full": 4, + "baths_half": null, + "baths_total": 4, + "sqft": 3920, + "property_type": "Single Family", + "year_built": 1985, + "mls_number": "7657060", + "status_text": "Active", + "days_on_market": 107, + "listed_at_ms": 1779339600000, + "description": "Set among the trees in Austin’s coveted Cat Mountain neighborhood, this architecturally distinctive 3,920-square-foot residence offers a rare blend of privacy, modern design, Hill Country views, and effortless indoor-outdoor living. Ideally located off RR 2222, northeast of the Colorado River, the home is surrounded by mature oaks and thoughtful landscaping, creating a private hillside retreat in one of Northwest Hills most desirable enclaves.\n\nDesigned by Merzbau Design Collective / J.C. Schmeil, AIA, and featured on the 2020 AIA Austin Homes Tour, the residence showcases refined modern architecture, walls of glass, expansive decks, a pool, and a seamless connection to its natural surroundings. Updated and meticulously maintained by the same family for nearly two decades, the home offers five bedrooms, four bathrooms, two living areas, and a dedicated private office.\n\nThe multi-level floor plan adds both architectural interest and everyday functionality, with a lower level featuring a spacious bunk room suite and a large office with private exterior access. Inside, dramatic floor-to-ceiling windows frame the trees and views, while oak hardwood floors, high-end windows, stone and siding exterior details, and striking ironwork add warmth, texture, and character throughout.\n\nOutside, the professionally landscaped grounds, pool, multiple decks, and private outdoor living spaces create an exceptional setting for entertaining, relaxing, and enjoying Austin’s peaceful hillside lifestyle.\n\nA rare opportunity in Central Austin offering privacy, views, architectural pedigree, nature, close proximity to downtown, Lake Austin, and The Domain and zoned to Highland Park Elementary and walkable to St. Theresa's Blue Ribbon school.", + "features": [ + "Air Conditioning", + "Below Ground Pool", + "Canyon Views", + "Ceiling Fan", + "Central AC", + "Central Heating", + "City Views", + "Deck", + "Dishwasher", + "Disposal", + "Driveway", + "Electric Heat", + "Electric Oven", + "Fireplace", + "Hardwood Floors", + "Heated Pool", + "High Ceilings", + "Laundry in Building", + "Panoramic Views", + "Patio", + "Pool", + "Porch", + "Private Outdoor Space", + "Private Pool", + "Private Yard", + "Recessed Lighting", + "Refrigerator", + "Tile Floors", + "Walk-in Closet", + "Washer / Dryer in Unit", + "Wooden Area Views" + ], + "property_facts": { + "Status": "Active", + "MLS #": "7657060", + "Days on Market": "107", + "Taxes": "$28,680 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1985", + "Lot Size": "0.56 AC / 24,236 SF", + "County": "Travis County", + "Buyer's Agent Compensation": "3%" + }, + "regional_facts": { + "Subdivision Name": "Northwest Hills Sec 02", + "Waterfront": "No", + "Waterfront Description": "None", + "Water Access Description": "Public", + "View": "City, Canyon, Hills, Neighborhood, Panoramic, Trees/Woods", + "View YN": "Yes", + "Parcel Number": "01330909090000", + "Tax Lot": "13", + "Tax Block": "C", + "Elementary School": "Highland Park", + "Elementary School District": "Austin ISD", + "Middle Or Junior School": "Lamar (Austin ISD)", + "Middle Or Junior School District": "Austin ISD", + "Senior High School": "McCallum", + "High School District": "Austin ISD", + "Levels": "Multi/Split", + "Master on Main": "Yes", + "Main Level Bedrooms": "3", + "Num Living": "2", + "Living Area Source": "PublicRecords", + "Year Built Source": "PublicRecords", + "Property Condition": "Resale", + "Pool Private": "Yes", + "Pool Features": "Electric Heat, Heated, In Ground, Outdoor Pool, Pool/Spa Combo" + }, + "agent": { + "name": "Wendi Slaton Anderson", + "email": "wendi.slatonanderson@compass.com", + "telephone": "5127434653" + } + }, + "2103247470853851209": { + "listing_id": "2103247470853851209", + "source_url": "https://www.compass.com/homedetails/230-Ashland-Pl-Unit-28A-Brooklyn-NY-11217/200D2R_pid/", + "retrieved_at": "2026-09-06T04:13:27.534287+00:00", + "html_sha256": "45a808b9b7867b665d69195dde8047e75c96756cf10b4601580a05810450e1c7", + "price": 6499, + "address": "230 Ashland Place, Unit 28A", + "unit": "28A", + "city": "Brooklyn", + "state": "NY", + "zip": "11217", + "neighborhood": "Fort Greene", + "latitude": 40.688266, + "longitude": -73.97873299999999, + "beds": 2, + "baths_full": 2, + "baths_half": null, + "baths_total": 2, + "sqft": null, + "property_type": "Condo", + "year_built": 2010, + "mls_number": "", + "status_text": "Rented", + "days_on_market": 36, + "listed_at_ms": 1778537836619, + "description": "Set on one of the highest floors, residence 28A at 230 Ashland Place offers a sophisticated take on contemporary Brooklyn living. This beautifully designed two-bedroom, two-bathroom condominium features expansive oversized windows that frame sweeping Manhattan skyline and water views while filling the home with exceptional natural light throughout the day.\n\nThe open chef’s kitchen is both stylish and functional, outfitted with smodern cabinetry, premium appliances, and generous counter space. Spacious enough to accommodate either an eat-in dining area or a substantial kitchen island, it seamlessly anchors the home’s open-concept living space.\n\nThe primary suite serves as a serene retreat, distinguished by its rare corner exposure that captures the apartment’s most spectacular Manhattan views. A generous dressing area with ample closet space leads to a beautifully appointed en-suite bath, creating a true sense of comfort and privacy. The second bedroom is equally versatile, ideal for guests, a home office, or additional living space.\n\n- In Unit Washer Dryer\n- Photos have Virtual Elements\n- Views are from 2+ years ago\n\nA full-service building, with only four units per floor, 230 Ashland provides a higher level of service and privacy including a 24-hour doorman, porter staff, fitness center, expansive roof deck with Manhattan and Statue of Libery views, cold storage, and residents’ sitting area.\n\nAt the dynamic heart of Fort Greene, 230 Ashland is at the center of one of Brooklyn’s most picturesque neighborhoods. Enjoy the incomparable Fort Greene Park just blocks away, with winter sledding, Sunday Green Markets, and summer yoga. Turn the corner, shop at Whole Foods, Trader Joes, Apple Store and get your latte at local favorite Baba Cool. On weekends you can enjoy a performance at BAM or the Shakespeare theatre. Nearby all transportation including the 2/3/4/5/F/G/ and LIRR you’re a short ride from EVERYTHING.\n\nDue At BoardPackage Submission\nApplication Processing Fee Management- $500.00\nDigital Document Retention Fee Management- $100.00\nMove In Deposit (personal checks will be accepted Entity)- $1000.00 (refundable)\nMove In Fee (personal checks will be accepted Entity)- $300.00\nConsumer Report Fee Management- $100.00\n", + "features": [ + "Full-Time Doorman", + "Concierge", + "Common Roof Deck", + "Common Outdoor Space", + "Gym", + "Hardwood Floors", + "Oversized Windows", + "Elevator", + "Washer / Dryer", + "Washer / Dryer in Unit", + "Washer / Dryer Hookup", + "Dryer", + "Washer", + "Wall Unit", + "Dishwasher", + "Stainless Steel Appliances", + "Chef's Kitchen", + "Open Kitchen", + "Northern Exposure", + "Eastern Exposure", + "Recessed Lighting", + "Custom Closet", + "Northeastern Exposure", + "Laundry in Every Unit", + "Refrigerator", + "Washer Hookup", + "Stove", + "Kitchen Dining", + "Dryer Hookup", + "Highrise" + ], + "property_facts": { + "Status": "Rented", + "Days on Market": "36", + "Pet Policy": "Allowed", + "Rental Incentives": "No Fee", + "Available Date": "07/01/2026", + "Lease Term": "Lease Length: Negotiable,24 Months, Lease Length Min/Max: 24-24 mo", + "Total Rooms": "3.0", + "Property Type": "Condo", + "Year Built": "2010", + "County": "Kings County" + }, + "regional_facts": {}, + "agent": { + "name": "Marie Bromberg", + "email": "marie.bromberg@compass.com", + "telephone": "6463891887" + } + }, + "2103279282510648129": { + "listing_id": "2103279282510648129", + "source_url": "https://www.compass.com/homedetails/20-E-9th-St-Unit-4T-Manhattan-NY-10003/20WJ6M_pid/", + "retrieved_at": "2026-09-06T04:13:28.335893+00:00", + "html_sha256": "62e515886f2d803baa8f9df1d5fb5cb334d2f0bffbb75ce63a1b5991192fa908", + "price": 799000, + "address": "20 East 9th Street, Unit 4T", + "unit": "4T", + "city": "Manhattan", + "state": "NY", + "zip": "10003", + "neighborhood": "Greenwich Village", + "latitude": 40.7321377, + "longitude": -73.9947952, + "beds": 1, + "baths_full": 1, + "baths_half": 0, + "baths_total": 1, + "sqft": null, + "property_type": "Co-op", + "year_built": 1964, + "mls_number": "", + "status_text": "Active", + "days_on_market": 117, + "listed_at_ms": 1778541810566, + "description": "Tucked away in the heart of Greenwich Village, this quiet, light-filled junior one-bedroom offers a serene retreat in one of downtown Manhattan’s most sought-after locations.\n\nA gracious entry foyer with coat closet welcomes you into a thoughtfully designed home where every space has purpose. The generously proportioned living room easily accommodates both living and dining areas and enjoys open western exposures overlooking charming green rooftops, creating a sense of calm rarely found in the city.\n\nCustom built-in bookshelves provide an elegant separation for the sleeping area, which comfortably fits a queen-sized bed and features two closets for plentiful storage. The home has an updated kitchen and bathroom, offering both comfort and convenience from day one.\n\nResidents of Brevoort East enjoy full-service white-glove living with an exceptional suite of amenities, including a 24-hour doorman and concierge, state-of-the-art fitness center with Peloton bikes, cardio and strength equipment, children’s playroom, central laundry room, cold storage for grocery deliveries, bike room, private storage, onsite garage, resident manager, and onsite property manager. The beautifully landscaped roof deck offers panoramic city views and WiFi — an ideal extension of your living space.\n\nPerfectly positioned between Union Square and Washington Square Park, the building is surrounded by world-class dining, shopping, and multiple transportation options, placing the very best of downtown living right outside your door.\nPet-friendly co-op permitting up to 65% financing with a 2% flip tax. There is a temporary monthly assessment of $86.67.\n", + "features": [ + "Doorman", + "Full-Time Doorman", + "Concierge", + "Roof Deck", + "Common Roof Deck", + "Common Garden", + "Gym", + "Health Club", + "Playroom", + "Hardwood Floors", + "Oversized Windows", + "Elevator", + "Laundry in Building", + "Central AC", + "Air Conditioning", + "Wall Unit", + "On-site Parking For Rent", + "Western Exposure", + "Video Security", + "Bike Room", + "Cold Storage", + "Private Storage For Rent", + "Common Storage", + "Garage", + "Full-Time Concierge", + "Parking Included", + "Storage Available", + "Highrise", + "Security System" + ], + "property_facts": { + "Status": "Active", + "Days on Market": "117", + "Pet Policy": "Allowed", + "Maintenance": "$1,517 / month", + "Min. Down Pymt": "35%", + "Total Rooms": "3.0", + "Property Type": "Co-op", + "MLS Type": "Co-op", + "Year Built": "1964", + "County": "New York County", + "Buyer's Agent Compensation": "2.5%" + }, + "regional_facts": {}, + "agent": { + "name": "Rebecca Buchanan", + "email": "rbuchanan@compass.com", + "telephone": "9178829533" + } + }, + "2103280393061690665": { + "listing_id": "2103280393061690665", + "source_url": "https://www.compass.com/homedetails/2771-W-Francis-Pl-Unit-302N-Chicago-IL-60647/1VX0T9_pid/", + "retrieved_at": "2026-09-06T04:11:31.078809+00:00", + "html_sha256": "55a0a01b84cbe6b642de7d0d69ab8d310f0fa40f7d25e8656389e516e887090f", + "price": 515000, + "address": "2771 West Francis Place, Unit 302N", + "unit": "302N", + "city": "Chicago", + "state": "IL", + "zip": "60647", + "neighborhood": "Logan Square", + "latitude": 41.91797340000001, + "longitude": -87.6964375, + "beds": 2, + "baths_full": 2, + "baths_half": 0, + "baths_total": 2, + "sqft": null, + "property_type": "Condo", + "year_built": 2007, + "mls_number": "12638664", + "status_text": "Closed", + "days_on_market": 6, + "listed_at_ms": 1778648400000, + "description": "Welcome to this bright and beautifully maintained 2 bed/2 bath condo in a newer boutique all-brick elevator building in the heart of Logan Square. This sun-drenched south-facing unit on the top floor offers an ideal split-bedroom floor plan, hardwood floors throughout, and a spacious layout designed for both comfortable living and easy entertaining. A separate entry foyer leads into the expansive living and dining area, which opens to a private balcony. The open concept kitchen features stainless steel appliances, granite countertops, 42\" wood cabinetry, and peninsula seating perfect for casual dining or hosting guests. The oversized king-sized primary suite is a true retreat with professionally organized closets and a spa-like bath complete with dual vanity, soaking tub, and separate shower. A generous second bedroom and full second bath offer excellent flexibility for guests, home office, or additional living space. Other highlights include in-unit laundry, an attached heated garage parking, and some additional storage space in front of the parking space. Unbeatable Logan Square location just steps to the California Blue Line, The 606 Trail, and the Armitage bus. Enjoy easy access to some of the neighborhood's best restaurants, coffee shops, nightlife, boutique shopping, parks, and the beloved Logan Square Farmers Market. Exceptional walkability paired with modern comfort makes this home the perfect city retreat!", + "features": [ + "Balcony", + "Elevator", + "Garage", + "Automatic Garage Door", + "Heated Garage Parking", + "Attached Parking", + "Washer / Dryer in Unit", + "Dryer", + "Washer", + "Laundry in Building", + "Central AC", + "Gas Heat", + "Dishwasher", + "Microwave", + "Stainless Steel Appliances", + "Disposal", + "Refrigerator", + "Hardwood Floors", + "Bike Room", + "Common Storage", + "Private Outdoor Space", + "Air Purification System", + "Parking Included", + "Pet Friendly", + "Snow Removal Included", + "Storage Available", + "Range", + "Washer Hookup", + "Pets Conditional", + "Lowrise" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "12638664", + "Days on Market": "6", + "Pet Policy": "Allowed", + "Taxes": "$7,716 / year", + "HOA Fees": "$480 / month", + "Property Type": "Condo", + "MLS Type": "Attached Single / Condo", + "Year Built": "2007", + "County": "Cook County" + }, + "regional_facts": { + "Area": "CHI - Logan Square", + "Township": "West Chicago", + "Ownership": "Condo", + "Num Of Garage Spaces": "1.0", + "Num Of Parking Spaces": "1.0", + "Parking Included in Price": "Yes", + "Air Conditioning Type": "Central Air", + "Heat/Fuel": "Natural Gas", + "Pets Allowed": "Yes" + }, + "agent": { + "name": "Eudice Fogel", + "email": "eudice.fogel@compass.com", + "telephone": "3125761200" + } + }, + "2103302361391687721": { + "listing_id": "2103302361391687721", + "source_url": "https://www.compass.com/homedetails/1100-S-Hope-St-Unit-1006-Los-Angeles-CA-90015/1IJC61_pid/", + "retrieved_at": "2026-09-06T04:12:24.786590+00:00", + "html_sha256": "65d53c4b272c8979421b208c81bf0c430933404fd99360c7f55e3798b8e91408", + "price": 535000, + "address": "1100 South Hope Street, Unit 1006", + "unit": "1006", + "city": "Los Angeles", + "state": "CA", + "zip": "90015", + "neighborhood": "Downtown Los Angeles", + "latitude": 34.0417686, + "longitude": -118.2631233, + "beds": 1, + "baths_full": 1, + "baths_half": null, + "baths_total": 1, + "sqft": 1007, + "property_type": "Condo", + "year_built": 2007, + "mls_number": "PW26102243", + "status_text": "Active", + "days_on_market": 116, + "listed_at_ms": 1776927600000, + "description": "$60,000 PRICE ADJUSTMENT – Incredible Value at LUMA. Don't miss one of the best opportunities to own in Downtown LA's highly sought-after South Park neighborhood. This spacious 1,000+ sq. ft. 1bed/1bath residence offers a rare combination of size, comfort, and value. The thoughtfully designed floor plan features a large bedroom with a walk-in closet for exceptional storage, west-facing views, dedicated parking, and an open, flexible layout that lives larger than most one-bedroom homes. Located in one of DTLA's premier full-service buildings, LUMA offers LEED Gold-certified construction, 24/7 concierge and security, a fitness center, pool, spa, sundeck, and an expansive outdoor terrace with BBQs and lounge areas. Just moments from LA Live, Crypto.com Arena, Peacock Theater, Whole Foods, Ralphs, Target, the Pico Metro Station, and South Park's acclaimed restaurants and nightlife, this home delivers an unbeatable combination of space, amenities, location, and value.", + "features": [ + "Barbecue Area", + "Concierge", + "Elevator", + "Garage", + "Assigned Parking", + "On-site Parking For Rent", + "Gym", + "Resident's Lounge", + "Washer / Dryer in Unit", + "Air Conditioning", + "Bike Room", + "Communal Pool", + "On Site Restaurant", + "Spa", + "Security Gate", + "Parking Included", + "Pet Friendly", + "Highrise", + "Security System" + ], + "property_facts": { + "Status": "Active", + "MLS #": "PW26102243", + "Days on Market": "116", + "Pet Policy": "Allowed", + "HOA Fees": "$941 / month", + "Property Type": "Condo", + "MLS Type": "Residential / Condominium", + "Year Built": "2007", + "County": "Los Angeles County" + }, + "regional_facts": { + "Architectural Style": "Contemporary", + "View": "Yes", + "Parking Spaces Total": "1", + "Private Pool": "No", + "Cooling Type": "Central Air", + "Total Units": "233.0", + "Building Type": "Attached", + "Lot Size Source": "Assessor", + "Living Area": "1007", + "Assessor Parcel Number": "5139-005-123", + "Property Attached YN": "true", + "Common Walls": "2+ Common Walls", + "New Construction": "No", + "Stories Total": "19", + "Entry Level": "1", + "Fireplace": "No", + "Pool": "Yes", + "Spa": "Yes", + "Association": "Yes", + "Association Fee": "$940.71", + "Association Fee Frequency": "Monthly", + "Zoning": "Lar5", + "Subdivision Name Other": "LUMA", + "Senior Community": "No", + "Parcel Number": "5139005123", + "Area": "Downtown L.A. (C42)", + "High School District": "Los Angeles Unified", + "Directions": "11th Street and Hope Street" + }, + "agent": { + "name": "Casey McKinley", + "email": "casey.mckinley@compass.com", + "telephone": "8587611401" + } + }, + "2103318401995735673": { + "listing_id": "2103318401995735673", + "source_url": "https://www.compass.com/homedetails/3324-Franklin-St-Denver-CO-80205/12DRCG_pid/", + "retrieved_at": "2026-09-06T04:12:01.096945+00:00", + "html_sha256": "94202914d6b3d45d162060510d04feaf7d7ce33fb6be5b1e6a3eede7b11f9f75", + "price": 675000, + "address": "3324 Franklin Street", + "unit": "", + "city": "Denver", + "state": "CO", + "zip": "80205", + "neighborhood": "Cole", + "latitude": 39.763781, + "longitude": -104.9681142, + "beds": 3, + "baths_full": 1, + "baths_half": 0, + "baths_total": 2, + "sqft": 1770, + "property_type": "Single Family", + "year_built": 1904, + "mls_number": "3327560", + "status_text": "Closed", + "days_on_market": 3, + "listed_at_ms": 1778738400000, + "description": "Welcome to 3324 N Franklin St a rare opportunity to own a beautifully updated home in one of Denver’s most vibrant and centrally located neighborhoods. Situated on an oversized lot, this property offers an incredible combination of indoor comfort, outdoor space, and city convenience that is hard to find this close to Downtown Denver, RiNo, City Park, and the light rail. Enjoy easy access to some of Denver’s best restaurants, breweries, coffee shops, parks, and entertainment while still having the privacy and flexibility of a larger lot with a detached 2-car garage.\r\n\r\nInside, the home blends charm and functionality with thoughtful updates throughout. The spacious upstairs primary suite is equipped with its own mini-split AC and heat pump system, providing efficient year-round comfort and personalized climate control while the rest of the home is cooled by central AC. The layout offers great natural light and comfortable living spaces designed for both everyday living and entertaining.\r\n\r\nStep outside to a backyard that truly expands the living experience. The oversized lot provides endless potential for entertaining, gardening, pets, or future customization. The back patio is already equipped with a dedicated hot tub connection, making it easy to create your own private outdoor retreat.\r\n\r\nWhether you are looking for walkability, outdoor space, garage storage, or modern comfort features, this home delivers a unique blend of lifestyle and value in the heart of Denver.", + "features": [ + "Central AC", + "Dishwasher", + "Dryer", + "Forced Air", + "Garage", + "Microwave", + "Patio", + "Private Outdoor Space", + "Private Yard", + "Refrigerator", + "Washer" + ], + "property_facts": { + "Status": "Closed", + "MLS #": "3327560", + "Days on Compass": "3", + "Taxes": "$4,264 / year", + "Property Type": "Single Family", + "MLS Type": "Residential / Single Family Residence", + "Year Built": "1904", + "Lot Size": "0.14 AC / 6,203 SF", + "County": "Denver County" + }, + "regional_facts": { + "Structure Type": "House", + "Architectural Style": "Level, Gutters, 3/4 Primary Bath", + "Levels": "Two", + "Subdivision Name": "Cole", + "Association": "No", + "Basement": "No" + }, + "agent": { + "name": "Jesse Kornblum", + "email": "jesse.kornblum@compass.com", + "telephone": "3034539382" + } + } + } +} diff --git a/sites/compass/static/css/.gitkeep b/sites/compass/static/css/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/sites/compass/static/css/compass.css b/sites/compass/static/css/compass.css new file mode 100644 index 00000000..ce3000b5 --- /dev/null +++ b/sites/compass/static/css/compass.css @@ -0,0 +1,480 @@ +/* Compass mirror styles — match the original white/serif aesthetic. */ +:root { + --c-black: #1f1f1f; + --c-gray-1: #f6f6f4; + --c-gray-2: #e6e6e3; + --c-gray-3: #b6b6b3; + --c-gray-4: #6e6e6b; + --c-accent: #b08c45; + --c-link: #1f1f1f; + --c-danger: #c0392b; + --c-success: #2f7d59; + --c-warning: #b08c45; + --serif: 'Recoleta', 'Bodoni 72', Georgia, 'Times New Roman', Times, serif; + --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif; +} + +* { box-sizing: border-box; } +html, body { margin: 0; padding: 0; } +body { + font-family: var(--sans); + color: var(--c-black); + background: #fff; + font-size: 15px; + line-height: 1.5; + -webkit-font-smoothing: antialiased; +} +a { color: var(--c-link); text-decoration: none; } +a:hover { text-decoration: underline; } +img { max-width: 100%; height: auto; display: block; } +h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; margin: 0 0 .5em; } +h1 { font-size: 2.4rem; line-height: 1.15; } +h2 { font-size: 1.8rem; } +h3 { font-size: 1.3rem; } + +.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; } +.wide { max-width: 1600px; margin: 0 auto; padding: 0 24px; } + +/* Header */ +.cx-nav { + background: #fff; + border-bottom: 1px solid var(--c-gray-2); + position: sticky; top: 0; z-index: 100; +} +.cx-nav-inner { + display: flex; align-items: center; gap: 32px; + padding: 14px 24px; + max-width: 1600px; margin: 0 auto; +} +.cx-logo { font-family: var(--serif); font-size: 28px; letter-spacing: .12em; color: #000; } +.cx-logo img { height: 24px; width: auto; } +.cx-nav-links { display: flex; gap: 22px; align-items: center; flex: 1; } +.cx-nav-links a { color: var(--c-black); font-size: 14px; } +.cx-nav-right { display: flex; gap: 18px; align-items: center; font-size: 14px; } +.cx-nav-right .btn-outline { padding: 6px 14px; border: 1px solid var(--c-black); border-radius: 999px; } + +/* Hero */ +.cx-hero { + background: #fff; + padding: 88px 24px 64px; + text-align: center; +} +.cx-hero h1 { + font-size: 3.2rem; max-width: 900px; margin: 0 auto 16px; + line-height: 1.05; +} +.cx-hero p.sub { color: var(--c-gray-4); font-size: 1.05rem; } + +.search-box { + display: flex; max-width: 760px; margin: 36px auto 0; + border: 1px solid var(--c-black); + border-radius: 999px; padding: 4px; + overflow: hidden; + background: #fff; +} +.search-box input[type="text"] { + flex: 1; + border: none; outline: none; + padding: 14px 22px; + font-size: 15px; + background: transparent; +} +.search-box button { + background: var(--c-black); color: #fff; + border: none; padding: 0 28px; + font-size: 14px; letter-spacing: .04em; + border-radius: 999px; cursor: pointer; +} + +/* Section / grid */ +.section { padding: 64px 0; } +.section h2 { text-align: left; margin-bottom: 24px; } +.section-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; } +.section-row .link-more { font-size: 14px; } + +.grid-cards { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 28px; +} +@media (max-width: 1000px) { + .grid-cards { grid-template-columns: repeat(2, 1fr); } +} +@media (max-width: 640px) { + .grid-cards { grid-template-columns: 1fr; } +} + +/* Listing card */ +.card { + display: block; color: var(--c-black); + background: #fff; + text-decoration: none; +} +.card:hover { text-decoration: none; } +.card .photo { + aspect-ratio: 4 / 3; + background: var(--c-gray-1) center/cover; + border-radius: 4px; + overflow: hidden; + position: relative; +} +.card .photo img { width: 100%; height: 100%; object-fit: cover; } +.card .price { font-family: var(--serif); font-size: 1.6rem; margin: 14px 0 4px; } +.card .addr { color: var(--c-black); font-size: 14px; } +.card .meta { color: var(--c-gray-4); font-size: 13px; margin-top: 4px; } +.card .badge { + position: absolute; top: 10px; left: 10px; + background: #fff; + font-size: 11px; letter-spacing: .04em; + padding: 4px 10px; + border-radius: 4px; + color: var(--c-black); + text-transform: uppercase; +} +.card .badge.exclusive { background: var(--c-black); color: #fff; } + +/* City tile */ +.city-tile { + position: relative; + aspect-ratio: 4 / 3; + border-radius: 4px; + overflow: hidden; + background: var(--c-gray-1) center/cover; +} +.city-tile .label { + position: absolute; bottom: 0; left: 0; right: 0; + padding: 18px; + background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.6) 100%); + color: #fff; + font-family: var(--serif); + font-size: 1.4rem; +} + +/* Filter bar */ +.filter-bar { + display: flex; flex-wrap: wrap; gap: 12px; + border: 1px solid var(--c-gray-2); + border-radius: 4px; + padding: 16px; + margin-bottom: 24px; + align-items: center; +} +.filter-bar select, .filter-bar input[type="number"], .filter-bar input[type="text"] { + padding: 8px 10px; + border: 1px solid var(--c-gray-2); + font-size: 14px; + border-radius: 4px; + background: #fff; +} +.filter-bar label { font-size: 13px; color: var(--c-gray-4); } +.filter-bar .filter-group { display: flex; gap: 4px; align-items: center; } +.filter-bar .ckb { display: inline-flex; align-items: center; gap: 4px; } + +.btn { + background: var(--c-black); color: #fff; + border: 1px solid var(--c-black); + padding: 10px 22px; + font-size: 14px; + border-radius: 4px; + cursor: pointer; + letter-spacing: .02em; + text-transform: none; + display: inline-block; +} +.btn:hover { text-decoration: none; } +.btn.outline { background: #fff; color: var(--c-black); } +.btn.tiny { padding: 6px 14px; font-size: 13px; } +.btn.link { background: transparent; color: var(--c-black); border: none; padding: 0; text-decoration: underline; } +.btn.danger { background: var(--c-danger); border-color: var(--c-danger); } + +/* Detail page */ +.detail-gallery { + display: grid; + grid-template-columns: 2fr 1fr; + gap: 6px; + margin-bottom: 32px; +} +.detail-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; } +.detail-gallery .thumbs { display: grid; grid-template-columns: 1fr; gap: 6px; } +.detail-gallery .thumbs img { aspect-ratio: 4/3; object-fit: cover; } + +.detail-grid { + display: grid; grid-template-columns: 2fr 1fr; gap: 56px; margin-bottom: 64px; +} +.detail-main h1 { font-size: 2.2rem; } +.detail-main .price-big { font: 500 28px/1.3 var(--sans); } +.detail-main .key-facts { + display: flex; gap: 24px; margin: 18px 0 28px; + padding: 16px 0; border-top: 1px solid var(--c-gray-2); + border-bottom: 1px solid var(--c-gray-2); + flex-wrap: wrap; +} +.detail-main .key-facts > div { font-size: 14px; } +.detail-main .key-facts > div strong { font-family: var(--serif); font-size: 1.4rem; display: block; font-weight: 400; } +.detail-main p.lead { font-size: 1.05rem; line-height: 1.6; margin-bottom: 24px; } + +.fact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; margin: 16px 0 32px; } +.fact-grid .label { color: var(--c-gray-4); font-size: 13px; } +.fact-grid .value { font-size: 14px; } + +.agent-sidebar { + border: 1px solid var(--c-gray-2); + padding: 24px; + border-radius: 4px; + background: #fff; +} +.agent-sidebar .name { font-family: var(--serif); font-size: 1.2rem; } +.agent-sidebar .title { color: var(--c-gray-4); font-size: 13px; } +.agent-sidebar .stats { display: flex; gap: 18px; margin: 14px 0; } +.agent-sidebar .stats div { font-size: 12px; color: var(--c-gray-4); } +.agent-sidebar .stats strong { display: block; color: var(--c-black); font-size: 1.1rem; font-family: var(--serif); } + +.action-stack { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; } +.action-stack form { display: contents; } +.action-stack .btn { display: block; text-align: center; } + +.tag { + display: inline-block; padding: 3px 8px; + background: var(--c-gray-1); font-size: 11px; + border-radius: 4px; margin-right: 4px; + letter-spacing: .03em; + text-transform: uppercase; + color: var(--c-gray-4); +} + +/* Auth forms */ +.form-narrow { max-width: 460px; margin: 64px auto; } +.form-narrow .field { margin-bottom: 16px; } +.form-narrow label { display: block; font-size: 13px; margin-bottom: 4px; color: var(--c-gray-4); } +.form-narrow input[type=email], .form-narrow input[type=text], .form-narrow input[type=tel], +.form-narrow input[type=password], .form-narrow input[type=number], .form-narrow select, +.form-narrow textarea { + width: 100%; padding: 12px; border: 1px solid var(--c-gray-2); + font-family: var(--sans); font-size: 15px; + border-radius: 4px; background: #fff; +} +.form-narrow textarea { min-height: 120px; } + +.flash-stack { max-width: 760px; margin: 24px auto 0; } +.flash { + padding: 12px 16px; border-radius: 4px; + margin-bottom: 8px; font-size: 14px; + background: var(--c-gray-1); +} +.flash.success { background: #e8f4ee; color: var(--c-success); } +.flash.warning { background: #fdf4e3; color: var(--c-warning); } +.flash.info { background: var(--c-gray-1); } + +/* Footer */ +.cx-footer { + background: #fff; + border-top: 1px solid var(--c-gray-2); + padding: 56px 24px 24px; + font-size: 13px; + color: var(--c-gray-4); +} +.cx-footer .col-grid { + display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; + gap: 32px; max-width: 1280px; margin: 0 auto; +} +.cx-footer h4 { font-size: 13px; color: var(--c-black); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; font-family: var(--sans); } +.cx-footer ul { list-style: none; padding: 0; margin: 0; } +.cx-footer li { margin-bottom: 8px; } +.cx-footer li a { color: var(--c-gray-4); } +.cx-footer .legal { margin-top: 32px; text-align: center; font-size: 12px; } + +/* Account dashboard */ +.dashboard { display: grid; grid-template-columns: 220px 1fr; gap: 32px; padding: 48px 0; } +.dashboard nav a { display: block; padding: 10px 14px; color: var(--c-black); font-size: 14px; border-radius: 4px; } +.dashboard nav a.active { background: var(--c-gray-1); } +.dashboard nav a:hover { background: var(--c-gray-1); text-decoration: none; } + +/* Tables */ +.table { width: 100%; border-collapse: collapse; font-size: 14px; } +.table th, .table td { padding: 12px 16px; border-bottom: 1px solid var(--c-gray-2); text-align: left; } +.table th { color: var(--c-gray-4); font-weight: 500; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; } + +/* Empty state */ +.empty { + border: 1px dashed var(--c-gray-2); padding: 56px 24px; + text-align: center; color: var(--c-gray-4); + border-radius: 4px; +} +.empty h3 { color: var(--c-black); margin-bottom: 8px; } + +/* Agent card (directory) */ +.agent-card { display: flex; gap: 18px; padding: 18px; border: 1px solid var(--c-gray-2); border-radius: 4px; } +.agent-card .av { + width: 80px; height: 80px; border-radius: 50%; + background: var(--c-gray-1) center/cover; + display: flex; align-items: center; justify-content: center; + font-family: var(--serif); font-size: 1.4rem; color: var(--c-gray-4); + flex-shrink: 0; +} +.agent-card h3 { margin: 0; font-size: 1.2rem; } +.agent-card .meta { color: var(--c-gray-4); font-size: 13px; } +.agent-card .stat { font-size: 12px; margin-right: 14px; color: var(--c-gray-4); } +.agent-card .stat strong { display: block; font-size: 1.1rem; font-family: var(--serif); color: var(--c-black); font-weight: 400; } + +/* Filter-result summary */ +.result-summary { font-size: 14px; color: var(--c-gray-4); margin-bottom: 8px; } + +/* Pill / chip */ +.chip { display: inline-block; padding: 4px 10px; background: var(--c-gray-1); border-radius: 999px; font-size: 12px; margin-right: 6px; } +.chip.active { background: var(--c-black); color: #fff; } + +/* Saved heart icon */ +.heart-saved { color: var(--c-accent); } + +/* Compass public-page reference: homepage v4.41.0 / listing v15.116.0, + captured September 2026. All fonts and photography are served locally. */ +@font-face{font-family:'Compass Sans';src:url('../external_cache/CompassSans-Regular.woff2') format('woff2');font-weight:400;font-display:swap} +@font-face{font-family:'Compass Sans';src:url('../external_cache/CompassSans-Medium.woff2') format('woff2');font-weight:500;font-display:swap} +@font-face{font-family:'Compass Sans';src:url('../external_cache/CompassSans-Bold.woff2') format('woff2');font-weight:700;font-display:swap} +@font-face{font-family:'Compass Serif';src:url('../external_cache/CompassSerif-Regular.woff2') format('woff2');font-weight:400;font-display:swap} +@font-face{font-family:'Compass Serif';src:url('../external_cache/CompassSerif-Bold.woff2') format('woff2');font-weight:700;font-display:swap} +:root{--sans:'Compass Sans',Helvetica,Arial,sans-serif;--serif:'Compass Serif',Times,'Times New Roman',serif;--c-black:#000;--c-gray-4:#666} +html{scroll-padding-top:116px}body{font-family:var(--sans);color:#171717;font-size:16px;line-height:1.5}h1,h2,h3,h4{font-family:var(--sans);font-weight:500;letter-spacing:0}h1{font-size:28px;line-height:1.25}h2{font-size:24px;line-height:1.3}button,input,select,textarea{font-family:inherit}button,a,input,select,textarea,summary{-webkit-tap-highlight-color:transparent}a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,summary:focus-visible{outline:2px solid #1769aa;outline-offset:3px}.container{width:calc(100% - 48px);max-width:1200px;margin-left:auto;margin-right:auto}.section{padding-top:40px;padding-bottom:40px}.sr-only,.skip-link:not(:focus){position:absolute;width:1px;height:1px;overflow:hidden;clip-path:inset(50%);white-space:nowrap}.skip-link:focus{position:fixed;top:6px;left:10px;background:#fff;padding:10px;z-index:300} +.cx-nav{position:sticky;top:0;height:48px;background:#fff;border-bottom:1px solid #ddd;box-shadow:none;z-index:50;padding:0}.cx-nav-inner{display:flex;align-items:center;gap:28px;height:48px;padding:0 16px;max-width:none;margin:0}.cx-logo{display:flex;align-items:center;flex-shrink:0}.cx-logo img{width:112px;height:auto;max-height:27px;display:block}.cx-nav-links{display:flex;align-items:center;gap:24px;margin-left:auto;white-space:nowrap;font-size:15px;font-weight:500}.cx-nav-links>a{padding:12px 0}.cx-nav-right{display:flex;align-items:center;gap:6px;padding-left:20px;border-left:1px solid #e3e3e3;font-size:14px;white-space:nowrap;margin-left:0}.cx-nav-right form{margin:0}.nav-search{display:flex;flex:1;max-width:400px;min-width:130px;height:36px;border:1px solid #ddd;border-radius:2px}.nav-search input{width:100%;min-width:0;border:0;padding:6px;font-size:12px;background:transparent}.nav-search button{border:0;background:#000;color:#fff;width:40px;display:grid;place-items:center;flex-shrink:0}.text-button{background:none;border:0;padding:0;font:inherit;color:inherit;cursor:pointer}.nav-menu{position:relative}.nav-menu summary{cursor:pointer;list-style:none;padding:12px 0}.nav-menu summary::-webkit-details-marker{display:none}.nav-menu-panel{position:absolute;top:100%;left:-16px;min-width:210px;background:#fff;color:#171717;padding:8px 0;box-shadow:0 3px 14px #0002;border:1px solid #ddd}.nav-menu-panel a{display:block;padding:10px 20px}.nav-menu-panel a:hover{background:#f4f4f4}.icon-button{border:0;background:transparent;color:inherit;font:inherit;font-size:27px;line-height:1;padding:8px;cursor:pointer}.mobile-nav-toggle{display:none}.mobile-navigation{position:fixed;inset:0 auto 0 0;height:100dvh;max-height:none;width:286px;max-width:90vw;border:0;margin:0;padding:16px 24px}.mobile-navigation::backdrop{background:#0006}.drawer-heading{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px}.mobile-navigation nav a{display:block;padding:12px 0;border-bottom:1px solid #eee}.home-page .cx-nav{position:absolute;width:100%;background:transparent;border-color:#ffffff4d;color:#fff}.home-page .cx-logo img{filter:invert(1)}.home-page .mobile-navigation .cx-logo img{filter:none}.home-page .cx-nav a{color:inherit}.home-page .cx-nav-right{border-color:#ffffff55} +.cx-hero{height:600px;padding:0 24px;display:grid;place-items:center;background:#53605a url('../external_cache/hero-home.jpg') center/cover no-repeat;position:relative;text-align:center}.cx-hero::before{content:'';position:absolute;inset:0;background:#0002}.hero-content{position:relative;z-index:1;width:100%;max-width:730px;margin-top:-22px}.cx-hero h1{font:700 56px/1 var(--serif);color:#fff;margin:0 0 26px}.home-search{max-width:600px;margin:auto}.search-tabs{border:0;padding:0;margin:0 0 14px;display:flex;justify-content:center;gap:30px}.search-tabs label{cursor:pointer;color:#fff;font-size:18px}.search-tabs input{position:absolute;opacity:0}.search-tabs span{padding-bottom:5px;display:block;border-bottom:2px solid transparent}.search-tabs input:checked+span{border-color:#fff}.search-tabs input:focus-visible+span{outline:2px solid #fff;outline-offset:4px}.search-box{display:flex;margin:0;padding:0;border:0;border-radius:0;background:#fff;max-width:none;height:56px;box-shadow:0 1px 4px #0003}.search-box input{flex:1;min-width:0;border:0;border-radius:0;padding:16px;font:16px var(--sans);color:#171717}.search-box button{width:56px;flex:none;display:grid;place-items:center;padding:0;border:0;border-radius:0;background:#000;color:#fff}.home-section{padding-top:48px;padding-bottom:48px}.home-section h2{font-size:32px;margin:0 0 8px}.section-intro{margin:0 0 28px;color:#444}.section-link{text-align:right;margin-top:24px}.section-link a{font-size:16px}.grid-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.card{display:block;overflow:hidden;border:1px solid #e2e2e2;border-radius:8px;background:#fff;box-shadow:0 1px 3px #0002;text-decoration:none;color:inherit}.card:hover{box-shadow:0 3px 8px #0003;transform:none}.card .photo{height:auto;aspect-ratio:1.5;position:relative;overflow:hidden}.card .photo img{width:100%;height:100%;object-fit:cover;display:block}.card .badge{position:absolute;z-index:1;top:8px;left:8px;background:#000;color:#fff;font:500 12px/1.5 var(--sans);border-radius:3px;padding:2px 7px;letter-spacing:0;text-transform:none}.card-body{padding:10px 9px}.card .price{font:500 22px/1.3 var(--sans);padding:0;margin:0 0 12px}.card .meta{display:flex;gap:0;padding:0;margin:0 0 4px;font-size:12px;color:#222}.card .meta span{padding:0 8px;border-right:1px solid #ddd}.card .meta span:first-child{padding-left:0}.card .meta span:last-child{border:0}.card .addr{padding:0;margin:0;font-size:12px;line-height:1.6;color:#666}.city-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:24px}.city-tile{position:relative;height:180px;display:block;overflow:hidden;border-radius:0}.city-tile img{width:100%;height:100%;object-fit:cover}.city-tile::after{content:'';position:absolute;inset:50% 0 0;background:linear-gradient(transparent,#0008)}.city-tile .label{position:absolute;z-index:1;bottom:16px;left:16px;color:#fff;font:500 20px var(--sans)}.popular-cities ul{list-style:none;padding:0;display:grid;grid-template-columns:repeat(4,1fr);gap:16px;font-size:14px}.cx-footer{margin-top:48px;padding:40px max(24px,calc((100% - 1200px)/2));background:#f8f8f8;border-top:1px solid #e5e5e5}.cx-footer .col-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:48px}.cx-footer h4{text-transform:none;letter-spacing:0;font-size:16px;margin-top:0}.cx-footer li{margin-bottom:10px;font-size:14px}.cx-footer .legal{border-top:1px solid #ddd;padding-top:24px;margin-top:32px;font-size:11px;line-height:1.7;color:#666} +.btn{border-radius:24px;padding:11px 22px;background:#000;color:#fff;border:1px solid #000;font-size:14px;font-weight:500;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;min-height:42px;text-decoration:none}.btn.outline{background:#fff;color:#000}.btn.tiny{min-height:32px;padding:6px 16px;font-size:13px}.btn:hover{background:#333;color:#fff}.btn.outline:hover{background:#f4f4f4;color:#000}.form-narrow{width:100%;max-width:500px}.field input:not([type=checkbox]),.field select,.field textarea{width:100%;box-sizing:border-box;min-height:44px;border:1px solid #bdbdbd;border-radius:2px;background:#fff;padding:10px 12px;font-size:16px}.field label{font-size:14px;color:#222}.field textarea{min-height:120px}.field{margin-bottom:20px}.muted{color:#666}.flash-stack{padding-top:12px}.home-page .flash-stack{position:relative;z-index:51;background:white}.filter-bar{border-top:1px solid #ddd;border-bottom:1px solid #ddd;border-radius:0;background:#fff;padding:16px 0;gap:12px}.filter-group label{font-size:12px}.filter-group input,.filter-group select{border:1px solid #d2d2d2;border-radius:2px;min-height:40px;font:14px var(--sans);max-width:160px}.result-summary{margin:22px 0;font-size:14px}.agent-card{border:1px solid #ddd;box-shadow:none;border-radius:0}.dashboard{gap:32px} +.listing-navigation{position:sticky;top:48px;z-index:20;display:flex;align-items:center;gap:32px;padding:9px 24px;min-height:58px;box-sizing:border-box;background:#fff;border-bottom:1px solid #ddd;font-size:13px}.listing-navigation nav{display:flex;gap:32px;flex:1}.listing-navigation nav a{color:#666}.detail-gallery{position:relative;display:grid;grid-template-columns:2fr 1fr 1fr;grid-template-rows:1fr 1fr;gap:12px;margin:16px;height:min(31.25vw,480px);overflow:hidden}.gallery-tile{display:block;width:100%;height:100%;border:0;padding:0;overflow:hidden;background:#eee;cursor:pointer}.gallery-tile:first-child{grid-row:span 2}.gallery-tile:nth-child(n+6){display:none}.gallery-tile:nth-child(4):last-of-type{grid-column:2/4}.gallery-tile img{display:block;width:100%;height:100%;object-fit:cover;transition:filter .15s}.gallery-tile:hover img{filter:brightness(.92)}.photo-count{position:absolute;bottom:16px;right:16px;background:#fff;color:#000;border:0;min-height:32px;padding:6px 14px;font-size:13px}.detail-grid{display:grid;max-width:1120px;grid-template-columns:minmax(0,2fr) minmax(220px,1fr);gap:24px;align-items:start;padding-top:8px}.listing-heading{padding:0 0 30px}.price-big{font:500 28px/1.3 var(--sans);margin:0 0 8px}.listing-dimensions{display:flex;flex-wrap:wrap;gap:12px;font-size:14px}.listing-heading h1{font:400 15px/1.5 var(--sans);margin:8px 0 0}.property-section{padding-top:28px;padding-bottom:28px;border-top:1px solid #ddd;scroll-margin-top:114px}.property-section h2{font-size:22px;margin-top:0;margin-bottom:18px}.property-description{white-space:pre-line;font-size:18px;line-height:1.6;margin:0}.listing-credit{font-size:13px;margin-top:28px}.property-facts{display:grid;grid-template-columns:1fr 1fr;gap:0 30px;margin:0}.property-facts>div{display:flex;justify-content:space-between;gap:20px;padding:10px 0;border-bottom:1px solid #eee;font-size:14px}.property-facts dt{color:#777;flex-shrink:0}.property-facts dd{margin:0;text-align:right}.amenities{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;padding-left:20px;font-size:14px}.agent-sidebar{position:sticky;top:126px;border:0;border-radius:0;padding:16px 0;box-shadow:none;background:#fff;max-width:280px}.action-stack{display:grid;gap:12px}.action-stack .btn{width:100%;box-sizing:border-box}.action-stack form{margin:0}.snapshot-note{font-size:12px;color:#777;line-height:1.6}.photo-viewer{position:fixed;inset:0;max-width:none;max-height:none;width:100vw;height:100dvh;border:0;margin:0;padding:0;background:#141414;color:white}.photo-viewer header{display:flex;align-items:center;gap:24px;min-height:64px;padding:0 24px;background:white;color:black}.photo-viewer header strong{flex:1;font-weight:500;font-size:16px}.photo-stage{height:calc(100dvh - 64px);position:relative;display:flex;justify-content:center;align-items:center}.photo-stage img{max-width:calc(100% - 120px);max-height:calc(100% - 48px);object-fit:contain}.photo-stage .icon-button{position:absolute;top:50%;font-size:44px;border-radius:50%;width:48px;height:48px;padding:0;background:#fff;color:#000}.photo-previous{left:16px}.photo-next{right:16px} +@media(max-width:1100px){.cx-nav-inner{gap:18px}.cx-nav-links{gap:16px}.nav-search{max-width:230px}.cx-nav-right{padding-left:12px}.city-grid{grid-template-columns:repeat(2,1fr)}} +@media(max-width:900px){.cx-nav-links,.nav-search{display:none}.mobile-nav-toggle{display:block}.cx-nav-inner{justify-content:space-between;gap:12px}.cx-nav-right{margin-left:auto;border:0;padding:0}.cx-logo img{width:112px}.cx-nav-right>a:first-child{display:none}.grid-cards{grid-template-columns:repeat(2,minmax(0,1fr))}.popular-cities ul{grid-template-columns:repeat(2,1fr)}.listing-navigation nav{gap:18px;overflow-x:auto;white-space:nowrap}.listing-navigation{gap:18px}.detail-grid{gap:28px;grid-template-columns:minmax(0,1fr) 220px}.property-facts{grid-template-columns:1fr}} +@media(max-width:640px){.container{width:calc(100% - 32px)}.section,.home-section{padding-top:32px;padding-bottom:32px}.cx-nav-inner{padding:0 8px}.cx-nav-right{font-size:12px;gap:4px}.cx-nav-right>span{display:none}.cx-nav-right form{display:none}.cx-hero{height:470px;padding:0 16px;background-position:45% center}.hero-content{margin-top:0}.cx-hero h1{font-size:40px;margin-bottom:24px}.search-tabs{gap:28px}.search-tabs label{font-size:16px}.search-box{height:48px}.search-box input{font-size:14px;padding:12px}.search-box button{width:48px}.home-section h2{font-size:26px}.section-intro{font-size:15px;margin-bottom:24px}.grid-cards{grid-template-columns:1fr;gap:20px}.home-section .grid-cards{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;padding:0 0 10px}.home-section .card{flex:0 0 88%;scroll-snap-align:start}.city-grid{gap:16px}.city-tile{height:150px}.city-tile .label{font-size:16px;left:10px;bottom:10px}.cx-footer{padding:32px 20px}.cx-footer .col-grid{grid-template-columns:1fr 1fr;gap:24px}.cx-footer .col-grid>div:last-child{grid-column:1/-1}.filter-bar{gap:10px;align-items:end}.filter-group{flex:1 1 42%;min-width:0}.filter-group input,.filter-group select{width:100%;max-width:none;box-sizing:border-box}.filter-bar .ckb{font-size:13px}.listing-navigation{padding:8px 16px;min-height:48px;gap:16px}.listing-navigation nav{gap:16px}.listing-navigation>.btn{display:none}.detail-gallery{height:280px;display:block;margin:0}.gallery-tile{display:none}.gallery-tile:first-child{display:block}.detail-grid{display:flex;flex-direction:column;gap:0;padding-top:12px}.detail-main{width:100%}.agent-sidebar{position:static;order:-1;width:100%;max-width:none;padding:0 0 12px}.action-stack{display:flex;flex-wrap:wrap;gap:8px}.action-stack>a,.action-stack>form{flex:1 1 42%;font-size:13px}.action-stack>form .btn{font-size:13px}.detail-main .price-big{font-size:26px}.listing-heading{padding-top:12px}.property-section h2{font-size:20px}.property-facts{grid-template-columns:1fr}.amenities{grid-template-columns:1fr}.photo-viewer header{padding:0 12px;gap:12px}.photo-viewer header strong{font-size:13px}.photo-stage img{max-width:100%;max-height:100%}.photo-stage .icon-button{width:36px;height:36px;font-size:34px;background:#ffffffd9}.photo-previous{left:6px}.photo-next{right:6px}.dashboard{display:block}.dashboard>nav{margin-bottom:24px}.form-narrow{margin-left:0;margin-right:0}.agent-card{display:flex;gap:16px}.grid-cards[style]{grid-template-columns:1fr!important}} +@media(prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;transition:none!important}} +.gallery-tile:nth-child(4):nth-last-child(2){grid-column:2/4}.agent-grid{grid-template-columns:repeat(2,minmax(0,1fr));margin-top:28px}.agent-card h2{font-size:20px;margin:0 0 6px}.agent-card p{font-size:13px;margin:0}.agent-card{color:inherit;text-decoration:none}.agent-card .av{flex-shrink:0}.property-facts dd{overflow-wrap:anywhere}@media(max-width:640px){.agent-grid{grid-template-columns:1fr}} + +.collection-picker{display:grid;gap:10px;margin-top:14px;padding-top:14px;border-top:1px solid #ddd}.collection-picker label{font-size:13px}.collection-picker select{min-height:40px;width:100%;font:14px var(--sans);border:1px solid #bbb;padding:8px} +.preference-types{border:0;padding:0;min-width:0}.preference-types legend{font-size:14px;color:#222;padding:0;margin-bottom:8px} +/* Match the reference's left-aligned tab strip and inset search button. */ +.cx-nav-links{flex:0 0 auto}.hero-content{margin-top:38px}.cx-hero::before{background:transparent}.search-tabs{justify-content:flex-start;gap:0;margin:0}.search-tabs label{background:#e7e7e7;color:#171717;width:80px;font-size:14px;font-weight:500}.search-tabs span{padding:6px 0;border:0;line-height:20px}.search-tabs input:checked+span{background:#fff;border:0}.search-tabs input:focus-visible+span{outline-color:#000;outline-offset:-3px}.search-box{height:64px;padding:8px;box-sizing:border-box}.search-box input{padding:8px}.search-box button{width:48px;height:48px}.home-section{max-width:1120px;padding-top:64px}.cx-footer{background:#000;color:#fff;border:0}.cx-footer a,.cx-footer h4{color:#fff}.cx-footer .legal{border-color:#444;color:#aaa}@media(max-width:640px){.hero-content{margin-top:22px}.search-box{height:56px}.search-box button{width:40px;height:40px}.home-section{padding-top:36px}.search-tabs label{width:80px;font-size:13px}} +.city-tile{min-width:0;width:100%}@media(max-width:640px){.cx-hero{height:400px}.hero-content{margin-top:18px}.cx-hero h1{font-size:32px;margin-bottom:14px}.search-box{height:48px;padding:0}.search-box button{width:48px;height:48px}.cx-nav-inner{gap:8px}.mobile-nav-toggle{font-size:22px;padding:6px;width:32px}.cx-logo img{width:96px}} + +/* Browse controls follow the source toolbar and modal filter hierarchy. */ +.browse-page{padding-top:32px}.browse-page>h1{font-family:var(--sans);font-size:26px;font-weight:500} +.browse-filters{display:flex;flex-wrap:wrap;gap:12px;align-items:flex-end;padding:20px 0;border-bottom:1px solid #ddd;margin-bottom:24px} +.browse-filters .filter-group{display:flex;flex-direction:column;align-items:stretch;gap:4px;flex:0 1 145px;min-width:110px}.browse-filters .filter-group input,.browse-filters .filter-group select{width:100%}.browse-filters label{font-size:12px;margin-bottom:5px}.browse-filters input,.browse-filters select{max-width:100%;height:40px;border:1px solid #999;border-radius:4px;background:#fff;padding:8px 10px;font:14px var(--sans)} +.browse-filters .location-filter{flex:1 1 230px;min-width:0}.browse-filters .btn{height:40px;white-space:nowrap}.browse-filters .sort-filter{margin-left:auto;flex-basis:180px} +.search-filters-dialog{width:min(600px,calc(100vw - 32px));max-height:calc(100dvh - 48px);padding:0;border:0;border-radius:8px;color:#000} +.search-filters-dialog::backdrop{background:#0008}.search-filters-dialog header,.search-filters-dialog footer{display:flex;align-items:center;justify-content:space-between;padding:20px 24px;gap:20px}.search-filters-dialog header{border-bottom:1px solid #ddd}.search-filters-dialog h2{font:500 24px var(--sans);margin:0}.search-filters-dialog footer{border-top:1px solid #ddd}.advanced-filter-fields{display:grid;grid-template-columns:1fr 1fr;gap:24px;padding:24px}.amenity-filters{grid-column:1/-1;border:0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:18px}.amenity-filters legend{font-weight:500;margin-bottom:20px}.amenity-filters label{font-size:15px;display:flex;gap:10px;align-items:center}.amenity-filters input{width:18px;height:18px;accent-color:#000} +@media(max-width:640px){.browse-page{padding-top:24px}.browse-page>h1{font-size:24px}.browse-filters{gap:10px}.browse-filters .filter-group{flex:1 1 calc(50% - 10px);min-width:0}.browse-filters .location-filter{flex-basis:100%}.browse-filters .sort-filter{flex-basis:100%}.advanced-filter-fields{padding:20px;gap:16px}.search-filters-dialog footer{padding:16px;gap:12px}.search-filters-dialog footer .btn{padding-left:14px;padding-right:14px}} + +.property-toolbar-actions{display:flex;gap:12px}.property-toolbar-actions form{margin:0}.property-toolbar-actions .btn{min-width:96px}.share-property{width:min(480px,calc(100vw - 32px));padding:24px;border:0;border-radius:8px}.share-property::backdrop{background:#0008}.share-property header{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px}.share-property h2{font:500 22px var(--sans);margin:0}.share-property label{display:block;margin-bottom:8px}.share-property input{display:block;width:100%;padding:12px;margin-bottom:20px;border:1px solid #aaa;border-radius:4px;font:14px var(--sans)}.share-property [role=status]{font-size:14px;margin-bottom:0}@media(max-width:640px){.property-toolbar-actions{display:none}.property-description{font-size:16px}.detail-grid{max-width:none}} + +/* Listing detail measurements from the desktop and mobile source pages. */ +.detail-status { + position: absolute; + top: 16px; + left: 16px; + padding: 3px 8px; + background: #000; + color: #fff; + font-size: 15px; +} +@media (min-width: 641px) { + .detail-gallery[data-photo-count="1"] { + grid-template-columns: 1fr; + grid-template-rows: 1fr; + } + .detail-gallery[data-photo-count="2"] { + grid-template-columns: 2fr 1fr; + grid-template-rows: 1fr; + } + .detail-gallery[data-photo-count="2"] .gallery-tile { grid-row: 1; } + .detail-gallery[data-photo-count="3"] { grid-template-columns: 2fr 1fr; } + .detail-gallery[data-photo-count="4"] .gallery-tile:nth-child(4) { grid-column: 2 / 4; } +} +.detail-grid.container { + width: calc(100% - 48px); + max-width: 1124px; + padding: 8px 0 0; +} +@media (max-width: 640px) { + body:has(.listing-page) { padding-bottom: 84px; } + .listing-page .listing-navigation { + height: 0; + min-height: 0; + padding: 0; + border: 0; + } + .listing-navigation > a, + .listing-navigation > nav { display: none; } + .property-toolbar-actions { + display: flex; + position: absolute; + top: 8px; + right: 8px; + gap: 8px; + } + .property-toolbar-actions .btn { + min-width: 0; + background: #fff; + border-color: #bbb; + padding: 8px 12px; + } + .listing-page .detail-gallery { + height: 86vw; + max-height: 360px; + margin: 0; + } + .detail-grid.container { + display: block; + width: calc(100% - 48px); + padding-top: 24px; + } + .listing-page .agent-sidebar { + position: static; + max-width: none; + padding: 0; + } + .listing-page .action-stack { + position: fixed; + bottom: 0; + left: 0; + right: 0; + z-index: 100; + display: flex; + flex-direction: row; + gap: 12px; + margin: 0; + padding: 12px 16px; + background: #fff; + border-top: 1px solid #ddd; + } + .listing-page .action-stack > a { flex: 1; } + .listing-page .action-stack > :nth-child(n+3) { display: none; } +} + +.table-scroll{max-width:100%;overflow-x:auto;overscroll-behavior-x:contain}.table-scroll:focus-visible{outline:2px solid #000;outline-offset:3px} + +/* Sell entry and source-referenced landing page. */ +.search-tabs>a{display:block;width:80px;padding:6px 0;background:#e7e7e7;color:#171717;font-size:14px;font-weight:500;line-height:20px;text-align:center} +.search-tabs>a:focus-visible{outline:2px solid #000;outline-offset:-3px} +.cx-nav-links>a[aria-current="page"]{box-shadow:inset 0 -2px currentColor} +.sell-container{width:calc(100% - 48px);max-width:1170px;margin:0 auto} +.sell-hero{position:relative;isolation:isolate;overflow:hidden;min-height:660px;color:#fff;background:url('../external_cache/hero-sell.webp') center/cover no-repeat} +.sell-hero-content{display:grid;grid-template-columns:500px minmax(0,1fr);gap:100px;align-items:center;min-height:660px;padding:80px 0} +.sell-intro h1{font:400 50px/65px var(--serif);margin:0 0 24px;letter-spacing:0} +.sell-intro p{font:400 28px/42px var(--sans);margin:0 0 40px} +.sell-button{display:inline-flex;align-items:center;justify-content:center;min-width:220px;min-height:48px;padding:8px 24px;border:1px solid transparent;border-radius:32px;background:#fff;color:#000;font:500 20px/30px var(--sans);text-align:center} +.sell-button:focus-visible{outline:3px solid #9bbbe4;outline-offset:4px} +.sell-intro{position:relative;z-index:1}.sell-preview{position:relative;box-shadow:0 0 0 100vmax #0008;border:2px solid #fff;background:transparent;color:#000;align-self:center;min-width:0} +.sell-preview-title{background:#fff;padding:12px 10px;text-align:center;text-transform:uppercase;letter-spacing:1.5px;font:500 20px/28px var(--sans)} +.sell-preview-photo{height:324px;position:relative} +.sell-preview-facts{position:absolute;bottom:0;left:0;right:0;display:flex;align-items:flex-end;gap:22px;padding:22px;color:#fff;background:linear-gradient(transparent,#0009)} +.sell-preview-facts strong{font-size:40px;font-weight:700;line-height:1.2;margin-right:auto} +.sell-preview-facts span{display:grid;font-size:20px;line-height:1.3} +.sell-preview-facts b{font-size:32px;font-weight:500} +.sell-contact{background:#f1efeb;padding:100px 0;scroll-margin-top:64px} +.sell-contact-card{background:#fff;border-radius:12px;padding:64px;display:grid;grid-template-columns:1fr 1fr;gap:70px} +.sell-contact h2,.sell-strategy h2{font:400 42px/1.2 var(--serif);margin:0 0 24px} +.sell-contact p{font-size:20px;line-height:1.5;margin:0 0 24px} +.sell-button-dark{background:#000;color:#fff} +.sell-strategy{padding-top:90px;padding-bottom:100px;text-align:center} +.sell-eyebrow{text-transform:uppercase;letter-spacing:1.5px;font-size:16px;margin-bottom:50px} +.sell-phases{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:32px;text-align:left} +.sell-phase-label{display:block;border-bottom:1px solid #aaa;padding-bottom:12px;margin-bottom:20px;font-size:20px} +.sell-phases h3{font-size:25px}.sell-phases p{font-size:17px;line-height:1.6}.sell-phases a{text-decoration:underline} +@media(max-width:1200px){.sell-hero-content{grid-template-columns:1fr 1fr;gap:48px}.sell-intro h1{font-size:44px;line-height:1.25}.sell-intro p{font-size:24px;line-height:1.5}.sell-desktop-break{display:none}.sell-preview-title{font-size:16px}.sell-preview-facts{gap:12px;padding:14px}.sell-preview-facts strong{font-size:30px}.sell-preview-facts span{font-size:16px}.sell-preview-facts b{font-size:26px}} +@media(max-width:700px){.sell-container{width:calc(100% - 40px)}.sell-hero{min-height:0}.sell-hero-content{grid-template-columns:1fr;gap:0;padding:40px 0;min-height:0}.sell-intro{display:contents}.sell-intro>*{position:relative;z-index:1}.sell-intro h1{grid-row:1;font-size:32px;line-height:1.3;margin:0 0 12px}.sell-intro p{grid-row:2;font-size:16px;line-height:1.6;margin:0 0 24px}.sell-intro>.sell-button{grid-row:4;justify-self:center;margin-top:24px;font-size:16px;min-width:220px}.sell-preview{grid-row:3}.sell-preview-photo{height:calc((100vw - 44px)*.553)}.sell-preview-title{font-size:12px;line-height:18px;letter-spacing:1px;padding:10px 8px}.sell-preview-facts strong{font-size:20px;font-weight:500}.sell-preview-facts b{font-size:20px}.sell-preview-facts span{font-size:14px}.sell-contact{padding:40px 0}.sell-contact-card{padding:28px;grid-template-columns:1fr;gap:20px}.sell-contact h2,.sell-strategy h2{font-size:34px;line-height:1.3}.sell-contact p{font-size:17px}.sell-button{min-width:190px;font-size:18px}.sell-strategy{padding:48px 0}.sell-phases{grid-template-columns:1fr;gap:36px}.search-tabs>a{font-size:13px}} diff --git a/sites/compass/static/css/concierge.css b/sites/compass/static/css/concierge.css new file mode 100644 index 00000000..520465b0 --- /dev/null +++ b/sites/compass/static/css/concierge.css @@ -0,0 +1,1231 @@ +/* Layout adapted from Compass /concierge/static/base.css, observed 2026-09-07. + Scoped to Concierge; local-service and external-video adaptations follow below. */ +#concierge-page { --cx-color-white:#fff; --cx-color-black:#000; --cx-color-grey20:#f4f4f4; --cx-color-grey40:#dadada; --cx-color-grey60:#adadad; --cx-color-grey80:#6c6c6c; --cx-color-backgroundAccent:#f4f4f4; --cx-color-dropShadow:rgba(0,0,0,.1); --font-weightRegular:400; --font-weightNormal:400; --font-weightMedium:500; --font-weightSemiBold:600; --font-weightBold:700; font-family:'Compass Sans',Arial,sans-serif; line-height:1.5; } +#concierge-page .font-serifRegular {font-family:'Compass Serif',Georgia,serif;} +#concierge-page .cx-gridPadding {padding-left:24px;padding-right:24px;} +#concierge-page section {scroll-margin-top:110px;} +:where(#concierge-page) *, +:where(#concierge-page) *:before, +:where(#concierge-page) *:after { + box-sizing: border-box; +} + +#concierge-page { + --cr-white: #FFFFFF; + --cr-white: var(--cx-color-white); + --cr-black: #000000; + --cr-black: var(--cx-color-black); + --cr-gray-l: #F4F4F4; + --cr-gray-l: var(--cx-color-grey20); + --cr-gray-m: #DADADA; + --cr-gray-m: var(--cx-color-grey40); + --cr-gray-d: #6C6C6C; + --cr-gray-d: var(--cx-color-grey80); +} + +#concierge-page img { + display: block; + margin: 0; + max-width: 100%; + height: auto; +} + +#concierge-page .width { + margin: auto; +} + +#concierge-page .w-m { + max-width: 750px; +} + +#concierge-page .g-flex { + display: flex; + flex-wrap: wrap; +} + +#concierge-page .g-center { + align-items: center; +} + +#concierge-page .g-flex-col-third { + position: relative; + flex: 0 0 33.33333%; +} + +#concierge-page .g-flex-col-40 { + position: relative; + flex: 0 0 40%; +} + +#concierge-page .g-flex-col-60 { + position: relative; + flex: 0 0 60%; +} + +@media screen and (min-width: 1024px) { +#concierge-page .g-grid { + display: grid; +} + +#concierge-page .g-grid-colThree { + grid-template-columns: repeat(3, 1fr); + grid-gap: 20px; +} +} + +#concierge-page .object-fit { + display: block; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + overflow: hidden; +} + +#concierge-page .object-fit img { + position: relative; + top: 50%; + left: 50%; + width: 101%; + max-width: none; + height: 101% !important; + transform: translate(-50%,-50%); + -o-object-fit: cover; + object-fit: cover; + -webkit-backface-visibility: hidden; +} + +#concierge-page h1, +#concierge-page h4 { + margin: 0 0 45px; + font-weight: var(--font-weightRegular); + font-size: 45px; + line-height: 1.25em; +} + +#concierge-page h2 { + margin: 0 0 45px; + font-weight: var(--font-weightMedium); + font-size: 22px; + line-height: 1.25em; +} + +#concierge-page .t-heading { + font-size: 72px; +} + +#concierge-page p, +#concierge-page ol, +#concierge-page ul { + margin: 0 0 25px; +} + +#concierge-page ol, +#concierge-page ul { + padding: 0 0 0 17px; +} + +#concierge-page p { + font-size: 18px; + line-height: 1.5em; +} + +@media screen and (max-width: 1279px) { +#concierge-page .t-heading { + font-size: 48px; +} +} + +#concierge-page p:last-of-type { + margin: 0; +} + +#concierge-page p:empty { + display: none; +} + +@media screen and (max-width: 1023px) { +#concierge-page h1, +#concierge-page h4 { + font-size: 36px; +} + +#concierge-page .t-heading { + font-size: 45px; +} +} + +@media screen and (max-width: 767px) { +#concierge-page h1, +#concierge-page h4 { + font-size: 30px; +} + +#concierge-page p, +#concierge-page ol, +#concierge-page ul { + font-size: 14px; +} +} + +@media screen and (max-width: 1279px) { +#concierge-page p { + font-size: 16px; +} +} + +#concierge-page a { + position: relative; + border: none; + word-wrap: break-word; + text-decoration: none; + cursor: pointer; + color: inherit; + transition: 0.2s; +} + +#concierge-page p a { + text-decoration: none; + color: inherit; +} + +#concierge-page p a:hover { + opacity: 0.7; +} + +#concierge-page .cr-black { + color: #000000; + color: var(--cx-color-black); +} + +#concierge-page .cr-white { + color: #FFFFFF; + color: var(--cx-color-white); +} + +#concierge-page .darkNeutral-gray { + color: #6C6C6C; + color: var(--cx-color-grey80); +} + +#concierge-page .bg-black { + background: #000000; + background: var(--cx-color-black); +} + +#concierge-page .bg-gray-l { + background: var(--cr-gray-l); +} + +#concierge-page button { + border: 0; + padding: 0; + border-radius: 0; + background: transparent; + -webkit-appearance: none; + -moz-appearance: none; +} + +#concierge-page .btn { + display: inline-block; + position: relative; + border: none; + padding: 0 35px; + height: 45px; + white-space: normal; + overflow: hidden; + font-size: 16px; + line-height: 47px; + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + color: #FFFFFF; + color: var(--cx-color-white); + background: #000000; + background: var(--cx-color-black); + opacity: 1 !important; + transition: 0.3s; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + cursor: pointer; + z-index: 1; +} + +#concierge-page .btn:before { + content: ""; + display: block; + position: absolute; + top: 0; + left: 0; + width: 102%; + height: 102%; + background: #F4F4F4; + background: var(--cx-color-backgroundAccent); + opacity: 0; + transition: 0.2s; + z-index: -1; +} + +#concierge-page .btn.btn-large { + padding: 16px 44px; + padding: var(--cx-spacing-2x) 44px; + height: auto; + font-size: 20px; + line-height: 1.5; + line-height: var(--cx-font-lineHeightBody); +} + +#concierge-page .btn-h-r:before { + top: 0; + left: 0; + width: 0; + opacity: 1; +} + +#concierge-page .btn-h-r.h_in:before { + width: 100%; +} + +@media screen and (min-width: 768px) { +#concierge-page .btn:hover { + color: #000000; + color: var(--cx-color-black); + box-shadow: 2px 2px 8px 2px rgba(0,0,0,0.1); +} + +#concierge-page .btn:hover::before { + opacity: 1; +} +} + +#concierge-page .arrow { + position: absolute; + top: 28px; + right: 20px; + width: 30px; + height: 2px; + border-radius: 0 0 1px 1px; + background-color: #000000; + background-color: var(--cx-color-black); + z-index: 3; +} + +#concierge-page .arrow:before, +#concierge-page .arrow:after { + content: ""; + position: absolute; + left: 26px; + width: 6px; + height: 2px; + background-color: #000000; + background-color: var(--cx-color-black); +} + +#concierge-page .arrow:before { + top: 4px; + transform: rotate(-45deg); + transform-origin: 0 0; +} + +#concierge-page .arrow:after { + top: 1px; + transform: rotate(45deg); + transform-origin: 100% 0; +} + +#concierge-page .slider-controls { + font-size: 0; +} + +#concierge-page .slider-controls button { + display: inline-block; + position: relative; + border: 2px solid #000000; + border: 2px solid var(--cx-color-black); + width: 40px; + height: 40px; + background: #FFFFFF; + background: var(--cx-color-white); + cursor: pointer; + transition: 0.2s; +} + +#concierge-page .slider-controls button .arrow { + transition: 0.2s; + z-index: 1; +} + +#concierge-page .slider-controls button .arrow, +#concierge-page .slider-controls button .arrow:before, +#concierge-page .slider-controls button .arrow:after { + background-color: #000000; + background-color: var(--cx-color-black); +} + +#concierge-page .slider-controls button:hover .arrow, +#concierge-page .slider-controls button:hover .arrow:before, +#concierge-page .slider-controls button:hover .arrow:after { + background-color: #000000; + background-color: var(--cx-color-black); +} + +#concierge-page .slider-controls button .arrow { + position: absolute; + top: 50%; + right: auto; + left: 50%; + transform: translate(-50%, -50%); +} + +#concierge-page .slider-controls .slider-prev { + padding: 0 20px; +} + +#concierge-page .slider-controls .slider-prev .arrow { + transform: translate(-50%, -50%) rotate(180deg); +} + +#concierge-page .slider-controls .slider-prev .arrow { + width: 15px; +} + +#concierge-page .slider-controls .slider-prev .arrow:before, +#concierge-page .slider-controls .slider-prev .arrow:after { + left: 10px; +} + +#concierge-page .slider-controls .slider-next { + width: 65px; + margin-left: -2px; +} + +:where(#concierge-page) #hero { + display: flex; + position: relative; + min-height: 70vh; + background: #FFFFFF; + background: var(--cx-color-white); +} + +:where(#concierge-page) #hero > * { + position: relative; + width: 50%; +} + +:where(#concierge-page) #hero #hero-content > * { + max-width: 430px; + margin-left: auto; + margin-right: auto; +} + +:where(#concierge-page) #hero #hero-logo { + margin-bottom: 60px; +} + +:where(#concierge-page) #hero #hero-logo svg { + max-width: 220px; +} + +:where(#concierge-page) #hero #hero-logo .t-heading { + margin: 0; + font-size: 0; +} + +:where(#concierge-page) #hero #hero-content h2 { + margin-bottom: 30px; + font-size: 28px; + line-height: 1.3em; + font-family: "Compass Serif", Times, "Times New Roman", serif; + font-family: var(--font-familySerif, "Compass Serif", Times, "Times New Roman", serif); +} + +:where(#concierge-page) #hero p { + font-size: 22px; +} + +:where(#concierge-page) #hero #hero-image { + height: 70vh; +} + +:where(#concierge-page) #hero #hero-image video { + -o-object-fit: cover; + object-fit: cover; +} + +:where(#concierge-page) #stories { + margin: 0 auto 60px; + width: 100%; +} + +@media screen and (min-width: 1280px) { +:where(#concierge-page) #stories .width { + width: 100%; +} +} + +:where(#concierge-page) #stories .story-title { + position: absolute; + top: 30px; + left: calc(60% + 90px); + font-size: 45px; +} + +:where(#concierge-page) #stories .story-quote p { + font-size: 24px; +} + +:where(#concierge-page) #stories .story-info { + margin-top: 20px !important; + font-weight: var(--font-weightMedium); +} + +:where(#concierge-page) #stories .story-stats { + margin-top: 60px; +} + +:where(#concierge-page) #stories .story-stats .stat { + display: inline-block; + margin-right: 60px; +} + +:where(#concierge-page) #stories .story-stats .stat:last-of-type { + margin-right: 0; +} + +:where(#concierge-page) #stories .story-stats .stat h4 { + margin-bottom: 0 !important; + font-size: 60px !important; +} + +:where(#concierge-page) #stories .story-disclaimer { + margin-top: 30px; + font-size: 14px; +} + +:where(#concierge-page) #stories .story-inner { + padding: 120px 0 0 90px; +} + +:where(#concierge-page) #stories #controls { + position: relative; + margin-top: 30px; + line-height: 0; +} + +:where(#concierge-page) #stories .video { + position: relative; +} + +:where(#concierge-page) #stories .video:after { + content: ""; + display: block; + padding-top: 56.25%; +} + +:where(#concierge-page) .slides-outer { + position: relative; +} + +:where(#concierge-page) .slides { + position: relative; + transition: height 0.6s ease-out; +} + +:where(#concierge-page) .slide { + position: absolute; + top: 0; + left: 0; + opacity: 0; + z-index: 0; + transition: 0.3s; +} + +:where(#concierge-page) .slide.slide-active { + position: relative; + z-index: 2; + opacity: 1; +} + +:where(#concierge-page) #slider .slide:not(.slide-active) { + display: none; +} + +:where(#concierge-page) .slide-fade { + opacity: 1; + transform: none; +} + +:where(#concierge-page) #stats { + margin-top: 45px; + margin-bottom: 45px; +} + +:where(#concierge-page) #stats .stat { + padding: 30px 60px; + border-right: 1px solid var(--cr-gray-m); + text-align: center; +} + +:where(#concierge-page) #stats .stat:last-of-type { + border-right: none; +} + +:where(#concierge-page) #stats .stat-metric { + margin-bottom: 20px; + line-height: 1em; + font-size: 72px; +} + +:where(#concierge-page) #stats p.stat-description:last-of-type { + margin: 0 auto; + max-width: 340px; +} + +:where(#concierge-page) #stats .stats-source { + display: block; + width: 100%; + margin-top: 30px; + padding-right: 60px; + text-align: right; + font-size: 14px; + color: #6C6C6C; + color: var(--cx-color-grey80); +} + +:where(#concierge-page) #improvements { + padding: 90px 0; +} + +:where(#concierge-page) #improvements h2 { + font-size: 45px; +} + +:where(#concierge-page) #improvements ul { + margin: 0; + padding: 0; + -moz-column-count: 3; + column-count: 3; + -moz-column-gap: 30px; + column-gap: 30px; + font-size: 20px; + list-style-position: inside; +} + +:where(#concierge-page) #improvements ul li { + padding-left: 27px; + text-indent: -27px; + line-height: 1.8em; +} + +:where(#concierge-page) #video { + padding: 90px 0; +} + +:where(#concierge-page) #video #video-heading { + margin: 0 auto 60px; + text-align: center; +} + +:where(#concierge-page) #video #video-heading h2 { + margin-bottom: 15px; + font-size: 45px; +} + +:where(#concierge-page) #video .video-cta { + position: absolute; + top: 50%; + left: 50%; + border: 2px solid #FFFFFF; + border: 2px solid var(--cx-color-white); + padding: 0 35px; + height: 50px; + transform: translate(-50%, -50%); + opacity: 1; + pointer-events: initial; + line-height: 47px; + white-space: nowrap; + z-index: 10; + transition: opacity 0.2s ease-out; + cursor: pointer; +} + +:where(#concierge-page) #video .video-cta span { + margin-left: 30px; + font-size: 22px; +} + +:where(#concierge-page) .video-outer { + position: relative; + margin: 0 auto; + width: 100%; + padding-top: 56%; + overflow: hidden; +} + +:where(#concierge-page) .video-thumb { + position: relative; + top: -3px; + left: -3px; + width: calc(100% + 6px); + height: calc(100% + 6px); + z-index: 2; + opacity: 1; + pointer-events: initial; + cursor: pointer; + transition: opacity 0.2s ease-out; +} + +:where(#concierge-page) .video-thumb:after { + content: ""; + display: block; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(0, 0, 0, 0.5); +} + +:where(#concierge-page) #faq h2 { + margin-bottom: 30px !important; + padding-top: 90px; + font-size: 45px; +} + +:where(#concierge-page) #faq .faq-card { + position: relative; + border: 1px solid var(--cr-gray-m); + padding: 70px 40px; +} + +:where(#concierge-page) #faq .faq-cardHeadline { + margin-bottom: 40px; + font-size: 26px; +} + +:where(#concierge-page) #faq #faq-content p.faq-cardText { + font-size: 18px; + line-height: 1.3em; +} + +:where(#concierge-page) #faq .disclaimer { + margin-top: 50px; + padding-bottom: 90px; +} + +:where(#concierge-page) #faq .disclaimer p { + font-size: 13px; + line-height: 1.5em; +} + +:where(#concierge-page) .image-small:after, +:where(#concierge-page) .image-extend-left:after, +:where(#concierge-page) .image-before-after:after { + content: ""; + display: block; + padding-top: 100%; +} + +:where(#concierge-page) .image-small:after { + padding-top: 70%; +} + +:where(#concierge-page) .image-before-after:after { + padding-top: 80%; +} + +:where(#concierge-page) .image-before-after { + width: 100%; +} + +:where(#concierge-page) .image-extend-left { + width: calc(100% + 90px); + margin-left: -90px; +} + +:where(#concierge-page) .image-before, +:where(#concierge-page) .image-after { + position: absolute; +} + +:where(#concierge-page) .image-before:after, +:where(#concierge-page) .image-after:after { + content: ""; + display: block; + position: absolute; + width: 100%; +} + +:where(#concierge-page) .image-before:after { + content: "Before"; + top: -35px; +} + +:where(#concierge-page) .image-after:after { + content: "After"; + bottom: -35px; + text-align: right; +} + +:where(#concierge-page) .image-before { + top: 0; + left: 0; + width: 50%; + height: 45%; +} + +:where(#concierge-page) .image-after { + right: 0; + bottom: 0; + width: 70%; + height: 62%; +} + +:where(#concierge-page) #contact { + padding-top: 60px; + padding-bottom: 60px; +} + +:where(#concierge-page) #contact h2 { + margin-bottom: 20px; +} + +:where(#concierge-page) #how-it-works { + margin-top: 90px; + margin-bottom: 90px; +} + +:where(#concierge-page) #how-it-works h2 { + font-size: 45px; +} + +:where(#concierge-page) #how-it-works #how-it-works-image { + width: calc(50% - 120px); + margin-right: 120px; +} + +:where(#concierge-page) #how-it-works #how-it-works-image img { + width: 100%; +} + +:where(#concierge-page) #how-it-works #how-it-works-content { + width: 50%; +} + +:where(#concierge-page) #how-it-works #how-it-works-content li { + margin: 20px 0; + padding-left: 20px; +} + +:where(#concierge-page) #pillars { + margin: 90px auto; +} + +@media screen and (min-width: 1280px) { +:where(#concierge-page) #pillars .width { + width: 100%; +} +} + +:where(#concierge-page) #pillars .pillar { + flex: 1; + margin-right: 30px; + border-right: 1px solid var(--cr-gray-m); + padding-right: 30px; + text-align: center; +} + +:where(#concierge-page) #pillars .pillar:last-of-type { + margin-right: 0; + border-right: none; + padding-right: 0; +} + +:where(#concierge-page) #pillars h4 { + margin-bottom: 20px !important; +} + +:where(#concierge-page) #three-phased-marketing { + color: #FFFFFF; + color: var(--cx-color-white); + padding-top: 60px; + padding-bottom: 60px; +} + +:where(#concierge-page) #three-phased-marketing .three-phased-marketing-heading { + display: flex; + justify-content: center; + width: 100%; + margin-bottom: 60px; +} + +:where(#concierge-page) #three-phased-marketing .three-phased-marketing-heading h2 { + margin: 0; + max-width: 670px; + font-size: 40px; + text-align: center; + font-weight: 400; + font-weight: var(--cx-font-weightRegular); +} + +:where(#concierge-page) #three-phased-marketing .phase-blocks { + display: grid; + grid-template-columns: repeat(3, 1fr); + grid-column-gap: 32px; + grid-column-gap: var(--cx-spacing-4x); +} + +:where(#concierge-page) #three-phased-marketing .phase-block-heading { + font-size: 32px; + font-size: var(--cx-font-sizeHeader2); +} + +:where(#concierge-page) #three-phased-marketing .phase-block-separator { + display: flex; + align-items: center; + margin: 24px 0; + margin: var(--cx-spacing-gutter) 0; +} + +:where(#concierge-page) #three-phased-marketing .phase-block-separator::before { + content: ""; + display: inline-block; + flex-shrink: 0; + width: 20px; + height: 20px; + background-color: #FFFFFF; + background-color: var(--cx-color-white); + border-radius: 50%; +} + +:where(#concierge-page) #three-phased-marketing .phase-block-separator::after { + content: ""; + display: inline-block; + width: 100%; + height: 1px; + border-bottom: 1px solid rgba(255, 255, 255, 0.4); + margin-left: 24px; + margin-left: var(--cx-spacing-gutter); +} + +:where(#concierge-page) #three-phased-marketing .phase-block-content { + line-height: 26px; + font-size: 18px; + font-size: var(--cx-font-sizeSubheader2); +} + +@media screen and (max-width: 1535px) { +:where(#concierge-page) #three-phased-marketing .phase-block-heading { + font-size: 24px; +} +} + +@media screen and (max-width: 1023px) { +:where(#concierge-page) #three-phased-marketing .three-phased-marketing-heading h2 { + font-size: 30px; +} + +:where(#concierge-page) #three-phased-marketing .phase-blocks { + grid-template-rows: repeat(3, auto); + grid-row-gap: 32px; + grid-template-columns: unset; + grid-column-gap: unset; +} +} + +@media screen and (max-width: 1279px) { +:where(#concierge-page) #hero #hero-content > * { + max-width: 400px; +} + +:where(#concierge-page) #stories .story-title, +:where(#concierge-page) #stories .story-quote p { + font-size: 22px; +} + +:where(#concierge-page) #stats .stat-metric { + font-size: 60px; +} + +:where(#concierge-page) #faq .faq-card { + padding: 50px 20px; +} + +:where(#concierge-page) #faq #faq-content p.faq-cardText { + font-size: 16px; +} +} + +@media screen and (max-width: 1023px) { +:where(#concierge-page) #hero { + height: unset; + min-height: unset; +} + +:where(#concierge-page) #hero > * { + display: block; + width: 100%; +} + +:where(#concierge-page) #hero #hero-image { + order: 1; + height: 50vh !important; +} + +:where(#concierge-page) #hero #hero-content { + order: 2; + padding-top: 90px; + padding-bottom: 90px; +} + +:where(#concierge-page) #hero #hero-content > * { + max-width: 600px; +} + +:where(#concierge-page) #contact { + border-bottom: 1px solid var(--cr-gray-m); +} + +:where(#concierge-page) #pillars { + margin: 0; + border-bottom: 1px solid var(--cr-gray-m); + padding-top: 90px; + padding-bottom: 90px; +} + +:where(#concierge-page) #pillars .pillar { + flex: auto; + width: calc(50% - 15px); + margin-bottom: 30px; +} + +:where(#concierge-page) #pillars .pillar:nth-of-type(2n) { + margin-right: 0; + border-right: none; + padding-right: 0; +} + +:where(#concierge-page) #stories { + margin: 90px auto; +} + +:where(#concierge-page) #stories .width { + max-width: 600px; +} + +:where(#concierge-page) #stories .slide .g-flex { + display: block; +} + +:where(#concierge-page) #stories .image-extend-left { + width: 100%; + margin-left: 0; +} + +:where(#concierge-page) #stories .image-before { + top: 0; + bottom: auto; +} + +:where(#concierge-page) #stories .image-after { + top: auto; + bottom: 0; +} + +:where(#concierge-page) #stories .image-before:after, +:where(#concierge-page) #stories .image-after:after { + bottom: -30px; +} + +:where(#concierge-page) #stories .story-title { + position: relative; + top: initial; + left: initial; + margin-bottom: 60px; + font-size: 18px; +} + +:where(#concierge-page) #stories .story-inner { + padding: 20px 0 0 0; +} + +:where(#concierge-page) #stories p.story-info:last-of-type { + margin-bottom: 10px; +} + +:where(#concierge-page) #stories .story-quote p { + font-size: 18px; +} + +:where(#concierge-page) #stories .story-stats .stat h4 { + margin-bottom: 0 !important; + font-size: 45px !important; +} + +:where(#concierge-page) #stories #controls { + position: absolute; + top: 0; + right: 0; + margin-top: 0; +} + +:where(#concierge-page) #improvements ul { + -moz-column-count: 2; + column-count: 2; +} + +:where(#concierge-page) #stats .stat { + padding: 40px; + flex: auto; + width: 100%; + border-right: none; + border-bottom: 1px solid rgba(0, 0, 0, 0.1); + border-bottom: 1px solid var(--cx-color-dropShadow); +} + +:where(#concierge-page) #stats .stat-metric { + margin-bottom: 10px; + font-size: 48px; +} + +:where(#concierge-page) #stats .stats-source { + margin-top: 15px; + padding-right: 5vw; +} + +:where(#concierge-page) #how-it-works { + margin-top: 45px; + margin-bottom: 45px; +} + +:where(#concierge-page) #how-it-works .width { + max-width: 600px; +} + +:where(#concierge-page) #how-it-works #how-it-works-image { + display: none !important; +} + +:where(#concierge-page) #how-it-works #how-it-works-content { + width: 100%; +} + +:where(#concierge-page) #how-it-works #how-it-works-content h2 { + text-align: center; +} + +:where(#concierge-page) #video { + padding: 45px 0; +} + +:where(#concierge-page) #faq #faq-content { + margin: 50px auto; +} + +:where(#concierge-page) #faq .faq-card { + margin-bottom: 20px; +} + +:where(#concierge-page) #faq .disclaimer { + margin-top: 0; + padding-left: 0; + font-size: 10px; + line-height: 1.2em; +} +} + +@media screen and (max-width: 511px) { +:where(#concierge-page) #hero #hero-content { + padding: 60px 5vw; +} + +:where(#concierge-page) #contact { + border-bottom: 1px solid var(--cr-gray-m); +} + +:where(#concierge-page) #contact .width { + max-width: 600px; +} + +:where(#concierge-page) #pillars { + padding: 45px 0; +} + +:where(#concierge-page) #pillars .pillar, +:where(#concierge-page) #pillars .pillar:nth-of-type(2n) { + margin: 15px auto; + width: 100%; + max-width: 300px; + border-right: none; + padding-right: 0; +} + +:where(#concierge-page) #stories { + margin: 60px auto; +} + +:where(#concierge-page) #improvements { + padding: 45px 0; +} + +:where(#concierge-page) #improvements ul { + -moz-column-count: 1; + column-count: 1; + font-size: 18px; +} + +:where(#concierge-page) #faq { + padding: 45px 0; +} + +:where(#concierge-page) #how-it-works h2, +:where(#concierge-page) #improvements h2, +:where(#concierge-page) #video #video-heading h2, +:where(#concierge-page) #faq h2 { + font-size: 30px; +} +} +#concierge-page .concierge-chapters {position:fixed;top:48px;left:0;right:0;display:flex;gap:28px;align-items:center;padding:12px 24px;background:#fff;border-bottom:1px solid #dadada;z-index:35;visibility:hidden;transform:translateY(-100%);} +#concierge-page .concierge-chapters.is-visible {visibility:visible;transform:none;} +#concierge-page .chapter-start {margin-left:auto;background:#000;color:#fff;padding:10px 22px;} +#concierge-page #contact {min-height:343.5px;display:flex;align-items:center;} +#concierge-page #contact .width {width:100%;} +#concierge-page #contact .contact-actions {display:flex;gap:16px;flex-wrap:wrap;margin:24px 0;} +#concierge-page #contact .service-boundary {font-size:12px;color:#6c6c6c;} +#concierge-page .slide[hidden] {display:none;} +#concierge-page .slide {width:100%;} +#concierge-page .external-story-video {position:absolute;inset:0;display:flex;align-items:center;justify-content:center;padding:24px;background:#111;color:#fff;text-align:center;} +#concierge-page .video-cta {z-index:2;} +#concierge-page .video-cta span {margin-right:14px;} +#concierge-page a:focus-visible,#concierge-page button:focus-visible {outline:2px solid #0064e5;outline-offset:4px;} +@media(max-width:1023px){#concierge-page .cx-gridPadding {padding-left:16px;padding-right:16px;} #concierge-page .concierge-chapters>a:not(.chapter-start){display:none;} #concierge-page .concierge-chapters{padding:8px 16px;}} +@media(prefers-reduced-motion:reduce){#concierge-page *{transition:none!important;}} + +#concierge-page {--cx-color-backgroundAccent:#f4f4f4; --cx-color-black:#000; --cx-color-critical:#ae0917; --cx-color-dropShadow:#0000001a; --cx-color-grey20:#f4f4f4; --cx-color-grey40:#dadada; --cx-color-grey60:#adadad; --cx-color-grey80:#6c6c6c; --cx-color-interactiveHover:#242424; --cx-color-linkHover:#000; --cx-color-textSubtle:#6c6c6c; --cx-color-textTitleSubtle:#6c6c6c; --cx-color-white:#fff; --cx-font-familyLegible:"Open Sans",Helvetica,Arial,sans-serif; --cx-font-lineHeightBody:1.5; --cx-font-sizeCaption1:12px; --cx-font-sizeHeader2:32px; --cx-font-sizeSubheader2:18px; --cx-font-weightRegular:400; --cx-spacing-2x:16px; --cx-spacing-4x:32px; --cx-spacing-gutter:24px; --cx-zIndex-10:1000; --font-familySerif:"Compass Serif",Times,"Times New Roman",serif; --font-weightBold:700; --font-weightMedium:500; --font-weightRegular:400; --font-weightSemiBold:600;} +#concierge-page h1,#concierge-page h2,#concierge-page h3,#concierge-page h4 {font-family:var(--sans);letter-spacing:0;} +#concierge-page .font-serifRegular,#concierge-page #hero-content h2,#concierge-page #contact h2 {font-family:var(--serif);} +#concierge-page .btn {border-radius:0;font-weight:400;} +#concierge-page #contact .btn {padding:16px 44px;line-height:1.5;} +#concierge-page #contact .btn::before {display:none;} +#concierge-page .video-thumb {pointer-events:none;} +#concierge-page .video-cta {width:max-content;max-width:calc(100% - 32px);} + +#concierge-page {display:grid;grid-template-columns:100%;} + +/* The source chapter bar replaces the main navigation while reading. */ +.concierge-reading > .cx-nav {visibility:hidden;pointer-events:none;} +#concierge-page .concierge-chapters {top:0;padding:0 30px;gap:24px;height:62px;font-size:14px;font-weight:500;counter-reset:chapter;} +#concierge-page .concierge-chapters a {white-space:nowrap;} +#concierge-page .chapter-logo {display:block;width:126px;margin-right:22px;flex-shrink:0;} +#concierge-page .concierge-chapters>a:not(.chapter-logo):not(.chapter-start)::before {counter-increment:chapter;content:'0' counter(chapter);margin-right:8px;color:#6c6c6c;} +#concierge-page .chapter-start {height:62px;line-height:62px;padding:0 44px;font-size:20px;} +#concierge-page section {scroll-margin-top:120px;} +@media(max-width:1279px){#concierge-page .concierge-chapters>a:not(.chapter-logo):not(.chapter-start){display:none;} #concierge-page .concierge-chapters{gap:0;}} +@media(max-width:1023px){#concierge-page .concierge-chapters .chapter-logo{display:block;}} +@media(max-width:511px){#concierge-page .concierge-chapters{padding:0 16px;} #concierge-page .chapter-start{padding:0 20px;font-size:16px;}} + +#concierge-page #controls button {min-height:0;} + +html:has(#concierge-page) {scroll-padding-top:0;} diff --git a/sites/compass/static/css/home.css b/sites/compass/static/css/home.css new file mode 100644 index 00000000..4f8ee496 --- /dev/null +++ b/sites/compass/static/css/home.css @@ -0,0 +1,144 @@ +/* Homepage structure measured against compass.com, September 2026. */ +.home-hero { height:600px; position:relative; display:flex; align-items:center; justify-content:center; padding:0 24px; } +.home-hero-image { position:absolute; inset:0; } +.home-hero-image img { width:100%; height:100%; object-fit:cover; } +.home-hero-content { position:relative; width:730px; max-width:100%; padding-top:24px; } +.home-hero h1 { font:700 56px/56px var(--serif); text-align:center; color:white; margin:0 0 24px; } +.home-hero .home-search { width:600px; max-width:100%; } +.home-hero .search-tabs { display:flex; justify-content:flex-start; margin:0; padding:0; gap:0; border:0; } +.home-hero .search-tabs label,.home-hero .search-tabs>a { width:80px; margin:0; padding:0; font:500 14px/20px var(--sans); color:black; text-align:center; background:#e8e8e8; } +.home-hero .search-tabs span,.home-hero .search-tabs>a { padding:6px 0; border:0; } +.home-hero .search-tabs input:checked+span { background:white; } +.home-hero .search-box { height:64px; padding:8px; } +.home-hero .search-box input { font-size:16px; padding:8px; } +.home-hero .search-box button { width:48px; height:48px; } +.home-container { max-width:1170px; padding:0 24px; margin:auto; } +.home-container h2 { font:500 32px/1.3 var(--sans); margin:0 0 8px; } +.home-intro { margin:0 0 24px; font-size:16px; line-height:24px; } +.home-listings { margin:64px 0 24px; } +.home-snapshot { margin:0 0 16px; max-width:410px; font-size:12px; line-height:18px; } +.home-card-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; } +.home-card { border:1px solid #ddd; border-radius:8px; box-shadow:0 2px 6px #0002; overflow:hidden; background:white; min-width:0; } +.home-card-photo { position:relative; aspect-ratio:3/2; background:#eee; } +.home-card-photo>a { display:block; height:100%; } +.home-card-photo img { height:100%; width:100%; object-fit:cover; } +.home-card-photo button { position:absolute; top:50%; transform:translateY(-50%); border:0; border-radius:50%; width:32px; height:32px; padding:0 0 2px; font-size:30px; line-height:28px; color:#444; background:#fffd; cursor:pointer; opacity:0; } +.home-photo-prev { left:8px; }.home-photo-next { right:8px; } +.home-photo-count { position:absolute; bottom:8px; right:8px; background:#0009; color:white; font-size:12px; padding:1px 7px; border-radius:3px; opacity:0; } +.home-card-photo:hover button,.home-card-photo:focus-within button,.home-card-photo:hover .home-photo-count,.home-card-photo:focus-within .home-photo-count { opacity:1; } +.home-card-badge { position:absolute; top:8px; left:8px; background:black; color:white; padding:2px 8px; border-radius:3px; font-size:12px; } +.home-card-info { display:block; padding:8px; color:#171717; } +.home-card-info:hover { text-decoration:none; } +.home-card-info p { margin:0; } +.home-card-price { font:500 20px/26px var(--sans); padding-bottom:8px; } +.home-card-meta { display:flex; font-size:13px; line-height:18px; padding-bottom:8px; } +.home-card-meta span { padding:0 8px; border-right:1px solid #ddd; }.home-card-meta span:first-child { padding-left:0; }.home-card-meta span:last-child { border:0; } +.home-card-address { font-size:12px; line-height:18px; } +.home-exclusive-ad { display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; background:black; color:white; padding:18px 24px; border-radius:8px; } +.home-exclusive-ad>img { width:248px; max-width:90%; height:78px; object-fit:contain; } +.home-exclusive-ad p { font-size:22px; line-height:28px; margin:12px 0; } +.home-exclusive-ad small { font-size:12px; line-height:16px; } +.home-exclusive-ad .home-pill { margin-top:16px; } +.home-pill { display:inline-flex; align-items:center; justify-content:center; gap:20px; padding:12px 24px; border-radius:28px; background:black; color:white; font:500 16px/20.8px var(--sans); border:1px solid transparent; text-decoration:none; } +.home-pill:hover { background:#333; color:white; text-decoration:none; }.home-pill.light { color:black; background:white; }.home-pill.light:hover { background:#eee; } +.home-section-action { margin-top:24px; text-align:right; } +.home-mortgage { display:grid; grid-template-columns:1fr auto; column-gap:24px; padding:24px 48px; background:black; color:white; margin-bottom:24px; min-height:160px; align-items:center; } +.home-mortgage h2 { grid-column:1; font-size:24px; line-height:31.2px; margin:0 0 16px; } +.home-mortgage>.home-pill { grid-column:2; grid-row:1 / 3; } +.mortgage-brand { display:flex; align-items:center; gap:4px; grid-column:1; color:white; } +.mortgage-brand img { width:152px; height:16px; }.mortgage-brand sup { font-size:10px; } +.home-concierge { display:grid; grid-template-columns:54% 1fr; gap:24px; } +.concierge-photos { position:relative; align-self:stretch; } +.concierge-desktop { height:100%; width:100%; object-fit:cover; } +.concierge-before img,.concierge-after img { display:none; } +.concierge-before span,.concierge-after span { position:absolute; bottom:2px; color:white; font-size:18px; font-weight:500; } +.concierge-before span { left:10px; }.concierge-after span { left:52%; } +.concierge-copy { padding:70px; background:black; color:white; } +.concierge-copy h2 { margin:0; } +.concierge-copy p { font-size:16px; line-height:24px; margin:16px 0 48px; } +.concierge-copy small { display:block; font-size:10px; line-height:15px; margin:10px 0; } +.concierge-copy .home-pill { margin-top:0; } +.home-neighborhoods { margin:64px 0; } +.home-neighborhoods h2 { margin-bottom:0; } +.home-neighborhoods .home-section-action { text-align:left; } +.home-neighborhood-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; } +.home-neighborhood-grid a { position:relative; height:88px; overflow:hidden; color:white; } +.home-neighborhood-grid img { width:100%; height:100%; object-fit:cover; } +.home-neighborhood-grid a::after { content:''; position:absolute; inset:0; background:#0009; } +.home-neighborhood-grid span { position:absolute; left:24px; top:40px; font:500 18px/24px var(--sans); text-decoration:underline; z-index:1; } +.home-market-links { margin:64px 0; } +.home-market-links h2 { font-size:18px; line-height:24px; } +.home-market-links p { font-size:16px; margin:8px 0 24px; } +.home-market-links ul { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px 24px; list-style:none; margin:0; padding:0; font-size:16px; } +.home-market-links a { text-decoration:underline; } +.home-market-group+.home-market-group { margin-top:32px; } +.market-toggle { display:none; } +@media (min-width:768px) and (max-width:1023px) { + .home-hero { height:500px; } + .home-card-grid,.home-neighborhood-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } + .home-exclusive-ad { grid-column:2; grid-row:1; } + .home-mortgage { column-gap:64px; row-gap:24px; } + .home-mortgage h2 { margin:0; } + .mortgage-brand { height:25.5px; } + .home-concierge { display:block; } + .concierge-desktop { display:none; } + .concierge-before,.concierge-after { position:relative; } + .concierge-after { margin-top:2px; } + .concierge-before img,.concierge-after img { display:block; width:100%; height:300px; object-fit:cover; } + .concierge-before span,.concierge-after span { left:24px; bottom:20px; } + .concierge-copy { padding:40px 16px; text-align:center; } + .concierge-copy p { padding:0 96px; margin:16px 0; } + .home-market-links h2 { line-height:23.4px; } + .home-market-links p { line-height:24px; margin:8px 0 16px; } + .home-market-group+.home-market-group { margin-top:64px; } + .home-market-links .market-toggle { padding:0; border:0; line-height:24px; justify-content:flex-start; gap:4px; text-decoration:underline; } + .home-market-links .market-toggle span { font-size:0; } + .home-market-links .market-toggle span::after { content:'▾'; font-size:12px; } + .home-market-links .market-toggle[aria-expanded=true] span::after { content:'▴'; } +} +@media (max-width:1023px) { + .market-toggle { display:flex; align-items:center; justify-content:space-between; border:0; border-bottom:1px solid #ccc; padding:0 0 12px; width:100%; font:500 16px var(--sans); background:white; cursor:pointer; } + .home-market-links ul { display:none; grid-template-columns:1fr; margin-top:16px; } + .market-toggle[aria-expanded=true]+ul { display:grid; } +} +@media (max-width:767px) { + .home-hero { height:380px; padding:0 16px; } + .home-hero-content { padding-top:16px; } + .home-hero h1 { font-size:30px; line-height:30px; margin-bottom:16px; } + .home-hero .search-box { height:48px; padding:0; }.home-hero .search-box input { font-size:14px; padding:12px; } + .home-container { padding:0 16px; } + .home-container h2 { font-size:24px; line-height:31.2px; } + .home-listings { margin-top:64px; } + .home-card-grid { display:grid; grid-template-columns:1fr; gap:24px; } + .home-card-desktop { display:none; } + .home-exclusive-ad { min-height:326px; padding:24px; } + .home-exclusive-ad p { max-width:270px; } + .home-section-action { text-align:center; } + .home-section-action .home-pill { gap:12px; } + .home-card-photo button,.home-photo-count { opacity:1; } + .home-mortgage { display:flex; flex-direction:column; align-items:flex-start; gap:24px; margin:24px -16px; padding:24px 40px; min-height:268px; } + .home-mortgage h2 { font-size:24px; line-height:31.2px; margin:0; } + .home-mortgage .home-pill { font-size:14px; padding:12px 24px; } + .home-desktop-break { display:none; } + .home-concierge { display:block; margin:0 -16px; } + .concierge-photos { display:block; } + .concierge-desktop { display:none; } + .concierge-before,.concierge-after { position:relative; } + .concierge-before img,.concierge-after img { display:block; width:100%; height:auto; } + .concierge-before span,.concierge-after span { left:24px; bottom:20px; } + .concierge-copy { padding:30px 16px; text-align:center; } + .concierge-copy p { font-size:14px; line-height:21px; padding:0 40px; margin:16px 0 14px; } + .home-neighborhood-grid { grid-template-columns:1fr; gap:24px; } + .home-neighborhood-grid span { font-size:18px; } + .home-market-links h2 { font-size:16px; line-height:20.8px; } + .home-market-links p { font-size:14px; line-height:21px; margin-bottom:16px; } + .market-toggle { display:flex; align-items:center; justify-content:space-between; border:0; border-bottom:1px solid #ccc; padding:0 0 12px; width:100%; font:500 16px var(--sans); background:white; cursor:pointer; } + .home-market-links ul { display:none; grid-template-columns:1fr; margin-top:16px; } + .market-toggle[aria-expanded=true]+ul { display:grid; } +} +.home-listings .home-intro { margin-bottom:12px; } +.home-snapshot { margin-bottom:12px; } +.home-card-price,.home-card-meta { padding-bottom:4px; } +@media(max-width:767px) { .home-hero-content { padding-top:24px; } } + +@media(max-width:767px) { .home-listings .home-intro { font-size:14px; line-height:20px; } } diff --git a/sites/compass/static/css/navigation.css b/sites/compass/static/css/navigation.css new file mode 100644 index 00000000..dd07b3f8 --- /dev/null +++ b/sites/compass/static/css/navigation.css @@ -0,0 +1,58 @@ +/* Shared source navigation; local account controls keep their existing actions. */ +.cx-nav-inner { gap:0; padding:0 16px; } +.cx-nav .cx-logo { padding-right:24px; }.cx-nav .cx-logo img { width:112px; } +.cx-nav-links { gap:0; margin-left:auto; font:500 16px/24px var(--sans); } +.cx-nav-links>a,.nav-menu summary { font:inherit; padding:12px 10px; } +.cx-nav-right { padding:0 10px 0 20px; font:500 16px/24px var(--sans); } +.nav-menu-panel { left:0; padding:8px 0; border:0; min-width:240px; box-shadow:0 3px 8px #0003; } +.nav-menu-panel a { color:#171717!important; font:400 16px/24px var(--sans); padding:8px 24px; } +.nav-menu summary span { margin-left:2px; } +.external-mark { font-size:11px; margin-left:5px; } +.mobile-navigation { width:315px; max-width:calc(100vw - 48px); padding:0; color:black; } +.drawer-heading { position:relative; height:48px; padding:0 16px; justify-content:flex-start; gap:8px; margin:0 0 16px; } +.drawer-heading .icon-button { width:24px; padding:0; font-size:26px; }.drawer-heading .cx-logo img { width:112px; } +.mobile-navigation .navigation-group { padding:0; border-bottom:1px solid #ddd; } +.mobile-navigation nav a { border:0; padding:8px 0 8px 16px; font:400 16px/24px var(--sans); text-decoration:underline; } +.mobile-navigation .primary-navigation a { text-decoration:none; } +.mobile-navigation .navigation-account { padding:16px; }.mobile-navigation .navigation-account .btn { display:flex; width:100%; padding:10px 24px; color:white; text-decoration:none; } +.site-footer { background:black; color:white; padding:48px 24px; } +.footer-container { display:grid; grid-template-columns:1fr 1fr 2fr; gap:24px; max-width:1122px; margin:auto; } +.site-footer h2 { font:500 18px/24px var(--sans); margin:0 0 24px; color:white; } +.site-footer ul { list-style:none; margin:0; padding:0; } +.site-footer li { margin:0 0 16px; font-size:16px; line-height:24px; } +.site-footer a { color:#b8b8b8; }.site-footer a:hover { color:white; } +.footer-toggle { display:none; } +.footer-right { position:relative; display:grid; grid-template-columns:1fr 1fr; gap:24px; align-content:start; } +.footer-apps img { width:120px; height:auto; margin-bottom:12px; } +.footer-social { display:flex; justify-content:flex-end; gap:16px; font-size:22px; } +.footer-social a { color:white; } +.footer-legal { grid-column:1/-1; font-size:12px; line-height:18px; color:#999; padding-top:16px; } +.footer-legal p { margin:0 0 24px; } +.catalog-landing { max-width:1170px; margin:auto; padding:48px 24px 64px; }.catalog-landing>p { max-width:720px; }.catalog-landing .grid-cards { margin-top:32px; } +.guide-regions { display:flex; flex-wrap:wrap; gap:16px; margin:24px 0; } +.guide-hero { width:100%; max-height:360px; object-fit:cover; margin-bottom:24px; } +@media (max-width:1199px) { .nav-search { max-width:180px; }.cx-nav-links>a,.nav-menu summary { padding-left:7px; padding-right:7px; }.cx-nav-right { padding-left:12px; padding-right:0; } } +@media (max-width:1050px) { + .cx-nav-links,.nav-search { display:none; }.mobile-nav-toggle { display:block; width:24px; margin-right:8px; padding:0; font-size:22px; } + .cx-nav-inner { padding:0 16px; justify-content:flex-start; } + .cx-nav-right { border:0; margin-left:auto; padding:0; gap:0; font-size:16px; } + .cx-nav-right>a:first-child,.cx-nav-right>span { display:inline; }.cx-nav-right>a { padding:0 2px; }.cx-nav .cx-logo { padding:0; } +} +@media (min-width:768px) and (max-width:1023px) { + .footer-container { grid-template-columns:repeat(3,minmax(0,1fr)); } + .footer-right { display:block; }.footer-social { justify-content:flex-start; margin-top:24px; } +} +@media (max-width:767px) { + .site-footer { padding:32px 24px; } + .footer-container { display:block; } + .footer-column>h2 { display:none; } + .footer-toggle { display:flex; justify-content:space-between; align-items:center; width:100%; padding:16px 0; border:0; border-bottom:1px solid #444; color:white; background:transparent; font:500 18px var(--sans); cursor:pointer; } + .footer-column ul { display:none; padding:16px 0 0; }.footer-toggle[aria-expanded=true]+ul { display:block; } + .footer-right { display:block; margin-top:32px; }.footer-apps { display:flex; flex-wrap:wrap; gap:16px; }.footer-apps h2 { width:100%; margin:0; }.footer-apps img { margin:0; } + .footer-social { justify-content:flex-start; margin:32px 0; }.footer-legal { padding:0; } +} + +.mobile-navigation .external-mark { display:none; } + +.cx-nav-right.authenticated { gap:16px; } +.navigation-account form { margin-top:16px; } diff --git a/sites/compass/static/css/neighborhoods.css b/sites/compass/static/css/neighborhoods.css new file mode 100644 index 00000000..64881b94 --- /dev/null +++ b/sites/compass/static/css/neighborhoods.css @@ -0,0 +1,84 @@ +@font-face{font-family:'Compass Serif';src:url('../external_cache/CompassSerif-SemiBold.woff2') format('woff2');font-weight:600;font-display:swap} +/* Compass neighborhood-guides v2.14.1 directory, observed 2026-09-07. */ +.neighborhood-directory {font-size:16px;line-height:1.5;padding-bottom:24px;} +.guide-masthead {border-bottom:1px solid #dadada;} +.guide-masthead h1 {max-width:1170px;padding:16px 24px 15px;margin:auto;font:600 24px/1.3 var(--serif);letter-spacing:0;} +.guide-intro {display:flex;max-width:1170px;padding:0 24px;margin:48px auto 0;} +.guide-intro>div {flex:1 0 50%;} +.guide-intro h2 {background:#000;color:#fff;text-align:center;padding:48px;margin:37.35px 0;font:500 45px/1.25 var(--serif);letter-spacing:0;} +.guide-intro>div:last-child {display:flex;align-items:center;} +.guide-intro img {width:100%;} +.guide-mosaic {display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));grid-auto-flow:dense;gap:24px;max-width:1170px;padding:24px;margin:0 auto;list-style:none;} +.guide-tile {position:relative;grid-column:span var(--tile-size,1);min-width:240px;overflow:hidden;isolation:isolate;background:#000;} +.guide-tile::after {content:'';display:block;padding-top:calc(100% / var(--tile-size,1) - 12px);} +.guide-tile img {position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-1;opacity:.9;transition:transform .3s ease-in-out;} +.guide-tile a {position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:24px;color:#fff;text-align:center;text-shadow:0 0 12px #000;outline-offset:-4px;} +.guide-tile a:hover {text-decoration:none;} +.guide-tile:hover img,.guide-tile:focus-within img {transform:scale(1.2);} +.guide-tile h3 {font:700 24px/1.3 var(--serif);margin:0;padding-bottom:8px;border-bottom:1px solid #fff;letter-spacing:0;} +.guide-coordinates {display:flex;justify-content:center;font-size:12px;line-height:18px;} +.guide-coordinates span {padding:2px 8px 0;} +.guide-coordinates span:not(:last-child) {border-right:1px solid #fff;} +.guide-boundary {max-width:1170px;margin:12px auto;padding:0 24px;font-size:12px;color:#666;} +.guide-breadcrumbs {display:flex;gap:16px;justify-content:center;margin:24px 0;font-size:14px;} +@media(max-width:647px){ + .neighborhood-directory {font-size:14px;} + .guide-masthead h1 {font:500 16px/1.3 var(--sans);padding:16px 16px 15px;} + .guide-intro {display:block;margin-top:0;padding:0 16px;} + .guide-intro h2 {min-width:min-content;} + .guide-intro>div:last-child {display:none;} + .guide-tile h3 {font-size:20px;} +} +@media(max-width:580px){.guide-tile {--tile-size:1!important;}} +@media(prefers-reduced-motion:reduce){.guide-tile img{transition:none;}} + +/* Regional landing pages: Compass neighborhood-guides v2.14.1. */ +body:has(.regional-guide) .cx-nav{position:static;} +.regional-guide{font:16px/1.5 var(--sans);color:#000;} +.regional-guide .region-width{width:100%;max-width:1170px;margin:0 auto;padding:24px;} +.region-masthead{box-shadow:0 1px 0 #dadada;} +.regional-guide .region-masthead .region-width{display:flex;align-items:center;position:relative;padding-top:0;padding-bottom:0;} +.region-masthead nav{position:absolute;top:8px;display:flex;flex-wrap:wrap;gap:4px;font-size:14px;line-height:18.2px;margin:0;} +.region-masthead nav a{text-decoration:underline;} +.region-masthead h1{font:600 24px/1.3 var(--serif);margin:32px 0;padding-top:8px;letter-spacing:0;} +.region-hero{display:flex;align-items:center;margin-top:48px;background-size:cover;background-position:center;color:#fff;text-shadow:0 0 16px #000;} +.region-description{background:#000;padding:48px;max-width:75%;margin:37px 0;} +.region-description h2{font:500 45px/1.25 var(--serif);letter-spacing:0;margin:0;} +.region-description p{margin:28px 0 0;font:16px/1.5 var(--sans);} +.regional-guide .region-cards{list-style:none;display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:24px;text-align:center;} +.region-cards a{color:inherit;text-decoration:underline;} +.region-cards a:hover h3{text-decoration:underline;} +.region-card-image{width:100%;height:194px;max-width:300px;max-height:225px;background-size:cover;background-position:center;} +.region-cards h3{font:700 18.72px/1.5 var(--sans);margin:18.72px 0;letter-spacing:0;} +/* Source nearby-home groups are stacked at every viewport (2026-09-07). */ +.region-nearby>h2{font:600 24px/.975 var(--serif);letter-spacing:0;margin:0;padding:22px 0;} +.region-link-groups{display:block;} +.region-link-groups details{margin:0 0 16px;} +.region-link-groups summary{display:flex;align-items:center;justify-content:space-between;gap:16px;list-style:none;font:500 18px/1.3 var(--sans);color:#242424;cursor:pointer;border:1px solid transparent;padding:16px;} +.region-link-groups summary::-webkit-details-marker{display:none;} +.region-link-groups summary::after,.region-link-list button::after{content:'';display:inline-block;flex-shrink:0;width:7px;height:7px;margin:0 5px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(45deg);} +.region-link-groups details[open]>summary::after,.region-link-list button[aria-expanded="true"]::after{transform:rotate(225deg);} +.region-link-groups summary:hover,.region-link-list button:hover{color:#0064e5;} +.region-link-list ul{list-style:none;padding:0 0 0 16px;margin:0;} +.region-link-list li{margin:0;} +.region-link-list li+li{margin-top:16px;} +.region-link-list a{font:400 14px/1.5 var(--sans);text-decoration:none;} +.region-link-list a:hover{text-decoration:underline;} +.region-link-list:not(.is-expanded) li:nth-child(n+6){display:none;} +.region-more{padding-left:16px;margin-top:16px;} +.region-link-list button{display:inline-flex;align-items:center;gap:8px;background:none;border:1px solid transparent;border-radius:0;padding:0;color:#242424;font:500 14px/1.3 var(--sans);cursor:pointer;} +@media(max-width:900px){.region-description{max-width:100%;}} +@media(max-width:767px){ + .region-masthead h1{font:500 16px/1.3 var(--sans);margin:16px 0;padding:0;} + .region-masthead nav{display:none;} +} +@media(max-width:647px){ + .regional-guide{font-size:14px;} + .regional-guide .region-width{padding-left:16px;padding-right:16px;} + .regional-guide .region-cards{padding:24px;} + .region-cards h3{font-size:16.38px;margin:16.38px 0;} + .region-hero{margin-top:0;} + .region-hero>.region-width{display:none;} + .region-card-image{max-width:none;} + .regional-guide .region-nearby{padding:24px;} +} diff --git a/sites/compass/static/css/sell.css b/sites/compass/static/css/sell.css new file mode 100644 index 00000000..6fdd2fb4 --- /dev/null +++ b/sites/compass/static/css/sell.css @@ -0,0 +1,1383 @@ +/* Source layout observed at compass.com/sell/, 2026-09-07. Scoped to Sell. */ +#sell-page {font:16px/1.5 var(--sans);color:#000;} +#sell-page *,#sell-page *::before,#sell-page *::after {box-sizing:border-box;} +:where(#sell-page) h1,:where(#sell-page) h2,:where(#sell-page) h3,:where(#sell-page) p,:where(#sell-page) ul {margin:0;padding:0;font:inherit;letter-spacing:normal;} +:where(#sell-page) input {appearance:none;border-radius:0;font:inherit;} +:where(#sell-page) a {text-decoration:none;} +#sell-page button,#sell-page input {min-height:0;} +#sell-page button {letter-spacing:normal;} +html:has(#sell-page){scroll-padding-top:0;} +body:has(#sell-page) .cx-nav{position:static;} +#sell-page section[id]{scroll-margin-top:0;} +#sell-page { --mt-page-safe-content-width: 1170px; --mt-page-max-width: min(calc(100vw - 160px), var(--mt-page-safe-content-width)); --mt-page-margin: max(calc((100vw - var(--mt-page-safe-content-width)) / 2), 80px); --cx-font-familyInter: 'Inter','Compass Sans',Helvetica,Arial,sans-serif; --cx-font-familyLibreFranklin: 'Libre Franklin','Compass Sans',Helvetica,Arial,sans-serif; } +@media (max-width: 1600px) { + #sell-page { --mt-page-max-width: min(calc(100vw - 144px), var(--mt-page-safe-content-width)); --mt-page-margin: max(calc((100vw - var(--mt-page-safe-content-width)) / 2), 72px); } +} +@media (max-width: 1279px) { + #sell-page { --mt-page-max-width: min(calc(100vw - 128px), var(--mt-page-safe-content-width)); --mt-page-margin: max(calc((100vw - var(--mt-page-safe-content-width)) / 2), 64px); } +} +@media (max-width: 767px) { + #sell-page { --mt-page-max-width: min(calc(100vw - 64px), var(--mt-page-safe-content-width)); --mt-page-margin: max(calc((100vw - var(--mt-page-safe-content-width)) / 2), 32px); } +} +@media (max-width: 511px) { + #sell-page { --mt-page-max-width: min(calc(100vw - 40px), var(--mt-page-safe-content-width)); --mt-page-margin: max(calc((100vw - var(--mt-page-safe-content-width)) / 2), 20px); } +} + + + +:where(#sell-page) .cx-text-body1Medium { font-family: "Compass Sans",Helvetica,Arial,sans-serif; font-size: 16px; font-weight: 500; line-height: 1.5; } +@media (max-width: 767px) { +:where(#sell-page) .cx-text-body1Medium { font-size: 14px; } +} + + + +:where(#sell-page) .css-e1y5vi { width: 100%; height: 100%; } +:where(#sell-page) .css-e1y5vi iframe { width: 100%; height: 100%; } + +:where(#sell-page) .css-1xymkpv { position: relative; color: #fff; background-image: url("/static/external_cache/hero-sell.webp"); background-size: cover; background-position: center center; overflow: hidden; } +:where(#sell-page) .css-igzm7i { padding: 40px 0px; max-width: var(--mt-page-max-width); margin: 0px auto; } +@media (min-width: 768px) { +:where(#sell-page) .css-igzm7i { padding-top: 60px; padding-bottom: 60px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-igzm7i { padding-top: 100px; padding-bottom: 100px; } +} +:where(#sell-page) .css-1godemj { display: grid; column-gap: 32px; -webkit-box-align: center; align-items: center; grid-template-columns: 1fr; grid-template-areas: "text" "listinginfo" "button"; } +@media (min-width: 768px) { +:where(#sell-page) .css-1godemj { grid-template-columns: 1fr 1fr; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-1godemj { padding: 40px 0px; grid-template-areas: "text listinginfo" "button listinginfo"; } +} +:where(#sell-page) .css-zdkrpg { grid-area: text; position: relative; z-index: 1; max-width: 500px; margin-bottom: 24px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-zdkrpg { margin-bottom: 40px; } +} +:where(#sell-page) .css-13tuf1 { font-size: 32px; font-family: "Compass Serif",Times,"Times New Roman",serif; font-weight: 400; line-height: 1.3; margin-bottom: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-13tuf1 { margin-bottom: 24px; font-size: 42px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-13tuf1 { font-size: 50px; } +} + +:where(#sell-page) .css-1wb8t9n { font-size: 16px; font-weight: 400; line-height: 1.6; } +:where(#sell-page) .css-1wb8t9n > sup { font-size: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1wb8t9n { font-size: 20px; } +:where(#sell-page) .css-1wb8t9n > sup { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1wb8t9n { font-size: 28px; line-height: 1.5; } +} +:where(#sell-page) .css-1wb8t9n br { display: none; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1wb8t9n br { display: initial; } +} +:where(#sell-page) .css-50j64n { grid-area: button; position: relative; z-index: 1; display: flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; margin-top: 24px; } +@media (min-width: 768px) { +:where(#sell-page) .css-50j64n { -webkit-box-pack: start; justify-content: start; margin-top: 0px; } +} + +:where(#sell-page) .css-wkxpjh { --button-color: #000; --button-background: #fff; --button-hover-color: #fff; --button-hover-background: transparent; --button-transition: all 0.2s ease-in-out; font-family: "Compass Sans",Helvetica,Arial,sans-serif; font-weight: 500; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; cursor: pointer; display: flex; -webkit-box-align: center; align-items: center; gap: 16px; color: var(--button-color); background: var(--button-background); fill: currentcolor; text-decoration: none; user-select: none; padding: 0px; font-size: 20px; line-height: 1.5; height: 48px; width: 220px; -webkit-box-pack: center; justify-content: center; border-radius: 999px; } +@media (hover: hover) and (pointer: fine) { +:where(#sell-page) .css-wkxpjh:hover { opacity: 0.8; } +} +:where(#sell-page) .css-wkxpjh .sell-button-icon { height: auto; width: auto; } +@media (max-width: 1279px) { +:where(#sell-page) .css-wkxpjh { font-size: 16px; } +} +:where(#sell-page) .css-1pil7p6 { grid-area: listinginfo; width: 100%; aspect-ratio: 3 / 2; position: relative; } +:where(#sell-page) .css-my3bnf { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px 100vmax; } +:where(#sell-page) .css-k5av0z { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; display: flex; flex-direction: column; -webkit-box-pack: justify; justify-content: space-between; border: 1px solid #fff; } +@media (min-width: 1024px) { +:where(#sell-page) .css-k5av0z { border: 2px solid #fff; } +} +:where(#sell-page) .css-1fch67h { display: flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; height: 40px; color: rgb(0, 0, 0); background: rgb(255, 255, 255); width: 100%; padding-left: 0px; text-transform: uppercase; font-size: 12px; letter-spacing: 0.1em; white-space: nowrap; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1fch67h { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1fch67h { height: 52px; width: 100%; font-size: 20px; letter-spacing: 0.1em; } +} +:where(#sell-page) .css-1xn8cb9 { margin-top: auto; display: flex; -webkit-box-pack: justify; justify-content: space-between; -webkit-box-align: center; align-items: center; height: 64px; padding: 0 24px; background: linear-gradient(rgba(0, 0, 0, 0) 50.12%, rgba(0, 0, 0, 0.7) 100%); } +@media (min-width: 1280px) { +:where(#sell-page) .css-1xn8cb9 { height: 109px; } +} +:where(#sell-page) .css-1dmfr76 { font-size: 20px; text-transform: uppercase; font-weight: 500; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1dmfr76 { font-size: 32px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1dmfr76 { font-size: 45px; } +} +:where(#sell-page) .css-1c4cljx { display: flex; gap: 32px; } +:where(#sell-page) .css-qnmulz { font-size: 20px; line-height: 18px; font-weight: 500; } +:where(#sell-page) .css-qnmulz span { display: block; } +:where(#sell-page) .css-qnmulz span:last-child { margin-top: 4px; font-size: 14px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-qnmulz { font-size: 24px; } +:where(#sell-page) .css-qnmulz span:last-child { font-size: 18px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-qnmulz { line-height: 28px; font-size: 34px; } +:where(#sell-page) .css-qnmulz span:last-child { font-size: 20px; } +} +:where(#sell-page) .css-hxazs { background: rgb(241, 239, 236); padding: 40px 0px; } +@media (min-width: 768px) { +:where(#sell-page) .css-hxazs { padding-top: 100px; padding-bottom: 100px; } +} + +:where(#sell-page) .css-1pegls6 { max-width: var(--mt-page-max-width); margin: 0px auto; padding: 0px; } +@media (min-width: 768px) { +:where(#sell-page) .css-1pegls6 { padding-top: 60px; padding-bottom: 60px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1pegls6 { padding-top: 100px; padding-bottom: 100px; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-1pegls6 { padding: 0px; } +} + +:where(#sell-page) .css-ns70sf { max-width: var(--mt-page-max-width); margin: 0px auto; background: #fff; border-radius: 12px; padding: 30px 20px; } +@media (min-width: 768px) { +:where(#sell-page) .css-ns70sf { padding-top: 60px; padding-bottom: 60px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-ns70sf { padding-top: 100px; padding-bottom: 100px; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-ns70sf { padding: 70px; display: grid; grid-template: "content form" "content disclaimer" / 1fr 1fr; gap: 25px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-ns70sf { gap: 35px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-ns70sf { gap: 40px; } +} +:where(#sell-page) .css-ekvon { margin: 0 0 24px; } +@media (min-width: 768px) { +:where(#sell-page) .css-ekvon { grid-area: content; margin-bottom: 0px; } +} + +:where(#sell-page) .css-1pnykj5 { font-family: "Compass Serif",Times,"Times New Roman",serif; font-weight: 400; line-height: 1.3; margin-bottom: 12px; font-size: 34px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1pnykj5 { margin-bottom: 24px; font-size: 42px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1pnykj5 { font-size: 50px; } +} + +:where(#sell-page) .css-b5revq { font-size: 16px; font-weight: 400; line-height: 1.6; } +:where(#sell-page) .css-b5revq > sup { font-size: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-b5revq { font-size: 20px; } +:where(#sell-page) .css-b5revq > sup { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-b5revq { font-size: 28px; line-height: 1.5; } +} +:where(#sell-page) .css-b5revq > span { display: inline-block; } +@media (min-width: 768px) { +:where(#sell-page) .css-b5revq { padding-right: 35px; } +:where(#sell-page) .css-b5revq > span { display: inline; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-1m62pb8 { grid-area: form; } +} +:where(#sell-page) .css-fz5vzb { display: flex; flex-direction: column; -webkit-box-align: center; align-items: center; row-gap: 12px; } +@media (min-width: 768px) { +:where(#sell-page) .css-fz5vzb { row-gap: 20px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-fz5vzb { row-gap: 30px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-fz5vzb { row-gap: 40px; } +} +:where(#sell-page) .css-n48rgu { width: 100%; position: relative; } +:where(#sell-page) .css-zkuzm3 { border-width: 0px 0px 1px; border-style: none none solid; border-color: currentcolor currentcolor rgb(123, 123, 123); border-image: none; padding: 8px 0 7px; line-height: 1.5; width: 100%; } +:where(#sell-page) .css-zkuzm3:focus { outline: none; } +:where(#sell-page) .css-zkuzm3::-webkit-input-placeholder { color: rgb(123, 123, 123); } +:where(#sell-page) .css-zkuzm3::placeholder { color: rgb(123, 123, 123); } +@media (min-width: 768px) { +:where(#sell-page) .css-zkuzm3 { font-size: 18px; line-height: 32px; padding-top: 4px; padding-bottom: 3px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-zkuzm3 { font-size: 20px; line-height: 32px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-zkuzm3 { font-size: 22px; } +} + + +:where(#sell-page) .css-1ipsgz6 { --button-color: #F1EFEC; --button-background: #000; --button-hover-color: #fff; --button-hover-background: transparent; --button-transition: all 0.2s ease-in-out; font-family: "Compass Sans",Helvetica,Arial,sans-serif; font-weight: 500; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; cursor: pointer; display: flex; -webkit-box-align: center; align-items: center; gap: 16px; color: var(--button-color); background: var(--button-background); fill: currentcolor; text-decoration: none; user-select: none; padding: 0px; font-size: 20px; line-height: 1.5; height: 48px; -webkit-box-pack: center; justify-content: center; border-radius: 999px; margin: 20px 0px 0px; width: 100%; } +@media (hover: hover) and (pointer: fine) { +:where(#sell-page) .css-1ipsgz6:hover { opacity: 0.8; } +} +:where(#sell-page) .css-1ipsgz6 .sell-button-icon { height: auto; width: auto; } +@media (max-width: 1279px) { +:where(#sell-page) .css-1ipsgz6 { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1ipsgz6 { margin-top: 0px; } +} + +:where(#sell-page) .css-dd6jzd { font-weight: 400; font-size: 8px; line-height: 1.5; color: rgb(108, 108, 108); margin: 32px 0 0; } +:where(#sell-page) .css-dd6jzd > sup { font-size: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-dd6jzd { font-size: 20px; } +:where(#sell-page) .css-dd6jzd > sup { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-dd6jzd { font-size: 28px; line-height: 1.5; } +} +:where(#sell-page) .css-dd6jzd a { color: rgb(108, 108, 108); } +@media (min-width: 768px) { +:where(#sell-page) .css-dd6jzd { grid-area: disclaimer; font-size: 10px; margin-bottom: 0px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-dd6jzd { font-size: 12px; } +} +:where(#sell-page) .css-ow0xtu { background: linear-gradient(180deg, #fff 0%, #d4d4d4 100%); } + +:where(#sell-page) .css-z6iz7f { padding: 40px 0px; max-width: var(--mt-page-max-width); margin: 0px auto; display: flex; flex-direction: column; } +@media (min-width: 768px) { +:where(#sell-page) .css-z6iz7f { padding-top: 60px; padding-bottom: 60px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-z6iz7f { padding-top: 100px; padding-bottom: 100px; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-z6iz7f { -webkit-box-align: center; align-items: center; } +} +:where(#sell-page) .css-1u3qnic { font-size: 32px; font-family: "Compass Serif",Times,"Times New Roman",serif; font-weight: 400; line-height: 1.3; margin-bottom: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1u3qnic { margin-bottom: 24px; font-size: 42px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1u3qnic { font-size: 50px; } +} + +:where(#sell-page) .css-plvqso { font-size: 16px; font-weight: 400; line-height: 1.6; max-width: 215px; margin-bottom: 8px; } +:where(#sell-page) .css-plvqso > sup { font-size: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-plvqso { font-size: 20px; } +:where(#sell-page) .css-plvqso > sup { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-plvqso { font-size: 28px; line-height: 1.5; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-plvqso { max-width: 500px; text-align: center; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-plvqso { margin-bottom: 16px; } +} +:where(#sell-page) .css-1f3rnsx { font-weight: 400; line-height: 1.5; color: #6c6c6c; font-size: 8px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1f3rnsx { font-size: 12px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1f3rnsx { font-size: 14px; } +} + +:where(#sell-page) .css-hrtf5u { display: flex; flex-direction: column; -webkit-box-align: stretch; align-items: stretch; width: 100%; row-gap: 32px; margin: 40px 0px 0px; } +@media (min-width: 768px) { +:where(#sell-page) .css-hrtf5u { row-gap: 71px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-hrtf5u { margin: 71px 0px 0px; } +} +:where(#sell-page) .css-1f5yd90 { position: relative; width: 100%; aspect-ratio: 1 / 1; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; --card-offset-x-0: -6.5%; --card-offset-y-0: -6.5%; --card-offset-x-1: 0%; --card-offset-y-1: 0%; --card-offset-x-2: 6.5%; --card-offset-y-2: 6.5%; } +@media (min-width: 768px) { +:where(#sell-page) .css-1f5yd90 { aspect-ratio: 1152 / 840; --card-offset-x-0: -7%; --card-offset-y-0: -10.5%; --card-offset-x-1: 0%; --card-offset-y-1: 0%; --card-offset-x-2: 7%; --card-offset-y-2: 10.5%; } +} +:where(#sell-page) .css-ur6wbe { position: absolute; width: 88.1%; height: 88.1%; border-radius: 22px; overflow: hidden; border: 1px solid #fff; background-color: #000; } +@media (min-width: 768px) { +:where(#sell-page) .css-ur6wbe { width: 87.5%; height: 82.8%; box-shadow: rgba(0, 0, 0, 0.4) 5px 5px 20px 0px; } +} +:where(#sell-page) .css-pdxlij { width: 100%; height: 100%; position: absolute; object-fit: cover; } +@media (min-width: 768px) { +:where(#sell-page) .css-pdxlij { display: none; } +} +:where(#sell-page) .css-bt4tiu { width: 100%; height: 100%; position: absolute; object-fit: cover; display: none; } +@media (min-width: 768px) { +:where(#sell-page) .css-bt4tiu { display: inline-block; } +} +:where(#sell-page) .css-1hqz1gf { position: absolute; width: 100%; height: 100%; pointer-events: none; } +@media (min-width: 768px) { +:where(#sell-page) .css-1hqz1gf { backdrop-filter: blur(7px); } +} +:where(#sell-page) .css-gukv2g { display: flex; -webkit-box-pack: center; justify-content: center; column-gap: 41.25px; } +:where(#sell-page) .css-1gqg92w { --button-color: #000; --button-background: transparent; --button-hover-color: #fff; --button-hover-background: transparent; --button-transition: all 0.2s ease-in-out; font-family: "Compass Sans",Helvetica,Arial,sans-serif; font-size: 16px; font-weight: 500; line-height: 1.5; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; cursor: pointer; display: flex; -webkit-box-align: center; align-items: center; gap: 16px; color: var(--button-color); background: var(--button-background); fill: currentcolor; text-decoration: none; user-select: none; } +@media (hover: hover) and (pointer: fine) { +:where(#sell-page) .css-1gqg92w:hover { opacity: 0.8; } +} +:where(#sell-page) .css-1gqg92w .sell-button-icon { height: auto; width: auto; } +:where(#sell-page) .css-1dpdq61 { padding: 40px 0px; max-width: var(--mt-page-max-width); margin: 0px auto; } +@media (min-width: 768px) { +:where(#sell-page) .css-1dpdq61 { padding-top: 60px; padding-bottom: 60px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1dpdq61 { padding-top: 100px; padding-bottom: 100px; } +} +:where(#sell-page) .css-q080k3 { text-align: left; } +@media (min-width: 768px) { +:where(#sell-page) .css-q080k3 { text-align: center; display: flex; flex-direction: column; -webkit-box-align: center; align-items: center; } +} +:where(#sell-page) .css-1u3qnic { font-size: 32px; font-family: "Compass Serif",Times,"Times New Roman",serif; font-weight: 400; line-height: 1.3; margin-bottom: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1u3qnic { margin-bottom: 24px; font-size: 42px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1u3qnic { font-size: 50px; } +} + +:where(#sell-page) .css-y9kbfc { font-size: 16px; font-weight: 500; line-height: 1.6; letter-spacing: 0.06em; margin-bottom: 12px; text-transform: uppercase; } +@media (min-width: 1024px) { +:where(#sell-page) .css-y9kbfc { margin-bottom: 24px; font-size: 20px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-y9kbfc { font-size: 24px; line-height: 1.5; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-y9kbfc { line-height: 1.2; } +} + +:where(#sell-page) .css-pvc6fy { font-size: 16px; font-weight: 400; line-height: 1.6; } +:where(#sell-page) .css-pvc6fy > sup { font-size: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-pvc6fy { font-size: 20px; } +:where(#sell-page) .css-pvc6fy > sup { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-pvc6fy { font-size: 28px; line-height: 1.5; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-pvc6fy { max-width: 800px; } +} +:where(#sell-page) .css-1wnowod { display: flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; } +:where(#sell-page) .css-1o4gzvb { display: grid; grid-template-columns: auto; gap: 24px; margin-top: 40px; } +@media (min-width: 1280px) { +:where(#sell-page) .css-1o4gzvb { grid-auto-flow: column; width: 100%; gap: 28px; margin-top: 60px; } +:where(#sell-page) .css-1o4gzvb > div:first-of-type .uc-timeline-phase-progress-bar::after { left: 50%; } +:where(#sell-page) .css-1o4gzvb > div:last-of-type .uc-timeline-phase-progress-bar::after { left: -50%; } +} +:where(#sell-page) .css-1o4gzvb > div:nth-of-type(4) .uc-timeline-phase-progress-bar::before { border: 6px solid black; } +@media (min-width: 1280px) { +:where(#sell-page) .css-1o4gzvb > div:nth-of-type(4) .uc-timeline-phase-progress-bar::before { border-width: 11px; } +} +:where(#sell-page) .css-1o4gzvb > div:nth-of-type(-n/**/+3) .uc-timeline-phase-progress-bar::before { border: 6px solid #dadada; } +@media (min-width: 1280px) { +:where(#sell-page) .css-1o4gzvb > div:nth-of-type(-n/**/+3) .uc-timeline-phase-progress-bar::before { border-width: 11px; } +} +:where(#sell-page) .css-d1c51c { display: flex; -webkit-box-align: center; place-items: center; gap: 20px; } +@media (min-width: 1280px) { +:where(#sell-page) .css-d1c51c { flex-direction: column; gap: 60px; } +} +:where(#sell-page) .css-oyy2pr { display: flex; flex-direction: column; -webkit-box-align: center; align-items: center; -webkit-box-pack: justify; justify-content: space-between; height: 100%; width: 20px; background-color: white; position: relative; } +@media (min-width: 1280px) { +:where(#sell-page) .css-oyy2pr { display: flex; width: 100%; flex-direction: row; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; } +} +:where(#sell-page) .css-oyy2pr::before { content: ""; display: block; min-width: 20px; min-height: 20px; border: 1.5px solid #dadada; border-radius: 50%; background-color: white; } +@media (min-width: 1280px) { +:where(#sell-page) .css-oyy2pr::before { min-width: 32px; min-height: 32px; border: 2px solid #dadada; z-index: 200; } +} +:where(#sell-page) .css-oyy2pr::after { content: ""; display: block; width: 1.5px; height: 100%; background-color: #dadada; margin-top: 24px; } +@media (min-width: 1280px) { +:where(#sell-page) .css-oyy2pr::after { height: 2px; width: 100%; position: absolute; left: 0px; top: 50%; transform: translateY(-50%); margin-top: 0px; z-index: 100; } +} +:where(#sell-page) .css-1tjhk5z { max-width: 400px; min-width: 310px; background-color: white; border: 1px solid #dadada; border-radius: 20px; margin: 0px; padding: 32px 0; display: flex; flex-direction: column; -webkit-box-align: center; align-items: center; gap: 24px; text-align: center; } +@media (min-width: 1280px) { +:where(#sell-page) .css-1tjhk5z { max-width: 360px; min-width: 360px; padding: 40px 0px; } +} +:where(#sell-page) .css-fc72mw { padding: 0px 19px; } +@media (min-width: 1280px) { +:where(#sell-page) .css-fc72mw { padding: 0px 40px; } +} + +:where(#sell-page) .css-yk3upm { font-weight: 500; line-height: 1.6; letter-spacing: 0.06em; margin-bottom: 12px; text-transform: uppercase; font-size: 16px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-yk3upm { margin-bottom: 24px; font-size: 20px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-yk3upm { font-size: 24px; line-height: 1.5; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-yk3upm { margin-bottom: 12px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-yk3upm { font-size: 22px; } +} +:where(#sell-page) .css-10955iy { font-family: "Compass Sans",Helvetica,Arial,sans-serif; font-weight: 500; font-size: 22px; line-height: 1.2; } +:where(#sell-page) .css-1fioe43 { position: relative; width: calc(100% + 2px); height: 200px; } +:where(#sell-page) .css-1fioe43 img { width: 100%; height: 100%; object-fit: cover; } +:where(#sell-page) .css-1fioe43::before { content: ""; position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; background: linear-gradient(rgba(0, 0, 0, 0) 60.58%, rgba(0, 0, 0, 0.8) 100%); } +:where(#sell-page) .css-16koxgv { position: absolute; left: 0px; bottom: 0px; display: flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: justify; justify-content: space-between; flex-wrap: nowrap; gap: 30px; padding: 20px; width: 100%; font-family: "Compass Sans",Helvetica,Arial,sans-serif; font-size: 16px; line-height: 1.3; color: white; } +@media (min-width: 1280px) { +:where(#sell-page) .css-16koxgv { font-size: 20px; } +} +:where(#sell-page) .css-1d680ds { font-weight: 500; } + +:where(#sell-page) .css-rtdclh { font-size: 32px; font-family: "Compass Serif",Times,"Times New Roman",serif; font-weight: 400; line-height: 1.3; margin-bottom: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-rtdclh { margin-bottom: 24px; font-size: 42px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-rtdclh { font-size: 50px; } +} +:where(#sell-page) .css-rtdclh br { display: none; } +@media (min-width: 1024px) { +:where(#sell-page) .css-rtdclh { font-size: 32px; margin-bottom: 12px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-rtdclh { font-size: 42px; white-space: nowrap; margin-bottom: 24px; } +:where(#sell-page) .css-rtdclh br { display: inline-block; } +} + +:where(#sell-page) .css-14qiv98 { font-size: 16px; font-weight: 400; line-height: 1.6; padding: 0px 5px; } +:where(#sell-page) .css-14qiv98 > sup { font-size: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-14qiv98 { font-size: 20px; } +:where(#sell-page) .css-14qiv98 > sup { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-14qiv98 { font-size: 28px; line-height: 1.5; } +} +:where(#sell-page) .css-14qiv98 a { color: currentcolor; } +:where(#sell-page) .css-14qiv98 a:hover { color: #000; } +@media (max-width: 511px) { +:where(#sell-page) .css-14qiv98 { padding: 0px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-14qiv98 { font-size: 20px; } +} +:where(#sell-page) .css-pluit3 { color: #fff; font-size: 16px; background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/static/external_cache/sell-marketing-57eb2afb446b.webp") center center / cover; display: flex; flex-direction: column; -webkit-box-align: center; align-items: center; } +:where(#sell-page) .css-1dpdq61 { padding: 40px 0px; max-width: var(--mt-page-max-width); margin: 0px auto; } +@media (min-width: 768px) { +:where(#sell-page) .css-1dpdq61 { padding-top: 60px; padding-bottom: 60px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1dpdq61 { padding-top: 100px; padding-bottom: 100px; } +} + +:where(#sell-page) .css-r4jhui { font-size: 32px; font-family: "Compass Serif",Times,"Times New Roman",serif; font-weight: 400; line-height: 1.3; margin-bottom: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-r4jhui { margin-bottom: 24px; font-size: 42px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-r4jhui { font-size: 50px; } +} +:where(#sell-page) .css-r4jhui span { display: inline-block; } +@media (min-width: 768px) { +:where(#sell-page) .css-r4jhui { text-align: center; } +} + +:where(#sell-page) .css-3l9169 { font-size: 16px; font-weight: 400; line-height: 1.6; } +:where(#sell-page) .css-3l9169 > sup { font-size: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-3l9169 { font-size: 20px; } +:where(#sell-page) .css-3l9169 > sup { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-3l9169 { font-size: 28px; line-height: 1.5; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-3l9169 { max-width: 758px; text-align: center; } +} +:where(#sell-page) .css-5vxow3 { height: 1px; background: rgb(216, 214, 214); margin: 16px 0; } +@media (min-width: 1024px) { +:where(#sell-page) .css-5vxow3 { height: 2px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-5vxow3 { margin: 32px 0; } +} + +:where(#sell-page) .css-3nk80r { font-size: 16px; line-height: 1.6; font-weight: 500; } +:where(#sell-page) .css-3nk80r > sup { font-size: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-3nk80r { font-size: 20px; } +:where(#sell-page) .css-3nk80r > sup { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-3nk80r { font-size: 28px; line-height: 1.5; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-3nk80r { max-width: 758px; text-align: center; } +} +:where(#sell-page) .css-7w2wi { margin-bottom: 24px; } +@media (min-width: 1280px) { +:where(#sell-page) .css-7w2wi { margin-bottom: 32px; } +} +:where(#sell-page) .css-9wnoii { color: #fff; text-decoration: none; display: inline-block; } + + +:where(#sell-page) .css-1w8y9b { --button-color: #fff; --button-background: transparent; --button-hover-color: #fff; --button-hover-background: transparent; --button-transition: all 0.2s ease-in-out; font-family: "Compass Sans",Helvetica,Arial,sans-serif; font-weight: 500; line-height: 1.5; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; cursor: pointer; display: flex; -webkit-box-align: center; color: var(--button-color); background: var(--button-background); fill: currentcolor; text-decoration: none; user-select: none; -webkit-box-pack: center; justify-content: center; letter-spacing: 0.03em; padding: 5px 0px; font-size: 25px; position: relative; height: auto; flex-direction: column; gap: 1px; align-items: flex-start; } +@media (hover: hover) and (pointer: fine) { +:where(#sell-page) .css-1w8y9b:hover { opacity: 0.8; } +} +:where(#sell-page) .css-1w8y9b .sell-button-icon { height: auto; width: auto; } +@media (max-width: 1279px) { +:where(#sell-page) .css-1w8y9b { font-size: 16px; padding: 0px; letter-spacing: 0.06em; } +} +@media (hover: hover) and (pointer: fine) { +:where(#sell-page) .css-1w8y9b:hover > p::before, :where(#sell-page) .css-1w8y9b:hover > p::after { width: 0px; } +} +:where(#sell-page) .css-1w8y9b > p { display: inline-flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: start; justify-content: flex-start; gap: 16px; position: relative; height: 34px; } +:where(#sell-page) .css-1w8y9b > p::before, :where(#sell-page) .css-1w8y9b > p::after { content: ""; display: block; position: absolute; width: 50%; height: 2px; bottom: -2px; background-color: var(--button-color); transition: var(--button-transition); } +:where(#sell-page) .css-1w8y9b > p::before { left: 0px; } +:where(#sell-page) .css-1w8y9b > p::after { right: 0px; } +@media (max-width: 1023px) { +:where(#sell-page) .css-1w8y9b > p::before, :where(#sell-page) .css-1w8y9b > p::after { height: 1px; bottom: -1px; } +} +:where(#sell-page) .css-1w8y9b .spacer { display: none; } +@media (min-width: 768px) { +:where(#sell-page) .css-1w8y9b { flex-direction: row; -webkit-box-align: center; align-items: center; gap: 0px; } +:where(#sell-page) .css-1w8y9b > p { display: contents; } +:where(#sell-page) .css-1w8y9b .spacer { display: inline; } +:where(#sell-page) .css-1w8y9b .sell-button-icon { margin-left: 16px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1w8y9b { font-size: 20px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1w8y9b { font-size: 28px; } +} +:where(#sell-page) .css-1sagztr { background: rgb(241, 239, 236); } + +:where(#sell-page) .css-z6iz7f { padding: 40px 0px; max-width: var(--mt-page-max-width); margin: 0px auto; display: flex; flex-direction: column; } +@media (min-width: 768px) { +:where(#sell-page) .css-z6iz7f { padding-top: 60px; padding-bottom: 60px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-z6iz7f { padding-top: 100px; padding-bottom: 100px; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-z6iz7f { -webkit-box-align: center; align-items: center; } +} + +:where(#sell-page) .css-1qf9x2w { font-family: "Compass Serif",Times,"Times New Roman",serif; font-weight: 400; line-height: 1.3; margin-bottom: 12px; font-size: 34px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1qf9x2w { margin-bottom: 24px; font-size: 42px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1qf9x2w { font-size: 50px; } +} +:where(#sell-page) .css-1qf9x2w span { display: inline-block; } +@media (min-width: 768px) { +:where(#sell-page) .css-1qf9x2w { text-align: center; } +:where(#sell-page) .css-1qf9x2w span { display: inline; } +} + +:where(#sell-page) .css-vkoy8m { font-size: 16px; font-weight: 400; line-height: 1.6; } +:where(#sell-page) .css-vkoy8m > sup { font-size: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-vkoy8m { font-size: 20px; } +:where(#sell-page) .css-vkoy8m > sup { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-vkoy8m { font-size: 28px; line-height: 1.5; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-vkoy8m { text-align: center; max-width: 758px; } +} +:where(#sell-page) .css-12qyots { display: flex; flex-direction: column; gap: 40px; margin-top: 40px; } +:where(#sell-page) .css-12qyots > article:not(:last-of-type) { padding-bottom: 32px; border-bottom: 1px solid rgb(218, 218, 218); } +@media (min-width: 768px) { +:where(#sell-page) .css-12qyots { gap: 60px; margin-top: 60px; } +:where(#sell-page) .css-12qyots > article:not(:last-of-type) { padding-bottom: 0px; border-bottom-width: medium; border-bottom-style: none; border-bottom-color: currentcolor; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-12qyots { margin-top: 100px; } +} +:where(#sell-page) .css-dmbf8o { display: grid; grid-template-areas: "header" "image" "description" "note" "button"; grid-template-columns: 1fr; } +@media (min-width: 768px) { +:where(#sell-page) .css-dmbf8o { grid-template-columns: 1fr 1fr; grid-template-areas: "content image"; column-gap: 40px; row-gap: unset; -webkit-box-align: start; align-items: start; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-dmbf8o { column-gap: 60px; } +} +:where(#sell-page) .css-8g9f88 { display: contents; } +@media (min-width: 768px) { +:where(#sell-page) .css-8g9f88 { display: flex; flex-direction: column; -webkit-box-pack: start; justify-content: flex-start; grid-area: content; } +} +:where(#sell-page) .css-1hk3dg8 { grid-area: header; } + +:where(#sell-page) .css-l9qaof { font-size: 32px; font-family: "Compass Serif",Times,"Times New Roman",serif; font-weight: 400; line-height: 1.3; margin-bottom: 16px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-l9qaof { margin-bottom: 24px; font-size: 42px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-l9qaof { font-size: 50px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-l9qaof { font-size: 32px; margin-bottom: 32px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-l9qaof { font-size: 42px; } +} + +:where(#sell-page) .css-1bt1yzr { font-size: 16px; font-weight: 500; line-height: 1.6; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1bt1yzr { margin-bottom: 24px; font-size: 20px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1bt1yzr { font-size: 24px; line-height: 1.5; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1bt1yzr { margin-bottom: 32px; } +} + +:where(#sell-page) .css-wfq3m2 { font-size: 16px; font-weight: 400; line-height: 1.6; grid-area: description; margin-top: 24px; } +:where(#sell-page) .css-wfq3m2 > sup { font-size: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-wfq3m2 { font-size: 20px; } +:where(#sell-page) .css-wfq3m2 > sup { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-wfq3m2 { font-size: 28px; line-height: 1.5; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-wfq3m2 { margin-top: 0px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-wfq3m2 { font-size: 18px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-wfq3m2 { font-size: 22px; line-height: 1.6; } +} +:where(#sell-page) .css-15x8mle { grid-area: button; margin-top: 24px; } +@media (min-width: 1280px) { +:where(#sell-page) .css-15x8mle { margin-top: 40px; } +} +:where(#sell-page) .css-11ywu96 { display: inline-block; color: currentcolor; text-decoration: none; } + + +:where(#sell-page) .css-4rdfxn { --button-color: #000; --button-background: transparent; --button-hover-color: #fff; --button-hover-background: transparent; --button-transition: all 0.2s ease-in-out; font-family: "Compass Sans",Helvetica,Arial,sans-serif; font-weight: 500; line-height: 1.5; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; cursor: pointer; display: flex; -webkit-box-align: center; color: var(--button-color); background: var(--button-background); fill: currentcolor; text-decoration: none; user-select: none; -webkit-box-pack: center; justify-content: center; letter-spacing: 0.03em; padding: 5px 0px; font-size: 25px; height: auto; position: relative; text-transform: uppercase; flex-direction: column; align-items: flex-start; gap: 8px; } +@media (hover: hover) and (pointer: fine) { +:where(#sell-page) .css-4rdfxn:hover { opacity: 0.8; } +} +:where(#sell-page) .css-4rdfxn .sell-button-icon { height: auto; width: auto; } +@media (max-width: 1279px) { +:where(#sell-page) .css-4rdfxn { font-size: 16px; padding: 0px; letter-spacing: 0.06em; } +} +@media (hover: hover) and (pointer: fine) { +:where(#sell-page) .css-4rdfxn:hover > p::before, :where(#sell-page) .css-4rdfxn:hover > p::after { width: 0px; } +} +:where(#sell-page) .css-4rdfxn > p { display: inline-flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: start; justify-content: flex-start; gap: 16px; position: relative; height: 34px; } +:where(#sell-page) .css-4rdfxn > p::before, :where(#sell-page) .css-4rdfxn > p::after { content: ""; display: block; position: absolute; width: 50%; height: 2px; bottom: -2px; background-color: var(--button-color); transition: var(--button-transition); } +:where(#sell-page) .css-4rdfxn > p::before { left: 0px; } +:where(#sell-page) .css-4rdfxn > p::after { right: 0px; } +@media (max-width: 1023px) { +:where(#sell-page) .css-4rdfxn > p::before, :where(#sell-page) .css-4rdfxn > p::after { height: 1px; bottom: -1px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-4rdfxn { font-size: 22px; } +} +:where(#sell-page) .css-njtd1l { grid-area: image; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 12px; overflow: hidden; } +@media (min-width: 1280px) { +:where(#sell-page) .css-njtd1l { border-radius: 20px; } +} + + +:where(#sell-page) .css-18otenb { --button-color: #000; --button-background: transparent; --button-hover-color: #fff; --button-hover-background: transparent; --button-transition: all 0.2s ease-in-out; font-family: "Compass Sans",Helvetica,Arial,sans-serif; font-weight: 500; line-height: 1.5; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; cursor: pointer; display: flex; -webkit-box-align: center; align-items: center; gap: 16px; color: var(--button-color); background: var(--button-background); fill: currentcolor; text-decoration: none; user-select: none; -webkit-box-pack: center; justify-content: center; letter-spacing: 0.03em; padding: 5px 0px; font-size: 25px; height: auto; position: relative; text-transform: uppercase; } +@media (hover: hover) and (pointer: fine) { +:where(#sell-page) .css-18otenb:hover { opacity: 0.8; } +} +:where(#sell-page) .css-18otenb .sell-button-icon { height: auto; width: auto; } +@media (max-width: 1279px) { +:where(#sell-page) .css-18otenb { font-size: 16px; padding: 0px; letter-spacing: 0.06em; } +} +@media (hover: hover) and (pointer: fine) { +:where(#sell-page) .css-18otenb:hover > p::before, :where(#sell-page) .css-18otenb:hover > p::after { width: 0px; } +} +:where(#sell-page) .css-18otenb > p { display: inline-flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: start; justify-content: flex-start; gap: 16px; position: relative; height: 34px; } +:where(#sell-page) .css-18otenb > p::before, :where(#sell-page) .css-18otenb > p::after { content: ""; display: block; position: absolute; width: 50%; height: 2px; bottom: -2px; background-color: var(--button-color); transition: var(--button-transition); } +:where(#sell-page) .css-18otenb > p::before { left: 0px; } +:where(#sell-page) .css-18otenb > p::after { right: 0px; } +@media (max-width: 1023px) { +:where(#sell-page) .css-18otenb > p::before, :where(#sell-page) .css-18otenb > p::after { height: 1px; bottom: -1px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-18otenb { font-size: 22px; } +} +:where(#sell-page) .css-1brlqjs { background-color: #000; color: #fff; } + +:where(#sell-page) .css-10jozr0 { padding: 40px 0px; max-width: var(--mt-page-max-width); margin: 0px auto; display: flex; flex-direction: column; -webkit-box-align: start; align-items: start; } +@media (min-width: 768px) { +:where(#sell-page) .css-10jozr0 { padding-top: 60px; padding-bottom: 60px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-10jozr0 { padding-top: 100px; padding-bottom: 100px; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-10jozr0 { -webkit-box-align: center; align-items: center; } +} + +:where(#sell-page) .css-1oo7s6c { font-size: 32px; font-family: "Compass Serif",Times,"Times New Roman",serif; font-weight: 400; line-height: 1.3; margin-bottom: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1oo7s6c { margin-bottom: 24px; font-size: 42px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1oo7s6c { font-size: 50px; } +} +:where(#sell-page) .css-1oo7s6c > span { display: inline-block; } +@media (min-width: 1280px) { +:where(#sell-page) .css-1oo7s6c > span { display: inline; } +} + +:where(#sell-page) .css-157aart { font-size: 16px; font-weight: 400; line-height: 1.6; margin-bottom: 40px; } +:where(#sell-page) .css-157aart > sup { font-size: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-157aart { font-size: 20px; } +:where(#sell-page) .css-157aart > sup { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-157aart { font-size: 28px; line-height: 1.5; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-157aart { max-width: 690px; text-align: center; margin-bottom: 100px; } +} +:where(#sell-page) .css-1abra2g { font-family: "Compass Serif",Times,"Times New Roman",serif; display: flex; flex-direction: column; row-gap: 40px; margin-bottom: 40px; width: 100%; } +@media (min-width: 768px) { +:where(#sell-page) .css-1abra2g { flex-direction: row; margin-bottom: 100px; } +} +:where(#sell-page) .css-rhdlph { display: flex; flex-direction: column; } +@media (min-width: 768px) { +:where(#sell-page) .css-rhdlph { flex: 1 1 0%; padding: 0 0 0 32px; border-left: 2px solid #fff; } +} +:where(#sell-page) .css-ir6v37 { line-height: 1; font-size: 42px; margin-bottom: 12px; } +:where(#sell-page) .css-ir6v37 sup { font-size: 64%; } +@media (min-width: 1280px) { +:where(#sell-page) .css-ir6v37 { font-size: 70px; margin-bottom: 24px; } +} +:where(#sell-page) .css-iq2lrl { line-height: 1.3; font-size: 28px; } +@media (min-width: 1280px) { +:where(#sell-page) .css-iq2lrl { font-size: 42px; } +} + +:where(#sell-page) .css-q3223w { --button-color: #000; --button-background: #fff; --button-hover-color: #fff; --button-hover-background: transparent; --button-transition: all 0.2s ease-in-out; font-family: "Compass Sans",Helvetica,Arial,sans-serif; font-weight: 500; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; cursor: pointer; display: flex; -webkit-box-align: center; align-items: center; gap: 16px; color: var(--button-color); background: var(--button-background); fill: currentcolor; text-decoration: none; user-select: none; padding: 0px; font-size: 20px; line-height: 1.5; height: 48px; width: 220px; -webkit-box-pack: center; justify-content: center; border-radius: 999px; } +@media (hover: hover) and (pointer: fine) { +:where(#sell-page) .css-q3223w:hover { opacity: 0.8; } +} +:where(#sell-page) .css-q3223w .sell-button-icon { height: auto; width: auto; } +@media (max-width: 1279px) { +:where(#sell-page) .css-q3223w { font-size: 16px; } +} +:where(#sell-page) .css-1dpdq61 { padding: 40px 0px; max-width: var(--mt-page-max-width); margin: 0px auto; } +@media (min-width: 768px) { +:where(#sell-page) .css-1dpdq61 { padding-top: 60px; padding-bottom: 60px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1dpdq61 { padding-top: 100px; padding-bottom: 100px; } +} + +:where(#sell-page) .css-1m5pjej { font-size: 32px; font-family: "Compass Serif",Times,"Times New Roman",serif; font-weight: 400; line-height: 1.3; margin-bottom: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1m5pjej { margin-bottom: 24px; font-size: 42px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1m5pjej { font-size: 50px; } +} +:where(#sell-page) .css-1m5pjej br { display: none; } +@media (min-width: 768px) { +:where(#sell-page) .css-1m5pjej { text-align: center; font-size: 60px; } +:where(#sell-page) .css-1m5pjej br { display: initial; } +} + +:where(#sell-page) .css-exm58i { font-size: 16px; font-weight: 400; line-height: 1.6; margin-bottom: 40px; } +:where(#sell-page) .css-exm58i > sup { font-size: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-exm58i { font-size: 20px; } +:where(#sell-page) .css-exm58i > sup { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-exm58i { font-size: 28px; line-height: 1.5; } +} +:where(#sell-page) .css-exm58i br { display: none; } +@media (min-width: 768px) { +:where(#sell-page) .css-exm58i { text-align: center; } +:where(#sell-page) .css-exm58i br { display: initial; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-exm58i { margin-bottom: 60px; } +} +:where(#sell-page) .css-gy4239 { margin: auto; --slide-spacing: 16px; --slide-size: 100%; } +@media (min-width: 768px) { +:where(#sell-page) .css-gy4239 { --slide-spacing: 24px; } +} +:where(#sell-page) .css-d3v9zr { overflow: hidden; } +:where(#sell-page) .css-119k3rf { display: flex; margin: 0 calc(var(--slide-spacing) * -1); touch-action: pan-y pinch-zoom; } +:where(#sell-page) .css-1ow741c { transform: translate3d(0px, 0px, 0px); flex: 0 0 var(--slide-size); min-width: 0px; user-select: none; padding: 0 var(--slide-spacing); } +:where(#sell-page) .css-39im2w { padding: 30px 30px 0px; border-radius: 24px; background: #000; height: 100%; display: flex; flex-direction: column; -webkit-box-pack: justify; justify-content: space-between; } +@media (min-width: 768px) { +:where(#sell-page) .css-39im2w { flex-direction: row-reverse; padding: 0px 30px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-39im2w { padding: 0px 60px; } +} +:where(#sell-page) .css-ent877 { color: #fff; } +@media (min-width: 768px) { +:where(#sell-page) .css-ent877 { display: flex; -webkit-box-align: center; align-items: center; margin-left: 24px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-ent877 { margin-left: 54px; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-8huwwr { display: flex; } +} +:where(#sell-page) .css-181tfr { width: 45px; height: 45px; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; border-radius: 50%; font-size: 24px; font-weight: 700; border: 1.5px solid rgb(255, 255, 255); margin-bottom: 32px; } +@media (min-width: 768px) { +:where(#sell-page) .css-181tfr { margin-right: 16px; flex: 0 0 45px; height: 45px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-181tfr { margin-right: 32px; flex: 0 0 60px; height: 60px; font-size: 28px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-181tfr { font-size: 32px; } +} +:where(#sell-page) .css-1uqoqyw { font-size: 20px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; } +@media (min-width: 768px) { +:where(#sell-page) .css-1uqoqyw { font-size: 22px; font-weight: 500; margin-bottom: 8px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1uqoqyw { font-size: 24px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1uqoqyw { font-size: 28px; margin-bottom: 24px; } +} + +:where(#sell-page) .css-1ugerj0 { font-size: 16px; font-weight: 400; line-height: 1.6; min-height: 128px; margin-bottom: 16px; } +:where(#sell-page) .css-1ugerj0 > sup { font-size: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1ugerj0 { font-size: 20px; } +:where(#sell-page) .css-1ugerj0 > sup { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1ugerj0 { font-size: 28px; line-height: 1.5; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-1ugerj0 { min-height: unset; margin-bottom: 0px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1ugerj0 { font-size: 22px; line-height: 1.6; } +} +:where(#sell-page) .css-d8e1g9 { width: 100%; } +@media (min-width: 768px) { +:where(#sell-page) .css-d8e1g9 { flex: 0 0 260px; padding-top: 40px; padding-bottom: 0px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-d8e1g9 { flex: 0 0 360px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-d8e1g9 { flex: 0 0 489px; padding-top: 60px; padding-bottom: 0px; } +} +:where(#sell-page) .css-1kbak32 { width: 100%; aspect-ratio: 293 / 322; overflow: hidden; position: relative; border-radius: clamp(12px, 2.4vw, 28px) clamp(12px, 2.4vw, 28px) 0px 0px; background: #fff; } +:where(#sell-page) .css-1kbak32::before, :where(#sell-page) .css-1kbak32::after { content: ""; position: absolute; left: 0px; width: 100%; height: 15%; z-index: 100; display: none; } +:where(#sell-page) .css-1kbak32::before { top: 0px; background: linear-gradient(rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0) 100%); } +:where(#sell-page) .css-1kbak32::after { bottom: 0px; background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.4) 100%); } +@media (min-width: 768px) { +:where(#sell-page) .css-1kbak32 { aspect-ratio: unset; height: 100%; min-height: 303px; border-radius: 16px 16px 0px 0px; } +:where(#sell-page) .css-1kbak32::before { display: none; } +:where(#sell-page) .css-1kbak32::after { display: block; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1kbak32 { min-height: 420px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1kbak32 { min-height: 570px; } +} +:where(#sell-page) .css-ffsuv9 { width: 100%; position: absolute; top: 0px; } +:where(#sell-page) .css-pw7jst { position: relative; width: 100%; } +:where(#sell-page) .css-q4dzvk { width: 100%; height: auto; } +:where(#sell-page) .css-xkkzel { position: absolute; background: rgba(255, 0, 0, 0.2); z-index: 200; border-radius: clamp(6px, 1.5vw, 12px); height: 5.4%; width: 67.6%; top: 32.2%; left: 2%; } +@media (min-width: 768px) { +:where(#sell-page) .css-xkkzel { border-radius: 8px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-xkkzel { border-radius: 12px; } +} +:where(#sell-page) .css-8lbx1t { position: absolute; background: rgb(255, 0, 0); z-index: 200; border-radius: 50%; color: #fff; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; font-size: clamp(16px, 3vw, 32px); font-weight: 700; width: 9.6%; aspect-ratio: 1 / 1; top: 32.9%; left: 71%; } +@media (min-width: 768px) { +:where(#sell-page) .css-8lbx1t { width: 30px; font-size: 20px; transform: translate(0px, -8%); } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-8lbx1t { width: 45px; font-size: 26px; transform: translate(0px, -10%); } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-8lbx1t { width: 60px; font-size: 32px; } +} +:where(#sell-page) .css-ajun48 { position: absolute; background: rgba(255, 0, 0, 0.2); z-index: 200; border-radius: clamp(6px, 1.5vw, 12px); height: 3.4%; width: 42.9%; top: 22.8%; left: 50.7%; } +@media (min-width: 768px) { +:where(#sell-page) .css-ajun48 { border-radius: 8px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-ajun48 { border-radius: 12px; } +} +:where(#sell-page) .css-1uoslnw { position: absolute; background: rgb(255, 0, 0); z-index: 200; border-radius: 50%; color: #fff; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; font-size: clamp(16px, 3vw, 32px); font-weight: 700; width: 9.6%; aspect-ratio: 1 / 1; top: 26.8%; left: 67%; } +@media (min-width: 768px) { +:where(#sell-page) .css-1uoslnw { width: 30px; font-size: 20px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1uoslnw { width: 45px; font-size: 26px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1uoslnw { width: 60px; font-size: 32px; } +} +:where(#sell-page) .css-cjcqs0 { width: 100%; } +@media (min-width: 768px) { +:where(#sell-page) .css-cjcqs0 { flex: 0 0 260px; padding-top: 0px; padding-bottom: 0px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-cjcqs0 { flex: 0 0 360px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-cjcqs0 { flex: 0 0 489px; padding-top: 0px; padding-bottom: 0px; } +} +:where(#sell-page) .css-484tuc { width: 100%; aspect-ratio: 293 / 322; overflow: hidden; position: relative; border-radius: clamp(12px, 2.4vw, 28px) clamp(12px, 2.4vw, 28px) 0px 0px; background: #fff; } +:where(#sell-page) .css-484tuc::before, :where(#sell-page) .css-484tuc::after { content: ""; position: absolute; left: 0px; width: 100%; height: 15%; z-index: 100; display: none; } +:where(#sell-page) .css-484tuc::before { top: 0px; background: linear-gradient(rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0) 100%); } +:where(#sell-page) .css-484tuc::after { bottom: 0px; background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.4) 100%); } +@media (min-width: 768px) { +:where(#sell-page) .css-484tuc { aspect-ratio: unset; height: 100%; min-height: 303px; border-radius: 0px; } +:where(#sell-page) .css-484tuc::before { display: block; } +:where(#sell-page) .css-484tuc::after { display: block; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-484tuc { min-height: 420px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-484tuc { min-height: 570px; } +} +:where(#sell-page) .css-g28vmn { width: 100%; position: absolute; bottom: -24%; } +@media (min-width: 768px) { +:where(#sell-page) .css-g28vmn { bottom: -13%; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-g28vmn { bottom: -12%; } +} +:where(#sell-page) .css-1mxnf9k { position: absolute; background: rgba(255, 0, 0, 0.2); z-index: 200; border-radius: clamp(6px, 1.5vw, 12px); height: 17.2%; width: 95.8%; top: 52.3%; left: 2.1%; } +@media (min-width: 768px) { +:where(#sell-page) .css-1mxnf9k { border-radius: 8px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1mxnf9k { border-radius: 12px; } +} +:where(#sell-page) .css-1wiajke { position: absolute; background: rgb(255, 0, 0); z-index: 200; border-radius: 50%; color: #fff; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; font-size: clamp(16px, 3vw, 32px); font-weight: 700; width: 9.6%; aspect-ratio: 1 / 1; top: 50%; left: 43%; } +@media (min-width: 768px) { +:where(#sell-page) .css-1wiajke { width: 30px; font-size: 20px; transform: translate(0px, -8%); } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1wiajke { width: 45px; font-size: 26px; transform: translate(0px, -10%); } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1wiajke { width: 60px; font-size: 32px; } +} +:where(#sell-page) .css-mtdc5q { width: 100%; } +@media (min-width: 768px) { +:where(#sell-page) .css-mtdc5q { flex: 0 0 260px; padding-top: 0px; padding-bottom: 40px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-mtdc5q { flex: 0 0 360px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-mtdc5q { flex: 0 0 489px; padding-top: 0px; padding-bottom: 60px; } +} +:where(#sell-page) .css-1c73x1g { width: 100%; aspect-ratio: 293 / 322; overflow: hidden; position: relative; border-radius: clamp(12px, 2.4vw, 28px) clamp(12px, 2.4vw, 28px) 0px 0px; background: #fff; } +:where(#sell-page) .css-1c73x1g::before, :where(#sell-page) .css-1c73x1g::after { content: ""; position: absolute; left: 0px; width: 100%; height: 15%; z-index: 100; display: none; } +:where(#sell-page) .css-1c73x1g::before { top: 0px; background: linear-gradient(rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0) 100%); } +:where(#sell-page) .css-1c73x1g::after { bottom: 0px; background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.4) 100%); } +@media (min-width: 768px) { +:where(#sell-page) .css-1c73x1g { aspect-ratio: unset; height: 100%; min-height: 303px; border-radius: 0px 0px 16px 16px; } +:where(#sell-page) .css-1c73x1g::before { display: block; } +:where(#sell-page) .css-1c73x1g::after { display: none; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1c73x1g { min-height: 420px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1c73x1g { min-height: 570px; } +} +:where(#sell-page) .css-g9ahnu { width: 100%; position: absolute; bottom: 3%; } +:where(#sell-page) .css-1hb0yjc { position: absolute; background: rgba(255, 0, 0, 0.2); z-index: 200; border-radius: clamp(6px, 1.5vw, 12px); height: 6.2%; width: 95.8%; top: 92.3%; left: 2.1%; } +@media (min-width: 768px) { +:where(#sell-page) .css-1hb0yjc { border-radius: 8px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1hb0yjc { border-radius: 12px; } +} +:where(#sell-page) .css-xeuskd { position: absolute; background: rgb(255, 0, 0); z-index: 200; border-radius: 50%; color: #fff; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; font-size: clamp(16px, 3vw, 32px); font-weight: 700; width: 9.6%; aspect-ratio: 1 / 1; top: 93.2%; left: 53.3%; } +@media (min-width: 768px) { +:where(#sell-page) .css-xeuskd { width: 30px; font-size: 20px; transform: translate(-8%, -8%); } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-xeuskd { width: 45px; font-size: 26px; transform: translate(-11%, -11%); } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-xeuskd { width: 60px; font-size: 32px; } +} +:where(#sell-page) .css-p8e2vt { position: absolute; background: rgba(255, 0, 0, 0.2); z-index: 200; border-radius: clamp(6px, 1.5vw, 12px); height: 14.8%; width: 95%; top: 11.3%; left: 2.5%; } +@media (min-width: 768px) { +:where(#sell-page) .css-p8e2vt { border-radius: 8px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-p8e2vt { border-radius: 12px; } +} +:where(#sell-page) .css-18k33s7 { position: absolute; background: rgb(255, 0, 0); z-index: 200; border-radius: 50%; color: #fff; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; font-size: clamp(16px, 3vw, 32px); font-weight: 700; width: 9.6%; aspect-ratio: 1 / 1; top: 8.4%; left: 68%; } +@media (min-width: 768px) { +:where(#sell-page) .css-18k33s7 { width: 30px; font-size: 20px; transform: translate(0px, -8%); } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-18k33s7 { width: 45px; font-size: 26px; transform: translate(0px, -10%); } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-18k33s7 { width: 60px; font-size: 32px; } +} +:where(#sell-page) .css-1wdueg6 { width: 100%; position: absolute; bottom: 0px; } +:where(#sell-page) .css-18t54ou { position: absolute; background: rgba(255, 0, 0, 0.2); z-index: 200; border-radius: clamp(6px, 1.5vw, 12px); height: 16.4%; width: 94%; top: 82%; left: 3%; } +@media (min-width: 768px) { +:where(#sell-page) .css-18t54ou { border-radius: 8px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-18t54ou { border-radius: 12px; } +} +:where(#sell-page) .css-1cly1n4 { position: absolute; background: rgb(255, 0, 0); z-index: 200; border-radius: 50%; color: #fff; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; font-size: clamp(16px, 3vw, 32px); font-weight: 700; width: 9.6%; aspect-ratio: 1 / 1; top: 79.5%; left: 42%; } +@media (min-width: 768px) { +:where(#sell-page) .css-1cly1n4 { width: 30px; font-size: 20px; transform: translate(0px, -8%); } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1cly1n4 { width: 45px; font-size: 26px; transform: translate(0px, -10%); } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1cly1n4 { width: 60px; font-size: 32px; } +} +:where(#sell-page) .css-43x83p { display: flex; -webkit-box-pack: center; justify-content: center; column-gap: 41.25px; margin-top: 40px; } +@media (min-width: 768px) { +:where(#sell-page) .css-43x83p { -webkit-box-pack: center; justify-content: center; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-43x83p { margin-top: 60px; } +} +:where(#sell-page) .css-1gqg92w { --button-color: #000; --button-background: transparent; --button-hover-color: #fff; --button-hover-background: transparent; --button-transition: all 0.2s ease-in-out; font-family: "Compass Sans",Helvetica,Arial,sans-serif; font-size: 16px; font-weight: 500; line-height: 1.5; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; cursor: pointer; display: flex; -webkit-box-align: center; align-items: center; gap: 16px; color: var(--button-color); background: var(--button-background); fill: currentcolor; text-decoration: none; user-select: none; } +@media (hover: hover) and (pointer: fine) { +:where(#sell-page) .css-1gqg92w:hover { opacity: 0.8; } +} +:where(#sell-page) .css-1gqg92w .sell-button-icon { height: auto; width: auto; } + +:where(#sell-page) .css-1mk3g6e { background: linear-gradient(0deg, rgb(243, 240, 234), rgb(243, 240, 234)); } +:where(#sell-page) .css-1mk3g6e h2 { color: #000; } +:where(#sell-page) .css-1dpdq61 { padding: 40px 0px; max-width: var(--mt-page-max-width); margin: 0px auto; } +@media (min-width: 768px) { +:where(#sell-page) .css-1dpdq61 { padding-top: 60px; padding-bottom: 60px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1dpdq61 { padding-top: 100px; padding-bottom: 100px; } +} + +:where(#sell-page) .css-1h9tm7g { font-size: 32px; font-family: "Compass Serif",Times,"Times New Roman",serif; font-weight: 400; line-height: 1.3; text-align: center; color: #fff; margin: 0 0 24px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1h9tm7g { margin-bottom: 24px; font-size: 42px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1h9tm7g { font-size: 50px; } +} +:where(#sell-page) .css-1h9tm7g br { display: none; } +@media (min-width: 768px) { +:where(#sell-page) .css-1h9tm7g br { display: initial; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1h9tm7g { margin: 0px 0px 60px; } +} + +:where(#sell-page) .css-mo72mj { width: 100%; aspect-ratio: 16 / 9; position: relative; border-radius: 12px; overflow: hidden; } +@media (min-width: 768px) { +:where(#sell-page) .css-mo72mj { border-radius: 20px; } +} +:where(#sell-page) .css-wndipf { position: absolute; width: 100%; height: 100%; top: 0px; left: 0px; z-index: 100; cursor: pointer; } +:where(#sell-page) .css-wndipf::after { content: ""; position: absolute; inset: 0px; background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), linear-gradient(176.8deg, rgba(0, 0, 0, 0) 25.55%, rgba(0, 0, 0, 0.7) 97.36%); z-index: 100; } +:where(#sell-page) .css-1d83ssy { width: 100%; height: 100%; object-fit: cover; user-select: none; } +:where(#sell-page) .css-1kvrejl { position: absolute; top: 50%; left: 50%; width: 59px; height: 75px; transform: translate(-50%, -50%); z-index: 200; } +@media (max-width: 767px) { +:where(#sell-page) .css-1kvrejl { width: 31px; height: 39px; } +} +:where(#sell-page) .css-1xfo15 { background: #fff; } + +:where(#sell-page) .css-z6iz7f { padding: 40px 0px; max-width: var(--mt-page-max-width); margin: 0px auto; display: flex; flex-direction: column; } +@media (min-width: 768px) { +:where(#sell-page) .css-z6iz7f { padding-top: 60px; padding-bottom: 60px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-z6iz7f { padding-top: 100px; padding-bottom: 100px; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-z6iz7f { -webkit-box-align: center; align-items: center; } +} + +:where(#sell-page) .css-dgst30 { font-family: "Compass Serif",Times,"Times New Roman",serif; font-weight: 400; line-height: 1.3; margin-bottom: 12px; font-size: 34px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-dgst30 { margin-bottom: 24px; font-size: 42px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-dgst30 { font-size: 50px; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-dgst30 { text-align: center; } +} + +:where(#sell-page) .css-9u5w7e { font-size: 16px; font-weight: 400; line-height: 1.6; } +:where(#sell-page) .css-9u5w7e > sup { font-size: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-9u5w7e { font-size: 20px; } +:where(#sell-page) .css-9u5w7e > sup { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-9u5w7e { font-size: 28px; line-height: 1.5; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-9u5w7e { text-align: center; max-width: 700px; } +} +:where(#sell-page) .css-1fb914y { display: flex; flex-direction: column; gap: 40px; margin-top: 40px; } +@media (min-width: 768px) { +:where(#sell-page) .css-1fb914y { gap: 60px; margin-top: 60px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1fb914y { gap: 100px; margin-top: 100px; } +} +:where(#sell-page) .css-5yrdv1 { display: flex; flex-direction: column; gap: 24px; } +@media (min-width: 768px) { +:where(#sell-page) .css-5yrdv1 { flex-direction: row; gap: 40px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-5yrdv1 { gap: 60px; } +} +:where(#sell-page) .css-1cq2l4f { display: flex; flex-direction: column; gap: 24px; } +@media (min-width: 768px) { +:where(#sell-page) .css-1cq2l4f { gap: 40px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1cq2l4f { gap: 60px; } +} +:where(#sell-page) .css-1fttcpj { display: flex; flex-direction: column; } + +:where(#sell-page) .css-1hz2qg5 { font-size: 32px; font-family: "Compass Serif",Times,"Times New Roman",serif; font-weight: 400; line-height: 1.3; margin-bottom: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1hz2qg5 { margin-bottom: 24px; font-size: 42px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1hz2qg5 { font-size: 50px; } +} +:where(#sell-page) .css-1hz2qg5 span { display: inline-block; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1hz2qg5 { display: inline; font-size: 32px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1hz2qg5 { font-size: 42px; } +} + +:where(#sell-page) .css-1ualtw1 { font-size: 16px; font-weight: 400; line-height: 1.6; } +:where(#sell-page) .css-1ualtw1 > sup { font-size: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1ualtw1 { font-size: 20px; } +:where(#sell-page) .css-1ualtw1 > sup { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1ualtw1 { font-size: 28px; line-height: 1.5; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1ualtw1 { font-size: 22px; } +} +:where(#sell-page) .css-3mllfd { font-size: 16px; font-weight: 500; line-height: 1.6; letter-spacing: 0.06em; margin-bottom: 12px; text-transform: uppercase; } +@media (min-width: 1024px) { +:where(#sell-page) .css-3mllfd { margin-bottom: 24px; font-size: 20px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-3mllfd { font-size: 24px; line-height: 1.5; } +} +:where(#sell-page) .css-nn3r2x { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: 12px; overflow: hidden; } +@media (min-width: 768px) { +:where(#sell-page) .css-nn3r2x { width: 50%; flex-shrink: 0; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-nn3r2x { border-radius: 20px; } +} +:where(#sell-page) .css-crrk52 { background: #000; } +:where(#sell-page) .css-1dpdq61 { padding: 40px 0px; max-width: var(--mt-page-max-width); margin: 0px auto; } +@media (min-width: 768px) { +:where(#sell-page) .css-1dpdq61 { padding-top: 60px; padding-bottom: 60px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1dpdq61 { padding-top: 100px; padding-bottom: 100px; } +} + +:where(#sell-page) .css-1h9tm7g { font-size: 32px; font-family: "Compass Serif",Times,"Times New Roman",serif; font-weight: 400; line-height: 1.3; text-align: center; color: #fff; margin: 0 0 24px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1h9tm7g { margin-bottom: 24px; font-size: 42px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1h9tm7g { font-size: 50px; } +} +:where(#sell-page) .css-1h9tm7g br { display: none; } +@media (min-width: 768px) { +:where(#sell-page) .css-1h9tm7g br { display: initial; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1h9tm7g { margin: 0px 0px 60px; } +} + +:where(#sell-page) .css-mo72mj { width: 100%; aspect-ratio: 16 / 9; position: relative; border-radius: 12px; overflow: hidden; } +@media (min-width: 768px) { +:where(#sell-page) .css-mo72mj { border-radius: 20px; } +} +:where(#sell-page) .css-wndipf { position: absolute; width: 100%; height: 100%; top: 0px; left: 0px; z-index: 100; cursor: pointer; } +:where(#sell-page) .css-wndipf::after { content: ""; position: absolute; inset: 0px; background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), linear-gradient(176.8deg, rgba(0, 0, 0, 0) 25.55%, rgba(0, 0, 0, 0.7) 97.36%); z-index: 100; } +:where(#sell-page) .css-1d83ssy { width: 100%; height: 100%; object-fit: cover; user-select: none; } +:where(#sell-page) .css-1kvrejl { position: absolute; top: 50%; left: 50%; width: 59px; height: 75px; transform: translate(-50%, -50%); z-index: 200; } +@media (max-width: 767px) { +:where(#sell-page) .css-1kvrejl { width: 31px; height: 39px; } +} +:where(#sell-page) .css-hxazs { background: rgb(241, 239, 236); padding: 40px 0px; } +@media (min-width: 768px) { +:where(#sell-page) .css-hxazs { padding-top: 100px; padding-bottom: 100px; } +} + +:where(#sell-page) .css-1pegls6 { max-width: var(--mt-page-max-width); margin: 0px auto; padding: 0px; } +@media (min-width: 768px) { +:where(#sell-page) .css-1pegls6 { padding-top: 60px; padding-bottom: 60px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-1pegls6 { padding-top: 100px; padding-bottom: 100px; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-1pegls6 { padding: 0px; } +} + +:where(#sell-page) .css-ns70sf { max-width: var(--mt-page-max-width); margin: 0px auto; background: #fff; border-radius: 12px; padding: 30px 20px; } +@media (min-width: 768px) { +:where(#sell-page) .css-ns70sf { padding-top: 60px; padding-bottom: 60px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-ns70sf { padding-top: 100px; padding-bottom: 100px; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-ns70sf { padding: 70px; display: grid; grid-template: "content form" "content disclaimer" / 1fr 1fr; gap: 25px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-ns70sf { gap: 35px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-ns70sf { gap: 40px; } +} +:where(#sell-page) .css-ekvon { margin: 0 0 24px; } +@media (min-width: 768px) { +:where(#sell-page) .css-ekvon { grid-area: content; margin-bottom: 0px; } +} + +:where(#sell-page) .css-1pnykj5 { font-family: "Compass Serif",Times,"Times New Roman",serif; font-weight: 400; line-height: 1.3; margin-bottom: 12px; font-size: 34px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-1pnykj5 { margin-bottom: 24px; font-size: 42px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1pnykj5 { font-size: 50px; } +} + +:where(#sell-page) .css-b5revq { font-size: 16px; font-weight: 400; line-height: 1.6; } +:where(#sell-page) .css-b5revq > sup { font-size: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-b5revq { font-size: 20px; } +:where(#sell-page) .css-b5revq > sup { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-b5revq { font-size: 28px; line-height: 1.5; } +} +:where(#sell-page) .css-b5revq > span { display: inline-block; } +@media (min-width: 768px) { +:where(#sell-page) .css-b5revq { padding-right: 35px; } +:where(#sell-page) .css-b5revq > span { display: inline; } +} +@media (min-width: 768px) { +:where(#sell-page) .css-1m62pb8 { grid-area: form; } +} +:where(#sell-page) .css-fz5vzb { display: flex; flex-direction: column; -webkit-box-align: center; align-items: center; row-gap: 12px; } +@media (min-width: 768px) { +:where(#sell-page) .css-fz5vzb { row-gap: 20px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-fz5vzb { row-gap: 30px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-fz5vzb { row-gap: 40px; } +} +:where(#sell-page) .css-n48rgu { width: 100%; position: relative; } +:where(#sell-page) .css-zkuzm3 { border-width: 0px 0px 1px; border-style: none none solid; border-color: currentcolor currentcolor rgb(123, 123, 123); border-image: none; padding: 8px 0 7px; line-height: 1.5; width: 100%; } +:where(#sell-page) .css-zkuzm3:focus { outline: none; } +:where(#sell-page) .css-zkuzm3::-webkit-input-placeholder { color: rgb(123, 123, 123); } +:where(#sell-page) .css-zkuzm3::placeholder { color: rgb(123, 123, 123); } +@media (min-width: 768px) { +:where(#sell-page) .css-zkuzm3 { font-size: 18px; line-height: 32px; padding-top: 4px; padding-bottom: 3px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-zkuzm3 { font-size: 20px; line-height: 32px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-zkuzm3 { font-size: 22px; } +} + + +:where(#sell-page) .css-1ipsgz6 { --button-color: #F1EFEC; --button-background: #000; --button-hover-color: #fff; --button-hover-background: transparent; --button-transition: all 0.2s ease-in-out; font-family: "Compass Sans",Helvetica,Arial,sans-serif; font-weight: 500; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; cursor: pointer; display: flex; -webkit-box-align: center; align-items: center; gap: 16px; color: var(--button-color); background: var(--button-background); fill: currentcolor; text-decoration: none; user-select: none; padding: 0px; font-size: 20px; line-height: 1.5; height: 48px; -webkit-box-pack: center; justify-content: center; border-radius: 999px; margin: 20px 0px 0px; width: 100%; } +@media (hover: hover) and (pointer: fine) { +:where(#sell-page) .css-1ipsgz6:hover { opacity: 0.8; } +} +:where(#sell-page) .css-1ipsgz6 .sell-button-icon { height: auto; width: auto; } +@media (max-width: 1279px) { +:where(#sell-page) .css-1ipsgz6 { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-1ipsgz6 { margin-top: 0px; } +} + +:where(#sell-page) .css-dd6jzd { font-weight: 400; font-size: 8px; line-height: 1.5; color: rgb(108, 108, 108); margin: 32px 0 0; } +:where(#sell-page) .css-dd6jzd > sup { font-size: 12px; } +@media (min-width: 1024px) { +:where(#sell-page) .css-dd6jzd { font-size: 20px; } +:where(#sell-page) .css-dd6jzd > sup { font-size: 16px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-dd6jzd { font-size: 28px; line-height: 1.5; } +} +:where(#sell-page) .css-dd6jzd a { color: rgb(108, 108, 108); } +@media (min-width: 768px) { +:where(#sell-page) .css-dd6jzd { grid-area: disclaimer; font-size: 10px; margin-bottom: 0px; } +} +@media (min-width: 1280px) { +:where(#sell-page) .css-dd6jzd { font-size: 12px; } +} +:where(#sell-page) .css-yxuiz9 { background: #000; color: #fff; } + +:where(#sell-page) .css-befxif { padding: 40px 0px; max-width: var(--mt-page-max-width); margin: 0px auto; display: flex; flex-direction: column; row-gap: 16px; } +@media (min-width: 768px) { +:where(#sell-page) .css-befxif { padding-top: 60px; padding-bottom: 60px; } +} +@media (min-width: 1024px) { +:where(#sell-page) .css-befxif { padding-top: 100px; padding-bottom: 100px; } +} +:where(#sell-page) .css-befxif > p { font-size: 9px; font-weight: 400; line-height: 1.3; } + + + + + + + +#sell-page .seller-feedback {font:16px/1.5 var(--sans);padding:16px;border:1px solid #b5b5b5;margin-bottom:16px;overflow-wrap:anywhere;} +#sell-page .seller-feedback p {font:inherit;margin:8px 0 0;} +#sell-page .seller-errors {border-color:#ae0917;color:#ae0917;} +#sell-page .seller-errors ul {padding-left:20px;margin:8px 0 0;} +#sell-page .sell-card-shade {position:absolute;inset:0;pointer-events:none;transition:background .5s;} +#sell-page [data-stack-card] {cursor:pointer;} +#sell-page [data-appearance-track] {transition:transform .45s ease;} +#sell-page .sell-video-label {position:absolute;left:16px;bottom:16px;background:#000;color:white;padding:8px 12px;font:14px/1.5 var(--sans);} +#sell-page a:focus-visible,#sell-page button:focus-visible {outline:2px solid #0064e5;outline-offset:4px;} +@media(prefers-reduced-motion:reduce){#sell-page *{animation:none!important;transition:none!important;}} + diff --git a/sites/compass/static/icons/.gitkeep b/sites/compass/static/icons/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/sites/compass/static/icons/compass_logo.svg b/sites/compass/static/icons/compass_logo.svg new file mode 100644 index 00000000..2e4c940b --- /dev/null +++ b/sites/compass/static/icons/compass_logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/sites/compass/static/js/.gitkeep b/sites/compass/static/js/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/sites/compass/static/js/compass.js b/sites/compass/static/js/compass.js new file mode 100644 index 00000000..e2d57d65 --- /dev/null +++ b/sites/compass/static/js/compass.js @@ -0,0 +1,72 @@ +'use strict'; +for (const button of document.querySelectorAll('[data-open-dialog]')) { + button.addEventListener('click', () => document.getElementById(button.dataset.openDialog).showModal()); +} +for (const button of document.querySelectorAll('[data-close-dialog]')) { + button.addEventListener('click', () => button.closest('dialog').close()); +} +for (const dialog of document.querySelectorAll('dialog')) { + dialog.addEventListener('click', event => { if (event.target === dialog) { const box = dialog.getBoundingClientRect(); if(event.clientX < box.left || event.clientX > box.right || event.clientY < box.top || event.clientY > box.bottom) dialog.close(); } }); +} +// Associate existing form labels with their controls for keyboard and screen readers. +for (const [index, field] of [...document.querySelectorAll('.field,.filter-group')].entries()) { + const label=field.querySelector('label'), input=field.querySelector('input,select,textarea'); + if(label && input && !label.contains(input)) { input.id ||= 'field-'+index; label.htmlFor=input.id; } +} +const gallery=document.getElementById('photo-viewer'); +if(gallery) { + const photos=[...document.querySelectorAll('[data-gallery-src]')]; + const image=gallery.querySelector('img'), counter=gallery.querySelector('[data-photo-counter]'); + let index=0; + function show(next) { index=(next+photos.length)%photos.length; image.src=photos[index].dataset.gallerySrc; image.alt=photos[index].querySelector('img').alt; counter.textContent=(index+1)+' / '+photos.length; } + for(const [number,photo] of photos.entries()) photo.addEventListener('click',()=>{show(number);gallery.showModal();}); + document.querySelector('[data-view-photos]')?.addEventListener('click',()=>{show(0);gallery.showModal();}); + gallery.querySelector('[data-previous-photo]').addEventListener('click',()=>show(index-1)); + gallery.querySelector('[data-next-photo]').addEventListener('click',()=>show(index+1)); + gallery.addEventListener('keydown',event=>{ if(event.key==='ArrowLeft'){event.preventDefault();show(index-1);} if(event.key==='ArrowRight'){event.preventDefault();show(index+1);} }); +} + +document.querySelector('[data-copy-property-link]')?.addEventListener('click',async()=>{ + const input=document.getElementById('property-share-link'); + const status=document.querySelector('[data-copy-status]'); + try {await navigator.clipboard.writeText(input.value);status.textContent='Link copied.';} + catch {input.focus();input.select();status.textContent='Select and copy the link above.';} +}); + +// Source navigation dropdowns: keep one open, and close on Escape or outside click. +const navigationMenus = [...document.querySelectorAll('.nav-menu')]; +for (const menu of navigationMenus) { + menu.addEventListener('toggle', () => { + if (menu.open) for (const other of navigationMenus) if (other !== menu) other.open = false; + }); +} +document.addEventListener('click', event => { + for (const menu of navigationMenus) if (!menu.contains(event.target)) menu.open = false; +}); +document.addEventListener('keydown', event => { + if (event.key === 'Escape') for (const menu of navigationMenus) { + if (menu.open && menu.contains(document.activeElement)) menu.querySelector('summary').focus(); + menu.open = false; + } +}); +for (const button of document.querySelectorAll('.market-toggle,.footer-toggle')) { + button.addEventListener('click', () => { + const expanded = button.getAttribute('aria-expanded') !== 'true'; + button.setAttribute('aria-expanded', String(expanded)); + button.querySelector('span').textContent = expanded ? '−' : '+'; + }); +} +for (const frame of document.querySelectorAll('[data-home-gallery]')) { + const photos = JSON.parse(frame.dataset.homeGallery); + if (photos.length < 2) continue; + const image = frame.querySelector('img'); + const counter = frame.querySelector('.home-photo-count'); + let index = 0; + function showPhoto(next) { + index = (next + photos.length) % photos.length; + image.src = photos[index]; + counter.textContent = `${index + 1}/${photos.length}`; + } + frame.querySelector('[data-home-previous]').addEventListener('click', () => showPhoto(index - 1)); + frame.querySelector('[data-home-next]').addEventListener('click', () => showPhoto(index + 1)); +} diff --git a/sites/compass/static/js/concierge.js b/sites/compass/static/js/concierge.js new file mode 100644 index 00000000..49715655 --- /dev/null +++ b/sites/compass/static/js/concierge.js @@ -0,0 +1,25 @@ +(() => { + const page = document.querySelector('#concierge-page'); + if (!page) return; + const slides = [...page.querySelectorAll('.slide')]; + let current = 0; + const show = (index) => { + current = (index + slides.length) % slides.length; + slides.forEach((slide, i) => { + slide.hidden = i !== current; + slide.classList.toggle('slide-active', i === current); + }); + page.querySelector('[data-story-status]').textContent = `Success story ${current + 1} of ${slides.length}`; + }; + page.querySelector('.slider-prev').addEventListener('click', () => show(current - 1)); + page.querySelector('.slider-next').addEventListener('click', () => show(current + 1)); + const chapters = page.querySelector('.concierge-chapters'); + const hero = page.querySelector('#hero'); + new IntersectionObserver(([entry]) => { + chapters.classList.toggle('is-visible', !entry.isIntersecting); + document.body.classList.toggle('concierge-reading', !entry.isIntersecting); + }).observe(hero); + if (matchMedia('(prefers-reduced-motion: reduce)').matches) { + page.querySelector('video').pause(); + } +})(); diff --git a/sites/compass/static/js/neighborhoods.js b/sites/compass/static/js/neighborhoods.js new file mode 100644 index 00000000..fa3c849a --- /dev/null +++ b/sites/compass/static/js/neighborhoods.js @@ -0,0 +1,8 @@ +document.querySelectorAll('[data-region-more]').forEach(button => { + button.addEventListener('click', () => { + const expanded = button.getAttribute('aria-expanded') !== 'true'; + button.setAttribute('aria-expanded', String(expanded)); + button.closest('[data-region-links]').classList.toggle('is-expanded', expanded); + button.textContent = expanded ? 'Show less' : 'Show more'; + }); +}); diff --git a/sites/compass/static/js/sell.js b/sites/compass/static/js/sell.js new file mode 100644 index 00000000..5c6af007 --- /dev/null +++ b/sites/compass/static/js/sell.js @@ -0,0 +1,40 @@ +(() => { + const stack = document.querySelector('[data-sell-stack]'); + if (!stack) return; + const cards = [...stack.querySelectorAll('[data-stack-card]')]; + let selected = 0; + function renderStack() { + cards.forEach((card, index) => { + const depth = (index - selected + cards.length) % cards.length; + card.style.zIndex = String(cards.length - depth); + card.style.transform = `translateX(var(--card-offset-x-${depth})) translateY(var(--card-offset-y-${depth}))`; + const shade = depth === 1 ? 17 : 67; + card.querySelector('.sell-card-shade').style.background = depth ? `rgba(${shade},${shade},${shade},${depth / 3})` : 'transparent'; + card.setAttribute('aria-hidden', String(depth !== 0)); + }); + stack.querySelector('[data-stack-status]').textContent = `${cards[selected].getAttribute('aria-label')}, ${selected + 1} of ${cards.length}`; + } + stack.querySelectorAll('[data-stack-step]').forEach(button => button.addEventListener('click', () => { + selected = (selected + Number(button.dataset.stackStep) + cards.length) % cards.length; + renderStack(); + })); + cards.forEach((card, index) => card.addEventListener('click', () => { selected = index; renderStack(); })); + renderStack(); + + const carousel = document.querySelector('[data-sell-carousel]'); + const track = carousel.querySelector('[data-appearance-track]'); + const slides = [...carousel.querySelectorAll('[data-appearance-card]')]; + let slideIndex = 0; + function renderSlide() { + const offset = slides[slideIndex].offsetLeft - slides[0].offsetLeft; + track.style.transform = `translate3d(${-offset}px,0,0)`; + slides.forEach((slide, index) => slide.setAttribute('aria-hidden', String(index !== slideIndex))); + carousel.querySelector('[data-appearance-status]').textContent = `Listing comparison ${slideIndex + 1} of ${slides.length}`; + } + carousel.querySelectorAll('[data-appearance-step]').forEach(button => button.addEventListener('click', () => { + slideIndex = (slideIndex + Number(button.dataset.appearanceStep) + slides.length) % slides.length; + renderSlide(); + })); + new ResizeObserver(renderSlide).observe(track.parentElement); + renderSlide(); +})(); diff --git a/sites/compass/tasks.jsonl b/sites/compass/tasks.jsonl new file mode 100644 index 00000000..6ca08d99 --- /dev/null +++ b/sites/compass/tasks.jsonl @@ -0,0 +1,16 @@ +{"web_name": "Compass", "id": "Compass--0", "ques": "In the Miami search area, consider for-sale condos with at least 3 bedrooms and a recorded, non-zero floor area. Find the one with the lowest price per square foot. Report its address, year built, and MLS number from its property details.", "web": "http://localhost:40019/", "upstream_url": "https://www.compass.com/", "verifier_path": "sites/compass/verify/verify_0.py", "judge_rubric": "Judge the requested outcome against the fixed local snapshot. Accept equivalent spelling, address abbreviations, currency notation and answer wording; do not require an unmentioned route, click count or sort order. The run must contain genuine local UI evidence and a final answer. Before/after snapshots must show no unrelated persistent changes; login and normal read-only navigation are allowed. The selected home must be the lowest price-per-square-foot eligible Miami condo, using unrounded price/area ratios; the final answer must identify that home and correctly report year built and MLS from property details."} +{"web_name": "Compass", "id": "Compass--1", "ques": "Search San Francisco for for-sale condos with at least 1 bedroom. Find the least expensive qualifying home and report its address, price, year built, and MLS number.", "web": "http://localhost:40019/", "upstream_url": "https://www.compass.com/", "verifier_path": "sites/compass/verify/verify_1.py", "judge_rubric": "Judge the requested outcome against the fixed local snapshot. Accept equivalent spelling, address abbreviations, currency notation and answer wording; do not require an unmentioned route, click count or sort order. The run must contain genuine local UI evidence and a final answer. Before/after snapshots must show no unrelated persistent changes; login and normal read-only navigation are allowed. Identify the least expensive eligible San Francisco condo and correctly report its address, price, year built and MLS."} +{"web_name": "Compass", "id": "Compass--2", "ques": "Compare the Miami listings at 1425 Brickell Avenue, Unit 42F and 480 Northeast 31st Street, Unit PH5402. Give one line for each home with its price, square footage, and year built. Then identify which has the lower price per square foot.", "web": "http://localhost:40019/", "upstream_url": "https://www.compass.com/", "verifier_path": "sites/compass/verify/verify_2.py", "judge_rubric": "Judge the requested outcome against the fixed local snapshot. Accept equivalent spelling, address abbreviations, currency notation and answer wording; do not require an unmentioned route, click count or sort order. The run must contain genuine local UI evidence and a final answer. Before/after snapshots must show no unrelated persistent changes; login and normal read-only navigation are allowed. Both homes must have their own correctly associated price, floor area and year. Identify the lower price-per-square-foot home. Merely listing all correct numbers without binding them to each home is insufficient."} +{"web_name": "Compass", "id": "Compass--3", "ques": "Browse the New York search area's for-sale Co-op listings with at least 2 bedrooms. Find the lowest-priced one and report its full address, year built, and listing agent's name.", "web": "http://localhost:40019/", "upstream_url": "https://www.compass.com/", "verifier_path": "sites/compass/verify/verify_3.py", "judge_rubric": "Judge the requested outcome against the fixed local snapshot. Accept equivalent spelling, address abbreviations, currency notation and answer wording; do not require an unmentioned route, click count or sort order. The run must contain genuine local UI evidence and a final answer. Before/after snapshots must show no unrelated persistent changes; login and normal read-only navigation are allowed. Identify the least expensive qualifying New York-area Co-op and correctly report its address, year and listing agent."} +{"web_name": "Compass", "id": "Compass--4", "ques": "Register a new Compass account with the name 'Taylor Reed', email 'taylor.reed+test@example.com', and password 'compass-test-1234'. Save the New York listing at 50 King Street, Unit 9A, then confirm that it appears on your Saved Homes page. Report the listing's recorded price and property type.", "web": "http://localhost:40019/", "upstream_url": "https://www.compass.com/", "verifier_path": "sites/compass/verify/verify_4.py", "judge_rubric": "Judge the requested outcome against the fixed local snapshot. Accept equivalent spelling, address abbreviations, currency notation and answer wording; do not require an unmentioned route, click count or sort order. The run must contain genuine local UI evidence and a final answer. Before/after snapshots must show no unrelated persistent changes; login and normal read-only navigation are allowed. A new Taylor Reed account with the specified email and working password must exist. That account must save the specified home and visit Saved Homes to confirm it. Report the correct recorded price and property type. Existing accounts and unrelated records must remain unchanged."} +{"web_name": "Compass", "id": "Compass--5", "ques": "Log in as alice.j@test.com (password webharbor123). Update your profile phone number to '(415) 555-0199' and confirm the new phone on your account overview. Report the updated phone number and the city and state already recorded on the profile.", "web": "http://localhost:40019/", "upstream_url": "https://www.compass.com/", "verifier_path": "sites/compass/verify/verify_5.py", "judge_rubric": "Judge the requested outcome against the fixed local snapshot. Accept equivalent spelling, address abbreviations, currency notation and answer wording; do not require an unmentioned route, click count or sort order. The run must contain genuine local UI evidence and a final answer. Before/after snapshots must show no unrelated persistent changes; login and normal read-only navigation are allowed. Only the requested account phone field may change. Confirm it on the account overview and correctly report the updated phone and the unchanged city and state."} +{"web_name": "Compass", "id": "Compass--6", "ques": "Log in as carol.lee@test.com (password webharbor123). Request an in-person tour of 480 Northeast 31st Street, Unit PH5402 in Miami for 2026-07-12 at 11:00 AM. Confirm it on your Tours page, and report the tour's status and the building's year built. This is a fixed-date request in the local snapshot.", "web": "http://localhost:40019/", "upstream_url": "https://www.compass.com/", "verifier_path": "sites/compass/verify/verify_6.py", "judge_rubric": "Judge the requested outcome against the fixed local snapshot. Accept equivalent spelling, address abbreviations, currency notation and answer wording; do not require an unmentioned route, click count or sort order. The run must contain genuine local UI evidence and a final answer. Before/after snapshots must show no unrelated persistent changes; login and normal read-only navigation are allowed. Exactly one new requested in-person tour must belong to Carol and the specified home, date and time. Confirm it on Tours; correctly report its requested status and the home's year. Existing tours must remain unchanged."} +{"web_name": "Compass", "id": "Compass--7", "ques": "Log in as david.kim@test.com (password webharbor123). Create a new collection called 'Austin top picks' and add exactly these two homes: 3305 Dolphin Drive and 1036 Liberty Park Drive, Unit 38A. Open the collection's share page to confirm both homes appear, then report the share token.", "web": "http://localhost:40019/", "upstream_url": "https://www.compass.com/", "verifier_path": "sites/compass/verify/verify_7.py", "judge_rubric": "Judge the requested outcome against the fixed local snapshot. Accept equivalent spelling, address abbreviations, currency notation and answer wording; do not require an unmentioned route, click count or sort order. The run must contain genuine local UI evidence and a final answer. Before/after snapshots must show no unrelated persistent changes; login and normal read-only navigation are allowed. Create the named collection owned by David with exactly the two specified homes. Visit its actual share page to confirm both and report its generated share token. Optionally saving those same homes while adding them through Saved Homes is an allowed navigation side effect; unrelated saves or collections are not."} +{"web_name": "Compass", "id": "Compass--10", "ques": "Log in as alice.j@test.com (password webharbor123). Search for for-sale homes in Boston with property type Condo and at least 3 bedrooms. Save the search as 'Boston condos 3BR'. Confirm it on Saved Searches, reopen it, and report the location, status, home type, and minimum bedroom filter that were preserved.", "web": "http://localhost:40019/", "upstream_url": "https://www.compass.com/", "verifier_path": "sites/compass/verify/verify_10.py", "judge_rubric": "Judge the requested outcome against the fixed local snapshot. Accept equivalent spelling, address abbreviations, currency notation and answer wording; do not require an unmentioned route, click count or sort order. The run must contain genuine local UI evidence and a final answer. Before/after snapshots must show no unrelated persistent changes; login and normal read-only navigation are allowed. Add the named saved search for Alice with the requested Boston location, for-sale status, Condo type and minimum 3 bedrooms. Confirm it on Saved Searches and reopen that stored search with the criteria preserved. Report all four criteria. Equivalent city/query location fields and an optional sort parameter are allowed."} +{"web_name": "Compass", "id": "Compass--11", "ques": "Find the highest-priced for-sale single-family home in the Aspen search area. Report its address, bedrooms, square footage, year built, and MLS number.", "web": "http://localhost:40019/", "upstream_url": "https://www.compass.com/", "verifier_path": "sites/compass/verify/verify_11.py", "judge_rubric": "Judge the requested outcome against the fixed local snapshot. Accept equivalent spelling, address abbreviations, currency notation and answer wording; do not require an unmentioned route, click count or sort order. The run must contain genuine local UI evidence and a final answer. Before/after snapshots must show no unrelated persistent changes; login and normal read-only navigation are allowed. Identify the highest-priced eligible Aspen single-family home and correctly report its address, bedrooms, floor area, year and MLS."} +{"web_name": "Compass", "id": "Compass--12", "ques": "Find the for-sale Miami listing at 17145 Southwest 90th Avenue. Report its price per square foot, rounded to the nearest dollar, and its year built. Follow the listing agent's profile link and report that agent's name and published email address.", "web": "http://localhost:40019/", "upstream_url": "https://www.compass.com/", "verifier_path": "sites/compass/verify/verify_12.py", "judge_rubric": "Judge the requested outcome against the fixed local snapshot. Accept equivalent spelling, address abbreviations, currency notation and answer wording; do not require an unmentioned route, click count or sort order. The run must contain genuine local UI evidence and a final answer. Before/after snapshots must show no unrelated persistent changes; login and normal read-only navigation are allowed. Report the specified home's nearest-dollar price per square foot and year. Follow its agent-profile link and report the matching agent's name and published email."} +{"web_name": "Compass", "id": "Compass--13", "ques": "In the Miami search area, consider for-sale homes built in 2016 or later with a recorded positive price and non-zero square footage. Find the home with the second-lowest price per square foot. Report its address, bedroom count, square footage, year built, and listing agent's name so it can be distinguished from similarly named properties.", "web": "http://localhost:40019/", "upstream_url": "https://www.compass.com/", "verifier_path": "sites/compass/verify/verify_13.py", "judge_rubric": "Judge the requested outcome against the fixed local snapshot. Accept equivalent spelling, address abbreviations, currency notation and answer wording; do not require an unmentioned route, click count or sort order. The run must contain genuine local UI evidence and a final answer. Before/after snapshots must show no unrelated persistent changes; login and normal read-only navigation are allowed. Use exact price/area ratios to identify the second-lowest eligible Miami home. Correctly report its address, bedrooms, floor area, year and agent; a similarly named home with different facts is insufficient."} +{"web_name": "Compass", "id": "Compass--14", "ques": "Log in as david.kim@test.com (password webharbor123). In the Austin search area, find the least expensive for-sale single-family home with at least 3 bedrooms and a garage. Add it to a new collection named 'Austin garage picks'. Confirm the collection contains that home, and report its address and MLS number.", "web": "http://localhost:40019/", "upstream_url": "https://www.compass.com/", "verifier_path": "sites/compass/verify/verify_14.py", "judge_rubric": "Judge the requested outcome against the fixed local snapshot. Accept equivalent spelling, address abbreviations, currency notation and answer wording; do not require an unmentioned route, click count or sort order. The run must contain genuine local UI evidence and a final answer. Before/after snapshots must show no unrelated persistent changes; login and normal read-only navigation are allowed. Create the specified David-owned collection and add the least expensive qualifying Austin home. Confirm the home on the collection page and report its address and MLS. Optionally saving this same home while adding it through Saved Homes is allowed; unrelated changes are not."} +{"web_name": "Compass", "id": "Compass--15", "ques": "Log in as bob.smith@test.com (password webharbor123). Find the tour with the earliest requested tour date and identify that home's listing agent. Submit an inquiry for that home with subject 'Following up on my tour' and message 'Please confirm the date and time for this tour.' Report the home's address, the requested tour date, and the agent's name.", "web": "http://localhost:40019/", "upstream_url": "https://www.compass.com/", "verifier_path": "sites/compass/verify/verify_15.py", "judge_rubric": "Judge the requested outcome against the fixed local snapshot. Accept equivalent spelling, address abbreviations, currency notation and answer wording; do not require an unmentioned route, click count or sort order. The run must contain genuine local UI evidence and a final answer. Before/after snapshots must show no unrelated persistent changes; login and normal read-only navigation are allowed. Use Bob's earliest requested tour date, preserving the existing tours. Create exactly one inquiry for that home and its listing agent, owned by Bob, with the exact subject and message in the task. Correctly report the home, tour date and agent. This is a local stored inquiry, not real external contact."} +{"web_name": "Compass", "id": "Compass--16", "ques": "Compare the recorded prices and floor areas of 195 Willoughby Avenue, Unit 1517/1518; 130 Prospect Place, Unit 1; and 482 11th Street in the New York search area, regardless of their current listing status. Identify the home with the lowest price per square foot and report its address, year built, and listing agent's name.", "web": "http://localhost:40019/", "upstream_url": "https://www.compass.com/", "verifier_path": "sites/compass/verify/verify_16.py", "judge_rubric": "Judge the requested outcome against the fixed local snapshot. Accept equivalent spelling, address abbreviations, currency notation and answer wording; do not require an unmentioned route, click count or sort order. The run must contain genuine local UI evidence and a final answer. Before/after snapshots must show no unrelated persistent changes; login and normal read-only navigation are allowed. Compare the recorded price/area ratios of the three specified homes regardless of status, select the lowest and correctly report its address, year and listing agent."} +{"web_name": "Compass", "id": "Compass--17", "ques": "Find the most expensive for-sale Condo in the Compass Luxury collection (homes priced at $5 million or more). Report its full address, the listing agent's name, and its year built. You may use the search filters to narrow the Luxury listings.", "web": "http://localhost:40019/", "upstream_url": "https://www.compass.com/", "verifier_path": "sites/compass/verify/verify_17.py", "judge_rubric": "Judge the requested outcome against the fixed local snapshot. Accept equivalent spelling, address abbreviations, currency notation and answer wording; do not require an unmentioned route, click count or sort order. The run must contain genuine local UI evidence and a final answer. Before/after snapshots must show no unrelated persistent changes; login and normal read-only navigation are allowed. Identify the highest-priced qualifying for-sale Luxury condo and correctly report its address, listing agent and year. Filtering or another legitimate browsing route is allowed."} diff --git a/sites/compass/templates/.gitkeep b/sites/compass/templates/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/sites/compass/templates/404.html b/sites/compass/templates/404.html new file mode 100644 index 00000000..00541455 --- /dev/null +++ b/sites/compass/templates/404.html @@ -0,0 +1,7 @@ +{% extends "base.html" %} +{% block content %} +
+

Page not found

+

We couldn't find that page. Go home →

+
+{% endblock %} diff --git a/sites/compass/templates/500.html b/sites/compass/templates/500.html new file mode 100644 index 00000000..65fc7489 --- /dev/null +++ b/sites/compass/templates/500.html @@ -0,0 +1,7 @@ +{% extends "base.html" %} +{% block content %} +
+

Something went wrong

+

Please try again. Go home →

+
+{% endblock %} diff --git a/sites/compass/templates/_account_nav.html b/sites/compass/templates/_account_nav.html new file mode 100644 index 00000000..e5d90b58 --- /dev/null +++ b/sites/compass/templates/_account_nav.html @@ -0,0 +1,11 @@ + diff --git a/sites/compass/templates/_card.html b/sites/compass/templates/_card.html new file mode 100644 index 00000000..d840287e --- /dev/null +++ b/sites/compass/templates/_card.html @@ -0,0 +1,4 @@ + +
{% if L.status not in ['for-sale','for-rent'] %}{{ L.status|title }}{% elif L.is_compass_exclusive %}Compass Exclusive{% elif L.is_new %}New{% elif L.is_pending %}Pending{% endif %}{{ L.address }}
+
{{ L.price_display() }}
{{ L.beds if L.beds is not none else '—' }} beds{{ '%g'|format(L.baths) if L.baths is not none else '—' }} baths{{ '{:,}'.format(L.sqft) if L.sqft else '—' }} sqft
{{ L.address }}, {{ L.city }}, {{ L.state }} {{ L.zip }}
+
diff --git a/sites/compass/templates/_filters.html b/sites/compass/templates/_filters.html new file mode 100644 index 00000000..e827233c --- /dev/null +++ b/sites/compass/templates/_filters.html @@ -0,0 +1,22 @@ +
+ {% if q is defined %}{% endif %} + {% if active_filters.get('city') %}{% endif %} + {% if status is not defined %}
{% endif %} +
+
+
+ + + +

Filters

+
+
+
+
+
+
Features{% for value,label in [('pool','Pool'),('garage','Garage'),('waterfront','Waterfront'),('doorman','Doorman'),('open_house','Open house'),('new','New listing'),('compass_exclusive','Compass exclusive')] %}{% endfor %}
+
+ +
+
+
diff --git a/sites/compass/templates/_footer.html b/sites/compass/templates/_footer.html new file mode 100644 index 00000000..6ec62b10 --- /dev/null +++ b/sites/compass/templates/_footer.html @@ -0,0 +1,39 @@ + diff --git a/sites/compass/templates/_home_card.html b/sites/compass/templates/_home_card.html new file mode 100644 index 00000000..d51d83fc --- /dev/null +++ b/sites/compass/templates/_home_card.html @@ -0,0 +1,9 @@ +{% set photos = L.get_gallery() or [L.hero_image] %} + diff --git a/sites/compass/templates/_navigation.html b/sites/compass/templates/_navigation.html new file mode 100644 index 00000000..f69aee1a --- /dev/null +++ b/sites/compass/templates/_navigation.html @@ -0,0 +1,5 @@ +{% macro groups() %} + + + +{% endmacro %} diff --git a/sites/compass/templates/about.html b/sites/compass/templates/about.html new file mode 100644 index 00000000..bad48a5d --- /dev/null +++ b/sites/compass/templates/about.html @@ -0,0 +1,2 @@ +{% extends "base.html" %} +{% block content %}

About this mirror

This is an offline WebHarbor benchmark environment inspired by Compass. Browse homes, compare property details, and manage your saved homes and tours.

Listings and photographs come from fixed public-source snapshots. The demo accounts, collections and tour requests are local benchmark state. No message or booking is sent to a real estate agent.

Explore homes for sale →

{% endblock %} diff --git a/sites/compass/templates/account.html b/sites/compass/templates/account.html new file mode 100644 index 00000000..2b64bbfd --- /dev/null +++ b/sites/compass/templates/account.html @@ -0,0 +1,42 @@ +{% extends "base.html" %} +{% block title %}My account | Compass{% endblock %} +{% block content %} +
+ {% include "_account_nav.html" %} +
+

Welcome back, {{ user.name.split()[0] }}

+ +

Your profile

+
+
Name
{{ user.name }}
+
Email
{{ user.email }}
+
Phone
{{ user.phone or '—' }}
+
Location
{{ user.city }}{% if user.city and user.state %}, {{ user.state }}{% endif %}
+
Move timeline
{{ user.move_timeline or '—' }}
+
+

Edit profile Change password Preferences

+ +

Recently saved homes

+ {% if saved %} +
+ {% for s in saved %}{% set L = s.listing %}{% include "_card.html" %}{% endfor %} +
+ {% else %}
No saved homes yet. Start browsing →
{% endif %} + +

Recent tours

+ {% if tours %} +
+ + + {% for t in tours %} + + + + + {% endfor %} + +
ListingDateTypeStatus
{{ t.listing.address }}{{ t.requested_date }} · {{ t.requested_time }}{{ t.tour_type }}{{ t.status }}
+ {% else %}
No tours scheduled.
{% endif %} +
+
+{% endblock %} diff --git a/sites/compass/templates/account_edit.html b/sites/compass/templates/account_edit.html new file mode 100644 index 00000000..d4d41c4a --- /dev/null +++ b/sites/compass/templates/account_edit.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} +{% block content %} +
+ {% include "_account_nav.html" %} +
+

Edit profile

+
+ +
+
+
+
+ + Cancel +
+
+
+{% endblock %} diff --git a/sites/compass/templates/agent_detail.html b/sites/compass/templates/agent_detail.html new file mode 100644 index 00000000..df869f73 --- /dev/null +++ b/sites/compass/templates/agent_detail.html @@ -0,0 +1,5 @@ +{% extends "base.html" %} +{% block title %}{{ agent.name }} | Compass{% endblock %} +{% block content %} +

{{ agent.name }}

{{ agent.title }} · {{ agent.city }}, {{ agent.state }}

{% if agent.phone %}
Phone
{{ agent.phone }}
{% endif %}{% if agent.email %}
Email
{{ agent.email }}
{% endif %}

Listings

{% if listings %}
{% for L in listings %}{% include "_card.html" %}{% endfor %}
{% else %}

No listings are available.

{% endif %}
+{% endblock %} diff --git a/sites/compass/templates/agents.html b/sites/compass/templates/agents.html new file mode 100644 index 00000000..7e35a2f7 --- /dev/null +++ b/sites/compass/templates/agents.html @@ -0,0 +1,5 @@ +{% extends "base.html" %} +{% block title %}Find an Agent | Compass{% endblock %} +{% block content %} +

Find an Agent

Explore the listing agents represented in this collection of homes.

Reset
+{% endblock %} diff --git a/sites/compass/templates/base.html b/sites/compass/templates/base.html new file mode 100644 index 00000000..94a9fdfd --- /dev/null +++ b/sites/compass/templates/base.html @@ -0,0 +1,55 @@ + + + + + + {% block title %}Compass — Find Real Estate, Homes for Sale, Apartments & Houses{% endblock %} + + + {% if request.endpoint == 'index' %}{% endif %} + {% if request.endpoint == 'sell' %}{% endif %} + {% if request.endpoint == 'concierge' %}{% endif %} + {% if request.endpoint == 'neighborhoods' %}{% endif %} + + + + +
+
+ + + {% if request.endpoint not in ['index', 'sell', 'concierge', 'neighborhoods'] %} + + {% endif %} + +
+ {% if current_user.is_authenticated %} + Saved{{ current_user.name.split()[0] }} +
+ {% else %}RegisterSign In{% endif %} +
+
+
+ +
+ +
+{% with messages = get_flashed_messages(with_categories=true) %}{% if messages %}
{% for cat,msg in messages %}
{{ msg }}
{% endfor %}
{% endif %}{% endwith %} +
{% block content %}{% endblock %}
+{% include "_footer.html" %} + + diff --git a/sites/compass/templates/change_password.html b/sites/compass/templates/change_password.html new file mode 100644 index 00000000..615435fd --- /dev/null +++ b/sites/compass/templates/change_password.html @@ -0,0 +1,17 @@ +{% extends "base.html" %} +{% block content %} +
+ {% include "_account_nav.html" %} +
+

Change password

+
+ + {% if error %}
{{ error }}
{% endif %} +
+
+
+ +
+
+
+{% endblock %} diff --git a/sites/compass/templates/city.html b/sites/compass/templates/city.html new file mode 100644 index 00000000..7854863c --- /dev/null +++ b/sites/compass/templates/city.html @@ -0,0 +1,22 @@ +{% extends "base.html" %} +{% block title %}{{ city_name }}, {{ state }} {{ status_label }} | Compass{% endblock %} +{% block content %} +
+

{{ city_name }}, {{ state }} Homes {{ status_label }}

+ {% if city_row %}

{{ city_row.blurb }}

{% endif %} + + {% include "_filters.html" %} + +
{{ listings|length }} {{ status_label|lower }} listings in {{ city_name }}, {{ state }}.
+ + {% if listings %} +
+ {% for L in listings %} + {% include "_card.html" %} + {% endfor %} +
+ {% else %} +

No matching homes

Try widening your filters.

+ {% endif %} +
+{% endblock %} diff --git a/sites/compass/templates/collection_detail.html b/sites/compass/templates/collection_detail.html new file mode 100644 index 00000000..6dd5abad --- /dev/null +++ b/sites/compass/templates/collection_detail.html @@ -0,0 +1,39 @@ +{% extends "base.html" %} +{% block content %} +
+ {% include "_account_nav.html" %} +
+
+
+

{{ collection.name }}

+

{{ collection.description }}

+

Share token: {{ collection.share_token }} · + Public link +

+
+
+ + +
+
+ + {% if listings %} +
+ {% for L in listings %} +
+ {% include "_card.html" %} +
+ + +
+
+ {% endfor %} +
+ {% else %} +
No homes in this collection yet. Visit a listing and add it to "{{ collection.name }}".
+ {% endif %} + +

Add homes to your collection

Open a home's details and choose this collection from the property actions.

Find homes to add
+
+
+{% endblock %} diff --git a/sites/compass/templates/collection_new.html b/sites/compass/templates/collection_new.html new file mode 100644 index 00000000..029c6f5d --- /dev/null +++ b/sites/compass/templates/collection_new.html @@ -0,0 +1,16 @@ +{% extends "base.html" %} +{% block content %} +
+ {% include "_account_nav.html" %} +
+

New collection

+
+ +
+
+ + Cancel +
+
+
+{% endblock %} diff --git a/sites/compass/templates/collection_share.html b/sites/compass/templates/collection_share.html new file mode 100644 index 00000000..17c79b5c --- /dev/null +++ b/sites/compass/templates/collection_share.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} +{% block content %} +
+

{{ collection.name }}

+

A shared collection on Compass.

+ {% if listings %} +
+ {% for L in listings %}{% include "_card.html" %}{% endfor %} +
+ {% else %}
This collection is empty.
{% endif %} +
+{% endblock %} diff --git a/sites/compass/templates/collections.html b/sites/compass/templates/collections.html new file mode 100644 index 00000000..431294a8 --- /dev/null +++ b/sites/compass/templates/collections.html @@ -0,0 +1,29 @@ +{% extends "base.html" %} +{% block content %} +
+ {% include "_account_nav.html" %} +
+
+

Collections

+ New collection +
+ {% if collections %} +
+ + + {% for c in collections %} + + + + + + + {% endfor %} + +
NameHomesShare linkCreated
{{ c.name }}{{ c.get_listing_ids()|length }}{{ c.share_token }}{{ c.created_at.strftime('%b %d, %Y') }}
+ {% else %} +

No collections yet

Curate homes into a collection and share with your partner or agent.

+ {% endif %} +
+
+{% endblock %} diff --git a/sites/compass/templates/concierge.html b/sites/compass/templates/concierge.html new file mode 100644 index 00000000..97190c7b --- /dev/null +++ b/sites/compass/templates/concierge.html @@ -0,0 +1,414 @@ +{% extends "base.html" %} +{% block title %}Compass Concierge{% endblock %} +{% block content %} +
+ +
+
+ +

Get fronted for the cost of home improvement services with zero due until closing.*

Compass Concierge is the hassle-free way to sell your home faster and for a higher price with services like staging, flooring, painting, and more.

+
+
+ +
+
+
+
+

Learn how Concierge can help sell your home faster and for a higher price.

+

Find an agent in this local site, or visit Compass to ask about the Concierge program.

+ +

Concierge inquiries and applications are handled on the Compass website. No contact details are collected here.

+
+
+
+
+

Start marketing your home and building buzz before its public debut

+
+
+
+
Start as Private Exclusives
+
+
Before your home is market-ready, listing as a Compass Private Exclusive lets you generate early buyer demand and gain valuable pricing insights without accruing days on market or risking public price drops.
+
+
+
Launch as Coming Soon
+
+
As home improvements near completion, launch to the public as a Compass Coming Soon on Compass.com to broaden your exposure and continue building momentum while still not accruing days on market or showing price drop history.
+
+
+
Go Live on all Platforms
+
+
Once your Concierge project is finished, bring your home to the MLS and 3rd party websites with the benefits of a refined pricing and positioning strategy – ensuring the best possible sale outcome.
+
+
+
+
+
+
+
+

Smart

+

Your Compass agent can help you determine which services can deliver the greatest return on your investment.

+
+
+

Fast

+

The entire process is designed for speed, so that work can begin — and your home can sell — as quickly as possible.

+
+
+

Transparent

+

Zero due until closing.* +

+
+
+

Easy

+

Your Compass agent will be by your side throughout the process.

+
+
+
+
+
+
+

Success stories

+
+
+
+ +
+
+

"The thing that was the most daunting for me about selling the home was how would I get it to market, based on being retired and have limited income. And that's where the Compass Concierge service was absolutely remarkable."

+ +
+
+

12

+

days on market

+
+
+

47%

+

over ask

+
+
+
Individual results may vary. Testimonials are not intended to guarantee the same or similar results.
+
+
+
+
+ + + + + + + +
+
+ + +Success story 1 of 8
+
+
+
+
+
+

Covered services

+
    +
  • Floor repair
  • +
  • Carpet cleaning & replacement
  • +
  • Staging
  • +
  • Deep-cleaning
  • +
  • Decluttering
  • +
  • Cosmetic renovations
  • +
  • Landscaping
  • +
  • Interior & exterior painting
  • +
  • HVAC
  • +
  • Roofing repair
  • +
  • Moving & storage
  • +
  • Pest control
  • +
  • Custom closet work
  • +
  • Fencing
  • +
  • Electrical work
  • +
  • Seller-side inspections & evaluations
  • +
  • Kitchen improvements
  • +
  • Bathroom improvements
  • +
  • Pool & tennis court services
  • +
  • Water heating & plumbing repair
  • +
  • Sewer lateral inspections & remediation
  • +
  • More than 100 other home improvement services
  • +
+
+
+
+
+
+
147%
+

The cost recovery from refinishing hardwood floors

+
+
+
$400
+

The potential return of every $100 you invest in staging your home

+
+
+
48%
+

The percentage of sellers' agents who say staging decreases a property's time on market

+
+
+
Source (from left to right): National Association of Realtors, 2022, 2019, 2024
+
+
+
+
+Compass Concierge home improvement example +
+
+

How it works

+
  1. Decide which services can increase your home’s value the most and set an estimated budget for the work.

  2. When you’re ready to start, your Compass agent will be by your side as you engage contractors and vendors. 

  3. Once the transformation is complete, your home will go on the market.  

  4. You’ll pay for the services and any applicable fees* when one of the following happens – your home sells, you terminate your listing agreement with Compass, or 12 months pass from your Concierge start date. Subject to program terms that may vary by market.

+
+
+
+
+
+
+

Curious how Compass Concierge can transform your sale?

+

See what a difference this program makes for yourself right here.

+
+ +
+
+
+

Your questions, answered

+
+
+
+

Are there any services not covered by the program?

+

We’ve developed Concierge to be used with a wide range of vendors for your convenience.

+
+
+

When do I have to pay for the services?

+

Zero due until close. Depending on your state of residence, fees or interest may apply.

+
+
+

How can I participate in the program?

+

Easy! Call your Compass agent today to find out how to participate. Not yet working with one? Find an agent or contact Compass using the links above.

+
+
+

Rules and Exclusions apply. Compass offers no guarantee or warranty of results. Subject to additional terms and conditions. See compass.com/concierge for more information. Subject to the terms of your Compass Concierge Loan Agreement, funds provided by Compass Concierge are to be repaid once one of the following happens (whichever occurs first): your home sells, you terminate your listing agreement with Compass, Compass terminates your listing agreement, 12 months pass from your Concierge start date or Notable otherwise suspends your Compass Concierge loan for any reasons stated in the Compass Concierge Loan Agreement. Concierge Capital loans are provided by Notable Finance, LLC, NMLS# 1824748 and are made or arranged pursuant to a California Finance Lenders Law license. Loan eligibility is not guaranteed and all loans are subject to credit approval and underwriting by Notable. Compass is not a lender and is not providing loans as part of the Compass Concierge program. *Depending on your state of residence, fees or interest may apply.

Eligibility. The Concierge Bundle Credit is available solely to sellers who list a home with Compass, utilize the Concierge program, and choose to use Chartwell for escrow services in connection with that residential home sale and Concierge project. Sellers meeting all applicable requirements are entitled to the Concierge Bundle Credit outlined herein. + +Affiliated Business Arrangement. As is set forth in Compass’ separate Affiliated Business Arrangement Disclosure (“ABAD”), Compass has business relationships with Concierge, Chartwell, and certain other providers (together, the “Affiliated Companies”). Each of the Affiliated Companies is indirectly owned, in whole or in part, by Compass, Inc. Any referral by one of the Affiliated Companies to another may provide the referring company, its affiliates, and/or their employees with a financial or other benefit. You are NOT required to use any Affiliated Company to do business with Compass. See ABAD for further detail, including estimated charges. + +No Required Use. While Chartwell is available as a closing company option for you, and Concierge Bundle Credit is available only if you use Compass, Concierge, and Chartwell, you are not required to use Chartwell or the Concierge program to obtain real estate brokerage services from Compass.

+
+
+ +
+{% endblock %} diff --git a/sites/compass/templates/help.html b/sites/compass/templates/help.html new file mode 100644 index 00000000..122c8cf8 --- /dev/null +++ b/sites/compass/templates/help.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} +{% block content %} +
+

Help & support

+

Frequently asked questions about using Compass.

+ +

How do I save a home?

+

Open the listing and click Save home. You'll need a Compass account first.

+ +

How do I schedule a tour?

+

From any listing, click Request a tour, pick a date and time, then submit your request. Requests are saved locally and can be reviewed under Tours; no agent is contacted.

+ +

What is a Compass Collection?

+

Collections let you organize, compare, and share homes you're interested in — using a share link. Anyone with that link can view the collection in this environment.

+ +

Are listings live?

+

Listings in this mirror are point-in-time snapshots and do not reflect current market availability.

+
+{% endblock %} diff --git a/sites/compass/templates/homes_for_sale.html b/sites/compass/templates/homes_for_sale.html new file mode 100644 index 00000000..90b49685 --- /dev/null +++ b/sites/compass/templates/homes_for_sale.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} +{% block title %}Homes {{ status_label }} | Compass{% endblock %} +{% block content %} +
+

{{ status_label }} — Browse by city

+

Pick a market to see available homes.

+
+ {% for c in cities %} + +
+
{{ c.name }}, {{ c.state }}
+
+
{{ c.blurb[:90] }}…
+
+ {% endfor %} +
+
+{% endblock %} diff --git a/sites/compass/templates/index.html b/sites/compass/templates/index.html new file mode 100644 index 00000000..f7e6767f --- /dev/null +++ b/sites/compass/templates/index.html @@ -0,0 +1,83 @@ +{% extends "base.html" %} +{% block content %} +
+ +
+

Find your place

+ +
+
+
+{% if featured %} +
+

Compass Exclusives

Be the first to browse exclusive listings before they hit the market.

+

Explore a selection from our listing snapshot. Visit each property for its recorded status and details.

+
{% for L in featured[:5] %}{% include "_home_card.html" %}{% if loop.index == 2 %}
Compass Private Exclusives

Discover homes marketed privately with Compass.

Explore the private listings available in this snapshot, or connect with an agent.See Private Exclusives
{% endif %}{% endfor %}
+ +
+{% endif %} +
+

Know your buying power with a preapproval
and custom rate in minutes

+ See What I Qualify For + Rocket Mortgage¹ +
+
+
Concierge before and after example
Before home improvementsBefore Concierge
After home improvementsAfter Concierge
+

Compass Concierge

Concierge helps you sell your home faster and for more money by covering the cost of home improvement services — zero due until closing.*

*Depending on your state of residence, fees or interest may apply.Learn More
+
+

Find the Neighborhood For You

The neighborhoods best suited to your lifestyle, and the agents who know them best.

+
{% for slug,name in [('nyc','New York City'),('hamptons','The Hamptons'),('miami','South Florida'),('boston','Greater Boston'),('la','Southern California'),('dc','DC, Maryland, & Virginia')] %}{{ name }}{% endfor %}
+ +
+ +
+{% endblock %} diff --git a/sites/compass/templates/inquiries.html b/sites/compass/templates/inquiries.html new file mode 100644 index 00000000..5d20e03f --- /dev/null +++ b/sites/compass/templates/inquiries.html @@ -0,0 +1,23 @@ +{% extends "base.html" %} +{% block content %} +
+ {% include "_account_nav.html" %} +
+

Inquiries

+ {% if inquiries %} +
+ + + {% for i in inquiries %} + + + + {% endfor %} + +
ListingSubjectSent
{{ i.listing.address }}{{ i.subject }}{{ i.sent_at.strftime('%b %d, %Y') }}
+ {% else %} +

No inquiries sent

Contact an agent from a listing page.

+ {% endif %} +
+
+{% endblock %} diff --git a/sites/compass/templates/inquiry_send.html b/sites/compass/templates/inquiry_send.html new file mode 100644 index 00000000..1b31a55d --- /dev/null +++ b/sites/compass/templates/inquiry_send.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} +{% block content %} +
+

Contact agent

+

About: {{ listing.address }}{% if listing.agent %} · Agent {{ listing.agent.name }}{% endif %}

+
+ + {% if not current_user.is_authenticated %} +
+
+ {% endif %} +
+
+
+ + Cancel +
+
+{% endblock %} diff --git a/sites/compass/templates/listing_collection.html b/sites/compass/templates/listing_collection.html new file mode 100644 index 00000000..04ca5869 --- /dev/null +++ b/sites/compass/templates/listing_collection.html @@ -0,0 +1,3 @@ +{% extends "base.html" %} +{% block title %}{{ title }} | Compass{% endblock %} +{% block content %}

{{ title }}

{{ intro }} Open a property for its recorded status and source information.

{% if listings %}
{% for L in listings %}{% include "_card.html" %}{% endfor %}
{% else %}

No homes in this snapshot

Try another market or browse the full catalog.

Browse Homes for Sale
{% endif %}
{% endblock %} diff --git a/sites/compass/templates/listing_detail.html b/sites/compass/templates/listing_detail.html new file mode 100644 index 00000000..6a661ef6 --- /dev/null +++ b/sites/compass/templates/listing_detail.html @@ -0,0 +1,58 @@ +{% extends "base.html" %} +{% block title %}{{ listing.address }} | Compass{% endblock %} +{% block content %} +{% set gallery = listing.get_gallery() %} +
+
‹ Search
{% if current_user.is_authenticated %}
{% else %}☆ Save{% endif %}
+ +
+
+
{{ listing.price_display() }}
{{ listing.beds if listing.beds is not none else '—' }} beds{{ '%g'|format(listing.baths) if listing.baths is not none else '—' }} baths{{ '{:,}'.format(listing.sqft) if listing.sqft else '—' }} sqft{% if listing.price_per_sqft() %}${{ '{:,}'.format(listing.price_per_sqft()) }}/sqft{% endif %}

{{ listing.address }}, {{ listing.city }}, {{ listing.state }} {{ listing.zip }}

+

Description

{% if listing.description %}

{{ listing.description }}

{% else %}

No description is available in this snapshot.

{% endif %}{% if listing.agent %}

Listed by {{ listing.agent.name }}{% if listing.agent.phone %} · {{ listing.agent.phone }}{% endif %}

{% endif %}
+

Property Details for {{ listing.address }}

+ {% set facts=listing.get_property_facts() %} + {% if facts %}{% for key,value in facts.items() %}
{{ key }}
{{ value }}
{% endfor %}{% else %}
Status
{{ listing.status|replace('-',' ')|title }}
Property details
Not provided in the original snapshot
{% endif %} + {% for key,value in listing.get_regional_facts().items() %}
{{ key }}
{{ value }}
{% endfor %} +
+ {% if listing.get_features() %}

Amenities

    {% for feature in listing.get_features() %}
  • {{ feature }}
  • {% endfor %}
{% endif %} + {% if listing.is_open_house %}

Open house

{{ listing.open_house_date }} · {{ listing.open_house_time }}

{% endif %} +

{% if listing.source_retrieved_at %}Listing snapshot checked {{ listing.source_retrieved_at[:10] }}.{% else %}Archived listing. Only facts supplied by the original source are shown.{% endif %} Availability and pricing may have changed.

+
+ +
+

Similar Homes

{% if similar %}
{% for L in similar %}{% include "_card.html" %}{% endfor %}
{% else %}

No similar listings are available.

{% endif %}
+
+{% if gallery %}
{{ listing.address }}
{{ listing.address }} — photo 1
{% endif %} + +{% endblock %} diff --git a/sites/compass/templates/login.html b/sites/compass/templates/login.html new file mode 100644 index 00000000..0e702324 --- /dev/null +++ b/sites/compass/templates/login.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} +{% block content %} +
+

Log in

+ {% if error %}
{{ error }}
{% endif %} + +
+
+
+ +

New to Compass? Join

+
+{% endblock %} diff --git a/sites/compass/templates/luxury.html b/sites/compass/templates/luxury.html new file mode 100644 index 00000000..55a56a32 --- /dev/null +++ b/sites/compass/templates/luxury.html @@ -0,0 +1,11 @@ +{% extends "base.html" %} +{% block title %}Compass Luxury{% endblock %} +{% block content %} +
+

Compass Luxury

+

Exceptional homes from the world's most desirable markets.

+
+ {% for L in listings %}{% include "_card.html" %}{% endfor %} +
+
+{% endblock %} diff --git a/sites/compass/templates/neighborhood_region.html b/sites/compass/templates/neighborhood_region.html new file mode 100644 index 00000000..e40dece1 --- /dev/null +++ b/sites/compass/templates/neighborhood_region.html @@ -0,0 +1,29 @@ +{% extends "base.html" %} +{% block title %}{{ guide.name }} Neighborhood Guides | Compass{% endblock %} +{% block content %} +
+
+
+ +

{{ guide.name }}

+
+
+
+

{{ guide.headline }}

{% if guide.description %}

{{ guide.description }}

{% endif %}
+
+ + {% if guide.nearby %} +
+

Explore Nearby Homes

+ +
+ {% endif %} +

Full neighborhood articles and nearby home searches open on Compass ↗.

+
+{% endblock %} diff --git a/sites/compass/templates/neighborhoods.html b/sites/compass/templates/neighborhoods.html new file mode 100644 index 00000000..baf0d241 --- /dev/null +++ b/sites/compass/templates/neighborhoods.html @@ -0,0 +1,20 @@ +{% extends "base.html" %} +{% block title %}Neighborhood Guides | Compass{% endblock %} +{% block content %} +
+

Neighborhood Guides - Compass

+

Explore the country’s most dynamic communities.

+ + +
+{% endblock %} diff --git a/sites/compass/templates/new_listings.html b/sites/compass/templates/new_listings.html new file mode 100644 index 00000000..ab0ee912 --- /dev/null +++ b/sites/compass/templates/new_listings.html @@ -0,0 +1,11 @@ +{% extends "base.html" %} +{% block title %}New on Compass{% endblock %} +{% block content %} +
+

New Listings

+

Homes listed in the past 7 days.

+
+ {% for L in listings %}{% include "_card.html" %}{% endfor %} +
+
+{% endblock %} diff --git a/sites/compass/templates/open_houses.html b/sites/compass/templates/open_houses.html new file mode 100644 index 00000000..c4a8120b --- /dev/null +++ b/sites/compass/templates/open_houses.html @@ -0,0 +1,40 @@ +{% extends "base.html" %} +{% block title %}Open Houses | Compass{% endblock %} +{% block content %} +
+

Open Houses

+

Open house schedules recorded in this snapshot.

+ +
+
+ + +
+ +
+ +
{{ listings|length }} open houses{% if filter_city %} in {{ filter_city }}{% endif %}.
+ +
+ + + {% for L in listings %} + + + + + + + + + + {% endfor %} + +
DateTimeAddressCityBedsBathsPrice
{{ L.open_house_date }}{{ L.open_house_time }}{{ L.address }}{{ L.city }}, {{ L.state }}{{ L.beds if L.beds is not none else '—' }}{{ '%g'|format(L.baths) if L.baths is not none else '—' }}{{ L.price_display() }}
+
+{% endblock %} diff --git a/sites/compass/templates/preferences.html b/sites/compass/templates/preferences.html new file mode 100644 index 00000000..7bfe31f8 --- /dev/null +++ b/sites/compass/templates/preferences.html @@ -0,0 +1,31 @@ +{% extends "base.html" %} +{% block content %} +
+ {% include "_account_nav.html" %} +
+

Search preferences

+
+ +
+
+
+
Property types of interest + {% set my = user.get_property_types() %} + {% for t in ['Single Family','Condo','Co-op','Townhouse','Multi-Family','Apartment','Land'] %} + + {% endfor %} +
+
+ +
+
+
+ +
+
+
+{% endblock %} diff --git a/sites/compass/templates/register.html b/sites/compass/templates/register.html new file mode 100644 index 00000000..94e5a92e --- /dev/null +++ b/sites/compass/templates/register.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} +{% block content %} +
+

Join Compass

+

Save homes, schedule tours, and get personalized recommendations.

+ {% if error %}
{{ error }}
{% endif %} + +
+
+
+
+ +

Already have an account? Log in

+
+{% endblock %} diff --git a/sites/compass/templates/saved.html b/sites/compass/templates/saved.html new file mode 100644 index 00000000..fe450d0e --- /dev/null +++ b/sites/compass/templates/saved.html @@ -0,0 +1,28 @@ +{% extends "base.html" %} +{% block content %} +
+ {% include "_account_nav.html" %} +
+

Saved homes

+ {% if saved %} +
+ {% for s in saved %}{% set L = s.listing %} +
+ {% include "_card.html" %} +
+ + +
+
+ {% endfor %} +
+ {% else %} +
+

You haven't saved any homes yet

+

Save listings to compare them side-by-side.

+ Start browsing +
+ {% endif %} +
+
+{% endblock %} diff --git a/sites/compass/templates/saved_searches.html b/sites/compass/templates/saved_searches.html new file mode 100644 index 00000000..aa5250ff --- /dev/null +++ b/sites/compass/templates/saved_searches.html @@ -0,0 +1,50 @@ +{% extends "base.html" %} +{% block content %} +
+ {% include "_account_nav.html" %} +
+

Saved searches

+ {% if searches %} +
+ + + {% for s in searches %}{% set c = s.get_criteria() %} + + + + + + + {% endfor %} + +
NameCriteriaNotify
{{ s.name }}{% if c.q %}"{{ c.q }}" · {% endif %}{% if c.city %}{{ c.city }} · {% endif %}{% if c.beds %}{{ c.beds }}+ bd · {% endif %}{% if c.price_max %}≤ ${{ c.price_max }} · {% endif %}{% if c.property_type %}{{ c.property_type }}{% endif %}{{ 'Yes' if s.notify else 'No' }} +
+ + +
+
+ {% else %} +

No saved searches

Save a search from the results page.

+ {% endif %} + +

Save a new search

+
+ +
+
+
+
+
+
+ +
+ +
+
+
+{% endblock %} diff --git a/sites/compass/templates/search.html b/sites/compass/templates/search.html new file mode 100644 index 00000000..34ed6ead --- /dev/null +++ b/sites/compass/templates/search.html @@ -0,0 +1,30 @@ +{% extends "base.html" %} +{% block title %}Search{% if q %}: {{ q }}{% endif %} | Compass{% endblock %} +{% block content %} +
+

{% if q %}Results for "{{ q }}"{% else %}All listings{% endif %}

+ + {% include "_filters.html" %} + +
{{ result_count }} result{{ '' if result_count == 1 else 's' }}.
+ + {% if listings %} +
+ {% for L in listings %} + {% include "_card.html" %} + {% endfor %} +
+ {% else %} +

No results

Try a different keyword or relax your filters.

+ {% endif %} + + {% if current_user.is_authenticated %} +
+ + {% for key,value in active_filters.items() %}{% endfor %} + + +
+ {% endif %} +
+{% endblock %} diff --git a/sites/compass/templates/sell.html b/sites/compass/templates/sell.html new file mode 100644 index 00000000..74ee0931 --- /dev/null +++ b/sites/compass/templates/sell.html @@ -0,0 +1,1017 @@ +{% extends "base.html" %} +{% block title %}Sell Your Home | Compass{% endblock %} +{% block content %} +
+
+
+
+
+

+ Your Home. +
+ Your Choice. +

+

+ Protect and maximize the value +
+ of your home with the Compass +
+ 3-Phased Marketing Strategy. +

+
+ +
+
+
+
+
+ Compass 3-Phased Marketing Strategy +
+
+ + $5,875,000 + +
+
+ + 6 + + + Bed + +
+
+ + 7.5 + + + Bath + +
+
+
+
+
+
+
+
+
+
+
+
+

+ Sell With Us +

+

+ + Stay in control of how, when, + + + and where your home is marketed + + + with a strategy tailored to fit your needs. + +

+
+
+
+ + {% if seller_errors %} + + {% endif %} +{% if seller_confirmation %} +
+ + Saved in this local environment + +

+ {{ seller_confirmation.name }} · {{ seller_confirmation.email }} · {{ seller_confirmation.phone }} · {{ seller_confirmation.zip_code }} +

+

+ Reference: {{ seller_confirmation.reference }} +

+
+ {% endif %} +
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +
+
+

+ Your request is saved in this local environment only. No email, call, or text is sent to Compass. +

+
+
+
+
+
+

+ The Compass Advantage +

+

+ The #1 real estate brokerage in the U.S. working for you +

+

+ RealTrends Closed Sales Volume 2024 +

+
+
+
+ Powered by Intelligent Tech + Powered by Intelligent Tech + +
+
+ Driven by Strategy + Driven by Strategy + +
+
+ Backed by a 340K+ Agent Network + Backed by a 340K+ Agent Network + +
+
+
+ + +
+
+
+ + +
+
+
+
+

+ More Choices, More Flexibility, More Value +

+

+ WITH THE COMPASS 3-PHASED MARKETING STRATEGY +

+

+ Our structured launch strategy is designed to test pricing, build maximum exposure, and create a strong market debut. This approach helps protect your home from prolonged time on market, price reductions, and lost value. +

+
+
+
+
+
+
+
+
+

+ Phase + 1 +

+

+ Compass Private Exclusive +

+
+
+ Marketing Strategy - Coming Soon Listing +
+ + $5,600,000 + + + 6 + Beds | + 7.5 + Baths + +
+
+
+
+ + Validate +
+ Pricing +
+
+

+ Validate your price with 340,000 agents across our network of brokerages, gaining early exposure without days on market, price drops, or a rushed timeline. +

+
+
+
+
+
+
+
+
+

+ Phase + 2 +

+

+ Compass Coming Soon +

+
+
+ private-exclusives-marketing-srategy-phase-3 +
+ + $5,750,000 + + + 6 + Beds | + 7.5 + Baths + +
+
+
+
+ + Expand Reach +
+ With No Risks +
+
+

+ List publicly on + + Compass.com + +
+ and + + Redfin.com + + , +
+ expanding your home’s reach +
+ to 60 million buyers +
+ while protecting +
+ its value. +

+
+
+
+
+
+
+
+
+

+ Phase + 3 +

+

+ Public Websites +

+
+
+ coming-soon-marketing-srategy-phase-3 +
+ + $5,875,000 + + + 6 + Beds | + 7.5 + Baths + +
+
+
+
+ + Sell +
+ Better +
+
+

+ Backed by pricing insights and buyer demand, your home enters the broader market positioned to achieve the best possible price and terms. +

+
+
+
+
+
+
+
+
+
+

+ + You Decide How + + + Your Home Is Sold + +

+

+ At Compass, we believe selling your home should feel as personal and considered as the home itself. Our 3-Phased Marketing Strategy offers distinct pathways that are crafted to align with your goals, your timing, and your vision. +

+
+
+
+

+ To help you make the most informed decision, we’ve outlined all available options in our disclosure form: +

+ + +

+ 3-Phased Marketing Strategy +

+ + +

+ Disclosure Form + + + + + + +

+
+
+
+
+
+
+
+

+ + Benefits of 3-Phased Marketing + +

+

+ Just as Hollywood releases trailers to build anticipation for a movie premiere, you can launch your listing multiple times to test your price and build demand for a stronger outcome. +

+
+
+
+
+

+ Validate Pricing +

+

+ LAUNCH AS A COMPASS PRIVATE EXCLUSIVE +

+
+

+ Unlike traditional brokerages that immediately launch your listing publicly, risking days on market and price drop history that damage its value, Compass first shares your home with 340,000 agents across our network of brokerages and their serious buyers. This builds exposure, provides pricing insights, and lets you make adjustments before going public. +

+ +
+ Validate Pricing +
+
+
+
+

+ Expand Reach With No Risks +

+

+ LAUNCH AS A COMPASS COMING SOON +

+
+

+ Publicly launch your home on + + Compass.com + + and + + Redfin.com + + , expanding your reach to 60 million buyers. Appear at the top of search results to build early interest while staying protected from public days on market and price drop history. Receive engagement insights on your listing, and know all serious buyer inquiries go directly to your Compass agent. +
+
+ You may opt out of syndication to + + Redfin.com + + at any time. +

+ +
+ Generate Early Demand +
+
+
+
+

+ Sell Better +

+

+ LAUNCH ON PUBLIC WEBSITES +

+
+

+ Backed by a validated pricing strategy and early buyer demand, your home is positioned to achieve the best possible price and terms when it goes live on other websites. +

+ +
+ Generate Early Demand +
+
+
+
+
+
+

+ + Phased Marketing + + + Delivers Results + +

+

+ Our data shows that Compass-sold homes that are marketed as Private Exclusives or Coming Soons are associated with stronger outcomes. +
+ Data reflects a 12 month period ending March 21, 2026. +

+
+
+
+ 4.6% +
+
+ Higher +
+ Closing Price +
+
+
+
+ 34% +
+
+ Faster +
+ to Contract +
+
+
+
+ 29% +
+
+ Less Likely to +
+ Drop in Price +
+
+
+ + Sell on Your Terms + +
+
+
+
+

+ How Your Home Appears +
+ on Real Estate Websites +

+

+ Other platforms hurt homeowners by displaying +
+ negative insights that can devalue your home. +
+ At Compass, we put homeowners first. +

+
+
+
+
+
+
+
+
+ 1 +
+
+
+ Control Your Pricing +
+

+ Automated home valuations on third-party sites use outdated algorithms and incomplete data, often mispricing homes and shaping buyer expectations before you even list. +

+
+
+
+
+
+
+
+ Control Your Pricing +
+
+
+ 1 +
+
+
+
+
+
+
+
+
+
+
+
+ 2 +
+
+
+ Eliminate Days on Market History Risk +
+

+ The longer your home sits on the market, the more it can be seen as undesirable or overpriced, potentially reducing buyer interest and lowering the final sale price. +

+
+
+
+
+
+
+
+ Eliminate Days on Market History Risk +
+
+
+ 2 +
+
+
+
+
+
+
+
+
+
+
+
+ 3 +
+
+
+ Eliminate Price Drop History Risk +
+

+ Dropping your home’s price can cause buyers to second-guess its value and invite less competitive offers. +

+
+
+
+
+
+
+
+ Eliminate Price Drop History Risk +
+
+
+ 3 +
+
+
+
+
+
+
+
+
+
+
+
+ 4 +
+
+
+ Avoid Missed Buyer Opportunities +
+

+ Some third-party sites block buyers’ ability to reach out to the listing agent directly. These leads are sold to other agents who may be unfamiliar with your home and whose interests may not align with your selling goals. +

+
+
+
+
+
+
+
+ Avoid Missed Buyer Opportunities +
+
+
+ 4 +
+
+
+
+
+
+
+
+
+
+
+
+ 5 +
+
+
+ Automated Valuation +
+

+ An algorithm doesn’t know your home or your goals, which can lead to undervaluation. Rather than being carefully positioned, it’s treated like inventory, often priced with a discount. +

+
+
+
+
+
+
+
+ Automated Valuation +
+
+
+ 5 +
+
+
+
+
+
+
+
+
+
+
+
+ 6 +
+
+
+ No Negative Insights Added to Your Listing +
+

+ Third-party platforms can add their own assessments and data to a listing, which may not accurately reflect the true value or desirability of your property. +

+
+
+
+
+
+
+
+ No Negative Insights Added to Your Listing +
+
+
+ 6 +
+
+
+
+
+
+
+
+
+
+ + +
+
+
+ + +
+
+
+

+ + Three Strategic Launches, +
+ One Exceptional Sale +
+

+ +
+
+
+
+

+ Sell on Your Terms +

+

+ The Compass 3-Phased Marketing Strategy provides convenience, flexibility, and control over your timeline. +

+
+
+
+
+

+ + Home Not + + + Market-Ready? + +

+

+ Renovations and staging take time and can delay your ability to list. +

+
+
+

+ OUR SOLUTION +

+

+ Listing first as a Compass Private Exclusive buys you time. Begin testing your price with a select audience and attract buyer interest while your home updates are still underway. +

+
+
+ Home Not Market-Ready? +
+
+
+
+

+ Don’t Want A Public +
+ Open House? +

+

+ Hosting traditional open houses often means giving up your time, comfort, and privacy. +

+
+
+

+ OUR SOLUTION +

+

+ Preview your home to serious buyers and build demand by listing as a Coming Soon — so you can schedule private showings on your own terms, without the stress of open house foot traffic. +

+
+
+ Don’t Want A Public Open House? +
+
+
+
+
+
+

+ + Your Home Deserves More Than +
+ A One-Size-Fits-All Public Launch +
+

+ +
+
+ +
+
+

+ Findings reflect a combination of descriptive statistics and a causal analysis of the impact of Compass pre-marketing strategies on residential property close prices. The faster time-to-contract (34%) and reduced likelihood of a price drop (29%) findings are descriptive statistics comparing the average of Compass residential listings that went active on a MLS and were pre-marketed as a Compass Private Exclusive and/or Compass Coming Soon vs. the average of Compass residential listings that went active on a MLS but were not pre-marketed as a Compass Private Exclusive and/or Compass Coming Soon; all such values reflect a 12-month trailing moving average for the period ending March 31, 2026. Source: Compass data. The close price finding (4.6%) reflects a causal analysis, based on a hedonic regression that examined 70,809 closed Compass residential sell-side transactions listed between April 1, 2025 and March 31, 2026, across markets where Compass brokerage operates and for all residential property types (single family, co-op, condo, townhouse, and condop). Pre-marketed listings achieved a statistically significant average 4.6% increase in close price compared to listings that went directly to the MLS, after controlling for confounding factors (95% Confidence Interval: 4.2%–4.9%). This finding may vary depending on market conditions and seasonality. The results provided are based on current data and methodologies, and should not be interpreted as definitive predictions of future outcomes. Compass utilizes a Compass Private Exclusive listing and/or Compass Coming Soon listing at the direction of the seller. Compass makes no warranty, representation or guarantee as to the accuracy of these results or any actual outcome of using the Three Phase Marketing Program. Results may vary. +

+
+
+
+{% endblock %} diff --git a/sites/compass/templates/tour_request.html b/sites/compass/templates/tour_request.html new file mode 100644 index 00000000..6c3fc12d --- /dev/null +++ b/sites/compass/templates/tour_request.html @@ -0,0 +1,28 @@ +{% extends "base.html" %} +{% block content %} +
+

Request a tour

+

{{ listing.address }} · {{ listing.city }}, {{ listing.state }}

+
+ +
+
+ +
+
+ +
+
+
+ + Cancel +
+
+{% endblock %} diff --git a/sites/compass/templates/tours.html b/sites/compass/templates/tours.html new file mode 100644 index 00000000..c684cd39 --- /dev/null +++ b/sites/compass/templates/tours.html @@ -0,0 +1,36 @@ +{% extends "base.html" %} +{% block content %} +
+ {% include "_account_nav.html" %} +
+

Tour requests

+ {% if tours %} +
+ + + {% for t in tours %} + + + + + + + + + + {% endfor %} + +
ListingDateTimeTypeStatusRequested
{{ t.listing.address }}
{{ t.listing.city }}, {{ t.listing.state }}
{{ t.requested_date }}{{ t.requested_time }}{{ t.tour_type }}{{ t.status }}{{ t.requested_at.strftime('%b %d') }} + {% if t.status != 'cancelled' %} +
+ + +
+ {% endif %} +
+ {% else %} +

No tour requests

Find a home you like and request a tour.

+ {% endif %} +
+
+{% endblock %} diff --git a/sites/compass/tests/test_app.py b/sites/compass/tests/test_app.py new file mode 100644 index 00000000..b9ec9271 --- /dev/null +++ b/sites/compass/tests/test_app.py @@ -0,0 +1,346 @@ +"""Behavioral regressions for the standalone Compass environment.""" +import importlib +import json +import os +import subprocess +import sys +import tempfile +from pathlib import Path + +import pytest + +SITE = Path(__file__).resolve().parents[1] +sys.path.insert(0, str(SITE)) +TEST_DIR = tempfile.TemporaryDirectory(prefix="compass-tests-") +os.environ["COMPASS_DATABASE_PATH"] = str(Path(TEST_DIR.name) / "compass.db") +os.environ["COMPASS_SKIP_SEED"] = "1" +m = importlib.import_module("app") + + +@pytest.fixture() +def client(): + m.app.config.update(TESTING=True, WTF_CSRF_ENABLED=False) + with m.app.app_context(): + m.db.drop_all() + m.db.create_all() + m.seed_neighborhood_guides() + for name in ("Alice", "Bob"): + user = m.User(name=name, email=name.lower()+"@example.com", budget_min=100, budget_max=200, beds_min=1) + user.set_password("test-pass-123") + m.db.session.add(user) + m.db.session.add_all([ + m.Listing(id=1, slug="san-francisco", address="1 Sample Street", city="San Francisco", status="for-sale", price=100, beds=2, baths_full=1, baths_half=1, days_on_compass=0), + m.Listing(id=2, slug="new-york", address="2 Sample Street", city="New York", status="for-sale", price=200, beds=3, baths_full=2, baths_half=0, days_on_compass=2), + ]) + m.db.session.commit() + yield m.app.test_client() + + +def login(client, next_url="/account"): + return client.post("/login", query_string={"next":next_url}, data={"email":"alice@example.com", "password":"test-pass-123"}) + + +def test_listing_title_does_not_contain_share_dialog_markup(client): + import re + html = client.get("/listing/san-francisco").get_data(as_text=True) + assert re.search(r"(.*?)", html, re.S).group(1).strip() == "1 Sample Street | Compass" + assert html.count('id="share-property"') == 1 + + +@pytest.mark.parametrize("route", ["/login", "/register", "/account/edit", "/account/preferences", + "/account/change-password", "/tour/1", "/inquiry/1", + "/collections/new", "/saved-searches"]) +def test_form_labels_identify_their_controls(client, route): + from html.parser import HTMLParser + + class Labels(HTMLParser): + def __init__(self): + super().__init__() + self.ids = set() + self.labels = [] + self.active = None + + def handle_starttag(self, tag, attributes): + attrs = dict(attributes) + if attrs.get("id"): + assert attrs["id"] not in self.ids, "duplicate control id" + self.ids.add(attrs["id"]) + if tag == "label": + self.active = {"for": attrs.get("for"), "wrapped": False} + if tag in {"input", "select", "textarea"} and self.active is not None: + self.active["wrapped"] = True + + def handle_endtag(self, tag): + if tag == "label" and self.active is not None: + self.labels.append(self.active) + self.active = None + + if route not in {"/login", "/register"}: + login(client) + parser = Labels() + response = client.get(route) + assert response.status_code == 200 + parser.feed(response.get_data(as_text=True)) + assert parser.labels + assert all(label["wrapped"] or label["for"] in parser.ids for label in parser.labels) + + +@pytest.mark.parametrize("target", ["https://foreign.example/", "//foreign.example/", "/\\foreign.example/", "https://localhost.evil.example/"]) +def test_login_never_redirects_outside_mirror(client, target): + assert login(client, target).location == "/account" + + +def test_local_return_path_survives_login(client): + assert login(client, "/saved?tab=homes").location == "/saved?tab=homes" + + +def test_mutation_referrer_is_same_origin(client): + login(client) + response=client.post("/save/1", headers={"Referer":"https://foreign.example/"}) + assert response.location == "/listing/san-francisco" + + +def test_logout_requires_csrf_protected_post(client): + login(client) + assert client.get("/logout").status_code == 405 + m.app.config["WTF_CSRF_ENABLED"] = True + assert client.post("/logout").status_code == 400 + assert client.get("/account").status_code == 200 + + +@pytest.mark.parametrize("email,password", [("bad-address","valid-pass"),("ok@example.com","a"),("ok@example.com","é"*40)]) +def test_invalid_registration_does_not_write(client, email, password): + client.post("/register",data={"name":"Example", "email":email,"password":password,"confirm":password}) + with m.app.app_context(): assert m.User.query.count()==2 + + +def test_saved_city_and_half_bath_filters(client): + with m.app.app_context(): + assert [x.id for x in m.filter_listings(m.Listing.query,{"city":"San Francisco"}).all()]==[1] + assert [x.id for x in m.filter_listings(m.Listing.query,{"baths":"2"}).all()]==[2] + assert [x.id for x in m.filter_listings(m.Listing.query,{"baths":"1.5"}).all()]==[1,2] + assert [x.id for x in m.sort_listings(m.Listing.query.all(),"newest")]==[1,2] + + +@pytest.mark.parametrize("changes", [{"budget_min":"999","budget_max":"bad","beds_min":"3"},{"budget_min":"500","budget_max":"100","beds_min":"2"},{"budget_min":"-1","budget_max":"100","beds_min":"2"},{"property_types":"Spaceship"}]) +def test_invalid_preferences_are_atomic(client, changes): + login(client) + before=None + with m.app.app_context(): + u=m.User.query.filter_by(email="alice@example.com").one() + before=(u.budget_min,u.budget_max,u.beds_min,u.preferred_property_types) + client.post("/account/preferences",data=changes) + with m.app.app_context(): + u=m.User.query.filter_by(email="alice@example.com").one() + assert (u.budget_min,u.budget_max,u.beds_min,u.preferred_property_types)==before + + +@pytest.mark.parametrize("date,time,kind", [("","11:00 AM","in-person"),("2026-02-30","11:00 AM","in-person"),("2026-07-12","midnight","video"),("2026-07-12","11:00 AM","teleport")]) +def test_invalid_tour_does_not_write(client,date,time,kind): + login(client) + client.post("/tour/1",data={"date":date,"time":time,"tour_type":kind}) + with m.app.app_context(): assert m.Tour.query.count()==0 + + +def test_fixed_benchmark_tour_is_valid_independent_of_wall_clock(client): + login(client) + assert client.post("/tour/1",data={"date":"2026-07-12","time":"11:00 AM","tour_type":"in-person"}).status_code==302 + with m.app.app_context(): assert m.Tour.query.count()==1 + + +@pytest.mark.parametrize("fields", [{},{"name":"Guest","email":"invalid","message":"Question"},{"name":"Guest","email":"guest@example.com","message":" "}]) +def test_invalid_inquiry_does_not_write(client,fields): + client.post("/inquiry/1",data=fields) + with m.app.app_context(): assert m.Inquiry.query.count()==0 + + +def test_foreign_objects_cannot_be_modified(client): + with m.app.app_context(): + m.db.session.add(m.Collection(id=1,user_id=2,name="Private",share_token="test-token",listing_ids_json="[2]")) + m.db.session.add(m.Tour(id=1,user_id=2,listing_id=2,status="requested")) + m.db.session.commit() + login(client) + for path in ("/collections/1/add/1","/collections/1/remove/2","/collections/1/delete","/tour/1/cancel"): + assert client.post(path).status_code==404 + with m.app.app_context(): + assert m.Collection.query.get(1).get_listing_ids()==[2] + assert m.Tour.query.get(1).status=="requested" + + +def test_collection_can_be_populated_from_listing_ui(client): + login(client) + with m.app.app_context(): + m.db.session.add(m.Collection(id=1,user_id=1,name='My picks',share_token='mine',listing_ids_json='[]')) + m.db.session.add(m.Collection(id=2,user_id=2,name='Other picks',share_token='theirs',listing_ids_json='[]')) + m.db.session.commit() + page=client.get('/listing/san-francisco') + assert b'name="collection_id"' in page.data + assert client.post('/listing/1/add-to-collection',data={'collection_id':'2'}).status_code==404 + assert client.post('/listing/1/add-to-collection',data={'collection_id':'1'}).status_code==302 + with m.app.app_context(): + assert m.db.session.get(m.Collection,1).get_listing_ids()==[1] + assert m.db.session.get(m.Collection,2).get_listing_ids()==[] + + +def test_saved_search_preserves_filters_and_can_be_reopened(client): + login(client) + criteria={'q':'Sample','city':'New York','status':'for-sale','property_type':'Single Family','price_min':'50','price_max':'500','beds':'2','baths':'2','sqft_min':'100','year_built_min':'1900','pool':'on'} + client.post('/saved-searches',data={'name':'My precise search',**criteria}) + with m.app.app_context(): + saved=m.SavedSearch.query.one() + assert all(saved.get_criteria().get(k)==v for k,v in criteria.items()) + response=client.get('/saved-searches') + assert b'href="/search?' in response.data and b'My precise search' in response.data + + +def test_unknown_price_and_rented_listing_are_not_sale_quotes(client): + unknown=m.Listing(address="Price withheld", price=None) + rented=m.Listing(address="Archived rental",status="rented",is_rental=True,price=10000,sqft=1000) + assert unknown.price_display()=="Price upon request" + assert rented.price_display()=="$10,000/mo" + assert rented.price_per_sqft()==0 + + +def test_price_per_sqft_uses_exact_ranking_and_half_up_display(client): + higher=m.Listing(price=1008,sqft=2,status="for-sale") + lower=m.Listing(price=1007,sqft=2,status="for-sale") + assert lower.price_per_sqft()==504 + assert higher.price_per_sqft()==504 + assert m.sort_listings([higher,lower],"ppsf_asc")==[lower,higher] + + +def test_seed_bytes_do_not_depend_on_index_creation_order(tmp_path): + import hashlib + import sqlite3 + from migrate_seed import canonical_copy + hashes=[] + for indexes in [("a","b"),("b","a")]: + source=tmp_path/(indexes[0]+".db") + output=tmp_path/(indexes[0]+"-stable.db") + with sqlite3.connect(source) as con: + con.execute("CREATE TABLE sample(id INTEGER PRIMARY KEY, a TEXT, b INTEGER)") + for name in indexes:con.execute(f"CREATE INDEX sample_{name} ON sample({name})") + con.execute("INSERT INTO sample VALUES(1,'value',7)") + canonical_copy(source,output) + hashes.append(hashlib.sha256(output.read_bytes()).hexdigest()) + assert hashes[0]==hashes[1] + + +def test_marketing_status_routes_use_source_status_not_new_flag(client): + with m.app.app_context(): + first = m.db.session.get(m.Listing, 1) + first.is_new = True + first.is_compass_exclusive = True + first.property_facts_json = json.dumps({"Status": "Active"}) + second = m.db.session.get(m.Listing, 2) + second.is_new = False + second.property_facts_json = json.dumps({"Status": "Coming Soon"}) + m.db.session.commit() + coming = client.get('/coming-soon/listings/').get_data(as_text=True) + assert '/listing/new-york' in coming + assert '/listing/san-francisco' not in coming + assert '/listing/san-francisco' not in client.get('/private-exclusives/').get_data(as_text=True) + with m.app.app_context(): + m.db.session.get(m.Listing, 1).property_facts_json = json.dumps({"Status": "Active (Private)"}) + m.db.session.commit() + private = client.get('/private-exclusives/').get_data(as_text=True) + assert '/listing/san-francisco' in private + assert '/listing/new-york' not in private + + +def test_marketing_routes_do_not_modify_catalog_or_user_state(client): + with m.app.app_context(): + before = [(row.id, row.property_facts_json) for row in m.Listing.query.order_by(m.Listing.id)] + users = m.User.query.count() + for route in ['/concierge/', '/neighborhood-guides/', '/neighborhood-guides/hamptons/', + '/neighborhood-guides/nyc/', '/sitemap/ca/', '/coming-soon/', '/private-exclusives/']: + assert client.get(route).status_code == 200 + assert client.get('/neighborhood-guides/invalid/').status_code == 404 + assert client.get('/sitemap/not-a-state/').status_code == 404 + with m.app.app_context(): + assert before == [(row.id, row.property_facts_json) for row in m.Listing.query.order_by(m.Listing.id)] + assert m.User.query.count() == users + assert m.SavedHome.query.count() == m.Tour.query.count() == m.Inquiry.query.count() == 0 + + +# Seller leads are local records, independent of listing-specific inquiries. +def test_seller_lead_persists_and_confirmation_belongs_to_browser(client): + original_counts = None + with m.app.app_context(): + original_counts = (m.User.query.count(), m.Listing.query.count(), m.Inquiry.query.count()) + response = client.post('/sell/', data={ + 'name': 'Taylor Test', 'email': 'taylor@example.com', + 'phone': '+1 (212) 555-0199', 'zip_code': '10011', + }) + assert response.status_code == 302 + assert response.location == '/sell/#lead-form' + with m.app.app_context(): + lead = m.SellerInquiry.query.one() + assert (lead.name, lead.email, lead.phone, lead.zip_code) == ( + 'Taylor Test', 'taylor@example.com', '+1 (212) 555-0199', '10011') + reference = lead.reference + assert (m.User.query.count(), m.Listing.query.count(), m.Inquiry.query.count()) == original_counts + for _ in range(2): + html = client.get('/sell/').get_data(as_text=True) + assert reference in html and 'Saved in this local environment' in html + assert reference not in m.app.test_client().get('/sell/').get_data(as_text=True) + with m.app.app_context(): + assert m.SellerInquiry.query.count() == 1 + + +@pytest.mark.parametrize('field,value', [ + ('name', ''), ('name', 'x' * 121), ('email', 'not-an-email'), + ('phone', 'abc'), ('phone', '1' * 41), ('zip_code', 'abc'), ('zip_code', '123456'), +]) +def test_seller_lead_rejects_invalid_fields_without_writes(client, field, value): + data = {'name': 'Taylor', 'email': 'taylor@example.com', 'phone': '212-555-0199', 'zip_code': '10011'} + data[field] = value + response = client.post('/sell/', data=data) + assert response.status_code == 422 + assert b'Please check the form' in response.data + with m.app.app_context(): + assert m.SellerInquiry.query.count() == 0 + + +def test_seller_lead_requires_csrf_and_escapes_returned_values(client): + m.app.config['WTF_CSRF_ENABLED'] = True + assert client.post('/sell/', data={'name':'Taylor'}).status_code == 400 + m.app.config['WTF_CSRF_ENABLED'] = False + response = client.post('/sell/', data={'name':'', 'email':'invalid', + 'phone':'212-555-0199', 'zip_code':'10011'}) + assert response.status_code == 422 + assert b'' not in response.data + assert b'<script>' in response.data + + +def test_neighborhood_pages_read_seed_and_keep_every_directory_link_local(client, monkeypatch): + import builtins + from html.parser import HTMLParser + + class Links(HTMLParser): + def __init__(self): + super().__init__() + self.links = [] + def handle_starttag(self, tag, attributes): + if tag == 'a': + self.links.append(dict(attributes).get('href', '')) + + expected = json.loads((SITE / 'neighborhood_guides.json').read_text()) + original_open = builtins.open + def no_runtime_guide_json(file, *args, **kwargs): + if str(file).endswith(('neighborhood_guides.json', 'neighborhood_regions.json')): + raise AssertionError('Guide handlers must use the SQLite snapshot') + return original_open(file, *args, **kwargs) + monkeypatch.setattr(builtins, 'open', no_runtime_guide_json) + directory = Links() + directory.feed(client.get('/neighborhood-guides/').get_data(as_text=True)) + routes = {f'/neighborhood-guides/{slug}/' for slug in expected} + assert routes <= set(directory.links) + for slug, guide in expected.items(): + response = client.get(f'/neighborhood-guides/{slug}/') + assert response.status_code == 200 + links = Links() + links.feed(response.get_data(as_text=True)) + assert [card['source_url'] for card in guide['cards']] == [ + link for link in links.links if link.startswith(guide['source_url']) and link != guide['source_url']] + assert not any(link.startswith('/listing/') for link in links.links) diff --git a/sites/compass/tests/test_sources.py b/sites/compass/tests/test_sources.py new file mode 100644 index 00000000..c1d3f34f --- /dev/null +++ b/sites/compass/tests/test_sources.py @@ -0,0 +1,26 @@ +"""Source identity and unknown-value guards, independent of the seed builder.""" +import importlib.util +import json +from pathlib import Path +import pytest + +p=Path(__file__).resolve().parents[1]/'scripts/normalize_sources.py' +spec=importlib.util.spec_from_file_location('source_normalizer',p) +n=importlib.util.module_from_spec(spec); spec.loader.exec_module(n) +META={'requested_url':'https://www.compass.com/homedetails/example/id/','retrieved_at':'2026-09-06T00:00:00Z'} + +def page(listing): + return '' + +def test_changed_transaction_is_rejected(): + with pytest.raises(ValueError, match='transaction changed'): + n.normalize(page({'listingIdSHA':'rental'}),'sale',META) + +def test_unknown_facts_are_not_generated(): + r=n.normalize(page({'listingIdSHA':'123'}),'123',META) + assert r['year_built'] is None and r['beds'] is None and r['sqft'] is None + assert r['agent'] is None and r['mls_number']=='' and r['property_type']=='' + +def test_listing_section_wins_over_assessor_record(): + r=n.normalize(page({'listingIdSHA':'123','price':{'lastKnown':1234567},'size':{'bedrooms':0},'detailedInfo':{'keyDetails':[{'key':'Year Built','value':'2004'},{'key':'Property Type','value':'Condo'}],'assessorDetails':{'yearBuilt':2003}}}),'123',META) + assert r['year_built']==2004 and r['price']==1234567 and r['beds']==0 diff --git a/sites/compass/verify/README.md b/sites/compass/verify/README.md new file mode 100644 index 00000000..13c3e50e --- /dev/null +++ b/sites/compass/verify/README.md @@ -0,0 +1,45 @@ +# Compass verification + +Each task has one `verify_N.py` entry point and a non-answer-bearing rubric in +`../tasks.jsonl`. `facts.json` contains the frozen, source-backed answers used +only by these graders. Task IDs 8 and 9 were retired because their original +agent-performance and open-house facts could not be supported by sources. + +```sh +python sites/compass/verify/verify_0.py \ + --run_dir /path/to/run \ + --initial_db /path/to/frozen-before.db \ + --after_db /path/to/frozen-after.db --no_llm +``` + +Output is JSON with `task_id`, `pass`, `reason`, and `evidence`; exit status is +0 for PASS and 1 for FAIL. `--no_llm` is accepted for harness compatibility; +all checks are deterministic. If DB paths are omitted, `--container` (default +`wh-review`) supplies the seed and live DB through `docker cp`. Use explicit +frozen paths when scoring past runs, especially after a reset. + +The native run contract is `trajectory.json`, with `task_id`, `start_url`, +`steps`, `terminated`, `termination_reason` (`agent_done` or `guided_done`), +and `final_answer`. Each step carries `url`, `action`, screenshot basenames +`screenshot_before`/`screenshot_after`, and optionally `url_after`. +Screenshots reside in `screenshots/`. Normal local host aliases are accepted +at the run's port; external domains, other ports, and paths embedded in query +strings cannot satisfy navigation checks. The recorder is trusted to record +the real UI. Screenshot packaging checks do not interpret their pixels or +replace independent execution review. + +Checks bind comparison facts to the correct property and use exact DB state +differences for writes. Existing rows and unrelated tables must be preserved. +For collection tasks, saving the target homes on a legitimate path through +Saved Homes is allowed. No grader requires the reviewer's homepage route, +sort order, number of clicks, or browser viewport. Explicit task requirements +such as following an agent link or reopening a saved search are checked. + +Natural English answers, ordinary address abbreviations, comma grouping, +million notation, and Markdown rows are supported. Each comparison home must +have its own line as requested by the task. Rejecting ambiguous or inconsistent +numeric claims is intentional; no hidden LLM call repairs an answer. + +Run the synthetic regression suite with `python -m pytest +sites/compass/verify/test_verifiers.py`. These fixtures are not browser runs +and cannot establish that a task is solvable through the UI. diff --git a/sites/compass/verify/facts.json b/sites/compass/verify/facts.json new file mode 100644 index 00000000..6e9bd8b6 --- /dev/null +++ b/sites/compass/verify/facts.json @@ -0,0 +1,342 @@ +{ + "target_ids": { + "0": 99, + "1": 130, + "2": 110, + "3": 18, + "4": 36, + "6": 110, + "11": 374, + "12": 89, + "13": 96, + "14": 233, + "15": 38, + "16": 18, + "17": 17 + }, + "listings": { + "96": { + "id": 96, + "address": "Rockwell Island", + "unit": "", + "city": "Miami", + "state": "FL", + "zip": "33133", + "slug": "rockwell-island-miami-fl-94376561", + "price": 5000000, + "sqft": 4588, + "beds": 4, + "year_built": 2026, + "mls_number": "", + "property_type": "Single Family", + "agent_id": 50, + "agent_name": "Renier Casanova", + "agent_email": "renier.casanova@compass.com", + "agent_slug": "renier-casanova-f056ba28" + }, + "99": { + "id": 99, + "address": "88 Southwest 7th Street, Unit PH4303", + "unit": "PH4303", + "city": "Miami", + "state": "FL", + "zip": "33130", + "slug": "88-southwest-7th-street-unit-ph4303-miami-fl-12289809", + "price": 5799900, + "sqft": 3115, + "beds": 3, + "year_built": 2016, + "mls_number": "A12055974", + "property_type": "Condo", + "agent_id": 51, + "agent_name": "Arelis Cosme", + "agent_email": "areliscosme@compass.com", + "agent_slug": "arelis-cosme-69d1f3be" + }, + "36": { + "id": 36, + "address": "50 King Street, Unit 9A", + "unit": "9A", + "city": "Manhattan", + "state": "NY", + "zip": "10014", + "slug": "50-king-street-unit-9a-new-york-ny-40937585", + "price": 565000, + "sqft": null, + "beds": 0, + "year_built": 1959, + "mls_number": "", + "property_type": "Co-op", + "agent_id": 17, + "agent_name": "Michael J. Franco", + "agent_email": "mfranco@compass.com", + "agent_slug": "michael-j-franco-9f000622" + }, + "3": { + "id": 3, + "address": "482 11th Street", + "unit": "", + "city": "Brooklyn", + "state": "NY", + "zip": "11215", + "slug": "482-11th-street-new-york-ny-24388625", + "price": 3600000, + "sqft": 2553, + "beds": 3, + "year_built": 1901, + "mls_number": "", + "property_type": "Townhouse", + "agent_id": 2, + "agent_name": "Lucie Holt", + "agent_email": "lucie@compass.com", + "agent_slug": "lucie-holt-a82efb63" + }, + "38": { + "id": 38, + "address": "669 Saint Marks Avenue, Unit 2B", + "unit": "2B", + "city": "Brooklyn", + "state": "NY", + "zip": "11216", + "slug": "669-saint-marks-avenue-unit-2b-new-york-ny-65073649", + "price": 1799000, + "sqft": 1285, + "beds": 3, + "year_built": 2022, + "mls_number": "", + "property_type": "Condo", + "agent_id": 19, + "agent_name": "Marta Maletz", + "agent_email": "marta@compass.com", + "agent_slug": "marta-maletz-a3122ce5" + }, + "233": { + "id": 233, + "address": "2311 Westoak Drive", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78704", + "slug": "2311-westoak-drive-austin-tx-77497457", + "price": 2695000, + "sqft": 3662, + "beds": 4, + "year_built": 2018, + "mls_number": "1726892", + "property_type": "Single Family", + "agent_id": 119, + "agent_name": "Austin Stowell", + "agent_email": "austin.stowell@compass.com", + "agent_slug": "austin-stowell-1837cdfe" + }, + "9": { + "id": 9, + "address": "130 Prospect Place, Unit 1", + "unit": "1", + "city": "Brooklyn", + "state": "NY", + "zip": "11217", + "slug": "130-prospect-place-unit-1-new-york-ny-78987185", + "price": 1495000, + "sqft": 1200, + "beds": 2, + "year_built": 1930, + "mls_number": "", + "property_type": "Co-op", + "agent_id": 6, + "agent_name": "Rezwan Sharif", + "agent_email": "rezwan@compass.com", + "agent_slug": "rezwan-sharif-c2f59b62" + }, + "110": { + "id": 110, + "address": "480 Northeast 31st Street, Unit PH5402", + "unit": "PH5402", + "city": "Miami", + "state": "FL", + "zip": "33137", + "slug": "480-northeast-31st-street-unit-ph5402-miami-fl-31923921", + "price": 4500000, + "sqft": 2112, + "beds": 3, + "year_built": 2019, + "mls_number": "", + "property_type": "Condo", + "agent_id": 56, + "agent_name": "Michael Martirena", + "agent_email": "mike.martirena@compass.com", + "agent_slug": "michael-martirena-8c2b0687" + }, + "17": { + "id": 17, + "address": "150 Charles Street, Unit M10", + "unit": "M10", + "city": "Manhattan", + "state": "NY", + "zip": "10014", + "slug": "150-charles-street-unit-m10-new-york-ny-81286569", + "price": 21500000, + "sqft": 5612, + "beds": 4, + "year_built": 2013, + "mls_number": "", + "property_type": "Condo", + "agent_id": 9, + "agent_name": "Holly Parker", + "agent_email": "holly.parker@compass.com", + "agent_slug": "holly-parker-b902454d" + }, + "18": { + "id": 18, + "address": "195 Willoughby Avenue, Unit 1517/1518", + "unit": "1517/1518", + "city": "Brooklyn", + "state": "NY", + "zip": "11205", + "slug": "195-willoughby-avenue-unit-1517-1518-new-york-ny-05751361", + "price": 1125000, + "sqft": 1217, + "beds": 2, + "year_built": 1958, + "mls_number": "", + "property_type": "Co-op", + "agent_id": 10, + "agent_name": "Charlie Lewis", + "agent_email": "charlie.lewis@compass.com", + "agent_slug": "charlie-lewis-cfd1fcdd" + }, + "115": { + "id": 115, + "address": "1425 Brickell Avenue, Unit 42F", + "unit": "42F", + "city": "Miami", + "state": "FL", + "zip": "33131", + "slug": "1425-brickell-avenue-unit-42f-miami-fl-85366897", + "price": 11750000, + "sqft": 3913, + "beds": 3, + "year_built": 2003, + "mls_number": "", + "property_type": "Condo", + "agent_id": 59, + "agent_name": "Audrey Ross", + "agent_email": "audrey.ross@compass.com", + "agent_slug": "audrey-ross-2de55ec0" + }, + "374": { + "id": 374, + "address": "864 Moore Drive", + "unit": "", + "city": "Aspen", + "state": "CO", + "zip": "81611", + "slug": "864-moore-drive-aspen-co-64367481", + "price": 39500000, + "sqft": 10615, + "beds": 7, + "year_built": 2005, + "mls_number": "188891", + "property_type": "Single Family", + "agent_id": 181, + "agent_name": "Steven Shane", + "agent_email": "steven.shane@compass.com", + "agent_slug": "steven-shane-57fedc1b" + }, + "152": { + "id": 152, + "address": "1542 15th Street", + "unit": "", + "city": "San Francisco", + "state": "CA", + "zip": "94103", + "slug": "1542-15th-street-san-francisco-ca-68920025", + "price": 1295000, + "sqft": 1380, + "beds": 3, + "year_built": 1906, + "mls_number": "426107614", + "property_type": "Condo", + "agent_id": 82, + "agent_name": "Andreas Ernst", + "agent_email": "andreas.ernst@compass.com", + "agent_slug": "andreas-ernst-d903a677" + }, + "89": { + "id": 89, + "address": "17145 Southwest 90th Avenue", + "unit": "", + "city": "Miami", + "state": "FL", + "zip": "33157", + "slug": "17145-southwest-90th-avenue-miami-fl-57531361", + "price": 1650000, + "sqft": 1514, + "beds": 3, + "year_built": 1957, + "mls_number": "", + "property_type": "Single Family", + "agent_id": 47, + "agent_name": "Jenna Citron Pinchuk", + "agent_email": "jenna.citron@compass.com", + "agent_slug": "jenna-citron-pinchuk-af00ed13" + }, + "252": { + "id": 252, + "address": "3305 Dolphin Drive", + "unit": "", + "city": "Austin", + "state": "TX", + "zip": "78704", + "slug": "3305-dolphin-drive-austin-tx-31707521", + "price": 775000, + "sqft": 3424, + "beds": 7, + "year_built": null, + "mls_number": "", + "property_type": "", + "agent_id": null, + "agent_name": null, + "agent_email": null, + "agent_slug": null + }, + "253": { + "id": 253, + "address": "1036 Liberty Park Drive, Unit 38A", + "unit": "38A", + "city": "Austin", + "state": "TX", + "zip": "78746", + "slug": "1036-liberty-park-drive-unit-38a-austin-tx-06932321", + "price": 1400000, + "sqft": 2889, + "beds": 4, + "year_built": 2007, + "mls_number": "8453917", + "property_type": "Condo", + "agent_id": 128, + "agent_name": "Dylan Everett", + "agent_email": "dylan.everett@compass.com", + "agent_slug": "dylan-everett-98f9e856" + }, + "130": { + "id": 130, + "address": "420 Mission Bay Boulevard North, Unit 120", + "unit": "120", + "city": "San Francisco", + "state": "CA", + "zip": "94158", + "slug": "420-mission-bay-boulevard-north-unit-120-san-francisco-ca-72469257", + "price": 899000, + "sqft": 928, + "beds": 1, + "year_built": 2012, + "mls_number": "426105057", + "property_type": "Condo", + "agent_id": 67, + "agent_name": "Jessie Lee", + "agent_email": "jessie.lee@compass.com", + "agent_slug": "jessie-lee-1eae1909" + } + } +} diff --git a/sites/compass/verify/test_verifiers.py b/sites/compass/verify/test_verifiers.py new file mode 100644 index 00000000..01ff2649 --- /dev/null +++ b/sites/compass/verify/test_verifiers.py @@ -0,0 +1,231 @@ +"""Synthetic grading fixtures, never counted as browser trajectories.""" +import copy +import json +import sys +from pathlib import Path + +import pytest + +sys.path.insert(0, str(Path(__file__).resolve().parent)) +import verify_lib as v + + +ANSWERS = { + 0: "88 SW 7th St #PH4303, Miami; built 2016; MLS A12055974.", + 1: "420 Mission Bay Blvd North, Unit 120, San Francisco — $899,000, year 2012, MLS 426105057.", + 2: "1425 Brickell Ave #42F: $11.75M; 3,913 sq ft; built 2003.\n480 NE 31st St #PH5402: $4.5M; 2,112 sq ft; built 2019.\n480 NE 31st St #PH5402 has the lower price per square foot.", + 3: "195 Willoughby Ave #1517/1518, Brooklyn — 1958; Charlie Lewis.", + 4: "Saved successfully. Recorded price: $565,000. Type: Co-op.", + 5: "Phone: (415) 555-0199. San Francisco, California.", + 6: "The tour is requested. Year built: 2019.", + 7: "Share token: fixture-token.", + 10: "Boston; for-sale; Condo; minimum 3 bedrooms.", + 11: "864 Moore Dr, Aspen — seven bedrooms; 10,615 square feet; year 2005; MLS 188891.", + 12: "Rounded price per square foot: $1,090. Year: 1957. Jenna Citron Pinchuk, jenna.citron@compass.com.", + 13: "Rockwell Island, Miami — 4 bedrooms; 4,588 sqft; built 2026; Renier Casanova.", + 14: "2311 Westoak Dr, Austin; MLS 1726892.", + 15: "669 St Marks Ave #2B, Brooklyn; June 6, 2026; Marta Maletz.", + 16: "195 Willoughby Avenue, Unit 1517/1518 — year 1958; Charlie Lewis.", + 17: "150 Charles St #M10, Manhattan — Holly Parker; built 2013.", +} + + +def trajectory(task): + paths = ["/"] + [v.detail_path(key) for key in v.LISTINGS] + paths += [v.detail_path(89), "/agents/" + v.LISTINGS[89]["agent_slug"], "/account", "/saved", "/tours", "/inquiry/38", + "/collections/99", "/collections/share/fixture-token", "/saved-searches", + "/search?q=Boston&status=for-sale&property_type=Condo&beds=3"] + return {"task_id": f"Compass--{task}", "start_url": "http://localhost:40018/", + "final_answer": ANSWERS[task], "steps": [{"url": "http://localhost:40018" + path, "action": "click"} for path in paths]} + + +@pytest.mark.parametrize("task", sorted(ANSWERS)) +def test_equivalent_answer_spelling_and_units(task): + j = v.Checks(task) + v.answer_checks(j, trajectory(task)) + assert j.result()["pass"], j.result() + + +@pytest.mark.parametrize("task", sorted(set(ANSWERS) - {7})) +def test_wrong_answer_is_not_saved_by_correct_navigation(task): + t = trajectory(task) + t["final_answer"] = "I completed everything successfully." + j = v.Checks(task) + v.answer_checks(j, t) + assert not j.result()["pass"] + + +@pytest.mark.parametrize("replacement", ["https://www.compass.com", "http://localhost.evil.example:40018", "http://127.0.0.1:40019"]) +def test_foreign_origin_and_wrong_port_do_not_supply_navigation(replacement): + t = trajectory(0) + for step in t["steps"]: + step["url"] = step["url"].replace("http://localhost:40018", replacement) + assert not v.visited(t, v.detail_path(99)) + + +def test_target_path_in_query_is_not_navigation(): + t = trajectory(0) + t["steps"] = [{"url": "http://localhost:40018/search?q=" + v.detail_path(99)}] + assert not v.visited(t, v.detail_path(99)) + + +def test_comparison_rejects_swapped_facts_and_incorrect_winner(): + for answer in [ANSWERS[2].replace("2003", "TEMP").replace("2019", "2003").replace("TEMP", "2019"), + ANSWERS[2].replace("480 NE 31st St #PH5402 has the lower", "1425 Brickell Ave #42F has the lower")]: + t = trajectory(2); t["final_answer"] = answer + j = v.Checks(2); v.answer_checks(j, t) + assert not j.result()["pass"] + + +def test_comparison_accepts_additional_derived_ratios(): + t = trajectory(2) + t["final_answer"] = t["final_answer"].replace("built 2003.", "built 2003; $3,003/sqft.").replace("built 2019.", "built 2019; $2,131/sqft.") + j = v.Checks(2); v.answer_checks(j, t) + assert j.result()["pass"], j.result() + + +@pytest.mark.parametrize("before,after", [("A12055974", "A120559740"), ("2016", "2017")]) +def test_exact_fact_boundaries(before, after): + t = trajectory(0); t["final_answer"] = t["final_answer"].replace(before, after) + j = v.Checks(0); v.answer_checks(j, t) + assert not j.result()["pass"] + + +def test_agent_email_domain_suffix_is_wrong(): + t = trajectory(12); t["final_answer"] = t["final_answer"].replace("@compass.com", "@compass.com.evil.example") + j = v.Checks(12); v.answer_checks(j, t) + assert not j.result()["pass"] + + +@pytest.mark.parametrize("year,bedrooms,sqft", [(2025, 4, 4588), (2026, 6, 6501), (2026, 4, 45880)]) +def test_similarly_named_property_is_not_the_same_answer(year, bedrooms, sqft): + t = trajectory(13) + t["final_answer"] = f"Rockwell Island, Miami; {bedrooms} bedrooms, {sqft} sqft, built {year}; Renier Casanova." + j = v.Checks(13); v.answer_checks(j, t) + assert not j.result()["pass"] + + +def initial_state(): + result = {key: {} for key in v.TABLES} + for uid, email in enumerate(("alice.j@test.com", "bob.smith@test.com", "carol.lee@test.com", "david.kim@test.com"), 1): + result["users"][uid] = {"id": uid, "email": email, "phone": "unchanged-phone", "name": email.split('.')[0]} + result["listings"][99] = {"id": 99, "price": 5799900} + result["saved_homes"][1] = {"id": 1, "user_id": 4, "listing_id": 17} + return result + + +def completed_state(task, before): + after = copy.deepcopy(before) + if task == 5: + after["users"][1]["phone"] = "(415) 555-0199" + elif task == 6: + after["tours"][99] = {"id": 99, "user_id": 3, "listing_id": 110, "requested_date": "2026-07-12", "requested_time": "11:00 AM", "tour_type": "in-person", "status": "requested"} + elif task in {7, 14}: + after["collections"][99] = {"id": 99, "user_id": 4, "name": "Austin top picks" if task == 7 else "Austin garage picks", "listing_ids_json": json.dumps([252, 253] if task == 7 else [233]), "share_token": "fixture-token"} + elif task == 10: + after["saved_searches"][99] = {"id": 99, "user_id": 1, "name": "Boston condos 3BR", "criteria_json": json.dumps({"city": "Boston", "status": "for-sale", "property_type": "Condo", "beds": "3", "sort": "price_asc"})} + elif task == 15: + after["inquiries"][99] = {"id": 99, "user_id": 2, "listing_id": 38, "agent_id": v.LISTINGS[38]["agent_id"], "subject": "Following up on my tour", "message": "Please confirm the date and time for this tour."} + return after + + +@pytest.mark.parametrize("task", [5, 6, 7, 10, 14, 15]) +def test_exact_state_change_and_noop(task): + before = initial_state(); after = completed_state(task, before) + j = v.Checks(task); v.state_checks(j, trajectory(task), before, after) + assert j.result()["pass"], j.result() + j = v.Checks(task); v.state_checks(j, trajectory(task), before, before) + assert not j.result()["pass"] + + +@pytest.mark.parametrize("task", [5, 6, 7, 10, 14, 15]) +@pytest.mark.parametrize("table", sorted(v.TABLES)) +def test_unrelated_added_or_changed_records_are_rejected(task, table): + before = initial_state(); after = completed_state(task, before) + if table == "users": + after[table][2]["phone"] = "unexpected-change" + else: + after[table][1000] = {"id": 1000, "user_id": 2, "listing_id": 99} + j = v.Checks(task) + v.state_checks(j, trajectory(task), before, after) + assert not j.result()["pass"], (task, table, j.result()) + + +@pytest.mark.parametrize("task,listing", [(7, 252), (14, 233)]) +def test_collection_allows_saved_home_navigation_side_effect(task, listing): + before = initial_state(); after = completed_state(task, before) + after["saved_homes"][2] = {"id": 2, "user_id": 4, "listing_id": listing} + j = v.Checks(task); v.state_checks(j, trajectory(task), before, after) + assert j.result()["pass"], j.result() + + +def test_signup_requires_working_password_and_correct_save_owner(): + import bcrypt + before = initial_state(); after = copy.deepcopy(before) + user = {"id": 5, "email": "taylor.reed+test@example.com", "name": "Taylor Reed", + "password_hash": bcrypt.hashpw(b"compass-test-1234", bcrypt.gensalt(rounds=4)).decode(), + "phone": "", "city": "", "state": "", "budget_min": 0, "budget_max": 0, + "beds_min": 0, "preferred_property_types": "[]", "move_timeline": "", "has_agent": 0, + "receive_alerts": 1, "agent_id": None} + after["users"][5] = user + after["saved_homes"][2] = {"id": 2, "user_id": 5, "listing_id": 36} + j = v.Checks(4); v.state_checks(j, trajectory(4), before, after) + assert j.result()["pass"], j.result() + for mutation in ("password", "owner", "extra_profile"): + invalid = copy.deepcopy(after) + if mutation == "password": invalid["users"][5]["password_hash"] = bcrypt.hashpw(b"wrong", bcrypt.gensalt(rounds=4)).decode() + if mutation == "owner": invalid["saved_homes"][2]["user_id"] = 1 + if mutation == "extra_profile": invalid["users"][5]["budget_min"] = 1234 + j = v.Checks(4); v.state_checks(j, trajectory(4), before, invalid) + assert not j.result()["pass"] + + +def test_explicit_follow_agent_and_reopen_are_required_but_direct_browsing_is_not(): + t = trajectory(12) + for step in t["steps"]: + step["action"] = "navigate" + j = v.Checks(12); v.answer_checks(j, t) + assert not j.result()["pass"] + t = trajectory(0) + t["steps"] = [{"url": "http://127.0.0.1:40018" + v.detail_path(99), "action": "navigate"}] + j = v.Checks(0); v.answer_checks(j, t) + assert j.result()["pass"] + + +@pytest.mark.parametrize('answer', [ + 'Year built: 2016. Price per square foot: $1,861.93/sqft.', + 'Year built: 2016; 2016 sqft.', + 'Built 2016. Tour on 2026-07-12 at 11:00 AM.', + 'Built 2016. Tour on July 12, 2026.', +]) +def test_year_is_not_confused_with_ratios_areas_or_tour_dates(answer): + assert v.scalar(answer, 2016, 'year') + + +@pytest.mark.parametrize('answer', [ + 'Year built: 2017. Tour on 2016-07-12.', + 'Year built: 2016 or 2017.', + 'Year built: 2016. Built in 2017.', + '$2016 per sqft; construction year unknown.', + '2016 sqft; construction year unknown.', + 'Tour on July 12, 2016; construction year unknown.', +]) +def test_year_still_rejects_missing_or_contradictory_construction_year(answer): + assert not v.scalar(answer, 2016, 'year') + + +@pytest.mark.parametrize('status_text,expected', [ + ('Requested the in-person tour for 2026-07-12 and confirmed it on Tours. Tour status: requested.', True), + ('The tour is requested. I confirmed its details on Tours.', True), + ('Status: requested, not confirmed.', True), + ('I requested a tour. Tour status: confirmed.', False), + ('The requested tour is confirmed.', False), + ('Tour status: requested or confirmed.', False), + ('The tour is not requested.', False), +]) +def test_tour_status_is_distinct_from_ui_confirmation(status_text, expected): + t = trajectory(6) + t['final_answer'] = status_text + ' Year built: 2019.' + j = v.Checks(6) + v.answer_checks(j, t) + assert j.result()['pass'] is expected, j.result() diff --git a/sites/compass/verify/verify_0.py b/sites/compass/verify/verify_0.py new file mode 100644 index 00000000..81fdf061 --- /dev/null +++ b/sites/compass/verify/verify_0.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +"""Verifier for Compass--0; see verify/README.md for the input contract.""" +from verify_lib import main + +if __name__ == "__main__": + main(0) diff --git a/sites/compass/verify/verify_1.py b/sites/compass/verify/verify_1.py new file mode 100644 index 00000000..eb97a47e --- /dev/null +++ b/sites/compass/verify/verify_1.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +"""Verifier for Compass--1; see verify/README.md for the input contract.""" +from verify_lib import main + +if __name__ == "__main__": + main(1) diff --git a/sites/compass/verify/verify_10.py b/sites/compass/verify/verify_10.py new file mode 100644 index 00000000..faf89be4 --- /dev/null +++ b/sites/compass/verify/verify_10.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +"""Verifier for Compass--10; see verify/README.md for the input contract.""" +from verify_lib import main + +if __name__ == "__main__": + main(10) diff --git a/sites/compass/verify/verify_11.py b/sites/compass/verify/verify_11.py new file mode 100644 index 00000000..8786e26b --- /dev/null +++ b/sites/compass/verify/verify_11.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +"""Verifier for Compass--11; see verify/README.md for the input contract.""" +from verify_lib import main + +if __name__ == "__main__": + main(11) diff --git a/sites/compass/verify/verify_12.py b/sites/compass/verify/verify_12.py new file mode 100644 index 00000000..42068886 --- /dev/null +++ b/sites/compass/verify/verify_12.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +"""Verifier for Compass--12; see verify/README.md for the input contract.""" +from verify_lib import main + +if __name__ == "__main__": + main(12) diff --git a/sites/compass/verify/verify_13.py b/sites/compass/verify/verify_13.py new file mode 100644 index 00000000..1a93ae11 --- /dev/null +++ b/sites/compass/verify/verify_13.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +"""Verifier for Compass--13; see verify/README.md for the input contract.""" +from verify_lib import main + +if __name__ == "__main__": + main(13) diff --git a/sites/compass/verify/verify_14.py b/sites/compass/verify/verify_14.py new file mode 100644 index 00000000..c508d0b2 --- /dev/null +++ b/sites/compass/verify/verify_14.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +"""Verifier for Compass--14; see verify/README.md for the input contract.""" +from verify_lib import main + +if __name__ == "__main__": + main(14) diff --git a/sites/compass/verify/verify_15.py b/sites/compass/verify/verify_15.py new file mode 100644 index 00000000..b9d4a9f8 --- /dev/null +++ b/sites/compass/verify/verify_15.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +"""Verifier for Compass--15; see verify/README.md for the input contract.""" +from verify_lib import main + +if __name__ == "__main__": + main(15) diff --git a/sites/compass/verify/verify_16.py b/sites/compass/verify/verify_16.py new file mode 100644 index 00000000..42017035 --- /dev/null +++ b/sites/compass/verify/verify_16.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +"""Verifier for Compass--16; see verify/README.md for the input contract.""" +from verify_lib import main + +if __name__ == "__main__": + main(16) diff --git a/sites/compass/verify/verify_17.py b/sites/compass/verify/verify_17.py new file mode 100644 index 00000000..a487dc30 --- /dev/null +++ b/sites/compass/verify/verify_17.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +"""Verifier for Compass--17; see verify/README.md for the input contract.""" +from verify_lib import main + +if __name__ == "__main__": + main(17) diff --git a/sites/compass/verify/verify_2.py b/sites/compass/verify/verify_2.py new file mode 100644 index 00000000..204f2c7a --- /dev/null +++ b/sites/compass/verify/verify_2.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +"""Verifier for Compass--2; see verify/README.md for the input contract.""" +from verify_lib import main + +if __name__ == "__main__": + main(2) diff --git a/sites/compass/verify/verify_3.py b/sites/compass/verify/verify_3.py new file mode 100644 index 00000000..90941b22 --- /dev/null +++ b/sites/compass/verify/verify_3.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +"""Verifier for Compass--3; see verify/README.md for the input contract.""" +from verify_lib import main + +if __name__ == "__main__": + main(3) diff --git a/sites/compass/verify/verify_4.py b/sites/compass/verify/verify_4.py new file mode 100644 index 00000000..a53ea699 --- /dev/null +++ b/sites/compass/verify/verify_4.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +"""Verifier for Compass--4; see verify/README.md for the input contract.""" +from verify_lib import main + +if __name__ == "__main__": + main(4) diff --git a/sites/compass/verify/verify_5.py b/sites/compass/verify/verify_5.py new file mode 100644 index 00000000..c2100f57 --- /dev/null +++ b/sites/compass/verify/verify_5.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +"""Verifier for Compass--5; see verify/README.md for the input contract.""" +from verify_lib import main + +if __name__ == "__main__": + main(5) diff --git a/sites/compass/verify/verify_6.py b/sites/compass/verify/verify_6.py new file mode 100644 index 00000000..949a6444 --- /dev/null +++ b/sites/compass/verify/verify_6.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +"""Verifier for Compass--6; see verify/README.md for the input contract.""" +from verify_lib import main + +if __name__ == "__main__": + main(6) diff --git a/sites/compass/verify/verify_7.py b/sites/compass/verify/verify_7.py new file mode 100644 index 00000000..834e54d8 --- /dev/null +++ b/sites/compass/verify/verify_7.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +"""Verifier for Compass--7; see verify/README.md for the input contract.""" +from verify_lib import main + +if __name__ == "__main__": + main(7) diff --git a/sites/compass/verify/verify_lib.py b/sites/compass/verify/verify_lib.py new file mode 100644 index 00000000..9f230678 --- /dev/null +++ b/sites/compass/verify/verify_lib.py @@ -0,0 +1,417 @@ +"""Deterministic Compass grading against frozen runs and explicit DB snapshots. + +The recorder is trusted to report browser observations honestly. Image existence +checks validate packaging; they do not claim to interpret screenshot pixels. +""" +from __future__ import annotations + +import argparse +import ipaddress +import json +import re +import sqlite3 +import struct +import subprocess +import sys +import tempfile +import unicodedata +from pathlib import Path +from urllib.parse import parse_qs, unquote, urlsplit + +FACTS = json.loads(Path(__file__).with_name("facts.json").read_text()) +TARGETS = {int(k): v for k, v in FACTS["target_ids"].items()} +LISTINGS = {int(k): v for k, v in FACTS["listings"].items()} +STATEFUL = {4, 5, 6, 7, 10, 14, 15} +TABLES = {"agents", "cities", "listings", "users", "saved_homes", + "saved_searches", "collections", "tours", "inquiries"} + + +def norm(value): + text = unicodedata.normalize("NFKC", str(value)).casefold() + text = re.sub(r"(?<=\d),(?=\d{3}(?:\D|$))", "", text) + return re.sub(r"\s+", " ", text).strip() + + +def words(value): + return re.sub(r"[^\w]+", " ", norm(value)).strip() + + +def phrase(text, expected): + return bool(re.search(r"(?II", header[16:24]) + valid &= width >= 320 and height >= 200 + except (OSError, ValueError, struct.error): + valid = False + judge.check("step_screenshot_package", valid) + + +def state_checks(judge, trajectory, before, after): + task = judge.task + allowed = {4: {"users", "saved_homes"}, 5: {"users"}, 6: {"tours"}, + 7: {"collections", "saved_homes"}, 10: {"saved_searches"}, + 14: {"collections", "saved_homes"}, 15: {"inquiries"}}.get(task, set()) + for table in TABLES: + if table not in allowed: + judge.check("unchanged_" + table, before[table] == after[table]) + else: + for key, row in before[table].items(): + expected = dict(row) + if task == 5 and table == "users" and row["email"] == "alice.j@test.com": + expected["phone"] = "(415) 555-0199" + judge.check(f"preserve_{table}_{key}", after[table].get(key) == expected) + if task not in STATEFUL: + return + email = {4: "taylor.reed+test@example.com", 5: "alice.j@test.com", 6: "carol.lee@test.com", + 7: "david.kim@test.com", 10: "alice.j@test.com", 14: "david.kim@test.com", 15: "bob.smith@test.com"}[task] + uid = user_id(after, email) + judge.check("target_account", uid is not None) + if task == 4: + new = only_new(before, after, "users") + judge.check("one_registered_account", len(new) == 1 and new[0]["id"] == uid and new[0]["name"] == "Taylor Reed") + password_ok = False + if len(new) == 1: + try: + import bcrypt + password_ok = bcrypt.checkpw(b"compass-test-1234", new[0]["password_hash"].encode()) + except (ImportError, ValueError): + pass + judge.check("registered_password", password_ok) + defaults = {"phone": "", "city": "", "state": "", "budget_min": 0, "budget_max": 0, + "beds_min": 0, "preferred_property_types": "[]", "move_timeline": "", + "has_agent": 0, "receive_alerts": 1, "agent_id": None} + judge.check("registration_defaults", len(new) == 1 and all(new[0][key] == value for key, value in defaults.items())) + saved = only_new(before, after, "saved_homes") + judge.check("one_target_save", len(saved) == 1 and saved[0]["user_id"] == uid and saved[0]["listing_id"] == 36) + judge.check("saved_homes_confirmation", visited(trajectory, "/saved")) + elif task == 5: + judge.check("no_new_users", not only_new(before, after, "users")) + judge.check("phone_changed", uid in before["users"] and before["users"][uid]["phone"] != "(415) 555-0199") + judge.check("account_overview_confirmation", visited(trajectory, "/account")) + elif task == 6: + new = only_new(before, after, "tours") + expected = {"user_id": uid, "listing_id": 110, "requested_date": "2026-07-12", "requested_time": "11:00 AM", "tour_type": "in-person", "status": "requested"} + judge.check("one_exact_tour", len(new) == 1 and all(new[0][key] == value for key, value in expected.items())) + judge.check("tours_confirmation", visited(trajectory, "/tours")) + elif task in {7, 14}: + new = only_new(before, after, "collections") + members = {252, 253} if task == 7 else {233} + name = "Austin top picks" if task == 7 else "Austin garage picks" + valid = False + if len(new) == 1: + collection = new[0] + ids = json.loads(collection["listing_ids_json"]) + valid = (collection["user_id"] == uid and collection["name"] == name + and len(ids) == len(members) and set(ids) == members and bool(collection["share_token"])) + path = f'/collections/share/{collection["share_token"]}' if task == 7 else f'/collections/{collection["id"]}' + judge.check("collection_confirmation", visited(trajectory, path)) + if task == 7: + judge.check("answer_share_token", bool(re.search(r"(?= 0) + judge.check("answer_existing_location", phrase(text, "San Francisco") and (phrase(text, "CA") or phrase(text, "California"))) + return + if task == 10: + judge.check("answer_saved_criteria", phrase(text, "Boston") and phrase(text, "for sale") + and (phrase(text, "Condo") or phrase(text, "Condos")) + and scalar(text, 3, "beds")) + return + listing = LISTINGS[TARGETS[task]] + if task not in {4, 6, 12}: + judge.check("answer_target_address", address_matches(text, listing)) + if task not in {4, 6, 14, 15}: + judge.check("target_property_details", visited(trajectory, detail_path(listing["id"]))) + fields = {0: ["year_built", "mls_number"], 1: ["price", "year_built", "mls_number"], + 3: ["year_built", "agent_name"], 4: ["price", "property_type"], 6: ["year_built"], + 11: ["beds", "sqft", "year_built", "mls_number"], 12: ["year_built", "agent_name", "agent_email"], + 13: ["beds", "sqft", "year_built", "agent_name"], 14: ["mls_number"], + 15: ["agent_name"], 16: ["year_built", "agent_name"], 17: ["agent_name", "year_built"]} + for field in fields.get(task, []): + expected = listing[field] + ok = scalar(text, expected, "year" if field == "year_built" else field) if isinstance(expected, (int, float)) else phrase(text, expected) + if field == "agent_email": + ok = bool(re.search(r"(?