abccar Data Parser & API
abc好車網 (abccar) is Taiwan’s second major used-car portal, carrying dealer inventory with prices, specs and condition data, and Carapis extracts its full listing data through one REST API. As the principal alternative to market-leader 8891, abccar gives a complementary view of the Taiwanese used-car market, served by Carapis without you building a scraper.
| Country | Taiwan |
|---|---|
| Type | Portal |
| Owner | abc好車網 |
| Vehicle types | used, dealer |
| Monthly visits | est. (no published figure) |
| Active listings | large |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.abccar.com.tw |
What is abccar?
abc好車網 (abccar.com.tw) is a leading used-car portal in Taiwan and the main alternative to 8891. It focuses on dealer-listed used cars, presenting structured price, specification, mileage and condition data per listing. As the #2 Taiwanese car portal, it carries inventory and dealers that complement 8891’s coverage, making it an important second source for anyone mapping the Taiwanese used-car market. No official traffic figure is published, so any number is an estimate.
Market Position
abccar is the second major used-car portal in Taiwan, behind 8891 (the “largest in Taiwan”). In a consolidated single-country market, parsing both 8891 and abccar together captures the large majority of the addressable Taiwanese dealer inventory — giving cross-portal price comparison and a fuller picture of dealer stock than either alone. We do not cite a precise traffic figure because abccar does not publish one; treat its scale as a significant secondary portal.
Data Fields Available
Carapis extracts a structured record from each abccar 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 — dealer info, location, photo gallery
abccar’s value is as the complementary Taiwanese dealer source: cross-referencing it against 8891 reveals price spread and inventory that a single portal would miss, sharpening Taiwanese pricing intelligence.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "abccar", "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 — cross-reference abccar against 8891 for fuller Taiwanese price coverage for dealers.
- Market research — capture the #2 Taiwanese portal’s dealer inventory. See market research.
- Import / export — source Taiwanese vehicles and reference local pricing. See import & export.