     [Blog](https://scrapfly.io/blog)   /  [python](https://scrapfly.io/blog/tag/python)   /  [How to Scrape Leboncoin.fr with Python (No API Needed)](https://scrapfly.io/blog/posts/how-to-scrape-leboncoin-marketplace-real-estate)   # How to Scrape Leboncoin.fr with Python (No API Needed)

 by [Mazen Ramadan](https://scrapfly.io/blog/author/mazen) Apr 28, 2026 264 min read [\#python](https://scrapfly.io/blog/tag/python) [\#scrapeguide](https://scrapfly.io/blog/tag/scrapeguide) 

 [  ](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fscrapfly.io%2Fblog%2Fposts%2Fhow-to-scrape-leboncoin-marketplace-real-estate "Share on LinkedIn")    

 

 

   

   **Web Scraping API — Anti-Bot Bypass**Bypass any anti-scraper system and automatically resolve JavaScript and fingerprint challenges.

 

 [ Learn More  ](https://scrapfly.io/products/web-scraping-api#features) [  Docs ](https://scrapfly.io/docs/scrape-api/getting-started#features) 

 

 

Leboncoin.fr has many million monthly visitors and no public API, but Leboncoin runs one of the most aggressive anti-bot stacks in French e-commerce. A plain Playwright script typically hits a CAPTCHA wall within seconds, and a raw `requests.get()` call rarely even reaches the listings page.

In this guide, we will walk through how to scrape Leboncoin.fr end to end using Python. We will cover Leboncoin's URL and page architecture, bypassing DataDome with [Scrapfly's ASP feature](https://scrapfly.io/web-scraping-api), extracting search results and individual ads through the `__NEXT_DATA__` hidden JSON, scraping non real estate categories like vehicles, exporting scraped data to JSON and CSV, and adding production grade retry logic.

## Key Takeaways

- Leboncoin has no public API, so the `__NEXT_DATA__` JSON embedded in every Next.js page is the cleanest extraction target.
- The same hidden JSON technique works across every Leboncoin category, including real estate, vehicles, electronics, and jobs.
- Leboncoin uses DataDome for anti-bot protection, and standard headless browsers or default requests sessions are detected almost immediately.
- Scrapfly's ASP feature handles TLS fingerprinting, proxy rotation, and CAPTCHA avoidance, which removes the most fragile part of the scraper.
- A complete Leboncoin scraper covers search pagination, ad detail pages, multi category support, JSON and CSV export, and retry logic with exponential backoff.

[**View Source Code**github.com/scrapfly/scrapfly-scrapers/tree/main/leboncoin-scraper](https://github.com/scrapfly/scrapfly-scrapers/tree/main/leboncoin-scraper)

**Get web scraping tips in your inbox**Trusted by 100K+ developers and 30K+ enterprises. Unsubscribe anytime.







## Why Scrape Leboncoin.fr?

Leboncoin.fr is France's largest classifieds marketplace, with roughly 30 million active listings and around 28 million unique monthly visitors. With no public API available to the public, scraping is the only way to access Leboncoin's catalog at scale for research, pricing, or monitoring projects.

The scale across categories is what makes Leboncoin a serious data target:

- **Real estate** (`ventes_immobilieres`, `locations`) with surface area, rooms, energy rating, and location fields.
- **Vehicles** (`voitures`, `motos`) with brand, model, year, mileage, fuel type, and transmission fields.
- **Electronics**, **furniture**, **fashion**, and **jobs** with category specific attributes and seller information.

Typical use cases that need this data include real estate price tracking across French departments, vehicle depreciation analysis, competitive pricing intelligence for resellers, and inventory monitoring for vertical aggregators. Every listing exposes the price, location, seller profile, images, and category specific attributes directly in the page payload, which keeps the downstream dataset clean.

With the data opportunity clear, the next step is to understand how Leboncoin structures pages before writing any scraping code.



## How Does Leboncoin.fr Structure Its Pages?

Leboncoin.fr is a Next.js application, which means every page ships with a `<script id="__NEXT_DATA__">` tag that contains the full server rendered JSON state. The scraping approach in this guide reads that JSON tag directly, so no CSS selectors or XPath expressions are needed to pull titles, prices, or attributes out of the rendered HTML.

### How Does Leboncoin's URL System Work Across Categories?

Leboncoin uses a small set of URL patterns that stay consistent across categories. Learning the URL shape up front makes the scraper easy to adapt from real estate to vehicles, electronics, or any other section of the site.

- **Search URL:** `https://www.leboncoin.fr/recherche?text=maison&category=9&page=1`
- **Ad URL:** `https://www.leboncoin.fr/ad/ventes_immobilieres/{ad_id}` for real estate, and `https://www.leboncoin.fr/ad/voitures/{ad_id}` for vehicles.
- **Legacy ad URL:** `https://www.leboncoin.fr/ventes_immobilieres/{ad_id}.htm`, which still resolves and is what the JSON `url` field typically returns.

The `category` query parameter controls which vertical the search hits, and the main codes worth remembering are `9` for real estate, `2` for vehicles, `17` for electronics, `19` for furniture, and `33` for jobs. Pagination is driven by the `page` parameter and the page size is fixed by Leboncoin, so the scraper only needs to increment `page` until the returned ads list is empty.

### Where Is the Hidden JSON Data in Leboncoin's Next.js Frontend?

The `__NEXT_DATA__` script tag sits near the bottom of the rendered HTML and contains the full props tree that React hydrated the page with. To inspect the tag, open Leboncoin in a browser, press `F12` to open DevTools, and search for `__NEXT_DATA__` in the Elements panel.

The JSON paths used by the scrapers in this guide are:

- **Search results:** `["props"]["pageProps"]["searchData"]["ads"]` is the current path, and older revisions of Leboncoin used `["props"]["pageProps"]["initialProps"]["searchData"]["ads"]`. If the primary path returns `None`, the scraper should fall back to the older one.
- **Ad detail:** `["props"]["pageProps"]["ad"]` holds the single ad object on listing detail pages.

Before shipping the scraper to production, verify these two paths against a fresh Leboncoin page by loading the HTML, extracting the `__NEXT_DATA__` content with `json.loads`, and printing the top level keys of `props.pageProps`. If Leboncoin renames a key during a redesign, the scraper only needs one path update rather than a rewrite of every selector.

For a deeper look at why JSON in HTML beats DOM scraping as a general pattern, the hidden web data guide below covers the full rationale.

[How to Scrape Hidden Web DataThe visible HTML doesn't always represent the whole dataset available on the page. In this article, we'll be taking a look at scraping of hidden web data. What is it and how can we scrape it using Python?](https://scrapfly.io/blog/posts/how-to-scrape-hidden-web-data)

With the page structure understood, the next section gets the Python environment ready.



## Project Setup

This Leboncoin scraper uses Python 3.9 or newer to take advantage of modern `asyncio` features and the typed `scrapfly-sdk` client. Two libraries cover everything the guide needs.

shell```shell
pip install scrapfly-sdk parsel
```



The `scrapfly-sdk` command line above installs the Scrapfly Python client, which handles requests, anti-bot bypass, and concurrent scraping in one package. [parsel](https://parsel.readthedocs.io/) is a lightweight CSS and XPath selector library that the code uses to pull the `__NEXT_DATA__` script tag out of each page.

Running the scraper asynchronously is what makes large Leboncoin runs practical, because [asyncio drastically increases web scraping speed](https://scrapfly.io/blog/posts/web-scraping-speed) when every request waits on the network.



[**Leboncoin Scraper Code**github.com/scrapfly/scrapfly-scrapers/tree/main/leboncoin-scraper](https://github.com/scrapfly/scrapfly-scrapers/tree/main/leboncoin-scraper)

With dependencies in place, the next section tackles the part that blocks most Leboncoin scrapers before they even reach the data.



## How to Bypass Leboncoin's Anti-Bot Protection with Scrapfly

Leboncoin uses DataDome for bot detection, and DataDome evaluates every incoming request against TLS and browser fingerprints, IP reputation, and behavioral signals rather than just user agent strings. A default `requests` session, a vanilla Playwright launch, and most headless browser stealth plugins are caught quickly, which is why most Leboncoin scrapers fail on the first page.

### What Anti-Bot System Does Leboncoin Use?

[DataDome](https://datadome.co/) is the primary anti-bot layer on Leboncoin, and public reports and Reddit threads about the unofficial `lbc` Python library confirm that French residential IPs and real browser fingerprints are needed even for moderate scraping volume. DataDome challenges typically look like a dedicated block page or an interstitial CAPTCHA hosted on a DataDome subdomain.

The three signals DataDome leans on the hardest are:

- **TLS or JA3 fingerprint**, which exposes default Python clients because the TLS handshake of `requests` or `httpx` does not match any real Chrome or Firefox build.
- **Browser fingerprint**, including `navigator` properties, WebGL output, and font lists that a stock headless browser leaks even with popular stealth patches.
- **IP reputation**, where datacenter ranges and non French geographies face stricter screening than French residential IPs.

### Why Do Headless Browsers Get Blocked on Leboncoin?

A plain headless browser gets blocked on Leboncoin because the browser fingerprint of a default Playwright or Puppeteer instance is detectably different from a real Chrome install, and DataDome already has signatures for the most common automation stacks. The example below shows how little it takes to trigger the block page.

python```python
from playwright.sync_api import sync_playwright

with sync_playwright() as playwright:
    browser = playwright.chromium.launch(headless=False)
    page = browser.new_page()
    page.goto("https://www.leboncoin.fr")
    page.screenshot(path="screenshot.png")
```



The Playwright snippet above launches a visible Chromium instance and navigates to Leboncoin's homepage. Even with `headless=False`, the resulting page is a DataDome challenge rather than the marketplace, because the browser still leaks automation telemetry that Leboncoin's anti-bot layer picks up.

The Scrapfly Web Scraping API solves this at the request layer by matching real browser TLS fingerprints, rotating through a residential proxy pool in France, and handling CAPTCHA challenges transparently. The minimal Scrapfly call that reaches Leboncoin reliably looks like this:

python```python
from scrapfly import ScrapeConfig, ScrapflyClient, ScrapeApiResponse

scrapfly = ScrapflyClient(key="Your Scrapfly API key")

api_response: ScrapeApiResponse = scrapfly.scrape(
    ScrapeConfig(
        url="https://www.leboncoin.fr",
        render_js=True,   # run the page through a cloud headless browser
        asp=True,         # enable anti scraping protection bypass
        country="FR",     # route the request through a French IP
    )
)
print(api_response.upstream_status_code)
"200"
```



The Scrapfly request above enables `asp=True` for DataDome bypass, `render_js=True` to execute the page JavaScript, and `country="FR"` to force a French exit IP. With a 200 response in hand, the scraper has the raw HTML and can focus on parsing rather than fighting the anti-bot layer.

[How to Bypass Anti-Bot Protection When Web ScrapingLearn how anti-bot systems detect scrapers and 5 universal bypass techniques including proxy rotation, fingerprinting, and fortified headless browsers.](https://scrapfly.io/blog/posts/how-to-bypass-anti-bot-protection-when-web-scraping)

With the anti-bot problem handled, the next section turns to extracting Leboncoin's search results.



## How to Scrape Leboncoin Search Results

The Leboncoin search scraper fetches a search URL through Scrapfly, pulls the `__NEXT_DATA__` script out of the HTML, and reads the ads array directly from the parsed JSON. Every search page, across every category, exposes the same structure, so one parsing function covers the entire surface.

### How to Parse Search Data from `__NEXT_DATA__`

The `parse_search` function below selects the `__NEXT_DATA__` script tag, loads it as JSON, and returns the ads array with a fallback for older Leboncoin revisions.

python```python
from scrapfly import ScrapeConfig, ScrapflyClient, ScrapeApiResponse
import asyncio
from typing import Dict, List
import json

SCRAPFLY = ScrapflyClient(key="Your Scrapfly API key")

BASE_CONFIG = {
    "asp": True,          # bypass DataDome
    "country": "fr",      # French exit IP
}

def parse_search(result: ScrapeApiResponse) -> List[Dict]:
    """Parse Leboncoin search data from the __NEXT_DATA__ JSON."""
    next_data = result.selector.css("script[id='__NEXT_DATA__']::text").get()
    data = json.loads(next_data)
    page_props = data["props"]["pageProps"]
    # Primary path on current Leboncoin revisions.
    if "searchData" in page_props:
        return page_props["searchData"]["ads"]
    # Fallback for older revisions of the site.
    return page_props["initialProps"]["searchData"]["ads"]

async def scrape_search(url: str) -> List[Dict]:
    """Scrape a single Leboncoin search page."""
    print(f"scraping search {url}")
    first_page = await SCRAPFLY.async_scrape(ScrapeConfig(url, **BASE_CONFIG))
    search_data = parse_search(first_page)
    print(json.dumps(search_data[:1], indent=2))
    return search_data

asyncio.run(scrape_search(url="https://www.leboncoin.fr/recherche?text=maison&page=1"))
```



The `parse_search` helper extracts the `__NEXT_DATA__` text, parses it with `json.loads`, and reads the ads array with a defensive fallback for the legacy `initialProps.searchData.ads` location. The `scrape_search` coroutine wraps one Scrapfly call and prints the first ad for inspection. Running the script against the `maison` keyword returns a fresh 2026 listing like the one below, truncated to the key fields.

Outputjson```json
[
  {
    "list_id": 3152347006,
    "first_publication_date": "2026-02-27 18:10:14",
    "index_date": "2026-04-21 11:51:46",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3152347006",
    "price": [
      464000
    ],
    "price_cents": 46400000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/89/68/05/896805547198e51e70b67066fb72948c4fd9ac54.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/89/68/05/896805547198e51e70b67066fb72948c4fd9ac54.jpg?rule=ad-small",
      "nb_images": 14,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/89/68/05/896805547198e51e70b67066fb72948c4fd9ac54.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/08/8a/e2/088ae24a8d849e9a60c0741360868abff6b9b0cc.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/37/3a/7b/373a7b8117b9ca3f52a48dbfdef47e72e6bac094.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/17/7e/e4/177ee4238814d86f2590c7c874e3f710ac153f6f.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/bf/36/05/bf36052fd6fc21e7dbd6f442923105ebfda4b0f2.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/11/e3/70/11e370b7440142101cf51c672ae8079c270fe783.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/dd/3c/f6/dd3cf6e0863e5ddfcf9be859c5883e179cf1c86c.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/4c/a7/5d/4ca75d650c58e8bd1d8d500229f61694d238ac4e.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/1b/7e/59/1b7e592f640ae4f25f59ca530eed56c1cb21070d.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3f/c0/05/3fc005453f4204b1913cc1235ba390dcb2c1f571.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/eb/64/44/eb64445cc93ee3f0178d5ebb4e765b6f1680c1a4.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0c/94/6a/0c946af84b7167592df25997190ebf710b471b9a.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/1e/6a/1b/1e6a1b1dd4fa538fa9f20f354a648c2d2d237959.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3f/16/2a/3f162a6588c52f7b70e9993c79305bbb02037ef7.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/89/68/05/896805547198e51e70b67066fb72948c4fd9ac54.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/08/8a/e2/088ae24a8d849e9a60c0741360868abff6b9b0cc.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/37/3a/7b/373a7b8117b9ca3f52a48dbfdef47e72e6bac094.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/17/7e/e4/177ee4238814d86f2590c7c874e3f710ac153f6f.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/bf/36/05/bf36052fd6fc21e7dbd6f442923105ebfda4b0f2.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/11/e3/70/11e370b7440142101cf51c672ae8079c270fe783.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/dd/3c/f6/dd3cf6e0863e5ddfcf9be859c5883e179cf1c86c.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/4c/a7/5d/4ca75d650c58e8bd1d8d500229f61694d238ac4e.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/1b/7e/59/1b7e592f640ae4f25f59ca530eed56c1cb21070d.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3f/c0/05/3fc005453f4204b1913cc1235ba390dcb2c1f571.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/eb/64/44/eb64445cc93ee3f0178d5ebb4e765b6f1680c1a4.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0c/94/6a/0c946af84b7167592df25997190ebf710b471b9a.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/1e/6a/1b/1e6a1b1dd4fa538fa9f20f354a648c2d2d237959.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3f/16/2a/3f162a6588c52f7b70e9993c79305bbb02037ef7.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/89/68/05/896805547198e51e70b67066fb72948c4fd9ac54.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/08/8a/e2/088ae24a8d849e9a60c0741360868abff6b9b0cc.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/37/3a/7b/373a7b8117b9ca3f52a48dbfdef47e72e6bac094.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/17/7e/e4/177ee4238814d86f2590c7c874e3f710ac153f6f.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/bf/36/05/bf36052fd6fc21e7dbd6f442923105ebfda4b0f2.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/11/e3/70/11e370b7440142101cf51c672ae8079c270fe783.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/dd/3c/f6/dd3cf6e0863e5ddfcf9be859c5883e179cf1c86c.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/4c/a7/5d/4ca75d650c58e8bd1d8d500229f61694d238ac4e.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/1b/7e/59/1b7e592f640ae4f25f59ca530eed56c1cb21070d.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3f/c0/05/3fc005453f4204b1913cc1235ba390dcb2c1f571.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/eb/64/44/eb64445cc93ee3f0178d5ebb4e765b6f1680c1a4.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0c/94/6a/0c946af84b7167592df25997190ebf710b471b9a.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/1e/6a/1b/1e6a1b1dd4fa538fa9f20f354a648c2d2d237959.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3f/16/2a/3f162a6588c52f7b70e9993c79305bbb02037ef7.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "activity_sector",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "external_ad_id",
        "value": "emeria_00724716",
        "values": [
          "emeria_00724716"
        ],
        "value_label": "emeria_00724716",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "70",
        "values": [
          "70"
        ],
        "key_label": "Surface habitable",
        "value_label": "70 m²",
        "value_label_reader": "70 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "395",
        "values": [
          "395"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "395 m²",
        "value_label_reader": "395 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "4",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "3 ch.",
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "g",
        "values": [
          "g"
        ],
        "key_label": "Classe énergie",
        "value_label": "G",
        "generic": true
      },
      {
        "key": "ges",
        "value": "g",
        "values": [
          "g"
        ],
        "key_label": "GES",
        "value_label": "G",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "with_garage_or_parking_spot"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Avec garage ou place de parking",
        "values_label": [
          "Avec garage ou place de parking"
        ],
        "values_label_reader": [
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_type",
        "value": "individual",
        "values": [
          "individual"
        ],
        "key_label": "Type de chauffage",
        "value_label": "Individuel",
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "electric",
        "values": [
          "electric"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Électrique",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "1912",
        "values": [
          "1912"
        ],
        "key_label": "Année de construction",
        "value_label": "1912",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "État du bien",
        "value_label": "Bon état",
        "generic": true
      },
      {
        "key": "annual_charges",
        "value": "0",
        "values": [
          "0"
        ],
        "key_label": "Charges annuelles de copropriété",
        "value_label": "0 €",
        "value_label_reader": "0 Euro",
        "generic": false
      },
      {
        "key": "security_deposit",
        "value": "0",
        "values": [
          "0"
        ],
        "key_label": "Dépôt de garantie",
        "value_label": "0 €",
        "value_label_reader": "0 Euro",
        "generic": false
      },
      {
        "key": "fai_included",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Honoraires inclus",
        "value_label": "Oui",
        "generic": false
      },
      {
        "key": "inventory_fees",
        "value": "0",
        "values": [
          "0"
        ],
        "key_label": "Frais d'état des lieux",
        "value_label": "0 €",
        "value_label_reader": "0 Euro",
        "generic": false
      },
      {
        "key": "district_id",
        "value": "100908",
        "values": [
          "100908"
        ],
        "value_label": "100908",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "1",
        "values": [
          "1"
        ],
        "value_label": "1",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "mandate_type",
        "value": "exclusive",
        "values": [
          "exclusive"
        ],
        "value_label": "exclusive",
        "generic": false
      },
      {
        "key": "has_visibility_option",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "visibility_option_products",
        "value": "RE_SUPER_VISIBILITY_FEATURE",
        "values": [
          "RE_SUPER_VISIBILITY_FEATURE"
        ],
        "value_label": "RE_SUPER_VISIBILITY_FEATURE",
        "generic": false
      },
      {
        "key": "store_logo",
        "value": "https://img.leboncoin.fr/api/v1/lbcpb1/images/4c/9c/e3/4c9ce320-cce7-4ad7-bf4a-37888031ecfe?rule=bo-thumb",
        "values": [
          "https://img.leboncoin.fr/api/v1/lbcpb1/images/4c/9c/e3/4c9ce320-cce7-4ad7-bf4a-37888031ecfe?rule=bo-thumb"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/lbcpb1/images/4c/9c/e3/4c9ce320-cce7-4ad7-bf4a-37888031ecfe?rule=bo-thumb",
        "generic": false
      },
      {
        "key": "store_name",
        "value": "Foncia Transaction Chatou",
        "values": [
          "Foncia Transaction Chatou"
        ],
        "value_label": "Foncia Transaction Chatou",
        "generic": false
      },
      {
        "key": "online_store_id",
        "value": "5515896",
        "values": [
          "5515896"
        ],
        "value_label": "5515896",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "6629",
        "values": [
          "6629"
        ],
        "value_label": "6629",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "37120",
        "values": [
          "37120"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "37120 €",
        "value_label_reader": "37120 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "501120",
        "values": [
          "501120"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "501120 €",
        "value_label_reader": "501120 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_min",
        "value": "2480",
        "values": [
          "2480"
        ],
        "key_label": "Montant annuel énergétique minimum",
        "value_label": "2480 €",
        "value_label_reader": "2480 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_max",
        "value": "3390",
        "values": [
          "3390"
        ],
        "key_label": "Montant annuel énergétique maximum",
        "value_label": "3390 €",
        "value_label_reader": "3390 Euro",
        "generic": false
      },
      {
        "key": "custom_ref",
        "value": "00724716",
        "values": [
          "00724716"
        ],
        "key_label": "Référence",
        "value_label": "00724716",
        "generic": true
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "virtual_tour",
        "value": "https://livetour.istaging.com/66dcb24c-c8f1-4903-a45d-0cf427c86c25",
        "values": [
          "https://livetour.istaging.com/66dcb24c-c8f1-4903-a45d-0cf427c86c25"
        ],
        "value_label": "https://livetour.istaging.com/66dcb24c-c8f1-4903-a45d-0cf427c86c25",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "12",
      "region_name": "Ile-de-France",
      "department_id": "78",
      "department_name": "Yvelines",
      "city_label": "Chatou 78400 Est",
      "city": "Chatou",
      "zipcode": "78400",
      "district": "Est",
      "lat": 48.896187,
      "lng": 2.1600888,
      "source": "city",
      "provider": "here",
      "type": "city",
      "origin_type": "street",
      "is_shape": true,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            2.1600888,
            48.896187
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "70893888",
      "user_id": "40834561-7eee-4aea-b32b-b42cd2d089db",
      "type": "pro",
      "name": "Foncia Transaction Chatou",
      "siren": "503698664",
      "no_salesmen": true,
      "activity_sector": "2"
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "land_plot_surface",
        "value": "395",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 395 m²",
        "value_label_reader": "Surface du terrain 395 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3012674404,
    "first_publication_date": "2026-04-13 05:29:28",
    "index_date": "2026-04-21 10:55:02",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison - 4 pièces - ITTENHEIM MAISONS",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3012674404",
    "price": [
      426000
    ],
    "price_cents": 42600000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/d4/43/68/d4436837a157fd6386d092d789960015c683e2da.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/d4/43/68/d4436837a157fd6386d092d789960015c683e2da.jpg?rule=ad-small",
      "nb_images": 1,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d4/43/68/d4436837a157fd6386d092d789960015c683e2da.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d4/43/68/d4436837a157fd6386d092d789960015c683e2da.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d4/43/68/d4436837a157fd6386d092d789960015c683e2da.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "activity_sector",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "external_ad_id",
        "value": "lbcin_P239446",
        "values": [
          "lbcin_P239446"
        ],
        "value_label": "lbcin_P239446",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "105",
        "values": [
          "105"
        ],
        "key_label": "Surface habitable",
        "value_label": "105 m²",
        "value_label_reader": "105 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "4",
        "generic": true
      },
      {
        "key": "fai_included",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Honoraires inclus",
        "value_label": "Non",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "67226",
        "values": [
          "67226"
        ],
        "value_label": "67226",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "is_preview_program",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "4057",
        "values": [
          "4057"
        ],
        "value_label": "4057",
        "generic": false
      },
      {
        "key": "custom_ref",
        "value": "ITTENHEIM_MAISONS",
        "values": [
          "ITTENHEIM_MAISONS"
        ],
        "key_label": "Référence",
        "value_label": "ITTENHEIM_MAISONS",
        "generic": true
      },
      {
        "key": "immo_sell_type",
        "value": "new",
        "values": [
          "new"
        ],
        "value_label": "Neuf",
        "generic": false
      },
      {
        "key": "new_seller_type",
        "value": "realestate_promoter",
        "values": [
          "realestate_promoter"
        ],
        "value_label": "realestate_promoter",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "1",
      "region_name": "Alsace",
      "department_id": "67",
      "department_name": "Bas-Rhin",
      "city_label": "Ittenheim 67117",
      "city": "Ittenheim",
      "zipcode": "67117",
      "lat": 48.60108,
      "lng": 7.6309333,
      "source": "city",
      "provider": "here",
      "type": "city",
      "origin_type": "city",
      "is_shape": true,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            7.6309333,
            48.60108
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "52013484",
      "user_id": "c97df92b-517c-4002-ada3-741151937848",
      "type": "pro",
      "name": "SOVIA CONSTRUCTIONS",
      "siren": "414576454",
      "no_salesmen": true,
      "activity_sector": "2"
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "is_boosted": true,
    "similar": null,
    "counters": {},
    "top_variations": {
      "variations": [],
      "total": 0
    }
  },
  {
    "list_id": 3163133452,
    "first_publication_date": "2026-03-16 21:24:29",
    "expiration_date": "2026-05-15 22:24:29",
    "index_date": "2026-04-21 17:11:11",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison Goussainville",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3163133452",
    "price": [
      355000
    ],
    "price_cents": 35500000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/94/04/75/940475893c639dbfe4cfae825a4ce61e1508baeb.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/94/04/75/940475893c639dbfe4cfae825a4ce61e1508baeb.jpg?rule=ad-small",
      "nb_images": 9,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/94/04/75/940475893c639dbfe4cfae825a4ce61e1508baeb.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ac/0a/c6/ac0ac67990eada0e2bc71f79c220b8a180d7ef9b.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8f/f6/cf/8ff6cf738cb8c46d088530877b6824d5254bfc8e.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a3/e3/42/a3e34268f73f20c6c06f016bde1d77c51f2390f9.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f0/79/23/f0792392945bafb134415f9fe2f7254b86a219c2.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/4f/f0/62/4ff062a40855eac615aa719e301f3fa75b560991.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/45/63/64/45636496003b1bf32a12a4e5cd2107fdc97f6544.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/36/7d/1e/367d1ee00d0acce51572b08352395318225f8a14.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/85/76/8e/85768e21ac3c7cd955459824162dfb151589eadd.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/94/04/75/940475893c639dbfe4cfae825a4ce61e1508baeb.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ac/0a/c6/ac0ac67990eada0e2bc71f79c220b8a180d7ef9b.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8f/f6/cf/8ff6cf738cb8c46d088530877b6824d5254bfc8e.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a3/e3/42/a3e34268f73f20c6c06f016bde1d77c51f2390f9.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f0/79/23/f0792392945bafb134415f9fe2f7254b86a219c2.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/4f/f0/62/4ff062a40855eac615aa719e301f3fa75b560991.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/45/63/64/45636496003b1bf32a12a4e5cd2107fdc97f6544.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/36/7d/1e/367d1ee00d0acce51572b08352395318225f8a14.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/85/76/8e/85768e21ac3c7cd955459824162dfb151589eadd.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/94/04/75/940475893c639dbfe4cfae825a4ce61e1508baeb.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ac/0a/c6/ac0ac67990eada0e2bc71f79c220b8a180d7ef9b.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8f/f6/cf/8ff6cf738cb8c46d088530877b6824d5254bfc8e.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a3/e3/42/a3e34268f73f20c6c06f016bde1d77c51f2390f9.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f0/79/23/f0792392945bafb134415f9fe2f7254b86a219c2.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/4f/f0/62/4ff062a40855eac615aa719e301f3fa75b560991.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/45/63/64/45636496003b1bf32a12a4e5cd2107fdc97f6544.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/36/7d/1e/367d1ee00d0acce51572b08352395318225f8a14.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/85/76/8e/85768e21ac3c7cd955459824162dfb151589eadd.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "profile_picture_url",
        "value": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/c0a4f451-096e-57af-a88a-e7118a0d1cc5?rule=pp-small",
        "values": [
          "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/c0a4f451-096e-57af-a88a-e7118a0d1cc5?rule=pp-small"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/c0a4f451-096e-57af-a88a-e7118a0d1cc5?rule=pp-small",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "140",
        "values": [
          "140"
        ],
        "key_label": "Surface habitable",
        "value_label": "140 m²",
        "value_label_reader": "140 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "400",
        "values": [
          "400"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "400 m²",
        "value_label_reader": "400 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "7",
        "values": [
          "7"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "7",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "5",
        "values": [
          "5"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "5 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle",
        "values_label": [
          "Maison individuelle"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "d",
        "values": [
          "d"
        ],
        "key_label": "Classe énergie",
        "value_label": "D",
        "generic": true
      },
      {
        "key": "ges",
        "value": "d",
        "values": [
          "d"
        ],
        "key_label": "GES",
        "value_label": "D",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "cellar",
          "attic",
          "second_bathroom",
          "with_dependency",
          "equipped_kitchen",
          "bathtub",
          "with_garage_or_parking_spot"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Cave, Grenier, Plusieurs toilettes, Avec dépendance, Cuisine équipée, Baignoire, Avec garage ou place de parking",
        "value_label_reader": ", , , , , , ",
        "values_label": [
          "Cave",
          "Grenier",
          "Plusieurs toilettes",
          "Avec dépendance",
          "Cuisine équipée",
          "Baignoire",
          "Avec garage ou place de parking"
        ],
        "values_label_reader": [
          "",
          "",
          "",
          "",
          "",
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "electric",
        "values": [
          "electric"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Électrique",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south",
        "values": [
          "south"
        ],
        "key_label": "Exposition",
        "value_label": "Sud",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "balcony",
          "terrace",
          "garden"
        ],
        "key_label": "Extérieur",
        "value_label": "Balcon, Terrasse, Jardin",
        "values_label": [
          "Balcon",
          "Terrasse",
          "Jardin"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Places de parking",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "available_date",
        "value": "03/2026",
        "values": [
          "03/2026"
        ],
        "key_label": "Disponible à partir de",
        "value_label": "03/2026",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "État du bien",
        "value_label": "À rafraichir",
        "generic": true
      },
      {
        "key": "annual_charges",
        "value": "10",
        "values": [
          "10"
        ],
        "key_label": "Charges annuelles de copropriété",
        "value_label": "10 €",
        "value_label_reader": "10 Euro",
        "generic": false
      },
      {
        "key": "district_id",
        "value": "110827",
        "values": [
          "110827"
        ],
        "value_label": "110827",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "1",
        "values": [
          "1"
        ],
        "value_label": "1",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "2536",
        "values": [
          "2536"
        ],
        "value_label": "2536",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "28400",
        "values": [
          "28400"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "28400 €",
        "value_label_reader": "28400 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "383400",
        "values": [
          "383400"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "383400 €",
        "value_label_reader": "383400 Euro",
        "generic": false
      },
      {
        "key": "property_tax",
        "value": "2000",
        "values": [
          "2000"
        ],
        "key_label": "Taxe foncière",
        "value_label": "2000 €",
        "value_label_reader": "2000 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_min",
        "value": "1000",
        "values": [
          "1000"
        ],
        "key_label": "Montant annuel énergétique minimum",
        "value_label": "1000 €",
        "value_label_reader": "1000 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_max",
        "value": "1500",
        "values": [
          "1500"
        ],
        "key_label": "Montant annuel énergétique maximum",
        "value_label": "1500 €",
        "value_label_reader": "1500 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "street_view_url",
        "value": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=49.032249,2.483130",
        "values": [
          "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=49.032249,2.483130"
        ],
        "value_label": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=49.032249,2.483130",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "12",
      "region_name": "Ile-de-France",
      "department_id": "95",
      "department_name": "Val-d'Oise",
      "city_label": "Goussainville 95190 Coteaux - Cottage - Charles de Gaulle - Vallé du Crould",
      "city": "Goussainville",
      "zipcode": "95190",
      "district": "Coteaux - Cottage - Charles de Gaulle - Vallé du Crould",
      "lat": 49.03225,
      "lng": 2.48313,
      "source": "address",
      "provider": "here",
      "type": "streetNumber",
      "origin_type": "streetNumber",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            2.48313,
            49.03225
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "77650833",
      "user_id": "8948fa38-5939-415f-bf0f-bf35eaa04039",
      "type": "private",
      "name": "Kadriye",
      "no_salesmen": false,
      "activity_sector": ""
    },
    "options": {
      "has_option": true,
      "booster": false,
      "photosup": true,
      "urgent": true,
      "gallery": false,
      "sub_toplist": true,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": false,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "d",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie D",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "400",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 400 m²",
        "value_label_reader": "Surface du terrain 400 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3178503397,
    "first_publication_date": "2026-04-12 18:06:50",
    "expiration_date": "2026-06-11 18:06:50",
    "index_date": "2026-04-21 15:49:00",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison neuve",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3178503397",
    "price": [
      320000
    ],
    "price_cents": 32000000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/27/a9/fe/27a9fe7a512549607f9941ff1c2b5a4bbc472db1.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/27/a9/fe/27a9fe7a512549607f9941ff1c2b5a4bbc472db1.jpg?rule=ad-small",
      "nb_images": 3,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/27/a9/fe/27a9fe7a512549607f9941ff1c2b5a4bbc472db1.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a2/2e/2b/a22e2b839ac5ed15f3caeb849b2be51de33af388.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2a/74/95/2a7495967b46db794cdc4cad3c413c53c0898d8e.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/27/a9/fe/27a9fe7a512549607f9941ff1c2b5a4bbc472db1.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a2/2e/2b/a22e2b839ac5ed15f3caeb849b2be51de33af388.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2a/74/95/2a7495967b46db794cdc4cad3c413c53c0898d8e.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/27/a9/fe/27a9fe7a512549607f9941ff1c2b5a4bbc472db1.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a2/2e/2b/a22e2b839ac5ed15f3caeb849b2be51de33af388.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2a/74/95/2a7495967b46db794cdc4cad3c413c53c0898d8e.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "rating_score",
        "value": "1",
        "values": [
          "1"
        ],
        "value_label": "1",
        "generic": false
      },
      {
        "key": "rating_count",
        "value": "1",
        "values": [
          "1"
        ],
        "value_label": "1",
        "generic": false
      },
      {
        "key": "profile_picture_url",
        "value": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/ba019bd4-afe5-51b1-a9bc-696c56f6b885?rule=pp-small",
        "values": [
          "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/ba019bd4-afe5-51b1-a9bc-696c56f6b885?rule=pp-small"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/ba019bd4-afe5-51b1-a9bc-696c56f6b885?rule=pp-small",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "120",
        "values": [
          "120"
        ],
        "key_label": "Surface habitable",
        "value_label": "120 m²",
        "value_label_reader": "120 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "1800",
        "values": [
          "1800"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "1800 m²",
        "value_label_reader": "1800 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "4",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "3 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house",
          "single_storey_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle, Maison de plain-pied",
        "values_label": [
          "Maison individuelle",
          "Maison de plain-pied"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "a",
        "values": [
          "a"
        ],
        "key_label": "Classe énergie",
        "value_label": "A",
        "generic": true
      },
      {
        "key": "ges",
        "value": "a",
        "values": [
          "a"
        ],
        "key_label": "GES",
        "value_label": "A",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "with_garage_or_parking_spot",
          "equipped_kitchen",
          "american_kitchen"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Avec garage ou place de parking, Cuisine équipée, Cuisine ouverte",
        "value_label_reader": ", , ",
        "values_label": [
          "Avec garage ou place de parking",
          "Cuisine équipée",
          "Cuisine ouverte"
        ],
        "values_label_reader": [
          "",
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south",
        "values": [
          "south"
        ],
        "key_label": "Exposition",
        "value_label": "Sud",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "terrace",
          "garden"
        ],
        "key_label": "Extérieur",
        "value_label": "Terrasse, Jardin",
        "values_label": [
          "Terrasse",
          "Jardin"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "5",
        "values": [
          "5"
        ],
        "key_label": "Places de parking",
        "value_label": "5",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "État du bien",
        "value_label": "Très bon état",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "103236",
        "values": [
          "103236"
        ],
        "value_label": "103236",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "1",
        "values": [
          "1"
        ],
        "value_label": "1",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "2667",
        "values": [
          "2667"
        ],
        "value_label": "2667",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "25600",
        "values": [
          "25600"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "25600 €",
        "value_label_reader": "25600 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "345600",
        "values": [
          "345600"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "345600 €",
        "value_label_reader": "345600 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "16",
      "region_name": "Midi-Pyrénées",
      "department_id": "65",
      "department_name": "Hautes-Pyrénées",
      "city_label": "Tarbes 65000 Solazur",
      "city": "Tarbes",
      "zipcode": "65000",
      "district": "Solazur",
      "lat": 43.238,
      "lng": 0.04089,
      "source": "address",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            0.04089,
            43.238
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "76815898",
      "user_id": "f7fe1512-4156-42a0-9550-e347f7763d0d",
      "type": "private",
      "name": "Stephane",
      "no_salesmen": false,
      "activity_sector": ""
    },
    "options": {
      "has_option": true,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": true,
      "sub_toplist": true,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": false,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "a",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie A",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "1800",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 1800 m²",
        "value_label_reader": "Surface du terrain 1800 mètres carrés",
        "generic": false
      },
      {
        "key": "real_estate_type_specificities",
        "value": "single_storey_house",
        "key_label": "Nature du bien",
        "value_label": "Maison de plain-pied",
        "value_label_reader": "Maison de plain-pied",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3163704054,
    "first_publication_date": "2026-03-17 23:57:54",
    "expiration_date": "2026-05-17 00:57:54",
    "index_date": "2026-04-21 12:53:20",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison d'hôtes",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3163704054",
    "price": [
      640000
    ],
    "price_cents": 64000000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/3b/fe/d5/3bfed5cd655da5bbf540b357c7143d7a47e7c3b4.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/3b/fe/d5/3bfed5cd655da5bbf540b357c7143d7a47e7c3b4.jpg?rule=ad-small",
      "nb_images": 19,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3b/fe/d5/3bfed5cd655da5bbf540b357c7143d7a47e7c3b4.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0f/a0/ee/0fa0ee113bffede54cf63f18475a8e3478e56169.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b1/3d/c1/b13dc1524d2bd9d9afa02a1b246e3a9734310bcd.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c9/66/eb/c966ebc449a6d947eafa588b210e133cc174fe17.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/38/06/13/3806136ff1fbcbcf3451e6c98abe729b673fd13e.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b4/0b/e2/b40be2160005f89eb6ec256c4114f88fccfce802.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f2/91/24/f29124dd5a50ec8b0dfba9c6ef2e68964d4dbc60.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a8/5a/03/a85a038c5541bc68d7ec9d4d73969f4da36ff0cd.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/21/ab/01/21ab01bac928626f01d608442eafc0089f707335.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/46/a7/5b/46a75bdba4fb76f47a62acaf63cdf5bdd7292dff.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/64/ac/72/64ac7250b2df502a8a49660de5f4512eba856598.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f9/39/6b/f9396b124667b93fcc97f9f967f1dce9bcfd9a6e.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/7b/05/7b/7b057b601580eb1b6fd494df089374ece435d291.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a6/2c/b8/a62cb8f09a7bfc7e0cd1efa6aa5bfbc01d1a3631.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/4b/63/39/4b6339b73ee117b1af27ccf9ba955396656a5f19.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e1/8e/ac/e18eacea91fad51304a5e6db29b0941a1ea3de7c.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e1/ab/e1/e1abe1a10fa93dde16dc722d9832368e64fa166b.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/93/b0/d9/93b0d9ec545d47ba7fa11e2bf2ef0ca770d3244a.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/5b/b9/88/5bb988921d9897cf96344251454ca9b585f24d0b.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3b/fe/d5/3bfed5cd655da5bbf540b357c7143d7a47e7c3b4.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0f/a0/ee/0fa0ee113bffede54cf63f18475a8e3478e56169.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b1/3d/c1/b13dc1524d2bd9d9afa02a1b246e3a9734310bcd.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c9/66/eb/c966ebc449a6d947eafa588b210e133cc174fe17.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/38/06/13/3806136ff1fbcbcf3451e6c98abe729b673fd13e.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b4/0b/e2/b40be2160005f89eb6ec256c4114f88fccfce802.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f2/91/24/f29124dd5a50ec8b0dfba9c6ef2e68964d4dbc60.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a8/5a/03/a85a038c5541bc68d7ec9d4d73969f4da36ff0cd.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/21/ab/01/21ab01bac928626f01d608442eafc0089f707335.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/46/a7/5b/46a75bdba4fb76f47a62acaf63cdf5bdd7292dff.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/64/ac/72/64ac7250b2df502a8a49660de5f4512eba856598.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f9/39/6b/f9396b124667b93fcc97f9f967f1dce9bcfd9a6e.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/7b/05/7b/7b057b601580eb1b6fd494df089374ece435d291.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a6/2c/b8/a62cb8f09a7bfc7e0cd1efa6aa5bfbc01d1a3631.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/4b/63/39/4b6339b73ee117b1af27ccf9ba955396656a5f19.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e1/8e/ac/e18eacea91fad51304a5e6db29b0941a1ea3de7c.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e1/ab/e1/e1abe1a10fa93dde16dc722d9832368e64fa166b.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/93/b0/d9/93b0d9ec545d47ba7fa11e2bf2ef0ca770d3244a.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/5b/b9/88/5bb988921d9897cf96344251454ca9b585f24d0b.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3b/fe/d5/3bfed5cd655da5bbf540b357c7143d7a47e7c3b4.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0f/a0/ee/0fa0ee113bffede54cf63f18475a8e3478e56169.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b1/3d/c1/b13dc1524d2bd9d9afa02a1b246e3a9734310bcd.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c9/66/eb/c966ebc449a6d947eafa588b210e133cc174fe17.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/38/06/13/3806136ff1fbcbcf3451e6c98abe729b673fd13e.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b4/0b/e2/b40be2160005f89eb6ec256c4114f88fccfce802.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f2/91/24/f29124dd5a50ec8b0dfba9c6ef2e68964d4dbc60.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a8/5a/03/a85a038c5541bc68d7ec9d4d73969f4da36ff0cd.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/21/ab/01/21ab01bac928626f01d608442eafc0089f707335.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/46/a7/5b/46a75bdba4fb76f47a62acaf63cdf5bdd7292dff.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/64/ac/72/64ac7250b2df502a8a49660de5f4512eba856598.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f9/39/6b/f9396b124667b93fcc97f9f967f1dce9bcfd9a6e.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/7b/05/7b/7b057b601580eb1b6fd494df089374ece435d291.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a6/2c/b8/a62cb8f09a7bfc7e0cd1efa6aa5bfbc01d1a3631.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/4b/63/39/4b6339b73ee117b1af27ccf9ba955396656a5f19.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e1/8e/ac/e18eacea91fad51304a5e6db29b0941a1ea3de7c.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e1/ab/e1/e1abe1a10fa93dde16dc722d9832368e64fa166b.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/93/b0/d9/93b0d9ec545d47ba7fa11e2bf2ef0ca770d3244a.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/5b/b9/88/5bb988921d9897cf96344251454ca9b585f24d0b.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "rating_score",
        "value": "1",
        "values": [
          "1"
        ],
        "value_label": "1",
        "generic": false
      },
      {
        "key": "rating_count",
        "value": "16",
        "values": [
          "16"
        ],
        "value_label": "16",
        "generic": false
      },
      {
        "key": "profile_picture_url",
        "value": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/e3fdc5c9-f7fd-5619-b00f-2ce6671c6524?rule=pp-small",
        "values": [
          "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/e3fdc5c9-f7fd-5619-b00f-2ce6671c6524?rule=pp-small"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/e3fdc5c9-f7fd-5619-b00f-2ce6671c6524?rule=pp-small",
        "generic": false
      },
      {
        "key": "type_real_estate_sale",
        "value": "ancien",
        "values": [
          "ancien"
        ],
        "key_label": "Type de vente",
        "value_label": "Ancien",
        "generic": true
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "375",
        "values": [
          "375"
        ],
        "key_label": "Surface habitable",
        "value_label": "375 m²",
        "value_label_reader": "375 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "2500",
        "values": [
          "2500"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "2500 m²",
        "value_label_reader": "2500 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "10",
        "values": [
          "10"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "10",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "999999",
        "values": [
          "999999"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "8+ ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "5",
        "values": [
          "5"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "5",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle",
        "values_label": [
          "Maison individuelle"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "f",
        "values": [
          "f"
        ],
        "key_label": "Classe énergie",
        "value_label": "F",
        "generic": true
      },
      {
        "key": "ges",
        "value": "e",
        "values": [
          "e"
        ],
        "key_label": "GES",
        "value_label": "E",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "old_builiding",
          "attic",
          "second_bathroom",
          "bathtub",
          "with_garage_or_parking_spot"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Construction ancienne, Grenier, Plusieurs toilettes, Baignoire, Avec garage ou place de parking",
        "value_label_reader": ", , , , ",
        "values_label": [
          "Construction ancienne",
          "Grenier",
          "Plusieurs toilettes",
          "Baignoire",
          "Avec garage ou place de parking"
        ],
        "values_label_reader": [
          "",
          "",
          "",
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "gas",
        "values": [
          "gas"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Gaz",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "3",
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south_east",
        "values": [
          "south_east"
        ],
        "key_label": "Exposition",
        "value_label": "Sud-Est",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "pool"
        ],
        "key_label": "Extérieur",
        "value_label": "Piscine",
        "values_label": [
          "Piscine"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "999999",
        "values": [
          "999999"
        ],
        "key_label": "Places de parking",
        "value_label": "6 et plus",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "1670",
        "values": [
          "1670"
        ],
        "key_label": "Année de construction",
        "value_label": "1670",
        "generic": true
      },
      {
        "key": "available_date",
        "value": "07/2026",
        "values": [
          "07/2026"
        ],
        "key_label": "Disponible à partir de",
        "value_label": "07/2026",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "État du bien",
        "value_label": "Rénové",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "110399",
        "values": [
          "110399"
        ],
        "value_label": "110399",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "1",
        "values": [
          "1"
        ],
        "value_label": "1",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "1707",
        "values": [
          "1707"
        ],
        "value_label": "1707",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "51200",
        "values": [
          "51200"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "51200 €",
        "value_label_reader": "51200 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "691200",
        "values": [
          "691200"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "691200 €",
        "value_label_reader": "691200 Euro",
        "generic": false
      },
      {
        "key": "property_tax",
        "value": "2078",
        "values": [
          "2078"
        ],
        "key_label": "Taxe foncière",
        "value_label": "2078 €",
        "value_label_reader": "2078 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_min",
        "value": "3000",
        "values": [
          "3000"
        ],
        "key_label": "Montant annuel énergétique minimum",
        "value_label": "3000 €",
        "value_label_reader": "3000 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_max",
        "value": "4000",
        "values": [
          "4000"
        ],
        "key_label": "Montant annuel énergétique maximum",
        "value_label": "4000 €",
        "value_label_reader": "4000 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "street_view_url",
        "value": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=45.777180,3.118100",
        "values": [
          "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=45.777180,3.118100"
        ],
        "value_label": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=45.777180,3.118100",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      },
      {
        "key": "old_price",
        "value": "710000",
        "values": [
          "710000"
        ],
        "value_label": "710000",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "3",
      "region_name": "Auvergne",
      "department_id": "63",
      "department_name": "Puy-de-Dôme",
      "city_label": "Clermont-Ferrand 63000 Herbet-Saint-Jean-Brézet",
      "city": "Clermont-Ferrand",
      "zipcode": "63000",
      "district": "Herbet-Saint-Jean-Brézet",
      "lat": 45.77718,
      "lng": 3.1181,
      "source": "address",
      "provider": "here",
      "type": "streetNumber",
      "origin_type": "streetNumber",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            3.1181,
            45.77718
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "39663686",
      "user_id": "d2f6f4e8-b216-4d27-a201-7dd52531e0b1",
      "type": "private",
      "name": "caro",
      "no_salesmen": true,
      "activity_sector": ""
    },
    "options": {
      "has_option": true,
      "booster": false,
      "photosup": true,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": false,
    "attributes_listing": [
      {
        "key": "land_plot_surface",
        "value": "2500",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 2500 m²",
        "value_label_reader": "Surface du terrain 2500 mètres carrés",
        "generic": false
      },
      {
        "key": "outside_access",
        "value": "pool",
        "key_label": "Extérieur",
        "value_label": "Piscine",
        "value_label_reader": "Piscine",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3176412198,
    "first_publication_date": "2026-04-09 10:12:24",
    "expiration_date": "2026-06-08 10:12:24",
    "index_date": "2026-04-21 10:12:25",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison neuve",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3176412198",
    "price": [
      209000
    ],
    "price_cents": 20900000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/8e/d4/4f/8ed44f76143b578628b93921785efa87af969a3d.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/8e/d4/4f/8ed44f76143b578628b93921785efa87af969a3d.jpg?rule=ad-small",
      "nb_images": 3,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8e/d4/4f/8ed44f76143b578628b93921785efa87af969a3d.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c4/3e/67/c43e67b806e6f9d86559268e50a660c74dcb6948.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b9/96/9a/b9969a6f97b2eaf756a964ab9cbf17567ce32aaa.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8e/d4/4f/8ed44f76143b578628b93921785efa87af969a3d.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c4/3e/67/c43e67b806e6f9d86559268e50a660c74dcb6948.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b9/96/9a/b9969a6f97b2eaf756a964ab9cbf17567ce32aaa.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8e/d4/4f/8ed44f76143b578628b93921785efa87af969a3d.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c4/3e/67/c43e67b806e6f9d86559268e50a660c74dcb6948.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b9/96/9a/b9969a6f97b2eaf756a964ab9cbf17567ce32aaa.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "profile_picture_url",
        "value": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/e7880714-9c44-552a-adfc-90a0f4845400?rule=pp-small",
        "values": [
          "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/e7880714-9c44-552a-adfc-90a0f4845400?rule=pp-small"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/e7880714-9c44-552a-adfc-90a0f4845400?rule=pp-small",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "75",
        "values": [
          "75"
        ],
        "key_label": "Surface habitable",
        "value_label": "75 m²",
        "value_label_reader": "75 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "220",
        "values": [
          "220"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "220 m²",
        "value_label_reader": "220 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "3",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "2 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "single_storey_house",
          "individual_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison de plain-pied, Maison individuelle",
        "values_label": [
          "Maison de plain-pied",
          "Maison individuelle"
        ],
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "heated_floor"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Chauffage au sol",
        "values_label": [
          "Chauffage au sol"
        ],
        "values_label_reader": [
          ""
        ],
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "garden",
          "terrace"
        ],
        "key_label": "Extérieur",
        "value_label": "Jardin, Terrasse",
        "values_label": [
          "Jardin",
          "Terrasse"
        ],
        "generic": true
      },
      {
        "key": "building_year",
        "value": "2025",
        "values": [
          "2025"
        ],
        "key_label": "Année de construction",
        "value_label": "2025",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "État du bien",
        "value_label": "Très bon état",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "102532",
        "values": [
          "102532"
        ],
        "value_label": "102532",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "1",
        "values": [
          "1"
        ],
        "value_label": "1",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "2787",
        "values": [
          "2787"
        ],
        "value_label": "2787",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "16720",
        "values": [
          "16720"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "16720 €",
        "value_label_reader": "16720 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "225720",
        "values": [
          "225720"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "225720 €",
        "value_label_reader": "225720 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "22",
      "region_name": "Rhône-Alpes",
      "department_id": "42",
      "department_name": "Loire",
      "city_label": "Montbrison 42600 Moingt",
      "city": "Montbrison",
      "zipcode": "42600",
      "district": "Moingt",
      "lat": 45.61998,
      "lng": 4.06144,
      "source": "address",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            4.06144,
            45.61998
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "38453906",
      "user_id": "9e0d3087-a3cd-46fb-a5bf-8fcfd5ce4fb8",
      "type": "private",
      "name": "tonyy",
      "no_salesmen": false,
      "activity_sector": ""
    },
    "options": {
      "has_option": true,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": true,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "land_plot_surface",
        "value": "220",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 220 m²",
        "value_label_reader": "Surface du terrain 220 mètres carrés",
        "generic": false
      },
      {
        "key": "real_estate_type_specificities",
        "value": "single_storey_house",
        "key_label": "Nature du bien",
        "value_label": "Maison de plain-pied",
        "value_label_reader": "Maison de plain-pied",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3171528962,
    "first_publication_date": "2026-03-31 15:59:02",
    "expiration_date": "2026-05-30 15:59:02",
    "index_date": "2026-04-21 15:59:03",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison neuve",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3171528962",
    "price": [
      330000
    ],
    "price_cents": 33000000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/31/d4/20/31d42085da9991819e1b6d1ebb161f1cbd448b19.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/31/d4/20/31d42085da9991819e1b6d1ebb161f1cbd448b19.jpg?rule=ad-small",
      "nb_images": 16,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/31/d4/20/31d42085da9991819e1b6d1ebb161f1cbd448b19.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f0/6c/fb/f06cfba5f8f6094a233e95610ac4f21edca354f8.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/04/3c/51/043c5169cb337f9a72e2745da8af2b284657883f.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/91/33/94/9133949cdf6bc9842cbf44c265cc1260be83773f.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e9/59/11/e95911e5027b447d280770630cc351ea76d5088d.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c7/c9/b1/c7c9b1688059c91537c8d6f4bd39ab78de96f026.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c9/71/f5/c971f53f366da4a200c86b287b32fd7e90efdc76.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f6/bf/6d/f6bf6d92f3de9a304a531a20e7150bf73583d6f7.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/de/60/e2/de60e22e5ab6ab49892a22c5ea8bae991d72d7a5.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2c/4d/20/2c4d2077e23483e6d7f453e88b11d468fcaebebb.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2c/5d/3f/2c5d3f4a212645d7285b2ee63d12e13c690d1595.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/06/ad/d5/06add528d2a7c6e8456ed2348fb44618103d0ef9.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/6f/41/75/6f4175b32dc0b823296ef86d78d19e22e8f13cfe.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0c/82/75/0c827502c5aa086ede54612f02a7b0ab79a8e411.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/26/de/3e/26de3e3cc34cc7796a1ad42031db41774229cd4b.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/66/94/ee/6694ee44d6148e34984d7140666354a5f37dc129.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/31/d4/20/31d42085da9991819e1b6d1ebb161f1cbd448b19.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f0/6c/fb/f06cfba5f8f6094a233e95610ac4f21edca354f8.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/04/3c/51/043c5169cb337f9a72e2745da8af2b284657883f.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/91/33/94/9133949cdf6bc9842cbf44c265cc1260be83773f.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e9/59/11/e95911e5027b447d280770630cc351ea76d5088d.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c7/c9/b1/c7c9b1688059c91537c8d6f4bd39ab78de96f026.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c9/71/f5/c971f53f366da4a200c86b287b32fd7e90efdc76.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f6/bf/6d/f6bf6d92f3de9a304a531a20e7150bf73583d6f7.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/de/60/e2/de60e22e5ab6ab49892a22c5ea8bae991d72d7a5.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2c/4d/20/2c4d2077e23483e6d7f453e88b11d468fcaebebb.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2c/5d/3f/2c5d3f4a212645d7285b2ee63d12e13c690d1595.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/06/ad/d5/06add528d2a7c6e8456ed2348fb44618103d0ef9.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/6f/41/75/6f4175b32dc0b823296ef86d78d19e22e8f13cfe.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0c/82/75/0c827502c5aa086ede54612f02a7b0ab79a8e411.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/26/de/3e/26de3e3cc34cc7796a1ad42031db41774229cd4b.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/66/94/ee/6694ee44d6148e34984d7140666354a5f37dc129.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/31/d4/20/31d42085da9991819e1b6d1ebb161f1cbd448b19.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f0/6c/fb/f06cfba5f8f6094a233e95610ac4f21edca354f8.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/04/3c/51/043c5169cb337f9a72e2745da8af2b284657883f.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/91/33/94/9133949cdf6bc9842cbf44c265cc1260be83773f.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e9/59/11/e95911e5027b447d280770630cc351ea76d5088d.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c7/c9/b1/c7c9b1688059c91537c8d6f4bd39ab78de96f026.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c9/71/f5/c971f53f366da4a200c86b287b32fd7e90efdc76.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f6/bf/6d/f6bf6d92f3de9a304a531a20e7150bf73583d6f7.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/de/60/e2/de60e22e5ab6ab49892a22c5ea8bae991d72d7a5.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2c/4d/20/2c4d2077e23483e6d7f453e88b11d468fcaebebb.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2c/5d/3f/2c5d3f4a212645d7285b2ee63d12e13c690d1595.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/06/ad/d5/06add528d2a7c6e8456ed2348fb44618103d0ef9.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/6f/41/75/6f4175b32dc0b823296ef86d78d19e22e8f13cfe.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0c/82/75/0c827502c5aa086ede54612f02a7b0ab79a8e411.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/26/de/3e/26de3e3cc34cc7796a1ad42031db41774229cd4b.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/66/94/ee/6694ee44d6148e34984d7140666354a5f37dc129.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "rating_score",
        "value": "1",
        "values": [
          "1"
        ],
        "value_label": "1",
        "generic": false
      },
      {
        "key": "rating_count",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "profile_picture_url",
        "value": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/dee51e28-8adb-5379-94e6-de35cbec193d?rule=pp-small",
        "values": [
          "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/dee51e28-8adb-5379-94e6-de35cbec193d?rule=pp-small"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/dee51e28-8adb-5379-94e6-de35cbec193d?rule=pp-small",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "96",
        "values": [
          "96"
        ],
        "key_label": "Surface habitable",
        "value_label": "96 m²",
        "value_label_reader": "96 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "632",
        "values": [
          "632"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "632 m²",
        "value_label_reader": "632 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "5",
        "values": [
          "5"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "5",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "3 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle",
        "values_label": [
          "Maison individuelle"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "a",
        "values": [
          "a"
        ],
        "key_label": "Classe énergie",
        "value_label": "A",
        "generic": true
      },
      {
        "key": "ges",
        "value": "a",
        "values": [
          "a"
        ],
        "key_label": "GES",
        "value_label": "A",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "new_building",
          "american_kitchen",
          "equipped_kitchen",
          "bathtub",
          "second_bathroom"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Construction récente, Cuisine ouverte, Cuisine équipée, Baignoire, Plusieurs toilettes",
        "value_label_reader": ", , , , ",
        "values_label": [
          "Construction récente",
          "Cuisine ouverte",
          "Cuisine équipée",
          "Baignoire",
          "Plusieurs toilettes"
        ],
        "values_label_reader": [
          "",
          "",
          "",
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "electric",
        "values": [
          "electric"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Électrique",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south_east",
        "values": [
          "south_east"
        ],
        "key_label": "Exposition",
        "value_label": "Sud-Est",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "terrace",
          "garden"
        ],
        "key_label": "Extérieur",
        "value_label": "Terrasse, Jardin",
        "values_label": [
          "Terrasse",
          "Jardin"
        ],
        "generic": true
      },
      {
        "key": "building_year",
        "value": "2023",
        "values": [
          "2023"
        ],
        "key_label": "Année de construction",
        "value_label": "2023",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "État du bien",
        "value_label": "Très bon état",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "31345",
        "values": [
          "31345"
        ],
        "value_label": "31345",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "3438",
        "values": [
          "3438"
        ],
        "value_label": "3438",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "26400",
        "values": [
          "26400"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "26400 €",
        "value_label_reader": "26400 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "356400",
        "values": [
          "356400"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "356400 €",
        "value_label_reader": "356400 Euro",
        "generic": false
      },
      {
        "key": "property_tax",
        "value": "1200",
        "values": [
          "1200"
        ],
        "key_label": "Taxe foncière",
        "value_label": "1200 €",
        "value_label_reader": "1200 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "16",
      "region_name": "Midi-Pyrénées",
      "department_id": "31",
      "department_name": "Haute-Garonne",
      "city_label": "Miremont 31190",
      "city": "Miremont",
      "zipcode": "31190",
      "lat": 43.37365,
      "lng": 1.42119,
      "source": "address",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            1.42119,
            43.37365
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "27797620",
      "user_id": "261b4944-7f64-4fe9-995e-9081b59b96ec",
      "type": "private",
      "name": "Magalie",
      "no_salesmen": true,
      "activity_sector": ""
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": false,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "a",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie A",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "632",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 632 m²",
        "value_label_reader": "Surface du terrain 632 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3153943637,
    "first_publication_date": "2026-03-02 12:28:16",
    "expiration_date": "2026-05-01 13:28:16",
    "index_date": "2026-04-21 15:34:38",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison evim",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3153943637",
    "price": [
      277955
    ],
    "price_cents": 27795500,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/fc/ec/04/fcec04a1a3677f04154126ebd93175019e00b63f.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/fc/ec/04/fcec04a1a3677f04154126ebd93175019e00b63f.jpg?rule=ad-small",
      "nb_images": 4,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fc/ec/04/fcec04a1a3677f04154126ebd93175019e00b63f.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fe/00/12/fe001212ce31d59d6d5d8e0430b95fb72bff7162.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/70/c9/c4/70c9c4c14bf1c73c9af6099d4aab6ff19c661cda.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/1b/1e/2f/1b1e2f5b9e36a923b3782b02d52e9310e214d9f8.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fc/ec/04/fcec04a1a3677f04154126ebd93175019e00b63f.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fe/00/12/fe001212ce31d59d6d5d8e0430b95fb72bff7162.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/70/c9/c4/70c9c4c14bf1c73c9af6099d4aab6ff19c661cda.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/1b/1e/2f/1b1e2f5b9e36a923b3782b02d52e9310e214d9f8.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fc/ec/04/fcec04a1a3677f04154126ebd93175019e00b63f.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fe/00/12/fe001212ce31d59d6d5d8e0430b95fb72bff7162.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/70/c9/c4/70c9c4c14bf1c73c9af6099d4aab6ff19c661cda.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/1b/1e/2f/1b1e2f5b9e36a923b3782b02d52e9310e214d9f8.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "activity_sector",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "101",
        "values": [
          "101"
        ],
        "key_label": "Surface habitable",
        "value_label": "101 m²",
        "value_label_reader": "101 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "352",
        "values": [
          "352"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "352 m²",
        "value_label_reader": "352 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "5",
        "values": [
          "5"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "5",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "4 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle",
        "values_label": [
          "Maison individuelle"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "a",
        "values": [
          "a"
        ],
        "key_label": "Classe énergie",
        "value_label": "A",
        "generic": true
      },
      {
        "key": "ges",
        "value": "a",
        "values": [
          "a"
        ],
        "key_label": "GES",
        "value_label": "A",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "garden"
        ],
        "key_label": "Extérieur",
        "value_label": "Jardin",
        "values_label": [
          "Jardin"
        ],
        "generic": true
      },
      {
        "key": "building_year",
        "value": "2026",
        "values": [
          "2026"
        ],
        "key_label": "Année de construction",
        "value_label": "2026",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "État du bien",
        "value_label": "Très bon état",
        "generic": true
      },
      {
        "key": "fees_at_the_expanse_of",
        "value": "buyer_realestate",
        "values": [
          "buyer_realestate"
        ],
        "key_label": "Charges honoraires",
        "value_label": "Acheteur",
        "generic": true
      },
      {
        "key": "fai_included",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Honoraires inclus",
        "value_label": "Oui",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "56251",
        "values": [
          "56251"
        ],
        "value_label": "56251",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "2752",
        "values": [
          "2752"
        ],
        "value_label": "2752",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "new",
        "values": [
          "new"
        ],
        "value_label": "Neuf",
        "generic": false
      },
      {
        "key": "new_seller_type",
        "value": "house_builder",
        "values": [
          "house_builder"
        ],
        "value_label": "house_builder",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "6",
      "region_name": "Bretagne",
      "department_id": "56",
      "department_name": "Morbihan",
      "city_label": "Theix-Noyalo 56450 Theix",
      "city": "Theix-Noyalo",
      "zipcode": "56450",
      "district": "Theix",
      "lat": 47.62772,
      "lng": -2.66216,
      "source": "address",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            -2.66216,
            47.62772
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "87310955",
      "user_id": "e6926a79-d6fa-466b-bced-f6d4f50f9bda",
      "type": "pro",
      "name": "630579273",
      "siren": "928658418",
      "no_salesmen": true,
      "activity_sector": "2"
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "a",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie A",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "352",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 352 m²",
        "value_label_reader": "Surface du terrain 352 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {},
    "top_variations": {
      "variations": [],
      "total": 0
    }
  },
  {
    "list_id": 3167640965,
    "first_publication_date": "2026-03-24 20:57:34",
    "expiration_date": "2026-05-23 21:57:34",
    "index_date": "2026-04-21 21:57:36",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison chatellerault",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3167640965",
    "price": [
      235000
    ],
    "price_cents": 23500000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/0e/43/3f/0e433fe9b87a2b9efd3fee88c5b1d23aa60e6a88.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/0e/43/3f/0e433fe9b87a2b9efd3fee88c5b1d23aa60e6a88.jpg?rule=ad-small",
      "nb_images": 17,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0e/43/3f/0e433fe9b87a2b9efd3fee88c5b1d23aa60e6a88.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d2/bc/da/d2bcdaf7fbeb2757d338859d1406798ca3d58c90.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3c/30/86/3c3086e60b220fcda0bf7aa14124fecf80b19bc2.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/da/c2/d7/dac2d75f80d6dfa33ef1429c8d1f291bc72a1931.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/1f/d4/8a/1fd48aa12b0d2c4fa85f439befeae9f378ab0031.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8a/ca/8d/8aca8d278460c54f1857b972b811a69893456499.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8b/a3/78/8ba378637906970ecaef914cc92a9b8134dcb777.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e3/89/5f/e3895fcebfed0ca49dd8b405044c2cf7f4ffbf39.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/dd/2e/27/dd2e27becc79fe9cd1fca5c8c2ed90ffd54fe61d.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f8/75/9f/f8759f73fcff6003cb8038ee0be1f4647f9dbee4.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f6/27/e9/f627e9144048e64de6d8af402f78227885af0c65.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/38/39/41/38394100ae6e7805073a53e4ef190bd73862fd97.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a6/0d/9d/a60d9d5a3127fdfdfa1d74d07474d49b7f976cb8.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8c/41/25/8c41255af611e1d361c94c816e80c50563b2aeae.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/55/79/42/5579428387a54b23946dd46bb699ed8c9c0b3596.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/cf/24/20/cf242044128a546cab3614ff2de37f69af2b7b63.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/23/8b/d7/238bd75845d6f13a7a4f28bc322b2f93590c0053.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0e/43/3f/0e433fe9b87a2b9efd3fee88c5b1d23aa60e6a88.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d2/bc/da/d2bcdaf7fbeb2757d338859d1406798ca3d58c90.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3c/30/86/3c3086e60b220fcda0bf7aa14124fecf80b19bc2.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/da/c2/d7/dac2d75f80d6dfa33ef1429c8d1f291bc72a1931.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/1f/d4/8a/1fd48aa12b0d2c4fa85f439befeae9f378ab0031.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8a/ca/8d/8aca8d278460c54f1857b972b811a69893456499.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8b/a3/78/8ba378637906970ecaef914cc92a9b8134dcb777.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e3/89/5f/e3895fcebfed0ca49dd8b405044c2cf7f4ffbf39.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/dd/2e/27/dd2e27becc79fe9cd1fca5c8c2ed90ffd54fe61d.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f8/75/9f/f8759f73fcff6003cb8038ee0be1f4647f9dbee4.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f6/27/e9/f627e9144048e64de6d8af402f78227885af0c65.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/38/39/41/38394100ae6e7805073a53e4ef190bd73862fd97.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a6/0d/9d/a60d9d5a3127fdfdfa1d74d07474d49b7f976cb8.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8c/41/25/8c41255af611e1d361c94c816e80c50563b2aeae.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/55/79/42/5579428387a54b23946dd46bb699ed8c9c0b3596.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/cf/24/20/cf242044128a546cab3614ff2de37f69af2b7b63.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/23/8b/d7/238bd75845d6f13a7a4f28bc322b2f93590c0053.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0e/43/3f/0e433fe9b87a2b9efd3fee88c5b1d23aa60e6a88.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d2/bc/da/d2bcdaf7fbeb2757d338859d1406798ca3d58c90.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3c/30/86/3c3086e60b220fcda0bf7aa14124fecf80b19bc2.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/da/c2/d7/dac2d75f80d6dfa33ef1429c8d1f291bc72a1931.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/1f/d4/8a/1fd48aa12b0d2c4fa85f439befeae9f378ab0031.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8a/ca/8d/8aca8d278460c54f1857b972b811a69893456499.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8b/a3/78/8ba378637906970ecaef914cc92a9b8134dcb777.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e3/89/5f/e3895fcebfed0ca49dd8b405044c2cf7f4ffbf39.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/dd/2e/27/dd2e27becc79fe9cd1fca5c8c2ed90ffd54fe61d.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f8/75/9f/f8759f73fcff6003cb8038ee0be1f4647f9dbee4.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f6/27/e9/f627e9144048e64de6d8af402f78227885af0c65.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/38/39/41/38394100ae6e7805073a53e4ef190bd73862fd97.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a6/0d/9d/a60d9d5a3127fdfdfa1d74d07474d49b7f976cb8.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8c/41/25/8c41255af611e1d361c94c816e80c50563b2aeae.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/55/79/42/5579428387a54b23946dd46bb699ed8c9c0b3596.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/cf/24/20/cf242044128a546cab3614ff2de37f69af2b7b63.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/23/8b/d7/238bd75845d6f13a7a4f28bc322b2f93590c0053.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "rating_score",
        "value": "1",
        "values": [
          "1"
        ],
        "value_label": "1",
        "generic": false
      },
      {
        "key": "rating_count",
        "value": "4",
        "values": [
          "4"
        ],
        "value_label": "4",
        "generic": false
      },
      {
        "key": "profile_picture_url",
        "value": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/7a157f92-e611-5177-a73e-bc217d9d82b0?rule=pp-small",
        "values": [
          "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/7a157f92-e611-5177-a73e-bc217d9d82b0?rule=pp-small"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/7a157f92-e611-5177-a73e-bc217d9d82b0?rule=pp-small",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "159",
        "values": [
          "159"
        ],
        "key_label": "Surface habitable",
        "value_label": "159 m²",
        "value_label_reader": "159 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "950",
        "values": [
          "950"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "950 m²",
        "value_label_reader": "950 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "5",
        "values": [
          "5"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "5",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "4 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle",
        "values_label": [
          "Maison individuelle"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "d",
        "values": [
          "d"
        ],
        "key_label": "Classe énergie",
        "value_label": "D",
        "generic": true
      },
      {
        "key": "ges",
        "value": "d",
        "values": [
          "d"
        ],
        "key_label": "GES",
        "value_label": "D",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "basement",
          "with_garage_or_parking_spot"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Sous-sol, Avec garage ou place de parking",
        "value_label_reader": ", ",
        "values_label": [
          "Sous-sol",
          "Avec garage ou place de parking"
        ],
        "values_label_reader": [
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "gas",
        "values": [
          "gas"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Gaz",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "orientation",
        "value": "east",
        "values": [
          "east"
        ],
        "key_label": "Exposition",
        "value_label": "Est",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "terrace",
          "garden"
        ],
        "key_label": "Extérieur",
        "value_label": "Terrasse, Jardin",
        "values_label": [
          "Terrasse",
          "Jardin"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Places de parking",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "available_date",
        "value": "04/2026",
        "values": [
          "04/2026"
        ],
        "key_label": "Disponible à partir de",
        "value_label": "04/2026",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "État du bien",
        "value_label": "Très bon état",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "86066",
        "values": [
          "86066"
        ],
        "value_label": "86066",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "3",
        "values": [
          "3"
        ],
        "value_label": "3",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "1478",
        "values": [
          "1478"
        ],
        "value_label": "1478",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "18800",
        "values": [
          "18800"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "18800 €",
        "value_label_reader": "18800 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "253800",
        "values": [
          "253800"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "253800 €",
        "value_label_reader": "253800 Euro",
        "generic": false
      },
      {
        "key": "property_tax",
        "value": "2000",
        "values": [
          "2000"
        ],
        "key_label": "Taxe foncière",
        "value_label": "2000 €",
        "value_label_reader": "2000 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_min",
        "value": "1500",
        "values": [
          "1500"
        ],
        "key_label": "Montant annuel énergétique minimum",
        "value_label": "1500 €",
        "value_label_reader": "1500 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_max",
        "value": "2000",
        "values": [
          "2000"
        ],
        "key_label": "Montant annuel énergétique maximum",
        "value_label": "2000 €",
        "value_label_reader": "2000 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "20",
      "region_name": "Poitou-Charentes",
      "department_id": "86",
      "department_name": "Vienne",
      "city_label": "Châtellerault 86100",
      "city": "Châtellerault",
      "zipcode": "86100",
      "lat": 46.81876,
      "lng": 0.50266,
      "source": "address",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            0.50266,
            46.81876
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "70976059",
      "user_id": "0a5e1197-4517-470d-8018-10dcd1714f82",
      "type": "private",
      "name": "Nath",
      "no_salesmen": false,
      "activity_sector": ""
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": false,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "d",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie D",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "950",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 950 m²",
        "value_label_reader": "Surface du terrain 950 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3171282648,
    "first_publication_date": "2026-03-31 06:39:40",
    "expiration_date": "2026-05-30 06:39:40",
    "index_date": "2026-04-21 06:39:41",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison Laudun",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3171282648",
    "price": [
      415000
    ],
    "price_cents": 41500000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/3b/42/52/3b425236d5ba8d34d2264020b046e3af550e3f31.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/3b/42/52/3b425236d5ba8d34d2264020b046e3af550e3f31.jpg?rule=ad-small",
      "nb_images": 19,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3b/42/52/3b425236d5ba8d34d2264020b046e3af550e3f31.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ca/b6/59/cab6596bde00465bc77c0f45977601ca7431563d.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f5/03/7f/f5037ff5cc5ddc35fbf0b34e038bb638b81c6a5a.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/71/27/2f/71272f7f2130bdb89961a61a95091fd2ae0aff29.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b9/da/b7/b9dab744f54f7031637a4bedc31955dc69768edf.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/85/d2/a9/85d2a99a04fdf03b04ac1914517cb66f33ee9894.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/bf/24/15/bf2415b084b6a01c40d3435b66484910f3a94257.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2c/58/9d/2c589d4400c2fccaedd5260b5a1aa01f984f307d.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b0/a4/b9/b0a4b98a2fe1f5455a66bd53e8000d5af1e2779d.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b0/dc/8a/b0dc8ad26e6ae169ae7d5e5340f78a3c04ace85a.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/81/b0/05/81b005891c2d1ded1fa445654089e0bc14e38cef.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/gh/97/74/gh977468538a6b63d921ff80c2178a4adf88ff17.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d1/89/5e/d1895eed638b5c243b6542df1ab52ace201b494e.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/6b/2a/cf/6b2acf2d70e1761329c20a1366734cdcdd9ac6b1.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/38/f4/3a/38f43a1055c85e3ceae52f9220b1704fb150e1c6.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c5/c7/50/c5c7507a0f3d2c56b420c76b62d800d74dc1ff28.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/57/78/d3/5778d3ee33d30fba98124f669930b454f47d7922.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/63/d1/54/63d15480a168ff22e26b548b7f8264cd495424e3.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/4b/52/4b/4b524b3304cd19d1391f4292f52a4d12677cd886.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3b/42/52/3b425236d5ba8d34d2264020b046e3af550e3f31.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ca/b6/59/cab6596bde00465bc77c0f45977601ca7431563d.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f5/03/7f/f5037ff5cc5ddc35fbf0b34e038bb638b81c6a5a.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/71/27/2f/71272f7f2130bdb89961a61a95091fd2ae0aff29.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b9/da/b7/b9dab744f54f7031637a4bedc31955dc69768edf.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/85/d2/a9/85d2a99a04fdf03b04ac1914517cb66f33ee9894.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/bf/24/15/bf2415b084b6a01c40d3435b66484910f3a94257.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2c/58/9d/2c589d4400c2fccaedd5260b5a1aa01f984f307d.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b0/a4/b9/b0a4b98a2fe1f5455a66bd53e8000d5af1e2779d.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b0/dc/8a/b0dc8ad26e6ae169ae7d5e5340f78a3c04ace85a.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/81/b0/05/81b005891c2d1ded1fa445654089e0bc14e38cef.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/gh/97/74/gh977468538a6b63d921ff80c2178a4adf88ff17.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d1/89/5e/d1895eed638b5c243b6542df1ab52ace201b494e.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/6b/2a/cf/6b2acf2d70e1761329c20a1366734cdcdd9ac6b1.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/38/f4/3a/38f43a1055c85e3ceae52f9220b1704fb150e1c6.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c5/c7/50/c5c7507a0f3d2c56b420c76b62d800d74dc1ff28.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/57/78/d3/5778d3ee33d30fba98124f669930b454f47d7922.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/63/d1/54/63d15480a168ff22e26b548b7f8264cd495424e3.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/4b/52/4b/4b524b3304cd19d1391f4292f52a4d12677cd886.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3b/42/52/3b425236d5ba8d34d2264020b046e3af550e3f31.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ca/b6/59/cab6596bde00465bc77c0f45977601ca7431563d.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f5/03/7f/f5037ff5cc5ddc35fbf0b34e038bb638b81c6a5a.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/71/27/2f/71272f7f2130bdb89961a61a95091fd2ae0aff29.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b9/da/b7/b9dab744f54f7031637a4bedc31955dc69768edf.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/85/d2/a9/85d2a99a04fdf03b04ac1914517cb66f33ee9894.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/bf/24/15/bf2415b084b6a01c40d3435b66484910f3a94257.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2c/58/9d/2c589d4400c2fccaedd5260b5a1aa01f984f307d.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b0/a4/b9/b0a4b98a2fe1f5455a66bd53e8000d5af1e2779d.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b0/dc/8a/b0dc8ad26e6ae169ae7d5e5340f78a3c04ace85a.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/81/b0/05/81b005891c2d1ded1fa445654089e0bc14e38cef.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/gh/97/74/gh977468538a6b63d921ff80c2178a4adf88ff17.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d1/89/5e/d1895eed638b5c243b6542df1ab52ace201b494e.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/6b/2a/cf/6b2acf2d70e1761329c20a1366734cdcdd9ac6b1.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/38/f4/3a/38f43a1055c85e3ceae52f9220b1704fb150e1c6.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c5/c7/50/c5c7507a0f3d2c56b420c76b62d800d74dc1ff28.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/57/78/d3/5778d3ee33d30fba98124f669930b454f47d7922.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/63/d1/54/63d15480a168ff22e26b548b7f8264cd495424e3.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/4b/52/4b/4b524b3304cd19d1391f4292f52a4d12677cd886.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "profile_picture_url",
        "value": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/70896fe7-552a-57fc-9a90-cf2fea217a82?rule=pp-small",
        "values": [
          "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/70896fe7-552a-57fc-9a90-cf2fea217a82?rule=pp-small"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/70896fe7-552a-57fc-9a90-cf2fea217a82?rule=pp-small",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "162",
        "values": [
          "162"
        ],
        "key_label": "Surface habitable",
        "value_label": "162 m²",
        "value_label_reader": "162 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "1173",
        "values": [
          "1173"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "1173 m²",
        "value_label_reader": "1173 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "6",
        "values": [
          "6"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "6",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "4 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "single_storey_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison de plain-pied",
        "values_label": [
          "Maison de plain-pied"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "b",
        "values": [
          "b"
        ],
        "key_label": "Classe énergie",
        "value_label": "B",
        "generic": true
      },
      {
        "key": "ges",
        "value": "a",
        "values": [
          "a"
        ],
        "key_label": "GES",
        "value_label": "A",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "equipped_kitchen",
          "second_bathroom",
          "american_kitchen",
          "bathtub",
          "with_garage_or_parking_spot"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Cuisine équipée, Plusieurs toilettes, Cuisine ouverte, Baignoire, Avec garage ou place de parking",
        "value_label_reader": ", , , , ",
        "values_label": [
          "Cuisine équipée",
          "Plusieurs toilettes",
          "Cuisine ouverte",
          "Baignoire",
          "Avec garage ou place de parking"
        ],
        "values_label_reader": [
          "",
          "",
          "",
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "electric",
        "values": [
          "electric"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Électrique",
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south",
        "values": [
          "south"
        ],
        "key_label": "Exposition",
        "value_label": "Sud",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "terrace",
          "garden",
          "pool"
        ],
        "key_label": "Extérieur",
        "value_label": "Terrasse, Jardin, Piscine",
        "values_label": [
          "Terrasse",
          "Jardin",
          "Piscine"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Places de parking",
        "value_label": "4",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "2001",
        "values": [
          "2001"
        ],
        "key_label": "Année de construction",
        "value_label": "2001",
        "generic": true
      },
      {
        "key": "available_date",
        "value": "08/2026",
        "values": [
          "08/2026"
        ],
        "key_label": "Disponible à partir de",
        "value_label": "08/2026",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "État du bien",
        "value_label": "Bon état",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "30141",
        "values": [
          "30141"
        ],
        "value_label": "30141",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "2562",
        "values": [
          "2562"
        ],
        "value_label": "2562",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "33200",
        "values": [
          "33200"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "33200 €",
        "value_label_reader": "33200 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "448200",
        "values": [
          "448200"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "448200 €",
        "value_label_reader": "448200 Euro",
        "generic": false
      },
      {
        "key": "property_tax",
        "value": "2247",
        "values": [
          "2247"
        ],
        "key_label": "Taxe foncière",
        "value_label": "2247 €",
        "value_label_reader": "2247 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_min",
        "value": "1330",
        "values": [
          "1330"
        ],
        "key_label": "Montant annuel énergétique minimum",
        "value_label": "1330 €",
        "value_label_reader": "1330 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_max",
        "value": "1890",
        "values": [
          "1890"
        ],
        "key_label": "Montant annuel énergétique maximum",
        "value_label": "1890 €",
        "value_label_reader": "1890 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "13",
      "region_name": "Languedoc-Roussillon",
      "department_id": "30",
      "department_name": "Gard",
      "city_label": "Laudun-l'Ardoise 30290 Laudun",
      "city": "Laudun-l'Ardoise",
      "zipcode": "30290",
      "district": "Laudun",
      "lat": 44.11087,
      "lng": 4.66776,
      "source": "address",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            4.66776,
            44.11087
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "12504209",
      "user_id": "62251f26-95d9-4b5c-ad9f-2280acf0bfec",
      "type": "private",
      "name": "Eric",
      "no_salesmen": true,
      "activity_sector": ""
    },
    "options": {
      "has_option": true,
      "booster": false,
      "photosup": true,
      "urgent": false,
      "gallery": false,
      "sub_toplist": true,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": false,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "b",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie B",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "1173",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 1173 m²",
        "value_label_reader": "Surface du terrain 1173 mètres carrés",
        "generic": false
      },
      {
        "key": "real_estate_type_specificities",
        "value": "single_storey_house",
        "key_label": "Nature du bien",
        "value_label": "Maison de plain-pied",
        "value_label_reader": "Maison de plain-pied",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3154450106,
    "first_publication_date": "2026-03-03 11:26:35",
    "expiration_date": "2026-05-02 12:26:35",
    "index_date": "2026-04-21 12:26:35",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison BOOA",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3154450106",
    "price": [
      276000
    ],
    "price_cents": 27600000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/10/c8/78/10c8782f26dd4c312fa42c1fdee3577ae8b591db.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/10/c8/78/10c8782f26dd4c312fa42c1fdee3577ae8b591db.jpg?rule=ad-small",
      "nb_images": 4,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/10/c8/78/10c8782f26dd4c312fa42c1fdee3577ae8b591db.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/cd/bd/4e/cdbd4eb9e2c4bdeed8575e02baa6ecf6a93e64e5.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8e/ad/db/8eaddbd71442089c268eca87c84fb091d2d66e77.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8f/56/ef/8f56efd9f0903dafee65ec19db8a830759084a23.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/10/c8/78/10c8782f26dd4c312fa42c1fdee3577ae8b591db.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/cd/bd/4e/cdbd4eb9e2c4bdeed8575e02baa6ecf6a93e64e5.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8e/ad/db/8eaddbd71442089c268eca87c84fb091d2d66e77.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8f/56/ef/8f56efd9f0903dafee65ec19db8a830759084a23.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/10/c8/78/10c8782f26dd4c312fa42c1fdee3577ae8b591db.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/cd/bd/4e/cdbd4eb9e2c4bdeed8575e02baa6ecf6a93e64e5.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8e/ad/db/8eaddbd71442089c268eca87c84fb091d2d66e77.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8f/56/ef/8f56efd9f0903dafee65ec19db8a830759084a23.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "activity_sector",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "92",
        "values": [
          "92"
        ],
        "key_label": "Surface habitable",
        "value_label": "92 m²",
        "value_label_reader": "92 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "300",
        "values": [
          "300"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "300 m²",
        "value_label_reader": "300 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "4",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "2 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house",
          "single_storey_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle, Maison de plain-pied",
        "values_label": [
          "Maison individuelle",
          "Maison de plain-pied"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "a",
        "values": [
          "a"
        ],
        "key_label": "Classe énergie",
        "value_label": "A",
        "generic": true
      },
      {
        "key": "ges",
        "value": "a",
        "values": [
          "a"
        ],
        "key_label": "GES",
        "value_label": "A",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "impaired_mobility_friendly",
          "heated_floor",
          "new_building",
          "attic",
          "american_kitchen",
          "with_garage_or_parking_spot"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Accès PMR, Chauffage au sol, Construction récente, Grenier, Cuisine ouverte, Avec garage ou place de parking",
        "value_label_reader": "Accès P.M.R., , , , , ",
        "values_label": [
          "Accès PMR",
          "Chauffage au sol",
          "Construction récente",
          "Grenier",
          "Cuisine ouverte",
          "Avec garage ou place de parking"
        ],
        "values_label_reader": [
          "Accès P.M.R.",
          "",
          "",
          "",
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south",
        "values": [
          "south"
        ],
        "key_label": "Exposition",
        "value_label": "Sud",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "terrace",
          "garden"
        ],
        "key_label": "Extérieur",
        "value_label": "Terrasse, Jardin",
        "values_label": [
          "Terrasse",
          "Jardin"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Places de parking",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "2026",
        "values": [
          "2026"
        ],
        "key_label": "Année de construction",
        "value_label": "2026",
        "generic": true
      },
      {
        "key": "available_date",
        "value": "03/2026",
        "values": [
          "03/2026"
        ],
        "key_label": "Disponible à partir de",
        "value_label": "03/2026",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "67098",
        "values": [
          "67098"
        ],
        "value_label": "67098",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "3000",
        "values": [
          "3000"
        ],
        "value_label": "3000",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "22080",
        "values": [
          "22080"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "22080 €",
        "value_label_reader": "22080 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "298080",
        "values": [
          "298080"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "298080 €",
        "value_label_reader": "298080 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "1",
      "region_name": "Alsace",
      "department_id": "67",
      "department_name": "Bas-Rhin",
      "city_label": "Dinsheim-sur-Bruche 67190",
      "city": "Dinsheim-sur-Bruche",
      "zipcode": "67190",
      "lat": 48.54237,
      "lng": 7.431,
      "source": "address",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            7.431,
            48.54237
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "332516",
      "user_id": "d8f593fe-d0d5-4cab-ab86-f3d938577127",
      "type": "pro",
      "name": "sarl la fontaine",
      "no_salesmen": true,
      "activity_sector": "2"
    },
    "options": {
      "has_option": true,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": true,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "a",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie A",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "300",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 300 m²",
        "value_label_reader": "Surface du terrain 300 mètres carrés",
        "generic": false
      },
      {
        "key": "real_estate_type_specificities",
        "value": "single_storey_house",
        "key_label": "Nature du bien",
        "value_label": "Maison de plain-pied",
        "value_label_reader": "Maison de plain-pied",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3180122762,
    "first_publication_date": "2026-04-15 15:27:42",
    "expiration_date": "2026-06-14 15:27:42",
    "index_date": "2026-04-21 15:27:42",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison familiale",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3180122762",
    "price": [
      1990000
    ],
    "price_cents": 199000000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/c6/bd/34/c6bd34d50d5480970ad29f8e26008191c9c965b0.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/c6/bd/34/c6bd34d50d5480970ad29f8e26008191c9c965b0.jpg?rule=ad-small",
      "nb_images": 3,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c6/bd/34/c6bd34d50d5480970ad29f8e26008191c9c965b0.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/21/7e/e7/217ee712e80a3fb08cbaa3f5ea3763ae36a62ad3.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/30/fe/36/30fe36969fe5eb74d64210b69bd1d3030638b979.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c6/bd/34/c6bd34d50d5480970ad29f8e26008191c9c965b0.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/21/7e/e7/217ee712e80a3fb08cbaa3f5ea3763ae36a62ad3.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/30/fe/36/30fe36969fe5eb74d64210b69bd1d3030638b979.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c6/bd/34/c6bd34d50d5480970ad29f8e26008191c9c965b0.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/21/7e/e7/217ee712e80a3fb08cbaa3f5ea3763ae36a62ad3.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/30/fe/36/30fe36969fe5eb74d64210b69bd1d3030638b979.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "profile_picture_url",
        "value": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/30a1fa74-c605-5096-8cf1-4f2c4160842a?rule=pp-small",
        "values": [
          "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/30a1fa74-c605-5096-8cf1-4f2c4160842a?rule=pp-small"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/30a1fa74-c605-5096-8cf1-4f2c4160842a?rule=pp-small",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "360",
        "values": [
          "360"
        ],
        "key_label": "Surface habitable",
        "value_label": "360 m²",
        "value_label_reader": "360 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "10",
        "values": [
          "10"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "10",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "6",
        "values": [
          "6"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "6 ch.",
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "d",
        "values": [
          "d"
        ],
        "key_label": "Classe énergie",
        "value_label": "D",
        "generic": true
      },
      {
        "key": "ges",
        "value": "d",
        "values": [
          "d"
        ],
        "key_label": "GES",
        "value_label": "D",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "with_garage_or_parking_spot",
          "cellar"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Avec garage ou place de parking, Cave",
        "value_label_reader": ", ",
        "values_label": [
          "Avec garage ou place de parking",
          "Cave"
        ],
        "values_label_reader": [
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Places de parking",
        "value_label": "4",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "102941",
        "values": [
          "102941"
        ],
        "value_label": "102941",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "1",
        "values": [
          "1"
        ],
        "value_label": "1",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "5528",
        "values": [
          "5528"
        ],
        "value_label": "5528",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "159200",
        "values": [
          "159200"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "159200 €",
        "value_label_reader": "159200 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "2149200",
        "values": [
          "2149200"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "2149200 €",
        "value_label_reader": "2149200 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "street_view_url",
        "value": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=50.671268,3.109680",
        "values": [
          "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=50.671268,3.109680"
        ],
        "value_label": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=50.671268,3.109680",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "17",
      "region_name": "Nord-Pas-de-Calais",
      "department_id": "59",
      "department_name": "Nord",
      "city_label": "Marcq-en-Baroeul 59700 Le Quesne",
      "city": "Marcq-en-Baroeul",
      "zipcode": "59700",
      "district": "Le Quesne",
      "lat": 50.67127,
      "lng": 3.10968,
      "source": "address",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            3.10968,
            50.67127
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "10755490",
      "user_id": "faa84c85-3119-41f7-832d-22b770397536",
      "type": "private",
      "name": "doc",
      "no_salesmen": false,
      "activity_sector": ""
    },
    "options": {
      "has_option": true,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": true,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": false,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "d",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie D",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3171765575,
    "first_publication_date": "2026-03-31 23:27:30",
    "expiration_date": "2026-05-30 23:27:30",
    "index_date": "2026-04-21 23:27:30",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison Fontoy",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3171765575",
    "price": [
      216000
    ],
    "price_cents": 21600000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/03/11/af/0311afe4429cc1a5642c3d612e94bd693493af10.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/03/11/af/0311afe4429cc1a5642c3d612e94bd693493af10.jpg?rule=ad-small",
      "nb_images": 20,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/03/11/af/0311afe4429cc1a5642c3d612e94bd693493af10.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/70/e4/32/70e432a8dd3a256b05eeec57c8ec66bd42671a35.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/80/d8/62/80d862e8f6b3be66208290fdfad30fcfcf31dd00.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9c/3b/58/9c3b58d3d339ddb372c933b3aa4106c9d7c32a1a.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/74/68/94/7468949f20ccfbe6a22d14ab06b5e1b4208ca23a.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/05/19/6d/05196da87daba3e81ac7155a65c6f9113d5a506a.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a9/e3/1d/a9e31d2e7eb2550712a71d91fe6ca82978f315c3.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9c/11/97/9c11973f28f962932a4bfae9bc083e65b59a522a.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/cc/84/f3/cc84f34dc80d583b5cf67a3d345f09003065f3ab.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d5/52/eb/d552eb023fef20ab5b12294cd45f821409ce7cb9.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b8/ee/9c/b8ee9c030aad7504a4a2b495df1efdcf5ae97de8.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d4/fe/eb/d4feeb6c11db1544a6841e8d5993904c5c979b63.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/66/c1/e0/66c1e0ef3d6872b6ab23acad0194b08b38f29d9a.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/12/83/01/1283017d856e75a52f386fb95265dadbfb793a66.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9f/41/d9/9f41d910ab04e616017f2e8421581bf85030bac9.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/03/fe/ef/03feef66a8c9e7a976d1bbe4022074fe9f888c90.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0b/e5/4b/0be54b879704fcf26347ab4d4298821073f171f6.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/bb/68/bb/bb68bbda4e5da7fcc71bdfe734bf08e4ad881ad9.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d8/08/3b/d8083ba76d92cc739b3e77e5c1e46243b843f6f4.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/7f/ba/46/7fba461326a6c132ed28cdf12497ecef07dd7ce2.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/03/11/af/0311afe4429cc1a5642c3d612e94bd693493af10.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/70/e4/32/70e432a8dd3a256b05eeec57c8ec66bd42671a35.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/80/d8/62/80d862e8f6b3be66208290fdfad30fcfcf31dd00.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9c/3b/58/9c3b58d3d339ddb372c933b3aa4106c9d7c32a1a.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/74/68/94/7468949f20ccfbe6a22d14ab06b5e1b4208ca23a.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/05/19/6d/05196da87daba3e81ac7155a65c6f9113d5a506a.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a9/e3/1d/a9e31d2e7eb2550712a71d91fe6ca82978f315c3.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9c/11/97/9c11973f28f962932a4bfae9bc083e65b59a522a.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/cc/84/f3/cc84f34dc80d583b5cf67a3d345f09003065f3ab.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d5/52/eb/d552eb023fef20ab5b12294cd45f821409ce7cb9.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b8/ee/9c/b8ee9c030aad7504a4a2b495df1efdcf5ae97de8.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d4/fe/eb/d4feeb6c11db1544a6841e8d5993904c5c979b63.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/66/c1/e0/66c1e0ef3d6872b6ab23acad0194b08b38f29d9a.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/12/83/01/1283017d856e75a52f386fb95265dadbfb793a66.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9f/41/d9/9f41d910ab04e616017f2e8421581bf85030bac9.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/03/fe/ef/03feef66a8c9e7a976d1bbe4022074fe9f888c90.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0b/e5/4b/0be54b879704fcf26347ab4d4298821073f171f6.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/bb/68/bb/bb68bbda4e5da7fcc71bdfe734bf08e4ad881ad9.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d8/08/3b/d8083ba76d92cc739b3e77e5c1e46243b843f6f4.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/7f/ba/46/7fba461326a6c132ed28cdf12497ecef07dd7ce2.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/03/11/af/0311afe4429cc1a5642c3d612e94bd693493af10.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/70/e4/32/70e432a8dd3a256b05eeec57c8ec66bd42671a35.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/80/d8/62/80d862e8f6b3be66208290fdfad30fcfcf31dd00.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9c/3b/58/9c3b58d3d339ddb372c933b3aa4106c9d7c32a1a.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/74/68/94/7468949f20ccfbe6a22d14ab06b5e1b4208ca23a.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/05/19/6d/05196da87daba3e81ac7155a65c6f9113d5a506a.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a9/e3/1d/a9e31d2e7eb2550712a71d91fe6ca82978f315c3.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9c/11/97/9c11973f28f962932a4bfae9bc083e65b59a522a.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/cc/84/f3/cc84f34dc80d583b5cf67a3d345f09003065f3ab.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d5/52/eb/d552eb023fef20ab5b12294cd45f821409ce7cb9.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b8/ee/9c/b8ee9c030aad7504a4a2b495df1efdcf5ae97de8.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d4/fe/eb/d4feeb6c11db1544a6841e8d5993904c5c979b63.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/66/c1/e0/66c1e0ef3d6872b6ab23acad0194b08b38f29d9a.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/12/83/01/1283017d856e75a52f386fb95265dadbfb793a66.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9f/41/d9/9f41d910ab04e616017f2e8421581bf85030bac9.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/03/fe/ef/03feef66a8c9e7a976d1bbe4022074fe9f888c90.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0b/e5/4b/0be54b879704fcf26347ab4d4298821073f171f6.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/bb/68/bb/bb68bbda4e5da7fcc71bdfe734bf08e4ad881ad9.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d8/08/3b/d8083ba76d92cc739b3e77e5c1e46243b843f6f4.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/7f/ba/46/7fba461326a6c132ed28cdf12497ecef07dd7ce2.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "profile_picture_url",
        "value": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/d7c290dc-45bf-5546-9a42-2f99d7307aea?rule=pp-small",
        "values": [
          "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/d7c290dc-45bf-5546-9a42-2f99d7307aea?rule=pp-small"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/d7c290dc-45bf-5546-9a42-2f99d7307aea?rule=pp-small",
        "generic": false
      },
      {
        "key": "type_real_estate_sale",
        "value": "ancien",
        "values": [
          "ancien"
        ],
        "key_label": "Type de vente",
        "value_label": "Ancien",
        "generic": true
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "65",
        "values": [
          "65"
        ],
        "key_label": "Surface habitable",
        "value_label": "65 m²",
        "value_label_reader": "65 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "770",
        "values": [
          "770"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "770 m²",
        "value_label_reader": "770 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "4",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "2 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "semi_detached_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison mitoyenne",
        "values_label": [
          "Maison mitoyenne"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "d",
        "values": [
          "d"
        ],
        "key_label": "Classe énergie",
        "value_label": "D",
        "generic": true
      },
      {
        "key": "ges",
        "value": "d",
        "values": [
          "d"
        ],
        "key_label": "GES",
        "value_label": "D",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "cellar",
          "old_builiding"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Cave, Construction ancienne",
        "value_label_reader": ", ",
        "values_label": [
          "Cave",
          "Construction ancienne"
        ],
        "values_label_reader": [
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "gas",
        "values": [
          "gas"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Gaz",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "pool",
          "garden"
        ],
        "key_label": "Extérieur",
        "value_label": "Piscine, Jardin",
        "values_label": [
          "Piscine",
          "Jardin"
        ],
        "generic": true
      },
      {
        "key": "building_year",
        "value": "1930",
        "values": [
          "1930"
        ],
        "key_label": "Année de construction",
        "value_label": "1930",
        "generic": true
      },
      {
        "key": "available_date",
        "value": "04/2026",
        "values": [
          "04/2026"
        ],
        "key_label": "Disponible à partir de",
        "value_label": "04/2026",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "État du bien",
        "value_label": "Très bon état",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "57226",
        "values": [
          "57226"
        ],
        "value_label": "57226",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "3323",
        "values": [
          "3323"
        ],
        "value_label": "3323",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "17280",
        "values": [
          "17280"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "17280 €",
        "value_label_reader": "17280 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "233280",
        "values": [
          "233280"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "233280 €",
        "value_label_reader": "233280 Euro",
        "generic": false
      },
      {
        "key": "property_tax",
        "value": "470",
        "values": [
          "470"
        ],
        "key_label": "Taxe foncière",
        "value_label": "470 €",
        "value_label_reader": "470 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_min",
        "value": "1160",
        "values": [
          "1160"
        ],
        "key_label": "Montant annuel énergétique minimum",
        "value_label": "1160 €",
        "value_label_reader": "1160 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_max",
        "value": "1630",
        "values": [
          "1630"
        ],
        "key_label": "Montant annuel énergétique maximum",
        "value_label": "1630 €",
        "value_label_reader": "1630 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "street_view_url",
        "value": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=49.340221,6.013900",
        "values": [
          "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=49.340221,6.013900"
        ],
        "value_label": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=49.340221,6.013900",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "15",
      "region_name": "Lorraine",
      "department_id": "57",
      "department_name": "Moselle",
      "city_label": "Fontoy 57650",
      "city": "Fontoy",
      "zipcode": "57650",
      "lat": 49.34022,
      "lng": 6.0139,
      "source": "address",
      "provider": "here",
      "type": "streetNumber",
      "origin_type": "streetNumber",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            6.0139,
            49.34022
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "70238982",
      "user_id": "aa889ecc-c400-401c-8b31-5c9620f79a2e",
      "type": "private",
      "name": "Estelle",
      "no_salesmen": true,
      "activity_sector": ""
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "d",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie D",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "770",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 770 m²",
        "value_label_reader": "Surface du terrain 770 mètres carrés",
        "generic": false
      },
      {
        "key": "outside_access",
        "value": "pool",
        "key_label": "Extérieur",
        "value_label": "Piscine",
        "value_label_reader": "Piscine",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3174435626,
    "first_publication_date": "2026-04-05 19:46:27",
    "expiration_date": "2026-06-04 19:46:27",
    "index_date": "2026-04-21 05:47:58",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison Combrit",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3174435626",
    "price": [
      297000
    ],
    "price_cents": 29700000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/ed/f3/78/edf378fbbee421f10416b83ab8f5d824c7ff1fa5.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/ed/f3/78/edf378fbbee421f10416b83ab8f5d824c7ff1fa5.jpg?rule=ad-small",
      "nb_images": 3,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ed/f3/78/edf378fbbee421f10416b83ab8f5d824c7ff1fa5.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/83/10/9d/83109deb32c4edad480858376ec650f1bcd576f1.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/02/f0/ae/02f0ae733c59ba5cd98d33678009c4844b08675d.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ed/f3/78/edf378fbbee421f10416b83ab8f5d824c7ff1fa5.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/83/10/9d/83109deb32c4edad480858376ec650f1bcd576f1.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/02/f0/ae/02f0ae733c59ba5cd98d33678009c4844b08675d.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ed/f3/78/edf378fbbee421f10416b83ab8f5d824c7ff1fa5.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/83/10/9d/83109deb32c4edad480858376ec650f1bcd576f1.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/02/f0/ae/02f0ae733c59ba5cd98d33678009c4844b08675d.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "profile_picture_url",
        "value": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/815b7316-3a05-5dd7-aa69-b96550ca31b9?rule=pp-small",
        "values": [
          "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/815b7316-3a05-5dd7-aa69-b96550ca31b9?rule=pp-small"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/815b7316-3a05-5dd7-aa69-b96550ca31b9?rule=pp-small",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "93",
        "values": [
          "93"
        ],
        "key_label": "Surface habitable",
        "value_label": "93 m²",
        "value_label_reader": "93 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "419",
        "values": [
          "419"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "419 m²",
        "value_label_reader": "419 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "5",
        "values": [
          "5"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "5",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "4 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle",
        "values_label": [
          "Maison individuelle"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "b",
        "values": [
          "b"
        ],
        "key_label": "Classe énergie",
        "value_label": "B",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "bathtub",
          "american_kitchen",
          "with_garage_or_parking_spot"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Baignoire, Cuisine ouverte, Avec garage ou place de parking",
        "value_label_reader": ", , ",
        "values_label": [
          "Baignoire",
          "Cuisine ouverte",
          "Avec garage ou place de parking"
        ],
        "values_label_reader": [
          "",
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "other",
        "values": [
          "other"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Autre",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south",
        "values": [
          "south"
        ],
        "key_label": "Exposition",
        "value_label": "Sud",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "garden"
        ],
        "key_label": "Extérieur",
        "value_label": "Jardin",
        "values_label": [
          "Jardin"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Places de parking",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "2017",
        "values": [
          "2017"
        ],
        "key_label": "Année de construction",
        "value_label": "2017",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "État du bien",
        "value_label": "Très bon état",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "29037",
        "values": [
          "29037"
        ],
        "value_label": "29037",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "3194",
        "values": [
          "3194"
        ],
        "value_label": "3194",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "23760",
        "values": [
          "23760"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "23760 €",
        "value_label_reader": "23760 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "320760",
        "values": [
          "320760"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "320760 €",
        "value_label_reader": "320760 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "6",
      "region_name": "Bretagne",
      "department_id": "29",
      "department_name": "Finistère",
      "city_label": "Combrit 29120",
      "city": "Combrit",
      "zipcode": "29120",
      "lat": 47.88697,
      "lng": -4.15519,
      "source": "address",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            -4.15519,
            47.88697
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "42190811",
      "user_id": "ee8d65e2-e732-4f52-9431-0332fb104030",
      "type": "private",
      "name": "Ann",
      "no_salesmen": false,
      "activity_sector": ""
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": false,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "b",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie B",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "419",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 419 m²",
        "value_label_reader": "Surface du terrain 419 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3156016339,
    "first_publication_date": "2026-03-06 10:25:22",
    "expiration_date": "2026-05-05 11:25:22",
    "index_date": "2026-04-21 20:54:47",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison rénovée",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3156016339",
    "price": [
      390000
    ],
    "price_cents": 39000000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/84/49/3d/84493d6b70f2ec3e55c15b04c0a6eae4fdc32894.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/84/49/3d/84493d6b70f2ec3e55c15b04c0a6eae4fdc32894.jpg?rule=ad-small",
      "nb_images": 3,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/84/49/3d/84493d6b70f2ec3e55c15b04c0a6eae4fdc32894.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c5/71/ef/c571ef9b5a0ce1be1b070fe7e463cb79afad4aae.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8a/00/30/8a003006ae2106f2ed18d1741219195c02de3a05.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/84/49/3d/84493d6b70f2ec3e55c15b04c0a6eae4fdc32894.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c5/71/ef/c571ef9b5a0ce1be1b070fe7e463cb79afad4aae.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8a/00/30/8a003006ae2106f2ed18d1741219195c02de3a05.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/84/49/3d/84493d6b70f2ec3e55c15b04c0a6eae4fdc32894.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c5/71/ef/c571ef9b5a0ce1be1b070fe7e463cb79afad4aae.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8a/00/30/8a003006ae2106f2ed18d1741219195c02de3a05.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "220",
        "values": [
          "220"
        ],
        "key_label": "Surface habitable",
        "value_label": "220 m²",
        "value_label_reader": "220 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "3800",
        "values": [
          "3800"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "3800 m²",
        "value_label_reader": "3800 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "7",
        "values": [
          "7"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "7",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "4 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "3",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle",
        "values_label": [
          "Maison individuelle"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "b",
        "values": [
          "b"
        ],
        "key_label": "Classe énergie",
        "value_label": "B",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "old_builiding",
          "cellar",
          "attic",
          "second_bathroom",
          "with_dependency",
          "equipped_kitchen",
          "american_kitchen",
          "bathtub",
          "with_garage_or_parking_spot"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Construction ancienne, Cave, Grenier, Plusieurs toilettes, Avec dépendance, Cuisine équipée, Cuisine ouverte, Baignoire, Avec garage ou place de parking",
        "value_label_reader": ", , , , , , , , ",
        "values_label": [
          "Construction ancienne",
          "Cave",
          "Grenier",
          "Plusieurs toilettes",
          "Avec dépendance",
          "Cuisine équipée",
          "Cuisine ouverte",
          "Baignoire",
          "Avec garage ou place de parking"
        ],
        "values_label_reader": [
          "",
          "",
          "",
          "",
          "",
          "",
          "",
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "other",
        "values": [
          "other"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Autre",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south_east",
        "values": [
          "south_east"
        ],
        "key_label": "Exposition",
        "value_label": "Sud-Est",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "terrace",
          "garden",
          "pool"
        ],
        "key_label": "Extérieur",
        "value_label": "Terrasse, Jardin, Piscine",
        "values_label": [
          "Terrasse",
          "Jardin",
          "Piscine"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "999999",
        "values": [
          "999999"
        ],
        "key_label": "Places de parking",
        "value_label": "6 et plus",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "1900",
        "values": [
          "1900"
        ],
        "key_label": "Année de construction",
        "value_label": "1900",
        "generic": true
      },
      {
        "key": "available_date",
        "value": "03/2026",
        "values": [
          "03/2026"
        ],
        "key_label": "Disponible à partir de",
        "value_label": "03/2026",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "État du bien",
        "value_label": "Très bon état",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "49361",
        "values": [
          "49361"
        ],
        "value_label": "49361",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "1773",
        "values": [
          "1773"
        ],
        "value_label": "1773",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "31200",
        "values": [
          "31200"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "31200 €",
        "value_label_reader": "31200 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "421200",
        "values": [
          "421200"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "421200 €",
        "value_label_reader": "421200 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "18",
      "region_name": "Pays de la Loire",
      "department_id": "49",
      "department_name": "Maine-et-Loire",
      "city_label": "Varennes-sur-Loire 49730",
      "city": "Varennes-sur-Loire",
      "zipcode": "49730",
      "lat": 47.23919,
      "lng": 0.05217,
      "source": "address",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            0.05217,
            47.23919
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "7973379",
      "user_id": "cce060cf-172c-4a29-85e3-74ca59b5bd13",
      "type": "private",
      "name": "Tiffen Béguet",
      "no_salesmen": true,
      "activity_sector": ""
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "b",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie B",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "3800",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 3800 m²",
        "value_label_reader": "Surface du terrain 3800 mètres carrés",
        "generic": false
      },
      {
        "key": "outside_access",
        "value": "pool",
        "key_label": "Extérieur",
        "value_label": "Piscine",
        "value_label_reader": "Piscine",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3179451193,
    "first_publication_date": "2026-04-14 12:03:03",
    "expiration_date": "2026-06-13 12:03:03",
    "index_date": "2026-04-21 18:47:05",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison neuve",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3179451193",
    "price": [
      659000
    ],
    "price_cents": 65900000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/5f/c5/2a/5fc52a67a53d83d6e034b3a8c5b821f34a398b1c.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/5f/c5/2a/5fc52a67a53d83d6e034b3a8c5b821f34a398b1c.jpg?rule=ad-small",
      "nb_images": 20,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/5f/c5/2a/5fc52a67a53d83d6e034b3a8c5b821f34a398b1c.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/47/fc/c6/47fcc6a0ee0a69726268e98219af0ca48d5adfac.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/83/38/f3/8338f37aaf0341ea16ab2d0bc38da1fb19515595.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/39/09/e1/3909e1c51ee17ccd4d03167659332a556292d4ff.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9f/45/48/9f454824a568a85ea95c874dfe45e4795d51d33e.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/86/9a/4d/869a4dc6acb58c7aaa405f5ce5174d079e163938.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ab/fc/da/abfcda5ca49e4841a800e8064d1dc3131b09409f.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/99/9e/73/999e73f75d6e2f9f8ff02c00a53b369afcd193ea.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a7/ac/31/a7ac3159cda518e2090b44bd2e54d33033734e83.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/06/e0/3f/06e03f6717be5625a8f3bfe5a942ba7474db5816.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c2/23/94/c22394430d1aa038863dd51754a143023b6274f7.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/19/fd/49/19fd49a9518a6cacf08fbb9e16514c941b1c6114.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/66/20/b1/6620b196f3ecfbe5875a9ebe052292363cd5b9bc.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fc/f0/88/fcf088abb654961da3b898edcd5be257ec18936c.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/33/a7/8c/33a78cd6a92c825899c14535c448ee1ba9741af4.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/6c/d4/71/6cd471271ed42eb7244763df055423ad11e1e524.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a1/91/3c/a1913cc03634c38bd300576f958a7775dc306715.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/24/17/d8/2417d8ba954433a6a15236a24cb3a43dec38f0a4.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/51/79/2f/51792f9ce3cc062b63f738cbfa4477e999b89932.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/dd/1b/c2/dd1bc2b7057ec85f5070dcda60f5cb1eddf9fc9b.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/5f/c5/2a/5fc52a67a53d83d6e034b3a8c5b821f34a398b1c.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/47/fc/c6/47fcc6a0ee0a69726268e98219af0ca48d5adfac.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/83/38/f3/8338f37aaf0341ea16ab2d0bc38da1fb19515595.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/39/09/e1/3909e1c51ee17ccd4d03167659332a556292d4ff.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9f/45/48/9f454824a568a85ea95c874dfe45e4795d51d33e.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/86/9a/4d/869a4dc6acb58c7aaa405f5ce5174d079e163938.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ab/fc/da/abfcda5ca49e4841a800e8064d1dc3131b09409f.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/99/9e/73/999e73f75d6e2f9f8ff02c00a53b369afcd193ea.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a7/ac/31/a7ac3159cda518e2090b44bd2e54d33033734e83.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/06/e0/3f/06e03f6717be5625a8f3bfe5a942ba7474db5816.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c2/23/94/c22394430d1aa038863dd51754a143023b6274f7.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/19/fd/49/19fd49a9518a6cacf08fbb9e16514c941b1c6114.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/66/20/b1/6620b196f3ecfbe5875a9ebe052292363cd5b9bc.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fc/f0/88/fcf088abb654961da3b898edcd5be257ec18936c.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/33/a7/8c/33a78cd6a92c825899c14535c448ee1ba9741af4.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/6c/d4/71/6cd471271ed42eb7244763df055423ad11e1e524.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a1/91/3c/a1913cc03634c38bd300576f958a7775dc306715.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/24/17/d8/2417d8ba954433a6a15236a24cb3a43dec38f0a4.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/51/79/2f/51792f9ce3cc062b63f738cbfa4477e999b89932.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/dd/1b/c2/dd1bc2b7057ec85f5070dcda60f5cb1eddf9fc9b.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/5f/c5/2a/5fc52a67a53d83d6e034b3a8c5b821f34a398b1c.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/47/fc/c6/47fcc6a0ee0a69726268e98219af0ca48d5adfac.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/83/38/f3/8338f37aaf0341ea16ab2d0bc38da1fb19515595.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/39/09/e1/3909e1c51ee17ccd4d03167659332a556292d4ff.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9f/45/48/9f454824a568a85ea95c874dfe45e4795d51d33e.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/86/9a/4d/869a4dc6acb58c7aaa405f5ce5174d079e163938.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ab/fc/da/abfcda5ca49e4841a800e8064d1dc3131b09409f.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/99/9e/73/999e73f75d6e2f9f8ff02c00a53b369afcd193ea.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a7/ac/31/a7ac3159cda518e2090b44bd2e54d33033734e83.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/06/e0/3f/06e03f6717be5625a8f3bfe5a942ba7474db5816.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c2/23/94/c22394430d1aa038863dd51754a143023b6274f7.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/19/fd/49/19fd49a9518a6cacf08fbb9e16514c941b1c6114.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/66/20/b1/6620b196f3ecfbe5875a9ebe052292363cd5b9bc.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fc/f0/88/fcf088abb654961da3b898edcd5be257ec18936c.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/33/a7/8c/33a78cd6a92c825899c14535c448ee1ba9741af4.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/6c/d4/71/6cd471271ed42eb7244763df055423ad11e1e524.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a1/91/3c/a1913cc03634c38bd300576f958a7775dc306715.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/24/17/d8/2417d8ba954433a6a15236a24cb3a43dec38f0a4.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/51/79/2f/51792f9ce3cc062b63f738cbfa4477e999b89932.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/dd/1b/c2/dd1bc2b7057ec85f5070dcda60f5cb1eddf9fc9b.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "rating_score",
        "value": "1",
        "values": [
          "1"
        ],
        "value_label": "1",
        "generic": false
      },
      {
        "key": "rating_count",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "profile_picture_url",
        "value": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/5755366f-1c5e-5df0-8614-a8e41f45d1cf?rule=pp-small",
        "values": [
          "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/5755366f-1c5e-5df0-8614-a8e41f45d1cf?rule=pp-small"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/5755366f-1c5e-5df0-8614-a8e41f45d1cf?rule=pp-small",
        "generic": false
      },
      {
        "key": "type_real_estate_sale",
        "value": "ancien",
        "values": [
          "ancien"
        ],
        "key_label": "Type de vente",
        "value_label": "Ancien",
        "generic": true
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "144",
        "values": [
          "144"
        ],
        "key_label": "Surface habitable",
        "value_label": "144 m²",
        "value_label_reader": "144 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "1251",
        "values": [
          "1251"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "1251 m²",
        "value_label_reader": "1251 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "5",
        "values": [
          "5"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "5",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "4 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle",
        "values_label": [
          "Maison individuelle"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "a",
        "values": [
          "a"
        ],
        "key_label": "Classe énergie",
        "value_label": "A",
        "generic": true
      },
      {
        "key": "ges",
        "value": "a",
        "values": [
          "a"
        ],
        "key_label": "GES",
        "value_label": "A",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "with_garage_or_parking_spot",
          "equipped_kitchen",
          "american_kitchen"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Avec garage ou place de parking, Cuisine équipée, Cuisine ouverte",
        "value_label_reader": ", , ",
        "values_label": [
          "Avec garage ou place de parking",
          "Cuisine équipée",
          "Cuisine ouverte"
        ],
        "values_label_reader": [
          "",
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "electric",
        "values": [
          "electric"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Électrique",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "balcony",
          "terrace",
          "garden"
        ],
        "key_label": "Extérieur",
        "value_label": "Balcon, Terrasse, Jardin",
        "values_label": [
          "Balcon",
          "Terrasse",
          "Jardin"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Places de parking",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "2024",
        "values": [
          "2024"
        ],
        "key_label": "Année de construction",
        "value_label": "2024",
        "generic": true
      },
      {
        "key": "available_date",
        "value": "05/2026",
        "values": [
          "05/2026"
        ],
        "key_label": "Disponible à partir de",
        "value_label": "05/2026",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "État du bien",
        "value_label": "Très bon état",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "100033",
        "values": [
          "100033"
        ],
        "value_label": "100033",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "1",
        "values": [
          "1"
        ],
        "value_label": "1",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "4576",
        "values": [
          "4576"
        ],
        "value_label": "4576",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "52720",
        "values": [
          "52720"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "52720 €",
        "value_label_reader": "52720 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "711720",
        "values": [
          "711720"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "711720 €",
        "value_label_reader": "711720 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_min",
        "value": "550",
        "values": [
          "550"
        ],
        "key_label": "Montant annuel énergétique minimum",
        "value_label": "550 €",
        "value_label_reader": "550 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_max",
        "value": "780",
        "values": [
          "780"
        ],
        "key_label": "Montant annuel énergétique maximum",
        "value_label": "780 €",
        "value_label_reader": "780 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "22",
      "region_name": "Rhône-Alpes",
      "department_id": "69",
      "department_name": "Rhône",
      "city_label": "Sainte-Foy-lès-Lyon 69110 La Gravière - Les Balmes",
      "city": "Sainte-Foy-lès-Lyon",
      "zipcode": "69110",
      "district": "La Gravière - Les Balmes",
      "lat": 45.72838,
      "lng": 4.77659,
      "source": "address",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            4.77659,
            45.72838
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "16304221",
      "user_id": "123bedea-c110-469e-be83-571dd566bb58",
      "type": "private",
      "name": "Manon D",
      "no_salesmen": false,
      "activity_sector": ""
    },
    "options": {
      "has_option": true,
      "booster": false,
      "photosup": true,
      "urgent": false,
      "gallery": false,
      "sub_toplist": true,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "a",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie A",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "1251",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 1251 m²",
        "value_label_reader": "Surface du terrain 1251 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3153956253,
    "first_publication_date": "2026-03-02 12:51:37",
    "expiration_date": "2026-05-01 13:51:37",
    "index_date": "2026-04-21 18:34:50",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison evim",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3153956253",
    "price": [
      199800
    ],
    "price_cents": 19980000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/94/fa/41/94fa41f0e7ac365bdb41db2e872c1101618b9c55.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/94/fa/41/94fa41f0e7ac365bdb41db2e872c1101618b9c55.jpg?rule=ad-small",
      "nb_images": 4,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/94/fa/41/94fa41f0e7ac365bdb41db2e872c1101618b9c55.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2f/13/de/2f13de43478b9c00203ba5144561bc92abc1f915.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/11/f9/22/11f9223fbda813002ab1bd5d390afdefa38faec5.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/14/b1/e2/14b1e29aaf9b8a46602be43e153a335a478e4f76.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/94/fa/41/94fa41f0e7ac365bdb41db2e872c1101618b9c55.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2f/13/de/2f13de43478b9c00203ba5144561bc92abc1f915.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/11/f9/22/11f9223fbda813002ab1bd5d390afdefa38faec5.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/14/b1/e2/14b1e29aaf9b8a46602be43e153a335a478e4f76.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/94/fa/41/94fa41f0e7ac365bdb41db2e872c1101618b9c55.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2f/13/de/2f13de43478b9c00203ba5144561bc92abc1f915.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/11/f9/22/11f9223fbda813002ab1bd5d390afdefa38faec5.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/14/b1/e2/14b1e29aaf9b8a46602be43e153a335a478e4f76.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "activity_sector",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "96",
        "values": [
          "96"
        ],
        "key_label": "Surface habitable",
        "value_label": "96 m²",
        "value_label_reader": "96 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "376",
        "values": [
          "376"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "376 m²",
        "value_label_reader": "376 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "4",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "4 ch.",
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "a",
        "values": [
          "a"
        ],
        "key_label": "Classe énergie",
        "value_label": "A",
        "generic": true
      },
      {
        "key": "ges",
        "value": "a",
        "values": [
          "a"
        ],
        "key_label": "GES",
        "value_label": "A",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "État du bien",
        "value_label": "Très bon état",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "56219",
        "values": [
          "56219"
        ],
        "value_label": "56219",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "2081",
        "values": [
          "2081"
        ],
        "value_label": "2081",
        "generic": false
      },
      {
        "key": "custom_ref",
        "value": "1453-06",
        "values": [
          "1453-06"
        ],
        "key_label": "Référence",
        "value_label": "1453-06",
        "generic": true
      },
      {
        "key": "immo_sell_type",
        "value": "new",
        "values": [
          "new"
        ],
        "value_label": "Neuf",
        "generic": false
      },
      {
        "key": "new_seller_type",
        "value": "house_builder",
        "values": [
          "house_builder"
        ],
        "value_label": "house_builder",
        "generic": false
      },
      {
        "key": "street_view_url",
        "value": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=47.780579,-2.522120",
        "values": [
          "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=47.780579,-2.522120"
        ],
        "value_label": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=47.780579,-2.522120",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      },
      {
        "key": "old_price",
        "value": "207900",
        "values": [
          "207900"
        ],
        "value_label": "207900",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "6",
      "region_name": "Bretagne",
      "department_id": "56",
      "department_name": "Morbihan",
      "city_label": "Saint-Guyomard 56460",
      "city": "Saint-Guyomard",
      "zipcode": "56460",
      "lat": 47.78058,
      "lng": -2.52212,
      "source": "address",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            -2.52212,
            47.78058
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "87310955",
      "user_id": "e6926a79-d6fa-466b-bced-f6d4f50f9bda",
      "type": "pro",
      "name": "630579273",
      "siren": "928658418",
      "no_salesmen": true,
      "activity_sector": "2"
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "a",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie A",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "376",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 376 m²",
        "value_label_reader": "Surface du terrain 376 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {},
    "top_variations": {
      "variations": [],
      "total": 0
    }
  },
  {
    "list_id": 3175401028,
    "first_publication_date": "2026-04-07 12:56:23",
    "expiration_date": "2026-06-06 12:56:23",
    "index_date": "2026-04-21 12:56:23",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Petite maison",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3175401028",
    "price": [
      40000
    ],
    "price_cents": 4000000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/10/4a/eb/104aeb88853a28f3550048391bf758637abd7948.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/10/4a/eb/104aeb88853a28f3550048391bf758637abd7948.jpg?rule=ad-small",
      "nb_images": 2,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/10/4a/eb/104aeb88853a28f3550048391bf758637abd7948.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/37/8f/c5/378fc50b03134eb6cffc95ca98f95816a7ee0765.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/10/4a/eb/104aeb88853a28f3550048391bf758637abd7948.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/37/8f/c5/378fc50b03134eb6cffc95ca98f95816a7ee0765.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/10/4a/eb/104aeb88853a28f3550048391bf758637abd7948.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/37/8f/c5/378fc50b03134eb6cffc95ca98f95816a7ee0765.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "activity_sector",
        "value": "7",
        "values": [
          "7"
        ],
        "value_label": "7",
        "generic": false
      },
      {
        "key": "type_real_estate_sale",
        "value": "ancien",
        "values": [
          "ancien"
        ],
        "key_label": "Type de vente",
        "value_label": "Ancien",
        "generic": true
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Surface habitable",
        "value_label": "3 m²",
        "value_label_reader": "3 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "4000",
        "values": [
          "4000"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "4000 m²",
        "value_label_reader": "4000 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "1 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house",
          "single_storey_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle, Maison de plain-pied",
        "values_label": [
          "Maison individuelle",
          "Maison de plain-pied"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "n",
        "values": [
          "n"
        ],
        "key_label": "Classe énergie",
        "value_label": "Non soumis au DPE",
        "value_label_reader": "Non soumis au D.P.E.",
        "generic": true
      },
      {
        "key": "ges",
        "value": "g",
        "values": [
          "g"
        ],
        "key_label": "GES",
        "value_label": "G",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "old_builiding",
          "with_garage_or_parking_spot"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Construction ancienne, Avec garage ou place de parking",
        "value_label_reader": ", ",
        "values_label": [
          "Construction ancienne",
          "Avec garage ou place de parking"
        ],
        "values_label_reader": [
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "other",
        "values": [
          "other"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Autre",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south_west",
        "values": [
          "south_west"
        ],
        "key_label": "Exposition",
        "value_label": "Sud-Ouest",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "garden"
        ],
        "key_label": "Extérieur",
        "value_label": "Jardin",
        "values_label": [
          "Jardin"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Places de parking",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "1900",
        "values": [
          "1900"
        ],
        "key_label": "Année de construction",
        "value_label": "1900",
        "generic": true
      },
      {
        "key": "available_date",
        "value": "04/2026",
        "values": [
          "04/2026"
        ],
        "key_label": "Disponible à partir de",
        "value_label": "04/2026",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "5",
        "values": [
          "5"
        ],
        "key_label": "État du bien",
        "value_label": "Travaux à prévoir",
        "generic": true
      },
      {
        "key": "fees_at_the_expanse_of",
        "value": "buyer_realestate",
        "values": [
          "buyer_realestate"
        ],
        "key_label": "Charges honoraires",
        "value_label": "Acheteur",
        "generic": false
      },
      {
        "key": "fai_included",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Honoraires inclus",
        "value_label": "Oui",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "13333",
        "values": [
          "13333"
        ],
        "value_label": "13333",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "3200",
        "values": [
          "3200"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "3200 €",
        "value_label_reader": "3200 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "43200",
        "values": [
          "43200"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "43200 €",
        "value_label_reader": "43200 Euro",
        "generic": false
      },
      {
        "key": "property_tax",
        "value": "385",
        "values": [
          "385"
        ],
        "key_label": "Taxe foncière",
        "value_label": "385 €",
        "value_label_reader": "385 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "14",
      "region_name": "Limousin",
      "department_id": "19",
      "department_name": "Corrèze",
      "city_label": "Sainte-Fortunade 19490",
      "city": "Sainte-Fortunade",
      "zipcode": "19490",
      "lat": 45.22819,
      "lng": 1.77834,
      "source": "address",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            1.77834,
            45.22819
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "69796986",
      "user_id": "b3f2e5f4-6454-4486-ac5f-047b1003ba67",
      "type": "pro",
      "name": "MONSIEUR DAMIEN BASPEYRE",
      "siren": "418580254",
      "no_salesmen": true,
      "activity_sector": "7"
    },
    "options": {
      "has_option": true,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": true,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "land_plot_surface",
        "value": "4000",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 4000 m²",
        "value_label_reader": "Surface du terrain 4000 mètres carrés",
        "generic": false
      },
      {
        "key": "real_estate_type_specificities",
        "value": "single_storey_house",
        "key_label": "Nature du bien",
        "value_label": "Maison de plain-pied",
        "value_label_reader": "Maison de plain-pied",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3182621533,
    "first_publication_date": "2026-04-19 19:06:37",
    "expiration_date": "2026-06-18 19:06:37",
    "index_date": "2026-04-21 13:08:23",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison traditionnelle",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3182621533",
    "price": [
      400000
    ],
    "price_cents": 40000000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/ab/1f/08/ab1f087131ebd663f80017a3993ea46971992a9f.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/ab/1f/08/ab1f087131ebd663f80017a3993ea46971992a9f.jpg?rule=ad-small",
      "nb_images": 3,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ab/1f/08/ab1f087131ebd663f80017a3993ea46971992a9f.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/68/3b/23/683b23067fc722aa816feccc6969fb86a8eb9a46.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e2/37/48/e237487266355c1859a7edb6b02976c497d23876.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ab/1f/08/ab1f087131ebd663f80017a3993ea46971992a9f.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/68/3b/23/683b23067fc722aa816feccc6969fb86a8eb9a46.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e2/37/48/e237487266355c1859a7edb6b02976c497d23876.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ab/1f/08/ab1f087131ebd663f80017a3993ea46971992a9f.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/68/3b/23/683b23067fc722aa816feccc6969fb86a8eb9a46.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e2/37/48/e237487266355c1859a7edb6b02976c497d23876.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "rating_score",
        "value": "0.98",
        "values": [
          "0.98"
        ],
        "value_label": "0.98",
        "generic": false
      },
      {
        "key": "rating_count",
        "value": "8",
        "values": [
          "8"
        ],
        "value_label": "8",
        "generic": false
      },
      {
        "key": "profile_picture_url",
        "value": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/e14969b8-3779-5e0f-b95a-3ea19ee15f05?rule=pp-small",
        "values": [
          "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/e14969b8-3779-5e0f-b95a-3ea19ee15f05?rule=pp-small"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/e14969b8-3779-5e0f-b95a-3ea19ee15f05?rule=pp-small",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "110",
        "values": [
          "110"
        ],
        "key_label": "Surface habitable",
        "value_label": "110 m²",
        "value_label_reader": "110 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "1600",
        "values": [
          "1600"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "1600 m²",
        "value_label_reader": "1600 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "5",
        "values": [
          "5"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "5",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "3 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle",
        "values_label": [
          "Maison individuelle"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "b",
        "values": [
          "b"
        ],
        "key_label": "Classe énergie",
        "value_label": "B",
        "generic": true
      },
      {
        "key": "ges",
        "value": "b",
        "values": [
          "b"
        ],
        "key_label": "GES",
        "value_label": "B",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "old_builiding",
          "second_bathroom",
          "air_conditioned",
          "with_garage_or_parking_spot",
          "equipped_kitchen",
          "american_kitchen",
          "with_dependency"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Construction ancienne, Plusieurs toilettes, Climatisation, Avec garage ou place de parking, Cuisine équipée, Cuisine ouverte, Avec dépendance",
        "value_label_reader": ", , , , , , ",
        "values_label": [
          "Construction ancienne",
          "Plusieurs toilettes",
          "Climatisation",
          "Avec garage ou place de parking",
          "Cuisine équipée",
          "Cuisine ouverte",
          "Avec dépendance"
        ],
        "values_label_reader": [
          "",
          "",
          "",
          "",
          "",
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "solar",
        "values": [
          "solar"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Solaire",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south",
        "values": [
          "south"
        ],
        "key_label": "Exposition",
        "value_label": "Sud",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "pool",
          "garden",
          "terrace"
        ],
        "key_label": "Extérieur",
        "value_label": "Piscine, Jardin, Terrasse",
        "values_label": [
          "Piscine",
          "Jardin",
          "Terrasse"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Places de parking",
        "value_label": "3",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "2000",
        "values": [
          "2000"
        ],
        "key_label": "Année de construction",
        "value_label": "2000",
        "generic": true
      },
      {
        "key": "available_date",
        "value": "09/2026",
        "values": [
          "09/2026"
        ],
        "key_label": "Disponible à partir de",
        "value_label": "09/2026",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "État du bien",
        "value_label": "Très bon état",
        "generic": true
      },
      {
        "key": "price_per_square_meter",
        "value": "3636",
        "values": [
          "3636"
        ],
        "value_label": "3636",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "32000",
        "values": [
          "32000"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "32000 €",
        "value_label_reader": "32000 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "432000",
        "values": [
          "432000"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "432000 €",
        "value_label_reader": "432000 Euro",
        "generic": false
      },
      {
        "key": "property_tax",
        "value": "1200",
        "values": [
          "1200"
        ],
        "key_label": "Taxe foncière",
        "value_label": "1200 €",
        "value_label_reader": "1200 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      },
      {
        "key": "old_price",
        "value": "440000",
        "values": [
          "440000"
        ],
        "value_label": "440000",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "22",
      "region_name": "Rhône-Alpes",
      "department_id": "7",
      "department_name": "Ardèche",
      "city_label": "Viviers 07220",
      "city": "Viviers",
      "zipcode": "07220",
      "lat": 44.489525,
      "lng": 4.679939,
      "source": "user",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            4.679939,
            44.489525
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "51991055",
      "user_id": "99d37071-1a12-4969-a8e8-78daace3ca84",
      "type": "private",
      "name": "aubry.bruno",
      "no_salesmen": false,
      "activity_sector": ""
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": false,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "b",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie B",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "1600",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 1600 m²",
        "value_label_reader": "Surface du terrain 1600 mètres carrés",
        "generic": false
      },
      {
        "key": "outside_access",
        "value": "pool",
        "key_label": "Extérieur",
        "value_label": "Piscine",
        "value_label_reader": "Piscine",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3171529874,
    "first_publication_date": "2026-03-31 16:02:09",
    "expiration_date": "2026-05-30 16:02:09",
    "index_date": "2026-04-21 16:02:09",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison Pyla",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3171529874",
    "price": [
      999000
    ],
    "price_cents": 99900000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/be/01/19/be01190c9eec69589e6167838f3057ad77b7868f.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/be/01/19/be01190c9eec69589e6167838f3057ad77b7868f.jpg?rule=ad-small",
      "nb_images": 14,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/be/01/19/be01190c9eec69589e6167838f3057ad77b7868f.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0b/6b/e6/0b6be6aa69d1d6cf430d6115d14e464f25f0cac8.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fe/e0/8e/fee08e8d8d5397e787c10f626a27721b322679f7.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/7c/c1/91/7cc191b0bd99db7aa12b33de89f93b36611e6bdf.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/11/a0/d8/11a0d882e29d6418b34c70a97e57590f5514bfcc.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ef/65/06/ef65065670c1f47805b91208b88eedefd118ea8d.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/46/6d/f5/466df5a57dbd16a626602bbfd520c9db21914e05.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9c/9e/b2/9c9eb2319993e6602d173b0ac6d62b5affab4ca4.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/11/5d/b1/115db18c63168904e6c7ba2405c068689d705deb.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/65/31/1e/65311ead25f098b86202e1fd3149e68bc08989d7.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9f/dd/a8/9fdda80e62b7da14af0b9795f975e040cee80cc5.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ed/50/10/ed50106696b54689e69476850ad55d273dca2030.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/71/d0/d0/71d0d085a875c2c02bab62321291d95ade3028e5.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/97/45/2d/97452daa0d222c567914983d834481d310ff4461.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/be/01/19/be01190c9eec69589e6167838f3057ad77b7868f.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0b/6b/e6/0b6be6aa69d1d6cf430d6115d14e464f25f0cac8.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fe/e0/8e/fee08e8d8d5397e787c10f626a27721b322679f7.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/7c/c1/91/7cc191b0bd99db7aa12b33de89f93b36611e6bdf.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/11/a0/d8/11a0d882e29d6418b34c70a97e57590f5514bfcc.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ef/65/06/ef65065670c1f47805b91208b88eedefd118ea8d.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/46/6d/f5/466df5a57dbd16a626602bbfd520c9db21914e05.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9c/9e/b2/9c9eb2319993e6602d173b0ac6d62b5affab4ca4.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/11/5d/b1/115db18c63168904e6c7ba2405c068689d705deb.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/65/31/1e/65311ead25f098b86202e1fd3149e68bc08989d7.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9f/dd/a8/9fdda80e62b7da14af0b9795f975e040cee80cc5.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ed/50/10/ed50106696b54689e69476850ad55d273dca2030.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/71/d0/d0/71d0d085a875c2c02bab62321291d95ade3028e5.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/97/45/2d/97452daa0d222c567914983d834481d310ff4461.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/be/01/19/be01190c9eec69589e6167838f3057ad77b7868f.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0b/6b/e6/0b6be6aa69d1d6cf430d6115d14e464f25f0cac8.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fe/e0/8e/fee08e8d8d5397e787c10f626a27721b322679f7.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/7c/c1/91/7cc191b0bd99db7aa12b33de89f93b36611e6bdf.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/11/a0/d8/11a0d882e29d6418b34c70a97e57590f5514bfcc.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ef/65/06/ef65065670c1f47805b91208b88eedefd118ea8d.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/46/6d/f5/466df5a57dbd16a626602bbfd520c9db21914e05.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9c/9e/b2/9c9eb2319993e6602d173b0ac6d62b5affab4ca4.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/11/5d/b1/115db18c63168904e6c7ba2405c068689d705deb.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/65/31/1e/65311ead25f098b86202e1fd3149e68bc08989d7.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9f/dd/a8/9fdda80e62b7da14af0b9795f975e040cee80cc5.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ed/50/10/ed50106696b54689e69476850ad55d273dca2030.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/71/d0/d0/71d0d085a875c2c02bab62321291d95ade3028e5.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/97/45/2d/97452daa0d222c567914983d834481d310ff4461.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "profile_picture_url",
        "value": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/15c53743-cdef-548c-aaf1-9c247c3bcd5c?rule=pp-small",
        "values": [
          "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/15c53743-cdef-548c-aaf1-9c247c3bcd5c?rule=pp-small"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/15c53743-cdef-548c-aaf1-9c247c3bcd5c?rule=pp-small",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "85",
        "values": [
          "85"
        ],
        "key_label": "Surface habitable",
        "value_label": "85 m²",
        "value_label_reader": "85 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "500",
        "values": [
          "500"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "500 m²",
        "value_label_reader": "500 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "4",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "3 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "single_storey_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison de plain-pied",
        "values_label": [
          "Maison de plain-pied"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "c",
        "values": [
          "c"
        ],
        "key_label": "Classe énergie",
        "value_label": "C",
        "generic": true
      },
      {
        "key": "ges",
        "value": "b",
        "values": [
          "b"
        ],
        "key_label": "GES",
        "value_label": "B",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "with_garage_or_parking_spot"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Avec garage ou place de parking",
        "values_label": [
          "Avec garage ou place de parking"
        ],
        "values_label_reader": [
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "electric",
        "values": [
          "electric"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Électrique",
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south",
        "values": [
          "south"
        ],
        "key_label": "Exposition",
        "value_label": "Sud",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "terrace",
          "garden"
        ],
        "key_label": "Extérieur",
        "value_label": "Terrasse, Jardin",
        "values_label": [
          "Terrasse",
          "Jardin"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Places de parking",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "1980",
        "values": [
          "1980"
        ],
        "key_label": "Année de construction",
        "value_label": "1980",
        "generic": true
      },
      {
        "key": "available_date",
        "value": "05/2026",
        "values": [
          "05/2026"
        ],
        "key_label": "Disponible à partir de",
        "value_label": "05/2026",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "État du bien",
        "value_label": "Très bon état",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "3000966",
        "values": [
          "3000966"
        ],
        "value_label": "3000966",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "9",
        "values": [
          "9"
        ],
        "value_label": "9",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "11753",
        "values": [
          "11753"
        ],
        "value_label": "11753",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "79920",
        "values": [
          "79920"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "79920 €",
        "value_label_reader": "79920 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "1078920",
        "values": [
          "1078920"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "1078920 €",
        "value_label_reader": "1078920 Euro",
        "generic": false
      },
      {
        "key": "property_tax",
        "value": "1200",
        "values": [
          "1200"
        ],
        "key_label": "Taxe foncière",
        "value_label": "1200 €",
        "value_label_reader": "1200 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_min",
        "value": "1070",
        "values": [
          "1070"
        ],
        "key_label": "Montant annuel énergétique minimum",
        "value_label": "1070 €",
        "value_label_reader": "1070 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_max",
        "value": "1500",
        "values": [
          "1500"
        ],
        "key_label": "Montant annuel énergétique maximum",
        "value_label": "1500 €",
        "value_label_reader": "1500 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "street_view_url",
        "value": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=44.611809,-1.202360",
        "values": [
          "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=44.611809,-1.202360"
        ],
        "value_label": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=44.611809,-1.202360",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "2",
      "region_name": "Aquitaine",
      "department_id": "33",
      "department_name": "Gironde",
      "city_label": "La Teste-de-Buch 33115 Pyla sur Mer",
      "city": "La Teste-de-Buch",
      "zipcode": "33115",
      "district": "Pyla sur Mer",
      "lat": 44.61181,
      "lng": -1.20236,
      "source": "address",
      "provider": "here",
      "type": "streetNumber",
      "origin_type": "streetNumber",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            -1.20236,
            44.61181
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "60770944",
      "user_id": "9bb03003-0d73-4b95-b1e1-15bb5c481e7a",
      "type": "private",
      "name": "Vincent",
      "no_salesmen": false,
      "activity_sector": ""
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": false,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "c",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie C",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "500",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 500 m²",
        "value_label_reader": "Surface du terrain 500 mètres carrés",
        "generic": false
      },
      {
        "key": "real_estate_type_specificities",
        "value": "single_storey_house",
        "key_label": "Nature du bien",
        "value_label": "Maison de plain-pied",
        "value_label_reader": "Maison de plain-pied",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3153629933,
    "first_publication_date": "2026-03-01 19:10:46",
    "expiration_date": "2026-04-30 20:10:46",
    "index_date": "2026-04-21 14:59:03",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison normande",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3153629933",
    "price": [
      207000
    ],
    "price_cents": 20700000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/5e/41/89/5e418989319eda4373a3202a4546571c200ef8f4.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/5e/41/89/5e418989319eda4373a3202a4546571c200ef8f4.jpg?rule=ad-small",
      "nb_images": 10,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/5e/41/89/5e418989319eda4373a3202a4546571c200ef8f4.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/30/c2/53/30c253063912e5cbba4d03a59257699fb376bd39.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/53/fe/80/53fe802ad5c363ea2bcef71e46bc1d4b173e8b2a.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/54/22/31/5422317c814d9a0d04755baa994636d02cbf61d2.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/52/bf/2e/52bf2e09b4f2744c06ce0763b44134ca6e32589e.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/40/85/01/408501bc96433afc44d1488c22fd0c8eab220259.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3d/68/c4/3d68c492a5958955933d89ef41194d1ee64c9ae9.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/84/7f/49/847f49b9e2cba22a31297e2ce386bdca2bb0a7a3.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/91/df/86/91df86d0ce233942299aabc22e658d178a8266fe.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/7b/ab/56/7bab568d34c90b60282c090e6e41d971b64d906b.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/5e/41/89/5e418989319eda4373a3202a4546571c200ef8f4.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/30/c2/53/30c253063912e5cbba4d03a59257699fb376bd39.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/53/fe/80/53fe802ad5c363ea2bcef71e46bc1d4b173e8b2a.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/54/22/31/5422317c814d9a0d04755baa994636d02cbf61d2.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/52/bf/2e/52bf2e09b4f2744c06ce0763b44134ca6e32589e.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/40/85/01/408501bc96433afc44d1488c22fd0c8eab220259.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3d/68/c4/3d68c492a5958955933d89ef41194d1ee64c9ae9.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/84/7f/49/847f49b9e2cba22a31297e2ce386bdca2bb0a7a3.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/91/df/86/91df86d0ce233942299aabc22e658d178a8266fe.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/7b/ab/56/7bab568d34c90b60282c090e6e41d971b64d906b.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/5e/41/89/5e418989319eda4373a3202a4546571c200ef8f4.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/30/c2/53/30c253063912e5cbba4d03a59257699fb376bd39.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/53/fe/80/53fe802ad5c363ea2bcef71e46bc1d4b173e8b2a.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/54/22/31/5422317c814d9a0d04755baa994636d02cbf61d2.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/52/bf/2e/52bf2e09b4f2744c06ce0763b44134ca6e32589e.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/40/85/01/408501bc96433afc44d1488c22fd0c8eab220259.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3d/68/c4/3d68c492a5958955933d89ef41194d1ee64c9ae9.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/84/7f/49/847f49b9e2cba22a31297e2ce386bdca2bb0a7a3.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/91/df/86/91df86d0ce233942299aabc22e658d178a8266fe.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/7b/ab/56/7bab568d34c90b60282c090e6e41d971b64d906b.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "rating_score",
        "value": "0.99",
        "values": [
          "0.99"
        ],
        "value_label": "0.99",
        "generic": false
      },
      {
        "key": "rating_count",
        "value": "17",
        "values": [
          "17"
        ],
        "value_label": "17",
        "generic": false
      },
      {
        "key": "profile_picture_url",
        "value": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/bb42be96-ddb6-59c9-b31c-18f083b7f661?rule=pp-small",
        "values": [
          "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/bb42be96-ddb6-59c9-b31c-18f083b7f661?rule=pp-small"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/bb42be96-ddb6-59c9-b31c-18f083b7f661?rule=pp-small",
        "generic": false
      },
      {
        "key": "type_real_estate_sale",
        "value": "ancien",
        "values": [
          "ancien"
        ],
        "key_label": "Type de vente",
        "value_label": "Ancien",
        "generic": true
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "75",
        "values": [
          "75"
        ],
        "key_label": "Surface habitable",
        "value_label": "75 m²",
        "value_label_reader": "75 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "3178",
        "values": [
          "3178"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "3178 m²",
        "value_label_reader": "3178 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "6",
        "values": [
          "6"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "6",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "3 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle",
        "values_label": [
          "Maison individuelle"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "d",
        "values": [
          "d"
        ],
        "key_label": "Classe énergie",
        "value_label": "D",
        "generic": true
      },
      {
        "key": "ges",
        "value": "b",
        "values": [
          "b"
        ],
        "key_label": "GES",
        "value_label": "B",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "old_builiding",
          "equipped_kitchen",
          "second_bathroom",
          "with_garage_or_parking_spot"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Construction ancienne, Cuisine équipée, Plusieurs toilettes, Avec garage ou place de parking",
        "value_label_reader": ", , , ",
        "values_label": [
          "Construction ancienne",
          "Cuisine équipée",
          "Plusieurs toilettes",
          "Avec garage ou place de parking"
        ],
        "values_label_reader": [
          "",
          "",
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "electric",
        "values": [
          "electric"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Électrique",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south_west",
        "values": [
          "south_west"
        ],
        "key_label": "Exposition",
        "value_label": "Sud-Ouest",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "garden"
        ],
        "key_label": "Extérieur",
        "value_label": "Jardin",
        "values_label": [
          "Jardin"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Places de parking",
        "value_label": "3",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "1786",
        "values": [
          "1786"
        ],
        "key_label": "Année de construction",
        "value_label": "1786",
        "generic": true
      },
      {
        "key": "available_date",
        "value": "04/2026",
        "values": [
          "04/2026"
        ],
        "key_label": "Disponible à partir de",
        "value_label": "04/2026",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "État du bien",
        "value_label": "Très bon état",
        "generic": true
      },
      {
        "key": "annual_charges",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Charges annuelles de copropriété",
        "value_label": "1 €",
        "value_label_reader": "1 Euro",
        "generic": false
      },
      {
        "key": "district_id",
        "value": "27049",
        "values": [
          "27049"
        ],
        "value_label": "27049",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "2760",
        "values": [
          "2760"
        ],
        "value_label": "2760",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "16560",
        "values": [
          "16560"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "16560 €",
        "value_label_reader": "16560 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "223560",
        "values": [
          "223560"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "223560 €",
        "value_label_reader": "223560 Euro",
        "generic": false
      },
      {
        "key": "property_tax",
        "value": "320",
        "values": [
          "320"
        ],
        "key_label": "Taxe foncière",
        "value_label": "320 €",
        "value_label_reader": "320 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_min",
        "value": "1060",
        "values": [
          "1060"
        ],
        "key_label": "Montant annuel énergétique minimum",
        "value_label": "1060 €",
        "value_label_reader": "1060 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_max",
        "value": "1480",
        "values": [
          "1480"
        ],
        "key_label": "Montant annuel énergétique maximum",
        "value_label": "1480 €",
        "value_label_reader": "1480 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "street_view_url",
        "value": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=48.964710,0.570530",
        "values": [
          "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=48.964710,0.570530"
        ],
        "value_label": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=48.964710,0.570530",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      },
      {
        "key": "old_price",
        "value": "217000",
        "values": [
          "217000"
        ],
        "value_label": "217000",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "11",
      "region_name": "Haute-Normandie",
      "department_id": "27",
      "department_name": "Eure",
      "city_label": "Mesnil-en-Ouche 27270",
      "city": "Mesnil-en-Ouche",
      "zipcode": "27270",
      "lat": 48.96471,
      "lng": 0.57053,
      "source": "address",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            0.57053,
            48.96471
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "28916424",
      "user_id": "c7fa8a88-c51c-457a-b576-1415dc2f433f",
      "type": "private",
      "name": "Anne",
      "no_salesmen": true,
      "activity_sector": ""
    },
    "options": {
      "has_option": true,
      "booster": false,
      "photosup": true,
      "urgent": false,
      "gallery": false,
      "sub_toplist": true,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "d",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie D",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "3178",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 3178 m²",
        "value_label_reader": "Surface du terrain 3178 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3154477708,
    "first_publication_date": "2026-03-03 12:15:06",
    "expiration_date": "2026-05-02 13:15:06",
    "index_date": "2026-04-21 13:15:07",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison Charly",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3154477708",
    "price": [
      780000
    ],
    "price_cents": 78000000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/cc/09/59/cc0959f7d8485c9ef9e6b540d83a628ee280c85a.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/cc/09/59/cc0959f7d8485c9ef9e6b540d83a628ee280c85a.jpg?rule=ad-small",
      "nb_images": 15,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/cc/09/59/cc0959f7d8485c9ef9e6b540d83a628ee280c85a.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/41/eb/45/41eb45b09360ec9941d9e7627df13e197ccd0f85.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/10/ae/4f/10ae4fb6002afea64269d4ba92c0bb3acd97ca36.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/34/4b/9f/344b9f402e73de2e821d305f4b62cdac276cfba8.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0c/17/31/0c17310ba7bb0ff56f1766fcc92913ddcccdc43d.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/4b/57/80/4b57804fde9d68e707f5bfe8025bfb9463f98eed.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e3/c5/1d/e3c51dba5092ef4052e03db13a74ac09846cc77d.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e7/39/43/e7394336ee086f325053c1cbb5df85b560e62b99.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ac/88/55/ac8855a28791ce05920ab76e04fb696eaf2b26a7.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/32/f6/03/32f6036dff182f96005e247ce5b55146aad12244.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/49/39/34/493934b2eff82ba8c7650d50af7d47e878917516.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c2/be/e5/c2bee5f88dbd918b2d7dad65a07e48bd27a4da76.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f2/99/40/f29940516f2680a30c7adf982c6401fa12333015.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8d/d7/97/8dd7972af3695c3d55c6a1df623d375045692e10.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/35/76/d3/3576d33f6ef6d32dcea6ce63482c7f9284145b4e.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/cc/09/59/cc0959f7d8485c9ef9e6b540d83a628ee280c85a.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/41/eb/45/41eb45b09360ec9941d9e7627df13e197ccd0f85.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/10/ae/4f/10ae4fb6002afea64269d4ba92c0bb3acd97ca36.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/34/4b/9f/344b9f402e73de2e821d305f4b62cdac276cfba8.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0c/17/31/0c17310ba7bb0ff56f1766fcc92913ddcccdc43d.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/4b/57/80/4b57804fde9d68e707f5bfe8025bfb9463f98eed.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e3/c5/1d/e3c51dba5092ef4052e03db13a74ac09846cc77d.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e7/39/43/e7394336ee086f325053c1cbb5df85b560e62b99.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ac/88/55/ac8855a28791ce05920ab76e04fb696eaf2b26a7.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/32/f6/03/32f6036dff182f96005e247ce5b55146aad12244.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/49/39/34/493934b2eff82ba8c7650d50af7d47e878917516.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c2/be/e5/c2bee5f88dbd918b2d7dad65a07e48bd27a4da76.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f2/99/40/f29940516f2680a30c7adf982c6401fa12333015.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8d/d7/97/8dd7972af3695c3d55c6a1df623d375045692e10.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/35/76/d3/3576d33f6ef6d32dcea6ce63482c7f9284145b4e.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/cc/09/59/cc0959f7d8485c9ef9e6b540d83a628ee280c85a.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/41/eb/45/41eb45b09360ec9941d9e7627df13e197ccd0f85.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/10/ae/4f/10ae4fb6002afea64269d4ba92c0bb3acd97ca36.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/34/4b/9f/344b9f402e73de2e821d305f4b62cdac276cfba8.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0c/17/31/0c17310ba7bb0ff56f1766fcc92913ddcccdc43d.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/4b/57/80/4b57804fde9d68e707f5bfe8025bfb9463f98eed.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e3/c5/1d/e3c51dba5092ef4052e03db13a74ac09846cc77d.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e7/39/43/e7394336ee086f325053c1cbb5df85b560e62b99.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ac/88/55/ac8855a28791ce05920ab76e04fb696eaf2b26a7.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/32/f6/03/32f6036dff182f96005e247ce5b55146aad12244.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/49/39/34/493934b2eff82ba8c7650d50af7d47e878917516.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c2/be/e5/c2bee5f88dbd918b2d7dad65a07e48bd27a4da76.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f2/99/40/f29940516f2680a30c7adf982c6401fa12333015.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8d/d7/97/8dd7972af3695c3d55c6a1df623d375045692e10.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/35/76/d3/3576d33f6ef6d32dcea6ce63482c7f9284145b4e.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "rating_score",
        "value": "0.98",
        "values": [
          "0.98"
        ],
        "value_label": "0.98",
        "generic": false
      },
      {
        "key": "rating_count",
        "value": "49",
        "values": [
          "49"
        ],
        "value_label": "49",
        "generic": false
      },
      {
        "key": "profile_picture_url",
        "value": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/2b704f0b-90cf-5e69-a700-3226e9b1a6b2?rule=pp-small",
        "values": [
          "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/2b704f0b-90cf-5e69-a700-3226e9b1a6b2?rule=pp-small"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/2b704f0b-90cf-5e69-a700-3226e9b1a6b2?rule=pp-small",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "175",
        "values": [
          "175"
        ],
        "key_label": "Surface habitable",
        "value_label": "175 m²",
        "value_label_reader": "175 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "840",
        "values": [
          "840"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "840 m²",
        "value_label_reader": "840 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "7",
        "values": [
          "7"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "7",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "4 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle",
        "values_label": [
          "Maison individuelle"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "d",
        "values": [
          "d"
        ],
        "key_label": "Classe énergie",
        "value_label": "D",
        "generic": true
      },
      {
        "key": "ges",
        "value": "b",
        "values": [
          "b"
        ],
        "key_label": "GES",
        "value_label": "B",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "heated_floor",
          "second_bathroom",
          "bathtub",
          "with_garage_or_parking_spot"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Chauffage au sol, Plusieurs toilettes, Baignoire, Avec garage ou place de parking",
        "value_label_reader": ", , , ",
        "values_label": [
          "Chauffage au sol",
          "Plusieurs toilettes",
          "Baignoire",
          "Avec garage ou place de parking"
        ],
        "values_label_reader": [
          "",
          "",
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "electric",
        "values": [
          "electric"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Électrique",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south",
        "values": [
          "south"
        ],
        "key_label": "Exposition",
        "value_label": "Sud",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "garden",
          "pool",
          "terrace"
        ],
        "key_label": "Extérieur",
        "value_label": "Jardin, Piscine, Terrasse",
        "values_label": [
          "Jardin",
          "Piscine",
          "Terrasse"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Places de parking",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "1990",
        "values": [
          "1990"
        ],
        "key_label": "Année de construction",
        "value_label": "1990",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "État du bien",
        "value_label": "Très bon état",
        "generic": true
      },
      {
        "key": "annual_charges",
        "value": "250",
        "values": [
          "250"
        ],
        "key_label": "Charges annuelles de copropriété",
        "value_label": "250 €",
        "value_label_reader": "250 Euro",
        "generic": false
      },
      {
        "key": "district_id",
        "value": "69046",
        "values": [
          "69046"
        ],
        "value_label": "69046",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "4457",
        "values": [
          "4457"
        ],
        "value_label": "4457",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "62400",
        "values": [
          "62400"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "62400 €",
        "value_label_reader": "62400 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "842400",
        "values": [
          "842400"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "842400 €",
        "value_label_reader": "842400 Euro",
        "generic": false
      },
      {
        "key": "property_tax",
        "value": "1728",
        "values": [
          "1728"
        ],
        "key_label": "Taxe foncière",
        "value_label": "1728 €",
        "value_label_reader": "1728 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_min",
        "value": "3110",
        "values": [
          "3110"
        ],
        "key_label": "Montant annuel énergétique minimum",
        "value_label": "3110 €",
        "value_label_reader": "3110 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_max",
        "value": "4250",
        "values": [
          "4250"
        ],
        "key_label": "Montant annuel énergétique maximum",
        "value_label": "4250 €",
        "value_label_reader": "4250 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "street_view_url",
        "value": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=45.642899,4.797410",
        "values": [
          "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=45.642899,4.797410"
        ],
        "value_label": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=45.642899,4.797410",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      },
      {
        "key": "old_price",
        "value": "819000",
        "values": [
          "819000"
        ],
        "value_label": "819000",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "22",
      "region_name": "Rhône-Alpes",
      "department_id": "69",
      "department_name": "Rhône",
      "city_label": "Charly 69390",
      "city": "Charly",
      "zipcode": "69390",
      "lat": 45.6429,
      "lng": 4.79741,
      "source": "address",
      "provider": "here",
      "type": "streetNumber",
      "origin_type": "streetNumber",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            4.79741,
            45.6429
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "5707006",
      "user_id": "c4169187-30a9-4e12-92a9-56e6ca8c03d0",
      "type": "private",
      "name": "Angel",
      "no_salesmen": true,
      "activity_sector": ""
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "d",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie D",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "840",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 840 m²",
        "value_label_reader": "Surface du terrain 840 mètres carrés",
        "generic": false
      },
      {
        "key": "outside_access",
        "value": "pool",
        "key_label": "Extérieur",
        "value_label": "Piscine",
        "value_label_reader": "Piscine",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3179673167,
    "first_publication_date": "2026-04-14 18:01:48",
    "expiration_date": "2026-06-13 18:01:48",
    "index_date": "2026-04-21 10:47:27",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison normande",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3179673167",
    "price": [
      212000
    ],
    "price_cents": 21200000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/8f/20/b6/8f20b6bd88452c309493ef9bc8f0aa530fb0826c.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/8f/20/b6/8f20b6bd88452c309493ef9bc8f0aa530fb0826c.jpg?rule=ad-small",
      "nb_images": 10,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8f/20/b6/8f20b6bd88452c309493ef9bc8f0aa530fb0826c.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f5/0d/2b/f50d2b90af21c7da9cc624bd5321848fea8721ff.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ef/1a/3f/ef1a3f71e70f431af95a110707e549847f22c199.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/59/70/ed/5970ed329755ac0ce8a82bf559ef1baed562e7d6.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d6/7c/d6/d67cd6e732fa1e3628f219201e5d45bfb2c598c5.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9c/f2/d6/9cf2d6b380439665f56d7509d5c1fbc5059d99df.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/98/28/bf/9828bf30db79754fae202a98d49f81acfa646851.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2c/14/60/2c14607ab56270749ee8cceaa90d256ce3bb7fab.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/56/74/7f/56747fcc950412731baa92311675e44555a92ae4.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ce/9f/3a/ce9f3a7430c34a5940831d2b70c459650d474064.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8f/20/b6/8f20b6bd88452c309493ef9bc8f0aa530fb0826c.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f5/0d/2b/f50d2b90af21c7da9cc624bd5321848fea8721ff.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ef/1a/3f/ef1a3f71e70f431af95a110707e549847f22c199.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/59/70/ed/5970ed329755ac0ce8a82bf559ef1baed562e7d6.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d6/7c/d6/d67cd6e732fa1e3628f219201e5d45bfb2c598c5.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9c/f2/d6/9cf2d6b380439665f56d7509d5c1fbc5059d99df.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/98/28/bf/9828bf30db79754fae202a98d49f81acfa646851.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2c/14/60/2c14607ab56270749ee8cceaa90d256ce3bb7fab.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/56/74/7f/56747fcc950412731baa92311675e44555a92ae4.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ce/9f/3a/ce9f3a7430c34a5940831d2b70c459650d474064.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8f/20/b6/8f20b6bd88452c309493ef9bc8f0aa530fb0826c.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f5/0d/2b/f50d2b90af21c7da9cc624bd5321848fea8721ff.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ef/1a/3f/ef1a3f71e70f431af95a110707e549847f22c199.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/59/70/ed/5970ed329755ac0ce8a82bf559ef1baed562e7d6.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d6/7c/d6/d67cd6e732fa1e3628f219201e5d45bfb2c598c5.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9c/f2/d6/9cf2d6b380439665f56d7509d5c1fbc5059d99df.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/98/28/bf/9828bf30db79754fae202a98d49f81acfa646851.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2c/14/60/2c14607ab56270749ee8cceaa90d256ce3bb7fab.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/56/74/7f/56747fcc950412731baa92311675e44555a92ae4.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ce/9f/3a/ce9f3a7430c34a5940831d2b70c459650d474064.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "activity_sector",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "type_real_estate_sale",
        "value": "ancien",
        "values": [
          "ancien"
        ],
        "key_label": "Type de vente",
        "value_label": "Ancien",
        "generic": true
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "80",
        "values": [
          "80"
        ],
        "key_label": "Surface habitable",
        "value_label": "80 m²",
        "value_label_reader": "80 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "2200",
        "values": [
          "2200"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "2200 m²",
        "value_label_reader": "2200 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "4",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "3 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle",
        "values_label": [
          "Maison individuelle"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "e",
        "values": [
          "e"
        ],
        "key_label": "Classe énergie",
        "value_label": "E",
        "generic": true
      },
      {
        "key": "ges",
        "value": "c",
        "values": [
          "c"
        ],
        "key_label": "GES",
        "value_label": "C",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "old_builiding",
          "with_garage_or_parking_spot",
          "equipped_kitchen"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Construction ancienne, Avec garage ou place de parking, Cuisine équipée",
        "value_label_reader": ", , ",
        "values_label": [
          "Construction ancienne",
          "Avec garage ou place de parking",
          "Cuisine équipée"
        ],
        "values_label_reader": [
          "",
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "electric",
        "values": [
          "electric"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Électrique",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south",
        "values": [
          "south"
        ],
        "key_label": "Exposition",
        "value_label": "Sud",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "garden"
        ],
        "key_label": "Extérieur",
        "value_label": "Jardin",
        "values_label": [
          "Jardin"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Places de parking",
        "value_label": "3",
        "generic": true
      },
      {
        "key": "fees_at_the_expanse_of",
        "value": "buyer_realestate",
        "values": [
          "buyer_realestate"
        ],
        "key_label": "Charges honoraires",
        "value_label": "Acheteur",
        "generic": false
      },
      {
        "key": "negotiating_fees_percentage",
        "value": "6",
        "values": [
          "6"
        ],
        "key_label": "Frais d'agence",
        "value_label": "6 %",
        "value_label_reader": "6 Pourcent",
        "generic": false
      },
      {
        "key": "fai_included",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Honoraires inclus",
        "value_label": "Oui",
        "generic": false
      },
      {
        "key": "pro_rates_link",
        "value": "https://www.nidimmo.com/honoraires",
        "values": [
          "https://www.nidimmo.com/honoraires"
        ],
        "value_label": "https://www.nidimmo.com/honoraires",
        "generic": false
      },
      {
        "key": "district_id",
        "value": "27170",
        "values": [
          "27170"
        ],
        "value_label": "27170",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "2650",
        "values": [
          "2650"
        ],
        "value_label": "2650",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "16000",
        "values": [
          "16000"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "16000 €",
        "value_label_reader": "16000 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "228000",
        "values": [
          "228000"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "228000 €",
        "value_label_reader": "228000 Euro",
        "generic": false
      },
      {
        "key": "price_except_fees",
        "value": "200000",
        "values": [
          "200000"
        ],
        "key_label": "Prix hors honoraires",
        "value_label": "200000 €",
        "value_label_reader": "200000 Euro",
        "generic": false
      },
      {
        "key": "fees_price",
        "value": "12000",
        "values": [
          "12000"
        ],
        "key_label": "Montant des honoraires",
        "value_label": "12000 €",
        "value_label_reader": "12000 Euro",
        "generic": false
      },
      {
        "key": "property_tax",
        "value": "823",
        "values": [
          "823"
        ],
        "key_label": "Taxe foncière",
        "value_label": "823 €",
        "value_label_reader": "823 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_min",
        "value": "1920",
        "values": [
          "1920"
        ],
        "key_label": "Montant annuel énergétique minimum",
        "value_label": "1920 €",
        "value_label_reader": "1920 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_max",
        "value": "2650",
        "values": [
          "2650"
        ],
        "key_label": "Montant annuel énergétique maximum",
        "value_label": "2650 €",
        "value_label_reader": "2650 Euro",
        "generic": false
      },
      {
        "key": "custom_ref",
        "value": "CAPUCINE",
        "values": [
          "CAPUCINE"
        ],
        "key_label": "Référence",
        "value_label": "CAPUCINE",
        "generic": true
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "street_view_url",
        "value": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=49.247139,0.378160",
        "values": [
          "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=49.247139,0.378160"
        ],
        "value_label": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=49.247139,0.378160",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "11",
      "region_name": "Haute-Normandie",
      "department_id": "27",
      "department_name": "Eure",
      "city_label": "Cormeilles 27260",
      "city": "Cormeilles",
      "zipcode": "27260",
      "lat": 49.24714,
      "lng": 0.37816,
      "source": "address",
      "provider": "here",
      "type": "streetNumber",
      "origin_type": "streetNumber",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            0.37816,
            49.24714
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "82588964",
      "user_id": "4dd2e3e4-f5a6-41ec-a787-3f2d31a2e454",
      "type": "pro",
      "name": "NID IMMO",
      "siren": "942858523",
      "pro_rates_link": "https://www.nidimmo.com/honoraires",
      "no_salesmen": true,
      "activity_sector": "2"
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "land_plot_surface",
        "value": "2200",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 2200 m²",
        "value_label_reader": "Surface du terrain 2200 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3138942953,
    "first_publication_date": "2026-03-31 08:41:20",
    "index_date": "2026-04-21 15:44:39",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison familiale",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3138942953",
    "price": [
      450000
    ],
    "price_cents": 45000000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/b4/f3/39/b4f339a1cb63bbc67cd9225e51ad54a163595a68.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/b4/f3/39/b4f339a1cb63bbc67cd9225e51ad54a163595a68.jpg?rule=ad-small",
      "nb_images": 13,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b4/f3/39/b4f339a1cb63bbc67cd9225e51ad54a163595a68.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0b/32/35/0b3235afb6e4ad3d9f6b5cf4ffeba463d32856a2.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/67/bf/74/67bf74261bf93cdb992d05012f400b435b8c8e96.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9f/10/1e/9f101ecb3c2c72f7f2b6db2a258060c5f674e658.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f1/6f/30/f16f3024211e6b31b9d5ddc2077048549ddaadc1.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/98/fa/38/98fa3842aa2b181dd1482b1e794a218bd371ed3b.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0d/34/9b/0d349bff5e9b55d8ff236110d8cad7dc92f6e195.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c8/fe/5f/c8fe5f94add79b541e4ef2ccf242a3af2ff0b5e5.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/60/84/42/60844226b51ecbe032956d68ebeb32a0d69bf58f.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d6/ee/8c/d6ee8ca423d34e82ad8f169edde6397c7d9f510f.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b5/0c/97/b50c97e32d077d88ab0f4339f520e9d25e7a6e75.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/53/6a/e6/536ae61eb9615fafb06e3124881d7967c8192e79.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c4/ba/ec/c4baec7dd7e8154a9d347ce9f5973713c9327ef7.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b4/f3/39/b4f339a1cb63bbc67cd9225e51ad54a163595a68.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0b/32/35/0b3235afb6e4ad3d9f6b5cf4ffeba463d32856a2.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/67/bf/74/67bf74261bf93cdb992d05012f400b435b8c8e96.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9f/10/1e/9f101ecb3c2c72f7f2b6db2a258060c5f674e658.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f1/6f/30/f16f3024211e6b31b9d5ddc2077048549ddaadc1.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/98/fa/38/98fa3842aa2b181dd1482b1e794a218bd371ed3b.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0d/34/9b/0d349bff5e9b55d8ff236110d8cad7dc92f6e195.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c8/fe/5f/c8fe5f94add79b541e4ef2ccf242a3af2ff0b5e5.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/60/84/42/60844226b51ecbe032956d68ebeb32a0d69bf58f.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d6/ee/8c/d6ee8ca423d34e82ad8f169edde6397c7d9f510f.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b5/0c/97/b50c97e32d077d88ab0f4339f520e9d25e7a6e75.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/53/6a/e6/536ae61eb9615fafb06e3124881d7967c8192e79.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c4/ba/ec/c4baec7dd7e8154a9d347ce9f5973713c9327ef7.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b4/f3/39/b4f339a1cb63bbc67cd9225e51ad54a163595a68.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0b/32/35/0b3235afb6e4ad3d9f6b5cf4ffeba463d32856a2.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/67/bf/74/67bf74261bf93cdb992d05012f400b435b8c8e96.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/9f/10/1e/9f101ecb3c2c72f7f2b6db2a258060c5f674e658.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f1/6f/30/f16f3024211e6b31b9d5ddc2077048549ddaadc1.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/98/fa/38/98fa3842aa2b181dd1482b1e794a218bd371ed3b.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0d/34/9b/0d349bff5e9b55d8ff236110d8cad7dc92f6e195.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c8/fe/5f/c8fe5f94add79b541e4ef2ccf242a3af2ff0b5e5.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/60/84/42/60844226b51ecbe032956d68ebeb32a0d69bf58f.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/d6/ee/8c/d6ee8ca423d34e82ad8f169edde6397c7d9f510f.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b5/0c/97/b50c97e32d077d88ab0f4339f520e9d25e7a6e75.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/53/6a/e6/536ae61eb9615fafb06e3124881d7967c8192e79.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c4/ba/ec/c4baec7dd7e8154a9d347ce9f5973713c9327ef7.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "activity_sector",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "external_ad_id",
        "value": "emeria_00682113",
        "values": [
          "emeria_00682113"
        ],
        "value_label": "emeria_00682113",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "151",
        "values": [
          "151"
        ],
        "key_label": "Surface habitable",
        "value_label": "151 m²",
        "value_label_reader": "151 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "616",
        "values": [
          "616"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "616 m²",
        "value_label_reader": "616 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "6",
        "values": [
          "6"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "6",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "4 ch.",
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "c",
        "values": [
          "c"
        ],
        "key_label": "Classe énergie",
        "value_label": "C",
        "generic": true
      },
      {
        "key": "ges",
        "value": "c",
        "values": [
          "c"
        ],
        "key_label": "GES",
        "value_label": "C",
        "generic": true
      },
      {
        "key": "heating_type",
        "value": "individual",
        "values": [
          "individual"
        ],
        "key_label": "Type de chauffage",
        "value_label": "Individuel",
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "gas",
        "values": [
          "gas"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Gaz",
        "generic": true
      },
      {
        "key": "elevator",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Ascenseur",
        "value_label": "Non",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "1960",
        "values": [
          "1960"
        ],
        "key_label": "Année de construction",
        "value_label": "1960",
        "generic": true
      },
      {
        "key": "available_date",
        "value": "03/04/2026",
        "values": [
          "03/04/2026"
        ],
        "key_label": "Disponible à partir de",
        "value_label": "03/04/2026",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "État du bien",
        "value_label": "Bon état",
        "generic": true
      },
      {
        "key": "annual_charges",
        "value": "0",
        "values": [
          "0"
        ],
        "key_label": "Charges annuelles de copropriété",
        "value_label": "0 €",
        "value_label_reader": "0 Euro",
        "generic": false
      },
      {
        "key": "security_deposit",
        "value": "0",
        "values": [
          "0"
        ],
        "key_label": "Dépôt de garantie",
        "value_label": "0 €",
        "value_label_reader": "0 Euro",
        "generic": false
      },
      {
        "key": "fai_included",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Honoraires inclus",
        "value_label": "Oui",
        "generic": false
      },
      {
        "key": "inventory_fees",
        "value": "0",
        "values": [
          "0"
        ],
        "key_label": "Frais d'état des lieux",
        "value_label": "0 €",
        "value_label_reader": "0 Euro",
        "generic": false
      },
      {
        "key": "district_id",
        "value": "3000323",
        "values": [
          "3000323"
        ],
        "value_label": "3000323",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "9",
        "values": [
          "9"
        ],
        "value_label": "9",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "mandate_type",
        "value": "exclusive",
        "values": [
          "exclusive"
        ],
        "value_label": "exclusive",
        "generic": false
      },
      {
        "key": "has_visibility_option",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "visibility_option_products",
        "value": "RE_SUPER_VISIBILITY_FEATURE",
        "values": [
          "RE_SUPER_VISIBILITY_FEATURE"
        ],
        "value_label": "RE_SUPER_VISIBILITY_FEATURE",
        "generic": false
      },
      {
        "key": "store_logo",
        "value": "https://img.leboncoin.fr/api/v1/lbcpb1/images/72/54/79/72547923-f24e-4f94-9a92-0715a1843009?rule=bo-thumb",
        "values": [
          "https://img.leboncoin.fr/api/v1/lbcpb1/images/72/54/79/72547923-f24e-4f94-9a92-0715a1843009?rule=bo-thumb"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/lbcpb1/images/72/54/79/72547923-f24e-4f94-9a92-0715a1843009?rule=bo-thumb",
        "generic": false
      },
      {
        "key": "store_name",
        "value": "Foncia Transaction Toulouse Billières",
        "values": [
          "Foncia Transaction Toulouse Billières"
        ],
        "value_label": "Foncia Transaction Toulouse Billières",
        "generic": false
      },
      {
        "key": "online_store_id",
        "value": "37495",
        "values": [
          "37495"
        ],
        "value_label": "37495",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "2980",
        "values": [
          "2980"
        ],
        "value_label": "2980",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "36000",
        "values": [
          "36000"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "36000 €",
        "value_label_reader": "36000 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "486000",
        "values": [
          "486000"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "486000 €",
        "value_label_reader": "486000 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_min",
        "value": "1930",
        "values": [
          "1930"
        ],
        "key_label": "Montant annuel énergétique minimum",
        "value_label": "1930 €",
        "value_label_reader": "1930 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_max",
        "value": "2680",
        "values": [
          "2680"
        ],
        "key_label": "Montant annuel énergétique maximum",
        "value_label": "2680 €",
        "value_label_reader": "2680 Euro",
        "generic": false
      },
      {
        "key": "custom_ref",
        "value": "00682113",
        "values": [
          "00682113"
        ],
        "key_label": "Référence",
        "value_label": "00682113",
        "generic": true
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "virtual_tour",
        "value": "https://my.matterport.com/show/?m=2eb72RcvFpt",
        "values": [
          "https://my.matterport.com/show/?m=2eb72RcvFpt"
        ],
        "value_label": "https://my.matterport.com/show/?m=2eb72RcvFpt",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "16",
      "region_name": "Midi-Pyrénées",
      "department_id": "31",
      "department_name": "Haute-Garonne",
      "city_label": "Toulouse 31100 Fontaine Lestang-Bagatelle-Papus",
      "city": "Toulouse",
      "zipcode": "31100",
      "district": "Fontaine Lestang-Bagatelle-Papus",
      "lat": 43.579506,
      "lng": 1.4142458,
      "source": "city",
      "provider": "here",
      "type": "city",
      "origin_type": "streetNumber",
      "is_shape": true,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            1.4142458,
            43.579506
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "15630691",
      "user_id": "bb6af081-4d9d-402b-afa1-01770f895613",
      "type": "pro",
      "name": "Foncia Transaction Toulouse Billières",
      "siren": "503698664",
      "no_salesmen": true,
      "activity_sector": "2"
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "c",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie C",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "616",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 616 m²",
        "value_label_reader": "Surface du terrain 616 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3177844314,
    "first_publication_date": "2026-04-11 18:05:31",
    "expiration_date": "2026-06-10 18:05:31",
    "index_date": "2026-04-21 13:01:18",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison d'architecte",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3177844314",
    "price": [
      280000
    ],
    "price_cents": 28000000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/a8/bf/82/a8bf82e217858a13a9e35f9312aab387124f8aa1.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/a8/bf/82/a8bf82e217858a13a9e35f9312aab387124f8aa1.jpg?rule=ad-small",
      "nb_images": 3,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a8/bf/82/a8bf82e217858a13a9e35f9312aab387124f8aa1.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/49/26/bc/4926bcd6097122830387d2687674a028d854fd32.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/06/12/fb/0612fb6e1ab1792de1547ce97f5446b65239bb15.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a8/bf/82/a8bf82e217858a13a9e35f9312aab387124f8aa1.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/49/26/bc/4926bcd6097122830387d2687674a028d854fd32.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/06/12/fb/0612fb6e1ab1792de1547ce97f5446b65239bb15.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a8/bf/82/a8bf82e217858a13a9e35f9312aab387124f8aa1.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/49/26/bc/4926bcd6097122830387d2687674a028d854fd32.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/06/12/fb/0612fb6e1ab1792de1547ce97f5446b65239bb15.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "profile_picture_url",
        "value": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/a11a786f-1cf0-5d47-a5ee-3cce7073ca0b?rule=pp-small",
        "values": [
          "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/a11a786f-1cf0-5d47-a5ee-3cce7073ca0b?rule=pp-small"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/a11a786f-1cf0-5d47-a5ee-3cce7073ca0b?rule=pp-small",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "144",
        "values": [
          "144"
        ],
        "key_label": "Surface habitable",
        "value_label": "144 m²",
        "value_label_reader": "144 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "611",
        "values": [
          "611"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "611 m²",
        "value_label_reader": "611 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "6",
        "values": [
          "6"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "6",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "4 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle",
        "values_label": [
          "Maison individuelle"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "c",
        "values": [
          "c"
        ],
        "key_label": "Classe énergie",
        "value_label": "C",
        "generic": true
      },
      {
        "key": "ges",
        "value": "a",
        "values": [
          "a"
        ],
        "key_label": "GES",
        "value_label": "A",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "with_garage_or_parking_spot",
          "equipped_kitchen",
          "american_kitchen"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Avec garage ou place de parking, Cuisine équipée, Cuisine ouverte",
        "value_label_reader": ", , ",
        "values_label": [
          "Avec garage ou place de parking",
          "Cuisine équipée",
          "Cuisine ouverte"
        ],
        "values_label_reader": [
          "",
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "electric",
        "values": [
          "electric"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Électrique",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south_east",
        "values": [
          "south_east"
        ],
        "key_label": "Exposition",
        "value_label": "Sud-Est",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "terrace",
          "garden"
        ],
        "key_label": "Extérieur",
        "value_label": "Terrasse, Jardin",
        "values_label": [
          "Terrasse",
          "Jardin"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Places de parking",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "1987",
        "values": [
          "1987"
        ],
        "key_label": "Année de construction",
        "value_label": "1987",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "État du bien",
        "value_label": "Bon état",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "102160",
        "values": [
          "102160"
        ],
        "value_label": "102160",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "1",
        "values": [
          "1"
        ],
        "value_label": "1",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "1944",
        "values": [
          "1944"
        ],
        "value_label": "1944",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "22400",
        "values": [
          "22400"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "22400 €",
        "value_label_reader": "22400 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "302400",
        "values": [
          "302400"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "302400 €",
        "value_label_reader": "302400 Euro",
        "generic": false
      },
      {
        "key": "property_tax",
        "value": "1700",
        "values": [
          "1700"
        ],
        "key_label": "Taxe foncière",
        "value_label": "1700 €",
        "value_label_reader": "1700 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_min",
        "value": "1700",
        "values": [
          "1700"
        ],
        "key_label": "Montant annuel énergétique minimum",
        "value_label": "1700 €",
        "value_label_reader": "1700 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_max",
        "value": "1814",
        "values": [
          "1814"
        ],
        "key_label": "Montant annuel énergétique maximum",
        "value_label": "1814 €",
        "value_label_reader": "1814 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "street_view_url",
        "value": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=48.497551,-2.739480",
        "values": [
          "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=48.497551,-2.739480"
        ],
        "value_label": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=48.497551,-2.739480",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "6",
      "region_name": "Bretagne",
      "department_id": "22",
      "department_name": "Côtes-d'Armor",
      "city_label": "Saint-Brieuc 22000 Ville Bougault - Beauvallon",
      "city": "Saint-Brieuc",
      "zipcode": "22000",
      "district": "Ville Bougault - Beauvallon",
      "lat": 48.49755,
      "lng": -2.73948,
      "source": "address",
      "provider": "here",
      "type": "streetNumber",
      "origin_type": "streetNumber",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            -2.73948,
            48.49755
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "6986682",
      "user_id": "2e841fc2-f52b-473b-85b3-de50155c6bf8",
      "type": "private",
      "name": "francoise",
      "no_salesmen": true,
      "activity_sector": ""
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": false,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "c",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie C",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "611",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 611 m²",
        "value_label_reader": "Surface du terrain 611 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3156178991,
    "first_publication_date": "2026-03-06 14:58:52",
    "expiration_date": "2026-05-05 15:58:52",
    "index_date": "2026-04-21 10:17:11",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison T4",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3156178991",
    "price": [
      285000
    ],
    "price_cents": 28500000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/df/76/4e/df764ec1aefa6f83cc157061156ceded940daad2.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/df/76/4e/df764ec1aefa6f83cc157061156ceded940daad2.jpg?rule=ad-small",
      "nb_images": 3,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/df/76/4e/df764ec1aefa6f83cc157061156ceded940daad2.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/86/26/14/862614e55896ddc321e106647049afd009f47968.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/4b/aa/eb/4baaeb81852767819ac16b18ae34586032b37331.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/df/76/4e/df764ec1aefa6f83cc157061156ceded940daad2.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/86/26/14/862614e55896ddc321e106647049afd009f47968.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/4b/aa/eb/4baaeb81852767819ac16b18ae34586032b37331.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/df/76/4e/df764ec1aefa6f83cc157061156ceded940daad2.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/86/26/14/862614e55896ddc321e106647049afd009f47968.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/4b/aa/eb/4baaeb81852767819ac16b18ae34586032b37331.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "rating_score",
        "value": "1",
        "values": [
          "1"
        ],
        "value_label": "1",
        "generic": false
      },
      {
        "key": "rating_count",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "profile_picture_url",
        "value": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/8d380ef3-2aa4-58aa-9ef1-4fe209d1e521?rule=pp-small",
        "values": [
          "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/8d380ef3-2aa4-58aa-9ef1-4fe209d1e521?rule=pp-small"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/8d380ef3-2aa4-58aa-9ef1-4fe209d1e521?rule=pp-small",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "93",
        "values": [
          "93"
        ],
        "key_label": "Surface habitable",
        "value_label": "93 m²",
        "value_label_reader": "93 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "459",
        "values": [
          "459"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "459 m²",
        "value_label_reader": "459 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "4",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "3 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "semi_detached_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison mitoyenne",
        "values_label": [
          "Maison mitoyenne"
        ],
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "with_garage_or_parking_spot"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Avec garage ou place de parking",
        "values_label": [
          "Avec garage ou place de parking"
        ],
        "values_label_reader": [
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "electric",
        "values": [
          "electric"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Électrique",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "terrace",
          "garden"
        ],
        "key_label": "Extérieur",
        "value_label": "Terrasse, Jardin",
        "values_label": [
          "Terrasse",
          "Jardin"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Places de parking",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "2026",
        "values": [
          "2026"
        ],
        "key_label": "Année de construction",
        "value_label": "2026",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "État du bien",
        "value_label": "Très bon état",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "33297",
        "values": [
          "33297"
        ],
        "value_label": "33297",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "3065",
        "values": [
          "3065"
        ],
        "value_label": "3065",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "22800",
        "values": [
          "22800"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "22800 €",
        "value_label_reader": "22800 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "307800",
        "values": [
          "307800"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "307800 €",
        "value_label_reader": "307800 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "2",
      "region_name": "Aquitaine",
      "department_id": "33",
      "department_name": "Gironde",
      "city_label": "Moulis-en-Médoc 33480",
      "city": "Moulis-en-Médoc",
      "zipcode": "33480",
      "lat": 45.0515,
      "lng": -0.77488,
      "source": "address",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            -0.77488,
            45.0515
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "6178529",
      "user_id": "8837b285-9d78-4667-b8f6-5ca96de4546b",
      "type": "private",
      "name": "Styro33",
      "no_salesmen": true,
      "activity_sector": ""
    },
    "options": {
      "has_option": true,
      "booster": false,
      "photosup": false,
      "urgent": true,
      "gallery": true,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": false,
    "attributes_listing": [
      {
        "key": "land_plot_surface",
        "value": "459",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 459 m²",
        "value_label_reader": "Surface du terrain 459 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3174821570,
    "first_publication_date": "2026-04-06 13:46:13",
    "expiration_date": "2026-06-05 13:46:13",
    "index_date": "2026-04-21 12:47:50",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison amiénoise",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3174821570",
    "price": [
      182500
    ],
    "price_cents": 18250000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/2b/29/3a/2b293af0a77b373a78711763c0cbf2d65d56f9aa.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/2b/29/3a/2b293af0a77b373a78711763c0cbf2d65d56f9aa.jpg?rule=ad-small",
      "nb_images": 4,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2b/29/3a/2b293af0a77b373a78711763c0cbf2d65d56f9aa.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/87/25/1f/87251f967b6b1afec2d6c0d4b8fc83476dbc4c83.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/77/a7/04/77a70466b97a590c13edb69306ee49bf694119aa.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/03/4e/da/034eda5fd13289a9622ff80c26474503ed288912.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2b/29/3a/2b293af0a77b373a78711763c0cbf2d65d56f9aa.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/87/25/1f/87251f967b6b1afec2d6c0d4b8fc83476dbc4c83.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/77/a7/04/77a70466b97a590c13edb69306ee49bf694119aa.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/03/4e/da/034eda5fd13289a9622ff80c26474503ed288912.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2b/29/3a/2b293af0a77b373a78711763c0cbf2d65d56f9aa.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/87/25/1f/87251f967b6b1afec2d6c0d4b8fc83476dbc4c83.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/77/a7/04/77a70466b97a590c13edb69306ee49bf694119aa.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/03/4e/da/034eda5fd13289a9622ff80c26474503ed288912.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "activity_sector",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "type_real_estate_sale",
        "value": "ancien",
        "values": [
          "ancien"
        ],
        "key_label": "Type de vente",
        "value_label": "Ancien",
        "generic": true
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "70",
        "values": [
          "70"
        ],
        "key_label": "Surface habitable",
        "value_label": "70 m²",
        "value_label_reader": "70 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "3",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "2 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "semi_detached_house",
          "townhouse"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison mitoyenne, Maison de ville",
        "values_label": [
          "Maison mitoyenne",
          "Maison de ville"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "d",
        "values": [
          "d"
        ],
        "key_label": "Classe énergie",
        "value_label": "D",
        "generic": true
      },
      {
        "key": "ges",
        "value": "d",
        "values": [
          "d"
        ],
        "key_label": "GES",
        "value_label": "D",
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "gas",
        "values": [
          "gas"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Gaz",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "État du bien",
        "value_label": "Très bon état",
        "generic": true
      },
      {
        "key": "fees_at_the_expanse_of",
        "value": "seller",
        "values": [
          "seller"
        ],
        "key_label": "Charges honoraires",
        "value_label": "Vendeur",
        "generic": false
      },
      {
        "key": "district_id",
        "value": "100658",
        "values": [
          "100658"
        ],
        "value_label": "100658",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "1",
        "values": [
          "1"
        ],
        "value_label": "1",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "2607",
        "values": [
          "2607"
        ],
        "value_label": "2607",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "14600",
        "values": [
          "14600"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "14600 €",
        "value_label_reader": "14600 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "197100",
        "values": [
          "197100"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "197100 €",
        "value_label_reader": "197100 Euro",
        "generic": false
      },
      {
        "key": "property_tax",
        "value": "1450",
        "values": [
          "1450"
        ],
        "key_label": "Taxe foncière",
        "value_label": "1450 €",
        "value_label_reader": "1450 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_min",
        "value": "1320",
        "values": [
          "1320"
        ],
        "key_label": "Montant annuel énergétique minimum",
        "value_label": "1320 €",
        "value_label_reader": "1320 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_max",
        "value": "1780",
        "values": [
          "1780"
        ],
        "key_label": "Montant annuel énergétique maximum",
        "value_label": "1780 €",
        "value_label_reader": "1780 Euro",
        "generic": false
      },
      {
        "key": "custom_ref",
        "value": "005",
        "values": [
          "005"
        ],
        "key_label": "Référence",
        "value_label": "005",
        "generic": true
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "19",
      "region_name": "Picardie",
      "department_id": "80",
      "department_name": "Somme",
      "city_label": "Amiens 80000 St.-Honoré-Jeanne d'Arc",
      "city": "Amiens",
      "zipcode": "80000",
      "district": "St.-Honoré-Jeanne d'Arc",
      "lat": 49.88478,
      "lng": 2.281,
      "source": "address",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            2.281,
            49.88478
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "87478607",
      "user_id": "8674c767-ee69-4e49-acc9-7be0ed65252b",
      "type": "pro",
      "name": "DH IMMO 80",
      "siren": "999942386",
      "no_salesmen": true,
      "activity_sector": "2"
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "d",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie D",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3180630581,
    "first_publication_date": "2026-04-16 13:55:14",
    "index_date": "2026-04-21 21:54:14",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Jolie maison",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3180630581",
    "price": [
      284900
    ],
    "price_cents": 28490000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/1f/76/c9/1f76c9f050fc1c004d56097810c14e72929e20e7.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/1f/76/c9/1f76c9f050fc1c004d56097810c14e72929e20e7.jpg?rule=ad-small",
      "nb_images": 6,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/1f/76/c9/1f76c9f050fc1c004d56097810c14e72929e20e7.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/71/1f/47/711f47edcc31080992bc5193fafb51832b8737b5.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/90/6c/28/906c28a5a85a4afd550a046ce391a61aa4fcf95e.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/35/ab/37/35ab373bef743542a37e364460b3bc4cb9282e12.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/bd/8a/d2/bd8ad29e773bfd06724b553bc6eb0cc12a731e02.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e8/40/69/e8406994e7b7dd37a9048dc49a76f6735548a056.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/1f/76/c9/1f76c9f050fc1c004d56097810c14e72929e20e7.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/71/1f/47/711f47edcc31080992bc5193fafb51832b8737b5.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/90/6c/28/906c28a5a85a4afd550a046ce391a61aa4fcf95e.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/35/ab/37/35ab373bef743542a37e364460b3bc4cb9282e12.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/bd/8a/d2/bd8ad29e773bfd06724b553bc6eb0cc12a731e02.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e8/40/69/e8406994e7b7dd37a9048dc49a76f6735548a056.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/1f/76/c9/1f76c9f050fc1c004d56097810c14e72929e20e7.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/71/1f/47/711f47edcc31080992bc5193fafb51832b8737b5.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/90/6c/28/906c28a5a85a4afd550a046ce391a61aa4fcf95e.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/35/ab/37/35ab373bef743542a37e364460b3bc4cb9282e12.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/bd/8a/d2/bd8ad29e773bfd06724b553bc6eb0cc12a731e02.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e8/40/69/e8406994e7b7dd37a9048dc49a76f6735548a056.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "activity_sector",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "external_ad_id",
        "value": "emeria_00789574",
        "values": [
          "emeria_00789574"
        ],
        "value_label": "emeria_00789574",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "100",
        "values": [
          "100"
        ],
        "key_label": "Surface habitable",
        "value_label": "100 m²",
        "value_label_reader": "100 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "542",
        "values": [
          "542"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "542 m²",
        "value_label_reader": "542 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "4",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "3 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "nb_shower_room",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de salles d'eau",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "c",
        "values": [
          "c"
        ],
        "key_label": "Classe énergie",
        "value_label": "C",
        "generic": true
      },
      {
        "key": "ges",
        "value": "c",
        "values": [
          "c"
        ],
        "key_label": "GES",
        "value_label": "C",
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "other",
        "values": [
          "other"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Autre",
        "generic": true
      },
      {
        "key": "elevator",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Ascenseur",
        "value_label": "Non",
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south",
        "values": [
          "south"
        ],
        "key_label": "Exposition",
        "value_label": "Sud",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "pool"
        ],
        "key_label": "Extérieur",
        "value_label": "Piscine",
        "values_label": [
          "Piscine"
        ],
        "generic": true
      },
      {
        "key": "building_year",
        "value": "2014",
        "values": [
          "2014"
        ],
        "key_label": "Année de construction",
        "value_label": "2014",
        "generic": true
      },
      {
        "key": "available_date",
        "value": "20/04/2026",
        "values": [
          "20/04/2026"
        ],
        "key_label": "Disponible à partir de",
        "value_label": "20/04/2026",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "État du bien",
        "value_label": "Bon état",
        "generic": true
      },
      {
        "key": "annual_charges",
        "value": "0",
        "values": [
          "0"
        ],
        "key_label": "Charges annuelles de copropriété",
        "value_label": "0 €",
        "value_label_reader": "0 Euro",
        "generic": false
      },
      {
        "key": "security_deposit",
        "value": "0",
        "values": [
          "0"
        ],
        "key_label": "Dépôt de garantie",
        "value_label": "0 €",
        "value_label_reader": "0 Euro",
        "generic": false
      },
      {
        "key": "fai_included",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Honoraires inclus",
        "value_label": "Oui",
        "generic": false
      },
      {
        "key": "inventory_fees",
        "value": "0",
        "values": [
          "0"
        ],
        "key_label": "Frais d'état des lieux",
        "value_label": "0 €",
        "value_label_reader": "0 Euro",
        "generic": false
      },
      {
        "key": "mandate_type",
        "value": "exclusive",
        "values": [
          "exclusive"
        ],
        "value_label": "exclusive",
        "generic": false
      },
      {
        "key": "has_visibility_option",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "visibility_option_products",
        "value": "RE_SUPER_VISIBILITY_FEATURE",
        "values": [
          "RE_SUPER_VISIBILITY_FEATURE"
        ],
        "value_label": "RE_SUPER_VISIBILITY_FEATURE",
        "generic": false
      },
      {
        "key": "store_logo",
        "value": "https://img.leboncoin.fr/api/v1/lbcpb1/images/72/54/79/72547923-f24e-4f94-9a92-0715a1843009?rule=bo-thumb",
        "values": [
          "https://img.leboncoin.fr/api/v1/lbcpb1/images/72/54/79/72547923-f24e-4f94-9a92-0715a1843009?rule=bo-thumb"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/lbcpb1/images/72/54/79/72547923-f24e-4f94-9a92-0715a1843009?rule=bo-thumb",
        "generic": false
      },
      {
        "key": "store_name",
        "value": "Foncia Transaction Rochefort",
        "values": [
          "Foncia Transaction Rochefort"
        ],
        "value_label": "Foncia Transaction Rochefort",
        "generic": false
      },
      {
        "key": "online_store_id",
        "value": "39949",
        "values": [
          "39949"
        ],
        "value_label": "39949",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "2849",
        "values": [
          "2849"
        ],
        "value_label": "2849",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "22792",
        "values": [
          "22792"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "22792 €",
        "value_label_reader": "22792 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "307692",
        "values": [
          "307692"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "307692 €",
        "value_label_reader": "307692 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_min",
        "value": "1010",
        "values": [
          "1010"
        ],
        "key_label": "Montant annuel énergétique minimum",
        "value_label": "1010 €",
        "value_label_reader": "1010 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_max",
        "value": "1430",
        "values": [
          "1430"
        ],
        "key_label": "Montant annuel énergétique maximum",
        "value_label": "1430 €",
        "value_label_reader": "1430 Euro",
        "generic": false
      },
      {
        "key": "custom_ref",
        "value": "00789574",
        "values": [
          "00789574"
        ],
        "key_label": "Référence",
        "value_label": "00789574",
        "generic": true
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "20",
      "region_name": "Poitou-Charentes",
      "department_id": "17",
      "department_name": "Charente-Maritime",
      "city_label": "Saint-Nazaire-sur-Charente 17780",
      "city": "Saint-Nazaire-sur-Charente",
      "zipcode": "17780",
      "lat": 45.936752,
      "lng": -1.0484247,
      "source": "city",
      "provider": "here",
      "type": "city",
      "origin_type": "streetNumber",
      "is_shape": true,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            -1.0484247,
            45.936752
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "15869793",
      "user_id": "c57d4f55-fa19-4ff9-856c-c4e0f9e1996d",
      "type": "pro",
      "name": "Foncia Transaction Rochefort",
      "siren": "503698664",
      "no_salesmen": true,
      "activity_sector": "2"
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "c",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie C",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "542",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 542 m²",
        "value_label_reader": "Surface du terrain 542 mètres carrés",
        "generic": false
      },
      {
        "key": "outside_access",
        "value": "pool",
        "key_label": "Extérieur",
        "value_label": "Piscine",
        "value_label_reader": "Piscine",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3139245334,
    "first_publication_date": "2026-04-01 00:41:45",
    "index_date": "2026-04-21 11:21:44",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Alixan maison",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3139245334",
    "price": [
      550000
    ],
    "price_cents": 55000000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/3b/3a/e5/3b3ae5cea8b1cc5b1068353c00a8a1952535f26a.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/3b/3a/e5/3b3ae5cea8b1cc5b1068353c00a8a1952535f26a.jpg?rule=ad-small",
      "nb_images": 1,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3b/3a/e5/3b3ae5cea8b1cc5b1068353c00a8a1952535f26a.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3b/3a/e5/3b3ae5cea8b1cc5b1068353c00a8a1952535f26a.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3b/3a/e5/3b3ae5cea8b1cc5b1068353c00a8a1952535f26a.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "activity_sector",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "external_ad_id",
        "value": "emeria_00764897",
        "values": [
          "emeria_00764897"
        ],
        "value_label": "emeria_00764897",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "146",
        "values": [
          "146"
        ],
        "key_label": "Surface habitable",
        "value_label": "146 m²",
        "value_label_reader": "146 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "7088",
        "values": [
          "7088"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "7088 m²",
        "value_label_reader": "7088 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "6",
        "values": [
          "6"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "6",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "3 ch.",
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "d",
        "values": [
          "d"
        ],
        "key_label": "Classe énergie",
        "value_label": "D",
        "generic": true
      },
      {
        "key": "ges",
        "value": "d",
        "values": [
          "d"
        ],
        "key_label": "GES",
        "value_label": "D",
        "generic": true
      },
      {
        "key": "heating_type",
        "value": "individual",
        "values": [
          "individual"
        ],
        "key_label": "Type de chauffage",
        "value_label": "Individuel",
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "electric",
        "values": [
          "electric"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Électrique",
        "generic": true
      },
      {
        "key": "elevator",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Ascenseur",
        "value_label": "Non",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "1993",
        "values": [
          "1993"
        ],
        "key_label": "Année de construction",
        "value_label": "1993",
        "generic": true
      },
      {
        "key": "available_date",
        "value": "16/03/2026",
        "values": [
          "16/03/2026"
        ],
        "key_label": "Disponible à partir de",
        "value_label": "16/03/2026",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "État du bien",
        "value_label": "Bon état",
        "generic": true
      },
      {
        "key": "annual_charges",
        "value": "0",
        "values": [
          "0"
        ],
        "key_label": "Charges annuelles de copropriété",
        "value_label": "0 €",
        "value_label_reader": "0 Euro",
        "generic": false
      },
      {
        "key": "security_deposit",
        "value": "0",
        "values": [
          "0"
        ],
        "key_label": "Dépôt de garantie",
        "value_label": "0 €",
        "value_label_reader": "0 Euro",
        "generic": false
      },
      {
        "key": "fai_included",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Honoraires inclus",
        "value_label": "Oui",
        "generic": false
      },
      {
        "key": "inventory_fees",
        "value": "0",
        "values": [
          "0"
        ],
        "key_label": "Frais d'état des lieux",
        "value_label": "0 €",
        "value_label_reader": "0 Euro",
        "generic": false
      },
      {
        "key": "district_id",
        "value": "26004",
        "values": [
          "26004"
        ],
        "value_label": "26004",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "mandate_type",
        "value": "exclusive",
        "values": [
          "exclusive"
        ],
        "value_label": "exclusive",
        "generic": false
      },
      {
        "key": "has_visibility_option",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "visibility_option_products",
        "value": "RE_SUPER_VISIBILITY_FEATURE",
        "values": [
          "RE_SUPER_VISIBILITY_FEATURE"
        ],
        "value_label": "RE_SUPER_VISIBILITY_FEATURE",
        "generic": false
      },
      {
        "key": "store_logo",
        "value": "https://img.leboncoin.fr/api/v1/lbcpb1/images/b7/95/1c/b7951c79-e93b-437d-a7ec-b26539e02510?rule=bo-thumb",
        "values": [
          "https://img.leboncoin.fr/api/v1/lbcpb1/images/b7/95/1c/b7951c79-e93b-437d-a7ec-b26539e02510?rule=bo-thumb"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/lbcpb1/images/b7/95/1c/b7951c79-e93b-437d-a7ec-b26539e02510?rule=bo-thumb",
        "generic": false
      },
      {
        "key": "store_name",
        "value": "Foncia Transaction Alpes Dauphiné",
        "values": [
          "Foncia Transaction Alpes Dauphiné"
        ],
        "value_label": "Foncia Transaction Alpes Dauphiné",
        "generic": false
      },
      {
        "key": "online_store_id",
        "value": "6766650",
        "values": [
          "6766650"
        ],
        "value_label": "6766650",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "3767",
        "values": [
          "3767"
        ],
        "value_label": "3767",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "44000",
        "values": [
          "44000"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "44000 €",
        "value_label_reader": "44000 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "594000",
        "values": [
          "594000"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "594000 €",
        "value_label_reader": "594000 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_min",
        "value": "1850",
        "values": [
          "1850"
        ],
        "key_label": "Montant annuel énergétique minimum",
        "value_label": "1850 €",
        "value_label_reader": "1850 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_max",
        "value": "2550",
        "values": [
          "2550"
        ],
        "key_label": "Montant annuel énergétique maximum",
        "value_label": "2550 €",
        "value_label_reader": "2550 Euro",
        "generic": false
      },
      {
        "key": "custom_ref",
        "value": "00764897",
        "values": [
          "00764897"
        ],
        "key_label": "Référence",
        "value_label": "00764897",
        "generic": true
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "virtual_tour",
        "value": "https://my.matterport.com/show/?m=iTnEUL6cA7z",
        "values": [
          "https://my.matterport.com/show/?m=iTnEUL6cA7z"
        ],
        "value_label": "https://my.matterport.com/show/?m=iTnEUL6cA7z",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "22",
      "region_name": "Rhône-Alpes",
      "department_id": "26",
      "department_name": "Drôme",
      "city_label": "Alixan 26300",
      "city": "Alixan",
      "zipcode": "26300",
      "lat": 44.96933,
      "lng": 5.033659,
      "source": "city",
      "provider": "here",
      "type": "city",
      "origin_type": "streetNumber",
      "is_shape": true,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            5.033659,
            44.96933
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "78930796",
      "user_id": "d4a7030d-1e84-4d7c-b2e8-3f91417524ca",
      "type": "pro",
      "name": "Foncia Transaction Alpes Dauphiné",
      "siren": "503698664",
      "no_salesmen": true,
      "activity_sector": "2"
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "d",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie D",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "7088",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 7088 m²",
        "value_label_reader": "Surface du terrain 7088 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3141363240,
    "first_publication_date": "2026-04-09 14:39:44",
    "expiration_date": "2026-06-08 14:39:44",
    "index_date": "2026-04-19 17:37:58",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison familiale",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3141363240",
    "price": [
      560000
    ],
    "price_cents": 56000000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/fb/58/1f/fb581f25a726488105f08c78f246df9da453eec4.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/fb/58/1f/fb581f25a726488105f08c78f246df9da453eec4.jpg?rule=ad-small",
      "nb_images": 13,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fb/58/1f/fb581f25a726488105f08c78f246df9da453eec4.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c9/47/00/c947009d20f3ffe87d0a2cdbdb54d6b45c5af8f0.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/38/5d/55/385d5500216aa672080ff8fde47ec51aca1896e3.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/56/e3/10/56e3102cd1de85ec8f8211f1be09fd0e826110e9.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/43/09/cb/4309cb11f2dd9075be8a485328d3bd023a11771d.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0a/4f/42/0a4f428091e49a5856267eba6f94cce161ab8f1c.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a2/89/11/a28911ff679f4371ba27aa8ea6f2cd65abb00011.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/30/38/ee/3038ee9003d3c2b80ae109ebd8a5ff4d4dda0372.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ec/3b/46/ec3b4669cec22edca9adc1bdd835e3bf01b45648.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3c/b2/b3/3cb2b309685472b3ea5faa57f353ed06a938b5bd.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e3/ff/69/e3ff69dc4f6d18027af4f132edc7db37ee27cb52.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/57/40/5f/57405fd95de4737cc7e5f7cf2795c5f172350eb0.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8f/29/67/8f29673f501b787db887a84c68c3417749051dba.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fb/58/1f/fb581f25a726488105f08c78f246df9da453eec4.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c9/47/00/c947009d20f3ffe87d0a2cdbdb54d6b45c5af8f0.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/38/5d/55/385d5500216aa672080ff8fde47ec51aca1896e3.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/56/e3/10/56e3102cd1de85ec8f8211f1be09fd0e826110e9.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/43/09/cb/4309cb11f2dd9075be8a485328d3bd023a11771d.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0a/4f/42/0a4f428091e49a5856267eba6f94cce161ab8f1c.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a2/89/11/a28911ff679f4371ba27aa8ea6f2cd65abb00011.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/30/38/ee/3038ee9003d3c2b80ae109ebd8a5ff4d4dda0372.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ec/3b/46/ec3b4669cec22edca9adc1bdd835e3bf01b45648.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3c/b2/b3/3cb2b309685472b3ea5faa57f353ed06a938b5bd.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e3/ff/69/e3ff69dc4f6d18027af4f132edc7db37ee27cb52.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/57/40/5f/57405fd95de4737cc7e5f7cf2795c5f172350eb0.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8f/29/67/8f29673f501b787db887a84c68c3417749051dba.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fb/58/1f/fb581f25a726488105f08c78f246df9da453eec4.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c9/47/00/c947009d20f3ffe87d0a2cdbdb54d6b45c5af8f0.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/38/5d/55/385d5500216aa672080ff8fde47ec51aca1896e3.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/56/e3/10/56e3102cd1de85ec8f8211f1be09fd0e826110e9.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/43/09/cb/4309cb11f2dd9075be8a485328d3bd023a11771d.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0a/4f/42/0a4f428091e49a5856267eba6f94cce161ab8f1c.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a2/89/11/a28911ff679f4371ba27aa8ea6f2cd65abb00011.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/30/38/ee/3038ee9003d3c2b80ae109ebd8a5ff4d4dda0372.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ec/3b/46/ec3b4669cec22edca9adc1bdd835e3bf01b45648.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/3c/b2/b3/3cb2b309685472b3ea5faa57f353ed06a938b5bd.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e3/ff/69/e3ff69dc4f6d18027af4f132edc7db37ee27cb52.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/57/40/5f/57405fd95de4737cc7e5f7cf2795c5f172350eb0.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8f/29/67/8f29673f501b787db887a84c68c3417749051dba.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "profile_picture_url",
        "value": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/d4b90f23-d80b-5cb4-bf52-9c563237b72d?rule=pp-small",
        "values": [
          "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/d4b90f23-d80b-5cb4-bf52-9c563237b72d?rule=pp-small"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/tenants/9a6387a1-6259-4f2c-a887-7e67f23dd4cb/domains/20bda58f-d650-462e-a72a-a5a7ecf2bf88/buckets/21d2b0bc-e54c-4b64-a30b-89127b18b785/images/profile/pictures/default/d4b90f23-d80b-5cb4-bf52-9c563237b72d?rule=pp-small",
        "generic": false
      },
      {
        "key": "type_real_estate_sale",
        "value": "ancien",
        "values": [
          "ancien"
        ],
        "key_label": "Type de vente",
        "value_label": "Ancien",
        "generic": true
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "170",
        "values": [
          "170"
        ],
        "key_label": "Surface habitable",
        "value_label": "170 m²",
        "value_label_reader": "170 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "2000",
        "values": [
          "2000"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "2000 m²",
        "value_label_reader": "2000 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "6",
        "values": [
          "6"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "6",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "4 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle",
        "values_label": [
          "Maison individuelle"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "d",
        "values": [
          "d"
        ],
        "key_label": "Classe énergie",
        "value_label": "D",
        "generic": true
      },
      {
        "key": "ges",
        "value": "d",
        "values": [
          "d"
        ],
        "key_label": "GES",
        "value_label": "D",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "old_builiding",
          "basement",
          "cellar",
          "second_bathroom",
          "equipped_kitchen",
          "american_kitchen",
          "bathtub",
          "with_garage_or_parking_spot"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Construction ancienne, Sous-sol, Cave, Plusieurs toilettes, Cuisine équipée, Cuisine ouverte, Baignoire, Avec garage ou place de parking",
        "value_label_reader": ", , , , , , , ",
        "values_label": [
          "Construction ancienne",
          "Sous-sol",
          "Cave",
          "Plusieurs toilettes",
          "Cuisine équipée",
          "Cuisine ouverte",
          "Baignoire",
          "Avec garage ou place de parking"
        ],
        "values_label_reader": [
          "",
          "",
          "",
          "",
          "",
          "",
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "gas",
        "values": [
          "gas"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Gaz",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south",
        "values": [
          "south"
        ],
        "key_label": "Exposition",
        "value_label": "Sud",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "terrace",
          "garden",
          "pool"
        ],
        "key_label": "Extérieur",
        "value_label": "Terrasse, Jardin, Piscine",
        "values_label": [
          "Terrasse",
          "Jardin",
          "Piscine"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "5",
        "values": [
          "5"
        ],
        "key_label": "Places de parking",
        "value_label": "5",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "1993",
        "values": [
          "1993"
        ],
        "key_label": "Année de construction",
        "value_label": "1993",
        "generic": true
      },
      {
        "key": "available_date",
        "value": "02/2026",
        "values": [
          "02/2026"
        ],
        "key_label": "Disponible à partir de",
        "value_label": "02/2026",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "État du bien",
        "value_label": "Très bon état",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "21223",
        "values": [
          "21223"
        ],
        "value_label": "21223",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "3294",
        "values": [
          "3294"
        ],
        "value_label": "3294",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "44800",
        "values": [
          "44800"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "44800 €",
        "value_label_reader": "44800 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "604800",
        "values": [
          "604800"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "604800 €",
        "value_label_reader": "604800 Euro",
        "generic": false
      },
      {
        "key": "property_tax",
        "value": "2500",
        "values": [
          "2500"
        ],
        "key_label": "Taxe foncière",
        "value_label": "2500 €",
        "value_label_reader": "2500 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_min",
        "value": "2500",
        "values": [
          "2500"
        ],
        "key_label": "Montant annuel énergétique minimum",
        "value_label": "2500 €",
        "value_label_reader": "2500 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_max",
        "value": "3500",
        "values": [
          "3500"
        ],
        "key_label": "Montant annuel énergétique maximum",
        "value_label": "3500 €",
        "value_label_reader": "3500 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "street_view_url",
        "value": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=47.350311,5.008000",
        "values": [
          "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=47.350311,5.008000"
        ],
        "value_label": "https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=47.350311,5.008000",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      },
      {
        "key": "old_price",
        "value": "575000",
        "values": [
          "575000"
        ],
        "value_label": "575000",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "5",
      "region_name": "Bourgogne",
      "department_id": "21",
      "department_name": "Côte-d'Or",
      "city_label": "Daix 21121",
      "city": "Daix",
      "zipcode": "21121",
      "lat": 47.35031,
      "lng": 5.008,
      "source": "address",
      "provider": "here",
      "type": "streetNumber",
      "origin_type": "streetNumber",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            5.008,
            47.35031
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "85555964",
      "user_id": "2187c45a-828c-446e-93db-1e3a9f8fe7e1",
      "type": "private",
      "name": "TOBY26",
      "no_salesmen": true,
      "activity_sector": ""
    },
    "options": {
      "has_option": true,
      "booster": false,
      "photosup": true,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": false,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "d",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie D",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "2000",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 2000 m²",
        "value_label_reader": "Surface du terrain 2000 mètres carrés",
        "generic": false
      },
      {
        "key": "outside_access",
        "value": "pool",
        "key_label": "Extérieur",
        "value_label": "Piscine",
        "value_label_reader": "Piscine",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3072818943,
    "first_publication_date": "2026-03-01 11:58:26",
    "expiration_date": "2026-04-30 12:58:26",
    "index_date": "2026-04-21 16:42:01",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison t6",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3072818943",
    "price": [
      394000
    ],
    "price_cents": 39400000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/a7/28/e2/a728e23777a02d98bc99ef764c9891bf98a41d87.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/a7/28/e2/a728e23777a02d98bc99ef764c9891bf98a41d87.jpg?rule=ad-small",
      "nb_images": 10,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a7/28/e2/a728e23777a02d98bc99ef764c9891bf98a41d87.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fc/48/f3/fc48f3eda70fc8193eff285816bd02759d220d3d.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/70/38/04/7038042b4a4936b86d4456bcad9ef3e738f1a26d.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/59/67/6c/59676ccd1736796a79ab06d78a8b2ccb77d99d5f.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a7/1b/82/a71b8218b4cd0ef60171517b153d621016c2e2c4.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/69/69/d0/6969d04dd950e61802a6c4bff034191d01a021b2.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/1f/e9/21/1fe921877f49cfb447875ee4a9cc268d40ed3842.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/42/73/96/427396342b22a3a52117f577f5c5f7aba3017f53.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2a/12/97/2a129759dfe61ddf8f04130577e4ea8d45fd8349.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/5d/ec/2c/5dec2cc6feb670065c5933ed6fbd176ff3e8e1cb.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a7/28/e2/a728e23777a02d98bc99ef764c9891bf98a41d87.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fc/48/f3/fc48f3eda70fc8193eff285816bd02759d220d3d.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/70/38/04/7038042b4a4936b86d4456bcad9ef3e738f1a26d.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/59/67/6c/59676ccd1736796a79ab06d78a8b2ccb77d99d5f.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a7/1b/82/a71b8218b4cd0ef60171517b153d621016c2e2c4.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/69/69/d0/6969d04dd950e61802a6c4bff034191d01a021b2.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/1f/e9/21/1fe921877f49cfb447875ee4a9cc268d40ed3842.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/42/73/96/427396342b22a3a52117f577f5c5f7aba3017f53.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2a/12/97/2a129759dfe61ddf8f04130577e4ea8d45fd8349.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/5d/ec/2c/5dec2cc6feb670065c5933ed6fbd176ff3e8e1cb.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a7/28/e2/a728e23777a02d98bc99ef764c9891bf98a41d87.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fc/48/f3/fc48f3eda70fc8193eff285816bd02759d220d3d.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/70/38/04/7038042b4a4936b86d4456bcad9ef3e738f1a26d.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/59/67/6c/59676ccd1736796a79ab06d78a8b2ccb77d99d5f.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/a7/1b/82/a71b8218b4cd0ef60171517b153d621016c2e2c4.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/69/69/d0/6969d04dd950e61802a6c4bff034191d01a021b2.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/1f/e9/21/1fe921877f49cfb447875ee4a9cc268d40ed3842.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/42/73/96/427396342b22a3a52117f577f5c5f7aba3017f53.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/2a/12/97/2a129759dfe61ddf8f04130577e4ea8d45fd8349.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/5d/ec/2c/5dec2cc6feb670065c5933ed6fbd176ff3e8e1cb.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "activity_sector",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "176",
        "values": [
          "176"
        ],
        "key_label": "Surface habitable",
        "value_label": "176 m²",
        "value_label_reader": "176 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "500",
        "values": [
          "500"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "500 m²",
        "value_label_reader": "500 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "6",
        "values": [
          "6"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "6",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "4 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle",
        "values_label": [
          "Maison individuelle"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "g",
        "values": [
          "g"
        ],
        "key_label": "Classe énergie",
        "value_label": "G",
        "generic": true
      },
      {
        "key": "ges",
        "value": "d",
        "values": [
          "d"
        ],
        "key_label": "GES",
        "value_label": "D",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "old_builiding",
          "with_garage_or_parking_spot"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Construction ancienne, Avec garage ou place de parking",
        "value_label_reader": ", ",
        "values_label": [
          "Construction ancienne",
          "Avec garage ou place de parking"
        ],
        "values_label_reader": [
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south",
        "values": [
          "south"
        ],
        "key_label": "Exposition",
        "value_label": "Sud",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "garden"
        ],
        "key_label": "Extérieur",
        "value_label": "Jardin",
        "values_label": [
          "Jardin"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Places de parking",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "État du bien",
        "value_label": "Bon état",
        "generic": true
      },
      {
        "key": "fees_at_the_expanse_of",
        "value": "seller",
        "values": [
          "seller"
        ],
        "key_label": "Charges honoraires",
        "value_label": "Vendeur",
        "generic": false
      },
      {
        "key": "district_id",
        "value": "5036",
        "values": [
          "5036"
        ],
        "value_label": "5036",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "2239",
        "values": [
          "2239"
        ],
        "value_label": "2239",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "31520",
        "values": [
          "31520"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "31520 €",
        "value_label_reader": "31520 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "425520",
        "values": [
          "425520"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "425520 €",
        "value_label_reader": "425520 Euro",
        "generic": false
      },
      {
        "key": "property_tax",
        "value": "1200",
        "values": [
          "1200"
        ],
        "key_label": "Taxe foncière",
        "value_label": "1200 €",
        "value_label_reader": "1200 Euro",
        "generic": false
      },
      {
        "key": "custom_ref",
        "value": "EMB07",
        "values": [
          "EMB07"
        ],
        "key_label": "Référence",
        "value_label": "EMB07",
        "generic": true
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      },
      {
        "key": "old_price",
        "value": "395000",
        "values": [
          "395000"
        ],
        "value_label": "395000",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "21",
      "region_name": "Provence-Alpes-Côte d'Azur",
      "department_id": "5",
      "department_name": "Hautes-Alpes",
      "city_label": "Châteauroux-les-Alpes 05380",
      "city": "Châteauroux-les-Alpes",
      "zipcode": "05380",
      "lat": 44.61486,
      "lng": 6.52517,
      "source": "address",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            6.52517,
            44.61486
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "76945136",
      "user_id": "a6abe0d2-e962-48e7-89e1-570ee3220c92",
      "type": "pro",
      "name": "AGENCE DERWEL HYOT",
      "siren": "435375019",
      "no_salesmen": true,
      "activity_sector": "2"
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "land_plot_surface",
        "value": "500",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 500 m²",
        "value_label_reader": "Surface du terrain 500 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3088059398,
    "first_publication_date": "2026-03-16 17:10:11",
    "expiration_date": "2026-05-15 18:10:11",
    "index_date": "2026-04-21 18:02:27",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison 108m²",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3088059398",
    "price": [
      184900
    ],
    "price_cents": 18490000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/fe/2b/eb/fe2beb1bc311be2a1bca3deb90a0666f637ac40b.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/fe/2b/eb/fe2beb1bc311be2a1bca3deb90a0666f637ac40b.jpg?rule=ad-small",
      "nb_images": 3,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fe/2b/eb/fe2beb1bc311be2a1bca3deb90a0666f637ac40b.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/05/71/36/05713641b2d990be07b027f0b3c390aea388c604.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/23/27/ec/2327ec9e78642e4256986c64affbfae0d7297415.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fe/2b/eb/fe2beb1bc311be2a1bca3deb90a0666f637ac40b.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/05/71/36/05713641b2d990be07b027f0b3c390aea388c604.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/23/27/ec/2327ec9e78642e4256986c64affbfae0d7297415.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/fe/2b/eb/fe2beb1bc311be2a1bca3deb90a0666f637ac40b.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/05/71/36/05713641b2d990be07b027f0b3c390aea388c604.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/23/27/ec/2327ec9e78642e4256986c64affbfae0d7297415.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "activity_sector",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "108",
        "values": [
          "108"
        ],
        "key_label": "Surface habitable",
        "value_label": "108 m²",
        "value_label_reader": "108 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "477",
        "values": [
          "477"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "477 m²",
        "value_label_reader": "477 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "5",
        "values": [
          "5"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "5",
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "a",
        "values": [
          "a"
        ],
        "key_label": "Classe énergie",
        "value_label": "A",
        "generic": true
      },
      {
        "key": "ges",
        "value": "a",
        "values": [
          "a"
        ],
        "key_label": "GES",
        "value_label": "A",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "86294",
        "values": [
          "86294"
        ],
        "value_label": "86294",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "1712",
        "values": [
          "1712"
        ],
        "value_label": "1712",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "new",
        "values": [
          "new"
        ],
        "value_label": "Neuf",
        "generic": false
      },
      {
        "key": "new_seller_type",
        "value": "house_builder",
        "values": [
          "house_builder"
        ],
        "value_label": "house_builder",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "20",
      "region_name": "Poitou-Charentes",
      "department_id": "86",
      "department_name": "Vienne",
      "city_label": "Vouillé 86190",
      "city": "Vouillé",
      "zipcode": "86190",
      "lat": 46.63875,
      "lng": 0.16487,
      "source": "address",
      "provider": "here",
      "type": "streetNumber",
      "origin_type": "streetNumber",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            0.16487,
            46.63875
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "59875532",
      "user_id": "bf5fad9d-825d-4097-8897-6afa25a34455",
      "type": "pro",
      "name": "MC2",
      "siren": "832148217",
      "no_salesmen": true,
      "activity_sector": "2"
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "a",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie A",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "477",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 477 m²",
        "value_label_reader": "Surface du terrain 477 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {},
    "top_variations": {
      "variations": [],
      "total": 0
    }
  },
  {
    "list_id": 3135409767,
    "first_publication_date": "2026-01-27 16:15:42",
    "index_date": "2026-04-21 17:41:31",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison t4",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3135409767",
    "price": [
      98000
    ],
    "price_cents": 9800000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/cf/54/69/cf5469d09220c986b18febc2ca5d9549df825519.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/cf/54/69/cf5469d09220c986b18febc2ca5d9549df825519.jpg?rule=ad-small",
      "nb_images": 12,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/cf/54/69/cf5469d09220c986b18febc2ca5d9549df825519.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e7/9e/fd/e79efd1eed0657aff723c7843716517a7f45c74d.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/81/14/6d/81146d78f47225665cf21c35f61628be1c359e67.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ff/13/7f/ff137f2598eb4ff51a43e6eac97fe43339b0b826.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/19/a4/62/19a462b171fd27876a002bb1f2156b1836ce1786.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0a/1f/c5/0a1fc5ce7ebd9dde3ac59c6ea1316754512f8c10.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f8/92/01/f89201983124bdb992352ec2fa42bc7f3280d4cf.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/10/e0/bb/10e0bb4325492bd7b9ce7c37440228c4f281b558.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/88/0f/3e/880f3ec5bf48ec2e278be0ae524748bb16b91ac5.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8f/82/cb/8f82cb093211a6d703e0a45f33315cdfa3ba4c6d.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/5e/f2/50/5ef250387a898542a10855db441d24df98e52a7d.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0c/d2/e9/0cd2e9b8e8547eee18112250e93ba7230a75ea18.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/cf/54/69/cf5469d09220c986b18febc2ca5d9549df825519.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e7/9e/fd/e79efd1eed0657aff723c7843716517a7f45c74d.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/81/14/6d/81146d78f47225665cf21c35f61628be1c359e67.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ff/13/7f/ff137f2598eb4ff51a43e6eac97fe43339b0b826.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/19/a4/62/19a462b171fd27876a002bb1f2156b1836ce1786.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0a/1f/c5/0a1fc5ce7ebd9dde3ac59c6ea1316754512f8c10.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f8/92/01/f89201983124bdb992352ec2fa42bc7f3280d4cf.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/10/e0/bb/10e0bb4325492bd7b9ce7c37440228c4f281b558.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/88/0f/3e/880f3ec5bf48ec2e278be0ae524748bb16b91ac5.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8f/82/cb/8f82cb093211a6d703e0a45f33315cdfa3ba4c6d.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/5e/f2/50/5ef250387a898542a10855db441d24df98e52a7d.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0c/d2/e9/0cd2e9b8e8547eee18112250e93ba7230a75ea18.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/cf/54/69/cf5469d09220c986b18febc2ca5d9549df825519.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e7/9e/fd/e79efd1eed0657aff723c7843716517a7f45c74d.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/81/14/6d/81146d78f47225665cf21c35f61628be1c359e67.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/ff/13/7f/ff137f2598eb4ff51a43e6eac97fe43339b0b826.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/19/a4/62/19a462b171fd27876a002bb1f2156b1836ce1786.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0a/1f/c5/0a1fc5ce7ebd9dde3ac59c6ea1316754512f8c10.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/f8/92/01/f89201983124bdb992352ec2fa42bc7f3280d4cf.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/10/e0/bb/10e0bb4325492bd7b9ce7c37440228c4f281b558.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/88/0f/3e/880f3ec5bf48ec2e278be0ae524748bb16b91ac5.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/8f/82/cb/8f82cb093211a6d703e0a45f33315cdfa3ba4c6d.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/5e/f2/50/5ef250387a898542a10855db441d24df98e52a7d.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/0c/d2/e9/0cd2e9b8e8547eee18112250e93ba7230a75ea18.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "activity_sector",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "external_ad_id",
        "value": "emeria_00682859",
        "values": [
          "emeria_00682859"
        ],
        "value_label": "emeria_00682859",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "68",
        "values": [
          "68"
        ],
        "key_label": "Surface habitable",
        "value_label": "68 m²",
        "value_label_reader": "68 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "750",
        "values": [
          "750"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "750 m²",
        "value_label_reader": "750 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "4",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "3 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "with_garage_or_parking_spot"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Avec garage ou place de parking",
        "values_label": [
          "Avec garage ou place de parking"
        ],
        "values_label_reader": [
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_type",
        "value": "individual",
        "values": [
          "individual"
        ],
        "key_label": "Type de chauffage",
        "value_label": "Individuel",
        "generic": true
      },
      {
        "key": "elevator",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Ascenseur",
        "value_label": "Non",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "1956",
        "values": [
          "1956"
        ],
        "key_label": "Année de construction",
        "value_label": "1956",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "État du bien",
        "value_label": "Bon état",
        "generic": true
      },
      {
        "key": "annual_charges",
        "value": "0",
        "values": [
          "0"
        ],
        "key_label": "Charges annuelles de copropriété",
        "value_label": "0 €",
        "value_label_reader": "0 Euro",
        "generic": false
      },
      {
        "key": "security_deposit",
        "value": "0",
        "values": [
          "0"
        ],
        "key_label": "Dépôt de garantie",
        "value_label": "0 €",
        "value_label_reader": "0 Euro",
        "generic": false
      },
      {
        "key": "fai_included",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Honoraires inclus",
        "value_label": "Oui",
        "generic": false
      },
      {
        "key": "inventory_fees",
        "value": "0",
        "values": [
          "0"
        ],
        "key_label": "Frais d'état des lieux",
        "value_label": "0 €",
        "value_label_reader": "0 Euro",
        "generic": false
      },
      {
        "key": "district_id",
        "value": "24266",
        "values": [
          "24266"
        ],
        "value_label": "24266",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "mandate_type",
        "value": "simple",
        "values": [
          "simple"
        ],
        "value_label": "simple",
        "generic": false
      },
      {
        "key": "has_visibility_option",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "visibility_option_products",
        "value": "RE_SUPER_VISIBILITY_FEATURE",
        "values": [
          "RE_SUPER_VISIBILITY_FEATURE"
        ],
        "value_label": "RE_SUPER_VISIBILITY_FEATURE",
        "generic": false
      },
      {
        "key": "store_logo",
        "value": "https://img.leboncoin.fr/api/v1/lbcpb1/images/72/54/79/72547923-f24e-4f94-9a92-0715a1843009?rule=bo-thumb",
        "values": [
          "https://img.leboncoin.fr/api/v1/lbcpb1/images/72/54/79/72547923-f24e-4f94-9a92-0715a1843009?rule=bo-thumb"
        ],
        "value_label": "https://img.leboncoin.fr/api/v1/lbcpb1/images/72/54/79/72547923-f24e-4f94-9a92-0715a1843009?rule=bo-thumb",
        "generic": false
      },
      {
        "key": "store_name",
        "value": "FT Bordeaux Est - Perigueux",
        "values": [
          "FT Bordeaux Est - Perigueux"
        ],
        "value_label": "FT Bordeaux Est - Perigueux",
        "generic": false
      },
      {
        "key": "online_store_id",
        "value": "1813192",
        "values": [
          "1813192"
        ],
        "value_label": "1813192",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "1441",
        "values": [
          "1441"
        ],
        "value_label": "1441",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "7840",
        "values": [
          "7840"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "7840 €",
        "value_label_reader": "7840 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "105840",
        "values": [
          "105840"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "105840 €",
        "value_label_reader": "105840 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_min",
        "value": "1663",
        "values": [
          "1663"
        ],
        "key_label": "Montant annuel énergétique minimum",
        "value_label": "1663 €",
        "value_label_reader": "1663 Euro",
        "generic": false
      },
      {
        "key": "annual_energy_budget_max",
        "value": "2251",
        "values": [
          "2251"
        ],
        "key_label": "Montant annuel énergétique maximum",
        "value_label": "2251 €",
        "value_label_reader": "2251 Euro",
        "generic": false
      },
      {
        "key": "custom_ref",
        "value": "00682859",
        "values": [
          "00682859"
        ],
        "key_label": "Référence",
        "value_label": "00682859",
        "generic": true
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "true",
        "values": [
          "true"
        ],
        "value_label": "true",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "2",
      "region_name": "Aquitaine",
      "department_id": "24",
      "department_name": "Dordogne",
      "city_label": "Mensignac 24350 Les Jarthes",
      "city": "Mensignac",
      "zipcode": "24350",
      "district": "Les Jarthes",
      "lat": 45.235783,
      "lng": 0.5330284,
      "source": "city",
      "provider": "here",
      "type": "district",
      "origin_type": "district",
      "is_shape": true,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            0.5330284,
            45.235783
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "62906675",
      "user_id": "2ee05d2f-1ec2-410a-a7f3-e447e542e574",
      "type": "pro",
      "name": "FT Bordeaux Est - Perigueux",
      "siren": "503698664",
      "no_salesmen": true,
      "activity_sector": "2"
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "land_plot_surface",
        "value": "750",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 750 m²",
        "value_label_reader": "Surface du terrain 750 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 2947137619,
    "first_publication_date": "2026-04-13 10:32:06",
    "expiration_date": "2026-06-12 10:32:06",
    "index_date": "2026-04-13 10:32:06",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison terrain",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/2947137619",
    "price": [
      355000
    ],
    "price_cents": 35500000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/51/d9/ad/51d9ad53766cb24fcf5b91f20fc711ff3bab531b.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/51/d9/ad/51d9ad53766cb24fcf5b91f20fc711ff3bab531b.jpg?rule=ad-small",
      "nb_images": 3,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/51/d9/ad/51d9ad53766cb24fcf5b91f20fc711ff3bab531b.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/61/f5/4a/61f54ab582b9d6ad5e6990a2c070b4cc03e06d73.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e0/bf/0c/e0bf0c8b3a4f81e09c8d7d5ecf8d61abdb38ef91.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/51/d9/ad/51d9ad53766cb24fcf5b91f20fc711ff3bab531b.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/61/f5/4a/61f54ab582b9d6ad5e6990a2c070b4cc03e06d73.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e0/bf/0c/e0bf0c8b3a4f81e09c8d7d5ecf8d61abdb38ef91.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/51/d9/ad/51d9ad53766cb24fcf5b91f20fc711ff3bab531b.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/61/f5/4a/61f54ab582b9d6ad5e6990a2c070b4cc03e06d73.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/e0/bf/0c/e0bf0c8b3a4f81e09c8d7d5ecf8d61abdb38ef91.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "activity_sector",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "110",
        "values": [
          "110"
        ],
        "key_label": "Surface habitable",
        "value_label": "110 m²",
        "value_label_reader": "110 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "305",
        "values": [
          "305"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "305 m²",
        "value_label_reader": "305 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "6",
        "values": [
          "6"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "6",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "4",
        "values": [
          "4"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "4 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "individual_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison individuelle",
        "values_label": [
          "Maison individuelle"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "a",
        "values": [
          "a"
        ],
        "key_label": "Classe énergie",
        "value_label": "A",
        "generic": true
      },
      {
        "key": "ges",
        "value": "a",
        "values": [
          "a"
        ],
        "key_label": "GES",
        "value_label": "A",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "new_building",
          "with_garage_or_parking_spot"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Construction récente, Avec garage ou place de parking",
        "value_label_reader": ", ",
        "values_label": [
          "Construction récente",
          "Avec garage ou place de parking"
        ],
        "values_label_reader": [
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "garden"
        ],
        "key_label": "Extérieur",
        "value_label": "Jardin",
        "values_label": [
          "Jardin"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Places de parking",
        "value_label": "2",
        "generic": true
      },
      {
        "key": "district_id",
        "value": "35228",
        "values": [
          "35228"
        ],
        "value_label": "35228",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "3227",
        "values": [
          "3227"
        ],
        "value_label": "3227",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "28400",
        "values": [
          "28400"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "28400 €",
        "value_label_reader": "28400 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "383400",
        "values": [
          "383400"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "383400 €",
        "value_label_reader": "383400 Euro",
        "generic": false
      },
      {
        "key": "custom_ref",
        "value": "EC",
        "values": [
          "EC"
        ],
        "key_label": "Référence",
        "value_label": "EC",
        "generic": true
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      },
      {
        "key": "old_price",
        "value": "419500",
        "values": [
          "419500"
        ],
        "value_label": "419500",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "6",
      "region_name": "Bretagne",
      "department_id": "35",
      "department_name": "Ille-et-Vilaine",
      "city_label": "Pleurtuit 35730",
      "city": "Pleurtuit",
      "zipcode": "35730",
      "lat": 48.588863,
      "lng": -2.0453386,
      "source": "city",
      "provider": "here",
      "type": "",
      "origin_type": "",
      "is_shape": true,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            -2.0453386,
            48.588863
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "48376826",
      "user_id": "bc873d20-dde4-46b2-825a-6bd00c459214",
      "type": "pro",
      "name": "CEBIFI CONSTRUCTIONS",
      "siren": "491157863",
      "no_salesmen": true,
      "activity_sector": "2"
    },
    "options": {
      "has_option": false,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": false,
      "sub_toplist": false,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "a",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie A",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "305",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 305 m²",
        "value_label_reader": "Surface du terrain 305 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  },
  {
    "list_id": 3179416955,
    "first_publication_date": "2026-04-14 11:10:33",
    "expiration_date": "2026-06-13 11:10:33",
    "index_date": "2026-04-21 11:10:34",
    "status": "active",
    "category_id": "9",
    "category_name": "Ventes immobilières",
    "subject": "Maison T3",
    "body": "",
    "brand": "leboncoin",
    "ad_type": "offer",
    "url": "https://www.leboncoin.fr/ad/ventes_immobilieres/3179416955",
    "price": [
      299000
    ],
    "price_cents": 29900000,
    "images": {
      "thumb_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/29/3b/e3/293be35726715a6b41c96403f366bda5d6fb0e9b.jpg?rule=ad-thumb",
      "small_url": "https://img.leboncoin.fr/api/v1/lbcpb1/images/29/3b/e3/293be35726715a6b41c96403f366bda5d6fb0e9b.jpg?rule=ad-small",
      "nb_images": 4,
      "urls": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/29/3b/e3/293be35726715a6b41c96403f366bda5d6fb0e9b.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c3/ab/43/c3ab43bbbda0e487e92b5f8d8b32e08f8b6402bc.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b9/4e/18/b94e184805a9955654e3ebacb19ca8e2996e75c3.jpg?rule=ad-image",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/71/73/d5/7173d546e90217e439307f678aead8c5fcd8a45c.jpg?rule=ad-image"
      ],
      "urls_thumb": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/29/3b/e3/293be35726715a6b41c96403f366bda5d6fb0e9b.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c3/ab/43/c3ab43bbbda0e487e92b5f8d8b32e08f8b6402bc.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b9/4e/18/b94e184805a9955654e3ebacb19ca8e2996e75c3.jpg?rule=ad-thumb",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/71/73/d5/7173d546e90217e439307f678aead8c5fcd8a45c.jpg?rule=ad-thumb"
      ],
      "urls_large": [
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/29/3b/e3/293be35726715a6b41c96403f366bda5d6fb0e9b.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/c3/ab/43/c3ab43bbbda0e487e92b5f8d8b32e08f8b6402bc.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/b9/4e/18/b94e184805a9955654e3ebacb19ca8e2996e75c3.jpg?rule=ad-large",
        "https://img.leboncoin.fr/api/v1/lbcpb1/images/71/73/d5/7173d546e90217e439307f678aead8c5fcd8a45c.jpg?rule=ad-large"
      ]
    },
    "attributes": [
      {
        "key": "activity_sector",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "type_real_estate_sale",
        "value": "ancien",
        "values": [
          "ancien"
        ],
        "key_label": "Type de vente",
        "value_label": "Ancien",
        "generic": true
      },
      {
        "key": "real_estate_type",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Type de bien",
        "value_label": "Maison",
        "generic": true
      },
      {
        "key": "square",
        "value": "62",
        "values": [
          "62"
        ],
        "key_label": "Surface habitable",
        "value_label": "62 m²",
        "value_label_reader": "62 Mètres carrés",
        "generic": true
      },
      {
        "key": "land_plot_surface",
        "value": "221",
        "values": [
          "221"
        ],
        "key_label": "Surface totale du terrain",
        "value_label": "221 m²",
        "value_label_reader": "221 Mètres carrés",
        "generic": true
      },
      {
        "key": "rooms",
        "value": "3",
        "values": [
          "3"
        ],
        "key_label": "Nombre de pièces",
        "value_label": "3",
        "generic": true
      },
      {
        "key": "bedrooms",
        "value": "2",
        "values": [
          "2"
        ],
        "key_label": "Nombre de chambres",
        "value_label": "2 ch.",
        "generic": true
      },
      {
        "key": "nb_bathrooms",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de salles de bain",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "real_estate_type_specificities",
        "value": "",
        "values": [
          "semi_detached_house"
        ],
        "key_label": "Nature du bien",
        "value_label": "Maison mitoyenne",
        "values_label": [
          "Maison mitoyenne"
        ],
        "generic": true
      },
      {
        "key": "energy_rate",
        "value": "b",
        "values": [
          "b"
        ],
        "key_label": "Classe énergie",
        "value_label": "B",
        "generic": true
      },
      {
        "key": "ges",
        "value": "b",
        "values": [
          "b"
        ],
        "key_label": "GES",
        "value_label": "B",
        "generic": true
      },
      {
        "key": "specificities",
        "value": "",
        "values": [
          "air_conditioned",
          "with_garage_or_parking_spot",
          "american_kitchen"
        ],
        "key_label": "Caractéristiques",
        "value_label": "Climatisation, Avec garage ou place de parking, Cuisine ouverte",
        "value_label_reader": ", , ",
        "values_label": [
          "Climatisation",
          "Avec garage ou place de parking",
          "Cuisine ouverte"
        ],
        "values_label_reader": [
          "",
          "",
          ""
        ],
        "generic": true
      },
      {
        "key": "heating_mode",
        "value": "electric",
        "values": [
          "electric"
        ],
        "key_label": "Mode de chauffage",
        "value_label": "Électrique",
        "generic": true
      },
      {
        "key": "nb_floors_house",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Nombre de niveaux",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "orientation",
        "value": "south",
        "values": [
          "south"
        ],
        "key_label": "Exposition",
        "value_label": "Sud",
        "generic": true
      },
      {
        "key": "outside_access",
        "value": "",
        "values": [
          "garden"
        ],
        "key_label": "Extérieur",
        "value_label": "Jardin",
        "values_label": [
          "Jardin"
        ],
        "generic": true
      },
      {
        "key": "nb_parkings",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Places de parking",
        "value_label": "1",
        "generic": true
      },
      {
        "key": "building_year",
        "value": "2026",
        "values": [
          "2026"
        ],
        "key_label": "Année de construction",
        "value_label": "2026",
        "generic": true
      },
      {
        "key": "available_date",
        "value": "04/2026",
        "values": [
          "04/2026"
        ],
        "key_label": "Disponible à partir de",
        "value_label": "04/2026",
        "generic": true
      },
      {
        "key": "global_condition",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "État du bien",
        "value_label": "Très bon état",
        "generic": true
      },
      {
        "key": "fees_at_the_expanse_of",
        "value": "seller",
        "values": [
          "seller"
        ],
        "key_label": "Charges honoraires",
        "value_label": "Vendeur",
        "generic": false
      },
      {
        "key": "annual_charges",
        "value": "1",
        "values": [
          "1"
        ],
        "key_label": "Charges annuelles de copropriété",
        "value_label": "1 €",
        "value_label_reader": "1 Euro",
        "generic": false
      },
      {
        "key": "district_id",
        "value": "34123",
        "values": [
          "34123"
        ],
        "value_label": "34123",
        "generic": false
      },
      {
        "key": "district_visibility",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "district_type_id",
        "value": "2",
        "values": [
          "2"
        ],
        "value_label": "2",
        "generic": false
      },
      {
        "key": "district_resolution_type",
        "value": "integration",
        "values": [
          "integration"
        ],
        "value_label": "integration",
        "generic": false
      },
      {
        "key": "price_per_square_meter",
        "value": "4823",
        "values": [
          "4823"
        ],
        "value_label": "4823",
        "generic": false
      },
      {
        "key": "estimated_notary_fees",
        "value": "23920",
        "values": [
          "23920"
        ],
        "key_label": "Frais de notaire estimés",
        "value_label": "23920 €",
        "value_label_reader": "23920 Euro",
        "generic": false
      },
      {
        "key": "estimated_total_property_price",
        "value": "322920",
        "values": [
          "322920"
        ],
        "key_label": "Montant estimé du projet",
        "value_label": "322920 €",
        "value_label_reader": "322920 Euro",
        "generic": false
      },
      {
        "key": "property_tax",
        "value": "1000",
        "values": [
          "1000"
        ],
        "key_label": "Taxe foncière",
        "value_label": "1000 €",
        "value_label_reader": "1000 Euro",
        "generic": false
      },
      {
        "key": "immo_sell_type",
        "value": "old",
        "values": [
          "old"
        ],
        "value_label": "old",
        "generic": false
      },
      {
        "key": "is_import",
        "value": "false",
        "values": [
          "false"
        ],
        "value_label": "false",
        "generic": false
      },
      {
        "key": "lease_type",
        "value": "sell",
        "values": [
          "sell"
        ],
        "value_label": "sell",
        "generic": false
      },
      {
        "key": "old_price",
        "value": "310000",
        "values": [
          "310000"
        ],
        "value_label": "310000",
        "generic": false
      }
    ],
    "location": {
      "country_id": "FR",
      "region_id": "13",
      "region_name": "Languedoc-Roussillon",
      "department_id": "34",
      "department_name": "Hérault",
      "city_label": "Juvignac 34990",
      "city": "Juvignac",
      "zipcode": "34990",
      "lat": 43.61272,
      "lng": 3.81151,
      "source": "address",
      "provider": "here",
      "type": "street",
      "origin_type": "street",
      "is_shape": false,
      "feature": {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": [
            3.81151,
            43.61272
          ]
        },
        "properties": null
      }
    },
    "owner": {
      "store_id": "316435",
      "user_id": "2de32eaf-c24b-417f-81e8-9484e256c963",
      "type": "pro",
      "name": "KALELITHOS",
      "siren": "492876958",
      "no_salesmen": true,
      "activity_sector": "2"
    },
    "options": {
      "has_option": true,
      "booster": false,
      "photosup": false,
      "urgent": false,
      "gallery": true,
      "sub_toplist": true,
      "continuous_top_ads": false,
      "highlight": false
    },
    "has_phone": true,
    "attributes_listing": [
      {
        "key": "energy_rate",
        "value": "b",
        "key_label": "Classe énergie",
        "value_label": "DPE",
        "value_label_reader": "Classe énergie B",
        "generic": false
      },
      {
        "key": "land_plot_surface",
        "value": "221",
        "key_label": "Surface totale du terrain",
        "value_label": "Terrain : 221 m²",
        "value_label_reader": "Surface du terrain 221 mètres carrés",
        "generic": false
      }
    ],
    "is_boosted": true,
    "similar": null,
    "counters": {}
  }
]
```



The response above shows the shape of a real estate ad, with price, location, attributes, and owner data all present in the JSON. With single page scraping working, the next step is to add pagination for real volume.

### How to Scrape Multiple Search Pages with Pagination

Leboncoin paginates searches with the `page` query parameter, and the scraper can use `SCRAPFLY.concurrent_scrape` to request several pages at once rather than looping sequentially.

python```python
from scrapfly import ScrapeConfig, ScrapflyClient, ScrapeApiResponse
from typing import Dict, List
import asyncio
import json

SCRAPFLY = ScrapflyClient(key="Your Scrapfly API key")

BASE_CONFIG = {"asp": True, "country": "fr"}

async def scrape_search(url: str, max_pages: int = 5) -> List[Dict]:
    """Scrape a Leboncoin search across multiple pages concurrently."""
    print(f"scraping search {url}")
    first_page = await SCRAPFLY.async_scrape(ScrapeConfig(url, **BASE_CONFIG))
    search_data = parse_search(first_page)

    # Build the list of remaining pages.
    other_pages = [
        ScrapeConfig(f"{first_page.context['url']}&page={page}", **BASE_CONFIG)
        for page in range(2, max_pages + 1)
    ]
    # Fetch the remaining pages concurrently.
    async for result in SCRAPFLY.concurrent_scrape(other_pages):
        search_data.extend(parse_search(result))

    print(f"Collected {len(search_data)} ads across {max_pages} pages")
    return search_data

asyncio.run(scrape_search(
    url="https://www.leboncoin.fr/recherche?text=maison&category=9",
    max_pages=5,
))
```



The updated `scrape_search` coroutine accepts a `max_pages` argument, fetches the first page to anchor the pagination, and then builds a list of `ScrapeConfig` objects for pages two through `max_pages`. The `SCRAPFLY.concurrent_scrape` async generator runs all remaining pages in parallel.

With search coverage in place, the next section drills into individual ad pages for the richer per listing data.



Scrapfly

#### Scale your web scraping effortlessly

Scrapfly handles proxies, browsers, and anti-bot bypass — so you can focus on data.

[Try Free →](https://scrapfly.io/register)## How to Scrape Individual Leboncoin Listings

Individual Leboncoin ads reuse the `__NEXT_DATA__` technique, but the JSON lives at a different path, `["props"]["pageProps"]["ad"]`. Ad pages return the full description, the complete attributes list, and the seller profile, which is more than what the search response carries per listing.

### How Does Ad Page Data Differ from Search Data?

Ad pages expose a superset of what search results return. The key differences are the full `body` description text, the complete attributes list including category specific fields, any phone number visibility flags, and richer location detail on professional listings. The URL format used for scraping ad pages is `https://www.leboncoin.fr/ad/{category}/{ad_id}`, which is the form that the Next.js router handles directly.

### How to Scrape Multiple Ads Concurrently

The `scrape_ad` function below parses one ad page, and the runner at the bottom scrapes several ads concurrently using `asyncio.as_completed`.

python```python
from scrapfly import ScrapeConfig, ScrapflyClient, ScrapeApiResponse
from typing import Dict, List
import asyncio
import json

SCRAPFLY = ScrapflyClient(key="Your Scrapfly API key")

BASE_CONFIG = {"asp": True, "country": "fr"}

def parse_ad(result: ScrapeApiResponse) -> Dict:
    """Parse a single Leboncoin ad from the __NEXT_DATA__ JSON."""
    next_data = result.selector.css("script[id='__NEXT_DATA__']::text").get()
    return json.loads(next_data)["props"]["pageProps"]["ad"]

async def scrape_ad(url: str) -> Dict:
    """Scrape a single Leboncoin ad page."""
    print(f"scraping ad {url}")
    result = await SCRAPFLY.async_scrape(ScrapeConfig(url, **BASE_CONFIG))
    return parse_ad(result)

async def run() -> List[Dict]:
    ad_urls = [
        "https://www.leboncoin.fr/ad/ventes_immobilieres/3111241558",
        "https://www.leboncoin.fr/ad/ventes_immobilieres/3162981297",
        "https://www.leboncoin.fr/ad/ventes_immobilieres/3184424365",
    ]
    to_scrape = [scrape_ad(url) for url in ad_urls]
    ad_data: List[Dict] = []
    for response in asyncio.as_completed(to_scrape):
        ad_data.append(await response)
    return ad_data

ads = asyncio.run(run())
print(f"Scraped {len(ads)} ads")
```



The `parse_ad` function pulls the single ad object out of `pageProps.ad`, and `scrape_ad` wraps one Scrapfly request. The `run` coroutine dispatches three ad scrapes concurrently with `asyncio.as_completed`, which lets each ad come back as soon as its own request finishes instead of waiting for the slowest one.

With ad level extraction working, the next section shows the same scraper running against a non real estate category.



## How to Scrape Different Leboncoin Categories

The `__NEXT_DATA__` scraping pattern is category agnostic, so the code from the search and ad sections works for every Leboncoin vertical with just a URL change. The category specific attributes vary, but the JSON envelope and the path into `pageProps.searchData.ads` do not.

### How to Adapt the Scraper for Vehicle Listings

For vehicles, the search URL uses `category=2` and the ads include brand, model, year, mileage, fuel type, and transmission fields inside the same `attributes` array.

python```python
async def scrape_vehicles(keyword: str, max_pages: int = 3) -> List[Dict]:
    """Scrape Leboncoin vehicle listings and keep only vehicle-specific fields."""
    url = f"https://www.leboncoin.fr/recherche?text={keyword}&category=2"
    ads = await scrape_search(url, max_pages=max_pages)

    vehicle_fields = {"brand", "model", "regdate", "mileage", "fuel", "gearbox"}
    summary: List[Dict] = []
    for ad in ads:
        flat_attrs = {a["key"]: a.get("value_label") for a in ad.get("attributes", [])}
        summary.append({
            "list_id": ad["list_id"],
            "title": ad["subject"],
            "price_eur": ad["price"][0] if ad.get("price") else None,
            "city": ad.get("location", {}).get("city"),
            **{k: flat_attrs.get(k) for k in vehicle_fields},
        })
    return summary

vehicles = asyncio.run(scrape_vehicles("peugeot 208", max_pages=2))
print(json.dumps(vehicles[:2], indent=2, ensure_ascii=False))
```



The `scrape_vehicles` coroutine reuses `scrape_search` from earlier and layers a projection step on top, flattening the attributes array into a dictionary keyed by attribute name and keeping only the vehicle fields. A sample output row looks like :

Outputjson```json
[
  {
    "list_id": 3131838929,
    "title": "Peugeot 208 Peugeot 208 Allure automatique",
    "price_eur": 13990,
    "city": "Apprieu",
    "mileage": "59600 km",
    "brand": "Peugeot",
    "regdate": "2021",
    "fuel": "Essence",
    "gearbox": "Automatique",
    "model": "208"
  },
  {
    "list_id": 3180211735,
    "title": "Peugeot 208",
    "price_eur": 4900,
    "city": "Vénissieux",
    "mileage": "103229 km",
    "brand": "Peugeot",
    "regdate": "2015",
    "fuel": "Essence",
    "gearbox": "Manuelle",
    "model": "208"
  }
]
```



The table below summarizes the most useful Leboncoin category codes and the attributes worth extracting for each. | Category | URL parameter | Key attributes |
|---|---|---|
| Real estate | `category=9` | `square`, `rooms`, `energy_rate`, `real_estate_type` |
| Vehicles | `category=2` | `brand`, `model`, `regdate`, `mileage`, `fuel`, `gearbox` |
| Electronics | `category=17` | `item_condition`, `brand` |
| Furniture | `category=19` | `item_condition`, `shipping_type` |
| Jobs | `category=33` | `contract_type`, `salary_range` |

With multi category support in place, the next section handles what to do with the data once the scraper has collected it.



## How to Save Scraped Leboncoin Data to JSON and CSV

The simplest way to persist scraped Leboncoin data is Python's built in `json` and `csv` modules, with JSON preserving the nested structure and CSV offering a flatter view for spreadsheet analysis. Both formats are worth supporting because downstream consumers usually pick one or the other.

python```python
import csv
import json
from typing import Dict, List

def save_to_json(ads: List[Dict], filename: str) -> None:
    """Save the full ad objects, including nested fields, to JSON."""
    with open(filename, "w", encoding="utf-8") as file:
        json.dump(ads, file, indent=2, ensure_ascii=False)

def save_to_csv(ads: List[Dict], filename: str) -> None:
    """Flatten ads to a spreadsheet friendly CSV."""
    rows: List[Dict] = []
    for ad in ads:
        flat_attrs = {a["key"]: a.get("value_label") for a in ad.get("attributes", [])}
        rows.append({
            "list_id": ad.get("list_id"),
            "title": ad.get("subject"),
            "price_eur": ad["price"][0] if ad.get("price") else None,
            "category": ad.get("category_name"),
            "city": ad.get("location", {}).get("city"),
            "zipcode": ad.get("location", {}).get("zipcode"),
            "region": ad.get("location", {}).get("region_name"),
            "owner_type": ad.get("owner", {}).get("type"),
            "url": ad.get("url"),
            **flat_attrs,
        })

    fieldnames = sorted({key for row in rows for key in row.keys()})
    with open(filename, "w", encoding="utf-8", newline="") as file:
        writer = csv.DictWriter(file, fieldnames=fieldnames)
        writer.writeheader()
        writer.writerows(rows)

save_to_json(ads, "leboncoin_ads.json")
save_to_csv(ads, "leboncoin_ads.csv")
```



The `save_to_json` helper dumps the raw ad objects with `ensure_ascii=False`, which keeps French characters readable in the file. The `save_to_csv` helper flattens each ad into a single row, expands the `attributes` array into one column per attribute key.

For larger runs, it is worth deduplicating on `list_id` before writing, because Leboncoin occasionally resurfaces the same ad across neighboring search pages. If the scraper is feeding an API or a dashboard, the guide below covers turning scraped output into a serviceable endpoint.

[How to Turn Web Scrapers into Data APIsDelivering web scraped data can be a difficult problem - what if we could scrape data on demand? In this tutorial we'll be building a data API using FastAPI and Python for real time web scraping.](https://scrapfly.io/blog/posts/how-to-turn-web-scrapers-into-data-apis)



## FAQ

Is it legal to scrape Leboncoin.fr?Scraping publicly visible Leboncoin listings is generally legal, but personal data like seller names and phone numbers falls under GDPR, so downstream storage and processing must have a lawful basis. Keep the request rate reasonable, honor Leboncoin's [robots.txt](https://www.leboncoin.fr/robots.txt), and review Leboncoin's terms of service before running a production scraper. For a broader overview, see our [web scraping legality guide](https://scrapfly.io/is-web-scraping-legal).







Does Leboncoin have a public API?No. Leboncoin does not offer a public API, and the closest alternative is the unofficial [lbc](https://github.com/etienne-hd/lbc) Python library that wraps Leboncoin's internal endpoints. The `lbc` library works for quick experiments but is undocumented, breaks with site changes, and typically requires French residential proxies to avoid 403 responses, so the `__NEXT_DATA__` scraping approach in this guide is the more stable path for production use.







What anti-bot protection does Leboncoin use?Leboncoin uses DataDome for bot detection, which evaluates TLS fingerprints, browser telemetry, and IP reputation rather than only user agent strings. Standard proxy rotation is not enough on its own, because DataDome will still block a rotating residential pool if the TLS handshake looks like Python's default client.







Can I scrape Leboncoin without Python using a no-code tool?Yes. Several no-code and low-code options exist, including [Apify](https://scrapfly.io/compare/apify-alternative) actors for Leboncoin and browser based tools like Piloterr and Axiom.ai. These options are fine for small, ad hoc extractions, but the Python approach in this guide gives full control over pagination, category coverage, data shape, and retry logic, which is what most production pipelines need.







Can I scrape other European marketplace sites with this approach?Yes. Many European classifieds and real estate sites run on Next.js or a similar framework that embeds full JSON state in the HTML, so the `__NEXT_DATA__` pattern transfers directly. For concrete examples, see our guides to [How to Scrape Idealista.com](https://scrapfly.io/blog/posts/how-to-scrape-idealista) and [How to Scrape Immobilienscout24.de Real Estate Data](https://scrapfly.io/blog/posts/how-to-scrape-immobillienscout24-real-estate-property-data). Each site has its own anti-bot stack, but the JSON extraction pattern is the same.

[**View Source Code**github.com/scrapfly/scrapfly-scrapers/tree/main/leboncoin-scraper](https://github.com/scrapfly/scrapfly-scrapers/tree/main/leboncoin-scraper)









## Summary

This guide built a complete Leboncoin.fr scraper in Python, covering search pagination, ad detail pages, a non real estate category example, JSON and CSV export, and retry logic with exponential backoff. The core idea throughout is that Leboncoin's Next.js frontend serves the full listing data as JSON inside `__NEXT_DATA__`, so a single parsing pattern replaces dozens of brittle CSS selectors.

From here, the scraper is ready to grow in a few obvious directions. Customizing the category filter set turns the same code into a targeted vehicle or furniture tracker. The full source lives on the [Scrapfly scrapers GitHub repo](https://github.com/scrapfly/scrapfly-scrapers/tree/main/leboncoin-scraper) and is a good starting point for customization.

You can of course build the bypass layer yourself with fingerprint aware HTTP clients and a managed proxy pool, but outsourcing that layer lets the team stay focused on the data rather than the arms race.



Legal Disclaimer and PrecautionsThis tutorial covers popular web scraping techniques for education. Interacting with public servers requires diligence and respect:

- Do not scrape at rates that could damage the website.
- Do not scrape data that's not available publicly.
- Do not store PII of EU citizens protected by GDPR.
- Do not repurpose *entire* public datasets which can be illegal in some countries.

Scrapfly does not offer legal advice but these are good general rules to follow. For more you should consult a lawyer.

 

    Table of Contents- [Key Takeaways](#key-takeaways)
- [Why Scrape Leboncoin.fr?](#why-scrape-leboncoin-fr)
- [How Does Leboncoin.fr Structure Its Pages?](#how-does-leboncoin-fr-structure-its-pages)
- [How Does Leboncoin's URL System Work Across Categories?](#how-does-leboncoin-s-url-system-work-across-categories)
- [Where Is the Hidden JSON Data in Leboncoin's Next.js Frontend?](#where-is-the-hidden-json-data-in-leboncoin-s-next-js-frontend)
- [Project Setup](#project-setup)
- [How to Bypass Leboncoin's Anti-Bot Protection with Scrapfly](#how-to-bypass-leboncoin-s-anti-bot-protection-with-scrapfly)
- [What Anti-Bot System Does Leboncoin Use?](#what-anti-bot-system-does-leboncoin-use)
- [Why Do Headless Browsers Get Blocked on Leboncoin?](#why-do-headless-browsers-get-blocked-on-leboncoin)
- [How to Scrape Leboncoin Search Results](#how-to-scrape-leboncoin-search-results)
- [How to Parse Search Data from \_\_NEXT\_DATA\_\_](#how-to-parse-search-data-from-next-data)
- [How to Scrape Multiple Search Pages with Pagination](#how-to-scrape-multiple-search-pages-with-pagination)
- [How to Scrape Individual Leboncoin Listings](#how-to-scrape-individual-leboncoin-listings)
- [How Does Ad Page Data Differ from Search Data?](#how-does-ad-page-data-differ-from-search-data)
- [How to Scrape Multiple Ads Concurrently](#how-to-scrape-multiple-ads-concurrently)
- [How to Scrape Different Leboncoin Categories](#how-to-scrape-different-leboncoin-categories)
- [How to Adapt the Scraper for Vehicle Listings](#how-to-adapt-the-scraper-for-vehicle-listings)
- [How to Save Scraped Leboncoin Data to JSON and CSV](#how-to-save-scraped-leboncoin-data-to-json-and-csv)
- [FAQ](#faq)
- [Summary](#summary)
 
    Join the Newsletter  Get monthly web scraping insights 

 

  



Scale Your Web Scraping

Anti-bot bypass, browser rendering, and rotating proxies, all in one API. Start with 1,000 free credits.

  No credit card required  1,000 free API credits  Anti-bot bypass included 

 [Start Free](https://scrapfly.io/register) [View Docs](https://scrapfly.io/docs/onboarding) 

 Not ready? Get our newsletter instead. 

 

## Explore this Article with AI

 [ ChatGPT ](https://chat.openai.com/?q=Summarize%20this%20page%3A%20https%3A%2F%2Fscrapfly.io%2Fblog%2Fposts%2Fhow-to-scrape-leboncoin-marketplace-real-estate) [ Gemini ](https://www.google.com/search?udm=50&aep=11&q=Summarize%20this%20page%3A%20https%3A%2F%2Fscrapfly.io%2Fblog%2Fposts%2Fhow-to-scrape-leboncoin-marketplace-real-estate) [ Grok ](https://x.com/i/grok?text=Summarize%20this%20page%3A%20https%3A%2F%2Fscrapfly.io%2Fblog%2Fposts%2Fhow-to-scrape-leboncoin-marketplace-real-estate) [ Perplexity ](https://www.perplexity.ai/search/new?q=Summarize%20this%20page%3A%20https%3A%2F%2Fscrapfly.io%2Fblog%2Fposts%2Fhow-to-scrape-leboncoin-marketplace-real-estate) [ Claude ](https://claude.ai/new?q=Summarize%20this%20page%3A%20https%3A%2F%2Fscrapfly.io%2Fblog%2Fposts%2Fhow-to-scrape-leboncoin-marketplace-real-estate) 



 ## Related Articles

 [     

 blocking 

### 5 Tools to Scrape Without Blocking and How it All Works

Tutorial on how to avoid web scraper blocking. What is javascript and TLS (JA3) fingerprinting and what role request hea...

 

 ](https://scrapfly.io/blog/posts/how-to-scrape-without-getting-blocked-tutorial) [  

 http python 

### Web Scraping with Python

Introduction tutorial to web scraping with Python. How to collect and parse public data. Challenges, best practices and ...

 

 ](https://scrapfly.io/blog/posts/web-scraping-with-python) [  

 python scrapeguide 

### How to Scrape Google Search Results in 2026

In this scrape guide we'll be taking a look at how to scrape Google Search - the biggest index of public web. We'll cov...

 

 ](https://scrapfly.io/blog/posts/how-to-scrape-google) 

  



   



 Scale your web scraping effortlessly, **1,000 free credits** [Start Free](https://scrapfly.io/register)