AutoVlan / GoCar Scraper — Belgian Used Cars & Prices avatar

AutoVlan / GoCar Scraper — Belgian Used Cars & Prices

Pricing

Pay per usage

Go to Apify Store
AutoVlan / GoCar Scraper — Belgian Used Cars & Prices

AutoVlan / GoCar Scraper — Belgian Used Cars & Prices

Scrape used car listings from AutoVlan.be (GoCar.be), Belgium's largest used car marketplace. Extract prices, specs, mileage, dealer info and more. Supports brand/model filtering and sitemap-based full catalog scraping.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Jelle Desramaults

Jelle Desramaults

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

7 days ago

Last modified

Categories

Share

AutoVlan / GoCar Scraper

Scrape used car listings from Belgium's largest used car marketplace. AutoVlan.be rebranded to GoCar.be but the inventory is the same -- thousands of cars, vans, and classics from dealers and private sellers across Belgium.

How it discovers listings

The scraper uses GoCar's XML sitemaps at gocar.be/sitemaps/. You can:

  • Let it discover all vehicles from the main sitemap index
  • Target a specific brand via brand-specific sitemaps (e.g. vehicles-nl-bmw.xml)
  • Provide direct listing URLs (pattern: /id/{number})

Each vehicle page is then parsed for JSON-LD data, pricing, specs, and images.

Input

FieldTypeRequiredDescription
startUrlsArrayNoDirect listing URLs or sitemap XML URLs
brandStringNoCar brand slug, e.g. "bmw", "volkswagen", "tesla"
maxResultsIntegerNoListing cap (default: 100)
languageStringNo"nl" (default) or "fr"
proxyConfigurationObjectNoProxy settings (GoCar uses Cloudflare)

Output

FieldTypeExample
titleString"BMW 320d Touring M Sport"
brandString"Bmw"
modelString"320d"
priceNumber34900
currencyString"EUR"
yearNumber2022
mileageNumber45000
fuelString"Diesel"
transmissionString"Automaat"
powerString"190 pk"
dealerStringDealer/seller name
locationString"2000 Antwerpen"
imageUrlStringMain photo
imageUrlsArrayAll vehicle photos
descriptionStringListing description
{
"title": "BMW 320d Touring M Sport",
"brand": "Bmw",
"model": "320d",
"price": 34900,
"currency": "EUR",
"year": 2022,
"mileage": 45000,
"fuel": "Diesel",
"transmission": "Automaat",
"power": "190 pk",
"location": "2000 Antwerpen",
"url": "https://gocar.be/nl/autos/bmw/320d/touring-m-sport/id/12345678",
"scrapedAt": "2026-03-15T10:00:00.000Z"
}

Cost

About $0.30 per 1,000 listings. Sitemap pages are lightweight XML; vehicle pages need individual HTTP requests.

Notes

  • GoCar uses Cloudflare. If the initial fetch gets a challenge page, the scraper retries with got-scraping for better TLS fingerprinting.
  • Vehicle URLs follow the pattern: /{lang}/autos/{brand}/{model}/{slug}/id/{id}
  • Fuel type and transmission are detected by scanning the page body for Dutch keywords (benzine, diesel, automaat, manueel, etc.)
  • Brand and model are extracted from the URL path as a fallback when JSON-LD is absent