Skip to Content

Magicbricks Data Parser & API

Magicbricks is the Times Group’s flagship property portal — ~9.1M monthly visits (Semrush, Nov 2025) with deep resale, rent and commercial inventory — and PropAPIS extracts its listings, locality price index, rent estimates and RERA project data through a single REST API. Cover India’s metros with strong price-trend context without building or maintaining a scraper.

CountryIndia
TypePortal
OwnerTimes Group
Listing typesnew-build, resale, rental, commercial, land
Monthly visits~9.1M / mo
Active listings~1M+ (historical claim)
API accessNo public API (parse-only)
Parse priority★★★★★
Official sitewww.magicbricks.com

Platform Overview

Market Position

  • One of India’s big-three portals: ~9.1M monthly visits (Semrush, Nov 2025)
  • Owned by Times Group / Times Internet — profitable, with IPO considerations underway
  • Deep resale, rent and commercial inventory; ~1M+ listings claimed historically
  • Strong price-trend / locality price index data (per the South Asia research report)

Market Coverage

Geographic Coverage:

  • Metros: Mumbai, Delhi NCR, Bengaluru, Pune, Hyderabad, Chennai, Kolkata
  • Tier-2 cities across India
  • Nationwide resale, rental and new-launch inventory

Property Types:

  • Apartments and Builder Floors
  • Independent Houses and Villas
  • Plots and Land
  • Commercial (offices, retail, warehouses)
  • New Projects / Under-construction developments

Data Availability

India’s listing mix is unusually new-launch / under-construction heavy — primary residential is the dominant monetized segment. Magicbricks layers a locality price index, rent estimates and price trends on top of standard listings, and under-construction projects carry RERA registration numbers and possession dates — RERA IDs being an India-unique normalizing key that PropAPIS captures where published.

Listing Categories:

  • Buy: Resale and ready-to-move properties
  • Rent: Long-term residential rentals
  • New Projects: Developer launches with RERA and possession data
  • Commercial: Offices, retail, warehouses
  • Land: Plots and development sites

Data Fields Available

PropAPIS extracts structured data from each Magicbricks listing:

Property Information

  • Address: Locality, city and project
  • Price: Sale price or rent
  • Bedrooms and Bathrooms (BHK configuration)
  • Property Type: Apartment, villa, plot, commercial
  • Area: Carpet / built-up / super built-up (sq ft)
  • Possession / Completion status

New-Launch / Project Data

  • Developer: Builder name
  • Project: Development / project name
  • RERA ID: RERA registration number where published
  • Possession Date: Expected handover
  • Configurations: Available BHK unit types

Market Intelligence

  • Price Index: Locality price index
  • Rent Estimate: Estimated rent for the area
  • Price Trends: Locality-level price movement

Listing Details

  • Description: Full listing text
  • Photos: Image URLs
  • Added Date

Location & Agent Data

  • Locality and City
  • Coordinates: Latitude and longitude
  • Agent / Builder name and listing type (owner, dealer, builder)
  • Contact where published

API Endpoints

Get Property Details

from propapis import PropAPIS api = PropAPIS(api_key='your_api_key') # Get a listing by URL or ID property_data = api.platforms.magicbricks.get_property( listing_id='12345678' ) print(f"Title: {property_data.title}") print(f"Price: ₹{property_data.price:,}") print(f"Type: {property_data.property_type}") print(f"Locality: {property_data.locality}") print(f"RERA: {property_data.rera_id}")

Search Listings

# Search Magicbricks listings listings = api.platforms.magicbricks.search( city='Delhi', purpose='for-sale', min_price=7000000, max_price=20000000, min_bedrooms=2, property_type='Apartment' ) for listing in listings[:10]: print(f"{listing.title} - ₹{listing.price:,}") print(f" {listing.bedrooms} BHK | {listing.locality}")
# Get locality price index and rent estimates trends = api.platforms.magicbricks.get_locality_trends( city='Pune', locality='Wakad' ) print(f"Avg Price: ₹{trends.avg_price_per_sqft:,}/sq ft") print(f"Rent Estimate: ₹{trends.rent_estimate:,}/mo") print(f"YoY Change: {trends.yoy_change:+.1f}%")

Quick Start

from propapis import PropAPIS api = PropAPIS(api_key='your_api_key') # Search Magicbricks listings in Delhi listings = api.platforms.magicbricks.search(city='Delhi', purpose='for-sale') for listing in listings[:5]: print(f"{listing.title} - ₹{listing.price:,}")
import { PropAPIS } from 'propapis'; const api = new PropAPIS({ apiKey: 'your_api_key' }); // Search Magicbricks listings in Delhi const listings = await api.platforms.magicbricks.search({ city: 'Delhi', purpose: 'for-sale', }); listings.slice(0, 5).forEach((l) => { console.log(`${l.title} - ₹${l.price.toLocaleString()}`); });
curl "https://api.propapis.com/v1/platforms/magicbricks/search?city=Delhi&purpose=for-sale" \ -H "Authorization: Bearer your_api_key"

Frequently asked questions