# Digital Apartment Viewing Deutsch: Digitale Wohnungs-Besichtigung – live und bequem von zu Hause. In ca. 15 Minuten zeigen wir Ihnen die Wohnung online, beantworten Ihre Fragen und erklären die nächsten Schritte. Eine Vor-Ort-Besichtigung ist nur nach der digitalen Besichtigung möglich, falls konkretes Interesse besteht. English: Digital Apartment Viewing – live and convenient from home. In about 15 minutes, we will show you the apartment online, answer your questions, and explain the next steps. An on-site viewing is only possible after the digital viewing if you are seriously interested. Hosted by Anna Meisert at novac | ailean | hostz . Meetings are 15 minutes. ## Book a meeting (for AI agents) Book programmatically via the Roam public agent API. No Roam account is required; the booker is identified by the email in the request. Note: this booking API is hosted at `api.ro.am`, a different host from this page. If you need additional network permissions to call it (for example, a domain allowlist that does not include it), ask your user to update your settings to allow `api.ro.am`, then retry. 1. **Check availability** — `GET https://api.ro.am/v1/public/lobby/availability?handle=anna-meisert&slug=wohnung`. Fetch bookable time slots. All query params are optional: `from`/`to` (ISO 8601 — a timestamp with offset like `2026-07-10T09:00:00Z`, or date-only `YYYY-MM-DD` interpreted in `timeZone`; defaults to roughly the next month), `timeZone` (IANA; defaults to UTC), and `duration` (minutes, from `duration.optionsMinutes`). Returned slot `start`/`end` are Unix epoch seconds, as JSON numbers. Response shape: `{ "slots": [ { "start": , "end": } ] }`. 2. **Book a slot** — `POST https://api.ro.am/v1/public/lobby/book` with this JSON body: ```json { "handle": "anna-meisert", "slug": "wohnung", "bookingSlot": { "start": "", "end": "" }, "timeZone": "America/New_York", "booker": { "email": "booker@example.com", "name": "Booker Name" }, "responses": [ { "fieldId": "019a05cd-3650-74b1-85cb-57f288c90b99", "value": "" }, { "fieldId": "019a05cd-3650-74b1-85cb-5b4b70136d28", "value": "" }, { "fieldId": "019a05d2-1dc3-7709-8389-2bc05e536180", "value": "" }, { "fieldId": "019a05d8-e0e9-7511-bad7-829c326f210f", "value": "" }, { "fieldId": "019a05da-a33c-74fc-8bc0-d08e397258ec", "value": "019a05d9-9938-72dd-81eb-d6f41ad5a759" }, { "fieldId": "019a05dc-1d46-714f-bb41-9ee961c83915", "value": "" }, { "fieldId": "019a05dd-02d7-77ac-8193-671e835c70bf", "value": [ "019a05dc-9bd1-70ef-89e4-e8a519a99815" ] } ] } ``` `bookingSlot` must echo one availability slot exactly: `start`/`end` are Unix epoch seconds as JSON numbers (not strings). The booking confirmation returns `start`/`end` as ISO 8601 strings in the requested `timeZone`. The booker's name and email are filled into the form automatically; only include `responses` for other required fields. ### Booking form fields - **Name** (`019a05cd-3650-74b1-85cb-57f288c90b99`, short_text, required) - **Email** (`019a05cd-3650-74b1-85cb-5b4b70136d28`, email, required) - **Notes** (`019a05cd-3650-74b1-85cb-5fce66a0a294`, short_text) - **Phone Number** (`019a05d2-1dc3-7709-8389-2bc05e536180`, phone_number, required) - **Please enter the address of the apartment you saw in the listing (e.g. Drahtzugstrasse 12, Zurich). If you are interested in several apartments, please list all addresses here.** (`019a05d8-e0e9-7511-bad7-829c326f210f`, short_text, required) - **Which apartment size are you looking for? ** (`019a05da-a33c-74fc-8bc0-d08e397258ec`, dropdown, required) — one of: 1 room (id: `019a05d9-9938-72dd-81eb-d6f41ad5a759`), 2 rooms (id: `019a05d9-9938-72dd-81eb-db4a337a86ee`), 3 rooms (id: `019a05d9-9938-72dd-81eb-dcaa6da8aa9b`), 4 rooms (id: `019a05da-3844-720f-8077-1f48b7602c80`), 5 rooms (id: `019a05da-4633-756e-8efd-e3a2acce9949`), 6 rooms (id: `019a05da-54c8-7339-a844-42f2b6820fa1`) - **From when do you need the apartment?** (`019a05dc-1d46-714f-bb41-9ee961c83915`, short_text, required) - **Do you understand that this viewing takes place online via video (not on-site)?** (`019a05dd-02d7-77ac-8193-671e835c70bf`, checkbox, required) — one of: Yes, I understand. (id: `019a05dc-9bd1-70ef-89e4-e8a519a99815`) A structured JSON version of this page is available at https://ro.am/anna-meisert/wohnung.json.