RE/MAX Portugal Property Scraper avatar

RE/MAX Portugal Property Scraper

Pricing

from $0.85 / 1,000 listings

Go to Apify Store
RE/MAX Portugal Property Scraper

RE/MAX Portugal Property Scraper

Discover public RE/MAX Portugal property listings by location, operation, and property type. Extract prices, areas, rooms, features, images, and URLs.

Pricing

from $0.85 / 1,000 listings

Rating

0.0

(0)

Developer

Trove Vault

Trove Vault

Maintained by Community

Actor stats

1

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Categories

Share

Discover public RE/MAX Portugal property listings from buyer-facing inputs: location, operation, property type, and result limit. The Actor returns structured listing rows with prices, area, price per square meter, rooms, main image, image gallery, features, agency or agent name, and listing URLs.

This is a discovery Actor. You do not need to provide search result URLs.

Why Use This Actor

Use this Actor when you need a clean real estate dataset from RE/MAX Portugal without manually building search URLs or copying listings from the website.

It is useful for:

  • real estate lead discovery by Portuguese city or region
  • sale and rental inventory checks from the RE/MAX Portugal network
  • price and area comparison across public RE/MAX listings
  • monitoring agency supply in Lisbon, Porto, Faro, Braga, and other markets
  • TroveVault pipelines that combine several property portals into one dataset

What It Extracts

Each dataset row can include:

  • platform, listingId, title, and url
  • operation and propertyType
  • price, currency, priceText, and pricePerM2
  • areaM2, bedrooms, and bathrooms
  • address, city, and country
  • description
  • features, such as elevator, parking, garage, virtual tour, floor plan, exclusive, opportunity, energy class, or construction year
  • sellerName
  • mainImage and images
  • scrapedAt
  • runId when supplied in the input

Fields are only populated when they are publicly visible or can be safely inferred from the RE/MAX listing data.

Input

{
"location": "Lisbon, Portugal",
"operation": "sale",
"propertyType": "apartment",
"maxItems": 3,
"datasetId": "",
"runId": ""
}

Input Fields

  • location - City or city plus country to search. City-level searches are recommended for stable results, for example Lisbon, Portugal, Porto, or Faro.
  • operation - Dropdown. Use sale for properties for sale or rent for rental listings.
  • propertyType - Dropdown. Use any, apartment, house, land, or commercial.
  • maxItems - Maximum number of listings to save. Use a small number for quick checks and a larger number for broader discovery.
  • datasetId - Optional Apify dataset ID. When provided, each saved listing is also appended to that dataset, which is useful when combining several discovery Actors.
  • runId - Optional workflow run ID. When provided, it is copied into each output row and the RUN_SUMMARY key-value record.

Output Example

{
"platform": "RE/MAX Portugal",
"listingId": "120611191-1034",
"title": "Apartment T4 / Lisboa / Lumiar",
"url": "https://www.remax.pt/pt/imoveis/venda-apartamento-t4-lisboa-lumiar/120611191-1034",
"operation": "sale",
"propertyType": "apartment",
"price": 1500000,
"currency": "EUR",
"priceText": "1500000 EUR",
"pricePerM2": 6250,
"areaM2": 240,
"bedrooms": 4,
"bathrooms": 4,
"city": "Lisboa",
"country": "Portugal",
"features": ["energy class 2", "built 2009"],
"sellerName": "Paulo Fernandes",
"mainImage": "https://i.maxwork.pt/l-feat/listings/...",
"images": ["https://i.maxwork.pt/l-feat/listings/..."],
"scrapedAt": "2026-07-21T14:30:00.000Z",
"runId": "parent-workflow-run"
}

API Usage

curl -X POST "https://api.apify.com/v2/acts/trovevault~remax-portugal-property-scraper/runs" \
-H "Authorization: Bearer <APIFY_TOKEN>" \
-H "Content-Type: application/json" \
-d '{"location":"Lisbon, Portugal","operation":"sale","propertyType":"apartment","maxItems":3}'

To append rows to an existing dataset and tag them with a workflow run:

curl -X POST "https://api.apify.com/v2/acts/trovevault~remax-portugal-property-scraper/runs" \
-H "Authorization: Bearer <APIFY_TOKEN>" \
-H "Content-Type: application/json" \
-d '{"location":"Lisbon, Portugal","operation":"sale","propertyType":"apartment","maxItems":50,"datasetId":"YOUR_DATASET_ID","runId":"YOUR_PARENT_RUN_ID"}'

Notes And Limitations

  • Use English values for operation and propertyType; the Actor maps them internally to RE/MAX Portugal filters.
  • City-level searches are more stable than whole-country searches.
  • Some listings may omit full address, exact area, bathrooms, or image galleries.
  • The Actor does not bypass logins, paywalls, or private contact flows.
  • OLX Portugal Property Scraper
  • Imovirtual Property Discovery Scraper
  • CASA SAPO Property Discovery Scraper
  • Other TroveVault real estate discovery Actors

Changelog

0.1

  • Initial RE/MAX Portugal discovery Actor with dropdown operation/property type, optional pipeline IDs, image gallery extraction, price-per-square-meter calculation, and low-cost default test input.