# RE/MAX Portugal Scraper - Real Estate Listings (`studio-amba/remax-pt-scraper`) Actor

Scrape property listings from RE/MAX Portugal (remax.pt), Portugal's largest real estate agency network. Extract prices, areas, energy labels, and agent details for apartments, houses, land, and commercial properties for sale or rent across every district. No login required.

- **URL**: https://apify.com/studio-amba/remax-pt-scraper.md
- **Developed by:** [Studio Amba](https://apify.com/studio-amba) (community)
- **Categories:** Real estate
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.20 / 1,000 result scrapeds

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

## RE/MAX Portugal Scraper

Scrape property listings from RE/MAX Portugal (remax.pt), the country's largest real estate agency network, covering every district from Lisboa and Porto down to the smallest municipality.

### Why use this actor?

RE/MAX Portugal runs its own listing platform separate from the big portals (Imovirtual, Idealista), so its inventory — especially exclusive mandates — often doesn't show up anywhere else. Investors screening the Portuguese market, agencies benchmarking competitor stock, and analysts tracking regional price trends can pull structured listing data (price, area, energy label, agent contact) without clicking through thousands of listing pages by hand.

### How to scrape RE/MAX Portugal data

1. Set a **location** — any Portuguese district, municipality, parish, or zone in free text (e.g. `lisboa`, `porto`, `cascais`, `braga`). The actor resolves it automatically through RE/MAX's own location search, the same one that powers the site's search bar.
2. Choose **transaction** — `comprar` (buy) or `arrendar` (rent).
3. Optionally narrow by **listingClass** (residential/commercial) and **propertyType** (apartment, house, land, warehouse, etc.).
4. Set **maxResults** and run. The actor calls RE/MAX's public listing search API directly (no browser rendering needed) and paginates until it hits your limit or runs out of listings.
5. Leave `location` empty to search all of Portugal at once.

No login, cookies, or CAPTCHA-solving involved — remax.pt's listing search is a plain public JSON API.

### Input

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | String | No | District, municipality, parish, or zone (e.g. `lisboa`, `porto`, `cascais`). Defaults to `lisboa` if left empty. |
| `transaction` | String | No | `comprar` (buy, default) or `arrendar` (rent) |
| `listingClass` | String | No | `residential` (default) or `commercial` |
| `propertyType` | String | No | Restrict to one property type (apartment, house, land, warehouse, etc.). Leave empty for all types in the chosen listing class — **this is an off-by-default filter, not a data-completeness flag**: an empty value returns every type, it does not silently narrow results. |
| `priceMin` / `priceMax` | Integer | No | Price range in EUR (monthly rent for `arrendar`). Filtered after fetch, since RE/MAX's own price-range filter doesn't reliably narrow server-side. |
| `maxResults` | Integer | No | Maximum listings to return. Hard-capped at 5000 per run. Default 50. |
| `proxyConfiguration` | Object | No | Proxy settings. Apify's automatic proxy is reliable for this site — no residential proxy required. |

### Output

Each result contains:

| Field | Type | Example |
|-------|------|---------|
| `listingId` | Integer | `7236099` |
| `listingTitle` | String | `"Venda moradia t1 porto campanha"` |
| `transactionType` | String | `"sale"` or `"rent"` |
| `listingClass` | String | `"residential"` |
| `propertyType` | String | `"house"` |
| `price` | Number | null | `167000` |
| `currency` | String | null | `"EUR"` (always paired with `price`, never converted) |
| `areaM2` | Number | `25` |
| `livingAreaM2` | Number | `25` |
| `bedrooms` | Integer | `1` |
| `bathrooms` | Integer | `1` |
| `constructionYear` | Integer | `1937` |
| `energyLabel` | String | `"NC"` (A+ to G, or NC = not certified) |
| `address` | String | `"Rua de Godim"` |
| `zipCode` | String | `"4300-237"` |
| `district` | String | `"Porto"` |
| `city` | String | `"Porto"` |
| `parish` | String | `"Campanhã"` |
| `locationFull` | String | `"Campanhã, Porto"` |
| `latitude` / `longitude` | Number | `41.1528`, `-8.5902` |
| `agentName` | String | `"Sulpicio Ribeiro"` |
| `agencyName` | String | `"RE/MAX Go"` |
| `agencyPhone` | String | `"+351 253 488 800"` |
| `isExclusive` | Boolean | `false` |
| `imageUrl` | String | Main photo URL |
| `imageUrls` | Array | All photo URLs |
| `publishedAt` | String | `"2026-08-13T08:46:02.283"` |
| `url` | String | Full listing URL on remax.pt |
| `scrapedAt` | String | ISO timestamp of the scrape |

### Example output

```json
{
    "listingId": 7236099,
    "listingTitle": "Venda moradia t1 porto campanha",
    "transactionType": "sale",
    "listingClass": "residential",
    "propertyType": "house",
    "price": 167000,
    "currency": "EUR",
    "areaM2": 25,
    "livingAreaM2": 25,
    "bedrooms": 1,
    "bathrooms": 1,
    "constructionYear": 1937,
    "energyLabel": "NC",
    "address": "Rua de Godim",
    "zipCode": "4300-237",
    "district": "Porto",
    "city": "Porto",
    "parish": "Campanhã",
    "locationFull": "Campanhã, Porto",
    "latitude": 41.152870603802604,
    "longitude": -8.59024045452419,
    "agentName": "Sulpicio Ribeiro",
    "agencyName": "RE/MAX Go",
    "agencyPhone": "+351 253 488 800",
    "isExclusive": false,
    "imageUrl": "https://i.maxwork.pt/ds-l/listings/12306/7236099/d896584c-bf64-494b-8aa6-3705a56c1632.jpg",
    "imageUrls": ["https://i.maxwork.pt/ds-l/listings/12306/7236099/d896584c-bf64-494b-8aa6-3705a56c1632.jpg"],
    "publishedAt": "2026-08-13T08:46:02.283",
    "url": "https://www.remax.pt/pt/imoveis/venda-moradia-t1-porto-campanha/123061290-370",
    "scrapedAt": "2026-08-13T09:11:14.854Z"
}
```

### Cost estimate

This actor calls RE/MAX's listing API directly — no browser rendering, one HTTP request per 200 results. That works out to roughly **$0.001-0.002 per listing** in Apify compute, well under a cent per result. A 1,000-listing run typically finishes in under a minute.

**Usage cost only settles once a run reports SUCCEEDED.** Reading a dataset mid-run (or from a run that later failed) will show a cost far below the real total — size your cost estimate off a completed run, not a partial one.

### Limitations

- Listings without a public price (`privatePrice: true` on RE/MAX's side) return `price: null` rather than a made-up number — filter these out downstream if you need price on every row.
- `priceMin`/`priceMax` are applied after fetching, since RE/MAX's server-side price filter didn't reliably narrow results during testing — a very tight price range on a large city may need a higher `maxResults` to find enough matching rows.
- Data is scraped from the public website and may change without notice.
- Respect RE/MAX Portugal's terms of service and use responsibly.

### Related Scrapers

- [Imovirtual Scraper](https://apify.com/studioamba/imovirtual-scraper) — Portugal's leading real estate portal
- [Idealista Scraper](https://apify.com/studioamba/idealista-scraper) — Spain & Portugal real estate portal
- [Zimmo Scraper](https://apify.com/studioamba/zimmo-scraper) — Belgian real estate portal
- [athome Scraper](https://apify.com/studioamba/athome-scraper) — Belgian/Luxembourg real estate portal
- [Belgium Property PIGE](https://apify.com/studioamba/belgium-property-pige) — off-market Belgian property leads

### Need this data on a schedule, or a custom version?

We run this scraper as a managed service for businesses: scheduled runs, deduplication, delta detection, and delivery to your inbox, Google Sheets, or API — maintenance included. We can also build a custom version with your exact fields and filters, or combine multiple sources into one feed.

See [studioamba.dev/services](https://studioamba.dev/services/) or email <hello@studioamba.dev> for a free data sample. We maintain 300+ European web scrapers and answer within one business day.

# Actor input Schema

## `location` (type: `string`):

Portuguese district, municipality, parish, or zone (e.g. 'lisboa', 'porto', 'cascais', 'braga'). Free text is resolved automatically via RE/MAX's location search. Leave empty to search all of Portugal.

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

Buy (comprar) or rent (arrendar) listings.

## `listingClass` (type: `string`):

Residential or commercial properties.

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

Only return this specific property type. Leave empty to return all types for the chosen listing class.

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

Only return listings priced at or above this amount (EUR; monthly rent for arrendar). Filtered client-side after fetch.

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

Only return listings priced at or below this amount (EUR; monthly rent for arrendar). Filtered client-side after fetch.

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

Maximum number of listings to scrape. Hard-capped at 5000 per run to keep runs fast (a handful of requests at 200 results/page).

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

Proxy settings. RE/MAX Portugal's listing API has no confirmed anti-bot challenge, so Apify's automatic proxy works reliably — residential proxies are not required.

## Actor input object example

```json
{
  "location": "lisboa",
  "transaction": "comprar",
  "listingClass": "residential",
  "propertyType": "",
  "maxResults": 20,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `results` (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 = {
    "location": "lisboa",
    "transaction": "comprar",
    "listingClass": "residential",
    "propertyType": "",
    "maxResults": 20,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("studio-amba/remax-pt-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 = {
    "location": "lisboa",
    "transaction": "comprar",
    "listingClass": "residential",
    "propertyType": "",
    "maxResults": 20,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("studio-amba/remax-pt-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 '{
  "location": "lisboa",
  "transaction": "comprar",
  "listingClass": "residential",
  "propertyType": "",
  "maxResults": 20,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call studio-amba/remax-pt-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,studio-amba/remax-pt-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/0pndVzAEf8qKa9XGD/builds/9l0lcrZsdEEtxCKEx/openapi.json
