Leboncoin Details Scraper avatar

Leboncoin Details Scraper

Pricing

$19.00/month + usage

Go to Apify Store
Leboncoin Details Scraper

Leboncoin Details Scraper

Extract full details from Leboncoin ad URLs: descriptions, prices, seller phone numbers, GPS coordinates, photos and category-specific attributes. Ideal for enriching existing Leboncoin datasets with complete listing data. Returns 32+ structured fields per ad including seller contact info.

Pricing

$19.00/month + usage

Rating

0.0

(0)

Developer

SilentFlow

SilentFlow

Maintained by Community

Actor stats

1

Bookmarked

9

Total users

4

Monthly active users

7 days ago

Last modified

Share

๐Ÿ‡ฌ๐Ÿ‡ง English | ๐Ÿ‡ซ๐Ÿ‡ท Francais

Extract complete ad details from Leboncoin URLs. Get full descriptions, seller phone numbers, GPS coordinates, photos, category attributes and more from any Leboncoin listing.

How it works

How it works

โœจ Why use this scraper?

Already have a list of Leboncoin URLs? Need to enrich basic listing data with full details?

  • ๐Ÿ“ Complete ad data from any URL. Full descriptions, all photos, category-specific attributes like surface area, number of rooms, mileage, brand.
  • ๐Ÿ“ž Seller phone numbers extracted. Get the contact number when available on the ad page.
  • ๐Ÿ“ Precise GPS coordinates. Latitude and longitude for each listing, perfect for mapping.
  • ๐Ÿ‘ค Seller profiles. Owner name, type (pro/private), and unique ID for tracking.
  • โค๏ธ Popularity metrics. Favorites count shows how much interest each ad generates.

๐Ÿ“ฅ Input parameters

ParameterTypeRequiredDescription
urlsstring[]YesList of Leboncoin ad URLs (one per line)
maxItemsintegerNoMaximum ads to return (default: 1000)
proxyUrlstringNoCustom proxy URL if needed

๐Ÿ“Š Output data

{
"id": 3058213755,
"url": "https://www.leboncoin.fr/ad/locations/3058213755",
"title": "Bel appartement 3 pieces 75m2",
"price": 1200,
"description": "Appartement lumineux au 3e etage avec balcon...",
"city": "Paris",
"zipcode": "75011",
"department": "Paris",
"region": "Ile-de-France",
"latitude": 48.85122,
"longitude": 2.33289,
"phone": "+33612345678",
"ownerName": "Nexity Paris",
"ownerType": "pro",
"categoryName": "Locations",
"images": ["https://img.leboncoin.fr/..."],
"attributes": [{"key": "rooms", "value": "3"}, {"key": "square", "value": "75"}],
"favorites": 42,
"scrapedAt": "2026-04-09T12:00:00Z"
}

๐Ÿš€ Examples

Enrich a list of rental ads

{
"urls": [
"https://www.leboncoin.fr/ad/locations/3058213755",
"https://www.leboncoin.fr/ad/locations/3047891234"
]
}

Get details for car listings

{
"urls": [
"https://www.leboncoin.fr/ad/voitures/3105237869",
"https://www.leboncoin.fr/ad/voitures/3098765432"
],
"maxItems": 50
}

๐Ÿ’ป Integrations

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("silentflow/leboncoin-details-scraper").call(run_input={
"urls": [
"https://www.leboncoin.fr/ad/locations/3058213755",
"https://www.leboncoin.fr/ad/voitures/3105237869"
]
})
for ad in client.dataset(run["defaultDatasetId"]).iterate_items():
print(f"{ad['title']}: {ad.get('price')} EUR - {ad.get('phone', 'no phone')}")

JavaScript

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_API_TOKEN' });
const run = await client.actor('silentflow/leboncoin-details-scraper').call({
urls: [
'https://www.leboncoin.fr/ad/locations/3058213755',
'https://www.leboncoin.fr/ad/voitures/3105237869'
]
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach(ad => console.log(`${ad.title}: ${ad.price} EUR`));

โ“ FAQ

Q: Do I need a Leboncoin account? A: No. The scraper extracts publicly available data without any login.

Q: Why are some phone numbers missing? A: Not all sellers enable phone display on their ads. The scraper extracts it when available.

Q: What categories are supported? A: All Leboncoin categories: real estate, cars, jobs, fashion, electronics, leisure, and more.

๐Ÿ“ฌ Support

Need something this scraper does not do yet? We ship features fast.

  • Feature requests go straight to our backlog
  • Enterprise needs? We do custom integrations

Check out our other scrapers: SilentFlow on Apify

Check out our other scrapers: SilentFlow on Apify



๐Ÿ‡ซ๐Ÿ‡ท Version Francaise

๐Ÿ‡ฌ๐Ÿ‡ง English | ๐Ÿ‡ซ๐Ÿ‡ท Francais



Leboncoin Details Scraper

Extrayez les details complets d'annonces Leboncoin a partir d'URLs. Obtenez descriptions, numeros de telephone, coordonnees GPS, photos et attributs de n'importe quelle annonce.

How it works

How it works

โœจ Pourquoi utiliser ce scraper ?

Vous avez deja une liste d'URLs Leboncoin ? Besoin d'enrichir des donnees basiques avec les details complets ?

  • ๐Ÿ“ Donnees completes de chaque annonce. Descriptions, photos, attributs specifiques (surface, pieces, kilometrage, marque).
  • ๐Ÿ“ž Numeros de telephone extraits. Recuperez le contact du vendeur quand il est disponible.
  • ๐Ÿ“ Coordonnees GPS precises. Latitude et longitude pour chaque annonce, ideal pour la cartographie.
  • ๐Ÿ‘ค Profils vendeurs. Nom, type (pro/particulier), identifiant unique.
  • โค๏ธ Metriques de popularite. Nombre de favoris pour mesurer l'interet.

๐Ÿ“ฅ Parametres d'entree

ParametreTypeRequisDescription
urlsstring[]OuiListe d'URLs d'annonces Leboncoin (une par ligne)
maxItemsintegerNonNombre maximum d'annonces (defaut: 1000)
proxyUrlstringNonURL de proxy personnalisee si besoin

๐Ÿš€ Exemples

Enrichir des annonces de location

{
"urls": [
"https://www.leboncoin.fr/ad/locations/3058213755",
"https://www.leboncoin.fr/ad/locations/3047891234"
]
}

โ“ FAQ

Q: Faut-il un compte Leboncoin ? A: Non. Le scraper extrait les donnees publiques sans connexion.

Q: Pourquoi certains numeros de telephone manquent ? A: Tous les vendeurs n'activent pas l'affichage du telephone. Le scraper l'extrait quand il est disponible.

๐Ÿ“ฌ Support

Besoin d'une fonctionnalite supplementaire ? Nous livrons vite.

Decouvrez nos autres scrapers : SilentFlow on Apify