SuperCasas Data Parser & API
SuperCasas is the Dominican Republic’s market-leading real-estate portal — 10k+ listings and 65k+ monthly buyers — covering resale, rental, new-build, and land, and PropAPIS extracts its data through a single REST API. Cover an under-served Caribbean market with little scraper competition, without building or maintaining a scraper.
| Country | Dominican Republic |
|---|---|
| Type | Portal |
| Owner | SuperCasas |
| Listing types | resale, rental, new-build, land |
| Monthly visits | 65k+ monthly buyers (company) |
| Active listings | 10k+ listings |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.supercasas.com |
Platform Overview
Market Position
- DR Market Leader: The leading real-estate portal in the Dominican Republic (SuperCasas )
- Inventory Scale: 10k+ active listings and 65k+ monthly buyers (company)
- Greenfield: Little scraper competition in the Caribbean — strong first-mover coverage
- Low Anti-Bot: Largely unprotected pages, straightforward to extract
New-Build Launches
New-build / preventa is part of the DR market, and SuperCasas carries developer project listings alongside resale, rental, and land inventory.
Market Coverage
- Resale: Existing residential properties for purchase
- Rental (long-term): Residential leases
- New-build (preventa): Off-plan developer projects
- Land: Lots and development sites
- Nationwide: Santo Domingo, Santiago, Punta Cana, and across the DR
Data Fields Available
PropAPIS extracts the structured fields from each SuperCasas listing:
Property Information
- Address: Property address and sector / neighborhood
- Price: Asking price or rent (DOP / USD)
- Area: Built / total area in m²
- Rooms (habitaciones), Bathrooms, Parking spaces
- Property Type: Apartment, house, land, commercial
- Sale vs Rental: Listing operation type
Listing Details
- Description: Full free-text description
- Amenities: Features and characteristics
- Photos: Image URLs
Seller & Location
- Seller: Agent or private-seller details
- Coordinates: Latitude and longitude
- Sector, City and Province
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a SuperCasas listing by URL or ID
property_data = api.platforms.supercasas.get_property(
listing_id='123456'
)
print(f"Address: {property_data.address}")
print(f"Price: {property_data.price}")
print(f"Area: {property_data.area_m2} m²")
print(f"Type: {property_data.property_type}")Search Listings
# Search SuperCasas listings
listings = api.platforms.supercasas.search(
location='Santo Domingo',
listing_type='sale',
min_beds=2
)
for listing in listings[:10]:
print(f"{listing.address} - {listing.price}")
print(f" {listing.beds} hab | {listing.area_m2} m²")Quick Start
Python
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
property_data = api.platforms.supercasas.get_property('123456')
print(f"Price: {property_data.price}")
print(f"Area: {property_data.area_m2} m²")
print(f"Beds: {property_data.beds}")For detailed documentation, see our API Reference.