Yapo Data Parser & API
Yapo is Chile’s leading general classifieds marketplace, with a large real-estate section covering resale, rental, and land — owned by Adevinta/Schibsted — and PropAPIS extracts its property data through a single REST API. Tap a high-traffic, private-seller-heavy CL inventory that complements the agent-driven portals, without building or maintaining a scraper.
| Country | Chile |
|---|---|
| Type | Marketplace |
| Owner | Adevinta / Schibsted |
| Listing types | resale, rental, land |
| Monthly visits | High (general classifieds leader, Chile) |
| Active listings | — (marketplace does not publish a stable RE total) |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.yapo.cl |
Platform Overview
Market Position
- Classifieds Leader: One of Chile’s largest general classifieds sites, with a deep RE section (Yapo )
- Adevinta/Schibsted: Part of the global classifieds group behind many European and LatAm marketplaces
- Private-Seller Heavy: Strong “for sale by owner” inventory that agent-led portals lack
- Complementary Source: Catches listings absent from the major Chilean portals
Market Coverage
- Resale: Existing residential properties for purchase
- Rental (long-term): Residential leases
- Land: Lots and development sites
- Nationwide: Santiago and major Chilean regions
Data Fields Available
PropAPIS extracts the structured fields from each Yapo 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
- 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
Seller & Location
- Seller: Private seller or agency details
- 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 Yapo listing by URL or ID
property_data = api.platforms.yapo.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 Yapo listings
listings = api.platforms.yapo.search(
location='Valparaíso',
listing_type='rental',
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.yapo.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.