# real-estate-market-snapshot

**Use case:** 

Scrape a bounded Paris real-estate search URL with detail enrichment.

## Input

```json
{
  "queries": [
    "velo"
  ],
  "startUrls": [
    {
      "url": "https://www.leboncoin.fr/recherche?category=9&locations=Paris__48.856614_2.352221_10000"
    }
  ],
  "maxItems": 50,
  "maxPagesPerQuery": 2,
  "includeDetails": true,
  "failOnNoResults": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "string"
  },
  "priceText": {
    "label": "Price text",
    "format": "string"
  },
  "priceValue": {
    "label": "Price value",
    "format": "number"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "locationText": {
    "label": "Location",
    "format": "string"
  },
  "sellerName": {
    "label": "Seller",
    "format": "string"
  },
  "postedAtText": {
    "label": "Posted text",
    "format": "string"
  },
  "query": {
    "label": "Query",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "string"
  },
  "detailStatus": {
    "label": "Detail status",
    "format": "string"
  },
  "missingFields": {
    "label": "Missing fields",
    "format": "array"
  }
}
```

## About this Actor

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