AutoScout24 Car Listings Scraper — Prices, Specs & Details avatar

AutoScout24 Car Listings Scraper — Prices, Specs & Details

Pricing

from $1.00 / 1,000 results

Go to Apify Store
AutoScout24 Car Listings Scraper — Prices, Specs & Details

AutoScout24 Car Listings Scraper — Prices, Specs & Details

Scrape car listings from AutoScout24 across European markets. Extracts make, model, price, mileage, fuel type, transmission, power, equipment, seller info, and photos into structured JSON. Built for AI agents and LLM pipelines.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

Muhammad Afzal

Muhammad Afzal

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

12 days ago

Last modified

Share

AutoScout24 Car Scraper — Extract Vehicle Listings, Prices & Specs Across Europe

Scrape AutoScout24 — Europe's largest online car marketplace — for structured vehicle listing data across all European markets. Returns make, model, price, mileage, fuel type, transmission, power (kW/HP), equipment features, seller details, and photo URLs. Supports all AutoScout24 country domains and any filtered search URL.

Export scraped data, run the scraper via API, schedule and monitor runs, or integrate with other tools.

Features

  • All European markets — autoscout24.com, .de, .it, .fr, .be, .nl, .at, .es, and more
  • Complete vehicle data — price, mileage, year, power (kW and HP), fuel type, transmission, body type, engine size, color, CO2 emissions, fuel consumption
  • Equipment & features list — full options list (navigation, parking sensors, leather seats, etc.)
  • Seller information — dealer name, seller type (dealer vs private), city/location
  • Photo URLs — all listing images in high resolution
  • Custom search URLs — use any AutoScout24 filtered search URL as input
  • Detail page enrichment — optional deep-scrape for complete specs and equipment
  • Anti-detection — rotates user agents and applies random delays between requests

Use Cases

Use CaseDescription
Market researchAnalyze car pricing trends across regions, makes, and models
Price comparisonCompare listings for a specific vehicle across sellers and countries
Inventory monitoringTrack new listings for specific makes/models as they appear
Dealer analyticsAnalyze competitor inventory, pricing, and stock depth
AI vehicle searchPower conversational car-finding agents with structured listing data
Lead generationBuild databases of seller contact info and active listings

Input

FieldTypeDefaultDescription
searchUrlsstring[]["https://www.autoscout24.com/lst/bmw/3-series"]AutoScout24 search/listing page URLs. Apply all your filters (make, model, year, price, fuel) on the website first, then paste the URL.
maxListingsinteger50Maximum vehicle listings to return (1–500)
scrapeDetailPagesbooleantrueFetch each listing's detail page for full specs and equipment. Disable for faster runs with summary data only.

Output

Each record represents one vehicle listing:

{
"listingId": "AS24-12345678",
"title": "BMW 3 Series 320d xDrive Touring",
"make": "BMW",
"model": "3 Series",
"price": 32900,
"currency": "EUR",
"mileageKm": 45000,
"firstRegistration": "03/2022",
"powerKw": 140,
"powerHp": 190,
"fuelType": "Diesel",
"transmission": "Automatic",
"bodyType": "Estate",
"engineSizeCc": 1995,
"doors": 5,
"seats": 5,
"color": "Mineral White",
"co2Emissions": 142,
"fuelConsumptionCombined": 5.4,
"previousOwners": 1,
"equipment": ["Navigation system", "Heated seats", "Parking sensors rear", "LED headlights"],
"description": "Full service history, one owner from new...",
"location": "Munich",
"sellerType": "Dealer",
"dealerName": "BMW München GmbH",
"imageUrls": ["https://prod.pictures.autoscout24.net/..."],
"listingUrl": "https://www.autoscout24.com/offers/...",
"scrapedAt": "2025-08-01T12:00:00.000Z",
"searchQuery": "https://www.autoscout24.com/lst/bmw/3-series"
}

API Usage

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_API_TOKEN' });
const run = await client.actor('USERNAME/autoscout24-scraper').call({
searchUrls: [
'https://www.autoscout24.com/lst/volkswagen/golf?fregfrom=2020&priceto=25000',
'https://www.autoscout24.de/lst/toyota/yaris?fueltype=E',
],
maxListings: 100,
scrapeDetailPages: true,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(`Scraped ${items.length} car listings`);

Pricing

This actor charges per listing returned.

VolumeEstimated Cost
50 listings~$0.50
500 listings~$5.00
2,000 listings~$20.00

FAQ

Q: How do I filter by make, model, price, or year? Apply all filters on AutoScout24's website using their search tools, then copy the resulting URL and use it as searchUrls input.

Q: Does it support electric vehicles? Yes — filter by fuel type E (electric) on AutoScout24 before copying the URL.

Q: Which countries are supported? All AutoScout24 domains: .com, .de, .it, .fr, .be, .nl, .at, .es, .pl, and more.