deRuedas Data Parser & API
deRuedas is an Argentine classifieds platform for used and new cars plus motorcycles, and Carapis extracts its listing data — make, model, year, mileage, price and seller type — through one REST API. It is a secondary Argentine surface that adds private-seller breadth alongside the larger marketplaces.
| Country | Argentina |
|---|---|
| Type | Classifieds |
| Owner | deRuedas |
| Vehicle types | used, new, moto |
| Monthly visits | moderate AR classifieds |
| Active listings | Large (est.) |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.deruedas.com.ar |
What is deRuedas?
deRuedas (deruedas.com.ar) is an Argentine vehicle classifieds platform covering used and new cars and motorcycles. It is a secondary marketplace relative to Mercado Libre and DeMotores, capturing additional private and dealer listings in the Argentine market, with relatively low anti-bot friction.
Market Position
deRuedas is a secondary classifieds player in Argentina — the region’s third-largest car market — behind Mercado Libre (dominant) and DeMotores (the leading specialist). Its value is incremental coverage: extra listings, including motorcycles, that broaden a full Argentine market picture. With low anti-bot, it offers easy breadth-per-parser value as a complement to the larger sources.
Data Fields Available
Carapis extracts a structured record from each deRuedas listing:
- Vehicle identity — make, model, model year, fuel type, transmission, body type
- Condition — mileage
- Pricing — listed price
- Listing context — seller type (private vs. dealer), location, photo gallery
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "deruedas", "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 — add deRuedas to broaden Argentine market coverage, including motorcycles. See market research.
- Pricing intelligence — capture additional private-party Argentine pricing for dealers.
- Import / export — source extra Argentine inventory beyond the main portals. See import & export.