Skip to Content

Yapo.cl Data Parser & API

Yapo.cl is Chile’s largest general classifieds platform — with a strong vehicles vertical covering cars, motorcycles, trucks and buses — and Carapis extracts its listing data, including make, model, year, mileage, price and seller type, through one REST API. Its private-seller depth makes it the key complement to the dedicated portal Chileautos for full Chilean market coverage.

CountryChile
TypeClassifieds
OwnerYapo.cl
Vehicle typesused, private, moto, commercial
Monthly visitslargest CL general classifieds (since 2011)
Active listingsLarge (est.)
API accessNo public API (parse-only)
Parse priority★★★★☆
Official sitewww.yapo.cl

What is Yapo.cl?

Yapo.cl is Chile’s largest general classifieds site, online since 2011, with vehicles as one of its strongest categories. The vehicles vertical spans used cars plus motorcycles, trucks and buses, and skews heavily toward private (C2C) sellers — capturing the private-party side of the Chilean market that dedicated dealer portals miss.

Market Position

Yapo.cl is the largest general classifieds platform in Chile and, alongside Chileautos (the dedicated car portal) and Mercado Libre Chile, one of the country’s three main car-buying surfaces. Its distinctive value is private-seller breadth and coverage of motorcycles, trucks and buses — so pairing Yapo.cl with Chileautos gives the most complete Chilean vehicle-market picture from two sources.

Data Fields Available

Carapis extracts a structured record from each Yapo.cl vehicle listing:

  • Vehicle identity — make, model, model year, fuel type, transmission, body type
  • Condition — mileage
  • Pricing — listed price
  • Listing context — seller type (private vs. dealer), location, photo gallery

The private-seller coverage plus moto/truck/bus breadth is Yapo.cl’s distinctive signal in Chile.

API Quick Start

import requests resp = requests.get( "https://api.carapis.com/v2/listings", params={"source": "yapo-cl", "limit": 20}, headers={"Authorization": f"Bearer {API_KEY}"}, ) for car in resp.json()["results"]: print(car["make"], car["model"], car["year"], car["price"])

Get an API key at my.carapis.com  and see the full API reference. Pricing is on the pricing page.

Use Cases

  • Pricing intelligence — capture true private-party Chilean pricing to complement Chileautos for dealers.
  • Market research — track C2C inventory plus motorcycles, trucks and buses across Chile. See market research.
  • Import / export — source private-seller Chilean vehicles. See import & export.

Frequently asked questions