← Back

Funda Property Scraper

webcrawler/funda

The Funda crawler gathers key property information from Funda, such as location, price, description, images, living area, and more.

$3.00 / 1,000 requests

Funda Property Scraper API Javascript integration

Install dependency

npm i webcrawlerapi-js

How to get an access key?

Read Docs Access Key section to obtain a key.

Usage

import webcrawlerapi from \"webcrawlerapi-js\";

async function main() {
    const client = new webcrawlerapi.WebcrawlerClient(
    \"YOUR API KEY HERE\"
    )
    const response = await client.scrape({
        input: {
            "url": "https://www.funda.nl/detail/koop/bourtange/huis-van-sonoystraat-30/43520849/",
        },
        crawler_id: "webcrawler/funda",
    })
    console.log(response)
}

main().catch(console.error);