# PAP Universal Scraper (`scrapifier/pap-universal-scraper`) Actor

🏠 Scrape PAP (pap.fr) private-seller real-estate listings by filters — rent or buy. Get price, surface, rooms, DPE/energy, photos and location, as clean structured data. Pay per result.

- **URL**: https://apify.com/scrapifier/pap-universal-scraper.md
- **Developed by:** [Scrapifier](https://apify.com/scrapifier) (community)
- **Categories:** Real estate, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: 4.00 out of 5 stars

## Pricing

from $0.61 / 1,000 results

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

## 🏠 PAP Scraper

Extract PAP (pap.fr) private-seller real-estate listings by filters — rent or buy — and export them as structured JSON, CSV or Excel. No code required.

[![Apify Actor](https://apify.com/actor-badge?actor=scrapifier/pap-universal-scraper)](https://apify.com/scrapifier/pap-universal-scraper)

### 📋 Contents

- [Overview](#-overview)
- [How to use](#-how-to-use)
- [Input](#-input)
- [Output](#-output)
- [Pricing](#-pricing)
- [Proxy and performance](#-proxy-and-performance)
- [Integrations](#-integrations)
- [Related Actors](#-related-actors)
- [FAQ](#-faq)
- [Support](#-support)

### 📖 Overview

Search PAP — France's leading **private-seller** (no agency) real-estate site — for rentals or sales by location, price, surface, rooms and bedrooms. For each listing you get the price, surface, rooms, bedrooms, DPE/energy rating, description, photos and location.

- Search with **friendly filters** — transaction, locations, property types, price, surface, rooms.
- Locations resolve **automatically** to PAP zones (cities, departments or postal codes).
- **Private-seller** listings — buy or rent directly from owners.
- Rich data — price, surface, rooms, DPE, description and all photos.
- Exports to JSON, CSV, Excel, or the Apify dataset API.
- Pay per result — no subscription.

### 🚀 How to use

1. Pick **Buy** or **Rent**, add one or more **locations** (cities, departments or postal codes), and set property types, price, surface and rooms.
2. Set **Max results** (`0` = everything).
3. Start the run.
4. Download your data from the **Storage** tab, or fetch it from the API.

### 📥 Input

| Field | Key | Type | Default | Description |
|---|---|---|---|---|
| Transaction | `transaction` | select | `buy` | Buy (sale) or rent. |
| Locations | `locations` | array | `["Bordeaux"]` | Cities, departments or postal codes. |
| Property types | `property_types` | select (multi) | flat + house | Flat, house, land, building… |
| Min / Max price | `price_min` / `price_max` | integer | — | Sale price or monthly rent, in €. |
| Min / Max surface | `surface_min` / `surface_max` | integer | — | Living surface in m². |
| Min rooms / bedrooms | `rooms_min` / `bedrooms_min` | integer | — | Minimum rooms (pièces) / bedrooms. |
| Max results | `max_results` | integer | `100` | Listings to collect. `0` = as many as possible. |
| Proxy configuration | `proxyConfiguration` | object | Residential / FR | Residential FR recommended. |

<details>
<summary>Example input</summary>

```json
{
  "transaction": "buy",
  "locations": ["Bordeaux"],
  "property_types": ["appartement"],
  "price_max": 300000,
  "rooms_min": 2,
  "max_results": 100
}
```

</details>

### 📤 Output

Each listing is stored as one dataset item. Export it as JSON, CSV or Excel, or read it from the API.

| Field | Description |
|---|---|
| `id` | PAP listing ID |
| `url` | Direct link to the listing |
| `transaction` | buy or rent |
| `propertyType` | appartement, maison, terrain… |
| `price` | Price in € (sale price or monthly rent) |
| `priceReduced` | Whether the price was recently reduced |
| `surfaceArea` | Living surface in m² |
| `rooms` / `bedrooms` | Number of rooms (pièces) and bedrooms |
| `energyClassification` | DPE / energy rating (A–G) |
| `city` / `postalCode` | Location |
| `description` | Listing description |
| `photos[]` / `photoCount` | Photo URLs and count |

<details>
<summary>Example output</summary>

```json
{
  "id": "462200835",
  "url": "https://www.pap.fr/annonces/appartement-bordeaux-33000-r462200835",
  "transaction": "buy",
  "propertyType": "appartement",
  "price": 195000,
  "priceReduced": true,
  "surfaceArea": 45,
  "rooms": 2,
  "bedrooms": 1,
  "energyClassification": "D",
  "city": "Bordeaux",
  "postalCode": "33000",
  "photoCount": 12
}
```

</details>

### 💰 Pricing

**$0.90 per 1,000 listings.** No subscription — you pay only for the results you extract. New Apify users can try the Actor with their free monthly platform credits.

### 🛡️ Proxy and performance

- Use Apify residential proxies (country FR) for reliable runs — recommended, since pap.fr limits rapid requests.
- Start with a small **Max results** to validate your filters, then increase it.
- Add several locations in one run to cover multiple cities at once.
- The Actor paces its requests automatically to stay reliable.

### 🔌 Integrations

Run the Actor from the [Apify API](https://docs.apify.com/api/v2), the [JavaScript](https://docs.apify.com/sdk/js) or [Python](https://docs.apify.com/sdk/python) clients, or connect it to Make, Zapier, n8n, Google Sheets and Slack through Apify integrations. Each run's data is available as JSON or CSV via the dataset API.

### 🔗 Related Actors

- [Bienici Universal Scraper](https://apify.com/scrapifier/bienici-universal-scraper) — real-estate listings from Bien'ici.
- [SeLoger Universal Scraper](https://apify.com/scrapifier/seloger-universal-scraper) — real-estate listings from SeLoger.
- [Leboncoin Real Estate](https://apify.com/scrapifier/leboncoin-universal-scraper-real-estate) — Leboncoin real estate by filters.

Need another marketplace? Open an issue.

### ❓ FAQ

**What makes PAP different?**

PAP (Particulier à Particulier) lists properties sold or rented **directly by owners**, with no agency fees — a great source for private-seller deals.

**How do I target a specific area?**

Add cities, departments or postal codes in **Locations** — each is resolved automatically to its PAP zone. Add several to cover multiple areas in one run.

**How fresh is the data?**

It is collected live at runtime.

### 💬 Support

Questions or issues? Post them in the **Issues** tab and I will respond quickly. If the Actor is useful to you, a review is appreciated.

# Actor input Schema

## `transaction` (type: `string`):

Whether to scrape properties for sale or for rent.

## `locations` (type: `array`):

Cities, departments or postal codes (e.g. Bordeaux, Paris, 33000). Each is resolved automatically to its PAP zone.

## `property_types` (type: `array`):

One or more property types. Empty = flats and houses.

## `price_min` (type: `integer`):

Lowest price to include, in € (monthly rent or sale price).

## `price_max` (type: `integer`):

Highest price to include, in €.

## `surface_min` (type: `integer`):

Minimum living surface in m².

## `surface_max` (type: `integer`):

Maximum living surface in m².

## `rooms_min` (type: `integer`):

Minimum number of rooms (pièces).

## `bedrooms_min` (type: `integer`):

Minimum number of bedrooms.

## `max_results` (type: `integer`):

How many listings to collect (0 = as many as possible).

## `emit_input_status` (type: `boolean`):

Add an input\_status report to the run's OUTPUT record.

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

Recommended — a residential proxy (country FR) keeps runs reliable, since pap.fr limits rapid requests.

## Actor input object example

```json
{
  "transaction": "buy",
  "locations": [
    "Bordeaux"
  ],
  "max_results": 100,
  "emit_input_status": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "FR"
  }
}
```

# Actor output Schema

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

All PAP listings extracted by this run.

# 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 = {
    "locations": [
        "Bordeaux"
    ],
    "max_results": 100,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "FR"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapifier/pap-universal-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 = {
    "locations": ["Bordeaux"],
    "max_results": 100,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "FR",
    },
}

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

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

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

```

## CLI example

```bash
echo '{
  "locations": [
    "Bordeaux"
  ],
  "max_results": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "FR"
  }
}' |
apify call scrapifier/pap-universal-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=scrapifier/pap-universal-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/A3bt2XNWEzQ7Ya7B6/builds/2OkM4fcoewM6odIT3/openapi.json
