Bproperty Data Parser & API
Bproperty is Bangladesh’s largest dedicated real-estate portal — part of the Dubizzle Group (EMPG) lineage — with ~170k monthly visits (Oct 2024) — and PropAPIS extracts its new-build, resale, rental and commercial listings through a single REST API. Cover Dhaka, Chittagong and the wider country without building or maintaining a Dubizzle/EMPG-grade scraper.
| Country | Bangladesh |
|---|---|
| Type | Portal |
| Owner | Dubizzle Group |
| Listing types | new-build, resale, rental, commercial |
| Monthly visits | ~170k / mo (Oct 2024) |
| Active listings | — |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.bproperty.com |
Platform Overview
Market Position
- Bangladesh’s largest dedicated RE portal
- Part of the Dubizzle Group (EMPG) lineage — the same stack behind Zameen (PK) and Bayut/dubizzle (Gulf) (per the South Asia research report)
- ~170k monthly visits (Oct 2024 — figure may be understated; traffic is modest)
- Also operates the property-info site PropertyGuide Bangladesh
Note: Visits are an Oct 2024 reading and likely understated; treat as an estimate. The Dubizzle/EMPG stack links Bproperty to the Zameen parser pattern.
Market Coverage
Geographic Coverage:
- Dhaka and Greater Dhaka
- Chittagong and other major cities
- Wider coverage across Bangladesh
Property Types:
- Apartments and Flats
- Houses
- Commercial (offices, shops)
- New Projects / developments
Data Availability
Sharing the Dubizzle/EMPG stack, Bproperty exposes verified-listing flags and agency info similar to Zameen. PropAPIS captures verified flags and new-build project metadata — developer, configurations and amenities — alongside standard resale, rental and commercial fields.
Listing Categories:
- Buy: Resale and ready apartments / houses
- Rent: Long-term residential rentals
- Commercial: Offices and shops
- New Projects: Developer launches where listed
Data Fields Available
PropAPIS extracts structured data from each Bproperty listing:
Property Information
- Address: Area, city and project
- Price: Sale price or rent
- Bedrooms and Bathrooms
- Property Type: Apartment, house, commercial
- Area: Square feet / katha
Project Data
- Developer: Builder name
- Project: Development name
- Amenities: Project facilities
Listing Details
- Description: Full listing text
- Photos: Image URLs
- Verified status where flagged
- Added Date
Agent Information
- Agent / agency name
- Verified flag
- Listing type: Agent or developer
- Contact where published
Location
- Area and City
- Coordinates: Latitude and longitude 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.bproperty.get_property(
listing_id='12345678'
)
print(f"Title: {property_data.title}")
print(f"Price: BDT {property_data.price:,}")
print(f"Verified: {property_data.verified}")Search Listings
# Search Bproperty listings
listings = api.platforms.bproperty.search(
city='Dhaka',
purpose='for-sale',
property_type='Apartment'
)
for listing in listings[:10]:
print(f"{listing.title} - BDT {listing.price:,}")
print(f" {listing.area} | {listing.locality}")Search Rentals
# Search Bproperty rentals
rentals = api.platforms.bproperty.search(
city='Dhaka',
purpose='for-rent'
)
for rental in rentals[:10]:
print(f"{rental.title} - BDT {rental.price:,}/mo")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Search Bproperty listings in Dhaka
listings = api.platforms.bproperty.search(city='Dhaka', purpose='for-sale')
for listing in listings[:5]:
print(f"{listing.title} - BDT {listing.price:,}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
// Search Bproperty listings in Dhaka
const listings = await api.platforms.bproperty.search({
city: 'Dhaka',
purpose: 'for-sale',
});
listings.slice(0, 5).forEach((l) => {
console.log(`${l.title} - BDT ${l.price.toLocaleString()}`);
});curl "https://api.propapis.com/v1/platforms/bproperty/search?city=Dhaka&purpose=for-sale" \
-H "Authorization: Bearer your_api_key"