Actowiz Metrics Real-time
logo
analytics dashboard for brands! Try Free Demo
Weekly E-commerce Price Comparison in Amazon India - Trends & Insights-01

Introduction

Rent prices are changing faster than ever.

Platforms like Zillow (USA), Apartments.com (USA), Bayut (UAE), Property Finder (UAE), 99acres (India), Magicbricks (India) update rental listings daily and influence:

  • rental affordability
  • occupancy rates
  • landlord pricing decisions
  • relocation & migration patterns
  • investment decisions
  • rental yield projections

This tutorial shows how to build a complete Rental Trends Dashboard using:

  • Selenium
  • Requests
  • BeautifulSoup
  • Pandas
  • Matplotlib / Plotly

You’ll learn how to scrape rental listings from USA, UAE, and India, clean the data, extract key indicators, and build a functional dashboard dataset.

This is the same workflow Actowiz Solutions uses in large-scale rental intelligence projects.

Step 1: Tools & Libraries You Need

pip install selenium
pip install beautifulsoup4
pip install requests
pip install pandas
pip install matplotlib
pip install plotly
pip install undetected-chromedriver

We will scrape:

And then merge them into a unified rental intelligence table.

Step 2: USA Rental Scraping (Zillow Example)

Zillow rental pages show:

  • price
  • beds/baths
  • square footage
  • address
  • availability
  • property type

Example URL:

https://www.zillow.com/homes/for_rent/San-Francisco,-CA_rb/

2.1 Start Undetected Chrome
import undetected_chromedriver as uc
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from time import sleep

browser = uc.Chrome()
browser.get("https://www.zillow.com/homes/for_rent/San-Francisco,-CA_rb/")
sleep(5)
2.2 Scroll Page to Load Listings
for _ in range(12):
    browser.find_element(By.TAG_NAME, "body").send_keys(Keys.END)
    sleep(2)
2.3 Extract Rental Listing Cards
cards = browser.find_elements(By.XPATH, '//article')
usa_rentals = []
2.4 Parse Rental Details
for card in cards:
    try:
        address = card.find_element(By.CLASS_NAME, "list-card-addr").text
    except:
        address = ""

    try:
        price = card.find_element(By.CLASS_NAME, "list-card-price").text
    except:
        price = ""

    try:
        beds = card.find_element(By.CLASS_NAME, "list-card-details").text
    except:
        beds = ""

    try:
        url = card.find_element(By.TAG_NAME, "a").get_attribute("href")
    except:
        url = ""

    usa_rentals.append({
        "country": "USA",
        "platform": "Zillow",
        "address": address,
        "price_raw": price,
        "beds_raw": beds,
        "url": url
    })

Step 3: UAE Rental Scraping (Bayut Example)

Example URL:

https://www.bayut.com/to-rent/apartments/dubai/

3.1 Open Bayut
browser.get("https://www.bayut.com/to-rent/apartments/dubai/")
sleep(5)
3.2 Scroll
for _ in range(10):
    browser.find_element(By.TAG_NAME, "body").send_keys(Keys.END)
    sleep(2)
3.3 Extract Listings
uae_rentals = []

items = browser.find_elements(By.XPATH, '//article[contains(@class,"ee734f1a")]')
3.4 Extract Details
for item in items:
    try:
        title = item.find_element(By.CLASS_NAME, "_7afabd84").text
    except:
        title = ""

    try:
        price = item.find_element(By.CLASS_NAME, "_105b8a67").text
    except:
        price = ""

    try:
        location = item.find_element(By.CLASS_NAME, "_162e6467").text
    except:
        location = ""

    try:
        url = item.find_element(By.TAG_NAME, "a").get_attribute("href")
    except:
        url = ""

    uae_rentals.append({
        "country": "UAE",
        "platform": "Bayut",
        "location": location,
        "price_raw": price,
        "title": title,
        "url": url
    })

Step 4: India Rental Scraping (99acres Example)

Example link:

https://www.99acres.com/search/rent/residential-apartments/bangalore

4.1 Open 99acres
browser.get("https://www.99acres.com/search/rent/residential-apartments/bangalore")
sleep(5)
4.2 Extract Cards
india_rentals = []

cards = browser.find_elements(By.XPATH, '//div[contains(@class,"boxWrap")]')
4.3 Extract Rental Data
for c in cards:
    try:
        price = c.find_element(By.CLASS_NAME, "srpRentPrice").text
    except:
        price = ""

    try:
        details = c.find_element(By.CLASS_NAME, "srpDataWrap").text
    except:
        details = ""

    try:
        url = c.find_element(By.TAG_NAME, "a").get_attribute("href")
    except:
        url = ""

    india_rentals.append({
        "country": "India",
        "platform": "99acres",
        "details": details,
        "price_raw": price,
        "url": url
    })

Step 5: Combine All Countries Into One Dataset

import pandas as pd

df = pd.DataFrame(usa_rentals + uae_rentals + india_rentals)
df.head()

Step 6: Normalize Prices (USD / AED / INR)

Remove unwanted characters:

import re

def clean_price(val):
    if not val:
        return None

    val = val.replace(",", "").replace("AED","").replace("₹","").replace("$","")
    nums = re.findall(r"\d+", val)
    return int(nums[0]) if nums else None

df["price_num"] = df["price_raw"].apply(clean_price)

Step 7: Convert All Prices Into a Single Currency (USD)

from currency_converter import CurrencyConverter
c = CurrencyConverter()

def convert_to_usd(row):
    if row["country"] == "USA":
        return row["price_num"]
    if row["country"] == "UAE":
        return c.convert(row["price_num"], "AED", "USD")
    if row["country"] == "India":
        return c.convert(row["price_num"], "INR", "USD")

df["price_usd"] = df.apply(convert_to_usd, axis=1)

Step 8: Extract Beds/Baths for All Platforms

USA (Zillow beds) comes in text like "2 bds | 1 ba | 850 sqft".

UAE (Bayut) includes "2 Beds • 3 Baths".

India (99acres) includes "2 BHK".

Let's extract:

def extract_beds(val):
    match = re.search(r"(\d+)\s?(bd|bed|beds|bhk)", val.lower())
    return int(match.group(1)) if match else None

df["beds"] = df["beds_raw"].fillna("") + df["title"].fillna("") + df["details"].fillna("")
df["beds"] = df["beds"].apply(extract_beds)

Step 9: Calculate Median Rent by Country & City

median_rent = df.groupby(["country"])["price_usd"].median()
print(median_rent)

Step 10: Build a Rental Trends Graph

Using Plotly:

import plotly.express as px

fig = px.box(df, x="country", y="price_usd", title="Rental Price Distribution (USA vs UAE vs India)")
fig.show()

Step 11: Build “Rental Index” for Dashboard

Actowiz Solutions often builds:

  • Rent Score
  • Affordability Index
  • Price Pressure Score

Example:

df["rent_index"] = df["price_usd"] / df["beds"]

Step 12: Export Dashboard Data

df.to_csv("rental_trends_dashboard.csv", index=False)

Step 13: Future Enhancements

  • Geo-mapping (lat/long extraction)
  • Sentiment from reviews
  • Time-series rental tracking
  • Daily/weekly scraping automation
  • Predictive modeling via ML

Limitations of Rental Scraping

  • Zillow aggressively blocks bots
    Use rotating proxies.
  • Bayut sometimes obfuscates prices
    JS rendering must be handled properly.
  • 99acres uses anti-bot patterns
    Delay + random scroll required.
  • Beds/baths format varies heavily
    Requires complex regex cleaning.
  • Currency conversion fluctuates
    Realtime FX API ideal.

When to Use Actowiz Solutions

Use Actowiz if you need:

  • Daily rental price monitoring across multiple countries
  • API-based rental intelligence
  • City-level & zip-level dashboards
  • Seasonality analysis
  • Occupancy insights
  • Professional rental forecasting
  • Automated pipelines (ETL + storage + dashboards)

We support:

  • USA
  • UAE
  • India
  • UK
  • Singapore
  • Europe

With scalable extraction across:

  • Zillow
  • Realtor
  • Apartments.com
  • Bayut
  • Property Finder
  • MagicBricks
  • 99acres

Conclusion

In this tutorial, you learned how to:

Congratulations — you now have a complete Rental Trends Dashboard engine.

You can also reach us for all your mobile app scraping, data collection, web scraping , and instant data scraper service requirements!

Social Proof That Converts

Trusted by Global Leaders Across Q-Commerce, Travel, Retail, and FoodTech

Our web scraping expertise is relied on by 4,000+ global enterprises including Zomato, Tata Consumer, Subway, and Expedia — helping them turn web data into growth.

4,000+ Enterprises Worldwide
50+ Countries Served
20+ Industries
Join 4,000+ companies growing with Actowiz →
Real Results from Real Clients

Hear It Directly from Our Clients

Watch how businesses like yours are using Actowiz data to drive growth.

1 min
★★★★★
"Actowiz Solutions offered exceptional support with transparency and guidance throughout. Anna and Saga made the process easy for a non-technical user like me. Great service, fair pricing!"
TG
Thomas Galido
Co-Founder / Head of Product at Upright Data Inc.
2 min
★★★★★
"Actowiz delivered impeccable results for our company. Their team ensured data accuracy and on-time delivery. The competitive intelligence completely transformed our pricing strategy."
II
Iulen Ibanez
CEO / Datacy.es
1:30
★★★★★
"What impressed me most was the speed — we went from requirement to production data in under 48 hours. The API integration was seamless and the support team is always responsive."
FC
Febbin Chacko
-Fin, Small Business Owner
icons 4.8/5 Average Rating
icons 50+ Video Testimonials
icons 92% Client Retention
icons 50+ Countries Served

Join 4,000+ Companies Growing with Actowiz

From Zomato to Expedia — see why global leaders trust us with their data.

Why Global Leaders Trust Actowiz

Backed by automation, data volume, and enterprise-grade scale — we help businesses from startups to Fortune 500s extract competitive insights across the USA, UK, UAE, and beyond.

icons
7+
Years of Experience
Proven track record delivering enterprise-grade web scraping and data intelligence solutions.
icons
4,000+
Projects Delivered
Serving startups to Fortune 500 companies across 50+ countries worldwide.
icons
200+
In-House Experts
Dedicated engineers across scrapers, AI/ML models, APIs, and data quality assurance.
icons
9.2M
Automated Workflows
Running weekly across eCommerce, Quick Commerce, Travel, Real Estate, and Food industries.
icons
270+ TB
Data Transferred
Real-time and batch data scraping at massive scale, across industries globally.
icons
380M+
Pages Crawled Weekly
Scaled infrastructure for comprehensive global data coverage with 99% accuracy.

AI Solutions Engineered
for Your Needs

LLM-Powered Attribute Extraction: High-precision product matching using large language models for accurate data classification.
Advanced Computer Vision: Fine-grained object detection for precise product classification using text and image embeddings.
GPT-Based Analytics Layer: Natural language query-based reporting and visualization for business intelligence.
Human-in-the-Loop AI: Continuous feedback loop to improve AI model accuracy over time.
icons Product Matching icons Attribute Tagging icons Content Optimization icons Sentiment Analysis icons Prompt-Based Reporting

Connect the Dots Across
Your Retail Ecosystem

We partner with agencies, system integrators, and technology platforms to deliver end-to-end solutions across the retail and digital shelf ecosystem.

icons
Analytics Services
icons
Ad Tech
icons
Price Optimization
icons
Business Consulting
icons
System Integration
icons
Market Research
Become a Partner →

Popular Datasets — Ready to Download

Browse All Datasets →
icons
Amazon
eCommerce
Free 100 rows
icons
Zillow
Real Estate
Free 100 rows
icons
DoorDash
Food Delivery
Free 100 rows
icons
Walmart
Retail
Free 100 rows
icons
Booking.com
Travel
Free 100 rows
icons
Indeed
Jobs
Free 100 rows

Latest Insights & Resources

View All Resources →
thumb
Blog

How to Extract Real-Time Travel Mode Data Using APIs for AI Travel Apps

Extract real-time travel mode data via APIs to power smarter AI travel apps with live route updates, transit insights, and seamless trip planning.

thumb
Case Study

UK DTC Brand Detects 800+ MAP Violations in First Month

How a $50M+ consumer electronics brand used Actowiz MAP monitoring to detect 800+ violations in 30 days, achieving 92% resolution rate and improving retailer satisfaction by 40%.

thumb
Report

Track UK Grocery Products Daily Using Automated Data Scraping to Monitor 50,000+ UK Grocery Products from Morrisons, Asda, Tesco, Sainsbury’s, Iceland, Co-op, Waitrose, Ocado

Track UK Grocery Products Daily Using Automated Data Scraping across Morrisons, Asda, Tesco, Sainsbury’s, Iceland, Co-op, Waitrose, and Ocado for insights.

Start Where It Makes Sense for You

Whether you're a startup or a Fortune 500 — we have the right plan for your data needs.

icons
Enterprise
Book a Strategy Call
Custom solutions, dedicated support, volume pricing for large-scale needs.
icons
Growing Brand
Get Free Sample Data
Try before you buy — 500 rows of real data, delivered in 2 hours. No strings.
icons
Just Exploring
View Plans & Pricing
Transparent plans from $500/mo. Find the right fit for your budget and scale.
Get in Touch
Let's Talk About
Your Data Needs
Tell us what data you need — we'll scope it for free and share a sample within hours.
  • Free Sample in 2 HoursShare your requirement, get 500 rows of real data — no commitment.
  • 💰
    Plans from $500/monthFlexible pricing for startups, growing brands, and enterprises.
  • 🇺🇸
    US-Based SupportOffices in New York & California. Aligned with your timezone.
  • 🔒
    ISO 9001 & 27001 CertifiedEnterprise-grade security and quality standards.
Request Free Sample Data
Fill the form below — our team will reach out within 2 hours.
+1
Free 500-row sample · No credit card · Response within 2 hours

Request Free Sample Data

Our team will reach out within 2 hours with 500 rows of real data — no credit card required.

+1
Free 500-row sample · No credit card · Response within 2 hours