Carroya Data Parser & API
Carroya is Colombia’s #2 vehicles portal — a long-standing dedicated marketplace for cars and motorcycles — and Carapis extracts its full listing data, including make, model, year, mileage, price, spec and dealer info, through one REST API. It is the main independent alternative to TuCarro (Mercado Libre’s Colombian brand), giving broader coverage of the Colombian car market.
| Country | Colombia |
|---|---|
| Type | Portal |
| Owner | Carroya |
| Vehicle types | used, new, dealer, moto |
| Monthly visits | #2 CO vehicles portal (SimilarWeb, Nov 2025) |
| Active listings | Large (est.) |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.carroya.com |
What is Carroya?
Carroya (carroya.com) is one of Colombia’s oldest dedicated vehicle portals, listing used, new and dealer cars plus motorcycles. Unlike TuCarro, which is part of Mercado Libre, Carroya is an independent portal — making it a complementary source for full coverage of the Colombian market.
Market Position
Carroya is the #2 vehicles site in Colombia (SimilarWeb, Nov 2025), behind TuCarro. As an independent dedicated portal, it captures inventory and dealers that may not appear on the Mercado Libre family, so pairing Carroya with TuCarro gives the most complete Colombian car-market picture from two sources.
Data Fields Available
Carapis extracts a structured record from each Carroya 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": "carroya", "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 — pair Carroya with TuCarro for full Colombian car-market coverage. See market research.
- Pricing intelligence — Carroya pricing complements TuCarro for residual-value models for dealers.
- Import / export — source Colombian dealer and private inventory. See import & export.