# Monteurzimmer — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Monteurzimmer provides 3 callable API endpoints through the Parse marketplace.

**Category:** Real Estate | **Website:** [monteurzimmer.de/](https://monteurzimmer.de/) | **Docs:** [parse.bot/marketplace/5da72e00-22fb-494a-b947-5aa77e7c010b/monteurzimmer-de-api](https://parse.bot/marketplace/5da72e00-22fb-494a-b947-5aa77e7c010b/monteurzimmer-de-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-monteurzimmer-de-api-5da72e00/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_accommodation_details

Retrieve full details for a single accommodation listing including name, description, address, phone, and amenities. The url_path is obtained from search results (url_slug field). Returns structured contact and property information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url_path` | string | Yes | The URL path of the accommodation from search results (e.g. /zimmer/10783-berlin-5ac27e75df) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-monteurzimmer-de-api-5da72e00/get_accommodation_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url_path":"<string>"}'
```

### list_cities

Get a list of cities/locations where accommodations are listed, filtered by the first letter of the city name. Returns city names with their URL paths usable for search_accommodations location input.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `letter` | string | No | Single lowercase letter a-z to filter cities by first character |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-monteurzimmer-de-api-5da72e00/list_cities \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"letter":"<string>"}'
```

### search_accommodations

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `distance` | integer | No | Search radius in km. Accepted values: 0, 10, 20, 30, 40, 50 |
| `equipment` | string | No | Comma-separated list of amenities to filter by (e.g. wifi,tv,kitchen) |
| `location` | string | Yes | City name, address, or region to search in |
| `max_price` | integer | No | Maximum price per night |
| `min_price` | integer | No | Minimum price per night |
| `page` | integer | No | Page number for pagination |
| `price_group` | string | No | Price type. Accepted values: person, accommodation |
| `rt` | string | No | Room/unit type filter |
| `sort` | string | No | Sort order for results |
| `t` | string | No | Accommodation type filter |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-monteurzimmer-de-api-5da72e00/search_accommodations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"distance":"<integer>","equipment":"<string>","location":"<string>","max_price":"<integer>","min_price":"<integer>","page":"<integer>","price_group":"<string>","rt":"<string>","sort":"<string>","t":"<string>"}'
```
