Renrenche Data Parser & API
Renrenche (人人车) is a Chinese C2C used-car platform — once a major “no middleman” player, now sharply reduced and tied to 58.com — and Carapis extracts its remaining private-seller listing data, including mileage, condition and pricing, through one REST API. Carapis serves what inventory it still carries without you building a China-geo, JavaScript-heavy scraper.
| Country | China |
|---|---|
| Type | Online-dealer |
| Owner | 58.com-linked |
| Vehicle types | used, private |
| Monthly visits | declined sharply |
| Active listings | reduced (post-collapse) |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.renrenche.com |
What is Renrenche?
Renrenche (人人车) is a Chinese used-car platform that rose as a direct C2C “no middleman” marketplace alongside Guazi, then contracted sharply after the sector’s shake-out and became linked to classifieds giant 58.com. It still lists used cars — largely private-seller and C2C inventory — with structured condition and pricing data, but at a much smaller scale than at its peak. We flag its traffic and inventory as reduced rather than citing a stale headline figure.
Market Position
Renrenche is a cautionary case in China’s used-car history: a once-prominent C2C platform whose volume collapsed during the market’s consolidation, leaving it a minor player now associated with 58.com. China’s used-car market itself kept growing — 20.1M transactions in 2025 (SCIO) — but Renrenche’s share is small. We do not cite a precise current traffic number because reliable figures are not available; treat its scale as materially reduced from its peak.
Data Fields Available
Carapis extracts a structured record from each Renrenche listing:
- Vehicle identity — make, model, trim, model year, fuel type, transmission
- Condition — mileage and inspection/condition report
- Pricing — listed (often private-seller) price
- Specification — options and trim
- Listing context — location, photo gallery
Renrenche’s residual value is its C2C, private-seller angle: where it still has inventory, it surfaces private-party Chinese pricing that differs from dealer-platform asking prices.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "renrenche", "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 — capture residual C2C private-party Chinese pricing for dealers.
- Market research — study a consolidating market and track surviving C2C inventory. See market research.
- Import / export — source private-seller Chinese vehicles where available. See import & export.