Toctoc Data Parser & API
Toctoc is a leading Chilean real-estate portal — 4M+ monthly visits claimed — with strong new-build (proyectos) coverage and structured price, area, and room data, and PropAPIS extracts its listings through a single REST API. Cover the Chilean market, including developer projects priced in UF, without building or maintaining a scraper.
| Country | Chile |
|---|---|
| Type | Portal |
| Owner | Toctoc |
| Listing types | new-build, resale, rental |
| Monthly visits | 4M+ / mo claimed (company) |
| Active listings | — (portal does not publish a stable total) |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.toctoc.com |
Platform Overview
Market Position
- Leading CL Portal: 4M+ monthly visits claimed by the company
- New-Build Strength: Deep proyectos / off-plan developer coverage
- UF Pricing: Chilean listings priced in UF and CLP, which PropAPIS normalizes
- Structured Fields: Standard price / m² / rooms attributes per listing
New-Build Launches
New-build / off-plan (“proyectos”) is significant in Chile, and Toctoc carries developer project listings — with project-level fields like delivery date and units — alongside resale and rental inventory.
Market Coverage
- New-build (proyectos): Off-plan developer projects
- Resale: Existing residential properties for purchase
- Rental (long-term): Residential leases
- Nationwide: Santiago and major Chilean regions
Data Fields Available
PropAPIS extracts the structured fields from each Toctoc listing:
Property Information
- Address: Property address and comuna / neighborhood
- Price: Asking price or rent (UF / CLP)
- Area: Built / total area in m²
- Rooms (dormitorios), Bathrooms, Parking spaces
- Property Type: Apartment (departamento), house (casa)
- 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
- Comuna, City and Region
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a Toctoc listing by URL or ID
property_data = api.platforms.toctoc.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 Toctoc listings
listings = api.platforms.toctoc.search(
location='Santiago',
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.toctoc.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.