← Back

Funda Search Scraper

webcrawler/funda-search

The Funda Search Scraper extracts valuable property data, such as address, price, number of bedrooms, and listing details from Funda, ensuring compliance with copyright regulations by only collecting publicly available information.

$4.00 / 1,000 requests

Funda Search 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: {
            "selected_area": "Amsterdam,1055HA",
            "type": "koop",
            "publication_date": "3",
            "price_min": "400000",
            "price_max": "600000",
            "sort": "price_down",
            "page": "1",
        },
        crawler_id: "webcrawler/funda-search",
    })
    console.log(response)
}

main().catch(console.error);