# Toyota Camry AutoTempest Scraper

**Use case:** 

Scrape Toyota Camry AutoTempest listings near New York with prices, mileage, VINs, dealers, images, and listing URLs.

## Input

```json
{
  "make": "toyota",
  "model": "camry",
  "zip": "10001",
  "radius": 100,
  "startUrls": [
    {
      "url": "https://www.autotempest.com/results?make=toyota&model=camry&zip=10001&radius=100"
    }
  ],
  "maxItems": 100,
  "sort": "best_match",
  "includePriceHistory": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "trim": {
    "label": "Trim",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "mileage": {
    "label": "Mileage",
    "format": "number"
  },
  "vin": {
    "label": "VIN",
    "format": "text"
  },
  "dealerName": {
    "label": "Dealer / seller",
    "format": "text"
  },
  "sellerType": {
    "label": "Seller type",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "distanceMiles": {
    "label": "Distance (mi)",
    "format": "number"
  },
  "sourceMarketplace": {
    "label": "Source",
    "format": "text"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image URL",
    "format": "link"
  },
  "details": {
    "label": "Details",
    "format": "text"
  },
  "vehicleTitle": {
    "label": "Vehicle title",
    "format": "text"
  },
  "dateListed": {
    "label": "Date listed",
    "format": "date"
  },
  "searchUrl": {
    "label": "Search URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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