# AutoScout24 Car Detail Scraper (`good-apis/autoscout24-detail-scraper`) Actor

Full detail for one AutoScout24 car — specs, equipment, history, seller & photos. $0.50 / 1K results.

- **URL**: https://apify.com/good-apis/autoscout24-detail-scraper.md
- **Developed by:** [Danny](https://apify.com/good-apis) (community)
- **Categories:** E-commerce, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$0.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 Car Detail Scraper

Get the **full detail** of a single **AutoScout24** car listing. Returns a rich, structured JSON record —
every spec (mileage, power, displacement, cylinders, drivetrain, colour, doors/seats, CO₂, consumption),
the full **categorised equipment list**, previous owners and accident/service history, the seller (dealer
company + contact), coordinates, the free-text description and up to 20 photo URLs.

Give it a listing URL or id — or leave it blank and it returns the top live result for a make you name
(great for a self-testing, always-live default).

**Pricing:** $0.50 per 1,000 results (pay-per-result — you are charged one result per car returned).

### What you get

One rich record per car, for example (truncated):

```json
{
  "id": "e9564531-c348-4fd5-afdd-a744320f7121",
  "url": "https://www.autoscout24.com/offers/bmw-525-...",
  "make": "BMW", "model": "525", "model_group": "5 Series", "variant": "Sedan",
  "body_type": "Sedan",
  "price": 8890, "price_display": "€ 8,890", "net_price": 7470,
  "mileage": 199000, "power_kw": 160, "power_hp": 218,
  "first_registration": "2014-10", "fuel": "Diesel", "transmission": "Manual", "gears": 6,
  "displacement_ccm": 2993, "cylinders": 6, "drive_train": "Rear",
  "body_color": "Grey", "doors": 4, "seats": 5,
  "co2_g_km": 138, "fuel_consumption": "5.3 l/100km",
  "previous_owners": 2, "had_accident": false, "full_service_history": true, "non_smoking": true,
  "condition": "used",
  "equipment": ["Navigation system", "Leather seats", "Cruise control", "..."],
  "description": "BMW 525d, full service history ...",
  "city": "Neunkirchen", "zip": "57290", "country": "DE", "lat": 49.34, "lon": 7.18,
  "seller": {"name": "Telmann Automobile", "type": "dealer", "is_dealer": true, "contact": "..."},
  "num_images": 25, "images": ["https://prod.pictures.autoscout24.net/..."]
}
```

### Input

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | no | Full AutoScout24 listing URL (`https://www.autoscout24.com/offers/...-<uuid>`). |
| `offer_id` | string | no | The listing UUID (the id at the end of an `/offers/` URL). Alternative to `url`. |
| `seed_search` | string | no | Used only when `url` and `offer_id` are both blank: returns the detail of the TOP live result for this AutoScout24 search — a make keyword (`bmw`, `audi/a4`) or a full search URL. Default `bmw`. |

Provide **one** of `url` / `offer_id`; or leave both blank and set `seed_search`.

#### Output fields

| Field | Description |
|-------|-------------|
| `id`, `url` | Listing id (UUID) and URL |
| `make`, `model`, `model_group`, `variant`, `body_type` | Vehicle identity |
| `price`, `price_display`, `net_price` | Gross price (EUR, numeric + formatted) and net price |
| `mileage`, `power_kw`, `power_hp` | Odometer (km) and engine power |
| `first_registration`, `fuel`, `transmission`, `gears` | Registration, fuel, gearbox and gear count |
| `displacement_ccm`, `cylinders`, `drive_train` | Engine displacement, cylinders, drivetrain |
| `body_color`, `doors`, `seats` | Colour, doors, seats |
| `co2_g_km`, `fuel_consumption` | CO₂ (g/km) and combined consumption |
| `previous_owners`, `had_accident`, `full_service_history`, `non_smoking` | History flags |
| `condition` | `new` or `used` |
| `equipment` | Full list of equipment / options |
| `description` | Seller's free-text description (plain text) |
| `city`, `zip`, `country`, `lat`, `lon` | Seller location + coordinates |
| `seller` | `{name, type, is_dealer, contact}` |
| `num_images`, `images` | Photo count and up to 20 photo URLs |

### Usage — Python

```python
from apify_client import ApifyClient

client = ApifyClient("<YOUR_APIFY_TOKEN>")
run = client.actor("good-apis/autoscout24-detail-scraper").call(run_input={
    "url": "https://www.autoscout24.com/offers/bmw-525-...-e9564531-c348-4fd5-afdd-a744320f7121",
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item["make"], item["model"], item["price"], item["power_hp"], item["equipment"])
```

### Usage — Node.js

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

const client = new ApifyClient({ token: '<YOUR_APIFY_TOKEN>' });
const run = await client.actor('good-apis/autoscout24-detail-scraper').call({
    seed_search: 'audi/a4',
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items[0].make, items[0].model, items[0].equipment);
```

### FAQ

**Where do I get a listing URL?** From the **AutoScout24 Car Search Scraper** (its `url` output field),
or straight from an AutoScout24 offer page in your browser.

**What if the car has sold?** AutoScout24 delists sold cars; a URL for a removed listing returns a
clear "not found" and the run fails loudly (rather than returning a hollow record).

**Why leave everything blank?** With only `seed_search` set, the actor always returns a currently-live
car for that make — handy for a smoke test or a "latest listing" feed.

**Is it charged per result?** Yes — pay-per-result. One car returned = one result billed.

# Actor input Schema

## `url` (type: `string`):

Full AutoScout24 listing URL, e.g. 'https://www.autoscout24.com/offers/bmw-116-...-<uuid>'. Leave blank to auto-pick the top result of the fallback search below.

## `offer_id` (type: `string`):

The listing UUID — the id at the end of an /offers/ URL. An alternative to the full URL.

## `seed_search` (type: `string`):

Used only when both URL and Listing ID are blank: the actor returns the full detail of the TOP live result for this AutoScout24 search — a make keyword like 'bmw' or 'audi/a4', or a full search URL. Guarantees a live listing every run.

## Actor input object example

```json
{
  "seed_search": "bmw"
}
```

# Actor output Schema

## `results` (type: `string`):

All scraped items in the default dataset.

# 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 = {
    "seed_search": "bmw"
};

// Run the Actor and wait for it to finish
const run = await client.actor("good-apis/autoscout24-detail-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 = { "seed_search": "bmw" }

# Run the Actor and wait for it to finish
run = client.actor("good-apis/autoscout24-detail-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 '{
  "seed_search": "bmw"
}' |
apify call good-apis/autoscout24-detail-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/fyf8P9T2G7jbYtwdY/builds/dEwL4BiH0K7gMiKCi/openapi.json
