# Bien'ici Scraper (`crawlerbros/bienici-scraper`) Actor

Scrape bienici.com - one of France's largest real-estate portals. Search flats, houses, lofts, commercial premises and more, for sale or rent, by location/price/surface/rooms, or fetch specific listings by ID or URL.

- **URL**: https://apify.com/crawlerbros/bienici-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Real estate, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Bien'ici Scraper

Scrape real-estate listings from [bienici.com](https://www.bienici.com) — one of France's largest property portals, backed by a consortium of major French banks and estate-agency networks, covering flats, houses, lofts, commercial premises and more, for sale or rent, nationwide.

### What does this actor do?

Bien'ici Scraper searches bienici.com by transaction type, property type, location, price, surface area and rooms, returning structured listing data — no login, no API key required. You can also fetch specific listings by their ID or URL.

### Output data

Each result is a JSON record with (where available):

- `adId`, `title`, `description`, `transactionType` (`buy`/`rent`), `propertyType`
- `price`, `priceCurrency` (`EUR`), `pricePerSquareMeter`
- `surfaceArea`, `landSurfaceArea` (houses), `roomsQuantity`, `bedroomsQuantity`, `bathroomsQuantity`, `showerRoomsQuantity`, `toiletQuantity`
- `floor`, `floorQuantity`, `parkingPlacesQuantity`, `enclosedParkingQuantity`, `balconyQuantity`, `terracesQuantity`, `cellarsOrUndergroundsQuantity`, `yearOfConstruction`
- `city`, `postalCode`, `departmentCode`, `district`, `latitude`, `longitude`
- `energyClassification`, `greenhouseGazClassification` (French DPE/GES ratings)
- `heating`, `exposition`
- `newProperty`, `hasElevator`, `isFurnished`, `hasFirePlace`, `isDisabledPeopleFriendly`, `isBienIciExclusive`, `priceHasDecreased`
- `hasGarden`, `hasPool`, `hasCellar`, `hasCaretaker`, `hasAlarm`, `hasDoorCode`, `hasIntercom`, `isCalm`, `isRecent`, `isSubjectToRentControl`, `flatSharing`, `flatSharingNotAllowed`
- `isExclusiveSaleMandate`, `isInCondominium`, `isCondominiumInProcedure` (co-ownership under a major-works/litigation procedure — a mandatory French legal disclosure), `hasGeorisquesMention` (mandatory natural/technological risk disclosure), `hasOpticalFiber`, `isHighlighted`, `with360`, `with3dModel`
- `energyValue`, `greenhouseGazValue` (numeric DPE/GES values in kWh/m²/year and kgCO2/m²/year, alongside the `A`–`G` letter classifications), `energyPerformanceDiagnosticDate`, `minEnergyConsumption`/`maxEnergyConsumption`, `averageAnnualEnergyConsumption`, `epdFinalEnergyConsumption`
- `photoUrls` (list), `virtualTourUrls` (list — 360° tours / video walkthroughs, where the agency published one)
- `agencyName`, `accountType`, `reference`
- `publicationDate`, `modificationDate`, `availableDate` (rent, move-in date)
- `agencyFeePercentage`, `priceWithoutFees`, `feesChargedTo` (`purchaser`/`seller`, sale listings), `annualCondominiumFees`, `condominiumPartsQuantity` (sale listings in a co-ownership)
- `monthlyCharges`, `chargesMethod`, `rentWithoutCharges`, `rentExtra`, `agencyRentalFee`, `inventoryOfFixturesFees`, `safetyDeposit` (rent)
- `sourceUrl`, `recordType`, `scrapedAt`

Fields that bienici.com doesn't provide for a given listing are simply omitted — you'll never see `null` or empty placeholders.

### Input options

| Field | Description |
|---|---|
| `mode` | `search` (filter-based search) or `byIds` (fetch specific listings) |
| `transactionType` | `buy` or `rent` |
| `propertyTypes` | Any combination of `flat`, `house`, `loft`, `castle`, `townhouse`, `building`, `premises`, `parking` |
| `locationQuery` | Free-text French place name — city, district, or region (e.g. `Paris`, `Lyon`, `Bordeaux`) |
| `priceMin` / `priceMax` | Price range in EUR (total price for sale, monthly rent for rentals) |
| `areaMin` / `areaMax` | Surface-area range in m² |
| `roomsMin` / `bedroomsMin` | Minimum rooms / bedrooms |
| `newPropertyOnly` | Only new-build properties |
| `elevatorOnly` | Only listings whose building has an elevator |
| `furnishedOnly` | Only furnished listings (mainly relevant for rentals) |
| `gardenOnly` | Only listings with a garden |
| `poolOnly` | Only listings with a swimming pool |
| `parkingOnly` | Only listings with at least one parking space |
| `balconyOnly` | Only listings with a balcony |
| `terraceOnly` | Only listings with a terrace |
| `cellarOnly` | Only listings with a cellar/storage room |
| `fireplaceOnly` | Only listings with a fireplace |
| `separateToiletOnly` | Only listings with a separate toilet (WC separated from the bathroom) |
| `sortBy` | `relevance`, `priceAsc`, `priceDesc`, `dateDesc`, `surfaceDesc` |
| `keyword` | Only keep listings whose title/description/city/district contains this text |
| `adIds` | (mode=`byIds`) Bien'ici ad IDs or full listing URLs |
| `maxItems` | Maximum number of listings to return |

### Example input

```json
{
  "mode": "search",
  "transactionType": "buy",
  "propertyTypes": ["flat"],
  "locationQuery": "Paris",
  "priceMax": 500000,
  "maxItems": 30
}
```

### Example: fetch specific listings

```json
{
  "mode": "byIds",
  "adIds": ["https://www.bienici.com/annonce/immo-facile-60587888"]
}
```

### Use cases

- **Market research** — track average sale/rent prices per city or arrondissement over time.
- **Investment screening** — filter by price, surface, and rooms to find undervalued properties.
- **Lead generation** — pull agency contact details for outreach.
- **Energy-efficiency analysis** — filter/analyze by DPE (`energyClassification`) and GES ratings.

### FAQ

**Does this require a bienici.com account or API key?**
No. The actor reads bienici.com's public listing search — the same data your browser loads when you search the site.

**Can I search outside of France?**
No — bienici.com only covers properties within France.

**Why is `agencyFeePercentage` / `monthlyCharges` sometimes missing?**
Those fields only apply to sale listings (`agencyFeePercentage`) or rental listings (`monthlyCharges`, `safetyDeposit`) respectively, and only when the agency has published them. The actor never invents data.

**How many listings can I get per run?**
Up to `maxItems` (default 30, max 2000).

**Why isn't there an `agencyFeeUrl` field?**
bienici.com's API does return a link to the agency's fee schedule PDF, but it's hosted on the agency's own third-party media CDN, which blocks direct (non-browser) requests even with correct headers — the actor omits this field rather than ship a link that returns an error for API consumers.

# Actor input Schema

## `mode` (type: `string`):

Search listings by filters, or fetch specific listing IDs/URLs.

## `transactionType` (type: `string`):

Buy (for sale) or rent.

## `propertyTypes` (type: `array`):

Leave empty for all types.

## `locationQuery` (type: `string`):

Free-text French place name, e.g. `Paris`, `Lyon`, `Bordeaux`. Leave empty to search all of France.

## `priceMin` (type: `integer`):

Minimum price (total price for sale, monthly rent for rentals).

## `priceMax` (type: `integer`):

Maximum price (total price for sale, monthly rent for rentals).

## `areaMin` (type: `integer`):

Minimum livable surface area (Loi Carrez) in square meters.

## `areaMax` (type: `integer`):

Maximum livable surface area (Loi Carrez) in square meters.

## `roomsMin` (type: `integer`):

Drop listings with fewer total rooms than this.

## `bedroomsMin` (type: `integer`):

Drop listings with fewer bedrooms than this.

## `newPropertyOnly` (type: `boolean`):

Only include new-build (off-plan / newly built) properties.

## `elevatorOnly` (type: `boolean`):

Only include listings whose building has an elevator.

## `furnishedOnly` (type: `boolean`):

Only include furnished listings (mainly relevant for rentals).

## `gardenOnly` (type: `boolean`):

Only include listings with a garden.

## `poolOnly` (type: `boolean`):

Only include listings with a swimming pool.

## `parkingOnly` (type: `boolean`):

Only include listings with at least one parking space.

## `balconyOnly` (type: `boolean`):

Only include listings with a balcony.

## `terraceOnly` (type: `boolean`):

Only include listings with a terrace.

## `cellarOnly` (type: `boolean`):

Only include listings with a cellar/storage room.

## `fireplaceOnly` (type: `boolean`):

Only include listings with a fireplace.

## `separateToiletOnly` (type: `boolean`):

Only include listings with a separate toilet (WC separated from the bathroom).

## `sortBy` (type: `string`):

Order to return results in.

## `keyword` (type: `string`):

Only keep listings whose title/description/city/district contains this text (case-insensitive).

## `adIds` (type: `array`):

Bien'ici ad IDs (e.g. `immo-facile-60587888`) or full listing URLs (e.g. `https://www.bienici.com/annonce/immo-facile-60587888`).

## `maxItems` (type: `integer`):

Maximum number of listings to scrape.

## Actor input object example

```json
{
  "mode": "search",
  "transactionType": "buy",
  "propertyTypes": [
    "flat"
  ],
  "locationQuery": "Paris",
  "newPropertyOnly": false,
  "elevatorOnly": false,
  "furnishedOnly": false,
  "gardenOnly": false,
  "poolOnly": false,
  "parkingOnly": false,
  "balconyOnly": false,
  "terraceOnly": false,
  "cellarOnly": false,
  "fireplaceOnly": false,
  "separateToiletOnly": false,
  "sortBy": "relevance",
  "adIds": [],
  "maxItems": 30
}
```

# Actor output Schema

## `listings` (type: `string`):

Dataset containing all scraped bienici.com listings.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "mode": "search",
    "transactionType": "buy",
    "propertyTypes": [
        "flat"
    ],
    "locationQuery": "Paris",
    "newPropertyOnly": false,
    "elevatorOnly": false,
    "furnishedOnly": false,
    "gardenOnly": false,
    "poolOnly": false,
    "parkingOnly": false,
    "balconyOnly": false,
    "terraceOnly": false,
    "cellarOnly": false,
    "fireplaceOnly": false,
    "separateToiletOnly": false,
    "sortBy": "relevance",
    "adIds": [],
    "maxItems": 30
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/bienici-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "mode": "search",
    "transactionType": "buy",
    "propertyTypes": ["flat"],
    "locationQuery": "Paris",
    "newPropertyOnly": False,
    "elevatorOnly": False,
    "furnishedOnly": False,
    "gardenOnly": False,
    "poolOnly": False,
    "parkingOnly": False,
    "balconyOnly": False,
    "terraceOnly": False,
    "cellarOnly": False,
    "fireplaceOnly": False,
    "separateToiletOnly": False,
    "sortBy": "relevance",
    "adIds": [],
    "maxItems": 30,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/bienici-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "mode": "search",
  "transactionType": "buy",
  "propertyTypes": [
    "flat"
  ],
  "locationQuery": "Paris",
  "newPropertyOnly": false,
  "elevatorOnly": false,
  "furnishedOnly": false,
  "gardenOnly": false,
  "poolOnly": false,
  "parkingOnly": false,
  "balconyOnly": false,
  "terraceOnly": false,
  "cellarOnly": false,
  "fireplaceOnly": false,
  "separateToiletOnly": false,
  "sortBy": "relevance",
  "adIds": [],
  "maxItems": 30
}' |
apify call crawlerbros/bienici-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,crawlerbros/bienici-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/9V00BwSU3ndk6C92j/builds/JrnCvWGVnYp7qbiLJ/openapi.json
