# AutoScout24 Leads & Specs - Dealer Phones, Contacts & Deep Data (`ahmed_jasarevic/autoscout24-scraper`) Actor

The ultimate scraper for AutoScout24. Extracts 100% of available car data including full technical specs, electric range (WLTP), verified dealer phone numbers, complete image galleries, and real-time price analysis. High-speed, API-driven, and SEO optimized for automotive market research.

- **URL**: https://apify.com/ahmed\_jasarevic/autoscout24-scraper.md
- **Developed by:** [Ahmed Jasarevic](https://apify.com/ahmed_jasarevic) (community)
- **Categories:** Automation, E-commerce, Developer tools
- **Stats:** 5 total users, 3 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $3.50 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## 🏎️ AutoScout24 Scraper: High-Performance Data Extractor

This is a **high-speed, professional-grade scraper** for AutoScout24, Europe's leading car marketplace. Unlike other scrapers that only give you basic info, this actor extracts the **complete JSON data object** for every listing, ensuring you never miss a single technical detail, seller insight, or pricing metric.

### 🌟 Why choose this Scraper?

- **Deep Data Extraction:** We don't just "scrape" the page; we intercept the internal API to give you 100% of the available data fields.
- **Full Technical Specs:** Get everything from engine power (kW/PS) and fuel consumption to CO2 emissions and battery range for EVs.
- **Seller Intelligence:** Includes dealer names, full addresses, verified phone numbers, and star ratings.
- **Rich Media:** Extracts the full high-resolution image gallery for every vehicle.
- **Smart Pagination:** Automatically detects the total number of pages and handles navigation seamlessly.
- **SEO & Lead Gen Ready:** Perfect for building car price comparison tools, market analysis reports, or lead databases for B2B automotive SaaS.

***

### 📊 Comprehensive Data Output

Our output is structured to give you both a quick overview and deep-dive objects. Each item in your dataset will include:

| Category | Extracted Fields |
| :--- | :--- |
| **Vehicle Info** | Make, Model, Variant, Year, Transmission, Fuel Type, Mileage, etc. |
| **Pricing** | Formatted Price, Raw Value, VAT info, Price Analysis (Fair/Good/Top). |
| **Technical** | Power (HP/kW), WLTP Consumption, CO2 Class, Electric Range. |
| **Seller** | Company Name, Contact Person, **Phone Number**, Address, Rating Score. |
| **Images** | Full array of high-quality image URLs + **Image Quality Score**. |
| **Tracking** | Internal IDs, first registration date, and category taxonomy. |

***

### 🚀 How to Use

1. **Start URLs:** Copy any search result URL from AutoScout24 (e.g., `https://www.autoscout24.de/lst/audi/a4?atype=C&cy=D&damaged_listing=exclude&powertype=kw&search_id=...`).
2. **Max Pages:** Set how many pages you want to crawl (each page usually contains 20 listings).
3. **Proxies:** We strongly recommend using **Residential Proxies** to ensure 24/7 reliability and avoid IP rate-limiting.
4. **Run & Export:** Get your data in JSON, CSV, Excel, or XML.

***

### 💡 Use Cases

- **Market Analysis:** Track price drops and market trends for specific models.
- **Inventory Monitoring:** Keep an eye on competitor stock and pricing strategies.
- **Lead Generation:** Collect dealer contact information for insurance or financing offers.
- **SaaS Integration:** Power your own automotive apps with real-time, high-fidelity data.

***

### 🛡️ Support & Customization

Need a custom feature or an even deeper scrape (e.g., individual car equipment/options from the detail page)? Feel free to reach out via the **Issues** tab or contact the developer.

**Note:** This actor is intended for ethical data collection. Please respect AutoScout24's Terms of Service and use responsibly.

# Actor input Schema

## `startUrls` (type: `array`):

Enter AutoScout24 search result URLs (e.g., https://www.autoscout24.de/lst/audi/a4). The scraper automatically detects filters and categories from the link.

## `maxPages` (type: `integer`):

The maximum number of pages to scrape for each provided URL.

## `proxyConfiguration` (type: `object`):

Using Residential proxies is highly recommended to avoid blocks and ensure reliable data extraction.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.autoscout24.de/lst/audi"
    }
  ],
  "maxPages": 1
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "startUrls": [
        {
            "url": "https://www.autoscout24.de/lst/audi"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("ahmed_jasarevic/autoscout24-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "startUrls": [{ "url": "https://www.autoscout24.de/lst/audi" }] }

# Run the Actor and wait for it to finish
run = client.actor("ahmed_jasarevic/autoscout24-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "startUrls": [
    {
      "url": "https://www.autoscout24.de/lst/audi"
    }
  ]
}' |
apify call ahmed_jasarevic/autoscout24-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=ahmed_jasarevic/autoscout24-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/Eg7y8HaH0jT6Vjqa7/builds/QByHKkTOu2zNVj5dY/openapi.json
