# Pararius.nl Scraper (`memorable_alphabet/pararius-rentals`) Actor

Fetch Dutch private rental listings from Pararius. Filter by city, radius, price, rooms, surface area, and more.

New listings are continuously fetched.

- **URL**: https://apify.com/memorable\_alphabet/pararius-rentals.md
- **Developed by:** [Mathieu](https://apify.com/memorable_alphabet) (community)
- **Categories:** Real estate, Automation, Developer tools
- **Stats:** 23 total users, 9 monthly users, 99.1% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.55 / 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.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#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

## Pararius Rentals

Fetch Dutch private rental listings from Pararius. Data is updated continuously from 30,000+ listings.

### Output fields

| Field | Description |
|---|---|
| `source` | Source key, always `pararius` |
| `sourceLabel` | Human-readable source name, always `Pararius` |
| `url` | Link to the listing on Pararius |
| `imageUrl` | Listing photo |
| `street` | Street name and number |
| `city` | City |
| `postcode` | Postal code |
| `propertyType` | `Apartment`, `House`, or `Studio` |
| `constructionType` | e.g. `Bestaande bouw`, `Nieuwbouw`, or `null` if unknown |
| `surfaceM2` | Living area in m² |
| `rooms` | Number of rooms |
| `availableFrom` | Availability date as text, or `null` if unknown |
| `priceEurCents` | Monthly rent in euro cents |
| `priceText` | Monthly rent as text, e.g. `€ 1.500` |
| `agent` | Name of the real estate agent |
| `agentWebsite` | The agent's own website, or `null` if not (yet) resolved |
| `agentPhone` | The agent's phone number, or `null` if not (yet) resolved |
| `neighbourhoodScore` | Leefbaarometer 3.0 livability score for the property's postcode area, or `null` if unknown. `{ score, class, year, dimensions }` — `score` is the raw deviation score, `class` is one of 9 official classes (`zeer_onvoldoende` ... `uitstekend`), `dimensions` breaks the score down into `fys`/`onv`/`soc`/`vrz`/`won` (physical environment, safety, social cohesion, amenities, housing stock), each `null` if suppressed for that area |
| `lat` / `lon` | Coordinates |
| `firstSeenAt` | ISO 8601 datetime when the property was first seen online |
`agentWebsite`/`agentPhone` are not yet available for all listings, so recently-added agents may briefly show `null` for both.

### Filters

| Input | Description |
|---|---|
| `propertyType` | Filter by type: `Apartment`, `House`, `Studio`, `Room`, `Other` |
| `city` | Filter by city name |
| `radiusKm` | Search radius in km around the city (default: 0 = city boundaries only) |
| `listedSince` | Only return listings first seen on or after this date, e.g. `2026-01-01` (based on `firstSeenAt`) |
| `minPrice` / `maxPrice` | Monthly rent in € |
| `minRooms` | Minimum number of rooms |
| `minSurface` | Minimum surface area in m² |
| `maxResults` | Maximum number of results (0 = unlimited) |

# Actor input Schema

## `city` (type: `string`):

Filter by city name. Examples: Amsterdam, Utrecht, Rotterdam. Leave empty for all cities.

## `radiusKm` (type: `integer`):

Search radius in km around the city. 0 = within city boundaries only. Requires City to be set.

## `propertyType` (type: `string`):

Filter by property type.

## `minPrice` (type: `integer`):

Minimum monthly rent in euros.

## `maxPrice` (type: `integer`):

Maximum monthly rent in euros.

## `minRooms` (type: `integer`):

Minimum number of rooms.

## `minSurface` (type: `integer`):

Minimum living area in square metres.

## `listedSince` (type: `string`):

Only return listings first seen on or after this date (based on firstSeenAt). Format: YYYY-MM-DD, e.g. 2026-01-01.

## `sort` (type: `string`):

Sort results.

## `maxResults` (type: `integer`):

Maximum number of listings to return. Set to 0 for unlimited.

## Actor input object example

```json
{
  "radiusKm": 0,
  "propertyType": "",
  "sort": "listed_desc",
  "maxResults": 1000
}
```

# Actor output Schema

## `results` (type: `string`):

All matching rental listings as a dataset. Each item contains source, sourceLabel, url, imageUrl, street, city, postcode, propertyType, constructionType, surfaceM2, rooms, availableFrom, priceEurCents, priceText, agent, agentWebsite, agentPhone, neighbourhoodScore, lat, lon, alsoFoundAt, and firstSeenAt.

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("memorable_alphabet/pararius-rentals").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("memorable_alphabet/pararius-rentals").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 '{}' |
apify call memorable_alphabet/pararius-rentals --silent --output-dataset

```

## MCP server setup

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

```

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/15yLxdkhQ5eKm3FcF/builds/raSgatsUKd0kcdxlp/openapi.json
