# Orpi.com French Property Scraper (`rainminer/orpi-com-scraper`) Actor

Scrape public Orpi.com property listings across France. Export title, price, rooms, area, city, transaction type, and listing URLs to JSON or CSV for real-estate research and lead generation — no login required.

- **URL**: https://apify.com/rainminer/orpi-com-scraper.md
- **Developed by:** [rainminer](https://apify.com/rainminer) (community)
- **Categories:** Real estate, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.49 / 1,000 property listings

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
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

### What does Orpi.com Scraper do?

**Orpi.com Scraper** extracts **property listings** from [orpi.com](https://www.orpi.com/) — France's largest real estate agency network with tens of thousands of homes for sale and rent. Provide one or more search URLs and the scraper collects structured property data without any coding required.

### Why scrape orpi.com?

- **Market research** — Track sale and rental prices across French cities and departments.
- **Portfolio monitoring** — Automatically detect new listings in your target locations and price ranges.
- **Lead generation** — Collect property listings with price, rooms, surface and city for your pipeline.
- **Investment analysis** — Compare apartments, houses and land listings at scale.
- **Apify platform** — Schedule runs, export JSON/CSV/Excel, monitor failures, and integrate via API or Zapier.

### What data can you extract from orpi.com?

| Field       | Description                                      |
| ----------- | ------------------------------------------------ |
| id          | Unique Orpi listing reference (UUID)             |
| title       | Property headline or ad summary                    |
| price       | Listed price in euros                            |
| rooms       | Number of rooms                                  |
| area        | Surface area in square metres                    |
| city        | City name                                        |
| transaction | Listing type (`buy` or `rent`)                   |
| url         | Public listing URL on orpi.com                   |
| searchUrl   | Source search URL when found via search          |

### How to scrape orpi.com

1. Open **Orpi.com Scraper** in Apify Console.
2. Add one or more **orpi.com search URLs** under **Start URLs**, for example:
   `https://www.orpi.com/recherche?transactions%5B0%5D=buy`
3. Set **Maximum items** to control how many listings are extracted per start URL.
4. Leave **Proxy configuration** disabled unless your IP is blocked.
5. Click **Start** and download results from the **Dataset** tab in JSON, CSV, or Excel format.

#### Supported start URL formats

- Buy search: `https://www.orpi.com/recherche?transactions%5B0%5D=buy`
- Rent search: `https://www.orpi.com/recherche?transactions%5B0%5D=rent`
- Advanced search: `https://www.orpi.com/recherche-avancee/...`
- Individual listings: `https://www.orpi.com/{slug}/annonce-vente`

Pagination is handled automatically until `maxItems` is reached.

### Is it legal to scrape orpi.com?

This scraper only collects publicly visible listing data — the same information any visitor sees without logging in. It does not bypass authentication, access private data, or collect personal contact details. Always ensure your use of scraped data complies with applicable laws (including GDPR) and orpi.com's Terms of Service. If in doubt, consult your legal team.

### Output example

```json
{
  "id": "2c0b927c-555a-4f47-af8c-c42490526222",
  "title": "Appartement T5 avec 2 places de parking",
  "price": 235000,
  "rooms": 5,
  "area": 86.89,
  "city": "Toulouse",
  "transaction": "buy",
  "url": "https://www.orpi.com/appartement-t5-toulouse-31300-2c0b927c-555a-4f47-af8c-c42490526222/annonce-vente",
  "searchUrl": "https://www.orpi.com/recherche?transactions%5B0%5D=buy"
}
```

### Input options

| Option               | Description                                        | Default |
| -------------------- | -------------------------------------------------- | ------- |
| `startUrls`          | List of orpi.com search or listing URLs to scrape  | —       |
| `maxItems`           | Maximum listings to extract per start URL          | 3       |
| `proxyConfiguration` | Proxy settings — disabled by default               | Off     |

### FAQ

#### Does this scraper require login?

No. Orpi.com makes property listings publicly available without requiring an account. The scraper only accesses public data.

#### Can I scrape rentals as well as sales?

Yes. Use `transactions%5B0%5D=rent` for rentals and `transactions%5B0%5D=buy` for purchases in your search URL.

#### How much does it cost?

The scraper uses **pay-per-result** pricing — you are charged once per listing successfully exported to the dataset. No listing, no charge.

### Image Credit

Image credit: [orpi.com](https://www.orpi.com/)

# Actor input Schema

## `startUrls` (type: `array`):

orpi.com search or listing URLs (e.g. https://www.orpi.com/recherche?transactions%5B0%5D=buy).

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

Maximum number of listings to return per start URL.

## `proxyConfiguration` (type: `object`):

Proxy settings. Leave disabled unless orpi.com blocks your IP.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.orpi.com/recherche?transactions%5B0%5D=buy"
    }
  ],
  "maxItems": 3,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# 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 = {
    "startUrls": [
        {
            "url": "https://www.orpi.com/recherche?transactions%5B0%5D=buy"
        }
    ],
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("rainminer/orpi-com-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 = {
    "startUrls": [{ "url": "https://www.orpi.com/recherche?transactions%5B0%5D=buy" }],
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("rainminer/orpi-com-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 '{
  "startUrls": [
    {
      "url": "https://www.orpi.com/recherche?transactions%5B0%5D=buy"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call rainminer/orpi-com-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,rainminer/orpi-com-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/1doercXvXHVlRWo6Q/builds/sA2PtzNq0WIaxggEh/openapi.json
