# Extract one Coches.net used-car listing

**Use case:** 

Parse a public Coches.net vehicle URL into structured price, mileage, engine, body, transmission, seller, description, and image fields.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.coches.net/toyota-auris-130-active-5p-gasolina-2015-en-madrid-71077419-covo.aspx"
    }
  ],
  "maxItems": 1,
  "maxPagesPerUrl": 1,
  "includeDetails": false
}
```

## Output

```json
{
  "listingId": {
    "label": "Ad ID",
    "format": "string"
  },
  "title": {
    "label": "Vehicle",
    "format": "string"
  },
  "price": {
    "label": "Cash price",
    "format": "integer"
  },
  "year": {
    "label": "Year",
    "format": "integer"
  },
  "mileageKm": {
    "label": "Mileage (km)",
    "format": "integer"
  },
  "fuel": {
    "label": "Fuel",
    "format": "string"
  },
  "horsepower": {
    "label": "Horsepower (CV)",
    "format": "integer"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "sellerType": {
    "label": "Seller type",
    "format": "string"
  },
  "detailEnriched": {
    "label": "Detail enriched",
    "format": "boolean"
  },
  "url": {
    "label": "Vehicle URL",
    "format": "string"
  }
}
```

## About this Actor

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