Skip to Content

Square Yards Data Parser & API

Square Yards is India’s largest primary (new-build) residential aggregator and a multi-country broker network spanning nine markets — ~2.6M monthly visits with the region’s deepest new-launch project data — and PropAPIS extracts its primary, resale and rental listings through a single REST API. Reach configurations, developer info and payment plans for under-construction inventory without building or maintaining a scraper.

CountryIndia
TypeAggregator
OwnerSquare Yards
Listing typesnew-build, resale, rental
Monthly visits~2.6M / mo
Active listings
API accessPartial / limited API
Parse priority★★★★☆
Official sitewww.squareyards.com

Platform Overview

Market Position

  • India’s largest primary (new-build) residential aggregator
  • International footprint across nine countries — India plus UAE, KSA, Australia and Canada
  • ~2.6M monthly visits (mixed estimate); raised $35M late 2025 (Smile Gate-led), eyeing unicorn / IPO
  • Uniquely strong primary / new-launch project data, with its own data products (ListingHub) — per the South Asia research report

Market Coverage

Geographic Coverage:

  • India: Metros and tier-2 cities (primary focus)
  • UAE, Saudi Arabia, Australia, Canada and other international markets

Property Types:

  • New Projects / Under-construction developments (primary focus)
  • Apartments and Builder Floors
  • Independent Houses and Villas
  • Resale and rental inventory

Data Availability

India’s listing mix is unusually new-launch / under-construction heavy — primary residential is the dominant monetized segment, and Square Yards is the region’s specialist. Its project data is the richest for primary inventory: unit configurations, developer info, payment plans, possession dates and RERA registration numbers — RERA IDs being an India-unique normalizing key that PropAPIS captures where published.

Listing Categories:

  • New Projects: Developer launches with configurations and payment plans
  • Buy: Resale properties
  • Rent: Long-term residential rentals
  • International: Cross-border primary inventory

Data Fields Available

PropAPIS extracts structured data from each Square Yards listing:

Property Information

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

Primary / Project Data

  • Developer: Builder name
  • Project: Development / project name
  • Configurations: Available unit types and layouts
  • Payment Plan: Installment structure
  • RERA ID: RERA registration number where published
  • Possession Date: Expected handover

Listing Details

  • Description: Full listing text
  • Photos: Image URLs
  • Amenities: Project facilities
  • Added Date

Location & Agent Data

  • Locality and City
  • Coordinates: Latitude and longitude
  • Agent / Broker network info
  • Country / market

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.square_yards.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"Project: {property_data.project}") print(f"RERA: {property_data.rera_id}")

Search Listings

# Search Square Yards listings listings = api.platforms.square_yards.search( city='Gurugram', purpose='for-sale', min_price=9000000, max_price=30000000, min_bedrooms=2, property_type='Apartment' ) for listing in listings[:10]: print(f"{listing.title} - ₹{listing.price:,}") print(f" {listing.bedrooms} BHK | {listing.locality}")

Search Primary Projects

# Search primary / new-launch projects with payment plans projects = api.platforms.square_yards.search_projects( city='Noida', developer='ATS' ) for project in projects[:5]: print(f"{project.name} - {project.developer}") print(f" Configs: {project.configurations} | Possession: {project.possession_date}") print(f" Payment plan: {project.payment_plan}")

Quick Start

from propapis import PropAPIS api = PropAPIS(api_key='your_api_key') # Search Square Yards listings in Gurugram listings = api.platforms.square_yards.search(city='Gurugram', 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 Square Yards listings in Gurugram const listings = await api.platforms.square_yards.search({ city: 'Gurugram', purpose: 'for-sale', }); listings.slice(0, 5).forEach((l) => { console.log(`${l.title} - ₹${l.price.toLocaleString()}`); });
curl "https://api.propapis.com/v1/platforms/square-yards/search?city=Gurugram&purpose=for-sale" \ -H "Authorization: Bearer your_api_key"

Frequently asked questions