Zillow Agents Scraper | Lead Gen avatar

Zillow Agents Scraper | Lead Gen

Pricing

from $2.70 / 1,000 agent extracteds

Go to Apify Store
Zillow Agents Scraper | Lead Gen

Zillow Agents Scraper | Lead Gen

Extract comprehensive real estate agent data from Zillow — agent names, brokerage info, ratings, reviews, sales stats, contact details, active listings, and licenses — by zip code, city, or state. Start at $2 per 1,000 agents.

Pricing

from $2.70 / 1,000 agent extracteds

Rating

0.0

(0)

Developer

Scraptivo

Scraptivo

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Share

Zillow Agents Vault

Extract comprehensive real estate agent data from Zillow — agent names, brokerage info, ratings, reviews, sales stats, contact details, active listings, and licenses — by zip code, city, or state. Start at $2 per 1,000 agents.

What can Zillow Agents Vault do for you?

  • Build agent lead lists — Extract agent names, brokerages, emails, and phone numbers for outbound sales and CRM enrichment.
  • Monitor competitor agent activity — Track top agents in any market with their review scores, sales volume, and price ranges.
  • Enrich profiles with detailed data — Enable detailed profile mode to pull licenses, for-sale/for-rent listings, reviews, social links, and team stats.
  • Search by zip, city, or state — Scope extraction to specific areas or run nationwide campaigns.
  • Export to any format — Download results as JSON, CSV, or Excel for analysis in your tools.
  • Automate agent research — Integrate via Apify API for scheduled or triggered data pulls into your workflow.

What data can you extract?

FieldDescription
🏷️ NameAgent or team name
🏢 BrokerageBrokerage or team name
🔗 Profile URLDirect link to Zillow profile
RatingStar rating (average)
📝 Review countNumber of reviews
📊 Sales statsSales last 12 months, total sales, price range, average price
💰 Price rangeTeam price range (e.g., $72K–$2M)
🏠 Active listingsFor-sale and for-rent properties with prices, beds, baths
📍 LocationState, city, zip code
🏆 Top Agent badgeWhether marked as Top Agent on Zillow
📸 PhotoAgent profile photo
🏛️ LicensesLicense numbers, states, types, expiration dates
📞 Contact infoPhone numbers, email (when available)
🌐 Social linksFacebook, LinkedIn, Instagram URLs
💬 SpecialtiesAgent specialties, languages spoken
🏠 Sold propertiesRecent sales with dates and prices

Why use this scraper?

  • Market Research — Understand agent density, top performers, and brokerage presence in any US area.
  • Lead Generation — Build targeted lists of real estate agents for outreach, partnerships, or recruitment.
  • Competitive Intelligence — Track agent reviews, ratings, and sales performance over time.
  • Real Estate Automation — Feed agent data into your CRM, marketing tools, or analytics pipeline.

Pricing

TierPriceDescription
Basic agent data$2.00 / 1,000 agentsAgent name, brokerage, rating, reviews, sales stats, location
Detailed profiles$5.00 / 1,000 agentsFull enrichment: licenses, listings, contact info, social links, reviews

Apify platform plan discounts (Bronze, Silver, Gold) apply automatically to reduce your per-unit cost. No hidden fees or limits on usage.

How to use Zillow Agents Vault

  1. Create a free Apify account at apify.com.
  2. Open the actor at apify.com/rigelbytes/zillow-agents-vault.
  3. Enter your search criteria — provide zip codes, cities, or states.
  4. Toggle detailed profiles (optional) — enable includeDetailedProfile for enriched agent data.
  5. Click Start and wait for the run to complete.
  6. Download your data in JSON, CSV, or Excel from the dataset.

Input

Configure what you want to extract:

FieldTypeRequiredDescription
zipCodesstring[]NoFive-digit US zip codes (e.g. "99546")
citiesstring[]NoCity names or "State, City"
statesstring[]NoFull US state names (e.g. "Alaska")
maxItemsintegerNoMax unique agents (0 = unlimited)
includeDetailedProfilebooleanNoFetch full agent profiles (billable separately)
maxConcurrencyintegerNoMax concurrent profile fetches (1–50, default 10)
proxyConfigurationobjectNoApify proxy settings (default: RESIDENTIAL)

📝 Copy for Use:

{
"zipCodes": ["99546"],
"maxItems": 5,
"includeDetailedProfile": false,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

Zillow Agents Vault Output

Why Choose This Scraper?

  • 💰 Affordable — Just $2 per 1,000 agents for basic data, $5 per 1,000 agents for enriched profiles, with Apify plan discounts.
  • 🔍 Comprehensive — Agent names, ratings, reviews, sales stats, listings, licenses, contact info — all in one place.
  • ⚡ Easy to Use — Simply provide zip codes, cities, or states. No complex configuration needed.
  • 🔒 Reliable — Built with residential proxy support, retry logic, and duplicate removal for clean, trustworthy data.
  • Shifter

    • Reliable residential proxies all over the world.
    • Cheap rates
    • Order Shifter Now
    • Get 10% Off any product, use coupan rigelbytes-YoBB.
  • OxyLabs

    • 100M+ Proxies
    • Fastest proxies in the market
    • Real profile, human-like Residential IPs
    • Quality assurance framework for most reliable IPs
    • Get Proxies
  • DataImpulse

Learn More About Proxies

  • Exclusive Deals: Some providers may offer special discounts or bonuses when you use our link.
  • Support Our Work: Each purchase helps us maintain and improve the tools and services we provide.
  • No Extra Cost: You pay the same price, but part of it goes to supporting our efforts.

Running via Apify Console

You can run this actor from the Apify Console by providing the necessary input parameters.

Running via API

You can trigger this actor using the Apify API, passing the required input in the request body.

API Examples

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR-APIFY-TOKEN")
run_input = {
"zipCodes": ["99546"],
"maxItems": 5,
"includeDetailedProfile": False,
"proxyConfiguration": {
"useApifyProxy": True,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}
run = client.actor("rigelbytes/zillow-agents-vault").call(run_input=run_input)
dataset_items = client.dataset(run["defaultDatasetId"]).list_items().items
print(dataset_items)

JavaScript

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR-APIFY-TOKEN' });
const runInput = {
zipCodes: ["99546"],
maxItems: 5,
includeDetailedProfile: false,
proxyConfiguration: {
useApifyProxy: true,
apifyProxyGroups: ["RESIDENTIAL"]
}
};
const run = await client.actor("rigelbytes/zillow-agents-vault").call(runInput);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

cURL

curl -X POST "https://api.apify.com/v2/acts/rigelbytes~zillow-agents-vault/runs?token=YOUR-APIFY-TOKEN" \
-H "Content-Type: application/json" \
-d '{
"zipCodes": ["99546"],
"maxItems": 5,
"includeDetailedProfile": false,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}'

🚀 Other Tools by Rigel Bytes

Explore 84 more scraping tools by Rigel Bytes, organized by use case:

📱 Social Media

Scrape Instagram, TikTok, LinkedIn, and more for content research and marketing intelligence.

  • Export Instagram Reels — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Facebook Ads Scraper — Extract posts, profiles, and engagement data from Facebook for content research, influencer tracking, and marketing analytics.
  • Instagram Analytics Tool — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Comment Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Creator Stats — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Engagement Tool — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Post Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • instagram-posts — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Profile Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Reel Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • linkedin-company-details — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • Linkedin Company Scraper — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • LinkedIn Job Scraper — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • LinkedIn Profile Scraper — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • Scrape Instagram Creators — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Tiktok Comment Scraper — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
  • Tiktok Creator Stats — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
  • Tiktok Engagement Rate — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
  • TikTok Profile Scraper — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.

🏠 Real Estate

Extract property listings, prices, and agent data from top real estate platforms.

  • Airbnb Address Finder — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Availability Calendar — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Detailed Scraper - Search & Listing Details — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Images Downloader — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Listing — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Listing Urls — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Property Details — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Reviews — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Scraper - Search & Listing Details — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Bayut Scraper — Scrape property listings and market data from Bayut for market research, price monitoring, and investment analysis.
  • Boligsiden.dk Scraper — Scrape Danish real estate listings from Boligsiden.dk — for sale, sold, and rental properties with pricing, details,...
  • Daft.ie Property Scraper — Scrapes property listings from Daft.ie including residential, rental, commercial, and new homes across Ireland.
  • dubai-listing-scraper — Extract unlimited property listings from Bayut.com — the UAE's largest real estate platform. Get detailed property...
  • Export Airbnb Calendar — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Funda Netherlands Real Estate Scraper — Scrape property listings from Funda.nl — the largest real estate platform in the Netherlands. Supports buy and rent,...
  • Furnished Finder Fast — Scrape property listings and market data from Furnished Finder for market research, price monitoring, and investment analysis.
  • Extract Furnished Finder Hosts — Scrape property listings and market data from Furnished Finder for market research, price monitoring, and investment analysis.
  • FurnishedFinder — Scrape property listings and market data from Furnished Finder for market research, price monitoring, and investment analysis.
  • Hemnet.se Scraper - Swedish Real Estate Listings — Scrape property listings from Hemnet.se including for-sale, upcoming, and sold homes. Search by URL or location...
  • Immobiliare Italy Real Estate Scraper — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
  • Immobilienscout24 — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
  • Immobilienscout24-scraper — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
  • Immoweb Scraper - Belgium Property Listings — Scrapes property listings from Immoweb.be. Supports search result extraction with optional property detail enrichment.
  • Immowelt Property Scraper — The Immowelt Scraper helps you extract unlimited real estate listings from Immowelt with complete details including...
  • Immowelt Scraper — The Immowelt Scraper helps you extract unlimited real estate listings from Immowelt with complete details including...
  • Land.com Agents Scraper — Scrape property listings and market data from Land.com for market research, price monitoring, and investment analysis.
  • Land.com Scraper — Scrape property listings and market data from Land.com for market research, price monitoring, and investment analysis.
  • Outdoorsy Scraper — Scrape property listings and market data from Outdoorsy for market research, price monitoring, and investment analysis.
  • Propertyfinder Scraper — Scrape property listings and market data from Property Finder for market research, price monitoring, and investment analysis.
  • Redfin Scraper — Scrape property listings and market data from Redfin for market research, price monitoring, and investment analysis.
  • Rent.com Scraper — Scrape rental listings from rent.com — search by location query or URL. Extracts property details, photos, floor...
  • Rightmove Scraper — Scrape property listings and market data from Rightmove for market research, price monitoring, and investment analysis.
  • RVshare Scraper — Scrape property listings and market data from RVshare for market research, price monitoring, and investment analysis.
  • Unlimited Redfin Scraper — Scrape property listings and market data from Redfin for market research, price monitoring, and investment analysis.
  • Zillow Detail Scraper — Scrape property listings and market data from Zillow for market research, price monitoring, and investment analysis.
  • Zillow Scraper — Scrape property listings and market data from Zillow for market research, price monitoring, and investment analysis.
  • Zoopla Scraper — Scrape property listings and market data from Zoopla for market research, price monitoring, and investment analysis.

✈️ Travel & Hospitality

Monitor rentals, bookings, and travel listings at scale.

  • Autotrader Scraper — Scrapes car listings from Autotrader.com with advanced search filters, pagination, and detailed vehicle data.
  • CarMax Scraper — Scrapes used car listings from CarMax.com with search URL, zip code filtering, and pagination support.
  • Cars.com Scraper — Scrapes car listings from Cars.com using their GraphQL API. Extracts detailed vehicle data including price, specs,...
  • Cars & Bids Scraper — Scrape live, upcoming, and past car auctions from Cars & Bids. Extract vehicle details, bids, photos, comments, and...
  • Ticketmaster Scraper — Collect rental and travel listings from Ticketmaster for pricing intelligence and availability tracking.

🛒 E-commerce

Scrape products, prices, and marketplace data for competitive research.

  • Amazon Product Scraper — Scrape products, prices, and seller data from Amazon for competitor monitoring, pricing, and product research.
  • Amazon Search Scraper — Scrape products, prices, and seller data from Amazon for competitor monitoring, pricing, and product research.
  • AutoScout24 Scraper — Scrape car listings from AutoScout24 with full filter support. Extract makes, models, prices, mileage, seller info,...
  • Daraz — Scrape products, prices, and seller data from Daraz for competitor monitoring, pricing, and product research.
  • Etsy Scraper — Scrape products, prices, and seller data from Etsy for competitor monitoring, pricing, and product research.
  • Homedepot Scraper — HomeDepot Products Scraper lets you extract product data from homedepot.com using a collection URL and delivery ZIP....
  • Otodom Scraper - Polish Real Estate Listings — Scrapes property listings from Otodom.pl, Poland's leading real estate marketplace. Supports filters for transaction...

💼 Jobs & Recruitment

Collect job listings and company hiring data for market analysis.

  • ZipRecruiter Job Scraper — Scrape job listings from ZipRecruiter with search queries, locations, and radius filters. Extracts title, company,...

📩 Lead Generation

Find business contacts, leads, and company data for sales and outreach.

  • Company Service Finder — The Company Service Finder uses AI to extract and analyze company services from Google Search & Maps. Get detailed...
  • Doctify Scraper — Doctify Scraper lets you extract doctor and practice data from doctify.com using a search results URL. Collect...
  • Doctolib Scraper — Scrape doctor profiles, availability, and practice details from Doctolib.de — Germany's largest medical appointment...
  • FindLaw Law Firm Scraper - Attorney & Law Firm Data Extraction — Scrape law firm profiles from FindLaw.com. Extract detailed attorney and firm information including contact details,...
  • Google Maps Scraper — Find business leads and contact details from Google Maps for outbound sales, prospecting, and CRM enrichment.
  • Website Services Finder — Automatically extract and analyze company services from any business website using advanced AI. Choose from 5 AI...
  • Zillow Agents — Find business leads and contact details from Zillow for outbound sales, prospecting, and CRM enrichment.
  • Zillow Agents Phone — Find business leads and contact details from Zillow for outbound sales, prospecting, and CRM enrichment.

⭐ Reviews & Ratings

Monitor reviews and reputation data across review platforms.

  • Airbnb Listing Reviews — Collect reviews and ratings from Airbnb for reputation monitoring and customer insights.
  • BBB Scraper — Collect reviews and ratings from BBB for reputation monitoring and customer insights.
  • Costco Product Scraper — Scrapes product data from Costco.com including prices, descriptions, ratings, and availability. Supports search...
  • Rottentomatoes Reviews Scraper — Collect reviews and ratings from Rotten Tomatoes for reputation monitoring and customer insights.
  • Trustpilot Reviews Scraper — Collect reviews and ratings from Trustpilot for reputation monitoring and customer insights.

🍔 Food & Delivery

Extract restaurant, grocery, and delivery platform data.

  • Instacart Scraper — Scrape menus, stores, and delivery data from Instacart for data-driven research and automation.
  • Publix Scraper — Scrape menus, stores, and delivery data from Publix for data-driven research and automation.

🛠️ Developer Tools

General-purpose scraping and automation tools.

  • Web Crawler — This web crawler is designed to provide users with complete flexibility by allowing them to use their **own...

Understanding Proxies:

When scraping data or browsing anonymously, proxies are essential. They act as intermediaries, masking your original IP address and allowing you to send requests from another location.

Why Use Proxies?

  • Avoid IP Blocks: By routing requests through proxies, you prevent the target website from recognizing your IP as a scraper or spammer.
  • Access Geo-restricted Content: Proxies let you access content or websites restricted by location.
  • Enhance Anonymity: Hide your actual IP, ensuring privacy while scraping or browsing.

Types of Proxies

  1. Residential Proxies
    • Real IP addresses provided by ISPs to home users.
    • They mimic regular users, making them harder to detect.
    • Best for: Long-term, undetectable scraping, and avoiding blocks.
  2. Data Center Proxies
    • IP addresses from servers in data centers.
    • Faster and cheaper than residential proxies but easier to detect and block.
    • Best for: High-speed scraping, but with a higher risk of detection.
  3. Mobile Proxies
    • IPs provided by mobile carriers (3G/4G/5G networks).
    • Very difficult to detect, as they appear as regular mobile users.
    • Best for: Mobile-related scraping or avoiding sophisticated blocks.

Rotating Proxies vs. Straight Proxies

  • Rotating Proxies: Every request you send goes through a different proxy, making it harder for websites to detect patterns.
  • Straight Proxies: All requests are sent through the same proxy, making it easier to track your IP.

About Rigel Bytes

Rigel Bytes specializes in web scraping, automation, and data analytics. We help businesses extract and leverage valuable data for informed decision-making.

Contact Us

Have questions or need help? Reach out to us:

Detailed Data

Here is a sample of the data you can extract with Zillow Agents Vault (basic agent record):

[
{
"cardTitle": "Roy Briley Real Estate Group",
"cardActionLink": "https://www.zillow.com/profile/Roy%20Briley%20RE%20Group",
"encodedZuid": "X1-ZUzl3bfxwglz49_47pep",
"imageUrl": "https://photos.zillowstatic.com/fp/f1ca7d45cacd64fa44e69e15450b6d11-h_l.jpg",
"logoUrl": null,
"isTopAgent": true,
"secondaryCardTitle": "Real Estate Brokers of Alaska",
"reviewInformation": {
"noReviewsText": "No reviews",
"reviewAverage": 5,
"reviewAverageText": "5.0",
"reviewCountFormattedText": "(219)"
},
"profileData": [
{
"formattedData": "$72K - $2M",
"label": "team price range"
},
{
"formattedData": "206",
"label": "team sales last 12 months"
},
{
"formattedData": "144",
"label": "team sales in 99501"
}
],
"tags": [
{
"tagType": "WARNING",
"text": "TEAM"
}
],
"state": "Alaska",
"city": "Anchorage",
"zip_code": "99501",
"page": 1,
"hasDetailedProfile": true,
"detailedProfile": {
"agentLicenses": [
{
"text": "500063",
"state": "AK",
"status": "pending",
"original_status": "pending",
"license_type": "agent",
"expiration": "2028-01-31"
}
],
"breadcrumbs": [
{
"text": "Alaska",
"url": "/professionals/real-estate-agent-reviews/ak/"
},
{
"text": "Anchorage",
"url": "/professionals/real-estate-agent-reviews/anchorage-ak/"
},
{
"text": "Roy Briley Real Estate Group"
}
],
"currentUser": {
"loginState": "unauthorized"
},
"currentUrl": "https://www.zillow.com/profile/Roy Briley RE Group",
"clientProfilerConfig": {
"beaconUrl": "https://e.zg-api.com:443/metrics/rum",
"staticDimensions": {
"environment": "production",
"hostId": "FDcwuOfroKyopBm6IPQSAg",
"pageName": "profile:public-page",
"platform": "desktop",
"GUID": "abbd3c77ba3946c288c5cba30059d41b",
"requestId": "6ff37ead-120f-4a0e-b366-18eca48d7e74",
"packageName": "professional-profile-page",
"serviceVersion": "1.0.0"
}
},
"displayUser": {
"encodedZuid": "X1-ZUzl3bfxwglz49_47pep",
"screenName": "Roy Briley RE Group",
"inCanada": false,
"name": "Roy Briley Real Estate Group",
"flag": 16808022,
"profileTypeIds": [
1,
2
],
"profileTypes": [
"consumer",
"agent"
],
"businessAddress": {
"address1": "1557 C St., Suite 204",
"address2": null,
"city": "Anchorage",
"state": "AK",
"postalCode": "99501"
},
"businessName": "Real Estate Brokers of Alaska",
"cpdUserPronouns": "My pronoun isn't listed",
"isTopAgent": true,
"profileImageId": null,
"profilePhotoSrc": "https://photos.zillowstatic.com/fp/f1ca7d45cacd64fa44e69e15450b6d11-h_l.jpg",
"ratings": {
"average": 5,
"count": 219
},
"phoneNumbers": {
"cell": "(907) 343-8900",
"brokerage": "(907) 343-8900",
"business": "(907) 274-0000"
},
"email": "rbreg@akreba.com"
},
"forSaleListings": {
"listings": [
{
"zpid": 59680330,
"home_type": "singleFamily",
"address": {
"line1": "2010 Casey Cusack Loop",
"line2": "Anchorage, AK 99515",
"city": "Anchorage",
"stateOrProvince": "AK",
"postalCode": "99515"
},
"bedrooms": 4,
"bathrooms": 3,
"openHouses": "",
"hasOpenHouse": false,
"primary_photo_url": "https://photos.zillowstatic.com/fp/8ca02cba6a9739f5111cda00dec3f4bc-a_a.jpg",
"price": 567000,
"price_currency": "usd",
"status": "fsba",
"latitude": 61.117077,
"longitude": -149.91731,
"brokerage_name": "Real Estate Brokers of Alaska",
"home_marketing_status": "active",
"home_marketing_type": "forSale",
"has_vr_model": false,
"listing_url": "/homedetails/2010-Casey-Cusack-Loop-Anchorage-AK-99515/59680330_zpid/"
},
{
"zpid": 345136224,
"home_type": "singleFamily",
"address": {
"line1": "2448 W Sunlight Ln",
"line2": "Wasilla, AK 99654",
"city": "Wasilla",
"stateOrProvince": "AK",
"postalCode": "99654"
},
"bedrooms": 3,
"bathrooms": 3,
"openHouses": "",
"hasOpenHouse": false,
"primary_photo_url": "https://photos.zillowstatic.com/fp/bae7032efd3d90b54e77ed68881b9a28-a_a.jpg",
"price": 645500,
"price_currency": "usd",
"status": "fsba",
"latitude": 61.531307,
"longitude": -149.50784,
"brokerage_name": "Real Estate Brokers of Alaska",
"home_marketing_status": "active",
"home_marketing_type": "forSale",
"has_vr_model": true,
"listing_url": "/homedetails/2448-W-Sunlight-Ln-Wasilla-AK-99654/345136224_zpid/"
},
{
"zpid": 2070538078,
"home_type": "singleFamily",
"address": {
"line1": "5050 N Gold Mint Dr",
"line2": "Wasilla, AK 99654",
"city": "Wasilla",
"stateOrProvince": "AK",
"postalCode": "99654"
},
"bedrooms": 3,
"bathrooms": 2,
"openHouses": "",
"hasOpenHouse": false,
"primary_photo_url": "https://photos.zillowstatic.com/fp/3094f39b62e54ec9f29995674540c6ce-a_a.jpg",
"price": 410000,
"price_currency": "usd",
"status": "fsba",
"latitude": 61.638477,
"longitude": -149.4956,
"brokerage_name": "Real Estate Brokers of Alaska",
"home_marketing_status": "active",
"home_marketing_type": "forSale",
"has_vr_model": true,
"listing_url": "/homedetails/5050-N-Gold-Mint-Dr-Wasilla-AK-99654/2070538078_zpid/"
},
{
"zpid": 223306890,
"home_type": "land",
"address": {
"line1": "213 Evergreen St",
"line2": "Kenai, AK 99611",
"city": "Kenai",
"stateOrProvince": "AK",
"postalCode": "99611"
},
"bedrooms": null,
"bathrooms": null,
"openHouses": "",
"hasOpenHouse": false,
"primary_photo_url": "https://photos.zillowstatic.com/fp/bf4a8e57d31d44b758625b2f0cf59e2a-a_a.jpg",
"price": 35000,
"price_currency": "usd",
"status": "fsba",
"latitude": 60.56337,
"longitude": -151.29253,
"brokerage_name": "Real Estate Brokers of Alaska",
"home_marketing_status": "active",
"home_marketing_type": "forSale",
"has_vr_model": false,
"listing_url": "/homedetails/213-Evergreen-St-Kenai-AK-99611/223306890_zpid/"
},
{
"zpid": 18103,
"home_type": "townhome",
"address": {
"line1": "8810 Pioneer Dr",
"line2": "Anchorage, AK 99504",
"city": "Anchorage",
"stateOrProvince": "AK",
"postalCode": "99504"
},
"bedrooms": 3,
"bathrooms": 3,
"openHouses": "",
"hasOpenHouse": false,
"primary_photo_url": "https://photos.zillowstatic.com/fp/8a9cb110e97ef364f212c41940c73cdf-a_a.jpg",
"price": 424000,
"price_currency": "usd",
"status": "fsba",
"latitude": 61.18691,
"longitude": -149.72437,
"brokerage_name": "Real Estate Brokers of Alaska",
"home_marketing_status": "active",
"home_marketing_type": "forSale",
"has_vr_model": false,
"listing_url": "/homedetails/8810-Pioneer-Dr-Anchorage-AK-99504/18103_zpid/"
}
],
"listing_count": 5
},
"forRentListings": {
"listings": [],
"listing_count": 0
},
"getToKnowMe": {
"title": "Real Estate Brokers ",
"description": "<p>We are a team of an \"all-encompassing\" group. We are all career Real Estate Professionals and do not do this part-time. We have come to know many local families and developed many relationships through the years. This local connection has helped us better understand the needs of Real Estate clients, especially when it comes to their home-buying decisions.<br /><br />Whether you are looking for an investment property (we have a sister company that manages rentals), or you are a first-time homebuyer (we also have a mortgage company in-house), our knowledge and expertise in Real Estate will assist you every step of the way.<br /><br />We have a commitment to honesty, fairness, and integrity, and we love working with people! We believe in education so we will be educating you on every step of the process.<br /><br />Whether you are looking for a free home evaluation and preparing to sell, or if you are in the market to buy - we know we can make the process painless and seamless. We look forward to your call! 907.343.8900</p>\n",
"yearsInIndustry": 36,
"videoUrl": null,
"specialties": [
"Buyer's Agent",
"Listing Agent",
"Property Management",
"Investment Properties",
"Rentals"
],
"languages": [
"Spanish",
"French"
],
"websiteUrl": "http://www.EveryAlaskaHome.com",
"facebookUrl": "https://www.facebook.com/RoyBrileyRealEstate/",
"linkedInUrl": "https://www.linkedin.com/feed/",
"instagramUrl": "https://www.instagram.com/roybrileyregroup/"
},
"graphQLData": {
"encodedZuid": "X1-ZUzl3bfxwglz49_47pep",
"agentListingSalesSection": {
"headerText": "Team sales and listings (4,284)",
"content": {
"descriptionText": "This map and property list shows the most recent 100 sales and 100 listings",
"mapCenter": {
"latitude": 61.018782,
"longitude": -149.361532
},
"filterChips": [
{
"label": "All",
"status": null
},
{
"label": "Sold",
"status": "SOLD"
},
{
"label": "For sale",
"status": "FOR_SALE"
}
],
"legend": [
{
"label": "Sold",
"status": "SOLD"
},
{
"label": "For sale",
"status": "FOR_SALE"
}
],
"forRent": null,
"forSale": {
"headerText": "For sale (5)",
"properties": [
{
"zpid": "59680330",
"attributes": [
{
"value": "4",
"label": "bd"
},
{
"value": "3",
"label": "ba"
},
{
"value": "1,993",
"label": "sqft"
}
],
"badges": [
"Centralized kitchen"
],
"brokerageInfo": {
"logoUrl": "https://photos.zillowstatic.com/fp/d42b04ec66a3e75f2f2af087512fffbf-zillow_web_48_23.jpg",
"name": "Real Estate Brokers of Alaska"
},
"fullAddressText": "2010 Casey Cusack Loop, Anchorage, AK 99515",
"hdpUrl": "/homedetails/2010-Casey-Cusack-Loop-Anchorage-AK-99515/59680330_zpid/",
"homeStatusLine": "House for Sale",
"imageUrl": "https://photos.zillowstatic.com/fp/8ca02cba6a9739f5111cda00dec3f4bc-p_h.jpg",
"priceText": "$567,000"
},
{
"zpid": "345136224",
"attributes": [
{
"value": "3",
"label": "bd"
},
{
"value": "3",
"label": "ba"
},
{
"value": "2,707",
"label": "sqft"
}
],
"badges": [
"3D Tour"
],
"brokerageInfo": {
"logoUrl": "https://photos.zillowstatic.com/fp/d42b04ec66a3e75f2f2af087512fffbf-zillow_web_48_23.jpg",
"name": "Real Estate Brokers of Alaska"
},
"fullAddressText": "2448 W Sunlight Ln, Wasilla, AK 99654",
"hdpUrl": "/homedetails/2448-W-Sunlight-Ln-Wasilla-AK-99654/345136224_zpid/",
"homeStatusLine": "House for Sale",
"imageUrl": "https://photos.zillowstatic.com/fp/bae7032efd3d90b54e77ed68881b9a28-p_h.jpg",
"priceText": "$645,500"
},
{
"zpid": "2070538078",
"attributes": [
{
"value": "3",
"label": "bd"
},
{
"value": "2",
"label": "ba"
},
{
"value": "1,242",
"label": "sqft"
}
],
"badges": [
"3D Tour"
],
"brokerageInfo": {
"logoUrl": "https://photos.zillowstatic.com/fp/d42b04ec66a3e75f2f2af087512fffbf-zillow_web_48_23.jpg",
"name": "Real Estate Brokers of Alaska"
},
"fullAddressText": "5050 N Gold Mint Dr, Wasilla, AK 99654",
"hdpUrl": "/homedetails/5050-N-Gold-Mint-Dr-Wasilla-AK-99654/2070538078_zpid/",
"homeStatusLine": "House for Sale",
"imageUrl": "https://photos.zillowstatic.com/fp/3094f39b62e54ec9f29995674540c6ce-p_h.jpg",
"priceText": "$410,000"
},
{
"zpid": "223306890",
"attributes": [
{
"value": "--",
"label": "bd"
},
{
"value": "--",
"label": "ba"
},
{
"value": "--",
"label": "sqft"
}
],
"badges": [
"Established kenai neighborhood"
],
"brokerageInfo": {
"logoUrl": "https://photos.zillowstatic.com/fp/d42b04ec66a3e75f2f2af087512fffbf-zillow_web_48_23.jpg",
"name": "Real Estate Brokers of Alaska"
},
"fullAddressText": "213 Evergreen St, Kenai, AK 99611",
"hdpUrl": "/homedetails/213-Evergreen-St-Kenai-AK-99611/223306890_zpid/",
"homeStatusLine": "House for Sale",
"imageUrl": "https://photos.zillowstatic.com/fp/bf4a8e57d31d44b758625b2f0cf59e2a-p_h.jpg",
"priceText": "$35,000"
},
{
"zpid": "18103",
"attributes": [
{
"value": "3",
"label": "bd"
},
{
"value": "3",
"label": "ba"
},
{
"value": "1,512",
"label": "sqft"
}
],
"badges": [
"Modern open layout"
],
"brokerageInfo": null,
"fullAddressText": "8810 Pioneer Dr, Anchorage, AK 99504",
"hdpUrl": "/homedetails/8810-Pioneer-Dr-Anchorage-AK-99504/18103_zpid/",
"homeStatusLine": "House for Sale",
"imageUrl": "https://photos.zillowstatic.com/fp/8a9cb110e97ef364f212c41940c73cdf-p_h.jpg",
"priceText": "$424,000"
}
]
},
"sold": {
"headerText": "Sold (4,279)",
"properties": [
{
"zpid": "63439",
"attributes": [
{
"value": "3",
"label": "bd"
},
{
"value": "3",
"label": "ba"
},
{
"value": "2,048",
"label": "sqft"
}
],
"badges": [
"Seller"
],
"brokerageInfo": null,
"fullAddressText": "18821 Katelyn Cir, Eagle River, AK 99577",
"hdpUrl": "/homedetails/18821-Katelyn-Cir-Eagle-River-AK-99577/63439_zpid/",
"homeStatusLine": "Sold 11 days ago",
"imageUrl": "https://photos.zillowstatic.com/fp/4126026e8b0bc745b182ee874694475a-p_h.jpg",
"priceText": "$---",
"transactionDate": "2026-06-26"
},
{
"zpid": "79533361",
"attributes": [
{
"value": "3",
"label": "bd"
},
{
"value": "2",
"label": "ba"
},
{
"value": "1,599",
"label": "sqft"
}
],
"badges": [
"Seller"
],
"brokerageInfo": null,
"fullAddressText": "4203 Scenic View Dr, Anchorage, AK 99504",
"hdpUrl": "/homedetails/4203-Scenic-View-Dr-Anchorage-AK-99504/79533361_zpid/",
"homeStatusLine": "Sold 12 days ago",
"imageUrl": "https://photos.zillowstatic.com/fp/5dc60f75ed9b54dafd632716ed077fd1-p_h.jpg",
"priceText": "$---",
"transactionDate": "2026-06-25"
},
{
"zpid": "460439392",
"attributes": [
{
"value": "4",
"label": "bd"
},
{
"value": "3",
"label": "ba"
},
{
"value": "1,842",
"label": "sqft"
}
],
"badges": [
"Buyer"
],
"brokerageInfo": null,
"fullAddressText": "268 Shageluk St #111, Anchorage, AK 99504",
"hdpUrl": "/homedetails/268-Shageluk-St-111-Anchorage-AK-99504/460439392_zpid/",
"homeStatusLine": "Sold 18 days ago",
"imageUrl": "https://photos.zillowstatic.com/fp/5d0188b4fdfa1271d85159939f135d43-p_h.jpg",
"priceText": "$---",
"transactionDate": "2026-06-19"
},
{
"zpid": "94649560",
"attributes": [
{
"value": "4",
"label": "bd"
},
{
"value": "4",
"label": "ba"
},
{
"value": "2,068",
"label": "sqft"
}
],
"badges": [
"Seller"
],
"brokerageInfo": null,
"fullAddressText": "20868 Trailhead Ave #8, Eagle River, AK 99577",
"hdpUrl": "/homedetails/20868-Trailhead-Ave-8-Eagle-River-AK-99577/94649560_zpid/",
"homeStatusLine": "Sold 20 days ago",
"imageUrl": "https://photos.zillowstatic.com/fp/73bede6ce2f5d38f64f9e0ebedfca94b-p_h.jpg",
"priceText": "$---",
"transactionDate": "2026-06-17"
},
{
"zpid": "19509",
"attributes": [
{
"value": "4",
"label": "bd"
},
{
"value": "4",
"label": "ba"
},
{
"value": "2,886",
"label": "sqft"
}
],
"badges": [
"Buyer"
],
"brokerageInfo": null,
"fullAddressText": "3309 Baxter Rd, Anchorage, AK 99504",
"hdpUrl": "/homedetails/3309-Baxter-Rd-Anchorage-AK-99504/19509_zpid/",
"homeStatusLine": "Sold 25 days ago",
"imageUrl": "https://photos.zillowstatic.com/fp/8518d01da55415ae0a3b6c0c2871ec51-p_h.jpg",
"priceText": "$---",
"transactionDate": "2026-06-12"
}
]
}
}
},
"isPremium": false,
"premierAgentSection": {
"logoUrl": "https://delivery.digitalassets.zillowgroup.com/api/public/content/PremierAgent_downloadOriginal.svg?v=1677c2be",
"tooltipHeader": "Zillow Premier Agent",
"tooltipParagraph": "Zillow Premier Agent is an advertising program that helps connect customers to local real estate professionals. Zillow Premier Agent partners are paid advertisers and are not affiliated with Zillow, Inc. brokerage or any of its affiliates.",
"tooltipTitle": "More about \"Zillow Premier Agent\""
},
"premiumAgentHeader": {
"businessCard": {
"brandColor": "#EFF3F9",
"companyInfo": {
"logoUrl": null,
"name": "Real Estate Brokers of Alaska",
"reviewsInfo": {
"displayText": "219 reviews",
"starRating": 5,
"starRatingAriaLabel": "5.0 out of 5 stars",
"starRatingText": "5.0"
},
"teamProfileUrl": null,
"teamText": "Lead of Roy Briley Real Estate Group"
},
"contactButtonText": "Contact the team",
"displayName": "Roy Briley Real Estate Group",
"editBrandingButtonText": "Edit logo and branding",
"editBrandingButtonUrl": "/user/EditProfile.htm?tab=logo+and+brand+color",
"photo": {
"badge": {
"badgeName": "TopAgent",
"showTooltip": true
},
"photoUrl": "https://photos.zillowstatic.com/fp/f1ca7d45cacd64fa44e69e15450b6d11-h_l.jpg"
},
"pronouns": "My pronoun isn't listed"
},
"editMediaSlideshowButtonText": "Edit media slideshow",
"editMediaSlideshowButtonUrl": "/user/EditProfile.htm?tab=media+slideshow",
"salesSection": {
"editSalesButtonText": "Edit featured sales",
"editSalesButtonUrl": "/user/EditProfile.htm?tab=featured+sales",
"moreSalesButtonText": "See more",
"moreSalesButtonUrl": "#listings-and-sales",
"moreSalesButtonVisible": true,
"sales": {
"title": "Recent sales",
"description": "Sales represent all team members",
"shownSalesResult": {
"totalShownSales": 4279,
"shownSales": [
{
"zpid": "63439",
"closingPrice": null,
"cityState": "Eagle River, AK",
"fullAddressText": "18821 Katelyn Cir, Eagle River, AK 99577",
"attributes": [
{
"value": "3",
"label": "bd"
},
{
"value": "3",
"label": "ba"
},
{
"value": "2,048",
"label": "sqft"
}
],
"propertyUrl": "/homedetails/18821-Katelyn-Cir-Eagle-River-AK-99577/63439_zpid/",
"property": {
"desktopWebHdpImageLink": "https://photos.zillowstatic.com/fp/4126026e8b0bc745b182ee874694475a-p_h.jpg",
"attributionInfo": {
"providerLogo": "https://photos.zillowstatic.com/fp/d42b04ec66a3e75f2f2af087512fffbf-zillow_web_48_23.jpg"
}
},
"saleCardData": {
"representedList": [
"Seller"
],
"soldDuration": "11 days ago",
"soldText": "Sold"
}
},
{
"zpid": "79533361",
"closingPrice": null,
"cityState": "Anchorage, AK",
"fullAddressText": "4203 Scenic View Dr, Anchorage, AK 99504",
"attributes": [
{
"value": "3",
"label": "bd"
},
{
"value": "2",
"label": "ba"
},
{
"value": "1,599",
"label": "sqft"
}
],
"propertyUrl": "/homedetails/4203-Scenic-View-Dr-Anchorage-AK-99504/79533361_zpid/",
"property": {
"desktopWebHdpImageLink": "https://photos.zillowstatic.com/fp/5dc60f75ed9b54dafd632716ed077fd1-p_h.jpg",
"attributionInfo": {
"providerLogo": "https://photos.zillowstatic.com/fp/d42b04ec66a3e75f2f2af087512fffbf-zillow_web_48_23.jpg"
}
},
"saleCardData": {
"representedList": [
"Seller"
],
"soldDuration": "12 days ago",
"soldText": "Sold"
}
},
{
"zpid": "460439392",
"closingPrice": null,
"cityState": "Anchorage, AK",
"fullAddressText": "268 Shageluk St #111, Anchorage, AK 99504",
"attributes": [
{
"value": "4",
"label": "bd"
},
{
"value": "3",
"label": "ba"
},
{
"value": "1,842",
"label": "sqft"
}
],
"propertyUrl": "/homedetails/268-Shageluk-St-111-Anchorage-AK-99504/460439392_zpid/",
"property": {
"desktopWebHdpImageLink": "https://photos.zillowstatic.com/fp/5d0188b4fdfa1271d85159939f135d43-p_h.jpg",
"attributionInfo": {
"providerLogo": "https://photos.zillowstatic.com/fp/d42b04ec66a3e75f2f2af087512fffbf-zillow_web_48_23.jpg"
}
},
"saleCardData": {
"representedList": [
"Buyer"
],
"soldDuration": "18 days ago",
"soldText": "Sold"
}
},
{
"zpid": "94649560",
"closingPrice": null,
"cityState": "Eagle River, AK",
"fullAddressText": "20868 Trailhead Ave #8, Eagle River, AK 99577",
"attributes": [
{
"value": "4",
"label": "bd"
},
{
"value": "4",
"label": "ba"
},
{
"value": "2,068",
"label": "sqft"
}
],
"propertyUrl": "/homedetails/20868-Trailhead-Ave-8-Eagle-River-AK-99577/94649560_zpid/",
"property": {
"desktopWebHdpImageLink": "https://photos.zillowstatic.com/fp/73bede6ce2f5d38f64f9e0ebedfca94b-p_h.jpg",
"attributionInfo": {
"providerLogo": "https://photos.zillowstatic.com/fp/d42b04ec66a3e75f2f2af087512fffbf-zillow_web_48_23.jpg"
}
},
"saleCardData": {
"representedList": [
"Seller"
],
"soldDuration": "20 days ago",
"soldText": "Sold"
}
},
{
"zpid": "19509",
"closingPrice": null,
"cityState": "Anchorage, AK",
"fullAddressText": "3309 Baxter Rd, Anchorage, AK 99504",
"attributes": [
{
"value": "4",
"label": "bd"
},
{
"value": "4",
"label": "ba"
},
{
"value": "2,886",
"label": "sqft"
}
],
"propertyUrl": "/homedetails/3309-Baxter-Rd-Anchorage-AK-99504/19509_zpid/",
"property": {
"desktopWebHdpImageLink": "https://photos.zillowstatic.com/fp/8518d01da55415ae0a3b6c0c2871ec51-p_h.jpg",
"attributionInfo": {
"providerLogo": "https://photos.zillowstatic.com/fp/d42b04ec66a3e75f2f2af087512fffbf-zillow_web_48_23.jpg"
}
},
"saleCardData": {
"representedList": [
"Buyer"
],
"soldDuration": "25 days ago",
"soldText": "Sold"
}
}
]
}
}
},
"salesStats": {
"failureText": null,
"entries": {
"salesLastTwelveMonths": {
"value": "199",
"longTitle": "Sales last 12 months"
},
"totalSales": {
"value": "4,279",
"longTitle": "Total sales"
},
"priceRange": {
"value": "$71K-$2M",
"longTitle": "Price range"
},
"averagePrice": {
"value": "$439K",
"longTitle": "Average price"
}
},
"teamDisclaimerSection": {
"disclaimerText": "Sales numbers represent all team members",
"tagText": "Team"
}
},
"slides": [
{
"unableToLoadMapErrorMessage": "Unable to load map at this time. Please try again later.",
"legend": [
{
"label": "Sold",
"status": "SOLD"
},
{
"label": "For sale",
"status": "FOR_SALE"
}
]
}
],
"slideError": null
},
"premiumAgentModalPopup": {
"shouldShow": true,
"learnMoreUrl": "https://www.zillow.com/premier-agent/premium-profile/"
},
"professional": {
"reviewRatings": {
"average": 5,
"count": 219
}
},
"propertyManagerForRentSection": null,
"reviewsSection": {
"addButtonText": "Add a review",
"addButtonUrl": "/reviews/write/?s=X1-ZUzl3bfxwglz49_47pep",
"descriptionText": "Reviews represent all team members.",
"headerText": "Team reviews (219)",
"content": {
"aiReviewKeywords": [
{
"filterValue": "KNOWLEDGEABLE",
"label": "Knowledgeable",
"labelWithCount": "Knowledgeable (52)"
},
{
"filterValue": "RESPONSIVE",
"label": "Responsive",
"labelWithCount": "Responsive (48)"
},
{
"filterValue": "PROFESSIONAL",
"label": "Professional",
"labelWithCount": "Professional (45)"
},
{
"filterValue": "FRIENDLY",
"label": "Friendly",
"labelWithCount": "Friendly (38)"
},
{
"filterValue": "EXPERIENCED",
"label": "Experienced",
"labelWithCount": "Experienced (35)"
},
{
"filterValue": "ATTENTIVE",
"label": "Attentive",
"labelWithCount": "Attentive (28)"
}
],
"aiSummaryDisclaimerText": "AI summary of verified client reviews",
"aiSummaryText": "The team demonstrates a strong track record of clear, timely communication and personalized client care, especially for first-time buyers. Many reviews highlight their ability to manage complex transactions smoothly and keep clients well-informed. Their responsiveness and market knowledge consistently reduce stress and build client confidence throughout the process.",
"filterOptions": {
"label": "Filter by",
"options": [
{
"serviceTypeIds": [],
"text": "All reviews (219 reviews)",
"clickstreamKey": "All reviews"
},
{
"serviceTypeIds": [
1
],
"text": "Helped me buy (144 reviews)",
"clickstreamKey": "Helped me buy"
},
{
"serviceTypeIds": [
2
],
"text": "Helped me sell (41 reviews)",
"clickstreamKey": "Helped me sell"
},
{
"serviceTypeIds": [
3
],
"text": "Helped me buy and sell (25 reviews)",
"clickstreamKey": "Helped me buy and sell"
},
{
"serviceTypeIds": [
7,
6,
4,
5,
999
],
"text": "We connected, but it did not work out (8 reviews)",
"clickstreamKey": "We connected, but it did not work out"
},
{
"serviceTypeIds": [
9,
10,
11,
12
],
"text": "Renting or property management (1 reviews)",
"clickstreamKey": "Renting or property management"
}
]
},
"postHeadlineText": "rating on 219 reviews",
"preHeadlineText": "Roy Briley Real Estate Group has a",
"reviewCategoryRatings": [
{
"label": "Local knowledge",
"starRating": 4.8,
"starRatingAriaLabel": "Local knowledge: 4.8 out of 5 stars",
"starRatingText": "4.8"
},
{
"label": "Process expertise",
"starRating": 4.8,
"starRatingAriaLabel": "Process expertise: 4.8 out of 5 stars",
"starRatingText": "4.8"
},
{
"label": "Responsiveness",
"starRating": 4.8,
"starRatingAriaLabel": "Responsiveness: 4.8 out of 5 stars",
"starRatingText": "4.8"
},
{
"label": "Negotiation skills",
"starRating": 4.9,
"starRatingAriaLabel": "Negotiation skills: 4.9 out of 5 stars",
"starRatingText": "4.9"
}
],
"reviews": [
{
"reviewId": "9155102",
"ariaLabel": "Bought a Condo home in 2026 in Russian jack park, Anchorage, AK. review",
"isActionable": false,
"moderationUrl": null,
"reviewMetadataTexts": [
"5/6/2026",
"Sharon Kelley"
],
"shareFacebookText": "Share on Facebook",
"shareFacebookUrl": "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Fyana%20tatarin%3Frx%3Dtrue%26review%3D9155102",
"shareXText": "Share on X",
"shareXUrl": "https://twitter.com/intent/tweet?text=Sharon%20Kelley%20just%20reviewed%20me%20on%20%23Zillow&url=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Fyana%20tatarin%3Frx%3Dtrue%26review%3D9155102",
"subRatings": [
{
"ariaLabel": "5 out of 5 stars",
"label": "Local knowledge",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Process expertise",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Responsiveness",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Negotiation skills",
"value": 5
}
],
"transactionSummary": "Bought a Condo home in 2026 in Russian jack park, Anchorage, AK.",
"rating": 5,
"ratingAriaLabel": "5.0 out of 5 stars",
"ratingText": "5.0",
"reportAProblemText": "Report a problem",
"response": null,
"reviewComment": "Yana is knowledgable and professional, and down-to-earth at the same time. Having never purchased a home, I was overwhelmed with the process and I felt comfortable asking her questions. She was very accommodating as to my schedule and willing to change plans when needed. She responded quickly to my texts or emails, with answers that were clear and easy to understand. I also appreciated her willingness to change plans when needed and schedule meetings at short notice or outside of normal working hours. Most importantly, I never felt like I had to worry about whether we were \"on track\" as she kept me updated about what would happen next and when. My purchase was completed very quickly, and I'm settling into a new home that fits me perfectly. ",
"reviewForLabel": "Review for",
"reviewForUrl": "/profile/yana tatarin",
"reviewForValue": "Yana Tatarinova"
},
{
"reviewId": "9131495",
"ariaLabel": "Bought a Townhouse home in 2025 in Northeast, Anchorage, AK. review",
"isActionable": false,
"moderationUrl": null,
"reviewMetadataTexts": [
"4/19/2026",
"Stefani Essex"
],
"shareFacebookText": "Share on Facebook",
"shareFacebookUrl": "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Fcherisefowlerhtx%3Frx%3Dtrue%26review%3D9131495",
"shareXText": "Share on X",
"shareXUrl": "https://twitter.com/intent/tweet?text=Stefani%20Essex%20just%20reviewed%20me%20on%20%23Zillow&url=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Fcherisefowlerhtx%3Frx%3Dtrue%26review%3D9131495",
"subRatings": [
{
"ariaLabel": "4 out of 5 stars",
"label": "Local knowledge",
"value": 4
},
{
"ariaLabel": "3 out of 5 stars",
"label": "Process expertise",
"value": 3
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Responsiveness",
"value": 5
},
{
"ariaLabel": "3 out of 5 stars",
"label": "Negotiation skills",
"value": 3
}
],
"transactionSummary": "Bought a Townhouse home in 2025 in Northeast, Anchorage, AK.",
"rating": 1,
"ratingAriaLabel": "1.0 out of 5 stars",
"ratingText": "1.0",
"reportAProblemText": "Report a problem",
"response": {
"authorDisplayName": "Cherise Fowler",
"authorProfileImageUrl": "https://photos.zillowstatic.com/fp/459cf554696b495825638972248442ae-h_l.jpg",
"authorProfileUrl": "/profile/cherisefowlerhtx",
"comment": "I’m sorry to hear that this was your experience and that the process felt stressful. Purchasing a home—especially new construction—can involve many moving parts between builder, lender, timelines, and third parties. While some delays and communication issues were outside of my direct control, I always aimed to help you reach the finish line successfully, and I’m glad you were able to close on your new home. I sincerely wish you and your family the very best.",
"date": "06/23/2026"
},
"reviewComment": "I don't know what happened during our home buying journey with Cherise; she represented us as buyers for a new construction Hultquist home. It was immediately prior to her move from AK to TX and I honestly believe that she did not have time to work with us properly. It started well enough and we got our house in the end but it was incredibly stressful for us. She seemed confused about the process and I think part of that trouble lies with Hultquist. Since we were buying new construction, I can only assume that she saw us as easy money and never prioritized us. It got bad enough that I cursed at her (completely inappropriate; I later apologized). We even looked into getting a new realtor very late in the game or even bailing on the purchase altogether - that should say a lot. The icing on the cake was the lack of a new home gift from her - that says a lot more about her level of professionalism than anything else. We found her through our realtor in FL and really should have talked to recent clients - maybe we weren't the only ones struggling with her at the time.",
"reviewForLabel": "Review for",
"reviewForUrl": "/profile/cherisefowlerhtx",
"reviewForValue": "Cherise Fowler"
},
{
"reviewId": "9114547",
"ariaLabel": "Bought and sold a Single Family home in 2026 in University area, Anchorage, AK. review",
"isActionable": false,
"moderationUrl": null,
"reviewMetadataTexts": [
"4/5/2026",
"anadavid 22"
],
"shareFacebookText": "Share on Facebook",
"shareFacebookUrl": "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Fyana%20tatarin%3Frx%3Dtrue%26review%3D9114547",
"shareXText": "Share on X",
"shareXUrl": "https://twitter.com/intent/tweet?text=I%20was%20just%20reviewed%20on%20%23Zillow&url=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Fyana%20tatarin%3Frx%3Dtrue%26review%3D9114547",
"subRatings": [
{
"ariaLabel": "5 out of 5 stars",
"label": "Local knowledge",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Process expertise",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Responsiveness",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Negotiation skills",
"value": 5
}
],
"transactionSummary": "Bought and sold a Single Family home in 2026 in University area, Anchorage, AK.",
"rating": 5,
"ratingAriaLabel": "5.0 out of 5 stars",
"ratingText": "5.0",
"reportAProblemText": "Report a problem",
"response": null,
"reviewComment": "Working with Yana was an outstanding experience from start to finish. They guided us seamlessly through both selling our home and finding our new one. Their knowledge of the market, clear communication, and genuine care made the entire process smooth and stress-free.\n\nWhen selling our house, Yana provided clear advice on pricing, staging, and timing — our home sold quickly and for a great price. On the buying side, Yana listened carefully to what we were looking for and helped us find the perfect fit for our family.\n\n",
"reviewForLabel": "Review for",
"reviewForUrl": "/profile/yana tatarin",
"reviewForValue": "Yana Tatarinova"
},
{
"reviewId": "9105774",
"ariaLabel": "Bought a Single Family home in 2025 in Northeast, Anchorage, AK. review",
"isActionable": false,
"moderationUrl": null,
"reviewMetadataTexts": [
"3/29/2026",
"Richard Steinbauer"
],
"shareFacebookText": "Share on Facebook",
"shareFacebookUrl": "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Fyana%20tatarin%3Frx%3Dtrue%26review%3D9105774",
"shareXText": "Share on X",
"shareXUrl": "https://twitter.com/intent/tweet?text=Richard%20Steinbauer%20just%20reviewed%20me%20on%20%23Zillow&url=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Fyana%20tatarin%3Frx%3Dtrue%26review%3D9105774",
"subRatings": [
{
"ariaLabel": "5 out of 5 stars",
"label": "Local knowledge",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Process expertise",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Responsiveness",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Negotiation skills",
"value": 5
}
],
"transactionSummary": "Bought a Single Family home in 2025 in Northeast, Anchorage, AK.",
"rating": 5,
"ratingAriaLabel": "5.0 out of 5 stars",
"ratingText": "5.0",
"reportAProblemText": "Report a problem",
"response": null,
"reviewComment": "Yana Tatarinova was very patient and encouraging during our house hunt! There wasn’t much inventory to pick from, but she kept us updated with anything new that came on the market within our search parameters. Highly recommend her if you’re looking for a home in Anchorage!",
"reviewForLabel": "Review for",
"reviewForUrl": "/profile/yana tatarin",
"reviewForValue": "Yana Tatarinova"
},
{
"reviewId": "9101650",
"ariaLabel": "Bought a Single Family home in 2025 in Eagle river, AK. review",
"isActionable": false,
"moderationUrl": null,
"reviewMetadataTexts": [
"3/25/2026",
"MitchellRoberts72"
],
"shareFacebookText": "Share on Facebook",
"shareFacebookUrl": "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Fyana%20tatarin%3Frx%3Dtrue%26review%3D9101650",
"shareXText": "Share on X",
"shareXUrl": "https://twitter.com/intent/tweet?text=I%20was%20just%20reviewed%20on%20%23Zillow&url=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Fyana%20tatarin%3Frx%3Dtrue%26review%3D9101650",
"subRatings": [
{
"ariaLabel": "3 out of 5 stars",
"label": "Local knowledge",
"value": 3
},
{
"ariaLabel": "4 out of 5 stars",
"label": "Process expertise",
"value": 4
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Responsiveness",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Negotiation skills",
"value": 5
}
],
"transactionSummary": "Bought a Single Family home in 2025 in Eagle river, AK.",
"rating": 5,
"ratingAriaLabel": "5.0 out of 5 stars",
"ratingText": "5.0",
"reportAProblemText": "Report a problem",
"response": null,
"reviewComment": "Yana was great in helping me find my first home. She was willing to meet my schedule and set up home showings accordingly. I especially appreciated the effort she put into helping me make the best offers possible. She was available to help answer questions or field answers from other parties very quickly and responsively, even in the evenings after hours. Yana clearly has her client's best interests at heart. ",
"reviewForLabel": "Review for",
"reviewForUrl": "/profile/yana tatarin",
"reviewForValue": "Yana Tatarinova"
},
{
"reviewId": "9099526",
"ariaLabel": "Bought a home in 2026. review",
"isActionable": false,
"moderationUrl": null,
"reviewMetadataTexts": [
"3/24/2026",
"saulnier2005"
],
"shareFacebookText": "Share on Facebook",
"shareFacebookUrl": "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Fyana%20tatarin%3Frx%3Dtrue%26review%3D9099526",
"shareXText": "Share on X",
"shareXUrl": "https://twitter.com/intent/tweet?text=I%20was%20just%20reviewed%20on%20%23Zillow&url=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Fyana%20tatarin%3Frx%3Dtrue%26review%3D9099526",
"subRatings": [
{
"ariaLabel": "5 out of 5 stars",
"label": "Local knowledge",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Process expertise",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Responsiveness",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Negotiation skills",
"value": 5
}
],
"transactionSummary": "Bought a home in 2026.",
"rating": 5,
"ratingAriaLabel": "5.0 out of 5 stars",
"ratingText": "5.0",
"reportAProblemText": "Report a problem",
"response": null,
"reviewComment": "I recently worked with Yana to purchase my condo, and I couldn’t be more impressed. From our very first conversation, it was clear that she was incredibly organized and on top of every detail. Yana responded to my questions quickly, kept the process moving at every stage, and never left me wondering what came next. Thanks to her efficiency and professionalism, the whole experience was far less stressful than I anticipated. If you’re looking for a realtor who respects your time and gets things done, I highly recommend Yana.",
"reviewForLabel": "Review for",
"reviewForUrl": "/profile/yana tatarin",
"reviewForValue": "Yana Tatarinova"
},
{
"reviewId": "9099476",
"ariaLabel": "Bought a Single Family home in 2026 in Knik-fairview, Wasilla, AK. review",
"isActionable": false,
"moderationUrl": null,
"reviewMetadataTexts": [
"3/24/2026",
"Brendon Conway"
],
"shareFacebookText": "Share on Facebook",
"shareFacebookUrl": "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Fyana%20tatarin%3Frx%3Dtrue%26review%3D9099476",
"shareXText": "Share on X",
"shareXUrl": "https://twitter.com/intent/tweet?text=Brendon%20Conway%20just%20reviewed%20me%20on%20%23Zillow&url=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Fyana%20tatarin%3Frx%3Dtrue%26review%3D9099476",
"subRatings": [
{
"ariaLabel": "5 out of 5 stars",
"label": "Local knowledge",
"value": 5
},
{
"ariaLabel": "4 out of 5 stars",
"label": "Process expertise",
"value": 4
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Responsiveness",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Negotiation skills",
"value": 5
}
],
"transactionSummary": "Bought a Single Family home in 2026 in Knik-fairview, Wasilla, AK.",
"rating": 5,
"ratingAriaLabel": "5.0 out of 5 stars",
"ratingText": "5.0",
"reportAProblemText": "Report a problem",
"response": null,
"reviewComment": "Yana helped my family and I purchase a home in the Mat-Su Valley. She was very helpful and knew the process on what needed to be done in regards to closing on the house. I would recommend her to other people in the area.",
"reviewForLabel": "Review for",
"reviewForUrl": "/profile/yana tatarin",
"reviewForValue": "Yana Tatarinova"
},
{
"reviewId": "9099392",
"ariaLabel": "Bought a Single Family home in 2025 in Scenic foothills, Anchorage, AK. review",
"isActionable": false,
"moderationUrl": null,
"reviewMetadataTexts": [
"3/24/2026",
"myda1218"
],
"shareFacebookText": "Share on Facebook",
"shareFacebookUrl": "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Fyana%20tatarin%3Frx%3Dtrue%26review%3D9099392",
"shareXText": "Share on X",
"shareXUrl": "https://twitter.com/intent/tweet?text=I%20was%20just%20reviewed%20on%20%23Zillow&url=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Fyana%20tatarin%3Frx%3Dtrue%26review%3D9099392",
"subRatings": [
{
"ariaLabel": "5 out of 5 stars",
"label": "Local knowledge",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Process expertise",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Responsiveness",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Negotiation skills",
"value": 5
}
],
"transactionSummary": "Bought a Single Family home in 2025 in Scenic foothills, Anchorage, AK.",
"rating": 5,
"ratingAriaLabel": "5.0 out of 5 stars",
"ratingText": "5.0",
"reportAProblemText": "Report a problem",
"response": null,
"reviewComment": "We had a wonderful experience working with Yana as our realtor. From the very beginning, she was professional, knowledgeable, and truly dedicated to helping us find the right home. She took the time to understand our needs, preferences, and budget, and guided us through every step of the home-buying process with patience and care.\n\nYana was always responsive and kept us informed, making what could have been a stressful process feel smooth and manageable. Her expertise and attention to detail gave us confidence in every decision we made. She also went above and beyond to ensure everything stayed on track, from viewings to negotiations and closing.\n\nWe are so grateful for her support and highly recommend Yana to anyone looking to buy or sell a home. She is not only a great realtor but also someone who genuinely cares about her clients.\n",
"reviewForLabel": "Review for",
"reviewForUrl": "/profile/yana tatarin",
"reviewForValue": "Yana Tatarinova"
},
{
"reviewId": "9099363",
"ariaLabel": "Bought a Single Family home in 2026 in Huffman-o'malley, Anchorage, AK. review",
"isActionable": false,
"moderationUrl": null,
"reviewMetadataTexts": [
"3/24/2026",
"Matthew lewis"
],
"shareFacebookText": "Share on Facebook",
"shareFacebookUrl": "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Fyana%20tatarin%3Frx%3Dtrue%26review%3D9099363",
"shareXText": "Share on X",
"shareXUrl": "https://twitter.com/intent/tweet?text=Matthew%20lewis%20just%20reviewed%20me%20on%20%23Zillow&url=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Fyana%20tatarin%3Frx%3Dtrue%26review%3D9099363",
"subRatings": [
{
"ariaLabel": "5 out of 5 stars",
"label": "Local knowledge",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Process expertise",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Responsiveness",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Negotiation skills",
"value": 5
}
],
"transactionSummary": "Bought a Single Family home in 2026 in Huffman-o'malley, Anchorage, AK.",
"rating": 5,
"ratingAriaLabel": "5.0 out of 5 stars",
"ratingText": "5.0",
"reportAProblemText": "Report a problem",
"response": null,
"reviewComment": "Yana was awesome, she helped with everything we needed. She is a great asset to have on the team! If you're looking for a very knowledgeable agent to help with your buying needs, i suggest giving her a call!",
"reviewForLabel": "Review for",
"reviewForUrl": "/profile/yana tatarin",
"reviewForValue": "Yana Tatarinova"
},
{
"reviewId": "9070665",
"ariaLabel": "Bought a Condo home in 2026 in Airport heights, Anchorage, AK. review",
"isActionable": false,
"moderationUrl": null,
"reviewMetadataTexts": [
"2/28/2026",
"Hendrix"
],
"shareFacebookText": "Share on Facebook",
"shareFacebookUrl": "https://www.facebook.com/sharer.php?u=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Famykyunghwa%3Frx%3Dtrue%26review%3D9070665",
"shareXText": "Share on X",
"shareXUrl": "https://twitter.com/intent/tweet?text=Hendrix%20just%20reviewed%20me%20on%20%23Zillow&url=https%3A%2F%2Fwww.zillow.com%2Fprofile%2Famykyunghwa%3Frx%3Dtrue%26review%3D9070665",
"subRatings": [
{
"ariaLabel": "5 out of 5 stars",
"label": "Local knowledge",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Process expertise",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Responsiveness",
"value": 5
},
{
"ariaLabel": "5 out of 5 stars",
"label": "Negotiation skills",
"value": 5
}
],
"transactionSummary": "Bought a Condo home in 2026 in Airport heights, Anchorage, AK.",
"rating": 5,
"ratingAriaLabel": "5.0 out of 5 stars",
"ratingText": "5.0",
"reportAProblemText": "Report a problem",
"response": null,
"reviewComment": "Highly recommend Amy! She was professional, responsive, and fought for my best interest during negotiations. She made a potentially stressful process feel manageable and straightforward. I’d absolutely work with her again.",
"reviewForLabel": "Review for",
"reviewForUrl": "/profile/amykyunghwa",
"reviewForValue": "Amy McDaniel"
}
],
"showAllButtonText": "Show all reviews",
"sortOptions": {
"label": "Sort by",
"options": [
{
"sortOrder": 2,
"sortType": 2,
"text": "Newest first"
},
{
"sortOrder": 2,
"sortType": 3,
"text": "Rating (high to low)"
},
{
"sortOrder": 1,
"sortType": 3,
"text": "Rating (low to high)"
}
]
},
"starRatingAriaLabel": "5.0 out of 5 stars",
"starRatingScaleText": "/5",
"starRatingText": "5.0",
"subSectionHeaderText": "All reviews"
}
},
"aiInsightsOverview": {
"overview": {
"headerText": "The team at a glance",
"disclaimerText": "AI summary of verified sales and reviews",
"featuredHighlightsHeaderText": null,
"summaryBullets": [
"Clear communication and responsiveness ensure clients feel informed and supported throughout buying and selling processes, with personalized guidance tailored to individual needs and schedules.",
"Working throughout the Northeast, Sand Lake, and Abbott Loop neighborhoods, their experience reflects a strong presence in Anchorage.",
"Frequently works with single family and townhouse properties and is very focused on working with buyers."
],
"featuredHighlights": []
}
},
"showcaseBanner": {
"title": "This team offers Showcase to make listings stand out",
"triggerDescriptionPrefix": "Showcase",
"descriptionSuffix": "helps homes sell faster and for more with increased exposure on Zillow, a virtual tour, and an interactive floor plan.",
"contactButtonText": "Contact the team to learn more",
"imageUrl": "https://delivery.digitallibrary.zillowgroup.com/public/zillow_image_agent-finder-showcase-banner_20250902_v1_webp_CMS_Medium.webp",
"tooltip": {
"title": "Showcase",
"description": "Showcase is an Al-powered premium listing experience only available on Zillow. Showcase listings feature HD photos, grouped by room, that are designed to give you a deeper understanding of this home virtually before you ever step inside.",
"learnMoreText": "Learn more",
"learnMoreUrl": "/sell/showcase/"
}
}
},
"isImpersonating": false,
"isMobile": false,
"isReviewModerator": false,
"map": {
"mapCentroid": {
"latitude": "61.018782",
"longitude": "-149.361532"
}
},
"mlsIDs": [
{
"mls_ouid": "M00000001",
"mls_agent_id": "500063"
},
{
"mls_ouid": "M00000001",
"mls_agent_id": "15309"
}
],
"otherLicenses": [
{
"licenseTypeID": 1,
"licenseCode": "15309",
"licenseDesc": "Real Estate license "
}
],
"pastSales": {
"total": 4279,
"past_sales": [
{
"represented": "Seller",
"representedList": [
"Seller"
],
"sold_date": "6/26/2026",
"price": "--",
"zpid": 63439,
"image_url": "https://photos.zillowstatic.com/fp/4126026e8b0bc745b182ee874694475a-p_b.jpg",
"medium_image_url": "https://photos.zillowstatic.com/fp/4126026e8b0bc745b182ee874694475a-p_d.jpg",
"image_alt": "18821 Katelyn Cir, Eagle River, AK, 99577",
"home_details_url": "/homedetails/18821-Katelyn-Cir-Eagle-River-AK-99577/63439_zpid/",
"street_address": "18821 Katelyn Cir",
"city_state_zipcode": "Eagle River, AK, 99577",
"latitude": 61.30199,
"longitude": -149.53177,
"bathrooms": 3,
"bedrooms": 3,
"city": "Eagle River",
"state": "AK",
"livingAreaValue": 2048,
"livingAreaUnitsShort": "sqft",
"mlsLogoSrc": "https://photos.zillowstatic.com/fp/d42b04ec66a3e75f2f2af087512fffbf-zillow_web_48_23.jpg"
},
{
"represented": "Seller",
"representedList": [
"Seller"
],
"sold_date": "6/25/2026",
"price": "--",
"zpid": 79533361,
"image_url": "https://photos.zillowstatic.com/fp/5dc60f75ed9b54dafd632716ed077fd1-p_b.jpg",
"medium_image_url": "https://photos.zillowstatic.com/fp/5dc60f75ed9b54dafd632716ed077fd1-p_d.jpg",
"image_alt": "4203 Scenic View Dr, Anchorage, AK, 99504",
"home_details_url": "/homedetails/4203-Scenic-View-Dr-Anchorage-AK-99504/79533361_zpid/",
"street_address": "4203 Scenic View Dr",
"city_state_zipcode": "Anchorage, AK, 99504",
"latitude": 61.18279,
"longitude": -149.73969,
"bathrooms": 2,
"bedrooms": 3,
"city": "Anchorage",
"state": "AK",
"livingAreaValue": 1599,
"livingAreaUnitsShort": "sqft",
"mlsLogoSrc": "https://photos.zillowstatic.com/fp/d42b04ec66a3e75f2f2af087512fffbf-zillow_web_48_23.jpg"
},
{
"represented": "Buyer",
"representedList": [
"Buyer"
],
"sold_date": "6/19/2026",
"price": "--",
"zpid": 460439392,
"image_url": "https://photos.zillowstatic.com/fp/5d0188b4fdfa1271d85159939f135d43-p_b.jpg",
"medium_image_url": "https://photos.zillowstatic.com/fp/5d0188b4fdfa1271d85159939f135d43-p_d.jpg",
"image_alt": "268 Shageluk St #111, Anchorage, AK, 99504",
"home_details_url": "/homedetails/268-Shageluk-St-111-Anchorage-AK-99504/460439392_zpid/",
"street_address": "268 Shageluk St #111",
"city_state_zipcode": "Anchorage, AK, 99504",
"latitude": 61.22136,
"longitude": -149.7667,
"bathrooms": 3,
"bedrooms": 4,
"city": "Anchorage",
"state": "AK",
"livingAreaValue": 1842,
"liv