# Drom.ru Toyota Corolla price scraper

**Use case:** 

Scrape Drom.ru Toyota Corolla listings with year and price filters for car pricing research, inventory analysis, and resale comparisons.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://auto.drom.ru/toyota/corolla/?minyear=2015&maxprice=2000000"
    }
  ],
  "region": "",
  "make": "toyota",
  "model": "corolla",
  "minPrice": 0,
  "maxPrice": 1500000,
  "minYear": 2015,
  "maxResults": 50,
  "maxPages": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "listingId": {
    "label": "Listing ID",
    "format": "text"
  },
  "url": {
    "label": "Listing URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "mileageKm": {
    "label": "Mileage (km)",
    "format": "number"
  },
  "engine": {
    "label": "Engine",
    "format": "text"
  },
  "fuel": {
    "label": "Fuel",
    "format": "text"
  },
  "transmission": {
    "label": "Transmission",
    "format": "text"
  },
  "drivetrain": {
    "label": "Drivetrain",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "sellerName": {
    "label": "Seller",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "imageUrls": {
    "label": "Image URLs",
    "format": "array"
  },
  "postedAtText": {
    "label": "Posted",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source search URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Drom.ru Car Marketplace Scraper](https://apify.com/automation-lab/drom-ru-car-marketplace-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/drom-ru-car-marketplace-scraper) to learn more, explore other use cases, and run it yourself.