# 30M Develop Kickoff A 30-minute meet and greet to identify collaboration and outline clear next steps for Real Estate Development. Hosted by Juda Glick at Lion Developers. Meetings are 30 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=LionDevelopers&slug=collab30`. 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": "LionDevelopers", "slug": "collab30", "bookingSlot": { "start": "", "end": "" }, "timeZone": "America/New_York", "booker": { "email": "booker@example.com", "name": "Booker Name" }, "responses": [ { "fieldId": "019cab7e-2b90-71f9-8edf-62bf821687c1", "value": "" }, { "fieldId": "019cab7e-2b90-71f9-8edf-671b6e7ed85c", "value": "" }, { "fieldId": "019cab7f-ec0f-724d-adb1-35474f09b0dd", "value": "" }, { "fieldId": "019cab83-a3e8-7017-8ca3-31b5b0b8706e", "value": "" }, { "fieldId": "019cab84-74c3-773d-9aee-68de0a200b29", "value": "" }, { "fieldId": "019cab7e-2b90-71f9-8edf-698d18863b9e", "value": "" }, { "fieldId": "019cab86-765f-7097-bc7a-5d117e0c62ee", "value": "019cab85-a5dc-72e2-937b-3bf9c1f8044c" } ] } ``` `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** (`019cab7e-2b90-71f9-8edf-62bf821687c1`, short_text, required) - **Email** (`019cab7e-2b90-71f9-8edf-671b6e7ed85c`, email, required) - **Phone Number** (`019cab7f-ec0f-724d-adb1-35474f09b0dd`, phone_number, required) - **Company Name** (`019cab82-f631-7372-b3fc-ff9ab4faea2d`, short_text) - **Company Type** (`019cab83-a3e8-7017-8ca3-31b5b0b8706e`, short_text, required) - **Position & Title** (`019cab84-74c3-773d-9aee-68de0a200b29`, short_text, required) - **How can we collaborate?** (`019cab7e-2b90-71f9-8edf-698d18863b9e`, text, required) - **What's your timeline?** (`019cab86-765f-7097-bc7a-5d117e0c62ee`, dropdown, required) — one of: ASAP (id: `019cab85-a5dc-72e2-937b-3bf9c1f8044c`), 30-60 days (id: `019cab85-a5dc-72e2-937b-3f6e7efe8e1a`), 60-90 days (id: `019cab85-a5dc-72e2-937b-40b501376c19`), In the future (id: `019cab85-eec9-76f6-8b98-fb10b741ebc1`), Just Exploring (id: `019cab86-244f-778e-8486-e034a5b52f26`) - **Notes** (`019cf8c5-c304-72ef-8cc6-7c4a39374ec2`, text) A structured JSON version of this page is available at https://ro.am/LionDevelopers/collab30.json.