Mobiauto Data Parser & API
Mobiauto is Brazil’s #2 vehicles portal, backed by Banco Pan, and Carapis extracts its full listing data — make, model, year, mileage, price, spec and dealer info — through one REST API. It sits between Webmotors (#1) and iCarros (#3), and its bank ownership ties listings directly to Brazil’s car-financing market.
| Country | Brazil |
|---|---|
| Type | Portal |
| Owner | Banco Pan |
| Vehicle types | used, new, dealer |
| Monthly visits | #2 BR vehicles portal (Banco Pan-owned) |
| Active listings | Large (est.) |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.mobiauto.com.br |
What is Mobiauto?
Mobiauto is a leading Brazilian car portal listing used, new and dealer vehicles. It is backed by Banco Pan, part of the pattern in which Brazilian banks own car classifieds to capture the financing that follows a sale. It ranks #2 among Brazilian vehicle portals, behind Webmotors and ahead of iCarros.
Market Position
Mobiauto is the #2 vehicles portal in Brazil — the largest national car market in Latin America. The top of the Brazilian market is bank-consolidated: Webmotors↔Santander, Mobiauto↔Banco Pan, and iCarros↔Itaú. Combining Mobiauto with Webmotors and iCarros gives near-complete coverage of Brazil’s portal inventory and a financing-aware view of pricing.
Data Fields Available
Carapis extracts a complete structured record from each Mobiauto listing:
- Vehicle identity — make, model, trim, model year, fuel type, transmission, body type
- Condition — mileage
- 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": "mobiauto", "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 — cross-reference Mobiauto against Webmotors and iCarros to build a full Brazilian pricing picture for dealers.
- Market research — track inventory and pricing across Brazil’s top portals. See market research.
- Import / export — benchmark Brazilian listings against other markets. See import & export.