# Standup at Kingdom Kode Hosted by Alec Mingione at Kingdom Kode. 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=amware&slug=standup`. 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": "amware", "slug": "standup", "bookingSlot": { "start": "", "end": "" }, "timeZone": "America/New_York", "booker": { "email": "booker@example.com", "name": "Booker Name" }, "responses": [ { "fieldId": "0199dea4-546a-75da-9c0c-8d7eb2a78c07", "value": "" }, { "fieldId": "0199dea4-546a-75da-9c0c-93cea3e8f1f4", "value": "" }, { "fieldId": "0199dea6-ed03-7418-98ca-6e602918628a", "value": "" } ] } ``` `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** (`0199dea4-546a-75da-9c0c-8d7eb2a78c07`, short_text, required) - **Email** (`0199dea4-546a-75da-9c0c-93cea3e8f1f4`, email, required) - **Notes** (`0199dea4-546a-75da-9c0c-970ded1822bf`, short_text) - **What will we be reviewing?** (`0199dea6-ed03-7418-98ca-6e602918628a`, text, required) A structured JSON version of this page is available at https://ro.am/amware/standup.json.