# CarsForSale Honda Civic Scraper

**Use case:** 

Scrape used Honda Civic listings from CarsForSale. Export price, year, mileage, dealer and vehicle specs for pricing analysis.

## Input

```json
{
  "startUrl": "https://www.carsforsale.com/cars-for-sale/honda/civic/search",
  "maxItems": 25,
  "condition": "used",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image Url",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "trim": {
    "label": "Trim",
    "format": "text"
  },
  "mileage": {
    "label": "Mileage",
    "format": "number"
  },
  "vin": {
    "label": "Vin",
    "format": "text"
  },
  "stockNumber": {
    "label": "Stock Number",
    "format": "number"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "bodyStyle": {
    "label": "Body Style",
    "format": "text"
  },
  "transmission": {
    "label": "Transmission",
    "format": "text"
  },
  "drivetrain": {
    "label": "Drivetrain",
    "format": "text"
  },
  "fuelType": {
    "label": "Fuel Type",
    "format": "text"
  },
  "exteriorColor": {
    "label": "Exterior Color",
    "format": "text"
  },
  "interiorColor": {
    "label": "Interior Color",
    "format": "text"
  },
  "engineSize": {
    "label": "Engine Size",
    "format": "text"
  },
  "cylinders": {
    "label": "Cylinders",
    "format": "text"
  },
  "mpgCity": {
    "label": "Mpg City",
    "format": "number"
  },
  "mpgHighway": {
    "label": "Mpg Highway",
    "format": "number"
  },
  "dealerName": {
    "label": "Dealer Name",
    "format": "text"
  },
  "dealerPhone": {
    "label": "Dealer Phone",
    "format": "text"
  },
  "dealerAddress": {
    "label": "Dealer Address",
    "format": "text"
  },
  "dealerCity": {
    "label": "Dealer City",
    "format": "text"
  },
  "dealerState": {
    "label": "Dealer State",
    "format": "date"
  },
  "dealerZip": {
    "label": "Dealer Zip",
    "format": "text"
  },
  "dealerRating": {
    "label": "Dealer Rating",
    "format": "number"
  },
  "listingId": {
    "label": "Listing Id",
    "format": "text"
  },
  "daysOnMarket": {
    "label": "Days On Market",
    "format": "number"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "imageUrls": {
    "label": "Image Urls",
    "format": "array"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Cars For Sale Scraper](https://apify.com/parseforge/cars-for-sale-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/cars-for-sale-scraper) to learn more, explore other use cases, and run it yourself.