Taoche Data Parser & API
Taoche (淘车) is a Tencent-backed Chinese used-car platform ranked #1 by 2025 GMV (¥15.5B, ~3.8% share) with 13M+ monthly active users, and Carapis extracts its dealer inventory, pricing and condition data through one REST API. Operated by Yusheng and filed for a Hong Kong IPO, Taoche leads a famously fragmented market, and Carapis serves its data without you building a China-geo, JavaScript-heavy scraper.
| Country | China |
|---|---|
| Type | Portal |
| Owner | Yusheng (Tencent-backed) |
| Vehicle types | used, dealer |
| Monthly visits | 13M+ MAU (omnichannel, 2025) |
| Active listings | large (#1 by 2025 GMV, 3.8% share) |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.taoche.com |
What is Taoche?
Taoche (淘车) is a Chinese used-car platform run by Yusheng and backed by Tencent. It operates an omnichannel model — online listings plus offline transaction support — and reported 13M+ monthly active users in 2025. In a highly fragmented market it ranked #1 by 2025 GMV at ¥15.5B (about a 3.8% share), and its parent filed for a Hong Kong IPO. Taoche connects buyers with dealer inventory and provides structured condition and pricing data per car.
Market Position
Taoche leads China’s used-car market by GMV despite holding only ~3.8% share — a vivid illustration of how fragmented the sector is, with no single player dominating (Benzinga). It moved ¥15.5B in 2025 GMV and reported 13M+ MAU (BigGo Finance), in a national market of 20.1M used-car transactions (SCIO). Its Tencent backing gives it WeChat-ecosystem distribution that rivals lack, and its pending HK IPO signals a push to consolidate the long tail of dealers.
Data Fields Available
Carapis extracts a structured record from each Taoche listing:
- Vehicle identity — make, model, trim, model year, fuel type, transmission
- Condition — mileage and inspection/condition report
- Pricing — listed price
- Specification — options and trim
- Listing context — dealer info, location, photo gallery
Taoche’s value is breadth across a fragmented dealer base: as the GMV leader it aggregates inventory from a wide network of dealers, making it a strong single source for tracking real Chinese used-car transaction pricing.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "taoche", "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 — track the GMV leader’s dealer pricing across China for dealers.
- Market research — measure inventory and GMV trends in a fragmented but growing market. See market research.
- Import / export — source dealer inventory and reference Chinese pricing. See import & export.