Lokaleportalen.dk Property Scraper avatar

Lokaleportalen.dk Property Scraper

Pricing

from $3.00 / 1,000 property listing scrapeds

Go to Apify Store
Lokaleportalen.dk Property Scraper

Lokaleportalen.dk Property Scraper

Scrape public Danish commercial-property listings from Lokaleportalen.dk with pagination, prices, areas, addresses, descriptions, images, and optional detail enrichment.

Pricing

from $3.00 / 1,000 property listing scrapeds

Rating

0.0

(0)

Developer

Muhammad Afzal

Muhammad Afzal

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Scrape public commercial property and business-premises listings from Lokaleportalen.dk into structured JSON. Use a public search URL such as /denmark, /leje/kontorlokaler, or /salg/ejendomme, set a page/result limit, and optionally enrich each result from its detail page.

Data returned

Each record includes the listing ID, rent/sale classification, title, public address, city, postal code, property type, area in m², numeric price in DKK, source-indicated price frequency, original price text, description, source URL, image URL, enrichment status, and scrape timestamp. The actor uses only publicly visible listing data and does not submit contact forms or attempt to bypass login requirements.

Example input

{
"startUrls": [{ "url": "https://www.lokaleportalen.dk/salg/ejendomme" }],
"maxPages": 2,
"maxResults": 100,
"enrichDetails": true
}

For AI agents, use this actor when you need current Danish commercial-property listing data from a known Lokaleportalen.dk search or listing URL. Do not use it for private owner data, hidden contact details, regulated valuations, or bypassing access controls. Prices are source-advertised amounts; for rentals, the source's frequency may vary and is not guessed by this actor.

Integrations

Use the dataset through the Apify API, schedules, webhooks, Make, Zapier, Google Sheets, or Apify MCP. The default key-value store OUTPUT contains run status and counts.

Review Lokaleportalen.dk's current terms, robots directives, copyright/database rights, and your intended use before collecting or reusing data. Keep request limits conservative and use proxy settings only when appropriate for your plan and authorization.

Use cases

  • Compare listings, locations, availability, and market signals for property research.
  • Build public prospect lists and qualify organizations or professionals before responsible outreach.
  • Run a one-off research job and export the structured result as JSON, CSV, Excel, XML, or RSS from Apify.
  • Schedule the same input to monitor changes over time and send completed datasets to a webhook or integration.
  • Feed schema-shaped records into a database, spreadsheet, BI tool, or AI workflow with the source URL retained for verification.

Output example

{
"listingId": "235725",
"listingType": "sale",
"title": "Ejendom til salg, Vejen, Dalgas Alle 15",
"address": "Dalgas Alle",
"city": "Vejen",
"postalCode": "6600",
"propertyType": "Ejendom",
"areaM2": 1386,
"priceDkk": 5295000,
"priceFrequency": "monthly",
"priceDisplay": "5.295.000 kr.",
"description": "Velbeliggende industriejendom..."
}

The exact fields depend on the selected input and what the public source exposes. Use the dataset schema as the machine-readable contract and retain source URLs for verification.

Run Lokaleportalen.dk Property Scraper with the Apify API

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('muhammadafzal/lokaleportalen-dk-scraper').call({
"startUrls": [
{
"url": "https://www.lokaleportalen.dk/denmark"
}
],
"maxPages": 1,
"maxResults": 100,
"enrichDetails": true,
"proxyConfiguration": {
"useApifyProxy": false
}
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

You can also run the Actor from Apify Console, schedules, webhooks, the REST API, Make, Zapier, n8n, or the hosted Apify MCP server.

Pricing and cost control

This Actor uses pay-per-event pricing. Charges follow the live event definitions shown below.

EventPrice (USD)When it is charged
result-item$0.003One normalized public Lokaleportalen.dk commercial-property listing saved to the dataset.

For example, 100 result-item events cost $0.3, plus any enabled Actor-start event. Empty or failed work should be checked in the run log and dataset before reuse.

Support

When reporting a problem, include the Actor run ID, a redacted input, the expected result, and a small public example URL when applicable. Do not post API tokens, cookies, credentials, or personal data in an issue.

Frequently asked questions

Can I schedule Lokaleportalen.dk Property Scraper?

Yes. Use an Apify schedule to run the same saved input at a chosen interval, then connect a webhook or integration to process the dataset when the run finishes.

How should I test a new input?

Begin with the prefilled example or a small limit. Confirm that the output fields, source coverage, runtime, and live charges match your workflow before increasing the scope.

How do I export the results?

Open the run's default dataset in Apify Console and export JSON, CSV, Excel, XML, or RSS. Applications can retrieve the same records through the Apify API client or REST dataset endpoint.

Can an AI agent call this Actor?

Yes. Add muhammadafzal/lokaleportalen-dk-scraper through the hosted Apify MCP server or call it through the API. The Actor's input and dataset schemas help agents construct valid requests and interpret returned records.