OLX Autos México Data Parser & API
OLX Autos México wound down its instant-buy (buy-and-resell) operations on 14 June 2023, so it is no longer an active source of fresh car-listing data — for the Mexican market, Carapis instead delivers Kavak, MercadoLibre Autos and Seminuevos through one REST API. This page is kept for honesty and for buyers searching the OLX Autos name in Mexico.
| Country | Mexico |
|---|---|
| Type | Online-dealer (wound down) |
| Owner | Prosus/Naspers |
| Vehicle types | used, private |
| Monthly visits | (declined; retail buy-ops wound down Jun 2023) |
| Active listings | reduced |
| API access | No public API (parse-only) |
| Parse priority | ★☆☆☆☆ |
| Official site | www.olx.com.mx |
What is OLX Autos México?
OLX Autos México was the Mexican instant-buy used-car arm of OLX, owned by Prosus/Naspers. It bought cars directly from consumers and resold them, similar to Kavak’s model. As part of Prosus’s broader exit from the OLX Autos buy-and-resell business, it ceased purchasing operations on 14 June 2023. Any remaining OLX classifieds presence is a remnant, not an active instant-buy operation.
Market Position
OLX Autos México is effectively wound down. The OLX Autos instant-buy business exited Spanish-speaking Latin America in 2023, ceasing buy-operations in Mexico, Argentina and Colombia on the same date — only OLX’s classifieds business in Brazil remains relevant to parse. For Mexico’s active car market, the platforms to follow are Kavak (the dominant certified online dealer, born in Mexico, ~54% of Kavak’s global traffic), MercadoLibre Autos (the giant marketplace) and Seminuevos (the leading dedicated used-car portal). Because OLX Autos México no longer generates meaningful fresh inventory, Carapis prioritizes those live sources instead.
Data Fields Available
OLX Autos México is no longer a live data source. Where any residual OLX classifieds inventory exists, the available fields are limited to basic identity and pricing — make, model, year, mileage, price and location. For full, current Mexican car data (spec, condition, dealer info, inspection), use the active platforms below.
API Quick Start
The same canonical Carapis endpoint serves every platform — point source at an active Mexican platform such as kavak or seminuevos instead of the wound-down OLX Autos México.
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "kavak", "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
- Market research — for live Mexican car-market analysis, use Kavak, MercadoLibre Autos and Seminuevos instead. See market research.
- Pricing intelligence — current Mexican pricing comes from the active platforms, not OLX Autos. See dealers.
- Import / export — source live Mexican inventory from active sources. See import & export.