Discover/WG-Gesucht API
live

WG-Gesucht APIwg-gesucht.de

Search shared rooms and apartments on WG-Gesucht.de via API. Returns rent, size, district, availability, and contact details for Berlin listings.

Endpoint health
verified 4d ago
search_listings
1/1 passing latest checkself-healing
Endpoints
1
Updated
21d ago

What is the WG-Gesucht API?

The WG-Gesucht.de API exposes a single search_listings endpoint that returns up to hundreds of Berlin housing listings in one call, with 8 structured fields per listing including rent, room size, district, availability date, and contact name. It covers WG shared rooms, single-room apartments, and larger apartments, and filters out women-only listings by default so results are immediately actionable for general searches.

Try it
Maximum number of listings to return.
api.parse.bot/scraper/9c7e8891-2311-48ef-84cc-c3e4af8db46b/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9c7e8891-2311-48ef-84cc-c3e4af8db46b/search_listings?limit=5' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace wg-gesucht-de-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: WG-Gesucht housing search — bounded, re-runnable."""
from parse_apis.wg_gesucht.de_housing_listings_api import WGGesucht, Listing, ListingNotFound

client = WGGesucht()

# Search for available listings in Berlin, capped at 5 results.
for listing in client.listings.search(limit=5):
    print(listing.title, listing.district, listing.rent_per_month)

# Drill-down: take the first listing and inspect its fields.
first = client.listings.search(limit=1).first()
if first:
    print(first.url, first.size_sqm, first.availability_date, first.is_unlimited)

# Typed error handling: catch ListingNotFound if criteria yield nothing.
try:
    result = client.listings.search(limit=3).first()
    if result:
        print(result.title, result.rent_per_month)
except ListingNotFound as exc:
    print(f"No listings found: {exc}")

print("exercised: listings.search / attribute access / ListingNotFound error handling")
All endpoints · 1 totalmissing one? ·

Search for shared rooms and apartments on WG-Gesucht.de in Berlin. Returns listings with rent, room size, district, availability date, and contact information. Results span WG rooms, 1-room apartments, and larger apartments. Listings are filtered to exclude women-only offers and those available before October 2025. Paginated internally across multiple categories.

Input
ParamTypeDescription
limitintegerMaximum number of listings to return.
Response
{
  "type": "object",
  "fields": {
    "total": "integer total number of listings returned",
    "listings": "array of listing objects with title, url, rent_per_month, size_sqm, district, availability_date, contact_name, is_women_only, and is_unlimited fields"
  },
  "sample": {
    "data": {
      "total": 5,
      "listings": [
        {
          "url": "https://www.wg-gesucht.de/wg-zimmer-in-Berlin-Charlottenburg.10049661.html",
          "title": "URBANELITE.COM // Keine Kaution! // All inklusive möblierte Charlottenburg Zimmer",
          "district": "Charlottenburg",
          "size_sqm": 20,
          "contact_name": "Contact via site",
          "is_unlimited": false,
          "is_women_only": false,
          "rent_per_month": 999,
          "availability_date": "01.07.2026"
        }
      ]
    },
    "status": "success"
  }
}

About the WG-Gesucht API

What the API Returns

The search_listings endpoint queries Berlin housing listings from WG-Gesucht.de and returns an array of listing objects under the listings key, alongside a total count. Each listing object includes title, url, rent_per_month, size_sqm, district, availability_date, contact_name, and is_women_only. The url field links directly to the full listing page for deeper detail not included in the summary response.

Filtering and Scope

The single available input parameter is limit (integer, optional), which caps the number of results returned in a single call. Listings span three property types: WG shared rooms, 1-room apartments, and larger multi-room apartments. Women-only listings are excluded from results by default, so the is_women_only field in each returned object will be false for all results under standard query behavior.

Coverage and Freshness

Coverage is scoped to Berlin. The district field identifies which Berlin neighborhood each listing belongs to, making it straightforward to filter results client-side by area. The availability_date field reflects when the room or apartment becomes available, which is useful for time-sensitive apartment searches or monitoring pipelines.

Reliability & maintenanceVerified

The WG-Gesucht API is a managed, monitored endpoint for wg-gesucht.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when wg-gesucht.de changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official wg-gesucht.de API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a Berlin apartment search tool filtered by district and maximum rent_per_month
  • Monitor availability_date fields to alert users when listings open within a target move-in window
  • Aggregate rent_per_month and size_sqm data to track average Berlin rental prices by district over time
  • Populate a relocation dashboard showing WG rooms and apartments available in specific Berlin neighborhoods
  • Feed a Telegram or Slack bot that posts new listings matching a budget threshold as they appear
  • Compile contact_name and url data to build a shortlist of listings for direct outreach
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does WG-Gesucht.de offer an official developer API?+
WG-Gesucht.de does not publish a public developer API or documented endpoint for third-party access to its listing data.
What housing types does search_listings cover, and can I filter by property type?+
The endpoint returns WG shared rooms, 1-room apartments, and larger apartments. The current response does not include a property-type field for server-side filtering, so type filtering must be done client-side based on listing title or other returned fields. You can fork this API on Parse and revise it to add a property_type filter parameter.
Is coverage limited to Berlin, or does the API return listings from other German cities?+
The API currently covers Berlin only. WG-Gesucht.de lists housing across many German cities, but those are not currently included. You can fork this API on Parse and revise it to target additional cities.
Does the API return the full listing description, photos, or landlord contact details beyond contact_name?+
The current response includes contact_name and a url to the full listing, but does not return listing body text, photos, phone numbers, or email addresses. You can fork this API on Parse and revise it to add a detail endpoint that fetches the full listing page for those fields.
How should I handle pagination if I need more listings than the limit parameter allows?+
The API exposes a single limit parameter with no offset or page cursor in the current implementation. To retrieve results across multiple pages, you would need to fork this API on Parse and revise it to add pagination support.
Page content last updated . Spec covers 1 endpoint from wg-gesucht.de.
Related APIs in Real EstateSee all →
immowelt.de API
Search and browse real estate listings across Germany on Immowelt.de, with access to property details, images, and features for both rentals and sales. Filter results by location and sorting preferences to find properties that match your needs.
inberlinwohnen.de API
Search and browse affordable apartment listings from Berlin's state-owned housing companies, view detailed property information, and access company profiles and tenant guides. Find your next home in Berlin with comprehensive data on available rentals and housing provider information in one place.
immoscout24.de API
Search and browse real estate listings from Germany's leading property portal Immobilienscout24. Filter by location, property type, and price range, and retrieve comprehensive listing details including size, amenities, contact information, and more.
monteurzimmer.de API
monteurzimmer.de API
immonet.de API
Search real estate listings across Germany and retrieve detailed property information including pricing, features, and location data from immonet.de. Find properties for sale or rent with comprehensive market data.
kleinanzeigen.de API
Search and retrieve classified ad listings from kleinanzeigen.de. Filter by keyword, category, price range, and sorting order. Supports vehicles, real estate, jobs, electronics, and general products, with full listing details including title, price, description, location, and seller information.
rentals.ca API
Search and browse rental listings across Canada by city or neighbourhood, and view detailed property information including prices, amenities, and availability. Find your next home by filtering thousands of rental properties on Rentals.ca in real-time.
pararius.com API
Search and browse rental property listings on Pararius.com. Filter by city, price, size, and furnishing; retrieve full property details; look up listings by estate agent; and autocomplete location queries.