Cars.bg Data Parser & API
Cars.bg is Bulgaria’s #2 car portal — around 2.7M visits per month — and Carapis extracts its listing data, including spec, mileage, photos and dealer details, through one REST API. A dealer-focused secondary site behind Mobile.bg, Cars.bg broadens coverage of the Bulgarian used-car market.
| Country | Bulgaria |
|---|---|
| Type | Portal |
| Vehicle types | used, dealer |
| Monthly visits | ~2.7M/mo (Semrush Dec 2025) |
| Active listings | — (est.) |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.cars.bg |
What is Cars.bg?
Cars.bg is the second-largest car portal in Bulgaria, carrying mostly dealer used-car listings. It is a secondary player behind the dominant Mobile.bg. Cars.bg draws ~2.7M visits per month (Semrush, Dec 2025).
Market Position
Cars.bg ranks #2 in Bulgaria behind Mobile.bg, with ~2.7M monthly visits (Semrush, Dec 2025). Its value is as a complementary dealer-focused source for broadening coverage of the Bulgarian market. Anti-bot is low, so it is a low-friction target; Carapis serves its data through the same unified endpoint as every other platform.
Data Fields Available
Carapis extracts a structured record from each Cars.bg listing:
- Vehicle identity — make, model, trim, model year, fuel type, transmission
- Condition — mileage
- Pricing — listed price
- Specification — factory options and trim
- Listing context — dealer / seller info, location, photo gallery
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "cars-bg", "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 — broaden coverage of the Bulgarian dealer market beyond Mobile.bg. See market research.
- Pricing intelligence — dealer listings add to pricing models for dealers.
- Import / export — Bulgaria is an EU entry point for used cars; dealer data supports cross-border sourcing. See import & export.