VOOZH about

URL: https://apify.com/blackfalcondata/willhaben-all-scraper

⇱ Willhaben.at Scraper | Austria’s Largest Classifieds Β· Apify


πŸ‘ Willhaben.at Scraper - Austria’s Classifieds avatar

Willhaben.at Scraper - Austria’s Classifieds

Pricing

from $2.00 / 1,000 results

Go to Apify Store

Willhaben.at Scraper - Austria’s Classifieds

Scrape willhaben.at β€” Austria's largest classifieds platform. Pull listings from any pasted search URL across every platform section with incremental change tracking that emits only new and updated items between runs.

Pricing

from $2.00 / 1,000 results

Rating

0.0

(0)

Developer

πŸ‘ Black Falcon Data

Black Falcon Data

Maintained by Community

Actor stats

1

Bookmarked

16

Total users

4

Monthly active users

10 hours ago

Last modified

Share

What does Willhaben.at Scraper do?

Willhaben.at Scraper extracts structured listing data from willhaben.at β€” including salary data, full descriptions, and location data. It supports keyword search, location filters, and controllable result limits, so you can run the same query consistently over time. The actor also offers detail enrichment (full descriptions and company metadata) where the source provides them.

How to use this actor

  • πŸ‘‰ Register for a free Apify account β€” no credit card required.
  • πŸŽ‰ Just click Sign up free on Apify β†’ and complete a quick signup.
  • πŸ’° A free Apify account includes $5 in monthly credits β€” enough to test this actor.
  • ⏳ Scrape during the free trial, with no commitment or upfront payment required.

Key features

  • ♻️ Incremental mode β€” daily runs emit only listings that are new or whose price/condition changed since last run. Perfect for inventory-diff dashboards and competitive pricing alerts. Saves 80–95% on recurring monitoring.
  • πŸ”” Notifications β€” telegram / Slack / Discord / WhatsApp / webhook alerts on each run. Combine with incremental to ping only when prices or inventory actually move.
  • πŸ”— Paste-mode β€” paste any willhaben.at URL β€” single-listing pages, search-results, or category SEO URLs. Build the filter you want in the browser, copy, paste; the actor parses every query param.
  • πŸ“‹ Detail enrichment β€” two-stage scraping β€” list first, then enrich each listing with the full detail-page payload. One input toggle controls the depth.
  • πŸ’΅ Structured pricing β€” listing price parsed into priceMin / priceMax / priceCurrency with period (per night / per month / total) where applicable. Hidden-price flag preserved.
  • πŸ“§ Email + phone extraction β€” best-effort regex extraction of contact emails and phone numbers from descriptions β€” emitted as extractedEmails[] and extractedPhones[] on every record.
  • πŸ“¦ Compact mode β€” light payload with core fields only β€” comparable rows across listings without HTML or metadata overhead. Perfect for pricing dashboards.
  • βœ‚οΈ Description truncation β€” cap description length with descriptionMaxLength to control LLM prompt cost and dataset size β€” set 0 for full descriptions, or any char-limit to trim.
  • πŸ“Œ Change classification β€” each record carries a changeType of NEW / UPDATED / UNCHANGED / REAPPEARED / EXPIRED. Default emits NEW + UPDATED + REAPPEARED; opt into the others with emitUnchanged / emitExpired. Repost detection flags previously-expired listings that come back.
  • πŸ“€ Export anywhere β€” Download the dataset as JSON, CSV, or Excel from the Apify Console, or stream live via the Apify API and integrations (Make, Zapier, Google Sheets, n8n, …).
  • πŸ”Œ MCP connectors β€” export your results into Notion via Apify's MCP connectors β€” a clean run-summary page, no glue code. Opt-in via the App connector field; deterministic field-mapping, no AI. Built on Apify's connector framework, so more destinations open up as their catalog grows.

What data can you extract from willhaben.at?

Each result includes Core listing fields (listingId, listingUuid, section, title, price, priceText, location, and district, and more), detail fields when enrichment is enabled (descriptionSnippet, immoDescription, carDescription, jobDescription, and mkDescription), apply information (jobApplyUrl), and company metadata (jobCompany, jobCompanyId, jobCompanyLogoUrl, and jobCompanyType). In standard mode, all fields are always present β€” unavailable data points are returned as null, never omitted. In compact mode, only core fields are returned.

Enable detail enrichment in the input to get richer fields such as full descriptions and company metadata where the source provides them.

Input

The main inputs are a search keyword, an optional location filter, and a result limit. Additional filters and options are available in the input schema.

Key parameters:

  • startUrls β€” Paste one or more willhaben.at search URLs β€” each runs as its own search task and results are merged round-robin so every URL contributes to the output. Section, sub-type, keyword, and filters are extracted from each URL automatically. All URLs must target the same section (jobs / immobilien / autos / marktplatz) β€” for mixed sections, run the actor multiple times. Each unique listing is returned only once β€” duplicates across pages or overlapping search URLs are removed by listing ID.
  • searchUrl β€” Single-URL legacy field. Equivalent to a one-entry 'Search URLs' array β€” supported for backward compatibility. Other fields below override individual values if needed.
  • section β€” Which part of willhaben.at to scrape. (default: "marktplatz")
  • immoSubType β€” Category within the Immobilien section. Only used when section = immobilien. (default: "mietwohnungen")
  • query β€” Search keyword (optional). Leave empty to get all listings in the section.
  • location β€” City or district name for Marktplatz, Immobilien, and Autos searches (e.g. 'Wien'). For Jobs, use jobLocation instead.
  • priceMin β€” Minimum listing price in EUR. Not applicable for Jobs.
  • priceMax β€” Maximum listing price in EUR. Not applicable for Jobs.
  • jobLocation β€” City or location filter for jobs (e.g. 'Wien'). Only used when section = jobs.
  • jobRegion β€” Federal state or region filter (e.g. 'wien'). Only used when section = jobs.
  • jobOperationArea β€” Job operation/industry area filter. Only used when section = jobs.
  • jobEmploymentMode β€” Employment type filter (e.g. 'vollzeit', 'teilzeit'). Only used when section = jobs.
  • ...and 27 more parameters

Input examples

Basic search β€” Keyword-driven search with a result cap.

β†’ Full payload per result β€” all standard fields populated where the source provides them.

{
"query":"fahrrad",
"maxResults":50
}

Incremental tracking β€” Only emit listings that changed since the previous run with this stateKey.

β†’ First run builds the baseline state. Subsequent runs emit only records that are new or whose tracked content changed. Set emitUnchanged: true to include unchanged records as well.

{
"query":"fahrrad",
"maxResults":200,
"incrementalMode":true,
"stateKey":"fahrrad-tracker"
}

Compact output for AI agents β€” Return only core fields for AI-agent and MCP workflows.

β†’ Small payload with the most important fields β€” ideal for piping into LLMs without token overhead.

{
"query":"fahrrad",
"maxResults":50,
"compact":true
}

Output

Each run produces a dataset of structured listing records. Results can be downloaded as JSON, CSV, or Excel from the Dataset tab in Apify Console.

Example listing record

{
"listingId":"9b2f69e6fad57aa036adaa5a2d6959f1a5d8b08dc1f1cc30d4b469a501e49f4e",
"listingUuid":"b9e46f22-c599-4e65-84eb-b34e9d305250",
"section":"marktplatz",
"title":"Match Attax EM 2024 packs",
"price":20,
"priceText":"€ 20",
"location":"Bad Sauerbrunn",
"district":"Mattersburg",
"federalState":"Burgenland",
"postCode":"7202",
"country":"Γ–sterreich",
"coordinates":"47.77563,16.32758",
"imageUrl":"https://cache.willhaben.at/mmo/4/137/055/8764_-1549737357.jpg",
"imageUrls":[
"https://cache.willhaben.at/mmo/4/137/055/8764_-1549737357.jpg",
"https://cache.willhaben.at/mmo/4/137/055/8764_590665760.jpg"
],
"descriptionSnippet":"20€ BΓΌndel Preis. Einzelnverkauf bei 1,5€ pro Pack. Bei Fragen oder angeboten schreiben.",
"isPrivateSeller":true,
"sellerType":"Privat",
"sellerId":"35913701",
"sellerName":"Catoy",
"sellerAddress":null,
"isBumped":null,
"publishedAt":"2026-04-01T01:20:00Z",
"portalUrl":"https://www.willhaben.at/iad/kaufen-und-verkaufen/d/match-attax-em-2024-packs-1370558764/",
"scrapedAt":"2026-03-31T23:21:18.599Z",
"changeType":null,
"immoType":null,
"immoRooms":null,
"immoLivingArea":null,
"immoRentPerMonth":null,
"immoFloor":null,
"immoOutdoorArea":null,
"immoPlotSize":null,
"immoFeatures":null,
"immoOwnageType":null,
"immoDeposit":null,
"immoAvailableDate":null,
"immoDescription":null,
"immoContactName":null,
"immoContactPhone":null,
"immoContactEmail":null,
"carMake":null,
"carModel":null,
"carModelSpec":null,
"carYear":null,
"carMileage":null,
"carFuel":null,
"carGearbox":null,
"carType":null,
"carCondition":null,
"carPowerKw":null,
"carDoors":null,
"carSeats":null,
"carColor":null,
"carWheelDrive":null,
"carEngineCC":null,
"carOwnerCount":null,
"carEquipment":null,
"carWarranty":null,
"carDescription":null,
"jobCompany":null,
"jobCompanyId":null,
"jobCompanyLogoUrl":null,
"jobCompanyType":null,
"jobCompanyIndustry":null,
"jobCompanyUrl":null,
"jobCompanyAddress":null,
"jobCompanyEmployeeCount":null,
"jobCompanyFoundingYear":null,
"jobSalary":null,
"jobSalaryTimeFrame":null,
"jobSalaryText":null,
"jobOverpay":null,
"jobEmploymentModes":null,
"jobPositionLevel":null,
"jobEmploymentTime":null,
"jobRemote":null,
"jobDescription":null,
"jobLanguageSkills":null,
"jobContactName":null,
"jobContactEmail":null,
"jobApplyUrl":null,
"jobExpiryDate":null,
"mkDescription":"20€ BΓΌndel Preis. Einzelnverkauf bei 1,5€ pro Pack. Bei Fragen oder angeboten schreiben.",
"mkSellerName":"Catoy",
"mkCondition":null,
"mkDelivery":null
}

Incremental fields

When incremental mode is on, each record also carries:

  • changeType β€” one of NEW, UPDATED, UNCHANGED, REAPPEARED, EXPIRED. Default output covers NEW / UPDATED / REAPPEARED; set emitUnchanged: true or emitExpired: true to opt into the others.
  • isRepost, repostOfId, repostDetectedAt β€” populated when a new listing matches the tracked content of a previously expired one. Set skipReposts: true to drop detected reposts from the output.

How to scrape willhaben.at

  1. Go to Willhaben.at Scraper in Apify Console.
  2. Enter a search keyword and optional location filter.
  3. Set maxResults to control how many results you need.
  4. Enable includeDetails if you need full descriptions.
  5. Click Start and wait for the run to finish.
  6. Export the dataset as JSON, CSV, or Excel.

Use cases

  • Build a unified feed across willhaben.at sections β€” jobs, real estate, cars, marketplace β€” from a single pasted search URL.
  • Monitor new and changed listings on scheduled runs without processing the full dataset every time.
  • Track pricing and listing-volume trends across regions and categories over time.
  • Build outreach lists using contact details and apply URLs from listings.
  • Use structured location data for regional analysis, mapping, and geo-targeting.
  • Export clean, structured data to dashboards, spreadsheets, or data warehouses.

How much does it cost to scrape willhaben.at?

Willhaben.at Scraper uses pay-per-event pricing. You pay a small fee when the run starts and then for each result that is actually produced.

  • Run start: $0.01 per run
  • Per result: $0.002 per listing record

Example costs:

  • 10 results: $0.03
  • 25 results: $0.06
  • 100 results: $0.21
  • 200 results: $0.41
  • 500 results: $1.01

Example: recurring monitoring savings

These examples compare full re-scrapes with incremental runs at different churn rates. Churn is the share of listings that are new or whose tracked content changed since the previous run. Actual churn depends on your query breadth, source activity, and polling frequency β€” the scenarios below are examples, not predictions.

Example setup: 200 results per run, daily polling (30 runs/month). Event-pricing examples scale linearly with result count.

Churn rateFull re-scrape run costIncremental run costSavings vs full re-scrapeMonthly cost after baseline
5% β€” stable niche query$0.41$0.03$0.38 (93%)$0.90
15% β€” moderate broad query$0.41$0.07$0.34 (83%)$2.10
30% β€” high-volume aggregator$0.41$0.13$0.28 (68%)$3.90

Full re-scrape monthly cost at daily polling: $12.30. First month with incremental costs $1.28 / $2.44 / $4.18 for the 5% / 15% / 30% scenarios because the first run builds baseline state at full cost before incremental savings apply.

Platform usage (compute and proxies) is billed separately by Apify based on actual consumption. Incremental runs consume less on result processing, though fixed per-run overhead stays the same.

FAQ

How many results can I get from willhaben.at?

The number of results depends on the search query and available listings on willhaben.at. Use the maxResults parameter to control how many results are returned per run.

Does Willhaben.at Scraper support recurring monitoring?

Yes. Enable incremental mode to only receive new or changed listings on subsequent runs. This is ideal for scheduled monitoring where you want to track changes over time without re-processing the full dataset.

Can I integrate Willhaben.at Scraper with other apps?

Yes. Willhaben.at Scraper works with Apify's integrations to connect with tools like Zapier, Make, Google Sheets, Slack, and more. You can also use webhooks to trigger actions when a run completes.

Can I use Willhaben.at Scraper with the Apify API?

Yes. You can start runs, manage inputs, and retrieve results programmatically through the Apify API. Client libraries are available for JavaScript, Python, and other languages.

Can I use Willhaben.at Scraper through an MCP Server?

Yes. Apify provides an MCP Server that lets AI assistants and agents call this actor directly. Use compact mode, descriptionMaxLength, a single descriptionFormat, and excludeEmptyFields to keep payloads manageable for LLM context windows.

Is it legal to scrape willhaben.at?

This actor extracts publicly available data from willhaben.at. Web scraping of public information is generally considered legal, but you should always review the target site's terms of service and ensure your use case complies with applicable laws and regulations, including GDPR where relevant.

Your feedback

If you have questions, need a feature, or found a bug, please open an issue on the actor's page in Apify Console. Your feedback helps us improve.

You might also like

Getting started with Apify

New to Apify? Create a free account with $5 credit β€” no credit card required.

  1. Sign up β€” $5 platform credit included
  2. Open this actor and configure your input
  3. Click Start β€” export results as JSON, CSV, or Excel

Need more later? See Apify pricing.

You might also like

Willhaben Property Details Scraper

ecomscrape/willhaben-property-details-scraper

Access Austria's largest property marketplace data with our Willhaben.at scraper. Extract detailed property listings, pricing, locations, and contact information from millions of real estate ads. Perfect for market analysis, price comparison, and real estate research across Austrian regions.

ecomscrape

9

Willhaben Property Search Scraper

ecomscrape/willhaben-property-search-scraper

Extract comprehensive property listings from willhaben.at, Austria's largest marketplace with 4.2+ million monthly users. Automate real estate data collection for rental apartments, houses, and commercial properties with detailed attributes, images, and advertiser information for market analysis.

ecomscrape

30

Whatnot Scraper

parseforge/whatnot-scraper

Scrapes Whatnot.com for listings, auctions, and live stream data. Extracts titles, prices, bids, seller ratings, images, auction details, and seller info. Supports filtering by type, sorting by price, newest, or ending soonest. Ideal for resellers, collectors, and market researchers.

Whatnot Data Scraper

devcake/whatnot-data-scraper

Extract product listings and discover live auction streams from Whatnot.com

Whatnot Seller Scraper

devcake/whatnot-seller-scraper

Extract seller information from Whatnot.com - Scrape seller profiles, products, reviews, and livestreams for market research, competitor analysis, and lead generation.

Whatnot Seller Scraper

wisteria_banjo/whatnot-scraper

Whatnot Scraper scrapes seller profiles and returns: Seller email (if available), Ratings, Review count, Sold count, Followers, Shop products with price and inventory quantity, Shows, and Customer reviews with ratings. Read instructions for more details.

66

5.0

Beckett Scraper - BGS Population Report & Online Price Guide

jungle_synthesizer/beckett-bgs-population-price-guide-scraper

Scrape Beckett.com for BGS population report data. Get per-card grade-by-grade BGS counts (Pristine 10, Gem Mint 9.5, Mint 9, NM-Mint+...). Cert-lookup mode verifies BGS/BVG/BCCG slabs. Filter by sport, set, player. Built for slab investors and collectors.

πŸ‘ User avatar

BowTiedRaccoon

9

Goldin Auctions Scraper - Sports Cards & Collectibles

jungle_synthesizer/goldin-auctions-marketplace-scraper

Scrape Goldin Auctions (eBay-owned) for marketplace listings and past-auction results. Captures weekly / premium / elite auction tiers with PSA / BGS / SGC / CGC grade normalization, final-sale prices, buyer's-premium %, bid counts, and reserve-met detection.

πŸ‘ User avatar

BowTiedRaccoon

9

Willhaben.at Scraper - Austrian Classifieds

santamaria-automations/willhaben-at-scraper

Scrape classified listings from willhaben.at, Austria's #1 classifieds platform. Cars, real estate, jobs, electronics and more. Paste any search URL with all filters. HTTP-only, fast, pay-per-result.

Whatnot Scraper – Extract Seller, Search & Category Data

epicscrapers/whatnot-scraper

Scrape Whatnot.com at scale – search results, seller profiles, reviews, live shows, shop listings, auctions, category leaderboards & more. Fast, reliable and no auth required. Export as JSON, CSV, XML or Excel. Search by keyword or URL, analyze sellers in bulk, or browse and deep-into any category.

34

5.0