688-3rdave.com Open in urlscan Pro
15.197.234.174  Public Scan

URL: https://688-3rdave.com/
Submission: On September 27 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 text-bg-contrast">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 text-bg-contrast">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 text-bg-contrast"> Your Phone Number </label>
    <label for="phone-number" class="hidden md:block lg:hidden text-brand-gray-700 text-left mb-2 label text-bg-contrast"> 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 text-bg-contrast"> 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 text-bg-contrast">
    <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 text-bg-contrast">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 text-bg-contrast">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 text-bg-contrast"> Your Phone Number </label>
    <label for="phone-number" class="hidden md:block lg:hidden text-brand-gray-700 text-left mb-2 label text-bg-contrast"> 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 text-bg-contrast"> 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 text-bg-contrast">
    <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

688 3RD AVENUE, SAN FRANCISCO

Toggle navigation
 * Home
 * Gallery
 * Features
 * Video
 * Floor Plans
 * Location
 * Maps
 * Agent Info
 * Schedule
 * Contact


 * Home
 * Gallery
 * Features
 * Video
 * Floor Plans
 * Location
 * Maps
 * Agent Info
 * Schedule
 * Contact




PAUL BARBAGELATA PRESENTS


VICTORIAN CHARM IN PRIME LOCATION

∎


$1,195,000


688 3RD AVENUE, SAN FRANCISCO


ALL PROPERTY PHOTOS

∎

View more


PROPERTY DETAILS

∎

beds

2

baths

1

interior

1,261 sq ft

neighborhood

Inner Richmond

Located in the desirable Inner Richmond district, this enchanting Victorian-era
condominium offers the perfect blend of historic elegance and modern comfort.
Just steps away from the iconic Golden Gate Park, this beautifully preserved
condo features high ceilings, ornate moldings, and large bay windows that flood
the space with natural light. The classic facade, adorned with intricate details
and a rich color palette, reflects the charm and sophistication of the Victorian
period. Inside, hardwood/softwood floors and classic moldings complement the
updated kitchen and bathroom areas, providing a harmonious balance between
old-world character and contemporary convenience.
 
Inviting living room, separate formal dining room (or guest room), two bedrooms
off hall have flexibilty for your particular lifestyle.  Full bath with shower
over tub, and spacious kitchen with Viking range has loads of counter/cabinet
space. Laundry porch/extra storage area with brand new washer/dryer with direct
access to great backyard space (shared). Garage has dedicated parking spot for
one car.
 
Ideal for those seeking the vibrant city lifestyle (close to multiple Muni
lines, Clement St. and Laurel Village shops), yet longing for proximity to lush
green spaces, this condo offers easy access to gardens, museums, and walking
trails, making it a rare gem in one of San Francisco's most sought-after
neighborhoods. 
 
HOA Fees/Assessments: HOA does not collect a monthly fee. Each unit owner pays
for their own garbage fees. Water bill is split 50%/50%. Homeowner’s insurance
is paid in full once a year evenly among owners. As needed, common area repairs
and improvements are divided evenly among both unit owners. Each owner
contributes $100 per month to a checking acct. in both owners’ names.
 
*Square footage is approximate and per graphic artist.

Link to disclosure package:
https://app.disclosures.io/link/688-3rd-Avenue-e02napfz




WALKTHROUGH


PROPERTY TOUR

∎



FLOOR PLANS

∎
Click here to download

Click here to download



ABOUT THIS


NEIGHBORHOOD

∎

Well known for its pockets of Russian and Chinese culture, there is always
something unique to explore in the Inner Richmond District. Much like the Outer
District, you will find similar row houses along the hilly streets. With \
Golden Gate Park, Presidio, and plenty of local attractions and food all within
a mile radius of the Inner Richmond District, there is never a dull moment in
this vibrant Bay Area neighborhood.

When Inner Richmond residents are craving an amazing meal, they will usually
head over to Clement Street. Sandwiched in between Geary and Balboa Street,
Clement Street’s notable local restaurants include:
Burma Superstar: Plenty of incredible Asain fusion cuisine can be found at this
small, popular restaurant. 
Eats: Short on space but big on flavor, Eats features some amazing breakfast
options that will jumpstart your morning.
Halu Restaurant: If you love ramen and other Japanese staples, this is a
must-visit.
Arsicault Bakery: Heralded by Sunset Magazine as having the best croissant in
San Francisco, you will also find plenty of other savory/sweet baked goods.

Just north of the Inner Richmond District you will find Mountain Lake Park.
Located near the southwest section of Presidio, residents and tourists love to
ride bikes or run/walk along the lake. Mountain Lake Park also offers many of
the amenities you’d expect from a park: off-leash dog area, tennis/basketball
courts, a playground, and picnic areas. Living in Inner Richmond also provides
easy access to one of San Francisco’s most popular golf courses. Presidio Golf
Course’s entrance is located near the intersection of Arguello and Pacific; once
you arrive, you will be treated to a majestic forest-lined golf course.
Afterwards, you can enjoy a refreshing beverage and food inside their beautiful
clubhouse.

The Presidio and its 1000-plus acres of space have more to offer than parks and
golf courses. The headquarters of both Disney and Industrial Lights and Magic
are located near the northeast corner, and employees of either can enjoy a
morning or afternoon walk to and from work. As the area continues its
revitalization, there’s no telling what fun and adventure will be available in
Presidio in the years to come!
Keep reading
Well known for its pockets of Russian and Chinese culture, there is always
something unique to explore in the Inner Richmond District. Much like the Outer
District, you will find similar row houses along the hilly streets. With \
Golden Gate Park, Presidio, and plenty of local attractions and food all within
a mile radius of the Inner Richmond District, there is never a dull moment in
this vibrant Bay Area neighborhood.

When Inner Richmond residents are craving an amazing meal, they will usually
head over to Clement Street. Sandwiched in between Geary and Balboa Street,
Clement Street’s notable local restaurants include:
Burma Superstar: Plenty of incredible Asain fusion cuisine can be found at this
small, popular restaurant. 
Eats: Short on space but big on flavor, Eats features some amazing breakfast
options that will jumpstart your morning.
Halu Restaurant: If you love ramen and other Japanese staples, this is a
must-visit.
Arsicault Bakery: Heralded by Sunset Magazine as having the best croissant in
San Francisco, you will also find plenty of other savory/sweet baked goods.

Just north of the Inner Richmond District you will find Mountain Lake Park.
Located near the southwest section of Presidio, residents and tourists love to
ride bikes or run/walk along the lake. Mountain Lake Park also offers many of
the amenities you’d expect from a park: off-leash dog area, tennis/basketball
courts, a playground, and picnic areas. Living in Inner Richmond also provides
easy access to one of San Francisco’s most popular golf courses. Presidio Golf
Course’s entrance is located near the intersection of Arguello and Pacific; once
you arrive, you will be treated to a majestic forest-lined golf course.
Afterwards, you can enjoy a refreshing beverage and food inside their beautiful
clubhouse.

The Presidio and its 1000-plus acres of space have more to offer than parks and
golf courses. The headquarters of both Disney and Industrial Lights and Magic
are located near the northeast corner, and employees of either can enjoy a
morning or afternoon walk to and from work. As the area continues its
revitalization, there’s no telling what fun and adventure will be available in
Presidio in the years to come!

View more


Paul Barbagelata

BarbCo Real Estate

Broker Associate

DRE: #01043609 Cell: 415.279.3834 Office: 415-759-2500



paulb@realestatesf.com



www.RealEstateSF.com



SCHEDULE

∎

Upcoming Events

Saturday

Sep 14

Open House Tours

2:00 PM - 4:00 PM

Sunday

Sep 15

Open House Tours

2:00 PM - 4:00 PM

Tuesday

Sep 17

Open House Tours

11:00 AM - 1:00 PM

8:00 AM - 3:00 PM



Request an appointment


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.

Paul Barbagelata

BarbCo Real Estate

Broker Associate

DRE: #01043609 Cell: 415.279.3834 Office: 415-759-2500

paulb@realestatesf.com

www.RealEstateSF.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 / 46

Well known for its pockets of Russian and Chinese culture, there is always
something unique to explore in the Inner Richmond District. Much like the Outer
District, you will find similar row houses along the hilly streets. With \
Golden Gate Park, Presidio, and plenty of local attractions and food all within
a mile radius of the Inner Richmond District, there is never a dull moment in
this vibrant Bay Area neighborhood.

When Inner Richmond residents are craving an amazing meal, they will usually
head over to Clement Street. Sandwiched in between Geary and Balboa Street,
Clement Street’s notable local restaurants include:
Burma Superstar: Plenty of incredible Asain fusion cuisine can be found at this
small, popular restaurant. 
Eats: Short on space but big on flavor, Eats features some amazing breakfast
options that will jumpstart your morning.
Halu Restaurant: If you love ramen and other Japanese staples, this is a
must-visit.
Arsicault Bakery: Heralded by Sunset Magazine as having the best croissant in
San Francisco, you will also find plenty of other savory/sweet baked goods.

Just north of the Inner Richmond District you will find Mountain Lake Park.
Located near the southwest section of Presidio, residents and tourists love to
ride bikes or run/walk along the lake. Mountain Lake Park also offers many of
the amenities you’d expect from a park: off-leash dog area, tennis/basketball
courts, a playground, and picnic areas. Living in Inner Richmond also provides
easy access to one of San Francisco’s most popular golf courses. Presidio Golf
Course’s entrance is located near the intersection of Arguello and Pacific; once
you arrive, you will be treated to a majestic forest-lined golf course.
Afterwards, you can enjoy a refreshing beverage and food inside their beautiful
clubhouse.

The Presidio and its 1000-plus acres of space have more to offer than parks and
golf courses. The headquarters of both Disney and Industrial Lights and Magic
are located near the northeast corner, and employees of either can enjoy a
morning or afternoon walk to and from work. As the area continues its
revitalization, there’s no telling what fun and adventure will be available in
Presidio in the years to come!
1 / 50