biscayathree.com Open in urlscan Pro
35.231.69.28  Public Scan

Submitted URL: https://www.biscayathree.com/
Effective URL: https://biscayathree.com/
Submission: On August 26 via api from GB

Form analysis 5 forms found in the DOM

<form type="POST" action="" class="subscribe-form form_contact" data-fade-script="fade_header">
  <div class="form-group">
    <label>Full Name</label>
    <div class="control">
      <input type="text" name="name" placeholder="Full Name">
      <span class="message"></span>
    </div>
  </div>
  <div class="form-group">
    <label>Email</label>
    <div class="control">
      <input type="text" name="email" placeholder="Email">
      <span class="message"></span>
    </div>
  </div>
  <div class="form-group">
    <label>Phone</label>
    <div class="control">
      <input type="text" name="phone" placeholder="Phone">
      <span class="message"></span>
    </div>
  </div>
  <div class="form-group">
    <label>Captcha</label>
    <div class="control">
      <input type="text" name="verif" placeholder="3+2=">
      <span class="message"></span>
    </div>
  </div>
  <div class="btn-wrapper">
    <button type="submit" class="btn-warning">Subscribe</button>
    <span class="message"></span>
  </div>
</form>

<form type="POST" action="" class="subscribe-form form_contact" data-fade-script="fade_overlay">
  <div class="row">
    <div class="col-md-6">
      <div class="form-group">
        <label>Full Name</label>
        <div class="control">
          <input type="text" name="name" placeholder="Full Name">
          <span class="message"></span>
        </div>
      </div>
      <div class="form-group">
        <label>Email</label>
        <div class="control">
          <input type="text" name="email" placeholder="Email">
          <span class="message"></span>
        </div>
      </div>
      <div class="form-group">
        <label>Phone</label>
        <div class="control">
          <input type="text" name="phone" placeholder="Phone">
          <span class="message"></span>
        </div>
      </div>
      <div class="form-group">
        <label>Security</label>
        <div class="control">
          <input type="text" name="verif" placeholder="3+2=">
          <span class="message"></span>
        </div>
      </div>
    </div>
    <div class="col-md-6">
      <div class="form-group">
        <label>Message</label>
        <div class="control">
          <textarea name="comment" placeholder="Message"></textarea>
          <span class="message"></span>
        </div>
      </div>
    </div>
  </div>
  <div class="form-group btn-wrapper">
    <button type="submit" class="btn-warning">Book</button>
  </div>
</form>

POST

<form id="call-form" enctype="multipart/form-data" action="" method="POST">
  <p class="form-text">Talk to a local agent in less than 27 seconds. Enter your details below for a free callback.</p>
  <div class="form-group">
    <input type="text" value="" class="form-control" name="name" placeholder="Enter your name" minlength="3" required="">
    <small class="name-error hidden">Missing name</small>
  </div>
  <div class="form-group">
    <input type="tel" value="" class="form-control" name="phone" placeholder="Enter your phone number" minlength="10" required="" style="margin: -10px 0 0 0;">
    <small class="phone-error hidden">Missing phone number</small>
    <input type="hidden" value="https://biscayathree.com" name="referral_http">
    <input type="hidden" value="websites" name="referral_source">
    <input type="hidden" value="" name="referral_campaign">
    <input type="hidden" value="ClickToCall" name="referral_content">
    <input type="hidden" value="biscayathree.com" name="referral_medium">
  </div>
</form>

POST

<form id="schedule-form" enctype="multipart/form-data" action="" method="POST" class="hidden">
  <p class="form-text">Please choose the best time to call you back? Current time in Miami <b id="time_now">11:53 PM</b></p>
  <div class="form-group">
    <select class="form-control" name="date" id="call_date">
      <option value="2021-7 27">7/27 Friday</option>
      <option value="2021-7 28">7/28 Saturday</option>
      <option value="2021-7 29">7/29 Sunday</option>
    </select>
  </div>
  <div class="form-group">
    <select class="form-control" name="time" id="call_time">
      <option value="9" class="too-late">9 am</option>
      <option value="10" class="too-late">10 am</option>
      <option value="11" class="too-late">11 am</option>
      <option value="12" class="too-late">12 pm</option>
      <option value="13" class="too-late">1 pm</option>
      <option value="14" class="too-late">2 pm</option>
      <option value="15" class="too-late">3 pm</option>
      <option value="16" class="too-late">4 pm</option>
      <option value="17" class="too-late">5 pm</option>
      <option value="18" class="too-late">6 pm</option>
      <option value="19" class="too-late">7 pm</option>
      <option value="20" class="too-late">8 pm</option>
      <option value="21" class="too-late">9 pm</option>
    </select>
  </div>
</form>

/contact.html

<form class="form-wrapper no-padding form_contact" action="/contact.html" data-fade-script="fade_overlay">
  <div class="form-group">
    <label>full name</label>
    <div class="control">
      <input placeholder="full name" id="name" name="name" type="text">
      <span class="message"></span>
    </div>
  </div>
  <div class="form-group">
    <label>Email</label>
    <div class="control">
      <input id="email" name="email" type="text" placeholder="Email">
      <span class="message"></span>
    </div>
  </div>
  <div class="form-group">
    <label>Phone</label>
    <div class="control">
      <input id="phone" name="phone" type="text" placeholder="Phone">
      <span class="message"></span>
    </div>
  </div>
  <div class="form-group">
    <label>Security</label>
    <div class="control">
      <input id="verif" name="verif" type="text" placeholder="3+2=">
      <span class="message"></span>
    </div>
  </div>
  <div class="form-group">
    <label>Message</label>
    <div class="control">
      <textarea placeholder="message" name="comment" id="comment"></textarea>
      <span class="message"></span>
    </div>
  </div>
  <div class="form-group btn-wrapper">
    <input name="reference" id="reference" type="hidden" value="">
    <input name="price" id="price" type="hidden" value="">
    <input name="type" id="type" type="hidden" value="">
    <input name="url_redirect" id="url_redirect" type="hidden" value="">
    <input name="website" id="website" type="hidden" value="biscayathree.com">
    <button type="submit" class="btn-warning btn-popup" data-saved="Subscribe" data-saving="Sending...">Subscribe</button>
  </div>
</form>

Text Content

BISCAYA THREE

 * Home
 * Sales
 * Rentals
 * Agents
 * Contact


WELCOME TO BISCAYA THREE COMMUNITY

Subscribe to receive regular updates from this community, call 305-602-0908, or
check what is currently available:

Welcome to your community

Rentals Sales
Full Name

Email

Phone

Captcha

Subscribe
Thanks
for subscribing!
We’ll be in touch shortly.


ABOUT THE COMMUNITY

The Biscaya Three Aventura offers property for sale that are modern,
well-maintained for professionals, business executives, and families that are
looking for city life with a great neighborhood feel.

Biscaya Three Aventura provides 24-7 concierge service and valet parking. Our
concierge can take care of all of your needs like travel arrangements,
reservations to one of the many world class restaurants in Brickell, or tickets
to your favorite event, they would be happy to accommodate you. The secure
garage and valet service make owning a vehicle in the city hassle-free.

Each apartment has its own balcony and floor to ceiling doors so you don’t miss
one second of your city or Bay view.

Biscaya Three Aventura has a 50 foot lap pool along with a health spa with
private treatment rooms, in house maintenance, housekeeping services and a
secure garage with a street level café.

Located in the “Wall Street of the South”, you are within walking distance of
many work class shops, food markets, and anything else you would need. Please
feel free to call us at 305-602-0908 or fill out our contact form to the right
of this page and let us get you started on buying the place you’ve been looking
for.

Aventura real estate has changed over the years and the Aventura market has been
on the rise with one high rise after the other. It can be overwhelming when
looking to buy, but we can help sort through all of what you’re seeing on other
sites and help you find your home here. Being in the business for many years, we
have the experience and expertise to know what the buying process is. Biscaya
Three Aventura is a great place to live and we would love for you to give you
the opportunity to prove it to you, contact us today.


OUR LATEST TRANSACTIONS

Last Updated on 08.22.21

Beds

1

Baths

1

sq. ft.

717

per SQFT

$223.15

$159,995
20500 W Country Club Dr

Beds

2

Baths

2

sq. ft.

994

per SQFT

$246.48

$245,000
20400 W Country Club Dr

Beds

2

Baths

2

sq. ft.

994

per SQFT

$226.36

$225,000
20500 W Country Club Dr
More


BOOK A FREE CONSULTATION

Full Name

Email

Phone

Security

Message

Book
Contact Us
Main 305-602-0908

 * 
 * 
 * 

Fair Housing and Equal Opportunity. 2021 Inc.© All Rights Reserved. Fair Housing
and Equal Opportunity. - All information provided is deemed reliable but is not
guaranteed accurate, and should be independently verified. 2021 Inc.© All Rights
Reserved.


HAVE A QUESTION?

Talk to a local agent in less than 27 seconds. Enter your details below for a
free callback.

Missing name
Missing phone number

Please choose the best time to call you back? Current time in Miami 11:53 PM

7/27 Friday7/28 Saturday7/29 Sunday
9 am10 am11 am12 pm1 pm2 pm3 pm4 pm5 pm6 pm7 pm8 pm9 pm

Thank you, we look forward to speaking soon!

Call me nowSchedule
Schedule callback

GIVE US A SHOUT

full name

Email

Phone

Security

Message

Subscribe
Success!
We’ll be in touch shortly