Every real estate transaction in France comes with a thick folder of mandatory diagnostic reports. If you have ever bought or sold property in the south of France — say, in Marseille or anywhere in the Bouches-du-Rhône department — you know the drill. Energy performance, asbestos, lead, termites, electrical safety, gas installations... the list goes on.
As a developer working in the real estate compliance space, I have spent considerable time understanding how these diagnostics work and how digital tools can make the process less painful for everyone involved.
What Are Property Diagnostics (Diagnostics Immobiliers)?
French law requires sellers and landlords to provide a Dossier de Diagnostic Technique (DDT) before any property transaction. This bundle includes up to 10 different reports depending on the property's age, location, and type.
The most common ones:
- DPE (Diagnostic de Performance Énergétique) — Energy performance rating from A to G. Since the 2021 Climate Law, properties rated F or G face progressive rental restrictions.
- Amiante (Asbestos) — Mandatory for buildings built before July 1997.
- Plomb (Lead) — Required for buildings constructed before January 1949.
- Termites — Depends on geographic zone. Most of southern France, including Marseille and the entire PACA region, is classified as a termite risk area.
- Électricité and Gaz — For installations older than 15 years.
- ERP (État des Risques et Pollutions) — Flood zones, seismic risk, industrial pollution, radon exposure.
Why Southern France Has Specific Challenges
The Bouches-du-Rhône department presents a unique diagnostic landscape. Marseille alone has building stock spanning centuries — from the Panier district's 17th-century townhouses to 1960s social housing blocks and modern developments near Euroméditerranée.
This diversity means diagnosticians face:
Old building stock with layered materials. A single apartment in central Marseille might have asbestos in the ceiling tiles, lead in three layers of paint, and outdated electrical wiring — each requiring a separate certified expert.
Climate-specific energy concerns. The Mediterranean climate means DPE calculations differ significantly from northern France. Cooling needs, solar exposure, and thermal inertia of stone buildings all factor in. A thick-walled Provençal mas performs very differently from a modern apartment in Aix-en-Provence.
Seismic and flood risk zones. Parts of the department fall into seismic zone 4 (moderate risk), and the Huveaune and Arc river basins create flood-prone areas that affect ERP reports.
The Digital Gap in French Property Diagnostics
What struck me when I started working on digital tools for this sector is how fragmented the information remains. Property owners in Marseille searching for a diagnostician typically face:
- Scattered pricing — Costs vary widely (€150 to €600+ for a full DDT) with little transparency.
- Certification confusion — Diagnosticians must hold specific certifications for each type of diagnostic, renewed every 7 years. Verifying credentials means checking multiple databases.
- Regulatory updates — The rules change frequently. The 2021 DPE reform alone invalidated thousands of existing reports and changed the calculation methodology entirely.
We built diagnostic-immobilier13.fr to address exactly this problem for the Bouches-du-Rhône area. The goal was straightforward: give property owners in the 13 department a clear, local resource that explains what diagnostics they actually need, what they should expect to pay, and how to find certified professionals nearby.
Technical Approach
From a development perspective, building a useful property diagnostic platform requires working with several French open data sources:
- Base Adresse Nationale (BAN) for geocoding and address validation
- Georisques API for natural and technological risk data (feeds directly into ERP reports)
- ADEME's DPE database which now publishes energy performance data as open data
- INSEE data for building stock statistics by commune
The Georisques API is particularly interesting. You can query any French address and get back structured data on flood risk zones, seismic classification, radon potential, mining risk, and industrial pollution. This is the same data that diagnosticians use to produce ERP reports.
# Simplified example: querying Georisques for a Marseille address
import requests
response = requests.get(
"https://georisques.gouv.fr/api/v1/gaspar/risques",
params={"code_insee": "13055"} # Marseille
)
risks = response.json()
# Returns: flood zones, seismic level, radon category, etc.
What Matters for Property Owners
If you are buying or selling in southern France, here is the practical takeaway:
- Start diagnostics early. Some reports (like termites) are only valid for 6 months. Others (asbestos in good condition) have no expiration. Timing matters.
- Get everything done at once. Most diagnosticians offer package deals for the full DDT. Doing them separately costs more and creates scheduling headaches.
- Check the DPE carefully. With rental restrictions tightening on F and G-rated properties, the energy rating directly affects property value. In Marseille's older buildings, the DPE result can make or break a deal.
- Verify certifications. The official directory is available at diagnostiqueurs.din.developpement-durable.gouv.fr. Any legitimate diagnostician will be listed there.
Looking Forward
The French government is gradually digitizing the entire diagnostic chain. The new DPE format introduced in 2021 is already machine-readable, and there is talk of a unified digital building passport (carnet numérique du logement) that would centralize all diagnostic history for a property.
For developers and proptech entrepreneurs, this is fertile ground. The combination of strict regulatory requirements, fragmented local markets, and increasing digitization creates real opportunities to build tools that genuinely help people navigate property transactions.
The south of France, with its diverse building stock and active real estate market, is a particularly interesting testing ground for these approaches.
Top comments (0)