Loft Data Parser & API
Loft is a Brazilian proptech that processed 1.2M transactions in 2025, covering resale, rental, and new-build inventory concentrated in São Paulo and Rio de Janeiro — and PropAPIS extracts its listing data through a single REST API. Tap into one of Brazil’s most transaction-rich proptech platforms without building or maintaining a scraper.
| Country | Brazil |
|---|---|
| Type | Marketplace |
| Owner | Loft (proptech) |
| Listing types | resale, rental, new-build |
| Monthly visits | — (portal does not publish a stable total) |
| Active listings | 1.2M transactions processed in 2025 (company) |
| API access | Unofficial API only |
| Parse priority | ★★★☆☆ |
| Official site | loft.com.br |
Platform Overview
Market Position
- High-Volume Proptech: 1.2M transactions processed in 2025 (Rio Times )
- Metro Focus: Deep São Paulo and Rio de Janeiro residential coverage
- iBuyer → B2B/SaaS: Evolved from a direct-purchase iBuyer into a platform serving brokers and partners
- Transaction-Grade Data: Pricing tied to real closings rather than open-ended asking prices
Business Model
Loft began as an iBuyer (buying and reselling homes directly) and has since broadened into a marketplace and SaaS toolset for brokers. That gives its inventory unusually clean, transaction-backed pricing signals compared with classic open-listing portals.
Market Coverage
- Resale: Existing residential apartments and houses
- Rental (long-term): Residential leases in core metros
- New-build (lançamentos): Developer launches in São Paulo / Rio
- Metro Concentration: São Paulo and Rio de Janeiro, expanding
Data Fields Available
PropAPIS extracts the structured fields from each Loft listing:
Property Information
- Address: Property address and neighborhood
- Price: Asking or transaction price (BRL)
- Area: Usable / total area in m²
- Bedrooms, Bathrooms, Parking spaces
- Property Type: Apartment, house
- Sale vs Rental: Listing operation type
Listing Details
- Condo Fee (condomínio) and IPTU property tax
- Amenities: Building and unit features
- Photos: Image URLs
Location
- Coordinates: Latitude and longitude
- Neighborhood and City
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a Loft listing by URL or ID
property_data = api.platforms.loft.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 Loft listings
listings = api.platforms.loft.search(
location='São Paulo',
listing_type='sale',
min_price=300000,
max_price=900000,
min_beds=2
)
for listing in listings[:10]:
print(f"{listing.address} - {listing.price}")
print(f" {listing.beds} beds | {listing.area_m2} m²")Quick Start
Python
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
property_data = api.platforms.loft.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.