GET STARTED

Ready for a better advisory experience?

Fill out this form and we'll reach out to set up a consultation shortly.

First Name*
Last Name*
Email Address*
Phone
Career Stage
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

What to expect

Learn how we're uniquely designed to help doctors and professionals like you.

Learn about our integrated approach to wealth and tax management.

Share with us your financial goals and circumstances and we'll make a plan.

Prefer to talk now?

Give us a call at 914-417-4556

Call Now
/* document.addEventListener("DOMContentLoaded", function () { const environments = { dev: "https://api.dev.formefinancial.com", qa: "https://api.qa.formefinancial.com", production: "https://api.formefinancial.com", }; const currentEnv = "dev"; const baseUrl = environments[currentEnv]; const form = document.getElementById("webflow-form"); if (!form) { console.error("Form with ID 'webflow-form' not found!"); return; } form.addEventListener("submit", async function (event) { event.preventDefault(); const formData = new FormData(form); const formObject = {}; formData.forEach((value, key) => { formObject[key] = value; }); console.log("Form Data:", formObject); // Debugging form data try { const response = await fetch(`${baseUrl}/v1/allowed/forms/data`, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify(formObject), }); if (response.ok) { console.log("Form submitted successfully!"); form.reset(); } else { const errorMessage = await response.text(); console.error("Error submitting the form:", errorMessage); } } catch (error) { console.error("Error:", error); } }); }); */