InfoCasas Data Parser & API
InfoCasas is Uruguay’s leading real-estate portal — also operating in Bolivia and Paraguay — with strong new-build coverage and structured price, area, and room data, and PropAPIS extracts its listings through a single REST API. Cover a low-anti-bot, three-country source from one integration without building or maintaining a scraper.
| Country | Uruguay |
|---|---|
| Type | Portal |
| Owner | InfoCasas |
| Listing types | new-build, resale, rental |
| Monthly visits | Strong UY leader (also BO & PY) |
| Active listings | — (portal does not publish a stable total) |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.infocasas.com.uy |
Platform Overview
Market Position
- UY Leader: A strong leader of the Uruguayan real-estate market (InfoCasas )
- Multi-Country: Also operates in Bolivia and Paraguay on the same stack
- New-Build Strength: Notably deep coverage of new-build / emprendimientos
- Low Anti-Bot: Largely unprotected pages — an easy regional target
Regional Reach
InfoCasas runs the same platform across Uruguay, Bolivia, and Paraguay, so a single extraction schema covers three under-served markets at once — attractive first-mover coverage with little scraper competition.
New-Build Launches
New-build / off-plan (“emprendimientos” / “pozo”) is a strength for InfoCasas, which carries developer project listings alongside resale and rental inventory.
Market Coverage
- New-build (emprendimientos): Off-plan developer projects
- Resale: Existing residential properties for purchase
- Rental (long-term): Residential leases
- Multi-Country: Uruguay, Bolivia, and Paraguay
Data Fields Available
PropAPIS extracts the structured fields from each InfoCasas listing:
Property Information
- Address: Property address and barrio / neighborhood
- Price: Asking price or rent (UYU / USD)
- Area: Built / total area in m²
- Rooms (dormitorios), Bathrooms, Parking spaces
- Property Type: Apartment, house, land
- Sale vs Rental: Listing operation type
Listing Details
- Description: Full free-text description
- Amenities: Features and characteristics
- Photos: Image URLs
Location
- Coordinates: Latitude and longitude
- Barrio, City and Department
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get an InfoCasas listing by URL or ID
property_data = api.platforms.infocasas.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 InfoCasas listings
listings = api.platforms.infocasas.search(
location='Montevideo',
listing_type='sale',
min_rooms=2
)
for listing in listings[:10]:
print(f"{listing.address} - {listing.price}")
print(f" {listing.beds} dorm | {listing.area_m2} m²")Quick Start
Python
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
property_data = api.platforms.infocasas.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.