AutoScout24 Scraper — Cars, Prices & Specs
Pricing
from $1.00 / 1,000 results
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
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
19 days ago
Last modified
Categories
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 Case | Description |
|---|---|
| Market research | Analyze car pricing trends across regions, makes, and models |
| Price comparison | Compare listings for a specific vehicle across sellers and countries |
| Inventory monitoring | Track new listings for specific makes/models as they appear |
| Dealer analytics | Analyze competitor inventory, pricing, and stock depth |
| AI vehicle search | Power conversational car-finding agents with structured listing data |
| Lead generation | Build databases of seller contact info and active listings |
Input
| Field | Type | Default | Description |
|---|---|---|---|
searchUrls | string[] | ["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. |
maxListings | integer | 50 | Maximum vehicle listings to return (1–500) |
scrapeDetailPages | boolean | true | Fetch 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.
| Volume | Estimated 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
- Open the Actor input page and choose a focused, valid target.
- Set a conservative result limit for the first run.
- Start the Actor and inspect the dataset for coverage and field availability.
- Export the results or connect the dataset to your downstream system.
- 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. ThemaxListings— 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 summarymaxRequestRetries— 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);
Related Apify Actors
Use these dedicated tools when a neighboring data source or workflow is a better match:
- OpenTable Restaurants, Ratings & Reviews Scraper
- AllTrails Scraper — Hiking Trails, Reviews & GPS Data
- Weather MCP Server — Forecast, Historical & Air Quality
- Craigslist Scraper — Extract Listings, Prices & Locations
- Domain.com.au Property Scraper — Sale, Rent & Sold Listings
- StepStone Jobs Scraper — Job Listings & Career Data
- Google Scholar Scraper — Academic Papers & Citations
- eBay Scraper — Product Listings, Prices & Seller Data
- Google Maps MCP Scraper — Places, Reviews, Hours & Photos
- Google Maps Restaurant Scraper
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.
Is it legal to scrape this data?
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.