Discover/Monteurzimmer API
live

Monteurzimmer APImonteurzimmer.de

Access accommodation listings, pricing, amenities, landlord contacts, and city indexes from monteurzimmer.de via 3 structured API endpoints.

Endpoint health
verified 4d ago
list_cities
get_accommodation_details
search_accommodations
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the Monteurzimmer API?

The monteurzimmer.de API exposes 3 endpoints for querying worker accommodation listings across Germany. Use search_accommodations to filter by location, room type, amenities, price, and sort order, then retrieve full listing details — including phone numbers, addresses, and amenity lists — with get_accommodation_details. A third endpoint, list_cities, provides a browsable city index filtered by letter.

Try it
Accommodation type filter
Room/unit type filter
Page number for pagination
Sort order for results
Search radius in km. Accepted values: 0, 10, 20, 30, 40, 50
City name, address, or region to search in
Comma-separated list of amenities to filter by (e.g. wifi,tv,kitchen)
Maximum price per night
Minimum price per night
Price type. Accepted values: person, accommodation
api.parse.bot/scraper/f090f95c-7150-421f-9e3b-22a190a91603/<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/f090f95c-7150-421f-9e3b-22a190a91603/search_accommodations?page=1&location=Berlin' \
  -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 monteurzimmer-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.

"""Monteurzimmer: find worker accommodations in German cities."""
from parse_apis.monteurzimmer_scraper_api import (
    Monteurzimmer, AccommodationType, Sort, AccommodationNotFound
)

client = Monteurzimmer()

# Search for pension-type accommodations in Berlin, sorted by price
for listing in client.accommodations.search(
    location="Berlin", t=AccommodationType.PENSION, sort=Sort.PRICE, limit=3
):
    print(listing.name, listing.position, listing.url_slug)

# Drill into the first result for full details
summary = client.accommodations.search(location="Hamburg", limit=1).first()
if summary:
    detail = summary.details()
    print(detail.name, detail.address_text, detail.phone)
    print("Amenities:", detail.amenities[:5])

# Direct lookup by known URL path
try:
    acc = client.accommodations.get(url_path="/zimmer/10783-berlin-5ac27e75df")
    print(acc.name, acc.address_text)
except AccommodationNotFound as exc:
    print(f"Not found: {exc.url_path}")

# Browse available cities starting with 'm'
for city in client.cities.list(letter="m", limit=5):
    print(city.name, city.path)

print("exercised: accommodations.search / summary.details / accommodations.get / cities.list")
All endpoints · 3 totalmissing one? ·

Search for accommodations by location with optional filters and pagination. Resolves a city name or address to the site's internal location URL, then returns paginated listing results. Each result is a summary with name, position, and URL slug usable for detail lookup. Paginates via integer page parameter; total_results and is_last_page indicate result extent.

Input
ParamTypeDescription
tstringAccommodation type filter
rtstringRoom/unit type filter
pageintegerPage number for pagination
sortstringSort order for results
distanceintegerSearch radius in km. Accepted values: 0, 10, 20, 30, 40, 50
locationrequiredstringCity name, address, or region to search in
equipmentstringComma-separated list of amenities to filter by (e.g. wifi,tv,kitchen)
max_priceintegerMaximum price per night
min_priceintegerMinimum price per night
price_groupstringPrice type. Accepted values: person, accommodation
Response
{
  "type": "object",
  "fields": {
    "items": "array of accommodation summary objects with name, url, url_slug, and position",
    "current_page": "integer current page number",
    "is_last_page": "boolean indicating if this is the last page of results",
    "resolved_url": "string resolved search URL for the location",
    "total_results": "integer total number of matching accommodations"
  }
}

About the Monteurzimmer API

Search and Filter Listings

The search_accommodations endpoint accepts a required location string (city, address, or region) and resolves it to a canonical search URL returned in the resolved_url field. Optional filters include t for accommodation type (ROOM, HOUSE, FLAT, PENSION, HOSTEL, HOTEL, OTHER), rt for unit type (SINGLE, DOUBLE, SHARED, APARTMENT), max_price for a nightly price ceiling, distance for search radius up to 50 km, and a comma-separated equipment list for amenities such as wifi, tv, or kitchen. Results are paginated; each page returns an items array of listing objects with name, url, url_slug, and position, plus current_page, is_last_page, and total_results.

Listing Details and Contact Data

get_accommodation_details takes a url_path from any search result item and returns the full listing record: name, description, address_text, phone, pricing_raw, landlord_name, and an amenities array. The phone and description fields may be null if the landlord did not provide them. pricing_raw is unstructured text as published on the listing, so callers should expect to parse it if numeric comparison is needed.

City Index

list_cities returns a directory of locations where monteurzimmer.de has listings. Pass a single lowercase letter parameter (a–z) to filter by first character; omitting it returns the full set. Each city object includes name, url, and path, making it useful for building location pickers or pre-seeding batch searches without guessing city name strings.

Reliability & maintenanceVerified

The Monteurzimmer API is a managed, monitored endpoint for monteurzimmer.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when monteurzimmer.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 monteurzimmer.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
3/3 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
  • Aggregate worker housing options in a target region filtered by room type and max nightly price
  • Build a landlord contact database using phone and landlord_name fields from get_accommodation_details
  • Monitor total_results for a location over time to track accommodation supply changes
  • Pre-populate city autocomplete dropdowns using the list_cities endpoint filtered by letter
  • Compare amenity coverage across listings by collecting amenities arrays for a search result set
  • Feed accommodation data into a relocation tool for tradespeople and seasonal workers in Germany
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 monteurzimmer.de offer an official developer API?+
No. monteurzimmer.de does not publish a public developer API or documented data access program. This Parse API is the structured way to access listing and location data from the site.
What does get_accommodation_details return beyond what search results include?+
Search results give only name, url, url_slug, and position. The details endpoint adds description, address_text, phone, landlord_name, pricing_raw, and a full amenities array — data not available in the search response.
Does the search endpoint return photos or availability calendars?+
Not currently. The API covers name, pricing text, address, phone, amenities, and landlord name. Visual assets and live availability data are not part of the current response shape. You can fork this API on Parse and revise it to add an endpoint targeting those fields.
How does pagination work in search_accommodations?+
Pass an integer page parameter to move through result pages. The response includes current_page and is_last_page so callers know when to stop iterating. total_results reflects the full count across all pages.
Are listings outside Germany covered?+
monteurzimmer.de focuses on German-speaking markets; coverage outside Germany is sparse and not guaranteed. The list_cities endpoint reflects the actual city index on the site, so querying it gives an accurate picture of geographic coverage before running searches.
Page content last updated . Spec covers 3 endpoints from monteurzimmer.de.
Related APIs in Real EstateSee all →
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.
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.
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.
booking.com API
Search for accommodations across Booking.com and instantly access detailed property information including pricing, amenities, and guest reviews to compare your options. Find the perfect stay by filtering thousands of listings and retrieving comprehensive details like room descriptions, availability, and booking terms all in one place.
amberstudent.com API
Search student accommodation listings across popular cities and access comprehensive property information including room types, pricing trends, and tenant reviews. Get detailed insights into student housing options to compare amenities, prices, and community feedback all in one place.
avis.de API
Search and explore Avis Germany rental locations with autocomplete functionality, view detailed location information and available vehicles, and discover current special offers. Find rental options by country or city to compare fleet availability and pricing.