iCarros Data Parser & API
iCarros is Brazil’s #3 vehicles portal, backed by Banco Itaú, and Carapis extracts its full listing data — make, model, year, mileage, price, spec and dealer info — through one REST API. Together with Webmotors and Mobiauto it makes up the core of Brazil’s portal traffic, and its bank ownership ties listings closely to the country’s car-financing market.
| Country | Brazil |
|---|---|
| Type | Portal |
| Owner | Banco Itaú |
| Vehicle types | used, new, dealer |
| Monthly visits | #3 BR vehicles portal (Itaú-owned) |
| Active listings | Large (est.) |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.icarros.com.br |
What is iCarros?
iCarros is one of Brazil’s leading car portals, listing used, new and dealer vehicles. It is owned by Banco Itaú, part of a distinctive Brazilian pattern in which banks own car classifieds to own the financing pipeline that comes with them. It ranks #3 among Brazilian vehicle portals behind Webmotors and Mobiauto.
Market Position
iCarros sits in the top three of Brazil’s vehicle-portal market, alongside Webmotors (#1) and Mobiauto (#2) — and all three are bank-linked: Webmotors↔Santander, Mobiauto↔Banco Pan, and iCarros↔Itaú. Brazil is the dominant national car market in Latin America, so iCarros’ inventory adds meaningful depth and a financing-oriented angle to the country’s portal data. OLX, iCarros and Mercado Livre have also run joint anti-fraud campaigns, underlining how concentrated the Brazilian market is.
Data Fields Available
Carapis extracts a complete structured record from each iCarros 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": "icarros", "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 iCarros against Webmotors and Mobiauto 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.