From 11b11cce5942be42cedc768f58e56db77e26696e Mon Sep 17 00:00:00 2001 From: Peichun Hua Date: Sat, 16 May 2026 11:26:54 +0800 Subject: [PATCH] Add Compass real-estate mirror (port 40015) Adds a Flask mirror of compass.com as the 16th WebHarbor site, with browse / search / filter, listing detail, agent directory, account flows (save, tour, inquiry, saved search, collection), and 18 WebVoyager-format benchmark tasks. sites/compass/: - app.py (1011 lines): 10 SQLAlchemy models, 35+ routes, token-overlap scored search with city/state/neighborhood boosts. User.check_password accepts both pbkdf2 and bcrypt prefixes so seed-time PBKDF2 hashes (deterministic) coexist with runtime Flask-Bcrypt writes. - seed_data.py (659 lines): idempotent function-level gates; PBKDF2 with fixed per-email salt to preserve byte-identical reset; Co-op pool backfilled to keep filter-based tasks at >=5 candidates. - 33 Jinja templates + 327-line hand-rolled CSS (white/black/serif to match the real Compass palette). - tasks.jsonl: 18 WebVoyager tasks (3 hard multi-step). - listings_clean.json: 524 normalized listings consumed by seed_data at build time (committed alongside the mirror, per the convention used by booking/, arxiv/, etc.). Registration (3 files, must stay in sync per AGENTS.md): - websyn_start.sh: compass appended to SITES, two ready-count 15s -> 16. - control_server.py: 'compass' appended to SITES. - Dockerfile: EXPOSE 8101 40000-40015. Heavy assets (instance_seed/compass.db, static/images/, ~129 MB packed) ship via the companion HuggingFace PR ChilleD/WebHarbor#3. .assets-revision already pins main, so once that merges this Just Works. Byte-identical reset verified: md5sum instance/compass.db instance_seed/compass.db -> 2a7458e3b6c3e3d0b39c32cca5d0f519 (both files). Co-Authored-By: Claude Opus 4.7 (1M context) --- Dockerfile | 2 +- control_server.py | 2 +- sites/compass/_health.py | 36 + sites/compass/app.py | 1011 + sites/compass/listings_clean.json | 23220 ++++++++++++++++ sites/compass/requirements.txt | 7 + sites/compass/seed_data.py | 659 + sites/compass/static/css/.gitkeep | 0 sites/compass/static/css/compass.css | 327 + sites/compass/static/icons/.gitkeep | 0 sites/compass/static/icons/compass_logo.svg | 1 + sites/compass/static/js/.gitkeep | 0 sites/compass/tasks.jsonl | 18 + sites/compass/templates/.gitkeep | 0 sites/compass/templates/404.html | 7 + sites/compass/templates/500.html | 7 + sites/compass/templates/_account_nav.html | 11 + sites/compass/templates/_card.html | 13 + sites/compass/templates/about.html | 9 + sites/compass/templates/account.html | 42 + sites/compass/templates/account_edit.html | 18 + sites/compass/templates/agent_detail.html | 40 + sites/compass/templates/agents.html | 44 + sites/compass/templates/base.html | 94 + sites/compass/templates/change_password.html | 17 + sites/compass/templates/city.html | 77 + .../compass/templates/collection_detail.html | 47 + sites/compass/templates/collection_new.html | 16 + sites/compass/templates/collection_share.html | 12 + sites/compass/templates/collections.html | 29 + sites/compass/templates/help.html | 19 + sites/compass/templates/homes_for_sale.html | 18 + sites/compass/templates/index.html | 75 + sites/compass/templates/inquiries.html | 23 + sites/compass/templates/inquiry_send.html | 19 + sites/compass/templates/listing_detail.html | 105 + sites/compass/templates/login.html | 13 + sites/compass/templates/luxury.html | 11 + sites/compass/templates/new_listings.html | 11 + sites/compass/templates/open_houses.html | 40 + sites/compass/templates/preferences.html | 31 + sites/compass/templates/register.html | 15 + sites/compass/templates/saved.html | 28 + sites/compass/templates/saved_searches.html | 50 + sites/compass/templates/search.html | 75 + sites/compass/templates/tour_request.html | 28 + sites/compass/templates/tours.html | 36 + websyn_start.sh | 8 +- 48 files changed, 26365 insertions(+), 6 deletions(-) create mode 100644 sites/compass/_health.py create mode 100644 sites/compass/app.py create mode 100644 sites/compass/listings_clean.json create mode 100644 sites/compass/requirements.txt create mode 100644 sites/compass/seed_data.py create mode 100644 sites/compass/static/css/.gitkeep create mode 100644 sites/compass/static/css/compass.css create mode 100644 sites/compass/static/icons/.gitkeep create mode 100644 sites/compass/static/icons/compass_logo.svg create mode 100644 sites/compass/static/js/.gitkeep create mode 100644 sites/compass/tasks.jsonl create mode 100644 sites/compass/templates/.gitkeep create mode 100644 sites/compass/templates/404.html create mode 100644 sites/compass/templates/500.html create mode 100644 sites/compass/templates/_account_nav.html create mode 100644 sites/compass/templates/_card.html create mode 100644 sites/compass/templates/about.html create mode 100644 sites/compass/templates/account.html create mode 100644 sites/compass/templates/account_edit.html create mode 100644 sites/compass/templates/agent_detail.html create mode 100644 sites/compass/templates/agents.html create mode 100644 sites/compass/templates/base.html create mode 100644 sites/compass/templates/change_password.html create mode 100644 sites/compass/templates/city.html create mode 100644 sites/compass/templates/collection_detail.html create mode 100644 sites/compass/templates/collection_new.html create mode 100644 sites/compass/templates/collection_share.html create mode 100644 sites/compass/templates/collections.html create mode 100644 sites/compass/templates/help.html create mode 100644 sites/compass/templates/homes_for_sale.html create mode 100644 sites/compass/templates/index.html create mode 100644 sites/compass/templates/inquiries.html create mode 100644 sites/compass/templates/inquiry_send.html create mode 100644 sites/compass/templates/listing_detail.html create mode 100644 sites/compass/templates/login.html create mode 100644 sites/compass/templates/luxury.html create mode 100644 sites/compass/templates/new_listings.html create mode 100644 sites/compass/templates/open_houses.html create mode 100644 sites/compass/templates/preferences.html create mode 100644 sites/compass/templates/register.html create mode 100644 sites/compass/templates/saved.html create mode 100644 sites/compass/templates/saved_searches.html create mode 100644 sites/compass/templates/search.html create mode 100644 sites/compass/templates/tour_request.html create mode 100644 sites/compass/templates/tours.html diff --git a/Dockerfile b/Dockerfile index 991e5ab..f653515 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,6 +33,6 @@ 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-40014 +EXPOSE 8101 40000-40015 CMD ["/opt/websyn_start.sh"] diff --git a/control_server.py b/control_server.py index c255253..a63f988 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', + 'coursera', 'espn', 'compass', ] BASE_PORT = 40000 WEBSYN_DIR = '/opt/WebSyn' diff --git a/sites/compass/_health.py b/sites/compass/_health.py new file mode 100644 index 0000000..e598472 --- /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 0000000..c7701d3 --- /dev/null +++ b/sites/compass/app.py @@ -0,0 +1,1011 @@ +"""Compass.com mirror — Flask app with real-estate browse + account features.""" +import json +import math +import os +import re +import secrets +from datetime import date, datetime, timedelta +from functools import wraps + +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 + + +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) + +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"] = ( + f"sqlite:///{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 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, default=0) + sales_volume_usd = db.Column(db.BigInteger, default=0) + transactions_count = db.Column(db.Integer, default=0) + 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): + 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) + 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) + price = db.Column(db.Integer, default=0) + beds = db.Column(db.Integer, default=0) + baths_full = db.Column(db.Integer, default=0) + baths_half = db.Column(db.Integer, default=0) + sqft = db.Column(db.Integer, default=0) + lot_sqft = db.Column(db.Integer, default=0) + year_built = db.Column(db.Integer, default=0) + property_type = db.Column(db.String(40), default="Single Family", 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, default=0) + days_on_compass = db.Column(db.Integer, default=0) + listed_at = db.Column(db.DateTime, default=datetime.utcnow) + + 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) + + has_parking = db.Column(db.Boolean, default=False) + has_pool = db.Column(db.Boolean, default=False) + has_doorman = db.Column(db.Boolean, default=False) + has_elevator = db.Column(db.Boolean, default=False) + has_garage = db.Column(db.Boolean, default=False) + has_waterfront = db.Column(db.Boolean, default=False) + pets_allowed = db.Column(db.Boolean, default=True) + furnished = db.Column(db.Boolean, default=False) + + 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): + return (self.baths_full or 0) + 0.5 * (self.baths_half or 0) + + def price_display(self): + if 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.status == "for-rent": + return 0 + return round(self.price / self.sqft) + + +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 ─────────────────────────────────────────────────────────────────── + + +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 + 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): + 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 baths.isdigit(): + qs = qs.filter((Listing.baths_full + Listing.baths_half) >= int(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 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 or 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_per_sqft() or 10**12) + elif key == "ppsf_desc": + items.sort(key=lambda x: -(L(x).price_per_sqft() or 0)) + 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()) + new_listings = (Listing.query.filter_by(is_new=True) + .order_by(Listing.id.desc()).limit(6).all()) + luxury = (Listing.query.filter_by(is_luxury=True) + .order_by(Listing.id).limit(6).all()) + return render_template("index.html", + featured=featured, new_listings=new_listings, + luxury=luxury) + + +@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(city=city, state=state, status=status) + 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) + + +@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.sales_volume_usd.desc()).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) + .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(request.args.get("next") or 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 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=["GET", "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 len(new) < 6: + error = "Password must be at least 6 characters." + 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: + current_user.budget_min = int(request.form.get("budget_min") or 0) + current_user.budget_max = int(request.form.get("budget_max") or 0) + current_user.beds_min = int(request.form.get("beds_min") or 0) + except ValueError: + current_user.budget_min = current_user.budget_min or 0 + types = request.form.getlist("property_types") + current_user.preferred_property_types = json.dumps(types) + current_user.move_timeline = request.form.get("move_timeline") or "" + 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(request.referrer or 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(request.referrer or 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 = { + "q": (request.form.get("q") or "").strip(), + "city": (request.form.get("city") or "").strip(), + "price_min": request.form.get("price_min") or "", + "price_max": request.form.get("price_max") or "", + "beds": request.form.get("beds") or "", + "property_type": request.form.get("property_type") or "", + } + 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(request.referrer or url_for("collection_detail", cid=c.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": + t = Tour( + user_id=current_user.id, listing_id=L.id, + requested_date=(request.form.get("date") or "").strip(), + requested_time=(request.form.get("time") or "").strip(), + tour_type=(request.form.get("tour_type") or "in-person").strip(), + 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 + i = Inquiry( + user_id=uid, listing_id=L.id, agent_id=L.agent_id, + name=(request.form.get("name") or (current_user.name if uid else "")), + email=(request.form.get("email") or (current_user.email if uid else "")), + phone=(request.form.get("phone") or ""), + subject=(request.form.get("subject") or + f"Inquiry about {L.address}"), + message=(request.form.get("message") or "").strip(), + ) + db.session.add(i) + db.session.commit() + flash("Your message has been sent. The agent will reach out shortly.", + "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 # noqa: E402 + +with app.app_context(): + db.create_all() + seed_database() + seed_benchmark_users() + + +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/listings_clean.json b/sites/compass/listings_clean.json new file mode 100644 index 0000000..f57d7cd --- /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/requirements.txt b/sites/compass/requirements.txt new file mode 100644 index 0000000..c769678 --- /dev/null +++ b/sites/compass/requirements.txt @@ -0,0 +1,7 @@ +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 diff --git a/sites/compass/seed_data.py b/sites/compass/seed_data.py new file mode 100644 index 0000000..f6d602e --- /dev/null +++ b/sites/compass/seed_data.py @@ -0,0 +1,659 @@ +"""Seed data builder for the compass mirror. + +Reads listings_clean.json (committed alongside the rest of the +mirror) and constructs Listing, Agent, City rows. Adds benchmark users with +saved homes, tours, inquiries, saved searches, and collections so tasks can +reference any of them. + +Idempotent: every seed_*() function early-returns if its rows are already +populated. +""" +import hashlib +import json +import os +import random +import re +from datetime import date, datetime, timedelta + +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) +LISTINGS_JSON = os.path.join(BASE_DIR, "listings_clean.json") + + +# ─── Deterministic helpers ──────────────────────────────────────────────────── + + +def _h(*parts) -> int: + """Stable integer hash so seeding produces the same output each boot.""" + return int(hashlib.md5("|".join(map(str, parts)).encode()).hexdigest(), 16) + + +def _pick(seq, *parts): + return seq[_h(*parts) % len(seq)] if seq else None + + +def _slug(s: str) -> str: + s = re.sub(r"[^A-Za-z0-9]+", "-", (s or "").strip().lower()).strip("-") + return s or "x" + + +# ─── Vocabulary ─────────────────────────────────────────────────────────────── + + +CITY_BLURBS = { + "New York": "Iconic skyline, walkable neighborhoods, and the country's deepest co-op and condo market.", + "Los Angeles": "Architectural homes from Hollywood Hills to the Pacific, with year-round outdoor living.", + "Miami": "Waterfront condos, palm-lined streets, and an international design scene.", + "San Francisco": "Victorian charm meets Pacific views across the city's distinctive hills and neighborhoods.", + "Chicago": "Lake Michigan views, historic brick lofts, and the country's most distinctive architecture.", + "Boston": "Brownstones, river views, and walkable historic neighborhoods with elite universities.", + "Austin": "Hill country sunsets, lakefront retreats, and a thriving tech-fueled market.", + "Seattle": "Floating homes, midcentury treasures, and water-and-mountain views in equal measure.", + "Denver": "Mile-high mountain access, modernist new builds, and walkable urban core.", + "Aspen": "Mountain estates, ski-in residences, and trophy properties in one of the most exclusive markets in America.", + "Washington": "Federal-style row houses, leafy embassy quarters, and a tightly-held historic market.", +} + +CITY_HERO_DEFAULT = "/static/images/hero-compass.svg" + +PROPERTY_TYPES = ["Single Family", "Condo", "Co-op", "Townhouse", + "Multi-Family", "Land", "Apartment"] + +FEATURE_POOL = { + "Single Family": ["Hardwood floors", "Renovated kitchen", "Primary suite", + "Finished basement", "Two-car garage", "Backyard", + "Central air", "Mudroom", "Bonus room", "Vaulted ceilings"], + "Condo": ["Floor-to-ceiling windows", "Open kitchen", + "In-unit laundry", "Building gym", "Concierge", + "Roof deck", "Pet friendly", "Storage unit", + "Walk-in closet", "Smart thermostat"], + "Co-op": ["Pre-war detail", "Doorman building", "Sun-filled rooms", + "Storage", "Bike room", "Roof access", + "Restored moldings", "Eat-in kitchen"], + "Townhouse": ["Stoop entrance", "Garden", "Original details", + "Updated systems", "Private outdoor space", + "Garage parking", "South-facing rear"], + "Multi-Family": ["Separate utilities", "Owner's unit", + "Tenant-paying-rent", "Off-street parking", + "Updated roof", "Vinyl siding"], + "Land": ["Buildable lot", "Mountain views", "Utility access", + "Water rights", "Conservation easement", + "Wooded acreage"], + "Apartment": ["Hardwood floors", "Renovated kitchen", + "Stainless appliances", "Closet space", + "Pet friendly", "On-site laundry", "Roof access"], +} + +DESCRIPTIONS = [ + "Sun-soaked rooms, generous ceiling heights, and a layout designed for both quiet mornings and effortless entertaining.", + "A turnkey home in a landmark setting — every system updated, every finish considered, with a private outdoor escape rare for the neighborhood.", + "Light pours through oversized windows in this thoughtfully renovated home, where classic details meet a modern open-plan layout.", + "Tucked on a quiet block, this residence pairs a chef's kitchen with a primary suite that feels like a true retreat.", + "Polished concrete floors and gallery walls give this property a serene, gallery-like quality. Owner-occupied; meticulously maintained.", + "Behind a brick facade, oak floors and a south-facing garden create one of the most-loved homes on the block.", + "Open kitchen with island, walk-in pantry, and a primary suite with double walk-in closets and a spa-style bath.", + "Soaring ceilings, recently updated mechanicals, and a back-of-house layout that the current owners use as a media room.", + "Quiet, sun-filled, and steps to transit. Renovated systems, refinished hardwoods, and pristine condition throughout.", + "Architect-renovated with custom millwork, a vented chef's kitchen, and a primary suite that overlooks the rear garden.", +] + +AGENT_FIRST = [ + "Olivia", "Marcus", "Priya", "Diego", "Hana", "Theo", "Sofia", + "Jamal", "Anya", "Caleb", "Mei", "Naomi", "Felix", "Greta", + "Yusuf", "Riley", "Camila", "Joon", "Sasha", "Quincy", + "Lena", "Omar", "Ines", "Ravi", "Cleo", "Dante", "Tomas", + "Aiko", "Talia", "Sven", "Magnus", "Halima", "Kiran", "Beatriz", + "Liev", "Soraya", "Ezra", "Mara", "Niko", "Renata", +] +AGENT_LAST = [ + "Thornton", "Velasquez", "Park", "Greenfield", "Ashbury", "Whitmore", + "Caldwell", "Okafor", "Nakamura", "Esposito", "Trevino", "Hadid", + "Bjornson", "Chevalier", "Harrington", "Yoon", "Pellegrini", "Marchetti", + "Sutherland", "Devereaux", "Mendelsohn", "Saint-Clair", "Rosado", + "Holloway", "Vanderkamp", "Eliasson", "Khouri", "Ostrowski", + "Lindquist", "Pemberton", "Galindo", "Vasquez-Lim", "Brennan", +] + +# Compass specialty language — keep generic to avoid leak-via-tag +AGENT_SPECIALTIES = [ + ["Luxury Listings", "Waterfront"], + ["Condos & Co-ops", "First-Time Buyers"], + ["Investment Properties", "Multi-Family"], + ["New Development", "Compass Concierge"], + ["Townhouses", "Historic Properties"], + ["Relocation", "Corporate Buyers"], + ["Ski-in / Ski-out", "Mountain Estates"], + ["International Buyers", "Off-Market Listings"], +] + +LANGUAGE_OPTIONS = [ + ["English"], ["English", "Spanish"], ["English", "Mandarin"], + ["English", "French"], ["English", "Portuguese"], + ["English", "Korean"], ["English", "Italian"], ["English", "Russian"], +] + + +# ─── Seed: cities ────────────────────────────────────────────────────────────── + + +def _city_slug(name: str, state: str) -> str: + return f"{_slug(name)}-{state.lower()}" + + +def seed_cities(): + from app import City, db + if City.query.count() > 0: + return + data = json.load(open(LISTINGS_JSON)) + seen = {} + for L in data: + key = (L["city"], L["state"]) + seen.setdefault(key, []).append(L) + featured = {"New York", "Los Angeles", "Miami", "San Francisco", + "Boston", "Austin", "Aspen", "Denver"} + for (city, state), Ls in sorted(seen.items()): + # Pick a hero photo from one of the listings in this city. + hero = "" + for L in Ls: + uuid = (L.get("hero_uuid") or "").split("/")[-1] + lid = L.get("listing_id") + cand = f"/static/images/listings/{lid}/hero.webp" + full = os.path.join(BASE_DIR, cand.lstrip("/")) + if os.path.exists(full): + hero = cand + break + c = City( + slug=_city_slug(city, state), + name=city, state=state, + hero_image=hero or CITY_HERO_DEFAULT, + blurb=CITY_BLURBS.get(city, f"Find homes for sale in {city}, {state}."), + is_featured=(city in featured), + ) + db.session.add(c) + db.session.commit() + + +# ─── Seed: agents ────────────────────────────────────────────────────────────── + + +def _build_agent(i: int, city: str, state: str): + from app import Agent + first = AGENT_FIRST[_h("af", i) % len(AGENT_FIRST)] + last = AGENT_LAST[_h("al", i) % len(AGENT_LAST)] + name = f"{first} {last}" + slug = f"{_slug(name)}-{i:03d}" + specialties = AGENT_SPECIALTIES[_h("as", i) % len(AGENT_SPECIALTIES)] + languages = LANGUAGE_OPTIONS[_h("ag", i) % len(LANGUAGE_OPTIONS)] + years = 3 + (_h("ay", i) % 28) + transactions = 20 + (_h("at", i) % 380) + avg_price = 800_000 + (_h("av", i) % 7_500_000) + volume = transactions * avg_price + is_top = volume > 200_000_000 + return Agent( + slug=slug, name=name, + title="Real Estate Agent" if not is_top else "Senior Real Estate Agent", + photo="", # no agent headshots in the asset pack — keep blank, render initials + bio=(f"{first} has spent {years} years guiding buyers and sellers across the " + f"{city} market, with a focus on {specialties[0].lower()} and a reputation " + f"for steady negotiation and discreet service."), + email=f"{_slug(name)}@compass.com", + phone=f"({200 + (i % 700):03d}) {100 + (i % 900):03d}-{1000 + (i % 9000):04d}", + license_number=f"RE{state}{1_000_000 + i}", + city=city, state=state, + years_experience=years, + sales_volume_usd=int(volume), + transactions_count=transactions, + languages=json.dumps(languages), + specialties=json.dumps(specialties), + is_top_agent=is_top, + ) + + +def seed_agents(): + from app import Agent, db + if Agent.query.count() > 0: + return + data = json.load(open(LISTINGS_JSON)) + city_pairs = sorted({(L["city"], L["state"]) for L in data + if L.get("city") and L.get("state")}) + # 3 agents per city -> ~33 agents across 11 cities. + agents = [] + for ci, (city, state) in enumerate(city_pairs): + for j in range(3): + i = ci * 3 + j + agents.append(_build_agent(i, city, state)) + for a in agents: + db.session.add(a) + db.session.commit() + + +# ─── Seed: listings ─────────────────────────────────────────────────────────── + + +def _derive_property_type(L) -> str: + """Use deterministic heuristics: zip-shape + city + status to map a type.""" + city = L.get("city") + if L.get("is_rent"): + return "Apartment" + # Co-ops are NY-only in this seed. Townhouses are common in DC/Boston/Brooklyn. + if city == "New York" and _h("pt", L["listing_id"]) % 5 == 0: + return "Co-op" + if city in {"Boston", "Washington"} and _h("pt", L["listing_id"]) % 4 == 0: + return "Townhouse" + if L.get("beds") and L["beds"] >= 4 and _h("pt", L["listing_id"]) % 3 == 0: + return "Single Family" + if (L.get("beds") or 0) <= 3: + return "Condo" + return "Single Family" + + +def _derive_year_built(L) -> int: + h = _h("yr", L["listing_id"]) + city = L.get("city") + if city in {"Boston", "New York", "Washington"}: + return 1880 + (h % 145) + if city == "Aspen": + return 1985 + (h % 40) + if city in {"Miami", "Austin"}: + return 1960 + (h % 65) + return 1925 + (h % 100) + + +def _derive_lot_sqft(L, property_type) -> int: + h = _h("lot", L["listing_id"]) + if property_type in {"Condo", "Co-op", "Apartment"}: + return 0 + if property_type == "Townhouse": + return 1200 + (h % 2200) + if property_type == "Land": + return 40_000 + (h % 500_000) + if property_type == "Multi-Family": + return 2400 + (h % 4800) + return 3000 + (h % 18000) + + +def _derive_open_house(L): + h = _h("oh", L["listing_id"]) + if h % 4 != 0: + return False, "", "" + # next-Saturday relative to a fixed reference (deterministic per listing) + # but we want stable dates that don't change across reseeds — pick fixed offsets + base = date(2026, 5, 16) # reference Saturday + offset_weeks = (h // 4) % 6 + d = base + timedelta(days=offset_weeks * 7) + time_slots = ["11am-1pm", "1pm-3pm", "2pm-4pm", "3pm-5pm"] + return True, d.isoformat(), time_slots[h % 4] + + +def _features_for(property_type, L) -> list: + pool = FEATURE_POOL.get(property_type, FEATURE_POOL["Single Family"]) + h = _h("f", L["listing_id"]) + n = 4 + (h % 4) + return [pool[(h + i) % len(pool)] for i in range(n)] + + +def _gallery_paths(listing_id: str, count: int) -> list: + """Return list of /static/images/listings//{hero,gallery_N}.webp that exist.""" + site = BASE_DIR + rel_root = os.path.join("static", "images", "listings", listing_id) + abs_root = os.path.join(site, rel_root) + out = [] + for i in range(count): + fn = "hero.webp" if i == 0 else f"gallery_{i}.webp" + if os.path.exists(os.path.join(abs_root, fn)): + out.append(f"/{rel_root}/{fn}") + return out + + +def _round_price(p): + if not p: + return 0 + if p >= 1_000_000: + # round to nearest $5k + return int(round(p / 5000) * 5000) + return int(round(p / 1000) * 1000) + + +def _backfill_coop_thin_data(listing_id, beds, baths_full, sqft): + """Compass's listing feed omits beds/baths/sqft for many Co-op listings, + leaving the filter pool too thin to make tasks like "find a 2BR Co-op + under X" meaningfully challenging. For Co-ops only, deterministically + backfill any zero field with a plausible value so the pool is usable. + Only applied to Co-ops — other property types keep the scrape's own + values so tasks tuned to existing distributions don't shift.""" + if not beds: + beds = 2 + (_h("co_beds", listing_id) % 4) # 2-5 + if not baths_full: + # Scale with beds so we don't get a 4BR 1-bath: ceil(beds/2) plus a + # small variation. Yields 2BR→1-2, 3BR→2-3, 4BR→2-3, 5BR→3-4. + baths_full = max(1, (beds + 1) // 2 + (_h("co_baths", listing_id) % 2)) + if not sqft: + # 700-1500 sqft per bedroom, deterministic + sqft = beds * (700 + (_h("co_sqft", listing_id) % 800)) + return beds, baths_full, sqft + + +def seed_database(): + from app import Agent, Listing, db + # Function-level gate. + if Listing.query.count() > 0: + return + + seed_cities() + seed_agents() + + data = json.load(open(LISTINGS_JSON)) + + # Distribute agents round-robin by city + agents = Agent.query.all() + agents_by_city = {} + for a in agents: + agents_by_city.setdefault(a.city, []).append(a) + + # MLS counter + mls_seed = 100000 + listing_count = 0 + + for idx, L in enumerate(data): + if not L.get("city") or not L.get("price"): + continue + + gallery = _gallery_paths(L["listing_id"], 4) + if not gallery: + continue + hero = gallery[0] + + property_type = _derive_property_type(L) + year_built = _derive_year_built(L) + lot_sqft = _derive_lot_sqft(L, property_type) + feats = _features_for(property_type, L) + is_open, oh_date, oh_time = _derive_open_house(L) + + # Boolean features derived deterministically + h = _h("bool", L["listing_id"]) + is_compass_exclusive = (h % 11) == 0 + is_new = (h % 7) == 0 + is_pending = (h % 23) == 0 + is_luxury = (L.get("price") or 0) >= 5_000_000 + + has_parking = property_type != "Apartment" and (h >> 2) % 3 != 0 + has_pool = (h >> 3) % 9 == 0 + has_doorman = property_type in {"Condo", "Co-op", "Apartment"} and (h >> 4) % 4 == 0 + has_elevator = property_type in {"Condo", "Co-op", "Apartment", "Townhouse"} and (h >> 5) % 3 != 0 + has_garage = property_type in {"Single Family", "Townhouse"} and (h >> 6) % 2 == 0 + has_waterfront = (h >> 7) % 17 == 0 + pets_allowed = (h >> 8) % 5 != 0 + furnished = L.get("is_rent") and (h >> 9) % 4 == 0 + + # Description: pick one from the pool by hash, no city/price leaks + desc = DESCRIPTIONS[h % len(DESCRIPTIONS)] + + # Compose slug & address + street = L.get("street") or "Address withheld" + unit_match = re.search(r"(?:unit|apt|#)\s*([A-Z0-9\-]+)", street, re.I) + unit = unit_match.group(1) if unit_match else "" + slug_base = _slug(f"{street}-{L.get('city')}-{L.get('state')}-{L.get('listing_id')[-8:]}") + slug = slug_base[:180] + + # Avoid slug collisions + existing = Listing.query.filter_by(slug=slug).first() + if existing: + slug = f"{slug}-{idx}" + + # Pick an agent in this city; fall back to any agent + agent_pool = agents_by_city.get(L["city"]) or agents + agent = agent_pool[_h("ag", L["listing_id"]) % len(agent_pool)] + + days = 1 + (_h("d", L["listing_id"]) % 240) + mls = f"MLS{mls_seed + idx:06d}" + # Round price to realistic step + price = _round_price(L.get("price")) + + beds_val = L.get("beds") or 0 + baths_full_val = L.get("baths_full") or int(L.get("baths") or 0) + sqft_val = L.get("sqft") or 0 + if property_type == "Co-op": + beds_val, baths_full_val, sqft_val = _backfill_coop_thin_data( + L["listing_id"], beds_val, baths_full_val, sqft_val, + ) + + listing = Listing( + listing_id_sha=L.get("listing_id"), + slug=slug, + address=street, + unit=unit, + neighborhood=L.get("neighborhood") or "", + city=L.get("city"), + state=L.get("state"), + zip=L.get("zip") or "", + latitude=L.get("latitude"), + longitude=L.get("longitude"), + status="for-rent" if L.get("is_rent") else "for-sale", + price=price, + beds=beds_val, + baths_full=baths_full_val, + baths_half=L.get("baths_half") or 0, + sqft=sqft_val, + lot_sqft=lot_sqft, + year_built=year_built, + property_type=property_type, + description=desc, + features=json.dumps(feats), + hero_image=hero, + gallery_images=json.dumps(gallery), + mls_number=mls, + hoa_fee_usd_month=(150 + (h % 1850)) if property_type in {"Condo", "Co-op", "Townhouse", "Apartment"} else 0, + days_on_compass=days, + listed_at=datetime(2026, 1, 1) + timedelta(days=days % 120), + is_open_house=is_open, + open_house_date=oh_date, + open_house_time=oh_time, + is_new=is_new, + is_compass_exclusive=is_compass_exclusive, + is_luxury=is_luxury, + is_pending=is_pending, + has_parking=has_parking, + has_pool=has_pool, + has_doorman=has_doorman, + has_elevator=has_elevator, + has_garage=has_garage, + has_waterfront=has_waterfront, + pets_allowed=pets_allowed, + furnished=furnished, + agent_id=agent.id, + ) + db.session.add(listing) + listing_count += 1 + + db.session.commit() + + +# ─── Seed: benchmark users + their data ─────────────────────────────────────── + + +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(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(city=c_cfg["filter_city"], status="for-sale") + .order_by(Listing.price).limit(20).all()) + pick = [candidates[(_h("col", user.email, i)) % len(candidates)].id + for i in range(3)] if candidates else [] + # 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(city=cfg["tour_city"], status="for-sale") + .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/static/css/.gitkeep b/sites/compass/static/css/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/sites/compass/static/css/compass.css b/sites/compass/static/css/compass.css new file mode 100644 index 0000000..e9d734d --- /dev/null +++ b/sites/compass/static/css/compass.css @@ -0,0 +1,327 @@ +/* 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-family: var(--serif); font-size: 2.4rem; line-height: 1; } +.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); } diff --git a/sites/compass/static/icons/.gitkeep b/sites/compass/static/icons/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/sites/compass/static/icons/compass_logo.svg b/sites/compass/static/icons/compass_logo.svg new file mode 100644 index 0000000..2e4c940 --- /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 0000000..e69de29 diff --git a/sites/compass/tasks.jsonl b/sites/compass/tasks.jsonl new file mode 100644 index 0000000..951208f --- /dev/null +++ b/sites/compass/tasks.jsonl @@ -0,0 +1,18 @@ +{"web_name": "Compass", "id": "Compass--0", "ques": "Find homes for sale in Miami, Florida and report how many 3-bedroom condos are currently listed.", "web": "http://localhost:40015/", "upstream_url": "https://www.compass.com/"} +{"web_name": "Compass", "id": "Compass--1", "ques": "Search for homes in San Francisco and find the least expensive condo with at least 2 bedrooms. Report its address and price.", "web": "http://localhost:40015/", "upstream_url": "https://www.compass.com/"} +{"web_name": "Compass", "id": "Compass--2", "ques": "Open the listing at 1425 Brickell Avenue, Unit 42F in Miami. What is the price, square footage, and year built?", "web": "http://localhost:40015/", "upstream_url": "https://www.compass.com/"} +{"web_name": "Compass", "id": "Compass--3", "ques": "Browse New York Co-op listings. Among Co-ops with at least 2 bedrooms, find the lowest-priced one and report its full address and MLS number.", "web": "http://localhost:40015/", "upstream_url": "https://www.compass.com/"} +{"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'. Then save the New York condo at 50 King Street, Unit 9A. Confirm the listing appears on your Saved Homes page.", "web": "http://localhost:40015/", "upstream_url": "https://www.compass.com/"} +{"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 is shown on your account overview.", "web": "http://localhost:40015/", "upstream_url": "https://www.compass.com/"} +{"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, then confirm the tour appears on your Tours page.", "web": "http://localhost:40015/", "upstream_url": "https://www.compass.com/"} +{"web_name": "Compass", "id": "Compass--7", "ques": "Log in as david.kim@test.com (password webharbor123). Create a new collection called 'Austin top picks', then add 3305 Dolphin Drive and 1036 Liberty Park Drive Unit 38A to it. Report the collection's share token.", "web": "http://localhost:40015/", "upstream_url": "https://www.compass.com/"} +{"web_name": "Compass", "id": "Compass--8", "ques": "Browse the Compass agent directory. Filter to agents in Aspen, CO and report the name of the agent with the highest total sales volume.", "web": "http://localhost:40015/", "upstream_url": "https://www.compass.com/"} +{"web_name": "Compass", "id": "Compass--9", "ques": "Visit the Open Houses page, filter to Miami, and report how many open houses are scheduled in total.", "web": "http://localhost:40015/", "upstream_url": "https://www.compass.com/"} +{"web_name": "Compass", "id": "Compass--10", "ques": "Search Compass for homes in Boston, then save a search named 'Boston townhouses 3BR' with property type Townhouse and minimum 3 bedrooms. After saving, confirm the saved search is visible on your Saved Searches page.", "web": "http://localhost:40015/", "upstream_url": "https://www.compass.com/"} +{"web_name": "Compass", "id": "Compass--11", "ques": "Find the listing in Aspen with the highest list price among single-family homes. Report its address, number of bedrooms, and square footage.", "web": "http://localhost:40015/", "upstream_url": "https://www.compass.com/"} +{"web_name": "Compass", "id": "Compass--12", "ques": "On Compass, find the for-sale listing at 17145 Southwest 90th Avenue in Miami. Compute the price per square foot (round to the nearest dollar) and report it.", "web": "http://localhost:40015/", "upstream_url": "https://www.compass.com/"} +{"web_name": "Compass", "id": "Compass--13", "ques": "Browse for-sale listings in Miami built after 2015 (year built >= 2016) with non-zero square footage. Sort by price per square foot from low to high and report the address of the second result.", "web": "http://localhost:40015/", "upstream_url": "https://www.compass.com/"} +{"web_name": "Compass", "id": "Compass--14", "ques": "In Austin, find the cheapest single-family home with at least 3 bedrooms that includes a garage. Add it to a new collection named 'Austin garage picks'. Report the home's address.", "web": "http://localhost:40015/", "upstream_url": "https://www.compass.com/"} +{"web_name": "Compass", "id": "Compass--15", "ques": "Log in as bob.smith@test.com (password webharbor123). Find his earliest tour request (the one with the earliest requested date), identify the listing agent for that home, then send an inquiry to that agent with the subject 'Following up on my tour'. Report the agent's name.", "web": "http://localhost:40015/", "upstream_url": "https://www.compass.com/"} +{"web_name": "Compass", "id": "Compass--16", "ques": "On Compass, compare the listings at 425 West 24th Street Unit 1F in New York, 130 Prospect Place Unit 1 in New York, and 482 11th Street in New York. Report which listing has the lowest price per square foot.", "web": "http://localhost:40015/", "upstream_url": "https://www.compass.com/"} +{"web_name": "Compass", "id": "Compass--17", "ques": "On the Compass Luxury page, find the most expensive Condo (filter by property type Condo on the search page if needed). Report its address and the listing agent's name.", "web": "http://localhost:40015/", "upstream_url": "https://www.compass.com/"} diff --git a/sites/compass/templates/.gitkeep b/sites/compass/templates/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/sites/compass/templates/404.html b/sites/compass/templates/404.html new file mode 100644 index 0000000..0054145 --- /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 0000000..65fc748 --- /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 0000000..e5d90b5 --- /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 0000000..9a0aca4 --- /dev/null +++ b/sites/compass/templates/_card.html @@ -0,0 +1,13 @@ + +
+ {% if L.is_compass_exclusive %}Compass Exclusive{% elif L.is_new %}New{% elif L.is_open_house %}Open House{% elif L.is_pending %}Pending{% endif %} + {% if L.hero_image %}{{ L.address }}{% endif %} +
+
{{ L.price_display() }}
+
{{ L.address }}{% if L.neighborhood %} · {{ L.neighborhood }}{% endif %}
+
+ {% if L.beds %}{{ L.beds }} bd · {% endif %} + {% if L.baths_full or L.baths_half %}{{ L.baths_full + 0.5 * L.baths_half }} ba · {% endif %} + {% if L.sqft %}{{ '{:,}'.format(L.sqft) }} sq ft{% endif %} +
+
diff --git a/sites/compass/templates/about.html b/sites/compass/templates/about.html new file mode 100644 index 0000000..274fbb0 --- /dev/null +++ b/sites/compass/templates/about.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} +{% block content %} +
+

About Compass

+

Compass is a real estate technology company powering the country's largest residential brokerage. Our mission is to help everyone find their place in the world. We serve buyers, renters, sellers, agents, and developers with the most accurate market data and the most-skilled agents in their local market.

+

Compass mirror — about this site

+

This is a deterministic mirror of compass.com built for the WebHarbor agent benchmark. It is not affiliated with Compass, Inc.

+
+{% endblock %} diff --git a/sites/compass/templates/account.html b/sites/compass/templates/account.html new file mode 100644 index 0000000..34cccc5 --- /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 0000000..0c64850 --- /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 0000000..2ab96fd --- /dev/null +++ b/sites/compass/templates/agent_detail.html @@ -0,0 +1,40 @@ +{% extends "base.html" %} +{% block title %}{{ agent.name }} | Compass Agent{% endblock %} +{% block content %} +
+
+
+
{{ agent.name.split()[0][0] }}{{ agent.name.split()[-1][0] }}
+

{{ agent.name }}

+

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

+

{{ agent.bio }}

+
+
Phone
{{ agent.phone }}
+
Email
{{ agent.email }}
+
License
{{ agent.license_number }}
+
Years of experience
{{ agent.years_experience }}
+
Languages
{{ agent.get_languages()|join(', ') }}
+
Specialties
{{ agent.get_specialties()|join(', ') }}
+
+
+
+

Career stats

+
+
{{ agent.transactions_count }}Transactions closed
+
{{ agent.sales_volume_display() }}Total sales volume
+
{{ agent.years_experience }}Years with Compass
+
{{ listings|length }}Active listings
+
+ +

Active listings

+ {% if listings %} +
+ {% for L in listings %}{% include "_card.html" %}{% endfor %} +
+ {% else %} +
No active listings at the moment.
+ {% endif %} +
+
+
+{% endblock %} diff --git a/sites/compass/templates/agents.html b/sites/compass/templates/agents.html new file mode 100644 index 0000000..b61b5f1 --- /dev/null +++ b/sites/compass/templates/agents.html @@ -0,0 +1,44 @@ +{% extends "base.html" %} +{% block title %}Find a Compass Agent{% endblock %} +{% block content %} +
+

Find a Compass Agent

+

Local experts ready to help you find your next home or sell your current one.

+ +
+
+ + +
+ + Reset +
+ +
{{ agents|length }} agents{% if filter_city %} in {{ filter_city }}{% endif %}.
+ + +
+{% endblock %} diff --git a/sites/compass/templates/base.html b/sites/compass/templates/base.html new file mode 100644 index 0000000..4e415be --- /dev/null +++ b/sites/compass/templates/base.html @@ -0,0 +1,94 @@ + + + + + + {% block title %}Compass — Find Real Estate, Homes for Sale, Apartments & Houses{% endblock %} + + + + +
+
+ + +
+ {% if current_user.is_authenticated %} + Saved{% if saved_count %} ({{ saved_count }}){% endif %} + {{ current_user.name.split()[0] }} +
+ + +
+ {% else %} + Log in + Join + {% endif %} +
+
+
+ +{% with messages = get_flashed_messages(with_categories=true) %} + {% if messages %} +
+ {% for cat, msg in messages %} +
{{ msg }}
+ {% endfor %} +
+ {% endif %} +{% endwith %} + +
{% block content %}{% endblock %}
+ + + + diff --git a/sites/compass/templates/change_password.html b/sites/compass/templates/change_password.html new file mode 100644 index 0000000..07911f9 --- /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 0000000..9b34c96 --- /dev/null +++ b/sites/compass/templates/city.html @@ -0,0 +1,77 @@ +{% 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 %} + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + + + + +
+ + +
+ + Reset +
+ +
{{ 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 0000000..a85e2c2 --- /dev/null +++ b/sites/compass/templates/collection_detail.html @@ -0,0 +1,47 @@ +{% 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 a home by id

+
+ +
+ + +
+ +
+
+
+{% endblock %} diff --git a/sites/compass/templates/collection_new.html b/sites/compass/templates/collection_new.html new file mode 100644 index 0000000..6b986a3 --- /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 0000000..17c79b5 --- /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 0000000..93d8d3d --- /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/help.html b/sites/compass/templates/help.html new file mode 100644 index 0000000..706b8e3 --- /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, and we'll connect you with the listing agent.

+ +

What is a Compass Collection?

+

Collections let you organize, compare, and share homes you're interested in — privately with your partner or family, or with your Compass agent.

+ +

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 0000000..90b4968 --- /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 0000000..c6adb4d --- /dev/null +++ b/sites/compass/templates/index.html @@ -0,0 +1,75 @@ +{% extends "base.html" %} +{% block content %} + +
+

Find your place

+

Search homes for sale, rentals, and new developments — guided by Compass agents.

+ +
+ +
+
+

Featured cities

+ All cities → +
+
+ {% for c in FEATURED_CITIES %} + +
+
{{ c.name }}, {{ c.state }}
+
+
+ {% endfor %} +
+
+ +{% if featured %} +
+
+
+
+

Compass Exclusives

+

Homes you can only find with Compass.

+
+
+
+ {% for L in featured %} + {% include "_card.html" %} + {% endfor %} +
+
+
+{% endif %} + +{% if new_listings %} +
+
+

New on Compass

+ See all new → +
+
+ {% for L in new_listings %} + {% include "_card.html" %} + {% endfor %} +
+
+{% endif %} + +{% if luxury %} +
+
+

Compass Luxury

+ Explore → +
+
+ {% for L in luxury[:6] %} + {% include "_card.html" %} + {% endfor %} +
+
+{% endif %} + +{% endblock %} diff --git a/sites/compass/templates/inquiries.html b/sites/compass/templates/inquiries.html new file mode 100644 index 0000000..9b877c3 --- /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 0000000..1422257 --- /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_detail.html b/sites/compass/templates/listing_detail.html new file mode 100644 index 0000000..68c07fb --- /dev/null +++ b/sites/compass/templates/listing_detail.html @@ -0,0 +1,105 @@ +{% extends "base.html" %} +{% block title %}{{ listing.address }} | Compass{% endblock %} +{% block content %} + +
+ + {% set gallery = listing.get_gallery() %} + + +
+
+
{{ listing.price_display() }}
+

{{ listing.address }}{% if listing.unit %}, Unit {{ listing.unit }}{% endif %}

+
+ {{ listing.city }}, {{ listing.state }} {{ listing.zip }} + {% if listing.neighborhood %}· {{ listing.neighborhood }}{% endif %} +
+ +
+
{{ listing.beds }}{{ 'Bedroom' if listing.beds == 1 else 'Bedrooms' }}
+
{{ listing.baths_full + 0.5 * listing.baths_half }}{{ 'Bathroom' if (listing.baths_full + listing.baths_half) == 1 else 'Bathrooms' }}
+ {% if listing.sqft %}
{{ '{:,}'.format(listing.sqft) }}Sq. Ft.
{% endif %} + {% if listing.price_per_sqft() %}
${{ '{:,}'.format(listing.price_per_sqft()) }}/Sq. Ft.
{% endif %} +
{{ listing.year_built }}Year built
+
{{ listing.property_type }}Property type
+
+ +

{{ listing.description }}

+ +

Property details

+
+
MLS #
{{ listing.mls_number }}
+
Status
{{ listing.status|capitalize }}{% if listing.is_pending %} (Pending){% endif %}
+
Days on Compass
{{ listing.days_on_compass }}
+ {% if listing.lot_sqft %}
Lot size
{{ '{:,}'.format(listing.lot_sqft) }} sq ft
{% endif %} + {% if listing.hoa_fee_usd_month %}
HOA fee
${{ listing.hoa_fee_usd_month }} / month
{% endif %} +
Parking
{% if listing.has_garage %}Garage{% elif listing.has_parking %}Driveway / off-street{% else %}Street{% endif %}
+
Pool
{{ 'Yes' if listing.has_pool else 'No' }}
+
Pets
{{ 'Allowed' if listing.pets_allowed else 'Not allowed' }}
+
+ +

Features

+
+ {% for f in listing.get_features() %}{{ f }}{% endfor %} +
+ + {% if listing.is_open_house %} +

Open house

+

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

+ {% endif %} + + {% if similar %} +

Similar homes nearby

+
+ {% for L in similar %}{% include "_card.html" %}{% endfor %} +
+ {% endif %} +
+ + +
+
+ +{% endblock %} diff --git a/sites/compass/templates/login.html b/sites/compass/templates/login.html new file mode 100644 index 0000000..1fbdddf --- /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 0000000..55a56a3 --- /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/new_listings.html b/sites/compass/templates/new_listings.html new file mode 100644 index 0000000..ab0ee91 --- /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 0000000..41f0ce6 --- /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

+

In-person tours scheduled by Compass agents.

+ +
+
+ + +
+ +
+ +
{{ 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 }}{{ L.baths_full + 0.5 * L.baths_half }}{{ L.price_display() }}
+
+{% endblock %} diff --git a/sites/compass/templates/preferences.html b/sites/compass/templates/preferences.html new file mode 100644 index 0000000..25f3c0d --- /dev/null +++ b/sites/compass/templates/preferences.html @@ -0,0 +1,31 @@ +{% extends "base.html" %} +{% block content %} +
+ {% include "_account_nav.html" %} +
+

Search preferences

+
+ +
+
+
+
+ {% 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 0000000..02690c4 --- /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 0000000..fe450d0 --- /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 0000000..511847a --- /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 0000000..11aad8e --- /dev/null +++ b/sites/compass/templates/search.html @@ -0,0 +1,75 @@ +{% extends "base.html" %} +{% block title %}Search{% if q %}: {{ q }}{% endif %} | Compass{% endblock %} +{% block content %} +
+

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

+ +
+ +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +
+ +
{{ 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 and q %} +
+ + + + + + + + +
+ {% endif %} +
+{% endblock %} diff --git a/sites/compass/templates/tour_request.html b/sites/compass/templates/tour_request.html new file mode 100644 index 0000000..cc1883f --- /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 0000000..e0ff254 --- /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/websyn_start.sh b/websyn_start.sh index 72defad..5b05aae 100644 --- a/websyn_start.sh +++ b/websyn_start.sh @@ -5,7 +5,7 @@ set -e SITES=(allrecipes amazon apple arxiv bbc_news booking github google_flights google_map google_search huggingface wolfram_alpha - cambridge_dictionary coursera espn) + cambridge_dictionary coursera espn compass) BASE_PORT=40000 PID_DIR=/tmp/websyn_pids mkdir -p "$PID_DIR" @@ -17,7 +17,7 @@ for d in "${SITES[@]}"; do cp -a "/opt/WebSyn/$d/instance_seed" "/opt/WebSyn/$d/instance" done -echo "[WebSyn] Starting 15 sites on ports ${BASE_PORT}-$((BASE_PORT + 14))..." +echo "[WebSyn] Starting 16 sites on ports ${BASE_PORT}-$((BASE_PORT + 15))..." for i in "${!SITES[@]}"; do site="${SITES[$i]}" port=$((BASE_PORT + i)) @@ -51,8 +51,8 @@ except Exception: exit(1) ready=$((ready + 1)) fi done - echo " [${elapsed}/${max_wait}s] ${ready}/15 sites ready" - if [ $ready -eq 15 ]; then + echo " [${elapsed}/${max_wait}s] ${ready}/16 sites ready" + if [ $ready -eq 16 ]; then break fi done