# Mobile.de Scraper — Car Dealer Leads with Emails (`scrapersdelight/mobile-de-dealer-scraper`) Actor

Scrape German & European car dealers from Mobile.de as clean leads: company name, address, phone, email, website, live inventory count, brands sold and price range. One row per dealer (deduped). Filter by make and location; export to CSV/JSON. No login.

- **URL**: https://apify.com/scrapersdelight/mobile-de-dealer-scraper.md
- **Developed by:** [Scrapers Delight](https://apify.com/scrapersdelight) (community)
- **Categories:** Automation, Agents, Lead generation
- **Stats:** 3 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$5.00 / 1,000 per dealer lead returneds

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

# Actor input Schema

## `category` (type: `string`):

Which Mobile.de vehicle marketplace to scrape dealers from.

## `make` (type: `string`):

Optional. Restrict to dealers listing one make, e.g. "BMW", "Mercedes-Benz", "Audi", "Volkswagen". Leave blank to scrape dealers across all makes.

## `zip` (type: `string`):

Optional German postcode to centre the search on (used with Radius). Leave blank for all of Germany.

## `radius` (type: `integer`):

Optional search radius in kilometres around the ZIP. Ignored if ZIP is blank.

## `maxDealers` (type: `integer`):

Cap on the number of unique dealers returned this run (cost/speed guard). Dealers are deduped by their Mobile.de seller id. Default 100; set 0 to pull the whole scope (up to a safety cap).

## `enrichEmails` (type: `boolean`):

Fetch each dealer's Mobile.de seller/Impressum page to pull the email, direct phone, website and full legal address. Turn off for a faster, listing-only pull (name, phone, address from the search feed).

## `diagnose` (type: `boolean`):

Developer mode: run a reachability probe against Mobile.de endpoints and dump raw responses to the key-value store instead of scraping. Leave off for normal runs.

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

Proxy settings. Mobile.de hard-blocks non-German IPs, so DE RESIDENTIAL is the default and strongly recommended for reliable results.

## Actor input object example

```json
{
  "category": "Car",
  "make": "BMW",
  "maxDealers": 3,
  "enrichEmails": true,
  "diagnose": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "DE"
  }
}
```

# Actor output Schema

## `records` (type: `string`):

The dataset of unique Mobile.de car dealers (one item per dealer, with contact + inventory).

# 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 = {
    "category": "Car",
    "make": "BMW",
    "maxDealers": 3,
    "enrichEmails": true,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "DE"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapersdelight/mobile-de-dealer-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 = {
    "category": "Car",
    "make": "BMW",
    "maxDealers": 3,
    "enrichEmails": True,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "DE",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("scrapersdelight/mobile-de-dealer-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 '{
  "category": "Car",
  "make": "BMW",
  "maxDealers": 3,
  "enrichEmails": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "DE"
  }
}' |
apify call scrapersdelight/mobile-de-dealer-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

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