# Leboncoin Used Car Price Scraper

**Use case:** 

Extract detailed used car ads from leboncoin.fr, including price, mileage, fuel type, and seller info. Filter results by brand or budget.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.leboncoin.fr/recherche?category=2&text=citroen&kst=k&fuel=2&price_max=10000"
    }
  ],
  "maxResults": 100,
  "fetchAdDetails": false
}
```

## Output

```json
{
  "thumb_url": {
    "label": "Photo",
    "format": "image"
  },
  "list_id": {
    "label": "Ad ID",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "subject": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price (€)",
    "format": "number"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "zipcode": {
    "label": "ZIP",
    "format": "text"
  },
  "department_id": {
    "label": "Dept.",
    "format": "text"
  },
  "category_name": {
    "label": "Category",
    "format": "text"
  },
  "poster_type": {
    "label": "Seller Type",
    "format": "text"
  },
  "seller_name": {
    "label": "Seller",
    "format": "text"
  },
  "image_count": {
    "label": "Photos",
    "format": "number"
  },
  "first_publication_date": {
    "label": "Published",
    "format": "date"
  },
  "index_date": {
    "label": "Last Updated",
    "format": "date"
  },
  "url": {
    "label": "Ad URL",
    "format": "link"
  }
}
```

## About this Actor

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