DBA.dk Data Parser & API
DBA.dk is Denmark’s big consumer-to-consumer classifieds site — 2M+ unique visitors per month — and its motors section carries deep private-seller car listings that Carapis extracts through one REST API. Owned by Vend (the rebranded Schibsted Marketplaces), DBA is the richest source of Danish C2C car data, and Carapis serves it without you building a scraper.
| Country | Denmark |
|---|---|
| Type | Classifieds |
| Owner | Vend (Schibsted) |
| Vehicle types | used, private |
| Monthly visits | high (2M+ unique/mo) |
| Active listings | large |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.dba.dk |
What is DBA.dk?
DBA.dk (“Den Blå Avis”) is a large Danish general-classifieds platform owned by Vend (Schibsted Marketplaces). Its vehicles category is dominated by private sellers, making it the primary source of Danish C2C car data. It complements its sister portal Bilbasen.dk (dealer-focused) within the same Vend Nordic network and draws 2M+ unique visitors per month.
Market Position
DBA.dk is one of Denmark’s busiest classifieds destinations at 2M+ unique monthly visitors, part of Vend’s Nordic network. Within Denmark it pairs with Bilbasen.dk: where Bilbasen leads on dealer inventory, DBA is stronger on private/C2C car listings — vehicles listed directly by owners — giving the fullest view of Danish consumer-level used-car supply.
Data Fields Available
Carapis extracts a structured record from each DBA.dk car listing:
- Vehicle identity — make, model, model year
- Specification — fuel type, transmission
- Condition — mileage
- Pricing — listed price
- Listing context — seller type (mostly private), location, photo gallery
The private-seller depth and seller-type flag make DBA valuable for analysing the C2C half of the Danish market.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "dba-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
- Market research — private-seller inventory reveals the C2C side of Danish supply. See market research.
- Pricing intelligence — private asking prices complement dealer benchmarks for dealers.
- Import / export — source Danish private-seller vehicles remotely. See import & export.