Property Management API for the French Market
A REST API built for French property management: places, estates, leases, tenants — with native Loi Alur compliance, UUID-based resource model, and multi-tenant SaaS architecture.
3.6M
Rental properties in France managed by professionals
UUID v4
Resource identifiers — fully REST-compliant
28+
Rent control zones covered (legislative zones)
99.9%
API uptime SLA — production environment
Resource hierarchy
FairePlace follows a strict hierarchical resource model: Place (building) → Estate (unit) → Lease (contract) → Lessee (tenant). Every resource is uniquely identified by a UUID v4.
Example — Create a property and unit
// 1. Create a building (Place)
POST /places
{ "name": "12 rue de la Paix", "address": "75001 Paris" }
→ { "id": "550e8400-..." }
// 2. Create a unit (Estate)
POST /estates
{ "place_id": "550e8400-...", "type": "apartment", "surface_m2": 45 }
→ { "id": "661f9511-..." }
Build property management software for France
Loi Alur, IRL, eIDAS — all built in. Free sandbox, no credit card.