# Nadine’s Lobby Book a free consultation with one of Millie's University Guidance Coaches. Receive a 100% customised roadmap to guide you in your university and early career navigation journey. Hosted by Nadine Talaat at MILLIE. 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=nadinetalaatmillie&slug=`. 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": "nadinetalaatmillie", "slug": "", "bookingSlot": { "start": "", "end": "" }, "timeZone": "America/New_York", "booker": { "email": "booker@example.com", "name": "Booker Name" }, "responses": [ { "fieldId": "0192c648-d483-7556-affb-398e0bfbb75d", "value": "" }, { "fieldId": "0192c648-d483-7556-affb-40f0681a111b", "value": "" }, { "fieldId": "019528e3-4340-737b-a2b5-d3117a0e0197", "value": "019528e2-f1d0-75d5-b904-acd1f91d312c" }, { "fieldId": "019528e3-a93d-776c-b2ad-34a018fd1175", "value": "" }, { "fieldId": "019528e4-34e2-735a-8361-cf4d578c5b41", "value": "019528e3-e8ad-7648-8c27-68b06596c2ff" } ] } ``` `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** (`0192c648-d483-7556-affb-398e0bfbb75d`, short_text, required) - **Email** (`0192c648-d483-7556-affb-40f0681a111b`, email, required) - **Phone Number** (`019528e2-8cdf-70cf-9b26-f5b820a2a583`, short_text) - **Are you a...?** (`019528e3-4340-737b-a2b5-d3117a0e0197`, radio, required) — one of: Student (id: `019528e2-f1d0-75d5-b904-acd1f91d312c`), Parent (id: `019528e2-f1d1-7543-9ee9-5737a999cef9`), School Counsellor (id: `019528e2-f1d1-7543-9ee9-5b755f0c0100`), Other (id: `019528e3-2a58-746b-adbb-6f5842e176e3`) - **Name and Location of School** (`019528e3-a93d-776c-b2ad-34a018fd1175`, short_text, required) - **What is your school curriculum?** (`019528e4-34e2-735a-8361-cf4d578c5b41`, radio, required) — one of: IB Diploma (id: `019528e3-e8ad-7648-8c27-68b06596c2ff`), A-Levels (id: `019528e3-e8ae-75ac-b361-84e9bb4f696a`), AP (id: `019528e3-e8ae-75ac-b361-8bad48085bb6`), Other (id: `019528e4-2467-7658-a229-828b654e4b3d`) - **High School Graduation Year** (`019528e5-2961-771b-84ad-d005e0cd38ed`, short_text) - **Please share anything that will help prepare for our meeting. This may include university admissions, SAT prep, academic mentoring assistance etc.** (`019528e7-8128-7261-9e9b-d15871812a33`, text) A structured JSON version of this page is available at https://ro.am/nadinetalaatmillie.json.