# Scrape technical specs for a list of car models

**Use case:** 

Give a list of car models and get full technical specs per engine variant: engine, transmission, dimensions and economy, in one dataset. By Mr Bridge.

## Input

```json
{
  "confirmRights": true,
  "inputMode": "models",
  "brand": "Audi",
  "models": [
    "Volkswagen Golf",
    "Ford Focus"
  ],
  "maxItems": 500
}
```

## Output

```json
{
  "make": {
    "label": "Make",
    "format": "string"
  },
  "model": {
    "label": "Model",
    "format": "string"
  },
  "generation": {
    "label": "Generation",
    "format": "string"
  },
  "modification": {
    "label": "Modification / Variant",
    "format": "string"
  },
  "canonicalVariantId": {
    "label": "Canonical variant ID",
    "format": "string"
  },
  "yearStart": {
    "label": "Production year start",
    "format": "integer"
  },
  "yearEnd": {
    "label": "Production year end",
    "format": "integer"
  },
  "fuelType": {
    "label": "Fuel type",
    "format": "string"
  },
  "engineCc": {
    "label": "Engine displacement (cc)",
    "format": "number"
  },
  "powerHp": {
    "label": "Power (hp)",
    "format": "number"
  },
  "powerKw": {
    "label": "Power (kW)",
    "format": "number"
  },
  "torqueNm": {
    "label": "Torque (Nm)",
    "format": "number"
  },
  "zeroToHundredS": {
    "label": "0-100 km/h (s)",
    "format": "number"
  },
  "topSpeedKmh": {
    "label": "Top speed (km/h)",
    "format": "number"
  },
  "cylinders": {
    "label": "Cylinders",
    "format": "integer"
  },
  "valves": {
    "label": "Valves",
    "format": "integer"
  },
  "compression": {
    "label": "Compression ratio",
    "format": "string"
  },
  "transmission": {
    "label": "Transmission",
    "format": "string"
  },
  "gears": {
    "label": "Gears",
    "format": "integer"
  },
  "driveType": {
    "label": "Drive type",
    "format": "string"
  },
  "bodyType": {
    "label": "Body type",
    "format": "string"
  },
  "doors": {
    "label": "Doors",
    "format": "integer"
  },
  "seats": {
    "label": "Seats",
    "format": "integer"
  },
  "lengthMm": {
    "label": "Length (mm)",
    "format": "number"
  },
  "widthMm": {
    "label": "Width (mm)",
    "format": "number"
  },
  "heightMm": {
    "label": "Height (mm)",
    "format": "number"
  },
  "wheelbaseMm": {
    "label": "Wheelbase (mm)",
    "format": "number"
  },
  "curbWeightKg": {
    "label": "Curb weight (kg)",
    "format": "number"
  },
  "fuelConsumptionL100": {
    "label": "Fuel consumption (L/100km)",
    "format": "number"
  },
  "co2GKm": {
    "label": "CO2 emissions (g/km)",
    "format": "number"
  },
  "sources": {
    "label": "Sources",
    "format": "array"
  },
  "conflicts": {
    "label": "Conflicts",
    "format": "array"
  },
  "dedupeConfidence": {
    "label": "Dedupe confidence",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Car Data Scraper: specs, performance & technical data](https://apify.com/mrbridge/car-data-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/mrbridge/car-data-scraper) to learn more, explore other use cases, and run it yourself.