www.indigohealth.com
Open in
urlscan Pro
2606:4700:4400::6812:27af
Public Scan
Submitted URL: https://kirklandurgentcare.com/
Effective URL: https://www.indigohealth.com/locations/urgent-care-kirkland/
Submission: On October 10 via api from US — Scanned from DE
Effective URL: https://www.indigohealth.com/locations/urgent-care-kirkland/
Submission: On October 10 via api from US — Scanned from DE
Form analysis
1 forms found in the DOM<form action="" id="booking-form" class="needs-validation" novalidate="" x-show="!apptSuccess" @submit.prevent="submitAppt">
<div class="row">
<div class="col-lg-6 col-xl-7 order-2 order-lg-1">
<div class="row">
<div class="col">
<p class="body-xs-md"><sup aria-hidden="true">*</sup> denotes required fields</p>
</div>
</div>
<fieldset class="field-grouping">
<legend class="form-label">Legal Name <sup aria-hidden="true">*</sup></legend>
<div class="field-group">
<label for="patientFirstName" class="sr-only">Patient First Name</label>
<input type="text" autofill="given-name" class="form-control" id="patientFirstName" name="patientFirstName" required="" placeholder="Patient First Name">
<div class="invalid-feedback">Please Enter Patient First Name</div>
</div>
<div class="field-group">
<label for="patientLastName" class="sr-only">Patient Last Name</label>
<input type="text" autofill="family-name" class="form-control" id="patientLastName" name="patientLastName" required="" placeholder="Patient Last Name">
<div class="invalid-feedback">Please Enter Patient Last Name</div>
</div>
</fieldset>
<div class="field-grouping">
<div class="field-group">
<label for="birthDate" class="form-label">Date of Birth <sup aria-hidden="true">*</sup></label>
<div class="d-flex flex-row bday-inputs">
<input type="text" id="birthMonth" class="form-control" x-model="dob.month" placeholder="MM" x-on:change="setDob()" required="" minlength="1" maxlength="2">
<input type="text" id="birthDay" class="form-control" x-model="dob.day" placeholder="DD" x-on:change="setDob()" required="" minlength="1" maxlength="2">
<input type="text" id="birthYear" class="form-control" x-model="dob.year" placeholder="YYYY" x-on:change="setDob()" required="" minlength="4" maxlength="4">
</div>
<div>
<input type="date" x-bind:value="dob.full" class="form-control d-none" id="birthDate" name="birthDate" aria-describedby="birth_date_desc" required="" min="1900-01-01" x-bind:max="getMaxDate()" max="2024-10-10">
<span class="sr-only" id="birth_date_desc">Patient Date of Birth</span>
<div class="invalid-feedback">
<span x-show="dob.full === ''"> Please Enter Patient's Date of Birth </span>
<span x-show="dob.full != '0001-01-01' && isPrimaryCare() && (dob.full > birthDate.max)" style="display: none;"> Must be at least 18 years old for in-person primary care visits. Please visit
<a href="/online-care/">Indigo Online Care</a> or <a href="/urgent-care/">Indigo Urgent Care</a>. </span>
<span x-show="dob.full != '' && (dob.full === '0001-01-01' || dob.full < birthDate.min || dob.full > birthDate.max)" style="display: none;"> Please Enter a Valid Date of Birth </span>
</div>
</div>
</div>
<div class="field-group">
<label for="primaryPhone" class="form-label">Mobile <sup aria-hidden="true">*</sup></label>
<input type="tel" autofill="tel-national" class="form-control" id="primaryPhone" name="primaryPhone" aria-describedby="phone_desc" required="" placeholder="Patient Mobile Number (555-555-1212)"
pattern="^[2-9][0-9][0-9](-)?([2-9][0-9][0-9])(-)?\d{4}$">
<span class="sr-only" id="phone_desc">Patient Mobile Number</span>
<div class="invalid-feedback">Please enter Patient Mobile Number in this format 555-555-1212</div>
</div>
</div>
<div class="field-grouping">
<div class="field-group">
<label for="email" class="form-label">Email</label>
<input type="email" tabindex="0" autofill="email" class="form-control" name="email" id="email" value="" aria-describedby="email_desc" placeholder="Patient Email Address">
<span class="sr-only" id="email_desc">Patient Email Address</span>
<div class="invalid-feedback">Please enter Valid Email Address</div>
</div>
</div>
<div class="field-grouping">
<div class="field-group">
<label for="reasonForVisit" class="form-label">Reason for Visit <sup aria-hidden="true">*</sup> (100 character max)</label>
<textarea maxlength="100" class="form-control" name="reasonForVisit" id="reasonForVisit" value="" aria-describedby="reason_desc" required="" placeholder="Reason for visit" rows="3"></textarea>
<span class="sr-only" id="reason_desc">Reason for Visit</span>
<div class="invalid-feedback">Please enter the reason for the visit</div>
</div>
</div>
<!-- TBD: is this required. -->
<div class="field-grouping">
<fieldset class="field-group">
<legend class="form-label">Gender</legend>
<div class="radio-group">
<input type="radio" class="btn-check" name="patientBirthSex" id="female" value="Female" autocomplete="off">
<label class="btn btn-toggle" for="female">Female</label>
<input type="radio" class="btn-check" name="patientBirthSex" id="male" value="Male" autocomplete="off">
<label class="btn btn-toggle" for="male">Male</label>
<input type="radio" class="btn-check" name="patientBirthSex" id="other" value="Unknown" autocomplete="off">
<label class="btn btn-toggle" for="other">Other</label>
</div>
</fieldset>
</div>
<div class="field-grouping">
<fieldset class="field-group" id="payment-type">
<legend class="form-label">Payment Type <span x-show="isPrimaryCare()" style="display: none;"><sup aria-hidden="true">*</sup></span></legend>
<div class="radio-group d-lg-flex flex-wrap">
<input type="radio" class="btn-check" name="selfPayCheck" id="insurance" value="Yes" autocomplete="off" x-model="formData.paymentType" x-bind:required="isPrimaryCare()">
<label class="btn btn-toggle flex-fill" for="insurance">Insurance</label>
<input type="radio" class="btn-check" name="selfPayCheck" id="self" value="No" autocomplete="off" x-model="formData.paymentType" x-bind:required="isPrimaryCare()">
<label class="btn btn-toggle flex-fill" for="self">Self</label>
<div class="invalid-feedback">Please select a payment type</div>
</div>
</fieldset>
</div>
<div class="field-grouping" x-show="formData.paymentType == 'Yes' && !isPrimaryCare()" style="display: none;">
<div class="field-group">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id="toggle-insurance-paperwork" x-model="formData.displayInsurance" value="">
<label class="form-check-label form-label" for="toggle-insurance-paperwork">Add Insurance Paperwork</label>
</div>
</div>
</div>
<div x-show="isPrimaryCare() ? (formData.paymentType == 'Yes') : (formData.displayInsurance && formData.paymentType == 'Yes')" style="display: none;">
<div class="optional-fields">
<div class="field-grouping pt-3">
<div class="field-group">
<label for="insuranceCompany" class="form-label">Insurance Carrier <span x-show="isPrimaryCare()" style="display: none;"><sup aria-hidden="true">*</sup></span></label>
<select id="insuranceCompany" name="insuranceCompany" class="form-select" x-model="formData.insuranceCompany" x-on:change="checkInsurancePlan()" x-bind:required="isPrimaryCare() && formData.paymentType == 'Yes'">
<option value="">Choose...</option>
<option value="Aetna">Aetna</option>
<option value="Amerigroup" x-bind:data-is-invalid="isPrimaryCare()">Amerigroup</option>
<option value="Asuris Northwest Health" x-bind:data-is-invalid="isPrimaryCare()">Asuris Northwest Health</option>
<option value="Beacon Health (formerly Value Options)">Beacon Health (formerly Value Options)</option>
<option value="Blue Cross of Idaho">Blue Cross of Idaho</option>
<option value="BridgeSpan">BridgeSpan</option>
<option value="Cigna">Cigna</option>
<option value="Clear Choice Health Plans" x-bind:data-is-invalid="isPrimaryCare()">Clear Choice Health Plans</option>
<option value="Community Health Plan of Washington" x-bind:data-is-invalid="isPrimaryCare()">Community Health Plan of Washington</option>
<option value="Coordinated Care" x-bind:data-is-invalid="isPrimaryCare()">Coordinated Care</option>
<option value="First Choice Health Network">First Choice Health Network</option>
<option value="First Health (Coventry)">First Health (Coventry)</option>
<option value="Hawaii Mainland Administrators" x-bind:data-is-invalid="isPrimaryCare()">Hawaii Mainland Administrators</option>
<option value="Humana">Humana</option>
<option value="Idaho Medicaid" x-bind:data-is-invalid="isPrimaryCare()">Idaho Medicaid</option>
<option value="Kaiser Permanente of Colorado" x-bind:data-is-invalid="isPrimaryCare()">Kaiser Permanente of Colorado</option>
<option value="Kaiser Permanente of Washington">Kaiser Permanente of Washington</option>
<option value="LifeWise Health Plan of Oregon">LifeWise Health Plan of Oregon</option>
<option value="Molina Healthcare of California" x-bind:data-is-invalid="isPrimaryCare()">Molina Healthcare of California</option>
<option value="PacificSource Health Plans" x-bind:data-is-invalid="isPrimaryCare()">PacificSource Health Plans</option>
<option value="PreferredOne Health Insurance">PreferredOne Health Insurance</option>
<option value="Premera Blue Cross">Premera Blue Cross</option>
<option value="Providence Health Plan" x-bind:data-is-invalid="isPrimaryCare()">Providence Health Plan</option>
<option value="Regence BlueShield of Idaho" x-bind:data-is-invalid="isPrimaryCare()">Regence BlueShield of Idaho</option>
<option value="Regence BlueShield of Washington">Regence BlueShield of Washington</option>
<option value="Today's Options (Pyramid)" x-bind:data-is-invalid="isPrimaryCare()">Today's Options (Pyramid)</option>
<option value="Tribal Health" x-bind:data-is-invalid="isPrimaryCare()">Tribal Health</option>
<option value="TRICARE East" x-bind:data-is-invalid="isPrimaryCare()">TRICARE East</option>
<option value="TRICARE For Life" x-bind:data-is-invalid="isPrimaryCare()">TRICARE For Life</option>
<option value="TRICARE West" x-bind:data-is-invalid="isPrimaryCare()">TRICARE West</option>
<option value="United Healthcare">United Healthcare</option>
<option value="UPMC Health Plan">UPMC Health Plan</option>
<option value="US Family Health Plan" x-bind:data-is-invalid="isPrimaryCare()">US Family Health Plan</option>
<option value="Veterans Affairs Health Administration Center" x-bind:data-is-invalid="isPrimaryCare()">Veterans Affairs Health Administration Center</option>
<option value="Washington Medicaid (Washington Apple Health)" x-bind:data-is-invalid="isPrimaryCare()">Washington Medicaid (Washington Apple Health)</option>
<option value="Washington State Department of Labor & Industries" x-bind:data-is-invalid="isPrimaryCare()">Washington State Department of Labor & Industries</option>
<option value="Workers Comp Non WA L&I" x-bind:data-is-invalid="isPrimaryCare()">Workers Comp Non WA L&I</option>
</select>
<div class="invalid-feedback">
<span x-show="isPrimaryCare() && formData.insuranceCompany !== ''" style="display: none;"> In-person Primary Care is unable to see patients with your selected insurance at this time. Please visit
<a href="/online-care/">Indigo Online Care</a> or <a href="/urgent-care/">Indigo Urgent Care</a>. </span>
<span x-show="isPrimaryCare() && formData.insuranceCompany === ''" style="display: none;"> Please specify your insurance carrier </span>
</div>
</div>
</div>
<div class="field-grouping">
<div class="field-group">
<label for="insurancePlanName" class="form-label">Insurance Plan Name</label>
<select id="insurancePlanName" name="insurancePlanName" class="form-select" x-model="formData.insurancePlan"
x-bind:required="isPrimaryCare() ? false : (formData.insuranceCompany !== '' && formData.paymentType === 'Yes' && formData.displayInsurance)">
<option value="" selected="">Choose...</option>
</select>
<div class="invalid-feedback">Please specify your insurance plan</div>
</div>
</div>
<div x-show="formData.insurancePlan !== '' && (formData.paymentType === 'Yes' && formData.displayInsurance) || (isPrimaryCare() && formData.insuranceCompany !== '')" style="display: none;">
<fieldset class="uploader">
<legend class="label-xl">Upload Insurance Photos</legend>
<label class="uploader-preview" for="insCardFront">
<img src="" alt="" id="preview-front" class="img-fluid preview">
<span class="icon-upload">Front</span>
<span class="sr-only">Insurance Card - Photo of Front</span>
<input type="file" class="img-preview" data-preview="preview-front" name="insCardFront" id="insCardFront" accept="image/png, image/jpeg, image/heic, image/heif">
</label>
<label class="uploader-preview" for="insCardBack">
<img src="" alt="" id="preview-back" class="img-fluid preview">
<span class="icon-upload">Back</span>
<span class="sr-only">Insurance Card - Photo of Back</span>
<input type="file" class="img-preview" data-preview="preview-back" name="insCardBack" id="insCardBack" accept="image/png, image/jpeg, image/heic, image/heif">
</label>
</fieldset>
<div class="remove-uploaded-photos">
<div>
<button type="button" class="btn btn-tertiary btn-with-icon-left btn-icon-trash-blue d-none" data-action="remove-photo" data-upload-field="insCardFront">Remove Front Photo</button>
</div>
<div>
<button type="button" class="btn btn-tertiary btn-with-icon-left btn-icon-trash-blue d-none" data-action="remove-photo" data-upload-field="insCardBack">Remove Back Photo</button>
</div>
</div>
<div class="field-grouping">
<div class="field-group">
<label for="groupNumber" class="form-label">Insurance Group Number</label>
<input type="text" autofill="none" class="form-control" id="groupNumber" name="groupNumber" placeholder="Insurance Group Number">
</div>
<div class="field-group">
<label for="memberId" class="form-label">Insurance Member Id</label>
<input type="text" autofill="none" class="form-control" id="memberId" name="memberId" placeholder="Insurance Member Id">
</div>
</div>
<fieldset class="field-grouping">
<legend class="form-label">Cardholder Name</legend>
<div class="field-group">
<label for="policyHolderFirstName" class="sr-only">Cardholder First Name</label>
<input type="text" autofill="none" class="form-control" id="policyHolderFirstName" name="policyHolderFirstName" placeholder="Cardholder First Name">
</div>
<div class="field-group">
<label for="policyHolderLastName" class="sr-only">Cardholder Last Name</label>
<input type="text" autofill="none" class="form-control" id="policyHolderLastName" name="policyHolderLastName" placeholder="Cardholder Last Name">
</div>
</fieldset>
<div class="field-grouping">
<div class="field-group">
<label for="policyHolderBirthDate" class="form-label">Cardholder Date of Birth</label>
<input type="date" autofill="none" class="form-control" id="policyHolderBirthDate" name="policyHolderBirthDate" placeholder="Cardholder Date of Birth" min="1900-01-01" max="2024-10-10">
<div class="invalid-feedback">Please Enter Cardholder Date of Birth</div>
</div>
</div>
<div class="field-grouping">
<fieldset class="field-group">
<legend for="policyHolderBirthSex" class="form-label">Cardholder Birth Sex</legend>
<div class="radio-group">
<input type="radio" class="btn-check" name="policyHolderBirthSex" id="plcy-female" value="Female" autocomplete="off">
<label class="btn btn-toggle" for="plcy-female">Female</label>
<input type="radio" class="btn-check" name="policyHolderBirthSex" id="plcy-male" value="Male" autocomplete="off">
<label class="btn btn-toggle" for="plcy-male">Male</label>
<input type="radio" class="btn-check" name="policyHolderBirthSex" id="plcy-other" value="Unknown" autocomplete="off">
<label class="btn btn-toggle" for="plcy-other">Other</label>
</div>
</fieldset>
</div>
<div class="field-grouping">
<div class="field-group">
<label for="patientsRelationshipToInsured" class="form-label">Patient's Relationship to Insured</label>
<select id="patientsRelationshipToInsured" name="patientsRelationshipToInsured" class="form-select">
<option value="">Choose...</option>
<option>Sibling</option>
<option>Child</option>
<option>Employee</option>
<option>Father</option>
<option>Grandchild</option>
<option>Grandparent</option>
<option>Mother</option>
<option>Other Relationship</option>
<option>Self</option>
<option>Spouse</option>
</select>
</div>
</div>
</div>
<div class="field-grouping">
<button type="button" class="btn btn-tertiary btn-with-icon-left btn-icon-trash-blue" id="remove-optional-fields" data-confirm-text="Are you sure you want to remove your insurance information?" data-target=".optional-fields"
x-on:click="clearInsuranceData($el)">Remove Insurance Information</button>
</div>
</div>
</div>
<div x-show="hasConsentFields()" style="display: none;">
<hr>
<div class="field-grouping">
<div class="field-group">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id="toggle-consent-form" x-model="formData.showConsent" x-on:click="enableConsent()" x-bind:required="hasConsentFields()" value="">
<label class="form-check-label form-label" for="toggle-consent-form">Read and review patient consent forms</label>
</div>
</div>
</div>
<div x-show="formData.showConsent" style="display: none;">
<div class="consent-panel">
<article class="consent-form">
<object x-bind:data="getConsentFormUrl()" width="100%" height="100%" x-bind:type="consentForms?.length ? consentForms[0].mime : ''" data="" type=""></object>
</article>
</div>
<p class="py-4 body-sm-md">
<a x-bind:href="getConsentFormUrl()" target="_blank" href="">Download PDF Version of the Acknowledgment of Conditions for Treatment & Financial Disclosures</a>
</p>
</div>
<div class="field-grouping">
<div class="field-group">
<label for="signerSignature" class="form-label">By signing, I understand and agree to the terms and conditions contained in the forms above and agree to sign them electronically. <sup aria-hidden="true">*</sup></label>
<input type="text" autofill="name" class="form-control" id="signerSignature" name="signerSignature" required="" placeholder="Your Full Name" disabled="">
<div class="invalid-feedback">Please Read and Consent To Conditions for Treatment & Financial Disclosures</div>
</div>
</div>
</div>
<div class="field-grouping">
<div class="field-group">
<label class="form-label">
<b class="text-color-red">If your condition is serious or life-threatening, please dial 911 or visit your nearest emergency room.</b>
</label>
</div>
</div>
<div class="field-grouping">
<div class="field-group">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="terms" required="">
<label class="form-check-label" for="terms"> I am not experiencing an emergency, and I agree to the Indigo Online Care <a href="https://www.multicare.org/about-multicare/terms-of-use/" target="_terms">Terms of Use</a> and
<a href="https://www.multicare.org/patient-resources/patient-privacy/" target="_privacy">Privacy Policy</a>
</label>
<div class="invalid-feedback">Please agree to Terms and Privacy Policy</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-xl-5 order-1 order-lg-2">
<div class="position-sticky">
<h3 class="h5" x-text="getHeadline('Book Appointment')">Book Appointment</h3>
<div x-show="Object.keys(bookingCareTypes).length > 1" style="display: none;">
<h3 class="h6">1. Select a care type</h3>
<div class="d-flex mb-2 caretype-radio">
<div class="radio-selection d-flex align-items-start" x-show="'online-urgent-care-g1P1oZ' in bookingCareTypes" style="display: none;">
<div class="radio-item position-relative">
<input type="radio" id="online-urgent-care-g1P1oZ" name="book-care-type" @click="setCareType('online-urgent-care-g1P1oZ', formData.slot)" x-ref="radio-online-urgent-care-g1P1oZ">
<span class="custom-radio"></span>
<label for="online-urgent-care-g1P1oZ" class="radio-text">
<h6>Virtual Urgent Care</h6>
<p>Treat minor illnesses and concerns for all ages.</p>
</label>
</div>
</div>
</div>
<h3 class="h6">2. Pick a date & time</h3>
</div>
<h4 class="h6" x-text="careTypeCta ? careTypeCta : 'Choose an appointment slot from the list below'">Choose an appointment slot from the list below</h4>
<section class="appointment-selector">
<ul class="nav nav-tabs" id="dayTabs" role="tablist">
<template x-for="(daySlots, idx) in currentSlots">
<li class="nav-item" role="presentation">
<button class="nav-link" :class="activeSlotDay === daySlots.date ? 'active' : ''" x-on:click="activeSlotDay = daySlots.date" :id="tabId(daySlots.date)" type="button" role="tab" :aria-controls="paneId(daySlots.date)"
aria-selected="true">
<time :datetime="daySlots.date">
<span x-text="dayLabel(daySlots, true)"></span><br><span x-text="daySlots.day"></span>
</time>
</button>
</li>
</template>
</ul>
<div class="tab-content" id="dayPanes">
<template x-for="(daySlots, idx) in currentSlots">
<div class="tab-pane fade" :class="activeSlotDay === daySlots.date ? 'show active' : ''" :id="paneId(daySlots.date)" role="tabpanel" :aria-labelledby="tabId(daySlots.date)">
<div class="appt-slots-container">
<template x-for="slot in daySlots.slots">
<button type="button" class="btn btn-sm btn-appt" :class="slot.slot === formData.slot ? 'active' : ''" x-on:click="setSlot(slot.slot)" x-bind:disabled="!slot.isOpen" aria-label="">
<span class="sr-only">Book <span x-text="dayLabel(daySlots, false)"></span> at </span><span x-text="slotTimeFormatted(slot)"></span>
</button>
</template>
</div>
<div x-show="daySlots.slots === null || daySlots.slots.length === 0">
<span class="btn btn-sm btn-appt disabled">No times available</span>
</div>
</div>
</template>
</div>
</section>
<!-- CURRENT APPOINTMENT -->
<div class="notification icon-calendar" x-show="formData.slot" style="display: none;">
<div>
<span x-text="careTypeTitle ? careTypeTitle : `Appointment`">Appointment</span> – <span x-text="slotDateFormatted(formData.slot)"></span>
</div>
</div>
<div class="sticky-btn-wrapper">
<input type="submit" value="Book" aria-label="Book Appointment" class="btn btn-primary" :disabled="apptProcessing || !formData.slot || !formData.locationId" disabled="disabled">
</div>
</div>
</div>
</div>
</form>
Text Content
Skip to Main Content Get Care Toggle navigation * Services Urgent CareTreat minor illnesses and injuries right away. Virtual CareConnect with a provider from anywhere. Behavioral HealthStart your mental health journey Covid TestingReliable Covid-19 testing with same-day results. Prescription DeliveryPrescriptions delivered to your doorstep, 7 days a week. * Locations * What We Treat * Careers Join Our Team View All Jobs Clinicians Medical Assistants * Coming Soon Puyallup, WA Hayden, ID * Get Care * Get Care Back to Locations MULTICARE INDIGO URGENT CARE - KIRKLAND 12423 TOTEM LAKE BLVD NE, KIRKLAND, WA 98034 Rewind Slide Advance Slide * Urgent Care * Virtual Care BOOK URGENT CARE APPOINTMENT 0 people in line No times available Need to be seen today? Book Virtual Visit Find Nearby Clinic Book at Today 0 people in line Book Today at 8:40 AM Book Today at 9:00 AM Book Today at 9:20 AM Book Today at 9:40 AM Book Today at 10:20 AM Book Today at 10:40 AM Book Today at 11:00 AM Book Today at 11:20 AM Book Today at 11:40 AM Book Today at 12:00 PM Book Today at 12:20 PM Book Today at 12:40 PM Book Today at 1:00 PM Book Today at 1:20 PM Book Today at 1:40 PM Book Today at 3:00 PM Book Today at 3:20 PM Book Today at 3:40 PM Book Today at 4:00 PM Book Today at 4:20 PM Book Today at 5:00 PM Book Today at 5:20 PM Book Today at 5:40 PM Book Today at 6:20 PM Book Today at 6:40 PM Book Today at 7:00 PM Tomorrow Book Tomorrow at 8:00 AM Book Tomorrow at 8:20 AM Book Tomorrow at 8:40 AM Book Tomorrow at 9:00 AM Book Tomorrow at 9:20 AM Book Tomorrow at 9:40 AM Book Tomorrow at 10:00 AM Book Tomorrow at 10:20 AM Book Tomorrow at 10:40 AM Book Tomorrow at 11:00 AM Book Tomorrow at 11:20 AM Book Tomorrow at 11:40 AM Book Tomorrow at 12:00 PM Book Tomorrow at 12:20 PM Book Tomorrow at 12:40 PM Book Tomorrow at 1:00 PM Book Tomorrow at 1:20 PM Book Tomorrow at 1:40 PM Book Tomorrow at 3:00 PM Book Tomorrow at 3:20 PM Book Tomorrow at 3:40 PM Book Tomorrow at 4:00 PM Book Tomorrow at 4:20 PM Book Tomorrow at 4:40 PM Book Tomorrow at 5:00 PM Book Tomorrow at 5:20 PM Book Tomorrow at 5:40 PM Book Tomorrow at 6:00 PM Book Tomorrow at 6:20 PM Book Tomorrow at 6:40 PM Book Tomorrow at 7:00 PM * MULTICARE INDIGO URGENT CARE - KIRKLAND * ADDRESS 12423 Totem Lake Blvd NE Kirkland, WA 98034 * PHONE NUMBER * (425) 406-5458 CLINIC HOURS 8:00 AM – 8:00 PM CLOSED NOW URGENT CARE * Sunday: 8:00 AM – 8:00 PM * Monday: 8:00 AM – 8:00 PM * Tuesday: 8:00 AM – 8:00 PM * Wednesday: 8:00 AM – 8:00 PM * Thursday: 8:00 AM – 8:00 PM * Friday: 8:00 AM – 8:00 PM * Saturday: 8:00 AM – 8:00 PM SERVICES At Indigo Urgent Care in Kirkland, our skilled providers can treat your minor illness or injury and get you on your way to feeling better, fast. All of our locations have onsite digital x-ray and labs. Minor illnesses include but are not limited to: * Allergies * Cold/flu symptoms * Ear aches * Fevers * Sinus infections * UTIs We also assist with injuries that include: * Minor bruises * Minor burns * Minor fractures * Scrapes and cuts * Sprains and strains COVID symptoms? We can test for that. Anxiety or depression? We can assist with that too. For a full list, check out our conditions we treat page. INSURANCE & PRICING Indigo Urgent Care is a part of MultiCare and takes most major health insurance plans. View the full list of insurance plans we accept. If you don’t see your particular insurance plan listed, contact your health insurance provider (the member services phone number will usually be listed on your ID card) to find out what coverage is available to you when you receive care from Indigo Health. ABOUT MULTICARE INDIGO URGENT CARE - KIRKLAND 4.7 Reviews 4.7 1709 Google Reviews We're here for you, without fail, whether you're feeling under the weather or turned your ankle on the trail. Our team of care providers in Kirkland near the Totem Lake Mall is ready to take care of you and your family when you need us: 8am to 8pm, 7 days a week. We'll see to your needs from the time you walk in the door to the time you go on your way. That's not just exceptional care — it's urgent care like you've never seen it before. Indigo accepts most insurance plans. See our list of accepted insurance plans, or call your insurance provider to verify coverage. COVID-19 testing is available at Indigo Urgent Care in Kirkland. We offer nasal swab and antibody testing. These are in-person visits with a medical provider or nurse. Please call ahead or schedule an appointment in advance if you need a COVID test. FAQ Do I need an appointment at the Kirkland location? We always try to accommodate anyone that walks in at our Kirkland clinic. Is the Indigo Health in Kirkland hiring? For a full list of career opportunities at our Kirkland clinic, check out our careers page. Can’t get here? Try Virtual Care! WALK-INS WELCOME! Don't see a convenient time? Walk-in appointments are available 8 am to 8 pm every day at any of our Indigo Urgent Care locations. BOOK A VIRTUAL CARE APPOINTMENT No times available Need to be seen today? Book Virtual Visit Find Nearby Clinic Book at Today Book Today at 8:20 AM Book Today at 8:40 AM Book Today at 9:08 AM Book Today at 9:12 AM Book Today at 9:24 AM Book Today at 9:32 AM Book Today at 9:36 AM Book Today at 9:40 AM Book Today at 9:48 AM Book Today at 9:52 AM Book Today at 10:05 AM Book Today at 10:10 AM Book Today at 10:15 AM Book Today at 10:20 AM Book Today at 10:25 AM Book Today at 10:35 AM Book Today at 10:40 AM Book Today at 10:45 AM Book Today at 10:55 AM Book Today at 11:08 AM Book Today at 11:12 AM Book Today at 11:20 AM Book Today at 11:24 AM Book Today at 11:28 AM Book Today at 11:40 AM Book Today at 11:44 AM Book Today at 11:48 AM Book Today at 11:52 AM Book Today at 11:56 AM Book Today at 12:00 PM Book Today at 12:05 PM Book Today at 12:10 PM Book Today at 12:20 PM Book Today at 12:25 PM Book Today at 12:30 PM Book Today at 12:35 PM Book Today at 12:40 PM Book Today at 12:45 PM Book Today at 12:50 PM Book Today at 12:55 PM Book Today at 1:04 PM Book Today at 1:08 PM Book Today at 1:12 PM Book Today at 1:16 PM Book Today at 1:20 PM Book Today at 1:24 PM Book Today at 1:28 PM Book Today at 1:32 PM Book Today at 1:36 PM Book Today at 1:40 PM Book Today at 1:44 PM Book Today at 1:48 PM Book Today at 1:52 PM Book Today at 1:56 PM Book Today at 2:00 PM Book Today at 2:04 PM Book Today at 2:08 PM Book Today at 2:12 PM Book Today at 2:16 PM Book Today at 2:20 PM Book Today at 2:24 PM Book Today at 2:32 PM Book Today at 2:36 PM Book Today at 2:40 PM Book Today at 2:44 PM Book Today at 2:48 PM Book Today at 2:52 PM Book Today at 2:56 PM Book Today at 3:00 PM Book Today at 3:10 PM Book Today at 3:20 PM Book Today at 3:30 PM Book Today at 3:40 PM Book Today at 3:50 PM Book Today at 4:00 PM Book Today at 4:04 PM Book Today at 4:08 PM Book Today at 4:12 PM Book Today at 4:16 PM Book Today at 4:20 PM Book Today at 4:24 PM Book Today at 4:32 PM Book Today at 4:36 PM Book Today at 4:40 PM Book Today at 4:44 PM Book Today at 4:48 PM Book Today at 4:52 PM Book Today at 4:56 PM Book Today at 5:00 PM Book Today at 5:04 PM Book Today at 5:08 PM Book Today at 5:12 PM Book Today at 5:16 PM Book Today at 5:20 PM Book Today at 5:24 PM Book Today at 5:28 PM Book Today at 5:32 PM Book Today at 5:36 PM Book Today at 5:40 PM Book Today at 5:44 PM Book Today at 5:48 PM Book Today at 5:52 PM Book Today at 5:56 PM Book Today at 6:00 PM Book Today at 6:05 PM Book Today at 6:10 PM Book Today at 6:15 PM Book Today at 6:20 PM Book Today at 6:25 PM Book Today at 6:30 PM Book Today at 6:35 PM Book Today at 6:40 PM Book Today at 6:45 PM Book Today at 6:50 PM Book Today at 6:55 PM Book Today at 7:04 PM Book Today at 7:08 PM Book Today at 7:12 PM Book Today at 7:16 PM Book Today at 7:20 PM Book Today at 7:24 PM Book Today at 7:28 PM Book Today at 7:32 PM Book Today at 7:36 PM Book Today at 7:40 PM Book Today at 7:44 PM Book Today at 7:48 PM Book Today at 7:56 PM Tomorrow Book Tomorrow at 7:45 AM Book Tomorrow at 7:47 AM Book Tomorrow at 7:50 AM Book Tomorrow at 7:52 AM Book Tomorrow at 7:55 AM Book Tomorrow at 7:57 AM Book Tomorrow at 8:00 AM Book Tomorrow at 8:02 AM Book Tomorrow at 8:05 AM Book Tomorrow at 8:07 AM Book Tomorrow at 8:10 AM Book Tomorrow at 8:12 AM Book Tomorrow at 8:15 AM Book Tomorrow at 8:17 AM Book Tomorrow at 8:20 AM Book Tomorrow at 8:22 AM Book Tomorrow at 8:25 AM Book Tomorrow at 8:27 AM Book Tomorrow at 8:30 AM Book Tomorrow at 8:32 AM Book Tomorrow at 8:35 AM Book Tomorrow at 8:37 AM Book Tomorrow at 8:40 AM Book Tomorrow at 8:42 AM Book Tomorrow at 8:45 AM Book Tomorrow at 8:47 AM Book Tomorrow at 8:50 AM Book Tomorrow at 8:52 AM Book Tomorrow at 8:55 AM Book Tomorrow at 8:57 AM Book Tomorrow at 9:00 AM Book Tomorrow at 9:02 AM Book Tomorrow at 9:05 AM Book Tomorrow at 9:07 AM Book Tomorrow at 9:10 AM Book Tomorrow at 9:12 AM Book Tomorrow at 9:15 AM Book Tomorrow at 9:17 AM Book Tomorrow at 9:20 AM Book Tomorrow at 9:22 AM Book Tomorrow at 9:25 AM Book Tomorrow at 9:27 AM Book Tomorrow at 9:30 AM Book Tomorrow at 9:32 AM Book Tomorrow at 9:35 AM Book Tomorrow at 9:37 AM Book Tomorrow at 9:40 AM Book Tomorrow at 9:42 AM Book Tomorrow at 9:45 AM Book Tomorrow at 9:47 AM Book Tomorrow at 9:50 AM Book Tomorrow at 9:52 AM Book Tomorrow at 9:55 AM Book Tomorrow at 9:57 AM Book Tomorrow at 10:00 AM Book Tomorrow at 10:03 AM Book Tomorrow at 10:06 AM Book Tomorrow at 10:10 AM Book Tomorrow at 10:13 AM Book Tomorrow at 10:16 AM Book Tomorrow at 10:20 AM Book Tomorrow at 10:23 AM Book Tomorrow at 10:26 AM Book Tomorrow at 10:30 AM Book Tomorrow at 10:33 AM Book Tomorrow at 10:36 AM Book Tomorrow at 10:40 AM Book Tomorrow at 10:43 AM Book Tomorrow at 10:46 AM Book Tomorrow at 10:50 AM Book Tomorrow at 10:53 AM Book Tomorrow at 10:56 AM Book Tomorrow at 11:00 AM Book Tomorrow at 11:02 AM Book Tomorrow at 11:05 AM Book Tomorrow at 11:07 AM Book Tomorrow at 11:10 AM Book Tomorrow at 11:12 AM Book Tomorrow at 11:15 AM Book Tomorrow at 11:17 AM Book Tomorrow at 11:20 AM Book Tomorrow at 11:22 AM Book Tomorrow at 11:25 AM Book Tomorrow at 11:27 AM Book Tomorrow at 11:30 AM Book Tomorrow at 11:32 AM Book Tomorrow at 11:35 AM Book Tomorrow at 11:37 AM Book Tomorrow at 11:40 AM Book Tomorrow at 11:42 AM Book Tomorrow at 11:45 AM Book Tomorrow at 11:47 AM Book Tomorrow at 11:50 AM Book Tomorrow at 11:52 AM Book Tomorrow at 11:55 AM Book Tomorrow at 11:57 AM Book Tomorrow at 12:00 PM Book Tomorrow at 12:03 PM Book Tomorrow at 12:06 PM Book Tomorrow at 12:10 PM Book Tomorrow at 12:13 PM Book Tomorrow at 12:16 PM Book Tomorrow at 12:20 PM Book Tomorrow at 12:23 PM Book Tomorrow at 12:26 PM Book Tomorrow at 12:30 PM Book Tomorrow at 12:33 PM Book Tomorrow at 12:36 PM Book Tomorrow at 12:40 PM Book Tomorrow at 12:43 PM Book Tomorrow at 12:46 PM Book Tomorrow at 12:50 PM Book Tomorrow at 12:53 PM Book Tomorrow at 12:56 PM Book Tomorrow at 1:00 PM Book Tomorrow at 1:02 PM Book Tomorrow at 1:05 PM Book Tomorrow at 1:07 PM Book Tomorrow at 1:10 PM Book Tomorrow at 1:12 PM Book Tomorrow at 1:15 PM Book Tomorrow at 1:17 PM Book Tomorrow at 1:20 PM Book Tomorrow at 1:22 PM Book Tomorrow at 1:25 PM Book Tomorrow at 1:27 PM Book Tomorrow at 1:30 PM Book Tomorrow at 1:32 PM Book Tomorrow at 1:35 PM Book Tomorrow at 1:37 PM Book Tomorrow at 1:40 PM Book Tomorrow at 1:42 PM Book Tomorrow at 1:45 PM Book Tomorrow at 1:47 PM Book Tomorrow at 1:50 PM Book Tomorrow at 1:52 PM Book Tomorrow at 1:55 PM Book Tomorrow at 1:57 PM Book Tomorrow at 2:00 PM Book Tomorrow at 2:02 PM Book Tomorrow at 2:05 PM Book Tomorrow at 2:07 PM Book Tomorrow at 2:10 PM Book Tomorrow at 2:12 PM Book Tomorrow at 2:15 PM Book Tomorrow at 2:17 PM Book Tomorrow at 2:20 PM Book Tomorrow at 2:22 PM Book Tomorrow at 2:25 PM Book Tomorrow at 2:27 PM Book Tomorrow at 2:30 PM Book Tomorrow at 2:32 PM Book Tomorrow at 2:35 PM Book Tomorrow at 2:37 PM Book Tomorrow at 2:40 PM Book Tomorrow at 2:42 PM Book Tomorrow at 2:45 PM Book Tomorrow at 2:47 PM Book Tomorrow at 2:50 PM Book Tomorrow at 2:52 PM Book Tomorrow at 2:55 PM Book Tomorrow at 2:57 PM Book Tomorrow at 3:00 PM Book Tomorrow at 3:06 PM Book Tomorrow at 3:12 PM Book Tomorrow at 3:18 PM Book Tomorrow at 3:24 PM Book Tomorrow at 3:30 PM Book Tomorrow at 3:36 PM Book Tomorrow at 3:42 PM Book Tomorrow at 3:48 PM Book Tomorrow at 3:54 PM Book Tomorrow at 4:00 PM Book Tomorrow at 4:02 PM Book Tomorrow at 4:05 PM Book Tomorrow at 4:07 PM Book Tomorrow at 4:10 PM Book Tomorrow at 4:12 PM Book Tomorrow at 4:15 PM Book Tomorrow at 4:17 PM Book Tomorrow at 4:20 PM Book Tomorrow at 4:22 PM Book Tomorrow at 4:25 PM Book Tomorrow at 4:27 PM Book Tomorrow at 4:30 PM Book Tomorrow at 4:32 PM Book Tomorrow at 4:35 PM Book Tomorrow at 4:37 PM Book Tomorrow at 4:40 PM Book Tomorrow at 4:42 PM Book Tomorrow at 4:45 PM Book Tomorrow at 4:47 PM Book Tomorrow at 4:50 PM Book Tomorrow at 4:52 PM Book Tomorrow at 4:55 PM Book Tomorrow at 4:57 PM Book Tomorrow at 5:00 PM Book Tomorrow at 5:02 PM Book Tomorrow at 5:05 PM Book Tomorrow at 5:07 PM Book Tomorrow at 5:10 PM Book Tomorrow at 5:12 PM Book Tomorrow at 5:15 PM Book Tomorrow at 5:17 PM Book Tomorrow at 5:20 PM Book Tomorrow at 5:22 PM Book Tomorrow at 5:25 PM Book Tomorrow at 5:27 PM Book Tomorrow at 5:30 PM Book Tomorrow at 5:32 PM Book Tomorrow at 5:35 PM Book Tomorrow at 5:37 PM Book Tomorrow at 5:40 PM Book Tomorrow at 5:42 PM Book Tomorrow at 5:45 PM Book Tomorrow at 5:47 PM Book Tomorrow at 5:50 PM Book Tomorrow at 5:52 PM Book Tomorrow at 5:55 PM Book Tomorrow at 5:57 PM Book Tomorrow at 6:00 PM Book Tomorrow at 6:03 PM Book Tomorrow at 6:06 PM Book Tomorrow at 6:10 PM Book Tomorrow at 6:13 PM Book Tomorrow at 6:16 PM Book Tomorrow at 6:20 PM Book Tomorrow at 6:23 PM Book Tomorrow at 6:26 PM Book Tomorrow at 6:30 PM Book Tomorrow at 6:33 PM Book Tomorrow at 6:36 PM Book Tomorrow at 6:40 PM Book Tomorrow at 6:43 PM Book Tomorrow at 6:46 PM Book Tomorrow at 6:50 PM Book Tomorrow at 6:53 PM Book Tomorrow at 6:56 PM Book Tomorrow at 7:00 PM Book Tomorrow at 7:02 PM Book Tomorrow at 7:05 PM Book Tomorrow at 7:07 PM Book Tomorrow at 7:10 PM Book Tomorrow at 7:12 PM Book Tomorrow at 7:15 PM Book Tomorrow at 7:17 PM Book Tomorrow at 7:20 PM Book Tomorrow at 7:22 PM Book Tomorrow at 7:25 PM Book Tomorrow at 7:27 PM Book Tomorrow at 7:30 PM Book Tomorrow at 7:32 PM Book Tomorrow at 7:35 PM Book Tomorrow at 7:37 PM Book Tomorrow at 7:40 PM Book Tomorrow at 7:42 PM Book Tomorrow at 7:45 PM Book Tomorrow at 7:47 PM Book Tomorrow at 7:50 PM Book Tomorrow at 7:52 PM Book Tomorrow at 7:55 PM Book Tomorrow at 7:57 PM See All Available Times * MULTICARE INDIGO URGENT CARE - KIRKLAND * ADDRESS 12423 Totem Lake Blvd NE Kirkland, WA 98034 * PHONE NUMBER * (425) 406-5458 VIRTUAL CARE 7:45 AM – 8:00 PM CLOSED NOW * Sunday: 7:45 AM – 8:00 PM PT * Monday: 7:45 AM – 8:00 PM PT * Tuesday: 7:45 AM – 8:00 PM PT * Wednesday: 7:45 AM – 8:00 PM PT * Thursday: 7:45 AM – 8:00 PM PT * Friday: 7:45 AM – 8:00 PM PT * Saturday: 7:45 AM – 8:00 PM PT SERVICES Indigo’s Virtual Care team is ready when you are. Some of the most common conditions treated virtually include: Urgent Care: * Colds and flu symptoms * Insect bites * Pink eye * Sinus infection * Skin conditions like athlete’s foot, diaper rash and ringworm * Stomach problems * UTIs * Yeast Infections INSURANCE & PRICING Indigo Urgent Care is a part of MultiCare and takes most major health insurance plans. View the full list of insurance plans we accept. If you don’t see your particular insurance plan listed, contact your health insurance provider (the member services phone number will usually be listed on your ID card) to find out what coverage is available to you when you receive care from Indigo Health. ABOUT MULTICARE INDIGO URGENT CARE - KIRKLAND 4.7 Reviews 4.7 1709 Google Reviews We're here for you, without fail, whether you're feeling under the weather or turned your ankle on the trail. Our team of care providers in Kirkland near the Totem Lake Mall is ready to take care of you and your family when you need us: 8am to 8pm, 7 days a week. We'll see to your needs from the time you walk in the door to the time you go on your way. That's not just exceptional care — it's urgent care like you've never seen it before. Indigo accepts most insurance plans. See our list of accepted insurance plans, or call your insurance provider to verify coverage. COVID-19 testing is available at Indigo Urgent Care in Kirkland. We offer nasal swab and antibody testing. These are in-person visits with a medical provider or nurse. Please call ahead or schedule an appointment in advance if you need a COVID test. FAQ Do I need an appointment at the Kirkland location? We always try to accommodate anyone that walks in at our Kirkland clinic. Is the Indigo Health in Kirkland hiring? For a full list of career opportunities at our Kirkland clinic, check out our careers page. NEARBY LOCATIONS View All REDMOND * Urgent Care * 15946 Redmond Way, Suite 101 Redmond, WA 98052 * (425) 588-2500 * 8:00 AM – 8:00 PM Closed Now 3.4 miles away BOTHELL * Urgent Care * 23131 Bothell Everett Hwy, Suite B Bothell, WA 98021 * (425) 483-3335 * 8:00 AM – 8:00 PM Closed Now 5.7 miles away ABOUT MULTICARE INDIGO URGENT CARE - KIRKLAND 4.7 Reviews 4.7 1709 Google Reviews We're here for you, without fail, whether you're feeling under the weather or turned your ankle on the trail. Our team of care providers in Kirkland near the Totem Lake Mall is ready to take care of you and your family when you need us: 8am to 8pm, 7 days a week. We'll see to your needs from the time you walk in the door to the time you go on your way. That's not just exceptional care — it's urgent care like you've never seen it before. Indigo accepts most insurance plans. See our list of accepted insurance plans, or call your insurance provider to verify coverage. COVID-19 testing is available at Indigo Urgent Care in Kirkland. We offer nasal swab and antibody testing. These are in-person visits with a medical provider or nurse. Please call ahead or schedule an appointment in advance if you need a COVID test. FAQ Do I need an appointment at the Kirkland location? We always try to accommodate anyone that walks in at our Kirkland clinic. Is the Indigo Health in Kirkland hiring? For a full list of career opportunities at our Kirkland clinic, check out our careers page. * MULTICARE INDIGO URGENT CARE - KIRKLAND * ADDRESS 12423 Totem Lake Blvd NE Kirkland, WA 98034 * PHONE NUMBER * (425) 406-5458 VIDEO BOOK AN APPOINTMENT * denotes required fields Legal Name * Patient First Name Please Enter Patient First Name Patient Last Name Please Enter Patient Last Name Date of Birth * Patient Date of Birth Please Enter Patient's Date of Birth Must be at least 18 years old for in-person primary care visits. Please visit Indigo Online Care or Indigo Urgent Care. Please Enter a Valid Date of Birth Mobile * Patient Mobile Number Please enter Patient Mobile Number in this format 555-555-1212 Email Patient Email Address Please enter Valid Email Address Reason for Visit * (100 character max) Reason for Visit Please enter the reason for the visit Gender Female Male Other Payment Type * Insurance Self Please select a payment type Add Insurance Paperwork Insurance Carrier * Choose... Aetna Amerigroup Asuris Northwest Health Beacon Health (formerly Value Options) Blue Cross of Idaho BridgeSpan Cigna Clear Choice Health Plans Community Health Plan of Washington Coordinated Care First Choice Health Network First Health (Coventry) Hawaii Mainland Administrators Humana Idaho Medicaid Kaiser Permanente of Colorado Kaiser Permanente of Washington LifeWise Health Plan of Oregon Molina Healthcare of California PacificSource Health Plans PreferredOne Health Insurance Premera Blue Cross Providence Health Plan Regence BlueShield of Idaho Regence BlueShield of Washington Today's Options (Pyramid) Tribal Health TRICARE East TRICARE For Life TRICARE West United Healthcare UPMC Health Plan US Family Health Plan Veterans Affairs Health Administration Center Washington Medicaid (Washington Apple Health) Washington State Department of Labor & Industries Workers Comp Non WA L&I In-person Primary Care is unable to see patients with your selected insurance at this time. Please visit Indigo Online Care or Indigo Urgent Care. Please specify your insurance carrier Insurance Plan Name Choose... Please specify your insurance plan Upload Insurance Photos Front Insurance Card - Photo of Front Back Insurance Card - Photo of Back Remove Front Photo Remove Back Photo Insurance Group Number Insurance Member Id Cardholder Name Cardholder First Name Cardholder Last Name Cardholder Date of Birth Please Enter Cardholder Date of Birth Cardholder Birth Sex Female Male Other Patient's Relationship to Insured Choose... Sibling Child Employee Father Grandchild Grandparent Mother Other Relationship Self Spouse Remove Insurance Information -------------------------------------------------------------------------------- Read and review patient consent forms Download PDF Version of the Acknowledgment of Conditions for Treatment & Financial Disclosures By signing, I understand and agree to the terms and conditions contained in the forms above and agree to sign them electronically. * Please Read and Consent To Conditions for Treatment & Financial Disclosures If your condition is serious or life-threatening, please dial 911 or visit your nearest emergency room. I am not experiencing an emergency, and I agree to the Indigo Online Care Terms of Use and Privacy Policy Please agree to Terms and Privacy Policy BOOK APPOINTMENT 1. SELECT A CARE TYPE VIRTUAL URGENT CARE Treat minor illnesses and concerns for all ages. 2. PICK A DATE & TIME CHOOSE AN APPOINTMENT SLOT FROM THE LIST BELOW Book at No times available Appointment – GET CARE HOW CAN WE HELP? * URGENT CARE See a provider at your nearby clinic * VIRTUAL CARE See a provider from home * BEHAVIORAL HEALTH Start your mental health journey Powered by * Find a Location * Pay Bill * Login to MyChart * Schedule Virtual Visit * Urgent Care * Virtual Care * Covid Testing * Prescription Delivery * Insurance & Pricing * Careers * Blog * FAQ * About Us * All Locations © 2024 MultiCare Indigo Urgent Care. MultiCare, All Rights Reserved. * Terms * Privacy * My Health My Data * Español * * Facebook * Instagram * LinkedIn * YouTube Hey, there! Any questions? Your virtual assistant is here to help. × Chat with Us