Discover/inberlinwohnen API
live

inberlinwohnen APIinberlinwohnen.de

Access Berlin state-owned housing apartment listings, filter by district, rent, and rooms, and retrieve company profiles via the inberlinwohnen.de API.

Endpoint health
verified 3d ago
get_all_listings
search_listings
get_landeseigene_companies
get_listing_detail
get_gut_zu_wissen
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the inberlinwohnen API?

The inberlinwohnen.de API exposes 5 endpoints covering apartment listings, detailed property records, and company information from Berlin's state-owned housing portal (Wohnungsfinder). The get_all_listings endpoint returns paginated results with fields including rent_cold, rent_total, district, area, rooms, and company_name for every currently available unit across Berlin's seven landeseigene Wohnungsbaugesellschaften.

Try it
Maximum number of pages to scrape. Each page contains ~10 apartments. If omitted, scrapes all available pages.
api.parse.bot/scraper/c78d4e68-786f-4469-ac1d-081ddf0dfd61/<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/c78d4e68-786f-4469-ac1d-081ddf0dfd61/get_all_listings?limit_pages=1' \
  -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 inberlinwohnen-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.

from parse_apis.inberlinwohnen_api import InBerlinWohnen, Apartment, Company, Article

client = InBerlinWohnen(api_key="YOUR_API_KEY")

# Search for affordable 2-room apartments in Spandau
for apt in client.apartments.search(district="Spandau", rooms_min=2, rent_max=800):
    print(apt.title, apt.district, apt.rent_cold, apt.area)

# List all available apartments (first page only)
for apartment in client.apartments.list(limit_pages=1):
    print(apartment.title, apartment.company_name, apartment.rent_total)

# List Berlin's state-owned housing companies
for company in client.companies.list():
    print(company.name)

# List informational articles
for article in client.articles.list():
    print(article.title, article.url)
All endpoints · 5 totalmissing one? ·

Extract all available apartment listings from the Wohnungsfinder. Paginates through Livewire pages server-side and returns the full set of currently advertised apartments. Each apartment includes address, rent, rooms, area, company, and energy data. Typically 10-50 listings total across all pages.

Input
ParamTypeDescription
limit_pagesintegerMaximum number of pages to scrape. Each page contains ~10 apartments. If omitted, scrapes all available pages.
Response
{
  "type": "object",
  "fields": {
    "total": "integer total number of apartments returned",
    "apartments": "array of apartment objects with id, title, object_id, rooms, area, rent_cold, rent_total, extra_costs, district, company_name, detail_url, street, house_number, zip_code, floor, construction_year, available_from, and other fields"
  },
  "sample": {
    "data": {
      "total": 10,
      "apartments": [
        {
          "id": 17790,
          "lat": "52.51018144",
          "lon": "13.48343436",
          "area": "39,10",
          "floor": 2,
          "rooms": "1,0",
          "title": "Nur ohne WBS! Anmietung ab sofort",
          "street": "Schulze-Boysen-Straße",
          "details": {},
          "district": "Lichtenberg",
          "zip_code": "10365",
          "bathrooms": 1,
          "image_url": "https://www.inberlinwohnen.de/images/apartments/1781085068-ngmIXoLmbf.webp",
          "object_id": "ESQ 1950/33559/85",
          "rent_cold": "353,07",
          "detail_url": "https://www.howoge.de/wohnungen-gewerbe/wohnungssuche/detail/1950-33559-85.html?t=ibw",
          "rent_total": 450.03,
          "extra_costs": "96,96",
          "company_name": "HOWOGE",
          "energy_value": "0,00",
          "house_number": "49",
          "listing_date": "2026-06-10T09:51:08.000000Z",
          "available_from": "01.07.2026",
          "energy_pass_type": "Bedarfsausweis",
          "construction_year": "1987"
        }
      ]
    },
    "status": "success"
  }
}

About the inberlinwohnen API

Apartment Listings and Search

The get_all_listings endpoint retrieves all available apartments from the Wohnungsfinder, returning an array of objects with fields such as id, object_id, title, district, area, rooms, rent_cold, rent_total, company_name, and detail_url. An optional limit_pages parameter caps how many pages are fetched, which is useful when you only need a quick sample. The search_listings endpoint builds on this by accepting filter parameters: district (case-insensitive partial match), company (e.g. degewo, Gewobag), rent_max, area_min, rooms_min, and rooms_max. Results are narrowed to matching apartments and include a total count.

Apartment Detail Records

The get_listing_detail endpoint accepts either the internal numeric id (e.g. 16422) or the external object_id string (e.g. 7100/70806/0101/0033) and returns a single apartment object with all available fields. Note that area and rooms are returned as strings in German decimal format (comma as separator), and rent_cold is also a formatted string, while rent_total is a numeric value.

Company and Informational Content

The get_landeseigene_companies endpoint returns the seven state-owned housing companies with their name, description, and url. The get_gut_zu_wissen endpoint pulls article titles and URLs from the site's tenant information section, covering guides and resources published under the 'Gut zu wissen' navigation area. Neither endpoint requires any input parameters.

Reliability & maintenanceVerified

The inberlinwohnen API is a managed, monitored endpoint for inberlinwohnen.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when inberlinwohnen.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 inberlinwohnen.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
3d ago
Latest check
5/5 endpoints 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
  • Monitor newly available apartments across specific Berlin districts by polling get_all_listings and filtering on district.
  • Build a rent comparison tool using rent_cold and rent_total fields across different companies and neighborhoods.
  • Alert renters when apartments matching a size and budget threshold appear, using search_listings with area_min, rent_max, and rooms_min.
  • Aggregate company profiles for Berlin's seven state-owned housing companies via get_landeseigene_companies.
  • Index tenant guides and informational articles from the 'Gut zu wissen' section using get_gut_zu_wissen article titles and URLs.
  • Enrich property datasets with per-listing details by resolving object_id values through get_listing_detail.
  • Analyze housing availability by district or company over time by storing and comparing get_all_listings snapshots.
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 inberlinwohnen.de provide an official developer API?+
No. inberlinwohnen.de does not publish a public developer API or documented data feed. This Parse API provides structured access to listing and company data from the site.
How does filtering work in `search_listings`, and what fields can I filter on?+
The search_listings endpoint accepts up to six optional parameters: company (partial, case-insensitive name match), district (partial, case-insensitive), rent_max (maximum cold rent in EUR), area_min (minimum sqm), rooms_min, and rooms_max. All filters are applied together; omitting a parameter means no constraint on that field. The response includes a total count and an apartments array of matching objects.
Are historical or archived listings available through this API?+
No. The API reflects currently available apartments as listed on the Wohnungsfinder at the time of the request. Past or expired listings are not retained. You can fork this API on Parse and revise it to persist historical snapshots to your own data store.
Does the API return floor plans, photos, or energy certificates for apartments?+
Not currently. The API returns structured fields such as area, rooms, rent_cold, rent_total, district, and detail_url, but does not include images, floor plan files, or energy performance data. You can fork the API on Parse and revise get_listing_detail to add extraction of those assets from the linked detail pages.
Why are some numeric fields like `area` and `rooms` returned as strings?+
The source uses German decimal formatting (comma as the decimal separator), so values like 62,50 for area and 2,00 for rooms are returned as strings to preserve the original format. The field rent_total is an exception and is returned as a JavaScript number. Plan for locale-aware parsing if you need these as floats.
Page content last updated . Spec covers 5 endpoints from inberlinwohnen.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.
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.
wg-gesucht.de API
Search and filter housing listings on WG-Gesucht.de to find shared apartments and rooms that match your budget, location, and availability preferences. Retrieve detailed listing information including rent, room size, district, and contact details.
apartments.com API
Search thousands of apartment listings, view detailed property information including amenities and pricing, and discover properties managed by specific companies all in one place. Find your ideal rental by filtering through available apartments and learning more about the management companies behind them.
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.
spotahome.com API
Search rental properties on Spotahome and retrieve detailed listing information including pricing, availability, amenities, pet policy, and landlord profiles. Filter by city, budget, dates, and more to explore mid- to long-term rental options across Spotahome's global inventory.
housing.com API
Search and retrieve real estate listings on Housing.com. Browse properties for sale, rent, plots, and commercial spaces across major Indian cities with filtering by locality and property type.
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.