# Monica Armatrading's Appointment Lobby. Please select a Date and Time to Book a Call with Your Mortgage Advisor Welcome I'm Monica Armatrading NMLS 2595578 your Mortgage Wingman at Top Gun Mortgage Advisors. Powered by: Mpire Financial NMLS 2108504 Let's get started and schedule your time slot for our one on one virtual meeting. Hosted by Monica Armatrading at Mpire Financial. Meetings are 45 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=mortgage.monica&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": "mortgage.monica", "slug": "", "bookingSlot": { "start": "", "end": "" }, "timeZone": "America/New_York", "booker": { "email": "booker@example.com", "name": "Booker Name" }, "responses": [ { "fieldId": "0199eb2a-f938-75b3-b3f4-189365429e51", "value": "" }, { "fieldId": "0199eb2a-f938-75b3-b3f4-1f368b32474d", "value": "" }, { "fieldId": "019a7f36-5a50-777b-9f99-be8e7e344cf2", "value": "" }, { "fieldId": "019bc271-f301-743b-b132-0135cc04cfbc", "value": [ "019bc271-d2eb-7736-a46b-4fd432357b70" ] } ] } ``` `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** (`0199eb2a-f938-75b3-b3f4-189365429e51`, short_text, required) - **Email** (`0199eb2a-f938-75b3-b3f4-1f368b32474d`, email, required) - **Reference Topic:** (`0199eb2a-f938-75b3-b3f4-2154689c58d8`, short_text) - **Phone Number** (`019a7f36-5a50-777b-9f99-be8e7e344cf2`, phone_number, required) - **Are you a Realtor?** (`019bc271-f301-743b-b132-0135cc04cfbc`, checkbox, required) — one of: YES (id: `019bc271-d2eb-7736-a46b-4fd432357b70`), NO (id: `019bc271-d2eb-7736-a46b-51e483060cda`) - **If you are a borrower which type of financing would you be looking for?** (`019bc277-fafe-74aa-bfa6-5e2fea4b3eae`, checkbox) — one of: First Time Home Buyer (id: `019bc273-8b27-70bd-bf15-35f48b476bb3`), VA (id: `019bc273-8b27-70bd-bf15-388a76b37fea`), USDA/DPA (id: `019bc273-8b27-70bd-bf15-3dd729c19b1a`), Purchase before Selling (id: `019bc276-3317-7638-a83e-1dea14e14bb2`), Refinancing (id: `019bc274-0e88-703d-ba33-a3ef40d5c84f`), Investment (id: `019bc274-4d48-77ef-a613-135b50ca9000`), New Construction or Renovation (id: `019bc274-6630-70a9-918f-fa7d788b58ce`), Barndominium (id: `019bc277-ac80-766d-8d07-8a5b3fa26ec5`), Land (id: `019be88d-241b-7605-a707-6d104bfb5f9f`), HELOC (id: `019bc275-1b75-7769-b316-17ada08185cf`) - **What time frame are you looking to move?** (`019bc27a-56d0-722f-87d9-cbd39e621d7a`, checkbox) — one of: Immediately (id: `019bc279-524f-731a-8a50-7c826adfa7ea`), 3-6 months (id: `019bc279-524f-731a-8a50-80b0c5db248f`), 9-12 months (id: `019bc279-524f-731a-8a50-86ca252c7c87`), Next Year (id: `019bc279-d1a8-76cc-a444-fcb88af2998d`) A structured JSON version of this page is available at https://ro.am/mortgage.monica.json.