310-37th.com Open in urlscan Pro
3.33.207.30  Public Scan

URL: https://310-37th.com/
Submission: On June 09 via api from BE — Scanned from DE

Form analysis 2 forms found in the DOM

<form @submit.prevent="beforeSubmitForm" id="agent-contact-form" novalidate="" class="mt-6 grid grid-cols-1 gap-y-6 sm:grid-cols-3 sm:gap-x-8">
  <div class="text-left">
    <label for="name" class="block text-gray-700 mb-2 label">Your Full Name</label>
    <div class="mt-1">
      <input type="text" name="name" id="name" autocomplete="name" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700
                                        focus:outline-none focus:ring-0 focus:border-brand-gray-700">
      <span x-show="!validForm.fields.name.valid" class="error-msg">Name cannot be empty</span>
    </div>
  </div>
  <div class="text-left">
    <label for="email" class="block text-gray-700 text-left mb-2 label">Your Email</label>
    <div class="mt-1">
      <input id="email" name="email" type="email" autocomplete="email" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Email address must be a valid address">
      <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'required'" class="error-msg">Email cannot be empty</span>
      <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'email'" class="error-msg">Provide a valid email address</span>
    </div>
  </div>
  <div class="text-left">
    <label for="phone-number" class="block md:hidden lg:block text-brand-gray-700 text-left mb-2 label text-medium"> Your Phone Number </label>
    <label for="phone-number" class="hidden md:block lg:hidden text-brand-gray-700 text-left mb-2 label"> Phone Number </label>
    <div class="mt-1">
      <input type="text" name="phone" id="phone-number" autocomplete="phone-number" placeholder="(415)555-1234" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Phone number cannot be empty">
      <span x-show="!validForm.fields.phone.valid" class="error-msg">Phone number cannot be empty</span>
    </div>
  </div>
  <div class="sm:col-span-3">
    <div class="flex justify-between">
      <label for="message" class="block md:hidden lg:block text-brand-gray-700 text-left mb-2 label text-medium"> Message </label>
    </div>
    <div class="mt-1 text-left">
      <textarea id="message" name="message" rows="4" placeholder="Write your message here..." class="block w-full rounded border-brand-gray-300 py-2 px-3 text-brand-gray-700 resize-none
                                          focus:outline-none focus:ring-0 focus:border-brand-gray-700" aria-describedby="message-max"></textarea>
      <span x-show="!validForm.fields.message.valid" class="error-msg">Message cannot be empty</span>
    </div>
  </div>
  <div class="sm:col-span-3 sm:flex sm:justify-center">
    <p class="text-sm">The site is protected by reCAPTCHA and the <a href="https://policies.google.com/privacy" class="hover:underline" target="_blank">Google Privacy Policy</a> and
      <a href="https://policies.google.com/terms" class="hover:underline" target="_blank">Terms of Service</a> apply. </p>
  </div>
  <div class="sm:col-span-3 sm:flex sm:justify-center">
    <button type="submit" class="button-style mt-1 disabled:cursor-not-allowed disabled:opacity-50" id="contact-submit" x-bind:disabled="sendingForm"> Send <i class="fa-duotone fa-spinner-third fa-spin ml-2" x-show="sendingForm"></i>
    </button>
  </div>
</form>

<form @submit.prevent="beforeSubmitForm" id="agent-contact-form" novalidate="" class="mt-6 grid grid-cols-1 gap-y-6 sm:grid-cols-3 sm:gap-x-8">
  <div class="text-left">
    <label for="name" class="block text-gray-700 mb-2 label">Your Full Name</label>
    <div class="mt-1">
      <input type="text" name="name" id="name" autocomplete="name" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700
                                        focus:outline-none focus:ring-0 focus:border-brand-gray-700">
      <span x-show="!validForm.fields.name.valid" class="error-msg" style="display: none;">Name cannot be empty</span>
    </div>
  </div>
  <div class="text-left">
    <label for="email" class="block text-gray-700 text-left mb-2 label">Your Email</label>
    <div class="mt-1">
      <input id="email" name="email" type="email" autocomplete="email" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Email address must be a valid address">
      <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'required'" class="error-msg" style="display: none;">Email cannot be empty</span>
      <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'email'" class="error-msg" style="display: none;">Provide a valid email address</span>
    </div>
  </div>
  <div class="text-left">
    <label for="phone-number" class="block md:hidden lg:block text-brand-gray-700 text-left mb-2 label text-medium"> Your Phone Number </label>
    <label for="phone-number" class="hidden md:block lg:hidden text-brand-gray-700 text-left mb-2 label"> Phone Number </label>
    <div class="mt-1">
      <input type="text" name="phone" id="phone-number" autocomplete="phone-number" placeholder="(415)555-1234" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Phone number cannot be empty">
      <span x-show="!validForm.fields.phone.valid" class="error-msg" style="display: none;">Phone number cannot be empty</span>
    </div>
  </div>
  <div class="sm:col-span-3">
    <div class="flex justify-between">
      <label for="message" class="block md:hidden lg:block text-brand-gray-700 text-left mb-2 label text-medium"> Message </label>
    </div>
    <div class="mt-1 text-left">
      <textarea id="message" name="message" rows="4" placeholder="Write your message here..." class="block w-full rounded border-brand-gray-300 py-2 px-3 text-brand-gray-700 resize-none
                                          focus:outline-none focus:ring-0 focus:border-brand-gray-700" aria-describedby="message-max"></textarea>
      <span x-show="!validForm.fields.message.valid" class="error-msg" style="display: none;">Message cannot be empty</span>
    </div>
  </div>
  <div class="sm:col-span-3 sm:flex sm:justify-center">
    <p class="text-sm">The site is protected by reCAPTCHA and the <a href="https://policies.google.com/privacy" class="hover:underline" target="_blank">Google Privacy Policy</a> and
      <a href="https://policies.google.com/terms" class="hover:underline" target="_blank">Terms of Service</a> apply. </p>
  </div>
  <div class="sm:col-span-3 sm:flex sm:justify-center">
    <button type="submit" class="button-style mt-1 disabled:cursor-not-allowed disabled:opacity-50" id="contact-submit" x-bind:disabled="sendingForm"> Send
      <i class="fa-duotone fa-spinner-third fa-spin ml-2" x-show="sendingForm" aria-hidden="true" style="display: none;"></i>
    </button>
  </div>
</form>

Text Content

310 37TH AVENUE

Toggle navigation
 * Home
 * Gallery
 * Features
 * Virtual Tour
 * Location
 * Maps
 * Agent Info
 * Contact
 * 


 * Home
 * Gallery
 * Features
 * Virtual Tour
 * Location
 * Maps
 * Agent Info
 * Contact
 * 




DISEN CAI PRESENTS


EXCEPTIONAL SAN MATEO HOME

∎


$1,599,000


310 37TH AVENUE, SAN MATEO


ALL PROPERTY PHOTOS

∎

View more


PROPERTY DETAILS

∎

beds

3

baths

2

interior

1,190 sq ft

Step into the epitome of comfort and sophistication with this meticulously
remodeled single-family home in the coveted Westwood Knolls neighborhood.
Boasting 3 bedrooms, 2 bathrooms, and 1,190 sq ft of living space nestled on a
generous 6,200 sq ft lot, this charming abode exudes warmth and character at
every turn. No detail has been overlooked with a seamless blend of modern
convenience and timeless elegance. Entertain with ease in the open concept
living areas, where a fireplace and large picturesque windows create an inviting
ambiance. The gourmet kitchen is a culinary delight, featuring stainless steel
appliances and sleek countertops. Escape to the park-like yard with deck,
situated on an oversized lot, perfect for outdoor gatherings and relaxation.
Additional amenities include solar panels, EV charger, A/C, detached 2-car
garage and lower-level basement, providing versatility to suit your lifestyle
needs. Conveniently located with easy access to major commute corridors such as
Highway 101/280/92,  Hillsdale Shopping Mall, San Mateo Medical Center, Indian
Springs Park, Laurel Elementary, Abbott Middle School, and Hillsdale High
School. Make this charming abode your dream home and experience the perfect
blend of comfort and functionality in an unbeatable location.


Highlighted Features:

 * 3 Beds
 * 2 Baths
 * 1,190 Sq Ft
 * 6,200 Sq Ft lot
 * 2-Car Garage
 * Bonus Space in Basement 
 * Designer Finishes 
 * Convenient location


WALKTHROUGH


3D VIRTUAL TOUR

∎



ABOUT THIS


NEIGHBORHOOD

∎

One of the largest cities on the San Francisco Peninsula, San Mateo boasts many
options for recreation as well as a revitalized downtown, with a large movie
theater, restaurants, and bars. Spanish explorers first came to present-day San
Mateo on a 1776 scouting trip and named the creek they slept beside San Mateo
Creek. In 1863, the railroad arrived in San Mateo, leading some wealthy San
Franciscans to build summer and weekend homes in the area.
Today, approximately 100,000 people call the city home. The median household
income is $88,000, and the median home value is $722,000 according to 2013
United States Census Bureau data. Of San Mateo’s 40,014 housing units, 54
percent are owner occupied. 
The city is home to the Hillsdale Shopping Center and a number of parks --
including Central Park and the Coyote Point Recreation Area. The CuriOdyssey
museum at Coyote Point offers science and wildlife exhibits for children and
adults, some of which feature live animals. For a breathtakingly beautiful jog,
hike, or bicycling outing, locals head to the Sawyer Camp Trail at the Crystal
Springs Reservoir. 
Keep reading
One of the largest cities on the San Francisco Peninsula, San Mateo boasts many
options for recreation as well as a revitalized downtown, with a large movie
theater, restaurants, and bars. Spanish explorers first came to present-day San
Mateo on a 1776 scouting trip and named the creek they slept beside San Mateo
Creek. In 1863, the railroad arrived in San Mateo, leading some wealthy San
Franciscans to build summer and weekend homes in the area.
Today, approximately 100,000 people call the city home. The median household
income is $88,000, and the median home value is $722,000 according to 2013
United States Census Bureau data. Of San Mateo’s 40,014 housing units, 54
percent are owner occupied. 
The city is home to the Hillsdale Shopping Center and a number of parks --
including Central Park and the Coyote Point Recreation Area. The CuriOdyssey
museum at Coyote Point offers science and wildlife exhibits for children and
adults, some of which feature live animals. For a breathtakingly beautiful jog,
hike, or bicycling outing, locals head to the Sawyer Camp Trail at the Crystal
Springs Reservoir. 

View more


Disen Cai

Disen Cai Real Estate Group

Realtor® Associate

DRE: #01928373 Office: 650.622.2156

disen@disencai.com

http://disencai.com/

INTEGRITY. DEDICATION. SUCCESS




GET IN TOUCH

∎
Your Full Name
Name cannot be empty
Your Email
Email cannot be empty Provide a valid email address
Your Phone Number Phone Number
Phone number cannot be empty
Message
Message cannot be empty

The site is protected by reCAPTCHA and the Google Privacy Policy and Terms of
Service apply.

Send


GET IN TOUCH

∎
Your Full Name
Name cannot be empty
Your Email
Email cannot be empty Provide a valid email address
Your Phone Number Phone Number
Phone number cannot be empty
Message
Message cannot be empty

The site is protected by reCAPTCHA and the Google Privacy Policy and Terms of
Service apply.

Send


THANK YOU!

Your message has been received. We will reply using one of the contact methods
provided in your submission.


SORRY, THERE WAS A PROBLEM

Your message could not be sent. Please refresh the page and try again in a few
minutes, or reach out directly using the agent contact information below.

Disen Cai

Disen Cai Real Estate Group

Realtor® Associate

DRE: #01928373 Office: 650.622.2156

disen@disencai.com

http://disencai.com/
Email Us Email Us Email Us
Home
Agent Login

Disclaimers

Floor Plans:. All square footage is approximate. Floor plans, dimensions and
square footage are for marketing purposes only.

Schools:. Interested parties should independently verify school district
availability. School attendance is not guaranteed.

Information Accuracy:. Open Homes has not investigated or verified the accuracy
of information on this website. Buyers are responsible for verifying all
information they deem important.

Contact Us
Privacy Policy
Terms of Use
Accessibility Policy
Enable High-Contrast Mode

Follow us:

Facebook
Instagram
Vimeo
Twitter

© 2024 Open Homes Photography
Made with in California

1 / 66

One of the largest cities on the San Francisco Peninsula, San Mateo boasts many
options for recreation as well as a revitalized downtown, with a large movie
theater, restaurants, and bars. Spanish explorers first came to present-day San
Mateo on a 1776 scouting trip and named the creek they slept beside San Mateo
Creek. In 1863, the railroad arrived in San Mateo, leading some wealthy San
Franciscans to build summer and weekend homes in the area.
Today, approximately 100,000 people call the city home. The median household
income is $88,000, and the median home value is $722,000 according to 2013
United States Census Bureau data. Of San Mateo’s 40,014 housing units, 54
percent are owner occupied. 
The city is home to the Hillsdale Shopping Center and a number of parks --
including Central Park and the Coyote Point Recreation Area. The CuriOdyssey
museum at Coyote Point offers science and wildlife exhibits for children and
adults, some of which feature live animals. For a breathtakingly beautiful jog,
hike, or bicycling outing, locals head to the Sawyer Camp Trail at the Crystal
Springs Reservoir. 
1 / 199