Bilbasen.dk Data Parser & API
Bilbasen.dk is Denmark’s #1 car portal — the leading dedicated auto site in the country — and Carapis extracts its full dealer and new-car listing data through one REST API. Owned by Vend (the rebranded Schibsted Marketplaces), Bilbasen carries the cleanest structured Danish car data, and Carapis serves it without you building a scraper.
| Country | Denmark |
|---|---|
| Type | Portal |
| Owner | Vend (Schibsted) |
| Vehicle types | used, new, dealer |
| Monthly visits | high (DK car #1) |
| Active listings | large |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.bilbasen.dk |
What is Bilbasen.dk?
Bilbasen.dk is the leading dedicated car portal in Denmark, owned by Vend (Schibsted Marketplaces). It carries used and new cars primarily from dealers, and shares a common Nordic architecture with Finn.no, Blocket and DBA. As the #1 Danish car site, it is the primary source of structured Danish dealer car data, complementing the C2C-heavy DBA.dk.
Market Position
Bilbasen.dk is the #1 car portal in Denmark, part of Vend’s Nordic network (~325M monthly visits group-wide, all categories). Where its sister site DBA.dk leads on private/C2C listings, Bilbasen is stronger on structured dealer and new-car inventory — cleaner, spec-complete listings that make it the primary reference for the Danish dealer market.
Data Fields Available
Carapis extracts a structured record from each Bilbasen.dk listing:
- Vehicle identity — make, model, trim, model year
- Specification — fuel type, transmission, spec details
- Condition — mileage
- Pricing — listed price
- Listing context — dealer info, location, photo gallery
Bilbasen’s dealer focus means its listings are well-structured and spec-complete, ideal for Danish dealer-market pricing analysis.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "bilbasen-dk", "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 — Danish dealer price and spec data power market-pricing models for dealers.
- Market research — track the Danish used and new-car dealer market. See market research.
- Import / export — source Danish dealer vehicles remotely. See import & export.