Autofact Data Parser & API
Autofact is Chile’s CARFAX-style vehicle-history service — pairing used-car listings with detailed history and accident records — and Carapis extracts its data, including history, accident and owner fields, through one REST API. In a region where structured condition data is scarce, Autofact’s history reports are one of the richest sources of accident/history fields in Latin America.
| Country | Chile |
|---|---|
| Type | Aggregator |
| Owner | Autofact |
| Vehicle types | used |
| Monthly visits | moderate (CL) |
| Active listings | vehicle history / listings |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.autofact.cl |
What is Autofact?
Autofact (autofact.cl) is a Chilean vehicle-history service — the closest thing Chile has to a CARFAX — that generates structured history reports for used cars and also surfaces used-car listings. Its reports cover prior incidents, ownership and other history that ordinary classifieds don’t provide, making it a data-rich source for condition and provenance.
Market Position
Autofact fills a region-wide gap: outside of online-dealers like Kavak, Latin America has little public VIN-history or inspection-sheet data — and Autofact is one of the few services that generates it itself. As Chile’s CARFAX-style history provider, it complements the listing depth of Chileautos and Yapo.cl with the accident and history fields they lack, making it valuable for condition-aware pricing and vetting.
Data Fields Available
Carapis extracts a structured record from Autofact:
- Vehicle identity — make, model, model year, fuel type, transmission
- Condition — mileage
- History — vehicle history report, accident/incident history, owner history (Autofact’s standout CARFAX-style fields)
- Pricing — listed price (where listings are present)
- Listing context — location, photo gallery
The history and accident fields are Autofact’s distinctive value — among the richest structured condition/provenance data available in the region.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "autofact", "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
- Import / export — accident and history fields let buyers vet Chilean used cars remotely. See import & export.
- Pricing intelligence — history-adjusted condition data sharpens residual-value models for dealers.
- Market research — combine Autofact history with Chileautos and Yapo.cl listings for a full Chilean picture. See market research.