Bilweb.se Data Parser & API
Bilweb.se is an independent Swedish dealer car portal — focused on dealer inventory rather than private sellers — and Carapis extracts its full listing data through one REST API. Unlike Vend-owned Blocket, Bilweb is independent, and its dealer focus makes its listings well-structured, served by Carapis without you building a Swedish-market scraper.
| Country | Sweden |
|---|---|
| Type | Portal |
| Vehicle types | used, dealer |
| Monthly visits | mid (SimilarWeb Aug 2025) |
| Active listings | mid |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.bilweb.se |
What is Bilweb.se?
Bilweb.se is an independent Swedish car portal carrying used-car inventory from dealers. It sits apart from the Vend (Schibsted) Nordic network, offering a separate, dealer-focused view of the Swedish market that complements the C2C-heavy Blocket.
Market Position
Bilweb.se runs mid-traffic (SimilarWeb, Aug 2025) but holds a distinct position as an independent dealer portal in a Swedish market otherwise dominated by Vend-owned Blocket. Its dealer focus means cleaner, more structured listings, useful as a complement to Blocket’s private-seller volume and as an independent reference for the Swedish dealer segment.
Data Fields Available
Carapis extracts a structured record from each Bilweb.se 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
Bilweb’s dealer focus means its listings are well-structured and spec-complete, ideal for Swedish dealer-market pricing analysis.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "bilweb-se", "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 — independent dealer price data feed market-pricing models for dealers.
- Market research — an independent view of the Swedish dealer market. See market research.
- Import / export — source Swedish dealer vehicles remotely. See import & export.