monteurzimmer.de APImonteurzimmer.de ↗
Access accommodation listings, pricing, amenities, landlord contacts, and city indexes from monteurzimmer.de via 3 structured API endpoints.
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'
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.
| Param | Type | Description |
|---|---|---|
| t | string | Accommodation type. Accepted values: ROOM, HOUSE, FLAT, PENSION, HOSTEL, HOTEL, OTHER |
| rt | string | Room/unit type. Accepted values: SINGLE, DOUBLE, SHARED, APARTMENT |
| page | integer | Page number for pagination |
| sort | string | Sort order. Accepted values: score, price, persons, calendar |
| distance | integer | Search radius in km. Accepted values: 0, 10, 20, 30, 40, 50 |
| locationrequired | string | City name, address, or region to search in |
| equipment | string | Comma-separated list of amenities to filter by (e.g. wifi,tv,kitchen) |
| max_price | integer | Maximum price per night |
| min_price | integer | Minimum price per night |
| price_group | string | Price type. Accepted values: person, accommodation |
{
"type": "object",
"fields": {
"items": "array of listing 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"
},
"sample": {
"data": {
"items": [
{
"url": "https://www.monteurzimmer.de/zimmer/10783-berlin-5ac27e75df",
"name": "HEROROOMS - BERLIN MITTE - moderne Appartment",
"position": 1,
"url_slug": "/zimmer/10783-berlin-5ac27e75df"
}
],
"current_page": 1,
"is_last_page": false,
"resolved_url": "https://www.monteurzimmer.de/unterkunft/berlin/2950159",
"total_results": 341
},
"status": "success"
}
}About the monteurzimmer.de 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.
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.
- 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
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does monteurzimmer.de offer an official developer API?+
What does get_accommodation_details return beyond what search results include?+
Does the search endpoint return photos or availability calendars?+
How does pagination work in search_accommodations?+
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?+
list_cities endpoint reflects the actual city index on the site, so querying it gives an accurate picture of geographic coverage before running searches.