# Let's Find the Right Loan for You Together Buying a home, tapping into your equity, or just trying to figure out what you qualify for shouldn't feel confusing. Schedule 30 minutes on my calendar below and let's talk through your situation. Pick whatever time works best for you, and I'll call you directly. Hosted by Shane Meeks at Mpire Financial. 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=shane-meeks&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": "shane-meeks", "slug": "", "bookingSlot": { "start": "", "end": "" }, "timeZone": "America/New_York", "booker": { "email": "booker@example.com", "name": "Booker Name" }, "responses": [ { "fieldId": "019cb5e6-5699-752b-9e6b-9d62e6e1dbff", "value": "" }, { "fieldId": "019cb5e6-5699-752b-9e6b-a1cdcb765917", "value": "" }, { "fieldId": "019fb8a3-dfac-72dc-9d83-2c78c4587bc7", "value": "" }, { "fieldId": "019cb5e6-5699-752b-9e6b-a652e7c18f2a", "value": "019fb8a4-ef8a-76f6-a24d-9d1626e4dcc9" } ] } ``` `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** (`019cb5e6-5699-752b-9e6b-9d62e6e1dbff`, short_text, required) - **Email** (`019cb5e6-5699-752b-9e6b-a1cdcb765917`, email, required) - **Phone Number** (`019fb8a3-dfac-72dc-9d83-2c78c4587bc7`, phone_number, required) - **What would you like to Discuss?** (`019cb5e6-5699-752b-9e6b-a652e7c18f2a`, dropdown, required) — one of: Buying a home (first-time buyer) (id: `019fb8a4-ef8a-76f6-a24d-9d1626e4dcc9`), Buying a home (already own) (id: `019fb8a4-ef8a-76f6-a24d-a320abd59f77`), Refinancing (id: `019fb8a4-ef8a-76f6-a24d-a536047bea2e`), Home equity / HELOC (id: `019fb8a5-fc16-7274-8ed4-376d9a4c39d4`), Reverse Mortgage (id: `019fb8ef-e8de-72c9-89a8-4ab60244216b`), Investment property (id: `019fb8f0-09ef-72d7-ac06-91c61380804f`), Not sure yet (id: `019fb8f0-326f-75bc-947d-8baa1ffb7080`) - **Anything you'd like me to know before we talk? (Optional)** (`019fb8a6-a2fa-73c9-a088-38fcb9b70d00`, short_text) ## Drop in now Drop in immediately (no booking): https://ro.am/r/#/n/AZy15laZdSuea5OX2JMmkQ/LrbezmcAy1_1sjKJzf3ONg A structured JSON version of this page is available at https://ro.am/shane-meeks.json.