# Book a call with the Rebel 75 Team Looking to book time with the Rebel team? You're in the right place to get both Tanarra & Jenny at the same time. You have 2 options - 30 or 60 minutes. We look forward to connecting. Hosted by Tanarra Schneider, Jenny Richards at Rebel 75. Meetings are 30 minutes (also available: 60 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=rebel-75&slug=book-a-call`. 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": "rebel-75", "slug": "book-a-call", "bookingSlot": { "start": "", "end": "" }, "timeZone": "America/New_York", "booker": { "email": "booker@example.com", "name": "Booker Name" }, "responses": [ { "fieldId": "01a07d57-ea8d-7650-b4bb-813446799b01", "value": "" }, { "fieldId": "01a07d57-ea8d-7650-b4bb-845cf58c34ad", "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** (`01a07d57-ea8d-7650-b4bb-813446799b01`, short_text, required) - **Email** (`01a07d57-ea8d-7650-b4bb-845cf58c34ad`, email, required) - **Which of our services is of interest to you? ** (`01a07d5a-628a-71e1-8dec-bb1616cde4ae`, checkbox) — one of: The Spark - Quick Clarity (id: `01a07d59-2db8-75b3-bb55-f049797ca722`), The Tide - Rhythm Reset (id: `01a07d59-2db8-75b3-bb55-f4814f0df90e`), The Vanguard - Formation (id: `01a07d59-2db8-75b3-bb55-fa07869ca768`), The Forge - Acute Disruption (id: `01a07d5a-271e-745b-9341-a14746d6c9dc`) - **Notes** (`01a07d57-ea8d-7650-b4bb-88aa047ea1a2`, short_text) A structured JSON version of this page is available at https://ro.am/rebel-75/book-a-call.json.