# Willhaben Vienna Rental Listings Scraper

> Willhaben Vienna Rental Listings Scraper is a paid API for AI agents from api.timzinin.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Scrapes and returns current rental apartment listings from willhaben.at for Vienna, including price, location, size, images, and description.

## Facts

- Endpoint: POST https://api.timzinin.com/api/willhaben-vienna
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/willhaben-vienna-rental-listings-scraper-7356ffcb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R2DPZO8oV0s1CokfztNk7

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability willhaben-vienna-rental-listings-scraper-7356ffcb -d '<json body>'
```

Example prompt: Can you pull current rental apartment listings from willhaben in Vienna for me? I'm looking for something around 2 rooms, and I'd like to see the price, size, location coordinates, and images for each result.

## When to prefer this

Choose this endpoint when you need structured, up-to-date rental listing data from willhaben.at in Vienna, including GPS coordinates, images, pricing, and full descriptions — particularly useful for agents doing real estate research, price comparison, or automated apartment hunting in the Austrian market. Prefer this over generic web search when you need machine-readable structured property data rather than raw HTML.

## Known failure modes

- No listings found matching criteria — returns empty results array with item_count 0
- willhaben.at blocks or rate-limits the scraper — may return error or stale data
- Payment not settled — request rejected before scraping begins
- Invalid or missing search parameters — may return generic or unfiltered results
- Listing data incomplete if willhaben changes page structure

## How this service works

Pay-per-call data & tool APIs

## Output

Returns a JSON object with metadata (runtime, settlement status, item count) and an array of listing results, each containing: latitude/longitude coordinates, willhaben listing URL, price in EUR, number of rooms, title, image URLs, area in sqm, currency, location string (district), deal type (rent), scraped timestamp, posted date, property type, description text, and source portal identifier.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "city": {
   "type": "string"
  },
  "deal_type": {
   "enum": [
    "mietwohnungen",
    "eigentumswohnung"
   ],
   "type": "string"
  },
  "max_items": {
   "type": "integer",
   "maximum": 2000,
   "minimum": 1
  },
  "max_pages": {
   "type": "integer",
   "maximum": 50,
   "minimum": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "meta": {
   "run_ms": 1200,
   "settled": true,
   "item_count": 1
  },
  "results": [
   {
    "lat": 48.23089198,
    "lng": 16.47927772,
    "url": "https://www.willhaben.at/iad/immobilien/d/mietwohnungen/wien/wien-1220-donaustadt/freiheit-mieten-pioniere-sein-dein-neuer-ort-dein-neues-zuhause-am-hausfeld-top-33-1516598431/",
    "found": true,
    "price": 1144.18,
    "rooms": 2,
    "title": "FREIHEIT MIETEN, PIONIERE SEIN. Dein neuer Ort, dein neues Zuhause am Hausfeld! (Top 33)",
    "images": [
     "https://cache.willhaben.at/mmo/1/151/659/8431_741170553.jpg",
     "https://cache.willhaben.at/mmo/1/151/659/8431_-1458965307.jpg",
     "https://cache.willhaben.at/mmo/1/151/659/8431_-588301439.jpg",
     "https://cache.willhaben.at/mmo/1/151/659/8431_1681851251.jpg",
     "https://cache.willhaben.at/mmo/1/151/659/8431_24030570.jpg"
    ],
    "area_sqm": 51,
    "currency": "EUR",
    "location": "Wien, 22. Bezirk, Donaustadt",
    "deal_type": "rent",
    "scraped_at": "2026-07-30T07:16:39.368Z",
    "description": "Bist Du bereit, als Pionier das Obere Hausfeld zu erobern? Hier, am Hausfeld, direkt an der neuen U2, verschmelzen die Vorzüge der Metropole mit der Weite des Umlands zu einem einzigartigen Lebensgefühl...",
    "posted_date": "2026-07-30T08:59:03Z",
    "property_type": "Wohnung",
    "source_portal": "willhaben-vienna"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/willhaben-vienna-rental-listings-scraper-7356ffcb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.timzinin.com](https://www.zero.xyz/host/api.timzinin.com/llms.txt)
