# Cars.com Ford F-150 Dallas trucks

**Use case:** 

Scrape Cars.com Ford F-150 used truck listings near Dallas with price, mileage, VIN validation, dealer details, photos, and clean JSON.

## Input

```json
{
  "make": "Ford",
  "model": "F-150",
  "yearMin": 2019,
  "yearMax": 2026,
  "priceMax": 0,
  "mileageMax": 0,
  "zip": "75201",
  "searchRadius": 50,
  "condition": "USED",
  "maxItems": 25,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "year": {
    "label": "Year",
    "format": "integer"
  },
  "make": {
    "label": "Make",
    "format": "string"
  },
  "model": {
    "label": "Model",
    "format": "string"
  },
  "trim": {
    "label": "Trim",
    "format": "string"
  },
  "priceUsd": {
    "label": "Price USD (numeric)",
    "format": "integer"
  },
  "mileageMiles": {
    "label": "Mileage miles (numeric)",
    "format": "integer"
  },
  "vin": {
    "label": "VIN",
    "format": "string"
  },
  "vinValid": {
    "label": "VIN check-digit valid",
    "format": "boolean"
  },
  "dealer": {
    "label": "Dealer",
    "format": "object"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "string"
  },
  "listedAt": {
    "label": "Listed at (ISO 8601)",
    "format": "string"
  }
}
```

## About this Actor

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