# Scrape cars by price on Autovit.ro

**Use case:** 

Scrape Autovit.ro car listings filtered by maximum price. Structured Romanian car marketplace data. Pay per result.

## Input

```json
{
  "make": "bmw",
  "model": "Seria 3",
  "priceTo": 20000,
  "yearFrom": 2018,
  "mileageTo": 100000,
  "sortBy": "newest",
  "fetchDetails": false,
  "requestDelayMs": 1000,
  "respectRobotsTxt": true,
  "startUrls": [],
  "maxItems": 5
}
```

## Output

```json
{
  "id": {
    "label": "Listing ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "version": {
    "label": "Version/Trim",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "priceAmount": {
    "label": "Price",
    "format": "number"
  },
  "priceCurrency": {
    "label": "Currency",
    "format": "text"
  },
  "mileage": {
    "label": "Mileage",
    "format": "number"
  },
  "mileageUnit": {
    "label": "Mileage Unit",
    "format": "text"
  },
  "fuelType": {
    "label": "Fuel Type",
    "format": "text"
  },
  "engineCapacityCc": {
    "label": "Engine Capacity (cc)",
    "format": "number"
  },
  "enginePowerHp": {
    "label": "Engine Power (HP)",
    "format": "number"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "region": {
    "label": "Region",
    "format": "text"
  },
  "sellerName": {
    "label": "Seller Name",
    "format": "text"
  },
  "sellerType": {
    "label": "Seller Type",
    "format": "text"
  },
  "bodyType": {
    "label": "Body Type",
    "format": "text"
  },
  "transmissionType": {
    "label": "Transmission",
    "format": "text"
  },
  "driveType": {
    "label": "Drive Type",
    "format": "text"
  },
  "color": {
    "label": "Color",
    "format": "text"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "link"
  },
  "imageUrls": {
    "label": "Images",
    "format": "array"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "equipment": {
    "label": "Equipment",
    "format": "array"
  },
  "details": {
    "label": "All Details",
    "format": "object"
  },
  "createdAt": {
    "label": "Listed At",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  },
  "contentHash": {
    "label": "Content Hash",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Autovit.ro Car Scraper](https://apify.com/unfenced-group/autovit-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/unfenced-group/autovit-scraper) to learn more, explore other use cases, and run it yourself.