# Coches Net Scraper (`kaidev/coches-net-scraper`) Actor

This scraper is a tool designed to extract detailed product listings from Coches.net. Built for the Apify platform, this scraper allows users to gather comprehensive data with ease, making it ideal for market analysis, price tracking, inventory management, or research purposes.

- **URL**: https://apify.com/kaidev/coches-net-scraper.md
- **Developed by:** [Kaidev](https://apify.com/kaidev) (community)
- **Categories:** Agents, Automation
- **Stats:** 76 total users, 2 monthly users, 91.2% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$10.00 / 1,000 coches

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

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

## What's an Apify Actor?

Actors are 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.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.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/platform/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

### Coches.net Scraper for Apify

This **Coches.net Scraper** is a robust and efficient tool designed to extract detailed motorcycle listings from Coches.net, one of Spain's leading online motorcycle marketplaces. Built for the Apify platform, this scraper allows users to gather comprehensive data with ease, making it ideal for market analysis, price tracking, inventory management, or research purposes.

#### Key Features:

* **Extensive Data Extraction**: Collects a wide array of data points for each car listing, including:
    * **Brand and Model**
    * **Price**
    * **Mileage**
    * **Location (City/Province)**
    * **Seller Type**
    * **Listing URL**
    * **Key Specifications** (e.g., engine size, power, color)
    * **Image URL**
    * **Publication Date**
* **Flexible Search Parameters**: Configure the scraper to target specific listings based on various criteria, such as:
    * Brand and model
    * Price range
    * Location
* **Pagination Handling**: Automatically navigates through multiple pages of search results to ensure all relevant listings are captured.
* **Proxy Rotation**: Integrates with Apify's proxy infrastructure to avoid IP blocking and ensure reliable data extraction.
* **Data Export Options**: Supports various export formats, including JSON, CSV, Excel, and HTML, for easy integration into your existing workflows or analysis tools.
* **Scheduler Friendly**: Designed to be easily scheduled on the Apify platform for regular, automated data collection.

#### Use Cases:

* **Market Research**: Analyze pricing trends, popular models, and regional demand for cars.
* **Competitive Analysis**: Monitor competitors' inventory and pricing strategies.
* **Lead Generation**: Identify potential leads for car dealerships or related businesses.
* **Academic Research**: Gather data for studies on consumer behavior or market dynamics in the car industry.
* **Personal Use**: Track specific models or deals for personal purchase decisions.

This Coches.net Scraper leverages Apify's scalable infrastructure to provide a reliable and efficient solution for anyone needing to extract structured data from Coches.net.

# Actor input Schema

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

Tipo de coche
## `brand` (type: `array`):

Marca del coche
## `model` (type: `array`):

Modelo del coche
## `province` (type: `string`):

Provincia de España
## `price` (type: `string`):

Precio hasta
## `maxItems` (type: `integer`):

Número máximo de resultados a obtener por marca. Si seleccionas múltiples marcas, el número total de resultados puede ser mayor que este valor.

## Actor input object example

```json
{
  "type": "search",
  "brand": [],
  "model": [],
  "province": "cataluna",
  "price": "",
  "maxItems": 60
}
````

# 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("kaidev/coches-net-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("kaidev/coches-net-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 kaidev/coches-net-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Coches Net Scraper",
        "description": "This scraper is a tool designed to extract detailed product listings from Coches.net. Built for the Apify platform, this scraper allows users to gather comprehensive data with ease, making it ideal for market analysis, price tracking, inventory management, or research purposes.",
        "version": "0.0",
        "x-build-id": "hYIL6zUbg8wZXIh25"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/kaidev~coches-net-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-kaidev-coches-net-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/kaidev~coches-net-scraper/runs": {
            "post": {
                "operationId": "runs-sync-kaidev-coches-net-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/kaidev~coches-net-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-kaidev-coches-net-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": {
                    "type": {
                        "title": "Tipo",
                        "enum": [
                            "search",
                            "segunda-mano",
                            "km-0",
                            "nuevos"
                        ],
                        "type": "string",
                        "description": "Tipo de coche",
                        "default": "search"
                    },
                    "brand": {
                        "title": "Marca",
                        "type": "array",
                        "description": "Marca del coche",
                        "items": {
                            "type": "string",
                            "enum": [
                                "AUDI",
                                "BMW",
                                "CITROEN",
                                "FORD",
                                "HYUNDAI",
                                "KIA",
                                "MERCEDES-BENZ",
                                "NISSAN",
                                "OPEL",
                                "PEUGEOT",
                                "RENAULT",
                                "SEAT",
                                "TOYOTA",
                                "VOLKSWAGEN",
                                "ABARTH",
                                "AIWAYS",
                                "AIXAM",
                                "ALFA ROMEO",
                                "ALPINE",
                                "ARO",
                                "ASIA",
                                "ASIA MOTORS",
                                "ASTON MARTIN",
                                "AUSTIN",
                                "AUVERLAND",
                                "BAIC",
                                "BELLIER",
                                "BENTLEY",
                                "BERTONE",
                                "BESTUNE",
                                "BUGATTI",
                                "BUNKER-TRIKE",
                                "BYD",
                                "CADILLAC",
                                "CASALINI",
                                "CENNTRO",
                                "CHATENET",
                                "CHEVROLET",
                                "CHRYSLER",
                                "CORVETTE",
                                "CUPRA",
                                "DACIA",
                                "DAEWOO",
                                "DAF",
                                "DAIHATSU",
                                "DAIMLER",
                                "DFSK",
                                "DODGE",
                                "DONGFENG",
                                "DR AUTOMOBILES",
                                "DS",
                                "DSK",
                                "EBRO",
                                "ERAD",
                                "ESTRIMA BIRO",
                                "EVO",
                                "EVUM",
                                "FARIZON",
                                "FERRARI",
                                "FIAT",
                                "FISKER",
                                "FOTON",
                                "FUSO",
                                "GALLOPER",
                                "GME",
                                "GRECAV",
                                "GREEN TOUR",
                                "HONDA",
                                "HONGQI",
                                "HUMMER",
                                "ICH-X",
                                "INEOS",
                                "INFINITI",
                                "INNOCENTI",
                                "ISUZU",
                                "ITAL CAR",
                                "IVECO",
                                "IVECO-PEGASO",
                                "JAECOO",
                                "JAGUAR",
                                "JDM",
                                "JEEP",
                                "KGM",
                                "KTM",
                                "LADA",
                                "LAMBORGHINI",
                                "LANCIA",
                                "LAND-ROVER",
                                "LDV",
                                "LEAPMOTOR",
                                "LEVC",
                                "LEXUS",
                                "LIGIER",
                                "LIVAN",
                                "LOTUS",
                                "LYNK & CO",
                                "M-HERO",
                                "MAHINDRA",
                                "MAN",
                                "MASERATI",
                                "MAXUS",
                                "MAYBACH",
                                "MAZDA",
                                "MCLAREN",
                                "MEGA",
                                "MELEX",
                                "MG",
                                "MICRO",
                                "MICROCAR",
                                "MINI",
                                "MITSUBISHI",
                                "MOBILIZE",
                                "MORGAN",
                                "MW MOTORS",
                                "NEXTEM",
                                "OMODA",
                                "PGO SCOOTERS",
                                "PIAGGIO",
                                "POLARIS",
                                "POLESTAR",
                                "PONTIAC",
                                "PORSCHE",
                                "QOROS",
                                "QUOVIS",
                                "RAM",
                                "RENAULT V.I.",
                                "ROLLS-ROYCE",
                                "ROVER",
                                "SAAB",
                                "SAIC",
                                "SANTANA",
                                "SERES",
                                "SKODA",
                                "SKYWELL",
                                "SMART",
                                "SSANGYONG",
                                "SUBARU",
                                "SUZUKI",
                                "SWM",
                                "TALBOT",
                                "TASSO",
                                "TATA",
                                "TESLA",
                                "TWIKE",
                                "UMM",
                                "VAZ",
                                "VIDI",
                                "VOLVO",
                                "VOYAH",
                                "WARTBURG",
                                "XPENG",
                                "YUDO",
                                "ZEST",
                                "ZHIDOU"
                            ],
                            "enumTitles": [
                                "AUDI",
                                "BMW",
                                "CITROEN",
                                "FORD",
                                "HYUNDAI",
                                "KIA",
                                "MERCEDES-BENZ",
                                "NISSAN",
                                "OPEL",
                                "PEUGEOT",
                                "RENAULT",
                                "SEAT",
                                "TOYOTA",
                                "VOLKSWAGEN",
                                "ABARTH",
                                "AIWAYS",
                                "AIXAM",
                                "ALFA ROMEO",
                                "ALPINE",
                                "ARO",
                                "ASIA",
                                "ASIA MOTORS",
                                "ASTON MARTIN",
                                "AUSTIN",
                                "AUVERLAND",
                                "BAIC",
                                "BELLIER",
                                "BENTLEY",
                                "BERTONE",
                                "BESTUNE",
                                "BUGATTI",
                                "BUNKER-TRIKE",
                                "BYD",
                                "CADILLAC",
                                "CASALINI",
                                "CENNTRO",
                                "CHATENET",
                                "CHEVROLET",
                                "CHRYSLER",
                                "CORVETTE",
                                "CUPRA",
                                "DACIA",
                                "DAEWOO",
                                "DAF",
                                "DAIHATSU",
                                "DAIMLER",
                                "DFSK",
                                "DODGE",
                                "DONGFENG",
                                "DR AUTOMOBILES",
                                "DS",
                                "DSK",
                                "EBRO",
                                "ERAD",
                                "ESTRIMA BIRO",
                                "EVO",
                                "EVUM",
                                "FARIZON",
                                "FERRARI",
                                "FIAT",
                                "FISKER",
                                "FOTON",
                                "FUSO",
                                "GALLOPER",
                                "GME",
                                "GRECAV",
                                "GREEN TOUR",
                                "HONDA",
                                "HONGQI",
                                "HUMMER",
                                "ICH-X",
                                "INEOS",
                                "INFINITI",
                                "INNOCENTI",
                                "ISUZU",
                                "ITAL CAR",
                                "IVECO",
                                "IVECO-PEGASO",
                                "JAECOO",
                                "JAGUAR",
                                "JDM",
                                "JEEP",
                                "KGM",
                                "KTM",
                                "LADA",
                                "LAMBORGHINI",
                                "LANCIA",
                                "LAND-ROVER",
                                "LDV",
                                "LEAPMOTOR",
                                "LEVC",
                                "LEXUS",
                                "LIGIER",
                                "LIVAN",
                                "LOTUS",
                                "LYNK & CO",
                                "M-HERO",
                                "MAHINDRA",
                                "MAN",
                                "MASERATI",
                                "MAXUS",
                                "MAYBACH",
                                "MAZDA",
                                "MCLAREN",
                                "MEGA",
                                "MELEX",
                                "MG",
                                "MICRO",
                                "MICROCAR",
                                "MINI",
                                "MITSUBISHI",
                                "MOBILIZE",
                                "MORGAN",
                                "MW MOTORS",
                                "NEXTEM",
                                "OMODA",
                                "PGO SCOOTERS",
                                "PIAGGIO",
                                "POLARIS",
                                "POLESTAR",
                                "PONTIAC",
                                "PORSCHE",
                                "QOROS",
                                "QUOVIS",
                                "RAM",
                                "RENAULT V.I.",
                                "ROLLS-ROYCE",
                                "ROVER",
                                "SAAB",
                                "SAIC",
                                "SANTANA",
                                "SERES",
                                "SKODA",
                                "SKYWELL",
                                "SMART",
                                "SSANGYONG",
                                "SUBARU",
                                "SUZUKI",
                                "SWM",
                                "TALBOT",
                                "TASSO",
                                "TATA",
                                "TESLA",
                                "TWIKE",
                                "UMM",
                                "VAZ",
                                "VIDI",
                                "VOLVO",
                                "VOYAH",
                                "WARTBURG",
                                "XPENG",
                                "YUDO",
                                "ZEST",
                                "ZHIDOU"
                            ]
                        },
                        "default": []
                    },
                    "model": {
                        "title": "Modelo",
                        "type": "array",
                        "description": "Modelo del coche",
                        "items": {
                            "type": "string",
                            "enum": [
                                "100 NX",
                                "100",
                                "1007",
                                "100D",
                                "106",
                                "107",
                                "108",
                                "140D",
                                "180D",
                                "190",
                                "200 SX",
                                "200",
                                "2008",
                                "205",
                                "206 +",
                                "206 SW",
                                "206",
                                "207 +",
                                "207",
                                "208 XAD",
                                "208",
                                "208D",
                                "210D",
                                "220",
                                "230",
                                "260",
                                "280",
                                "2CV",
                                "300 ZX",
                                "300",
                                "3008 Hybrid",
                                "3008 Plug-in Hybrid",
                                "3008",
                                "306",
                                "307 SW",
                                "307",
                                "308",
                                "308D",
                                "309",
                                "310D",
                                "350Z",
                                "370Z",
                                "4 E-Tech",
                                "400",
                                "4007",
                                "4008",
                                "405",
                                "406",
                                "407 SW",
                                "407",
                                "408",
                                "420",
                                "4Runner",
                                "5 E-Tech",
                                "5",
                                "500",
                                "5008 Hybrid",
                                "5008 Plug-in Hybrid",
                                "5008",
                                "505",
                                "508 Hybrid",
                                "508",
                                "600",
                                "604",
                                "605",
                                "607",
                                "80",
                                "806",
                                "807",
                                "90",
                                "A1",
                                "A2",
                                "A3",
                                "A4 Allroad Quattro",
                                "A4",
                                "A5",
                                "A6 allroad quattro",
                                "A6 e-tron",
                                "A6",
                                "A7",
                                "A8",
                                "ALTEA",
                                "AMG GT",
                                "AMI",
                                "AX",
                                "Accent",
                                "Adam",
                                "Agila",
                                "Alhambra",
                                "Allroad Quattro",
                                "Almera Tino",
                                "Almera",
                                "Alpine",
                                "Altea Freetrack",
                                "Altea XL",
                                "Amarok",
                                "Ampera",
                                "Antara",
                                "Ariya",
                                "Arkana",
                                "Arona",
                                "Arosa",
                                "Arteon",
                                "Ascona",
                                "Astra Electric",
                                "Astra PHEV",
                                "Astra",
                                "Ateca",
                                "Atos Prime",
                                "Atos",
                                "Auris",
                                "Austral",
                                "Avantime",
                                "Avensis Verso",
                                "Avensis",
                                "Aygo X Cross",
                                "Aygo",
                                "B-MAX",
                                "BX",
                                "BZ4X",
                                "Bayon",
                                "Beetle",
                                "Berlingo First",
                                "Berlingo",
                                "Besta",
                                "Bipper",
                                "Bluebird",
                                "Bora",
                                "Boxer",
                                "Bronco",
                                "C-Crosser",
                                "C-Elysée",
                                "C-HR",
                                "C-Max",
                                "C-Zero",
                                "C1",
                                "C15",
                                "C2",
                                "C25",
                                "C3 Aircross",
                                "C3 Origin",
                                "C3 Picasso",
                                "C3 Pluriel",
                                "C3",
                                "C4 Aircross",
                                "C4 Cactus",
                                "C4 Picasso",
                                "C4 Sedán",
                                "C4 Spacetourer",
                                "C4 X",
                                "C4",
                                "C5 Aircross Hybrid",
                                "C5 Aircross",
                                "C5 X",
                                "C5",
                                "C6",
                                "C8",
                                "CAMION",
                                "CC",
                                "CLA",
                                "CLE",
                                "CLS",
                                "CUBE",
                                "CX",
                                "Cabrio",
                                "Cabriolet",
                                "Cabstar E",
                                "Cabstar",
                                "Caddy",
                                "Calibra",
                                "California",
                                "Camry",
                                "Capri",
                                "Captur",
                                "Caravelle",
                                "Carens",
                                "Carina E",
                                "Carnival",
                                "Ceed Tourer",
                                "Ceed",
                                "Celica",
                                "Cerato",
                                "Citan",
                                "Clarus",
                                "Clase A",
                                "Clase B",
                                "Clase C",
                                "Clase CL",
                                "Clase CLA",
                                "Clase CLC",
                                "Clase CLK",
                                "Clase CLS",
                                "Clase E",
                                "Clase G",
                                "Clase GL",
                                "Clase GLA",
                                "Clase GLC",
                                "Clase GLE Coupé",
                                "Clase GLE",
                                "Clase GLK",
                                "Clase GLS",
                                "Clase M",
                                "Clase R",
                                "Clase S",
                                "Clase SL R129",
                                "Clase SL",
                                "Clase SLC",
                                "Clase SLK",
                                "Clase T",
                                "Clase V",
                                "Clase X",
                                "Clio 4",
                                "Clio Campus",
                                "Clio III",
                                "Clio",
                                "Combo Electric",
                                "Combo Life",
                                "Combo",
                                "Combo-e Life",
                                "Combo-e",
                                "Compact",
                                "Connect",
                                "Cordoba",
                                "Corolla Cross",
                                "Corolla Sedan",
                                "Corolla Verso",
                                "Corolla",
                                "Corrado",
                                "Corsa Electric",
                                "Corsa Van",
                                "Corsa",
                                "Corsa-e Van",
                                "Corsa-e",
                                "Cougar",
                                "Coupe",
                                "Courier",
                                "Crafter",
                                "Crossland X",
                                "Crossland",
                                "DS3",
                                "DS4",
                                "DS5",
                                "Dyna",
                                "E-3008",
                                "E-308",
                                "E-408",
                                "E-5008",
                                "E-C5 Aircross",
                                "E-Mehari",
                                "EQA",
                                "EQB",
                                "EQC",
                                "EQE SUV",
                                "EQE",
                                "EQS SUV",
                                "EQS",
                                "EQT",
                                "EQV",
                                "EV3",
                                "EV6",
                                "EV9",
                                "EVALIA",
                                "EcoSport",
                                "Edge",
                                "Elantra",
                                "Eos",
                                "Escort",
                                "Espace",
                                "Evasion",
                                "Exeo",
                                "Expert",
                                "Explorer EV",
                                "Explorer",
                                "Express",
                                "Fiesta Van",
                                "Fiesta",
                                "Fluence",
                                "Focus C-MAX",
                                "Focus",
                                "Fox",
                                "Frontera Electric",
                                "Frontera",
                                "Fuego",
                                "Fusion",
                                "GLA",
                                "GLB",
                                "GLC Coupé",
                                "GLC",
                                "GLE Coupé",
                                "GLE",
                                "GLS",
                                "GR Supra",
                                "GR Yaris",
                                "GR86",
                                "GSA",
                                "GT",
                                "GT-R",
                                "GT86",
                                "GTC",
                                "Galaxy",
                                "Genesis",
                                "Getz",
                                "Golf Plus",
                                "Golf Sportsvan",
                                "Golf",
                                "Granada",
                                "Grand C-Max",
                                "Grand C4 Picasso",
                                "Grand C4 Spacetourer",
                                "Grand California",
                                "Grand Espace",
                                "Grand Kangoo Combi",
                                "Grand Modus",
                                "Grand Santa Fe",
                                "Grand Scénic",
                                "Grand Tourneo Connect",
                                "Grand Tourneo Custom",
                                "Grandeur",
                                "Grandland PHEV",
                                "Grandland X PHEV",
                                "Grandland X",
                                "Grandland",
                                "H-1 Travel",
                                "H-1 Van",
                                "H-1",
                                "H100",
                                "H350",
                                "Hiace",
                                "Highlander",
                                "Hilux",
                                "Holidays",
                                "ID. BUZZ",
                                "ID.3",
                                "ID.4",
                                "ID.5",
                                "ID.7",
                                "IONIQ 5",
                                "IONIQ 6",
                                "IONIQ 9",
                                "IONIQ",
                                "Ibiza",
                                "Inca",
                                "Insignia",
                                "Inster",
                                "Interstar",
                                "J5",
                                "JUKE",
                                "Jetta",
                                "Joice",
                                "Jumper",
                                "Jumpy",
                                "K2500 Frontier",
                                "KA",
                                "Ka+",
                                "Kadett",
                                "Kadjar",
                                "Kangoo Combi E-Tech",
                                "Kangoo Combi",
                                "Kangoo Express",
                                "Kangoo Furgón Compact",
                                "Kangoo Furgón E-Tech",
                                "Kangoo Furgón",
                                "Kangoo Z.E.",
                                "Kangoo",
                                "Karl",
                                "Koleos",
                                "Kona",
                                "Kubistar",
                                "Kuga",
                                "LEAF",
                                "LNA",
                                "LT",
                                "Laguna",
                                "Land Cruiser 100",
                                "Land Cruiser 200",
                                "Land Cruiser 80",
                                "Land Cruiser 90",
                                "Land Cruiser",
                                "Lantra",
                                "Latitude",
                                "León",
                                "Lupo",
                                "MR2",
                                "Magentis",
                                "Malaga",
                                "Manta",
                                "Marbella",
                                "Mascott",
                                "Master E-Tech",
                                "Master Propulsión",
                                "Master Z.E.",
                                "Master",
                                "Matrix",
                                "Maverick",
                                "Maxima QX",
                                "Maxima",
                                "Maxity",
                                "Megane E-Tech",
                                "Mercedes-AMG GT 4-Puertas Coupé",
                                "Mercedes-AMG GT Coupé",
                                "Mercedes-AMG GT",
                                "Mercedes-AMG SL",
                                "Mercedes-Maybach SL",
                                "Meriva",
                                "Micra",
                                "Mii",
                                "Mirai",
                                "Modus",
                                "Mokka X",
                                "Mokka",
                                "Mokka-e",
                                "Mondeo",
                                "Monterey",
                                "Monza",
                                "Movano",
                                "Movano-e",
                                "Multivan",
                                "Murano",
                                "Mustang Mach-E",
                                "Mustang",
                                "Mégane",
                                "NOTE",
                                "NP300 Navara",
                                "NP300 Pick Up",
                                "NT400 Cabstar",
                                "NT400",
                                "NV200 EVALIA",
                                "NV200",
                                "NV250",
                                "NV300",
                                "NV400",
                                "Navara",
                                "Nemo",
                                "Nevada",
                                "New Beetle",
                                "Nexo",
                                "Niro Hïbrido Enchufable",
                                "Niro PHEV",
                                "Niro",
                                "Omega",
                                "Opirus",
                                "Optima GT",
                                "Optima Hïbrido Enchufable",
                                "Optima PHEV",
                                "Optima SW GT",
                                "Optima SW Hïbrido Enchufable",
                                "Optima SW PHEV",
                                "Optima SW",
                                "Optima",
                                "Orion",
                                "PULSAR",
                                "PV5",
                                "Partner Origin",
                                "Partner",
                                "Paseo",
                                "Passat CC",
                                "Passat",
                                "Pathfinder",
                                "Patrol GR",
                                "Patrol",
                                "Phaeton",
                                "Picanto",
                                "Pick-up",
                                "Picnic",
                                "Pixo",
                                "Polo",
                                "Pony",
                                "Prairie",
                                "Pregio",
                                "Previa",
                                "Pride",
                                "Primastar",
                                "Primera",
                                "Prius",
                                "Prius+",
                                "ProCeed",
                                "Proace City Verso",
                                "Proace City",
                                "Proace Max",
                                "Proace Verso",
                                "Proace",
                                "Probe",
                                "Puma",
                                "Q2",
                                "Q3 Sportback",
                                "Q3",
                                "Q4 Sportback e-tron",
                                "Q4 e-tron",
                                "Q5 SPORTBACK",
                                "Q5",
                                "Q6 Sportback e-tron",
                                "Q6 e-tron",
                                "Q7",
                                "Q8 Sportback e-tron",
                                "Q8 e-tron Sportback",
                                "Q8 e-tron",
                                "Q8",
                                "QASHQAI",
                                "QASHQAI+2",
                                "R11",
                                "R18",
                                "R19",
                                "R21",
                                "R25",
                                "R4",
                                "R5",
                                "R6",
                                "R8",
                                "R9",
                                "RCZ",
                                "RS Q3",
                                "RS2",
                                "RS3",
                                "RS4",
                                "RS5",
                                "RS6",
                                "RS7",
                                "Rafale",
                                "Ranger",
                                "Rav4",
                                "Rekord",
                                "Rifter",
                                "Rio",
                                "Ronda",
                                "S-MAX",
                                "S1",
                                "S2",
                                "S3",
                                "S4",
                                "S5",
                                "S6",
                                "S7",
                                "S8",
                                "SL-Klasse",
                                "SLR McLaren",
                                "SLS AMG",
                                "SQ5",
                                "SQ7",
                                "Safrane",
                                "Santa Fe",
                                "Santana",
                                "Saxo",
                                "Scenic E-Tech",
                                "Scirocco",
                                "Scorpio",
                                "Scoupe",
                                "Scénic",
                                "Senator",
                                "Sephia II",
                                "Sephia",
                                "Serena",
                                "Serie 1",
                                "Serie 2 Active Tourer",
                                "Serie 2 Gran Tourer",
                                "Serie 2",
                                "Serie 3",
                                "Serie 4",
                                "Serie 5",
                                "Serie 6",
                                "Serie 7",
                                "Serie 8",
                                "Sharan",
                                "Shuma",
                                "Sierra",
                                "Signum",
                                "Sintra",
                                "Sonata FL",
                                "Sonata",
                                "Sorento",
                                "Soul EV",
                                "Soul",
                                "Spacetourer",
                                "Speedster",
                                "Spider",
                                "Sportage",
                                "Sprinter",
                                "Staria",
                                "Stinger",
                                "Stonic",
                                "StreetKa",
                                "Sunny",
                                "Supra",
                                "Symbioz",
                                "T-Cross",
                                "T-Roc",
                                "TT RS",
                                "TT",
                                "TTS",
                                "TUCSON",
                                "Taigo",
                                "Talisman",
                                "Taro",
                                "Tarraco",
                                "Tayron",
                                "Terra",
                                "Terracan",
                                "Terrano II",
                                "Terrano",
                                "Tigra",
                                "Tiguan Allspace",
                                "Tiguan",
                                "Tiida",
                                "Toledo",
                                "Touareg",
                                "Touran",
                                "Tourneo Connect",
                                "Tourneo Courier",
                                "Tourneo Custom",
                                "Townstar",
                                "Trade",
                                "Trafic E-Tech",
                                "Trafic",
                                "Trajet",
                                "Transit Connect",
                                "Transit Courier",
                                "Transit Custom",
                                "Transit",
                                "Transporter",
                                "Traveller",
                                "Twingo E-Tech",
                                "Twingo",
                                "Twizy",
                                "Urban Cruiser",
                                "V8",
                                "Vaneo",
                                "Vanette Cargo",
                                "Vanette E",
                                "Vanette",
                                "Vectra",
                                "Vel Satis",
                                "Veloster",
                                "Venga",
                                "Vento",
                                "Verso",
                                "Viano",
                                "Visa",
                                "Vito",
                                "Vivaro Electric",
                                "Vivaro",
                                "Vivaro-e",
                                "Wind",
                                "X-TRAIL",
                                "X1",
                                "X2",
                                "X3",
                                "X4",
                                "X5",
                                "X6",
                                "X7",
                                "XCeed",
                                "XG",
                                "XM",
                                "Xantia",
                                "Xsara Picasso",
                                "Xsara",
                                "Yaris Cross",
                                "Yaris Verso",
                                "Yaris",
                                "Z1",
                                "Z3",
                                "Z4",
                                "Z8",
                                "ZOE",
                                "ZX",
                                "Zafira Electric",
                                "Zafira Life",
                                "Zafira Tourer",
                                "Zafira",
                                "Zafira-e Life",
                                "cee'd Sportswagon",
                                "cee'd Sporty Wagon",
                                "e-2008",
                                "e-208",
                                "e-Boxer",
                                "e-Expert",
                                "e-NV200 EVALIA",
                                "e-NV200",
                                "e-Niro",
                                "e-Partner",
                                "e-Rifter",
                                "e-Soul",
                                "e-Traveller",
                                "e-tron GT",
                                "e-tron Sportback",
                                "e-tron",
                                "e-up!",
                                "i10",
                                "i20 Active",
                                "i20",
                                "i3",
                                "i30",
                                "i4",
                                "i40",
                                "i5",
                                "i7",
                                "i8",
                                "i800",
                                "iQ",
                                "iX",
                                "iX1",
                                "iX3",
                                "ion",
                                "ix2",
                                "ix20",
                                "ix35",
                                "ix55",
                                "k2500",
                                "pro_cee'd GT",
                                "pro_cee'd",
                                "up!",
                                "Ë-Jumper",
                                "ë-Berlingo",
                                "ë-C3 Aircross",
                                "ë-C3 Comercial",
                                "ë-C3",
                                "ë-C4",
                                "ë-Jumpy",
                                "ë-Spacetourer",
                                "ëC4 X"
                            ],
                            "enumTitles": [
                                "100 NX",
                                "100",
                                "1007",
                                "100D",
                                "106",
                                "107",
                                "108",
                                "140D",
                                "180D",
                                "190",
                                "200 SX",
                                "200",
                                "2008",
                                "205",
                                "206 +",
                                "206 SW",
                                "206",
                                "207 +",
                                "207",
                                "208 XAD",
                                "208",
                                "208D",
                                "210D",
                                "220",
                                "230",
                                "260",
                                "280",
                                "2CV",
                                "300 ZX",
                                "300",
                                "3008 Hybrid",
                                "3008 Plug-in Hybrid",
                                "3008",
                                "306",
                                "307 SW",
                                "307",
                                "308",
                                "308D",
                                "309",
                                "310D",
                                "350Z",
                                "370Z",
                                "4 E-Tech",
                                "400",
                                "4007",
                                "4008",
                                "405",
                                "406",
                                "407 SW",
                                "407",
                                "408",
                                "420",
                                "4Runner",
                                "5 E-Tech",
                                "5",
                                "500",
                                "5008 Hybrid",
                                "5008 Plug-in Hybrid",
                                "5008",
                                "505",
                                "508 Hybrid",
                                "508",
                                "600",
                                "604",
                                "605",
                                "607",
                                "80",
                                "806",
                                "807",
                                "90",
                                "A1",
                                "A2",
                                "A3",
                                "A4 Allroad Quattro",
                                "A4",
                                "A5",
                                "A6 allroad quattro",
                                "A6 e-tron",
                                "A6",
                                "A7",
                                "A8",
                                "ALTEA",
                                "AMG GT",
                                "AMI",
                                "AX",
                                "Accent",
                                "Adam",
                                "Agila",
                                "Alhambra",
                                "Allroad Quattro",
                                "Almera Tino",
                                "Almera",
                                "Alpine",
                                "Altea Freetrack",
                                "Altea XL",
                                "Amarok",
                                "Ampera",
                                "Antara",
                                "Ariya",
                                "Arkana",
                                "Arona",
                                "Arosa",
                                "Arteon",
                                "Ascona",
                                "Astra Electric",
                                "Astra PHEV",
                                "Astra",
                                "Ateca",
                                "Atos Prime",
                                "Atos",
                                "Auris",
                                "Austral",
                                "Avantime",
                                "Avensis Verso",
                                "Avensis",
                                "Aygo X Cross",
                                "Aygo",
                                "B-MAX",
                                "BX",
                                "BZ4X",
                                "Bayon",
                                "Beetle",
                                "Berlingo First",
                                "Berlingo",
                                "Besta",
                                "Bipper",
                                "Bluebird",
                                "Bora",
                                "Boxer",
                                "Bronco",
                                "C-Crosser",
                                "C-Elysée",
                                "C-HR",
                                "C-Max",
                                "C-Zero",
                                "C1",
                                "C15",
                                "C2",
                                "C25",
                                "C3 Aircross",
                                "C3 Origin",
                                "C3 Picasso",
                                "C3 Pluriel",
                                "C3",
                                "C4 Aircross",
                                "C4 Cactus",
                                "C4 Picasso",
                                "C4 Sedán",
                                "C4 Spacetourer",
                                "C4 X",
                                "C4",
                                "C5 Aircross Hybrid",
                                "C5 Aircross",
                                "C5 X",
                                "C5",
                                "C6",
                                "C8",
                                "CAMION",
                                "CC",
                                "CLA",
                                "CLE",
                                "CLS",
                                "CUBE",
                                "CX",
                                "Cabrio",
                                "Cabriolet",
                                "Cabstar E",
                                "Cabstar",
                                "Caddy",
                                "Calibra",
                                "California",
                                "Camry",
                                "Capri",
                                "Captur",
                                "Caravelle",
                                "Carens",
                                "Carina E",
                                "Carnival",
                                "Ceed Tourer",
                                "Ceed",
                                "Celica",
                                "Cerato",
                                "Citan",
                                "Clarus",
                                "Clase A",
                                "Clase B",
                                "Clase C",
                                "Clase CL",
                                "Clase CLA",
                                "Clase CLC",
                                "Clase CLK",
                                "Clase CLS",
                                "Clase E",
                                "Clase G",
                                "Clase GL",
                                "Clase GLA",
                                "Clase GLC",
                                "Clase GLE Coupé",
                                "Clase GLE",
                                "Clase GLK",
                                "Clase GLS",
                                "Clase M",
                                "Clase R",
                                "Clase S",
                                "Clase SL R129",
                                "Clase SL",
                                "Clase SLC",
                                "Clase SLK",
                                "Clase T",
                                "Clase V",
                                "Clase X",
                                "Clio 4",
                                "Clio Campus",
                                "Clio III",
                                "Clio",
                                "Combo Electric",
                                "Combo Life",
                                "Combo",
                                "Combo-e Life",
                                "Combo-e",
                                "Compact",
                                "Connect",
                                "Cordoba",
                                "Corolla Cross",
                                "Corolla Sedan",
                                "Corolla Verso",
                                "Corolla",
                                "Corrado",
                                "Corsa Electric",
                                "Corsa Van",
                                "Corsa",
                                "Corsa-e Van",
                                "Corsa-e",
                                "Cougar",
                                "Coupe",
                                "Courier",
                                "Crafter",
                                "Crossland X",
                                "Crossland",
                                "DS3",
                                "DS4",
                                "DS5",
                                "Dyna",
                                "E-3008",
                                "E-308",
                                "E-408",
                                "E-5008",
                                "E-C5 Aircross",
                                "E-Mehari",
                                "EQA",
                                "EQB",
                                "EQC",
                                "EQE SUV",
                                "EQE",
                                "EQS SUV",
                                "EQS",
                                "EQT",
                                "EQV",
                                "EV3",
                                "EV6",
                                "EV9",
                                "EVALIA",
                                "EcoSport",
                                "Edge",
                                "Elantra",
                                "Eos",
                                "Escort",
                                "Espace",
                                "Evasion",
                                "Exeo",
                                "Expert",
                                "Explorer EV",
                                "Explorer",
                                "Express",
                                "Fiesta Van",
                                "Fiesta",
                                "Fluence",
                                "Focus C-MAX",
                                "Focus",
                                "Fox",
                                "Frontera Electric",
                                "Frontera",
                                "Fuego",
                                "Fusion",
                                "GLA",
                                "GLB",
                                "GLC Coupé",
                                "GLC",
                                "GLE Coupé",
                                "GLE",
                                "GLS",
                                "GR Supra",
                                "GR Yaris",
                                "GR86",
                                "GSA",
                                "GT",
                                "GT-R",
                                "GT86",
                                "GTC",
                                "Galaxy",
                                "Genesis",
                                "Getz",
                                "Golf Plus",
                                "Golf Sportsvan",
                                "Golf",
                                "Granada",
                                "Grand C-Max",
                                "Grand C4 Picasso",
                                "Grand C4 Spacetourer",
                                "Grand California",
                                "Grand Espace",
                                "Grand Kangoo Combi",
                                "Grand Modus",
                                "Grand Santa Fe",
                                "Grand Scénic",
                                "Grand Tourneo Connect",
                                "Grand Tourneo Custom",
                                "Grandeur",
                                "Grandland PHEV",
                                "Grandland X PHEV",
                                "Grandland X",
                                "Grandland",
                                "H-1 Travel",
                                "H-1 Van",
                                "H-1",
                                "H100",
                                "H350",
                                "Hiace",
                                "Highlander",
                                "Hilux",
                                "Holidays",
                                "ID. BUZZ",
                                "ID.3",
                                "ID.4",
                                "ID.5",
                                "ID.7",
                                "IONIQ 5",
                                "IONIQ 6",
                                "IONIQ 9",
                                "IONIQ",
                                "Ibiza",
                                "Inca",
                                "Insignia",
                                "Inster",
                                "Interstar",
                                "J5",
                                "JUKE",
                                "Jetta",
                                "Joice",
                                "Jumper",
                                "Jumpy",
                                "K2500 Frontier",
                                "KA",
                                "Ka+",
                                "Kadett",
                                "Kadjar",
                                "Kangoo Combi E-Tech",
                                "Kangoo Combi",
                                "Kangoo Express",
                                "Kangoo Furgón Compact",
                                "Kangoo Furgón E-Tech",
                                "Kangoo Furgón",
                                "Kangoo Z.E.",
                                "Kangoo",
                                "Karl",
                                "Koleos",
                                "Kona",
                                "Kubistar",
                                "Kuga",
                                "LEAF",
                                "LNA",
                                "LT",
                                "Laguna",
                                "Land Cruiser 100",
                                "Land Cruiser 200",
                                "Land Cruiser 80",
                                "Land Cruiser 90",
                                "Land Cruiser",
                                "Lantra",
                                "Latitude",
                                "León",
                                "Lupo",
                                "MR2",
                                "Magentis",
                                "Malaga",
                                "Manta",
                                "Marbella",
                                "Mascott",
                                "Master E-Tech",
                                "Master Propulsión",
                                "Master Z.E.",
                                "Master",
                                "Matrix",
                                "Maverick",
                                "Maxima QX",
                                "Maxima",
                                "Maxity",
                                "Megane E-Tech",
                                "Mercedes-AMG GT 4-Puertas Coupé",
                                "Mercedes-AMG GT Coupé",
                                "Mercedes-AMG GT",
                                "Mercedes-AMG SL",
                                "Mercedes-Maybach SL",
                                "Meriva",
                                "Micra",
                                "Mii",
                                "Mirai",
                                "Modus",
                                "Mokka X",
                                "Mokka",
                                "Mokka-e",
                                "Mondeo",
                                "Monterey",
                                "Monza",
                                "Movano",
                                "Movano-e",
                                "Multivan",
                                "Murano",
                                "Mustang Mach-E",
                                "Mustang",
                                "Mégane",
                                "NOTE",
                                "NP300 Navara",
                                "NP300 Pick Up",
                                "NT400 Cabstar",
                                "NT400",
                                "NV200 EVALIA",
                                "NV200",
                                "NV250",
                                "NV300",
                                "NV400",
                                "Navara",
                                "Nemo",
                                "Nevada",
                                "New Beetle",
                                "Nexo",
                                "Niro Hïbrido Enchufable",
                                "Niro PHEV",
                                "Niro",
                                "Omega",
                                "Opirus",
                                "Optima GT",
                                "Optima Hïbrido Enchufable",
                                "Optima PHEV",
                                "Optima SW GT",
                                "Optima SW Hïbrido Enchufable",
                                "Optima SW PHEV",
                                "Optima SW",
                                "Optima",
                                "Orion",
                                "PULSAR",
                                "PV5",
                                "Partner Origin",
                                "Partner",
                                "Paseo",
                                "Passat CC",
                                "Passat",
                                "Pathfinder",
                                "Patrol GR",
                                "Patrol",
                                "Phaeton",
                                "Picanto",
                                "Pick-up",
                                "Picnic",
                                "Pixo",
                                "Polo",
                                "Pony",
                                "Prairie",
                                "Pregio",
                                "Previa",
                                "Pride",
                                "Primastar",
                                "Primera",
                                "Prius",
                                "Prius+",
                                "ProCeed",
                                "Proace City Verso",
                                "Proace City",
                                "Proace Max",
                                "Proace Verso",
                                "Proace",
                                "Probe",
                                "Puma",
                                "Q2",
                                "Q3 Sportback",
                                "Q3",
                                "Q4 Sportback e-tron",
                                "Q4 e-tron",
                                "Q5 SPORTBACK",
                                "Q5",
                                "Q6 Sportback e-tron",
                                "Q6 e-tron",
                                "Q7",
                                "Q8 Sportback e-tron",
                                "Q8 e-tron Sportback",
                                "Q8 e-tron",
                                "Q8",
                                "QASHQAI",
                                "QASHQAI+2",
                                "R11",
                                "R18",
                                "R19",
                                "R21",
                                "R25",
                                "R4",
                                "R5",
                                "R6",
                                "R8",
                                "R9",
                                "RCZ",
                                "RS Q3",
                                "RS2",
                                "RS3",
                                "RS4",
                                "RS5",
                                "RS6",
                                "RS7",
                                "Rafale",
                                "Ranger",
                                "Rav4",
                                "Rekord",
                                "Rifter",
                                "Rio",
                                "Ronda",
                                "S-MAX",
                                "S1",
                                "S2",
                                "S3",
                                "S4",
                                "S5",
                                "S6",
                                "S7",
                                "S8",
                                "SL-Klasse",
                                "SLR McLaren",
                                "SLS AMG",
                                "SQ5",
                                "SQ7",
                                "Safrane",
                                "Santa Fe",
                                "Santana",
                                "Saxo",
                                "Scenic E-Tech",
                                "Scirocco",
                                "Scorpio",
                                "Scoupe",
                                "Scénic",
                                "Senator",
                                "Sephia II",
                                "Sephia",
                                "Serena",
                                "Serie 1",
                                "Serie 2 Active Tourer",
                                "Serie 2 Gran Tourer",
                                "Serie 2",
                                "Serie 3",
                                "Serie 4",
                                "Serie 5",
                                "Serie 6",
                                "Serie 7",
                                "Serie 8",
                                "Sharan",
                                "Shuma",
                                "Sierra",
                                "Signum",
                                "Sintra",
                                "Sonata FL",
                                "Sonata",
                                "Sorento",
                                "Soul EV",
                                "Soul",
                                "Spacetourer",
                                "Speedster",
                                "Spider",
                                "Sportage",
                                "Sprinter",
                                "Staria",
                                "Stinger",
                                "Stonic",
                                "StreetKa",
                                "Sunny",
                                "Supra",
                                "Symbioz",
                                "T-Cross",
                                "T-Roc",
                                "TT RS",
                                "TT",
                                "TTS",
                                "TUCSON",
                                "Taigo",
                                "Talisman",
                                "Taro",
                                "Tarraco",
                                "Tayron",
                                "Terra",
                                "Terracan",
                                "Terrano II",
                                "Terrano",
                                "Tigra",
                                "Tiguan Allspace",
                                "Tiguan",
                                "Tiida",
                                "Toledo",
                                "Touareg",
                                "Touran",
                                "Tourneo Connect",
                                "Tourneo Courier",
                                "Tourneo Custom",
                                "Townstar",
                                "Trade",
                                "Trafic E-Tech",
                                "Trafic",
                                "Trajet",
                                "Transit Connect",
                                "Transit Courier",
                                "Transit Custom",
                                "Transit",
                                "Transporter",
                                "Traveller",
                                "Twingo E-Tech",
                                "Twingo",
                                "Twizy",
                                "Urban Cruiser",
                                "V8",
                                "Vaneo",
                                "Vanette Cargo",
                                "Vanette E",
                                "Vanette",
                                "Vectra",
                                "Vel Satis",
                                "Veloster",
                                "Venga",
                                "Vento",
                                "Verso",
                                "Viano",
                                "Visa",
                                "Vito",
                                "Vivaro Electric",
                                "Vivaro",
                                "Vivaro-e",
                                "Wind",
                                "X-TRAIL",
                                "X1",
                                "X2",
                                "X3",
                                "X4",
                                "X5",
                                "X6",
                                "X7",
                                "XCeed",
                                "XG",
                                "XM",
                                "Xantia",
                                "Xsara Picasso",
                                "Xsara",
                                "Yaris Cross",
                                "Yaris Verso",
                                "Yaris",
                                "Z1",
                                "Z3",
                                "Z4",
                                "Z8",
                                "ZOE",
                                "ZX",
                                "Zafira Electric",
                                "Zafira Life",
                                "Zafira Tourer",
                                "Zafira",
                                "Zafira-e Life",
                                "cee'd Sportswagon",
                                "cee'd Sporty Wagon",
                                "e-2008",
                                "e-208",
                                "e-Boxer",
                                "e-Expert",
                                "e-NV200 EVALIA",
                                "e-NV200",
                                "e-Niro",
                                "e-Partner",
                                "e-Rifter",
                                "e-Soul",
                                "e-Traveller",
                                "e-tron GT",
                                "e-tron Sportback",
                                "e-tron",
                                "e-up!",
                                "i10",
                                "i20 Active",
                                "i20",
                                "i3",
                                "i30",
                                "i4",
                                "i40",
                                "i5",
                                "i7",
                                "i8",
                                "i800",
                                "iQ",
                                "iX",
                                "iX1",
                                "iX3",
                                "ion",
                                "ix2",
                                "ix20",
                                "ix35",
                                "ix55",
                                "k2500",
                                "pro_cee'd GT",
                                "pro_cee'd",
                                "up!",
                                "Ë-Jumper",
                                "ë-Berlingo",
                                "ë-C3 Aircross",
                                "ë-C3 Comercial",
                                "ë-C3",
                                "ë-C4",
                                "ë-Jumpy",
                                "ë-Spacetourer",
                                "ëC4 X"
                            ]
                        },
                        "default": []
                    },
                    "province": {
                        "title": "Provincia",
                        "enum": [
                            "",
                            "andalucia",
                            "aragon",
                            "asturias",
                            "illesbalears",
                            "canarias",
                            "cantabria",
                            "castillalamancha",
                            "castillayleon",
                            "cataluna",
                            "comunitatvalenciana",
                            "extremadura",
                            "galicia",
                            "madrid",
                            "murcia",
                            "navarra",
                            "euskadi",
                            "rioja",
                            "ceutaymelilla"
                        ],
                        "type": "string",
                        "description": "Provincia de España",
                        "default": "cataluna"
                    },
                    "price": {
                        "title": "Precio",
                        "enum": [
                            "",
                            "1000",
                            "2000",
                            "3000",
                            "4000",
                            "5000",
                            "6000",
                            "7000",
                            "8000",
                            "9000",
                            "10000",
                            "11000",
                            "12000",
                            "13000",
                            "14000",
                            "15000",
                            "16000",
                            "17000",
                            "18000",
                            "19000",
                            "20000",
                            "21000",
                            "22000",
                            "23000",
                            "24000",
                            "25000",
                            "30000",
                            "35000",
                            "40000",
                            "50000",
                            "60000",
                            "70000"
                        ],
                        "type": "string",
                        "description": "Precio hasta",
                        "default": ""
                    },
                    "maxItems": {
                        "title": "Número máximo de resultados",
                        "minimum": 1,
                        "maximum": 1200,
                        "type": "integer",
                        "description": "Número máximo de resultados a obtener por marca. Si seleccionas múltiples marcas, el número total de resultados puede ser mayor que este valor.",
                        "default": 60
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
