OLX Brasil Autos Data Parser & API
OLX Brasil Autos is one of Brazil’s top-five classifieds platforms, owned by Prosus/Naspers, and Carapis extracts its vehicle listing data — make, model, year, mileage, price, seller type and location — through one REST API. It captures the private-seller (C2C) side of Brazil’s car market that dedicated portals like Webmotors largely miss.
| Country | Brazil |
|---|---|
| Type | Classifieds |
| Owner | Prosus/Naspers |
| Vehicle types | used, private, dealer, moto |
| Monthly visits | ~Top-5 BR classifieds (Prosus) |
| Active listings | Large (est.) |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.olx.com.br |
What is OLX Brasil Autos?
OLX Brasil is a major general-classifieds platform, and Autos is its vehicles vertical — covering used cars, private and dealer listings, and motorcycles. It is owned by Prosus (the Naspers digital-ecosystem arm). Unlike Brazil’s bank-owned portals, OLX skews heavily toward private (C2C) sellers, making it the place to capture true private-party pricing.
Market Position
OLX Brasil ranks among the country’s top-five classifieds platforms, and its Autos vertical is a primary surface for private-seller cars in Latin America’s largest car market. Note the consolidation contrast with the rest of Brazil: while Webmotors, Mobiauto and iCarros are bank-owned portals, OLX is the Prosus-owned classifieds player — and OLX, iCarros and Mercado Livre have run joint anti-fraud campaigns, showing how interlinked the Brazilian market is. Importantly, OLX’s classifieds business in Brazil remains active, unlike the OLX Autos instant-buy operations that exited Spanish-speaking Latin America in 2023.
Data Fields Available
Carapis extracts a structured record from each OLX Brasil Autos 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 is OLX’s distinctive value: it surfaces C2C pricing the dealer-focused portals don’t carry.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "olx-brasil-autos", "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 Brazilian pricing to complement dealer-portal data for dealers.
- Market research — track C2C inventory the dealer portals miss. See market research.
- Import / export — source private-seller Brazilian vehicles. See import & export.