AutoScout24 Scraper — Cars, Prices & Specs avatar

AutoScout24 Scraper — Cars, Prices & Specs

Pricing

from $1.00 / 1,000 results

Go to Apify Store
AutoScout24 Scraper — Cars, Prices & Specs

AutoScout24 Scraper — Cars, Prices & Specs

Scrape AutoScout24 vehicle listings with prices, mileage, specifications, sellers, locations, images, and URLs for automotive research.

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

19 days ago

Last modified

Share

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.

What is AutoScout24 Scraper?

AutoScout24 Scraper turns the target data into structured, reusable results on Apify. Use it when you need repeatable collection for analysts, developers, agencies, researchers, and AI-agent workflows without maintaining a custom scraper or one-off integration. Run it manually, schedule recurring jobs, call it through the Apify API, or connect it to an AI agent through the Apify MCP server.

The Actor stores results in an Apify dataset, where they can be previewed and exported as JSON, CSV, Excel, XML, or RSS. Availability and completeness depend on the source, supplied inputs, public visibility, authentication requirements, and upstream rate limits.

Use cases for AutoScout24 Scraper

  • Build structured datasets for research, reporting, enrichment, or monitoring.
  • Automate repetitive collection with schedules, webhooks, and API calls.
  • Feed clean records into spreadsheets, databases, CRMs, BI tools, AI agents, or RAG pipelines.
  • Track changes over time by running the same validated input on a schedule.
  • Replace fragile manual copy-and-paste work with a reproducible Apify workflow.

How to use AutoScout24 Scraper

  1. Open the Actor input page and choose a focused, valid target.
  2. Set a conservative result limit for the first run.
  3. Start the Actor and inspect the dataset for coverage and field availability.
  4. Export the results or connect the dataset to your downstream system.
  5. Scale gradually and use scheduling, pagination, or proxies when supported.

Important input options

  • searchUrls — One or more AutoScout24 search/listings page URLs to scrape. These can include any filters (make, model, year, price range, fuel type, mileage, etc.) applied via the AutoScout24 website. The
  • maxListings — Maximum number of vehicle listings to scrape across all search URLs. The scraper will stop after reaching this limit. Set higher for comprehensive data collection, lower for faster runs.
  • scrapeDetailPages — Whether to visit each vehicle's detail page for full data extraction (equipment features, full description, all photos, exact location, VIN, seller contact). When disabled, only the summary
  • maxRequestRetries — Maximum number of retries for failed page requests. The scraper will retry with exponential backoff on connection errors, timeouts, or HTTP errors.

API and automation example

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('muhammadafzal/autoscout24-scraper').call({
// Add the same input fields you use in the Apify Console.
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Use these dedicated tools when a neighboring data source or workflow is a better match:

Frequently asked questions

How many results can I scrape with AutoScout24 Scraper?

The practical total depends on the source, input limits, pagination, available records, run timeout, and upstream restrictions. Start with a small run, verify the output, and increase the limit gradually.

Can I integrate AutoScout24 Scraper with other apps?

Yes. Use Apify integrations, webhooks, schedules, dataset exports, Make, Zapier, Google Sheets, cloud storage, or your own application.

Can I use AutoScout24 Scraper with the Apify API?

Yes. Start runs with the Apify REST API or an official Apify client, then retrieve records from the run's default dataset. Keep your API token in a secret or environment variable.

Can I use AutoScout24 Scraper through an MCP Server?

Yes. The Apify MCP server can expose the Actor to compatible AI clients and agents. Review the input and expected cost before allowing an autonomous workflow to run it at scale.

Do I need proxies?

It depends on the source and volume. Use the default configuration first. For larger or geographically sensitive jobs, select an appropriate proxy configuration only when the Actor supports it.

Scraping rules vary by source, jurisdiction, data type, and intended use. Collect only data you are authorized to access, respect applicable terms and privacy laws, and avoid restricted or personal data misuse. This documentation is not legal advice.

Your feedback

If a field is missing, a source layout has changed, or you need a supported use case documented, open an issue on the Actor page with a reproducible input and run ID.