# Get car performance data by make and model

**Use case:** 

Measured performance for specific car models: 0-100 km/h, top speed, quarter mile and power-to-weight, from multiple sources. By Mr Bridge.

## Input

```json
{
  "confirmRights": true,
  "inputMode": "models",
  "brand": "Audi",
  "models": [
    "Porsche 911",
    "Audi RS3",
    "BMW M3"
  ],
  "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"
  },
  "yearStart": {
    "label": "Production year start",
    "format": "integer"
  },
  "powerHp": {
    "label": "Power (hp)",
    "format": "number"
  },
  "powerToWeightHpPerT": {
    "label": "Power to weight (hp/t)",
    "format": "number"
  },
  "zeroToHundredS": {
    "label": "0-100 km/h (s)",
    "format": "number"
  },
  "zeroToSixtyMphS": {
    "label": "0-60 mph (s)",
    "format": "number"
  },
  "quarterMileS": {
    "label": "Quarter mile (s)",
    "format": "number"
  },
  "topSpeedKmh": {
    "label": "Top speed (km/h)",
    "format": "number"
  },
  "sources": {
    "label": "Sources",
    "format": "array"
  }
}
```

## 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.