8891 Data Parser & API
8891 is Taiwan’s largest automotive marketplace — “全台最大” (largest in Taiwan), with over 1 million cars sold cumulatively — covering used cars, new cars, dealer inventory and motorcycles, and Carapis extracts its full listing data through one REST API. As the dominant single-country portal in Taiwan, 8891 carries the deepest Taiwanese vehicle inventory, served by Carapis without you building a JavaScript-heavy scraper.
| Country | Taiwan |
|---|---|
| Type | Portal |
| Owner | 8891 Inc. |
| Vehicle types | used, new, dealer, moto |
| Monthly visits | est. high (largest in Taiwan) |
| Active listings | large (1M+ sold cumulatively) |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.8891.com.tw |
What is 8891?
8891 (8891汽車, auto.8891.com.tw) is the leading vehicle marketplace in Taiwan, part of a multi-vertical platform that also covers property and motorcycles. Its automotive section markets itself as the largest in Taiwan (“全台最大”) and has facilitated over 1 million cumulative used-car sales. It aggregates both dealer and private-seller inventory across cars, new vehicles and motorcycles, with structured price, spec and condition fields per listing.
Market Position
8891 is the dominant automotive marketplace in Taiwan — a relatively underserved single-country market — claiming the “largest in Taiwan” position with 1M+ cumulative used-car sales. Because Taiwan’s online-car landscape is consolidated around a small number of portals, a single 8891 parser captures the bulk of the addressable Taiwanese inventory. Its multi-vertical breadth (autos + motorcycles) also makes it a strong source for the Taiwanese two-wheeler market, which is unusually large.
Data Fields Available
Carapis extracts a structured record from each 8891 listing:
- Vehicle identity — make, model, trim, model year, fuel type, transmission
- Condition — mileage and seller-stated condition
- Pricing — listed price
- Specification — options and trim
- Listing context — seller type (dealer / private), motorcycle category (where applicable), dealer info, location, photo gallery
8891’s distinctive value is its combination of dominant Taiwanese car coverage with a large motorcycle vertical — a one-stop source for the Taiwanese vehicle market that no single rival matches on breadth.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "8891", "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 — 8891’s dominant coverage anchors Taiwanese used-car and motorcycle pricing for dealers.
- Market research — track the largest Taiwanese vehicle inventory in one feed. See market research.
- Import / export — source Taiwanese vehicles and reference local pricing. See import & export.