# Free Consultation Book a free consultation with one of Millie's University Guidance Coaches. Receive a 100% customized roadmap to guide you in your university and early career navigation journey. Hosted by Ariel Lau 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=studywithmillie&slug=free-consultation`. 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": "studywithmillie", "slug": "free-consultation", "bookingSlot": { "start": "", "end": "" }, "timeZone": "America/New_York", "booker": { "email": "booker@example.com", "name": "Booker Name" }, "responses": [ { "fieldId": "0192d8b4-a757-7ff6-b100-f467d8c3b08f", "value": "" }, { "fieldId": "0192d8b4-a757-7ff6-b100-fc924c8f21e8", "value": "" }, { "fieldId": "01930a0a-6757-750e-9476-cf40590c5194", "value": "" }, { "fieldId": "01930a0b-c469-76ea-9327-f7165b85a8ae", "value": "01930a0b-6d9e-731d-8a36-9b9dfddec610" }, { "fieldId": "01930a0b-fa26-76f7-b0da-abe25b2ae588", "value": "" }, { "fieldId": "01930a0e-6836-76bd-946c-b6f52d9131d1", "value": "01930a0e-36b7-711e-9871-f0d9289e289c" }, { "fieldId": "01930a0b-367e-77df-8851-e1e514261467", "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** (`0192d8b4-a757-7ff6-b100-f467d8c3b08f`, short_text, required) - **Email** (`0192d8b4-a757-7ff6-b100-fc924c8f21e8`, email, required) - **Phone number** (`01930a0a-6757-750e-9476-cf40590c5194`, phone_number, required) - **Are you a...** (`01930a0b-c469-76ea-9327-f7165b85a8ae`, radio, required) — one of: Student (id: `01930a0b-6d9e-731d-8a36-9b9dfddec610`), Parent (id: `01930a0b-6d9e-731d-8a36-9e3fc8f7de56`), School Counsellor (id: `01930a0b-6d9e-731d-8a36-a03d60b9f874`), Other (id: `01930a0b-8cc5-721b-9e84-74659153b211`) - **School** (`01930a0b-fa26-76f7-b0da-abe25b2ae588`, short_text, required) - **School curriculum** (`01930a0e-6836-76bd-946c-b6f52d9131d1`, radio, required) — one of: IB (id: `01930a0e-36b7-711e-9871-f0d9289e289c`), A Level (id: `01930a0e-36b7-711e-9871-f712ed01aa6a`), AP (id: `01930a0e-36b7-711e-9871-fbce6b8302a8`), Other (id: `01930a0e-5216-72fb-bec4-1c22ce238958`) - **High School graduation year** (`01930a0b-367e-77df-8851-e1e514261467`, short_text, required) - **Please share anything that will help prepare for our meeting. This may include university admissions, SAT prep, academic mentoring assistance etc.** (`0192d8b4-a757-7ff6-b101-0749d2841eba`, text) ## Drop in now Drop in immediately (no booking): https://ro.am/r/#/n/AZLYtKdXf_axANh6Ip2SNg/vLENxq3agUqe1GXEBTPN-Q A structured JSON version of this page is available at https://ro.am/studywithmillie/free-consultation.json.