NeoAuto Data Parser & API
NeoAuto is Peru’s #1 car marketplace — covering used, seminuevo and new vehicles — and Carapis extracts its full listing data, including make, model, year, mileage, price, condition tag and dealer info, through one REST API. It is the clear leader in the Peruvian market, making it the single best source for Peru car-listing data.
| Country | Peru |
|---|---|
| Type | Portal |
| Owner | NeoAuto |
| Vehicle types | used, new |
| Monthly visits | #1 PE auto marketplace (self-reported) |
| Active listings | thousands+ |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | neoauto.com |
What is NeoAuto?
NeoAuto (neoauto.com) is the leading car marketplace in Peru, self-described as the country’s #1 auto platform. It lists used, seminuevo (semi-new/certified) and new vehicles from dealers and private sellers, and absorbed references from the former OLX Autos Peru presence. It is the dominant per-country surface for Peruvian car data.
Market Position
NeoAuto is Peru’s #1 auto marketplace, the clear per-country leader much like Patiotuerca in Ecuador or TuCarro in Colombia. The Andean markets are typically led by one strong national portal each, with lighter anti-bot than the giant Brazil/Mexico platforms — giving good breadth-per-parser value. NeoAuto’s new/seminuevo/used segmentation helps separate certified semi-new inventory from ordinary used stock.
Data Fields Available
Carapis extracts a structured record from each NeoAuto listing:
- Vehicle identity — make, model, trim, model year, fuel type, transmission, body type
- Condition — mileage, condition / seminuevo (semi-new) tag
- Pricing — listed price
- Specification — options and trim
- Listing context — dealer / seller info, location, photo gallery
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "neoauto", "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 — track the Peruvian car market from its #1 platform. See market research.
- Pricing intelligence — NeoAuto pricing anchors residual-value models for dealers in Peru.
- Import / export — source Peruvian dealer and private inventory. See import & export.