# Scrape used cars in Australia

**Use case:** 

Extract used car listings from Carsales.com.au across Australia. Structured data with prices, mileage, and year. Pay per result.

## Input

```json
{
  "startUrls": [],
  "condition": "used",
  "make": "Toyota",
  "model": "",
  "state": "",
  "bodyStyle": "",
  "fuelType": "",
  "transmission": "",
  "colour": "",
  "cylinders": "0",
  "doors": "0",
  "sellerType": "all",
  "postcode": "",
  "sortBy": "featured",
  "fetchDetails": false,
  "skipReposts": false,
  "requestDelayMs": 1500,
  "maxItems": 5
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "price": {
    "label": "Price (AUD)",
    "format": "number"
  },
  "odometer": {
    "label": "Odometer (km)",
    "format": "number"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "sellerType": {
    "label": "Seller",
    "format": "text"
  },
  "publishDate": {
    "label": "Listed",
    "format": "date"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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