# AutoTrack.nl Scraper (`dadhalfdev/autotrack-scraper`) Actor

Scrape used cars from autotrack.nl. Paste a search URL from your browser, or use filters (make, model, price, mileage, year, fuel, body, transmission). Returns price, mileage, year, specs, dealer, and listing URL.

- **URL**: https://apify.com/dadhalfdev/autotrack-scraper.md
- **Developed by:** [Marco Rodrigues](https://apify.com/dadhalfdev) (community)
- **Categories:** Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use 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

## 🚗 AutoTrack.nl Scraper

Want to find the perfect used car, or analyze the Dutch automotive market? This scraper makes it super easy!

Paste an **`input_url`** from your browser once you've already filtered on AutoTrack, **or** use **structured filters** (make, model, price, mileage, year, fuel, body, transmission, etc.) — structured filters work better for AI agents. When `input_url` is set it overrides the filters. Either way, you get up to 1000 used car listings from [autotrack.nl](https://www.autotrack.nl/) with pricing, specs, and dealer details as CSV or JSON.

### 💡 Perfect for...

- **Car Buyers:** Monitor the market for the best deals on your next vehicle in the Netherlands.
- **Dealerships:** Keep an eye on competitors' pricing and inventory to stay competitive.
- **Market Research:** Analyze trends in the Dutch used car market (average prices, popular models, mileage vs. price).
- **Data Analysts:** Download clean, structured data for visualizations, dashboards, or predictive pricing models.
- **🤖 AI Agents:** Power your autonomous agents with real-time AutoTrack listings. Perfect for OpenClaw workflows and bots tracking specific vehicles.
- **📚 RAG Systems:** Feed detailed vehicle specifications and pricing into Retrieval-Augmented Generation pipelines to answer complex queries about the automotive market.
- **🔗 AI Workflows:** Integrate seamlessly with LangChain, AutoGPT, CrewAI, and other AI frameworks that need structured automotive data.

### ✨ Why you'll love this scraper

- 🔗 **Input URL or Filters:** Paste an AutoTrack search URL (`input_url`) if you already filtered in the browser, or use structured filters (better for AI agents). `input_url` always wins when set.
- 🎯 **Website-Matched Filters:** Make, model, fuel, body, transmission, colour, province, price, mileage, and year use the **same option values as autotrack.nl**.
- ⚙️ **Rich Listings:** Extracts price, year, mileage, fuel, body, transmission, power, dealer, and images out of the box.
- ⏱️ **Sorting Options:** Traverse results by relevance, price, year, mileage, or newest ads — same sort fields as on the site.
- 🇳🇱 **Built for the Netherlands:** Covers AutoTrack’s nationwide occasion inventory, with optional province filter.

### 📦 What's inside the data?

For every single listing, you will get:
- **Core Details:** `id`, `title`, `url`, `image`
- **Technical Specs:** `make`, `model`, `fuel_type`, `body_type`, `transmission`, `power`, `mileage`, `year`, `vehicle_configuration`
- **Pricing:** `price`, `price_currency`
- **Dealer:** `dealer_name`, `dealer_city`, `dealer_province`, `dealer_url`
- **Context:** `condition`, `availability`

### 🛠️ Sort options

You can tell the scraper what order to read the listings in using the `sort_by` parameter (same fields as AutoTrack):
- **`relevance:asc`** – Most relevant
- **`prijs:asc` / `prijs:desc`** – Price low→high / high→low
- **`bouwjaar:desc` / `bouwjaar:asc`** – Newest / oldest year
- **`kilometerstand:asc` / `kilometerstand:desc`** – Mileage low→high / high→low
- **`datumGeplaatst:desc`** – Newest ads *(default)*
- **`merkModelUitvoering:asc`** – Make / model

### 🚀 Quick start

**Option A — Input URL**
1. Open [AutoTrack aanbod](https://www.autotrack.nl/aanbod), apply filters in the browser, copy the results URL — ideally `https://www.autotrack.nl/aanbod/merk/...`.
2. Paste it into `input_url`.
3. Set `max_cars` and click **Start**.

**Option B — Structured filters (better for AI agents)**
1. Leave `input_url` empty.
2. Pick make/model and optional filters from the dropdowns (same lists as on AutoTrack).
3. Choose `sort_by`, set `max_cars` (up to 1000).
4. Click **Start** and export CSV, Excel, or JSON when done.

---

#### Tech details for developers 🧑‍💻

**Input Example (structured filters):**

```json
{
  "make": "bmw",
  "model": "bmw::3-serie",
  "max_price": "25000",
  "min_year": "2018",
  "fuel_type": "benzine",
  "transmission": "automatisch",
  "sort_by": "prijs:asc",
  "max_cars": 100
}
````

**Input Example (URL override):**

```json
{
  "input_url": "https://www.autotrack.nl/aanbod/merk/bmw/model/3-serie",
  "max_cars": 500
}
```

**Output Example:**

```json
{
  "id": 59699038,
  "title": "BMW X1 Benzine [G-577-HB]",
  "url": "https://www.autotrack.nl/a/bmw-x1-benzine-2019-59699038",
  "image": "https://cdn.autotrack.nl/59699038/0-d9c94a00fdd36730b90ea0c9de64f4a5.jpg?h=675&w=900",
  "make": "BMW",
  "model": "X1",
  "year": 2019,
  "mileage": 113265,
  "price": 20949,
  "price_currency": "EUR",
  "fuel_type": "Benzine",
  "transmission": "Automaat",
  "body_type": "SUV / Terreinwagen",
  "power": "141 kW (192 PK)",
  "dealer_name": "Rijken Auto's",
  "dealer_city": "Wijchen",
  "dealer_province": "Gelderland"
}
```

### 📋 Input reference (detailed)

| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| `input_url` | string | No | — | Paste an AutoTrack `/aanbod/...` URL; overrides all filters below when set. Leave empty to use filters (better for AI agents). |
| `make` | string enum | No | any | Vehicle make slug from AutoTrack (e.g. `bmw`, `volkswagen`). |
| `model` | string enum | No | any | Make + model as `make::slug` (e.g. `bmw::3-serie`). Pick a row that matches your Make. |
| `min_price` / `max_price` | string enum | No | any | Price in EUR. |
| `min_year` / `max_year` | string enum | No | any | Build year (bouwjaar). |
| `min_mileage` / `max_mileage` | string enum | No | any | Mileage in km. |
| `fuel_type` | string enum | No | any | e.g. `benzine`, `diesel`, `elektriciteit`, `hybride-benzine`. |
| `body_type` | string enum | No | any | e.g. `hatchback`, `suv`, `stationwagen`. |
| `transmission` | string enum | No | any | `automatisch` or `handmatig`. |
| `colour` | string enum | No | any | Colour slug from AutoTrack. |
| `province` | string enum | No | any | Dutch province slug (e.g. `noord-holland`). |
| `sort_by` | string enum | No | `datumGeplaatst:desc` | Result order (see sort options above). |
| `max_cars` | integer | No | `50` | Maximum listings to return (`1`–`1000`). |

#### Notes on filters

- Prefer exact enum strings from the Apify input dropdowns (same values as autotrack.nl).
- `model` uses `make::slug` (double colon), e.g. `bmw::3-serie`.
- Prefer `/aanbod/...` URLs when pasting `input_url`.
- AutoTrack SRPs typically return 30 ads per page.
- `input_url` always wins over filters when provided.

# Actor input Schema

## `input_url` (type: `string`):

Paste an AutoTrack search URL (e.g. https://www.autotrack.nl/aanbod/merk/bmw/model/3-serie) to use instead of the filters below — overrides all structured filters when set. Prefer /aanbod/... paths. Leave empty to use the filters below (better for AI agents).

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

Vehicle make (same slugs as on autotrack.nl).

## `model` (type: `string`):

Make + model as make::slug (e.g. bmw::3-serie). Pick a row matching your Make.

## `min_price` (type: `string`):

Minimum price (EUR).

## `max_price` (type: `string`):

Maximum price (EUR).

## `min_year` (type: `string`):

Minimum build year (bouwjaar).

## `max_year` (type: `string`):

Maximum build year (bouwjaar).

## `min_mileage` (type: `string`):

Minimum mileage (km).

## `max_mileage` (type: `string`):

Maximum mileage (km).

## `fuel_type` (type: `string`):

Fuel type values from autotrack.nl.

## `body_type` (type: `string`):

Body type (carrosserievorm) from autotrack.nl.

## `transmission` (type: `string`):

Transmission type from autotrack.nl.

## `colour` (type: `string`):

Colour values from autotrack.nl.

## `province` (type: `string`):

Dutch province from autotrack.nl.

## `sort_by` (type: `string`):

Sort field and order (same values as AutoTrack).

## `max_cars` (type: `integer`):

Maximum number of listings to scrape (capped at 1000). AutoTrack SRPs typically return 30 ads per page.

## Actor input object example

```json
{
  "make": "",
  "model": "",
  "min_price": "",
  "max_price": "",
  "min_year": "",
  "max_year": "",
  "min_mileage": "",
  "max_mileage": "",
  "fuel_type": "",
  "body_type": "",
  "transmission": "",
  "colour": "",
  "province": "",
  "sort_by": "datumGeplaatst:desc",
  "max_cars": 50
}
```

# Actor output Schema

## `overview` (type: `string`):

Table view of scraped listings using the dataset 'overview' view.

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

All scraped listings from the default dataset without view transformation.

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("dadhalfdev/autotrack-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("dadhalfdev/autotrack-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 '{}' |
apify call dadhalfdev/autotrack-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "AutoTrack.nl Scraper",
        "description": "Scrape used cars from autotrack.nl. Paste a search URL from your browser, or use filters (make, model, price, mileage, year, fuel, body, transmission). Returns price, mileage, year, specs, dealer, and listing URL.",
        "version": "0.1",
        "x-build-id": "QjKVQ3BOq2g60Z9z6"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/dadhalfdev~autotrack-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-dadhalfdev-autotrack-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/dadhalfdev~autotrack-scraper/runs": {
            "post": {
                "operationId": "runs-sync-dadhalfdev-autotrack-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/dadhalfdev~autotrack-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-dadhalfdev-autotrack-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "input_url": {
                        "title": "Input URL",
                        "type": "string",
                        "description": "Paste an AutoTrack search URL (e.g. https://www.autotrack.nl/aanbod/merk/bmw/model/3-serie) to use instead of the filters below — overrides all structured filters when set. Prefer /aanbod/... paths. Leave empty to use the filters below (better for AI agents)."
                    },
                    "make": {
                        "title": "Make",
                        "enum": [
                            "",
                            "abarth",
                            "adria-mobil",
                            "aiways",
                            "aixam",
                            "alfa-romeo",
                            "alpina",
                            "alpine",
                            "alvis",
                            "aston-martin",
                            "audi",
                            "austin",
                            "austin-healey",
                            "autobianchi",
                            "benimar",
                            "bentley",
                            "bmw",
                            "bold",
                            "buick",
                            "burstner",
                            "byd",
                            "cadillac",
                            "canta",
                            "capron",
                            "carado",
                            "carthago",
                            "casalini",
                            "challenger",
                            "changan",
                            "chatenet",
                            "chausson",
                            "chevrolet",
                            "chrysler",
                            "citroen",
                            "corvette",
                            "cupra",
                            "dacia",
                            "daewoo",
                            "daihatsu",
                            "daimler",
                            "dethleffs",
                            "dfsk",
                            "dodge",
                            "dongfeng",
                            "donkervoort",
                            "ds",
                            "estrima",
                            "etrusco",
                            "eura-mobil",
                            "farizon",
                            "ferrari",
                            "fiat",
                            "fisker",
                            "ford",
                            "fuso",
                            "geely",
                            "genesis",
                            "gmc",
                            "hobby",
                            "honda",
                            "hongqi",
                            "hummer",
                            "hymer",
                            "hyundai",
                            "ineos",
                            "infiniti",
                            "isuzu",
                            "iveco",
                            "jaecoo",
                            "jaguar",
                            "jdm",
                            "jeep",
                            "jinpeng",
                            "kgm",
                            "kia",
                            "knaus",
                            "lamborghini",
                            "lancia",
                            "land-rover",
                            "leapmotor",
                            "lexus",
                            "ligier",
                            "lincoln",
                            "lmc",
                            "lotus",
                            "lynk-co",
                            "man",
                            "maserati",
                            "maxus",
                            "maybach",
                            "mazda",
                            "mclaren",
                            "mclouis",
                            "megamobile",
                            "mercedes-benz",
                            "mg",
                            "micro",
                            "microcar",
                            "mini",
                            "mitsubishi",
                            "mobilize",
                            "morgan",
                            "morris",
                            "motion",
                            "niesmann-bischoff",
                            "nissan",
                            "nsu",
                            "oldsmobile",
                            "omoda",
                            "opel",
                            "peugeot",
                            "piaggio",
                            "pilote",
                            "polestar",
                            "pontiac",
                            "porsche",
                            "possl",
                            "ram",
                            "rapido",
                            "renault",
                            "roller-team",
                            "rolls-royce",
                            "rover",
                            "saab",
                            "seat",
                            "seres",
                            "silence",
                            "simca",
                            "skoda",
                            "smart",
                            "spartan",
                            "ssangyong",
                            "studebaker",
                            "subaru",
                            "suzuki",
                            "tesla",
                            "toyota",
                            "triumph",
                            "volkswagen",
                            "volvo",
                            "voyah",
                            "weinsberg",
                            "westfalia",
                            "xpeng",
                            "zeekr"
                        ],
                        "type": "string",
                        "description": "Vehicle make (same slugs as on autotrack.nl).",
                        "default": ""
                    },
                    "model": {
                        "title": "Model",
                        "enum": [
                            "",
                            "abarth::124-spider",
                            "abarth::500",
                            "abarth::500c",
                            "abarth::500e",
                            "abarth::595",
                            "abarth::600e",
                            "abarth::695",
                            "abarth::punto",
                            "abarth::punto-evo",
                            "adria-mobil::coral",
                            "adria-mobil::matrix",
                            "adria-mobil::twin",
                            "aiways::u5",
                            "aixam::brommobiel",
                            "aixam::city",
                            "aixam::crossline",
                            "aixam::crossover",
                            "aixam::d-truck",
                            "aixam::e-coupe",
                            "aixam::e-crossover",
                            "aixam::e-minauto",
                            "aixam::e-truck",
                            "aixam::gti",
                            "aixam::mega",
                            "aixam::scouty",
                            "alfa-romeo::147",
                            "alfa-romeo::156",
                            "alfa-romeo::159",
                            "alfa-romeo::166",
                            "alfa-romeo::4c",
                            "alfa-romeo::alfetta",
                            "alfa-romeo::brera",
                            "alfa-romeo::giulia",
                            "alfa-romeo::giulietta",
                            "alfa-romeo::gt",
                            "alfa-romeo::gtv",
                            "alfa-romeo::junior",
                            "alfa-romeo::mito",
                            "alfa-romeo::spider",
                            "alfa-romeo::stelvio",
                            "alfa-romeo::tonale",
                            "alpina::b3",
                            "alpina::b5",
                            "alpina::xd3",
                            "alpine::a110",
                            "alpine::a290",
                            "alpine::a390",
                            "aston-martin::db11",
                            "aston-martin::db12",
                            "aston-martin::db9",
                            "aston-martin::dbs",
                            "aston-martin::dbx",
                            "aston-martin::rapide",
                            "aston-martin::v12-vantage",
                            "aston-martin::v8",
                            "aston-martin::v8-vantage",
                            "aston-martin::vanquish",
                            "audi::100",
                            "audi::a1",
                            "audi::a1-allstreet",
                            "audi::a1-citycarver",
                            "audi::a2",
                            "audi::a3",
                            "audi::a4",
                            "audi::a4-allroad",
                            "audi::a5",
                            "audi::a6",
                            "audi::a6-allroad",
                            "audi::a6-avant-e-tron",
                            "audi::a6-sportback-e-tron",
                            "audi::a7",
                            "audi::a8",
                            "audi::cabriolet",
                            "audi::e-tron",
                            "audi::e-tron-gt",
                            "audi::e-tron-sportback",
                            "audi::q2",
                            "audi::q3",
                            "audi::q3-sportback",
                            "audi::q4-e-tron",
                            "audi::q4-sportback-e-tron",
                            "audi::q5",
                            "audi::q5-sportback",
                            "audi::q6-e-tron",
                            "audi::q6-sportback-e-tron",
                            "audi::q7",
                            "audi::q8",
                            "audi::q8-e-tron",
                            "audi::q8-sportback-e-tron",
                            "audi::r8",
                            "audi::rs-q3",
                            "audi::rs-q3-sportback",
                            "audi::rs-q8",
                            "audi::rs3",
                            "audi::rs4",
                            "audi::rs5",
                            "audi::rs6",
                            "audi::rs7",
                            "audi::s3",
                            "audi::s4",
                            "audi::s5",
                            "audi::s6",
                            "audi::s6-avant-e-tron",
                            "audi::s7",
                            "audi::s8",
                            "audi::sq2",
                            "audi::sq5",
                            "audi::sq6",
                            "audi::sq7",
                            "audi::sq8",
                            "audi::tt",
                            "audi::tt-rs",
                            "audi::tts",
                            "austin::healey-3000",
                            "austin-healey::3000",
                            "benimar::tessoro",
                            "bentley::arnage",
                            "bentley::bentayga",
                            "bentley::continental-flying-spur",
                            "bentley::continental-gt",
                            "bentley::continental-gtc",
                            "bentley::flying-spur",
                            "bentley::mulsanne",
                            "bmw::1-serie",
                            "bmw::2-5-2-8-3-0",
                            "bmw::2-serie",
                            "bmw::2-serie-active-tourer",
                            "bmw::2-serie-gran-coupe",
                            "bmw::2-serie-gran-tourer",
                            "bmw::2002",
                            "bmw::3-serie",
                            "bmw::3-serie-gran-turismo",
                            "bmw::4-serie",
                            "bmw::4-serie-gran-coupe",
                            "bmw::5-serie",
                            "bmw::5-serie-gt",
                            "bmw::6-serie",
                            "bmw::6-serie-gran-coupe",
                            "bmw::6-serie-gran-turismo",
                            "bmw::7-serie",
                            "bmw::8-serie",
                            "bmw::8-serie-gran-coupe",
                            "bmw::alpina",
                            "bmw::bmw-alpina",
                            "bmw::i3",
                            "bmw::i4",
                            "bmw::i5",
                            "bmw::i7",
                            "bmw::i8",
                            "bmw::ix",
                            "bmw::ix1",
                            "bmw::ix2",
                            "bmw::ix3",
                            "bmw::m2",
                            "bmw::m3",
                            "bmw::m4",
                            "bmw::m5",
                            "bmw::m6",
                            "bmw::m8",
                            "bmw::x",
                            "bmw::x1",
                            "bmw::x2",
                            "bmw::x3",
                            "bmw::x3-m",
                            "bmw::x4",
                            "bmw::x4-m",
                            "bmw::x5",
                            "bmw::x5-m",
                            "bmw::x6",
                            "bmw::x6-m",
                            "bmw::x7",
                            "bmw::xm",
                            "bmw::z3",
                            "bmw::z4",
                            "bmw::z8",
                            "bold::cura",
                            "buick::enclave",
                            "buick::lesabre",
                            "buick::riviera",
                            "buick::roadmaster",
                            "burstner::bt",
                            "burstner::camper",
                            "burstner::ixeo",
                            "burstner::nexxo",
                            "byd::atto-2",
                            "byd::atto-3",
                            "byd::dolphin",
                            "byd::dolphin-surf",
                            "byd::han",
                            "byd::seal",
                            "byd::seal-6",
                            "byd::seal-u",
                            "byd::sealion-7",
                            "byd::tang",
                            "cadillac::cts",
                            "cadillac::de-ville",
                            "cadillac::eldorado",
                            "cadillac::escalade",
                            "cadillac::fleetwood",
                            "cadillac::lyriq",
                            "cadillac::seville",
                            "cadillac::srx",
                            "cadillac::sts",
                            "capron::t",
                            "carado::t338",
                            "carthago::c-tourer",
                            "carthago::chic-c-line",
                            "changan::deepal",
                            "changan::deepal-s07",
                            "chatenet::brommobiel",
                            "chevrolet::avalanche",
                            "chevrolet::aveo",
                            "chevrolet::bel-air",
                            "chevrolet::bolt",
                            "chevrolet::camaro",
                            "chevrolet::captiva",
                            "chevrolet::chevy-van",
                            "chevrolet::corvette",
                            "chevrolet::cruze",
                            "chevrolet::epica",
                            "chevrolet::hhr",
                            "chevrolet::kalos",
                            "chevrolet::matiz",
                            "chevrolet::nubira",
                            "chevrolet::orlando",
                            "chevrolet::pick-up",
                            "chevrolet::silverado",
                            "chevrolet::spark",
                            "chevrolet::ssr",
                            "chevrolet::tacuma",
                            "chevrolet::trax",
                            "chrysler::300c",
                            "chrysler::crossfire",
                            "chrysler::grand-voyager",
                            "chrysler::pacifica",
                            "chrysler::pt-cruiser",
                            "chrysler::sebring",
                            "chrysler::town-country",
                            "chrysler::voyager",
                            "citroen::2cv",
                            "citroen::ami",
                            "citroen::berlingo",
                            "citroen::berlingo-xl",
                            "citroen::c1",
                            "citroen::c2",
                            "citroen::c3",
                            "citroen::c3-aircross",
                            "citroen::c3-picasso",
                            "citroen::c3-pluriel",
                            "citroen::c4",
                            "citroen::c4-aircross",
                            "citroen::c4-cactus",
                            "citroen::c4-grand-picasso",
                            "citroen::c4-grand-spacetourer",
                            "citroen::c4-picasso",
                            "citroen::c4-spacetourer",
                            "citroen::c4-x",
                            "citroen::c5",
                            "citroen::c5-aircross",
                            "citroen::c5-x",
                            "citroen::c6",
                            "citroen::cx",
                            "citroen::ds",
                            "citroen::ds3",
                            "citroen::ds4",
                            "citroen::ds5",
                            "citroen::e-berlingo",
                            "citroen::e-c3",
                            "citroen::e-c3-aircross",
                            "citroen::e-c4",
                            "citroen::e-c4x",
                            "citroen::e-jumper",
                            "citroen::e-jumpy",
                            "citroen::e-mehari",
                            "citroen::e-spacetourer",
                            "citroen::holidays",
                            "citroen::id",
                            "citroen::jumper",
                            "citroen::jumpy",
                            "citroen::mehari",
                            "citroen::nemo",
                            "citroen::spacetourer",
                            "citroen::traction-avant",
                            "citroen::xantia",
                            "citroen::xm",
                            "citroen::xsara",
                            "citroen::xsara-picasso",
                            "corvette::c6",
                            "cupra::ateca",
                            "cupra::born",
                            "cupra::formentor",
                            "cupra::leon",
                            "cupra::leon-sportstourer",
                            "cupra::raval",
                            "cupra::tavascan",
                            "cupra::terramar",
                            "dacia::bigster",
                            "dacia::dokker",
                            "dacia::duster",
                            "dacia::jogger",
                            "dacia::lodgy",
                            "dacia::logan",
                            "dacia::logan-mcv",
                            "dacia::logan-pick-up",
                            "dacia::sandero",
                            "dacia::spring",
                            "daewoo::kalos",
                            "daewoo::matiz",
                            "daewoo::nexia",
                            "daihatsu::charade",
                            "daihatsu::charmant",
                            "daihatsu::copen",
                            "daihatsu::cuore",
                            "daihatsu::materia",
                            "daihatsu::sirion",
                            "daihatsu::taft",
                            "daihatsu::terios",
                            "daihatsu::trevis",
                            "daihatsu::yrv",
                            "daimler::4-0",
                            "daimler::daimler",
                            "daimler::double-six",
                            "daimler::sovereign",
                            "daimler::super-v8",
                            "dethleffs::crosscamp",
                            "dfsk::e5",
                            "dodge::avenger",
                            "dodge::caliber",
                            "dodge::challenger",
                            "dodge::charger",
                            "dodge::durango",
                            "dodge::grand-caravan",
                            "dodge::journey",
                            "dodge::nitro",
                            "dodge::pick-up",
                            "dodge::ram",
                            "dodge::ram-1500",
                            "dodge::ram-2500",
                            "dodge::ram-van",
                            "dodge::stealth",
                            "dodge::viper",
                            "dongfeng::box",
                            "donkervoort::s8",
                            "ds::3",
                            "ds::3-crossback",
                            "ds::4",
                            "ds::5",
                            "ds::7",
                            "ds::7-crossback",
                            "ds::8",
                            "ds::9",
                            "ds::no-8",
                            "estrima::brommobiel",
                            "etrusco::i7400",
                            "farizon::sv",
                            "ferrari::12cilindri",
                            "ferrari::296-gtb",
                            "ferrari::296-gts",
                            "ferrari::308",
                            "ferrari::328",
                            "ferrari::348",
                            "ferrari::360",
                            "ferrari::456",
                            "ferrari::458",
                            "ferrari::488",
                            "ferrari::550",
                            "ferrari::599",
                            "ferrari::812-gts",
                            "ferrari::812-superfast",
                            "ferrari::california",
                            "ferrari::f12-berlinetta",
                            "ferrari::f355",
                            "ferrari::f430",
                            "ferrari::f8-spider",
                            "ferrari::f8-tributo",
                            "ferrari::ff",
                            "ferrari::gtc4-lusso",
                            "ferrari::mondial",
                            "ferrari::portofino",
                            "ferrari::purosangue",
                            "ferrari::roma",
                            "ferrari::sf90",
                            "ferrari::sf90-stradale",
                            "fiat::124",
                            "fiat::230",
                            "fiat::500",
                            "fiat::500c",
                            "fiat::500e",
                            "fiat::500l",
                            "fiat::500x",
                            "fiat::600",
                            "fiat::abarth",
                            "fiat::barchetta",
                            "fiat::bravo",
                            "fiat::camper",
                            "fiat::croma",
                            "fiat::doblo",
                            "fiat::doblo-cargo",
                            "fiat::ducato",
                            "fiat::e-doblo",
                            "fiat::e-ducato",
                            "fiat::e-scudo",
                            "fiat::fiorino",
                            "fiat::grande-panda",
                            "fiat::idea",
                            "fiat::panda",
                            "fiat::pandina",
                            "fiat::punto",
                            "fiat::qubo",
                            "fiat::scudo",
                            "fiat::sedici",
                            "fiat::seicento",
                            "fiat::stilo",
                            "fiat::talento",
                            "fiat::tipo",
                            "fiat::tipo-cross",
                            "fiat::topolino",
                            "fisker::karma",
                            "ford::b-max",
                            "ford::bronco",
                            "ford::c-max",
                            "ford::camper",
                            "ford::capri",
                            "ford::connect",
                            "ford::custom",
                            "ford::e-transit",
                            "ford::e-transit-custom",
                            "ford::ecosport",
                            "ford::edge",
                            "ford::escape",
                            "ford::escort",
                            "ford::explorer",
                            "ford::f-150",
                            "ford::f-150-raptor",
                            "ford::f-250",
                            "ford::fiesta",
                            "ford::focus",
                            "ford::fusion",
                            "ford::galaxy",
                            "ford::grand-c-max",
                            "ford::grand-tourneo-connect",
                            "ford::ka",
                            "ford::kuga",
                            "ford::model-a",
                            "ford::mondeo",
                            "ford::mustang",
                            "ford::mustang-mach-e",
                            "ford::pick-up",
                            "ford::puma",
                            "ford::ranger",
                            "ford::ranger-raptor",
                            "ford::s-max",
                            "ford::streetka",
                            "ford::taunus",
                            "ford::thunderbird",
                            "ford::tourneo",
                            "ford::tourneo-connect",
                            "ford::tourneo-connect-compact",
                            "ford::tourneo-courier",
                            "ford::tourneo-custom",
                            "ford::transit",
                            "ford::transit-connect",
                            "ford::transit-courier",
                            "ford::transit-custom",
                            "ford::transit-custom-tourneo",
                            "ford::transit-kombi",
                            "ford::transit-nugget",
                            "fuso::canter",
                            "geely::e5",
                            "geely::starray-em-i",
                            "genesis::g80",
                            "genesis::gv60",
                            "genesis::gv70",
                            "gmc::sierra",
                            "honda::accord",
                            "honda::civic",
                            "honda::cr-v",
                            "honda::cr-z",
                            "honda::crx",
                            "honda::e",
                            "honda::hr-v",
                            "honda::insight",
                            "honda::jazz",
                            "honda::legend",
                            "honda::nsx",
                            "honda::prelude",
                            "honda::s2000",
                            "honda::zr-v",
                            "hongqi::e-hs7",
                            "hongqi::e-hs9",
                            "hongqi::eh7",
                            "hummer::h2",
                            "hymer::mlt-580",
                            "hyundai::accent",
                            "hyundai::atos",
                            "hyundai::bayon",
                            "hyundai::getz",
                            "hyundai::h200",
                            "hyundai::h300",
                            "hyundai::i10",
                            "hyundai::i20",
                            "hyundai::i30",
                            "hyundai::i40",
                            "hyundai::inster",
                            "hyundai::ioniq",
                            "hyundai::ioniq-5",
                            "hyundai::ioniq-6",
                            "hyundai::ioniq-9",
                            "hyundai::ix20",
                            "hyundai::ix35",
                            "hyundai::kona",
                            "hyundai::kona-electric",
                            "hyundai::matrix",
                            "hyundai::nexo",
                            "hyundai::santa-fe",
                            "hyundai::trajet",
                            "hyundai::tucson",
                            "hyundai::veloster",
                            "ineos::grenadier",
                            "infiniti::ex",
                            "infiniti::fx",
                            "infiniti::g37",
                            "infiniti::q30",
                            "infiniti::q50",
                            "infiniti::q60",
                            "infiniti::q70",
                            "infiniti::qx30",
                            "infiniti::qx50",
                            "infiniti::qx70",
                            "isuzu::d-max",
                            "iveco::camper",
                            "iveco::daily",
                            "jaecoo::5",
                            "jaecoo::7",
                            "jaecoo::8",
                            "jaguar::e-pace",
                            "jaguar::e-type",
                            "jaguar::f-pace",
                            "jaguar::f-type",
                            "jaguar::i-pace",
                            "jaguar::mk-ii",
                            "jaguar::s-type",
                            "jaguar::sovereign",
                            "jaguar::x-type",
                            "jaguar::xe",
                            "jaguar::xf",
                            "jaguar::xj",
                            "jaguar::xj-12",
                            "jaguar::xj-s",
                            "jaguar::xjr",
                            "jaguar::xk",
                            "jaguar::xk150",
                            "jaguar::xk8",
                            "jaguar::xkr",
                            "jeep::avenger",
                            "jeep::cherokee",
                            "jeep::commander",
                            "jeep::compass",
                            "jeep::gladiator",
                            "jeep::grand-cherokee",
                            "jeep::patriot",
                            "jeep::renegade",
                            "jeep::wagoneer",
                            "jeep::wrangler",
                            "jinpeng::p3",
                            "jinpeng::p4",
                            "kgm::actyon",
                            "kgm::musso",
                            "kgm::torres-evx",
                            "kia::carens",
                            "kia::ceed",
                            "kia::e-soul",
                            "kia::ev2",
                            "kia::ev3",
                            "kia::ev4",
                            "kia::ev5",
                            "kia::ev6",
                            "kia::ev9",
                            "kia::k4",
                            "kia::magentis",
                            "kia::niro",
                            "kia::niro-ev",
                            "kia::niro-hybrid",
                            "kia::optima",
                            "kia::picanto",
                            "kia::proceed",
                            "kia::pv5",
                            "kia::rio",
                            "kia::seltos",
                            "kia::sorento",
                            "kia::soul",
                            "kia::sportage",
                            "kia::stinger",
                            "kia::stonic",
                            "kia::venga",
                            "kia::xceed",
                            "knaus::650",
                            "knaus::live-ti",
                            "knaus::van-ti",
                            "lamborghini::350-gt",
                            "lamborghini::aventador",
                            "lamborghini::countach",
                            "lamborghini::gallardo",
                            "lamborghini::huracan",
                            "lamborghini::murcielago",
                            "lamborghini::urraco",
                            "lamborghini::urus",
                            "lancia::beta",
                            "lancia::delta",
                            "lancia::kappa",
                            "lancia::musa",
                            "lancia::thema",
                            "lancia::voyager",
                            "lancia::ypsilon",
                            "land-rover::88",
                            "land-rover::defender",
                            "land-rover::discovery",
                            "land-rover::discovery-sport",
                            "land-rover::freelander",
                            "land-rover::range-rover",
                            "land-rover::range-rover-evoque",
                            "land-rover::range-rover-sport",
                            "land-rover::range-rover-velar",
                            "land-rover::series-1",
                            "leapmotor::b03x",
                            "leapmotor::b05",
                            "leapmotor::b10",
                            "leapmotor::c10",
                            "leapmotor::t03",
                            "lexus::ct",
                            "lexus::es",
                            "lexus::gs",
                            "lexus::gx",
                            "lexus::is",
                            "lexus::lbx",
                            "lexus::lc",
                            "lexus::ls",
                            "lexus::lx",
                            "lexus::nx",
                            "lexus::rc",
                            "lexus::rx",
                            "lexus::rz",
                            "lexus::ux",
                            "ligier::brommobiel",
                            "ligier::js50",
                            "ligier::js50l",
                            "ligier::js60",
                            "ligier::myli",
                            "lincoln::navigator",
                            "lmc::camper",
                            "lotus::eletre",
                            "lotus::emeya",
                            "lotus::emira",
                            "lotus::evora",
                            "lynk-co::01",
                            "lynk-co::02",
                            "lynk-co::08",
                            "man::e-tge",
                            "man::tge",
                            "maserati::3200-gt",
                            "maserati::4200-gt",
                            "maserati::coupe",
                            "maserati::ghibli",
                            "maserati::grancabrio",
                            "maserati::gransport",
                            "maserati::granturismo",
                            "maserati::grecale",
                            "maserati::levante",
                            "maserati::mc20",
                            "maserati::quattroporte",
                            "maserati::spyder",
                            "maxus::deliver-9",
                            "maxus::edeliver-3",
                            "maxus::edeliver-5",
                            "maxus::edeliver-7",
                            "maxus::edeliver-9",
                            "maxus::t90",
                            "mazda::2",
                            "mazda::2-hybrid",
                            "mazda::3",
                            "mazda::5",
                            "mazda::6",
                            "mazda::6e",
                            "mazda::cx-3",
                            "mazda::cx-30",
                            "mazda::cx-5",
                            "mazda::cx-60",
                            "mazda::cx-7",
                            "mazda::cx-80",
                            "mazda::cx-9",
                            "mazda::demio",
                            "mazda::mx-30",
                            "mazda::mx-5",
                            "mazda::premacy",
                            "mazda::tribute",
                            "mclaren::570s",
                            "mclaren::600lt-spider",
                            "mclaren::720s",
                            "mclaren::720s-spider",
                            "mclaren::750s-spider",
                            "mclaren::artura",
                            "mclaren::mp4-12c",
                            "mercedes-benz::190-serie",
                            "mercedes-benz::200-serie",
                            "mercedes-benz::300-serie",
                            "mercedes-benz::a-klasse",
                            "mercedes-benz::amg-gt",
                            "mercedes-benz::amg-sl",
                            "mercedes-benz::b-klasse",
                            "mercedes-benz::c-klasse",
                            "mercedes-benz::camper",
                            "mercedes-benz::citan",
                            "mercedes-benz::citan-tourer",
                            "mercedes-benz::cl",
                            "mercedes-benz::cla",
                            "mercedes-benz::clc",
                            "mercedes-benz::cle",
                            "mercedes-benz::clk",
                            "mercedes-benz::cls",
                            "mercedes-benz::e-klasse",
                            "mercedes-benz::ecitan",
                            "mercedes-benz::eqa",
                            "mercedes-benz::eqb",
                            "mercedes-benz::eqc",
                            "mercedes-benz::eqe",
                            "mercedes-benz::eqs",
                            "mercedes-benz::eqt",
                            "mercedes-benz::eqv",
                            "mercedes-benz::esprinter",
                            "mercedes-benz::evito",
                            "mercedes-benz::evito-tourer",
                            "mercedes-benz::g-klasse",
                            "mercedes-benz::gl",
                            "mercedes-benz::gla",
                            "mercedes-benz::glb",
                            "mercedes-benz::glc",
                            "mercedes-benz::glc-coupe",
                            "mercedes-benz::gle",
                            "mercedes-benz::glk",
                            "mercedes-benz::gls",
                            "mercedes-benz::m-klasse",
                            "mercedes-benz::mb",
                            "mercedes-benz::ml-klasse",
                            "mercedes-benz::pagode",
                            "mercedes-benz::r-klasse",
                            "mercedes-benz::s-klasse",
                            "mercedes-benz::se",
                            "mercedes-benz::sl",
                            "mercedes-benz::slc",
                            "mercedes-benz::slk",
                            "mercedes-benz::slr",
                            "mercedes-benz::sls",
                            "mercedes-benz::sprinter",
                            "mercedes-benz::sprinter-ambulance",
                            "mercedes-benz::sprinter-tourer",
                            "mercedes-benz::v-klasse",
                            "mercedes-benz::vario",
                            "mercedes-benz::viano",
                            "mercedes-benz::vito",
                            "mercedes-benz::vito-tourer",
                            "mercedes-benz::x-klasse",
                            "mg::3",
                            "mg::cyberster",
                            "mg::ehs",
                            "mg::marvel-r",
                            "mg::mg-a",
                            "mg::mg-b",
                            "mg::mg-c",
                            "mg::mg-f",
                            "mg::mg-hs",
                            "mg::mg-zs",
                            "mg::mg3",
                            "mg::mg4",
                            "mg::mg5",
                            "mg::mgs5",
                            "mg::mgs5-ev",
                            "mg::mgs6-ev",
                            "mg::mgs9",
                            "mg::midget",
                            "mg::td",
                            "mg::tf",
                            "mg::zs",
                            "mg::zt",
                            "micro::microlino",
                            "microcar::brommobiel",
                            "microcar::due",
                            "microcar::m-go",
                            "microcar::m-go-highland",
                            "mini::1000",
                            "mini::aceman",
                            "mini::clubman",
                            "mini::cooper",
                            "mini::cooper-s",
                            "mini::countryman",
                            "mini::coupe",
                            "mini::john-cooper-works",
                            "mini::mini-electric",
                            "mini::one",
                            "mini::paceman",
                            "mini::roadster",
                            "mitsubishi::3000gt",
                            "mitsubishi::asx",
                            "mitsubishi::canter",
                            "mitsubishi::carisma",
                            "mitsubishi::colt",
                            "mitsubishi::eclipse-cross",
                            "mitsubishi::grandis",
                            "mitsubishi::i-miev",
                            "mitsubishi::l200",
                            "mitsubishi::lancer",
                            "mitsubishi::outlander",
                            "mitsubishi::outlander-sport",
                            "mitsubishi::pajero",
                            "mitsubishi::space-star",
                            "mobilize::duo",
                            "morgan::4-4",
                            "morgan::plus",
                            "motion::mirage",
                            "niesmann-bischoff::ismove",
                            "nissan::100nx",
                            "nissan::350z",
                            "nissan::370z",
                            "nissan::almera",
                            "nissan::almera-tino",
                            "nissan::ariya",
                            "nissan::e-nv200",
                            "nissan::e-nv200-evalia",
                            "nissan::evalia",
                            "nissan::gt-r",
                            "nissan::interstar",
                            "nissan::juke",
                            "nissan::leaf",
                            "nissan::micra",
                            "nissan::murano",
                            "nissan::navara",
                            "nissan::note",
                            "nissan::nt400",
                            "nissan::nv200",
                            "nissan::nv300",
                            "nissan::nv400",
                            "nissan::patrol",
                            "nissan::pixo",
                            "nissan::primastar",
                            "nissan::primera",
                            "nissan::pulsar",
                            "nissan::qashqai",
                            "nissan::qashqai-2",
                            "nissan::skyline",
                            "nissan::sunny",
                            "nissan::townstar",
                            "nissan::x-trail",
                            "omoda::5",
                            "omoda::9",
                            "opel::adam",
                            "opel::agila",
                            "opel::ampera",
                            "opel::ampera-e",
                            "opel::antara",
                            "opel::astra",
                            "opel::calibra",
                            "opel::cascada",
                            "opel::combo",
                            "opel::combo-e",
                            "opel::combo-life",
                            "opel::combo-tour",
                            "opel::corsa",
                            "opel::corsa-e",
                            "opel::crossland",
                            "opel::frontera",
                            "opel::grandland",
                            "opel::gt",
                            "opel::insignia",
                            "opel::kadett",
                            "opel::karl",
                            "opel::meriva",
                            "opel::mokka",
                            "opel::mokka-e",
                            "opel::mokka-x",
                            "opel::movano",
                            "opel::movano-e",
                            "opel::omega",
                            "opel::rekord",
                            "opel::rocks-e",
                            "opel::signum",
                            "opel::speedster",
                            "opel::tigra",
                            "opel::tour",
                            "opel::vectra",
                            "opel::vivaro",
                            "opel::vivaro-e",
                            "opel::zafira",
                            "opel::zafira-e-life",
                            "peugeot::1007",
                            "peugeot::106",
                            "peugeot::107",
                            "peugeot::108",
                            "peugeot::2008",
                            "peugeot::203",
                            "peugeot::205",
                            "peugeot::206",
                            "peugeot::206-plus",
                            "peugeot::207",
                            "peugeot::208",
                            "peugeot::3008",
                            "peugeot::306",
                            "peugeot::307",
                            "peugeot::308",
                            "peugeot::4007",
                            "peugeot::406",
                            "peugeot::407",
                            "peugeot::408",
                            "peugeot::5008",
                            "peugeot::504",
                            "peugeot::508",
                            "peugeot::605",
                            "peugeot::607",
                            "peugeot::807",
                            "peugeot::bipper",
                            "peugeot::bipper-tepee",
                            "peugeot::boxer",
                            "peugeot::e-2008",
                            "peugeot::e-208",
                            "peugeot::e-3008",
                            "peugeot::e-308",
                            "peugeot::e-5008",
                            "peugeot::e-boxer",
                            "peugeot::e-expert",
                            "peugeot::e-partner",
                            "peugeot::e-traveller",
                            "peugeot::expert",
                            "peugeot::ion",
                            "peugeot::partner",
                            "peugeot::partner-tepee",
                            "peugeot::rcz",
                            "peugeot::rifter",
                            "peugeot::rifter-long",
                            "peugeot::traveller",
                            "polestar::1",
                            "polestar::2",
                            "polestar::3",
                            "polestar::4",
                            "polestar::5",
                            "pontiac::firebird",
                            "porsche::356",
                            "porsche::718-boxster",
                            "porsche::718-cayman",
                            "porsche::718-gt4",
                            "porsche::718-spyder",
                            "porsche::911",
                            "porsche::928",
                            "porsche::944",
                            "porsche::968",
                            "porsche::992",
                            "porsche::boxster",
                            "porsche::cayenne",
                            "porsche::cayenne-coupe",
                            "porsche::cayman",
                            "porsche::macan",
                            "porsche::panamera",
                            "porsche::taycan",
                            "porsche::taycan-cross-turismo",
                            "porsche::taycan-sport-turismo",
                            "possl::summit",
                            "ram::1500",
                            "rapido::rapido",
                            "renault::4",
                            "renault::arkana",
                            "renault::austral",
                            "renault::captur",
                            "renault::clio",
                            "renault::espace",
                            "renault::express",
                            "renault::fluence",
                            "renault::grand-espace",
                            "renault::grand-modus",
                            "renault::grand-scenic",
                            "renault::kadjar",
                            "renault::kangoo",
                            "renault::kangoo-family",
                            "renault::koleos",
                            "renault::laguna",
                            "renault::master",
                            "renault::maxity",
                            "renault::megane",
                            "renault::megane-e-tech",
                            "renault::modus",
                            "renault::r4",
                            "renault::r5",
                            "renault::rafale",
                            "renault::scenic",
                            "renault::scenic-xmod",
                            "renault::symbioz",
                            "renault::talisman",
                            "renault::trafic",
                            "renault::twingo",
                            "renault::twizy",
                            "renault::vel-satis",
                            "renault::wind",
                            "renault::zoe",
                            "roller-team::livingstone",
                            "rolls-royce::cullinan",
                            "rolls-royce::ghost",
                            "rolls-royce::phantom",
                            "rolls-royce::silver-cloud",
                            "rolls-royce::spectre",
                            "rover::100-serie",
                            "rover::200-serie",
                            "rover::600-serie",
                            "rover::75",
                            "rover::800-serie",
                            "rover::metro",
                            "rover::sd-serie",
                            "saab::9-3",
                            "saab::9-5",
                            "saab::9-5-estate",
                            "saab::900",
                            "saab::9000",
                            "seat::alhambra",
                            "seat::altea",
                            "seat::altea-xl",
                            "seat::arona",
                            "seat::arosa",
                            "seat::ateca",
                            "seat::cordoba",
                            "seat::exeo",
                            "seat::ibiza",
                            "seat::leon",
                            "seat::mii",
                            "seat::mii-electric",
                            "seat::tarraco",
                            "seat::toledo",
                            "seres::3",
                            "silence::s04",
                            "skoda::citigo",
                            "skoda::citigo-e-iv",
                            "skoda::elroq",
                            "skoda::enyaq",
                            "skoda::epiq",
                            "skoda::fabia",
                            "skoda::kamiq",
                            "skoda::karoq",
                            "skoda::kodiaq",
                            "skoda::octavia",
                            "skoda::peaq",
                            "skoda::rapid",
                            "skoda::roomster",
                            "skoda::scala",
                            "skoda::superb",
                            "skoda::yeti",
                            "smart::1",
                            "smart::3",
                            "smart::5",
                            "smart::city-coupe",
                            "smart::crossblade",
                            "smart::eq-forfour",
                            "smart::eq-fortwo",
                            "smart::forfour",
                            "smart::fortwo",
                            "smart::roadster",
                            "ssangyong::actyon",
                            "ssangyong::korando",
                            "ssangyong::kyron",
                            "ssangyong::rexton",
                            "ssangyong::tivoli",
                            "subaru::brz",
                            "subaru::crosstrek",
                            "subaru::forester",
                            "subaru::impreza",
                            "subaru::justy",
                            "subaru::legacy",
                            "subaru::levorg",
                            "subaru::outback",
                            "subaru::solterra",
                            "subaru::svx",
                            "subaru::trezia",
                            "subaru::uncharted",
                            "subaru::wrx",
                            "subaru::wrx-sti",
                            "subaru::xv",
                            "suzuki::across",
                            "suzuki::alto",
                            "suzuki::baleno",
                            "suzuki::cappuccino",
                            "suzuki::celerio",
                            "suzuki::e-vitara",
                            "suzuki::grand-vitara",
                            "suzuki::ignis",
                            "suzuki::jimny",
                            "suzuki::kizashi",
                            "suzuki::liana",
                            "suzuki::lj-sj",
                            "suzuki::s-cross",
                            "suzuki::samurai",
                            "suzuki::splash",
                            "suzuki::swace",
                            "suzuki::swift",
                            "suzuki::sx4",
                            "suzuki::vitara",
                            "suzuki::wagon-r-plus",
                            "tesla::model-3",
                            "tesla::model-s",
                            "tesla::model-x",
                            "tesla::model-y",
                            "toyota::auris",
                            "toyota::avensis",
                            "toyota::aygo",
                            "toyota::aygo-x",
                            "toyota::bz4x",
                            "toyota::c-hr",
                            "toyota::c-hr-c-hr-plus",
                            "toyota::camry",
                            "toyota::celica",
                            "toyota::corolla",
                            "toyota::corolla-cross",
                            "toyota::corolla-verso",
                            "toyota::dyna",
                            "toyota::fj-cruiser",
                            "toyota::gt86",
                            "toyota::hiace",
                            "toyota::highlander",
                            "toyota::hilux",
                            "toyota::iq",
                            "toyota::land-cruiser",
                            "toyota::mirai",
                            "toyota::mr2",
                            "toyota::paseo",
                            "toyota::prius",
                            "toyota::prius-plus",
                            "toyota::proace",
                            "toyota::proace-city",
                            "toyota::proace-city-electric",
                            "toyota::proace-city-verso",
                            "toyota::proace-compact",
                            "toyota::proace-electric-worker",
                            "toyota::proace-max",
                            "toyota::proace-shuttle",
                            "toyota::proace-worker",
                            "toyota::rav4",
                            "toyota::starlet",
                            "toyota::supra",
                            "toyota::tundra",
                            "toyota::urban-cruiser",
                            "toyota::verso",
                            "toyota::verso-s",
                            "toyota::yaris",
                            "toyota::yaris-cross",
                            "toyota::yaris-verso",
                            "triumph::acclaim",
                            "triumph::spitfire",
                            "triumph::stag",
                            "triumph::tr3",
                            "triumph::tr4",
                            "triumph::tr6",
                            "triumph::tr7",
                            "volkswagen::amarok",
                            "volkswagen::arteon",
                            "volkswagen::arteon-shooting-brake",
                            "volkswagen::beetle",
                            "volkswagen::caddy",
                            "volkswagen::caddy-maxi",
                            "volkswagen::california",
                            "volkswagen::camper",
                            "volkswagen::caravelle",
                            "volkswagen::cc",
                            "volkswagen::corrado",
                            "volkswagen::crafter",
                            "volkswagen::cross-touran",
                            "volkswagen::e-crafter",
                            "volkswagen::e-golf",
                            "volkswagen::e-transporter",
                            "volkswagen::e-up",
                            "volkswagen::eos",
                            "volkswagen::fox",
                            "volkswagen::golf",
                            "volkswagen::golf-plus",
                            "volkswagen::golf-sportsvan",
                            "volkswagen::id-3",
                            "volkswagen::id-4",
                            "volkswagen::id-5",
                            "volkswagen::id-7",
                            "volkswagen::id-buzz",
                            "volkswagen::id-buzz-cargo",
                            "volkswagen::id-polo",
                            "volkswagen::jetta",
                            "volkswagen::karmann-ghia",
                            "volkswagen::kever",
                            "volkswagen::lt",
                            "volkswagen::lupo",
                            "volkswagen::multivan",
                            "volkswagen::passat",
                            "volkswagen::passat-cc",
                            "volkswagen::phaeton",
                            "volkswagen::polo",
                            "volkswagen::scirocco",
                            "volkswagen::sharan",
                            "volkswagen::t-cross",
                            "volkswagen::t-roc",
                            "volkswagen::t-roc-cabrio",
                            "volkswagen::taigo",
                            "volkswagen::tayron",
                            "volkswagen::tiguan",
                            "volkswagen::tiguan-allspace",
                            "volkswagen::touareg",
                            "volkswagen::touran",
                            "volkswagen::transporter",
                            "volkswagen::up",
                            "volvo::200-serie",
                            "volvo::400-serie",
                            "volvo::700-serie",
                            "volvo::900-serie",
                            "volvo::amazon",
                            "volvo::c30",
                            "volvo::c40",
                            "volvo::c70",
                            "volvo::ec40",
                            "volvo::es90",
                            "volvo::ex30",
                            "volvo::ex30-cross-country",
                            "volvo::ex40",
                            "volvo::ex60",
                            "volvo::ex90",
                            "volvo::p1800",
                            "volvo::pv544",
                            "volvo::s40",
                            "volvo::s60",
                            "volvo::s70",
                            "volvo::s80",
                            "volvo::s90",
                            "volvo::v40",
                            "volvo::v40-cross-country",
                            "volvo::v50",
                            "volvo::v60",
                            "volvo::v60-cross-country",
                            "volvo::v70",
                            "volvo::v70-cross-country",
                            "volvo::v90",
                            "volvo::v90-cross-country",
                            "volvo::xc40",
                            "volvo::xc60",
                            "volvo::xc70",
                            "volvo::xc90",
                            "voyah::courage",
                            "voyah::dream",
                            "voyah::free",
                            "weinsberg::ducato",
                            "westfalia::camper",
                            "westfalia::columbus",
                            "westfalia::nugget",
                            "xpeng::g6",
                            "xpeng::g9",
                            "xpeng::p7",
                            "zeekr::001",
                            "zeekr::7gt",
                            "zeekr::7x",
                            "zeekr::x"
                        ],
                        "type": "string",
                        "description": "Make + model as make::slug (e.g. bmw::3-serie). Pick a row matching your Make.",
                        "default": ""
                    },
                    "min_price": {
                        "title": "Min price",
                        "enum": [
                            "",
                            "1000",
                            "2000",
                            "3000",
                            "4000",
                            "5000",
                            "7500",
                            "10000",
                            "12500",
                            "15000",
                            "17500",
                            "20000",
                            "25000",
                            "30000",
                            "35000",
                            "40000",
                            "45000",
                            "50000",
                            "60000",
                            "70000",
                            "80000",
                            "90000",
                            "100000"
                        ],
                        "type": "string",
                        "description": "Minimum price (EUR).",
                        "default": ""
                    },
                    "max_price": {
                        "title": "Max price",
                        "enum": [
                            "",
                            "1000",
                            "2000",
                            "3000",
                            "4000",
                            "5000",
                            "7500",
                            "10000",
                            "12500",
                            "15000",
                            "17500",
                            "20000",
                            "25000",
                            "30000",
                            "35000",
                            "40000",
                            "45000",
                            "50000",
                            "60000",
                            "70000",
                            "80000",
                            "90000",
                            "100000"
                        ],
                        "type": "string",
                        "description": "Maximum price (EUR).",
                        "default": ""
                    },
                    "min_year": {
                        "title": "Min year",
                        "enum": [
                            "",
                            "2026",
                            "2025",
                            "2024",
                            "2023",
                            "2022",
                            "2021",
                            "2020",
                            "2019",
                            "2018",
                            "2017",
                            "2016",
                            "2015",
                            "2014",
                            "2013",
                            "2012",
                            "2011",
                            "2010",
                            "2009",
                            "2008",
                            "2007",
                            "2006",
                            "2005",
                            "2004",
                            "2003",
                            "2002",
                            "2001",
                            "2000"
                        ],
                        "type": "string",
                        "description": "Minimum build year (bouwjaar).",
                        "default": ""
                    },
                    "max_year": {
                        "title": "Max year",
                        "enum": [
                            "",
                            "2026",
                            "2025",
                            "2024",
                            "2023",
                            "2022",
                            "2021",
                            "2020",
                            "2019",
                            "2018",
                            "2017",
                            "2016",
                            "2015",
                            "2014",
                            "2013",
                            "2012",
                            "2011",
                            "2010",
                            "2009",
                            "2008",
                            "2007",
                            "2006",
                            "2005",
                            "2004",
                            "2003",
                            "2002",
                            "2001",
                            "2000"
                        ],
                        "type": "string",
                        "description": "Maximum build year (bouwjaar).",
                        "default": ""
                    },
                    "min_mileage": {
                        "title": "Min mileage",
                        "enum": [
                            "",
                            "10000",
                            "25000",
                            "50000",
                            "75000",
                            "100000",
                            "125000",
                            "150000",
                            "175000",
                            "200000",
                            "250000",
                            "300000"
                        ],
                        "type": "string",
                        "description": "Minimum mileage (km).",
                        "default": ""
                    },
                    "max_mileage": {
                        "title": "Max mileage",
                        "enum": [
                            "",
                            "10000",
                            "25000",
                            "50000",
                            "75000",
                            "100000",
                            "125000",
                            "150000",
                            "175000",
                            "200000",
                            "250000",
                            "300000"
                        ],
                        "type": "string",
                        "description": "Maximum mileage (km).",
                        "default": ""
                    },
                    "fuel_type": {
                        "title": "Fuel type",
                        "enum": [
                            "",
                            "aardgas",
                            "benzine",
                            "diesel",
                            "elektriciteit",
                            "hybride-benzine",
                            "hybride-diesel",
                            "lpg",
                            "waterstof"
                        ],
                        "type": "string",
                        "description": "Fuel type values from autotrack.nl.",
                        "default": ""
                    },
                    "body_type": {
                        "title": "Body type",
                        "enum": [
                            "",
                            "bedrijfswagen",
                            "cabriolet",
                            "camper",
                            "coupe",
                            "hatchback",
                            "mpv",
                            "overig",
                            "personenbus",
                            "pick-up",
                            "sedan",
                            "stationwagen",
                            "suv"
                        ],
                        "type": "string",
                        "description": "Body type (carrosserievorm) from autotrack.nl.",
                        "default": ""
                    },
                    "transmission": {
                        "title": "Transmission",
                        "enum": [
                            "",
                            "automatisch",
                            "handmatig"
                        ],
                        "type": "string",
                        "description": "Transmission type from autotrack.nl.",
                        "default": ""
                    },
                    "colour": {
                        "title": "Colour",
                        "enum": [
                            "",
                            "beige",
                            "blauw",
                            "bruin",
                            "creme",
                            "divers",
                            "geel",
                            "goud",
                            "grijs",
                            "groen",
                            "oranje",
                            "paars",
                            "rood",
                            "roze",
                            "wit",
                            "zilver",
                            "zwart"
                        ],
                        "type": "string",
                        "description": "Colour values from autotrack.nl.",
                        "default": ""
                    },
                    "province": {
                        "title": "Province",
                        "enum": [
                            "",
                            "drenthe",
                            "flevoland",
                            "friesland",
                            "gelderland",
                            "groningen",
                            "limburg",
                            "noord-brabant",
                            "noord-holland",
                            "overijssel",
                            "utrecht",
                            "zeeland",
                            "zuid-holland"
                        ],
                        "type": "string",
                        "description": "Dutch province from autotrack.nl.",
                        "default": ""
                    },
                    "sort_by": {
                        "title": "Sort by",
                        "enum": [
                            "relevance:asc",
                            "prijs:asc",
                            "prijs:desc",
                            "bouwjaar:desc",
                            "bouwjaar:asc",
                            "kilometerstand:asc",
                            "kilometerstand:desc",
                            "datumGeplaatst:desc",
                            "merkModelUitvoering:asc"
                        ],
                        "type": "string",
                        "description": "Sort field and order (same values as AutoTrack).",
                        "default": "datumGeplaatst:desc"
                    },
                    "max_cars": {
                        "title": "Max results",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Maximum number of listings to scrape (capped at 1000). AutoTrack SRPs typically return 30 ads per page.",
                        "default": 50
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
