Skip to Content
PlatformsEuropeLogic-Immo

Logic-Immo Data Parser & API

Logic-Immo is a French property portal in the Aviv Group cluster — a SeLoger feeder that shares the wider Aviv listing pool — and PropAPIS extracts its resale, rental, and new-build listings through a single REST API. As part of the Aviv Group family alongside SeLoger and Meilleurs Agents, Logic-Immo exposes price, surface area, rooms, energy class (DPE), and agent data.

CountryFrance
TypePortal
OwnerAviv Group
Listing typesresale, rental, new-build
Monthly visits— (SeLoger feeder)
Active listings— (shares Aviv pool)
API accessNo public API (parse-only)
Parse priority★★☆☆☆
Official sitewww.logic-immo.com

Platform Overview

Market Position

Logic-Immo is owned by Aviv Group (the Axel Springer real-estate vehicle, majority-owned by KKR with CPP Investments), which consolidates the French market under SeLoger, Logic-Immo, and Meilleurs Agents. Logic-Immo operates as a feeder within the Aviv portal family, sharing much of the same agent-sourced inventory as SeLoger (AIM Group ).

  • Aviv Group Portal: Part of France’s consolidated #1 cluster
  • SeLoger Feeder: Shares the wider Aviv listing pool
  • Agent-Sourced Inventory: Residential and new-build listings
  • Aviv Group Family: PropAPIS covers the wider Aviv portal cluster

Aviv Group Portal Family

Logic-Immo’s owner, Aviv Group, operates a cluster of portals across Europe that PropAPIS covers as a connected family:

  • France: SeLoger, Logic-Immo, Meilleurs Agents
  • Germany: Immowelt, Immonet
  • Belgium: Immoweb
  • Austria: Immowelt.at, ImmoScout24.at

A single parser strategy can span much of this cluster thanks to shared technology and data pools.

Market Coverage

Geographic Coverage:

  • France: All regions and départements
  • Major cities: Paris, Lyon, Marseille, Bordeaux, Toulouse, Nice
  • Île-de-France and regional markets nationwide

Property Types:

  • Apartments (Appartements)
  • Houses (Maisons)
  • New-build developments (Programmes neufs)

Data Fields Available

PropAPIS extracts a rich field set from each Logic-Immo listing:

Property Information

  • Address: Property location with postcode (code postal)
  • Price: Asking price or rent (EUR)
  • Surface Area: Size in square meters (Surface)
  • Rooms: Number of rooms (Pièces)
  • Bedrooms: Number of bedrooms (Chambres)
  • Property Type: Apartment, house, new-build
  • Floor: Floor level (Étage)
  • Price per m²: Calculated price per square meter

Listing Details

  • Description: Full property description (French)
  • Features: Amenities and equipment
  • Photos: Image URLs
  • Energy Class: Energy efficiency rating (DPE — Diagnostic de Performance Énergétique)

Agent Information

  • Estate Agent: Agency name (Agence)
  • Agent Contact: Office contact details
  • Agent Reference: Listing reference number (Référence)

Location Data

  • Postcode: French postal code
  • City and Arrondissement: Ville and arrondissement
  • Coordinates: Latitude and longitude

Financial Information

  • Charges: Monthly charges (Charges)
  • Price per m²: Value benchmark
  • Deposit and fees: Rental deposit and agency fees context

API Endpoints

Get Property Details

from propapis import PropAPIS api = PropAPIS(api_key='your_api_key') # Get property by ID or URL property_data = api.platforms.logic_immo.get_property( listing_id='201234567' ) print(f"Address: {property_data.address}") print(f"Price: €{property_data.price:,}") print(f"Surface: {property_data.surface_m2} m²") print(f"Rooms: {property_data.rooms}") print(f"Energy Class (DPE): {property_data.energy_class}")

Search For Sale Listings

# Search properties for sale listings = api.platforms.logic_immo.search_for_sale( location='Bordeaux', min_price=200000, max_price=500000, min_rooms=2, property_type='Apartment' ) for listing in listings[:10]: print(f"{listing.address} - €{listing.price:,}") print(f" {listing.rooms} rooms | {listing.surface_m2} m² | €{listing.price_per_m2:,.0f}/m²")

Search Rental Properties

# Search rental properties rentals = api.platforms.logic_immo.search_to_rent( location='Toulouse', min_price=500, # monthly rent max_price=1300, min_rooms=2 ) for rental in rentals[:5]: print(f"{rental.address} - €{rental.price:,}/mo")

Quick Start

from propapis import PropAPIS api = PropAPIS(api_key='your_api_key') property_data = api.platforms.logic_immo.get_property('201234567') print(f"Price: €{property_data.price:,}") print(f"Surface: {property_data.surface_m2} m²") print(f"Price per m²: €{property_data.price_per_m2:,.0f}")

For detailed documentation, see our API Reference.

Frequently asked questions