auctionsstaging.upcaguamandsaipan.com Open in urlscan Pro
2606:4700:3033::ac43:d0df  Public Scan

Submitted URL: https://auctionsstaging.upcaguamandsaipan.com/
Effective URL: https://auctionsstaging.upcaguamandsaipan.com/bids
Submission: On August 09 via api from US — Scanned from DE

Form analysis 1 forms found in the DOM

<form wire:submit="search">
  <div class="lg:flex gap-x-5">
    <div class="relative flex-1">
      <h4 class="absolute -top-2.5 right-0 left-0 mx-auto max-w-[140px] lg:-top-2 lg:right-auto lg:left-5 lg:max-w-none text-slate-700 text-center font-bold bg-white px-3"> Filters Applied </h4>
      <ul class="flex flex-wrap items-center gap-x-6 gap-y-4 text-gray-900 text-xs mt-1 pt-7 px-8 pb-4 border border-slate-200 rounded-lg dark:text-white">
        <li>
          <span class="text-slate-500 font-medium">Keywords:</span>
          <span class="rounded-full bg-red-50 px-2.5 py-0.5 text-xs font-bold text-red-700 ring-1 ring-inset ring-red-600/10"> None </span>
        </li>
        <li>
          <span class="text-slate-500">Make:</span>
          <span class="rounded-full bg-red-50 px-2.5 py-0.5 text-xs font-bold text-red-700 ring-1 ring-inset ring-red-600/10"> All </span>
        </li>
        <li>
          <span class="text-slate-500">Model:</span>
          <span class="rounded-full bg-red-50 px-2.5 py-0.5 text-xs font-bold text-red-700 ring-1 ring-inset ring-red-600/10"> All </span>
        </li>
        <li>
          <span class="text-slate-500">Body Style:</span>
          <span class="rounded-full bg-red-50 px-2.5 py-0.5 text-xs font-bold text-red-700 ring-1 ring-inset ring-red-600/10"> All </span>
        </li>
        <li>
          <span class="text-slate-500">Vehicle Condition:</span>
          <span class="rounded-full bg-red-50 px-2.5 py-0.5 text-xs font-bold text-red-700 ring-1 ring-inset ring-red-600/10"> All </span>
        </li>
        <li>
          <span class="text-slate-500">Year:</span>
          <span class="rounded-full bg-red-50 px-2.5 py-0.5 text-xs font-bold text-red-700 ring-1 ring-inset ring-red-600/10"> All </span>
        </li>
        <li>
          <span class="text-slate-500">Miles:</span>
          <span class="rounded-full bg-red-50 px-2.5 py-0.5 text-xs font-bold text-red-700 ring-1 ring-inset ring-red-600/10"> All </span>
        </li>
      </ul>
      <!-- [Form Input Fields Wrapper] ::start -->
      <div class="mt-5 flex flex-wrap lg:flex-nowrap items-center gap-4 lg:gap-y-0 lg:gap-x-5">
        <!-- [Keyword] ::start -->
        <div class="w-[48%] lg:w-full">
          <label for="keywords" class="text-sm font-medium leading-6 text-gray-900 hidden">Keyword</label>
          <div class="w-full">
            <input type="text" name="keywords" id="keywords"
              class="block w-full font-semibold rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-inset focus:ring-red-700 focus:bg-red-100/10 text-xs sm:leading-6"
              placeholder="Keywords" wire:model.live="searchKeywords">
          </div>
        </div>
        <!-- [Keyword] ::end -->
        <!-- [Make] ::start -->
        <div class="w-[48%] lg:w-full">
          <label for="vehicle-make" class="hidden text-sm font-medium leading-6 text-gray-900">Make</label>
          <select id="vehicle-make" name="vehicle_make" class="block w-full font-semibold rounded-md border-0 py-1.5 pl-3 pr-8 text-gray-900 ring-1 ring-inset ring-gray-300 focus:ring-red-700 focus:bg-red-100/10 text-xs sm:leading-6"
            wire:model.live="selectedVehicleMake">
            <option value="">Make</option>
            <option value="bmw">BMW</option>
            <option value="chevrolet">Chevrolet</option>
            <option value="dodge">Dodge</option>
            <option value="fiat">Fiat</option>
            <option value="ford">Ford</option>
            <option value="gmc">GMC</option>
            <option value="honda">Honda</option>
            <option value="hyundai">Hyundai</option>
            <option value="infinity">Infinity</option>
            <option value="jeep">Jeep</option>
            <option value="kia">Kia</option>
            <option value="lexus">Lexus</option>
            <option value="mazda">Mazda</option>
            <option value="mitsubishi">Mitsubishi</option>
            <option value="nissan">Nissan</option>
            <option value="scion">Scion</option>
            <option value="subaru">Subaru</option>
            <option value="toyota">Toyota</option>
            <option value="volkswagen">Volkswagen</option>
          </select>
        </div>
        <!-- [Make] ::end -->
        <!-- [Model] ::start -->
        <div class="w-[48%] lg:w-full">
          <label for="vehicle_model" class="hidden text-sm font-medium leading-6 text-gray-900">Model</label>
          <select id="vehicle_model" name="vehicle_model" class="block w-full font-semibold rounded-md border-0 py-1.5 pl-3 pr-8 text-gray-900 ring-1 ring-inset ring-gray-300 focus:ring-red-700 focus:bg-red-100/10 text-xs sm:leading-6"
            wire:model.live="selectedVehicleModel">
            <option value="">Model</option>
          </select>
        </div>
        <!-- [Model] ::end -->
        <!-- [Additional Filter Fields Accordion] ::start -->
        <div x-data="{ isOpen: false, openedWithKeyboard: false }" class="relative w-[48%] lg:w-auto" @keydown.esc.window="isOpen = false, openedWithKeyboard = false">
          <!-- [Toggle Button] ::start -->
          <button type="button" @click="isOpen = ! isOpen"
            class="flex cursor-pointer items-center justify-between w-full gap-2 whitespace-nowrap rounded-lg border border-slate-300 bg-slate-100 px-4 py-2 text-xs font-semibold transition hover:opacity-75 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-slate-800 dark:border-slate-700 dark:bg-slate-800 dark:focus-visible:outline-slate-300 text-slate-700 dark:text-slate-300"
            aria-haspopup="true" @keydown.space.prevent="openedWithKeyboard = true" @keydown.enter.prevent="openedWithKeyboard = true" @keydown.down.prevent="openedWithKeyboard = true" :class="isOpen || openedWithKeyboard ? 'text-black dark:text-white' :
                                    'text-slate-700 dark:text-slate-300'" :aria-expanded="isOpen || openedWithKeyboard" aria-expanded="false"> More Filters <svg aria-hidden="true" fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"
              stroke-width="2" stroke="currentColor" class="size-3 rotate-0 duration-200 ease-in-out" :class="isOpen || openedWithKeyboard ? 'rotate-[180deg]' :
                                        'rotate-0'">
              <path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path>
            </svg>
          </button>
          <!-- [Toggle Button] ::end -->
          <!-- [Dropdown Menu] ::start -->
          <div x-show="isOpen || openedWithKeyboard" x-transition="" x-trap="openedWithKeyboard" @click.outside="isOpen = false, openedWithKeyboard = false" @keydown.down.prevent="$focus.wrap().next()" @keydown.up.prevent="$focus.wrap().previous()"
            class="absolute top-11 right-0 z-30 flex w-full min-w-[12rem] flex-col overflow-hidden rounded-xl border border-slate-300 bg-slate-100 p-5 dark:border-slate-700 dark:bg-slate-800" role="menu" style="display: none;">
            <!-- [Body Style] ::start -->
            <div class="mb-2">
              <label for="vehicle_body_style" class="hidden text-sm font-medium leading-6 text-gray-900">Body Style</label>
              <select id="vehicle_body_style" name="vehicle_body_style" class="block w-full font-semibold rounded-md border-0 py-1.5 pl-3 pr-8 text-gray-900 ring-1 ring-inset ring-gray-300 focus:ring-red-700 focus:bg-red-100/10 text-xs sm:leading-6"
                wire:model.live="selectedVehicleBodyStyle">
                <option value="">Body Style</option>
                <option value="coupe">Coupe </option>
                <option value="convertible">Convertible </option>
                <option value="sedan">Sedan </option>
                <option value="hatchback">Hatchback </option>
                <option value="suv">SUV </option>
                <option value="van">Van </option>
                <option value="truck">Truck </option>
                <option value="2-door-hardtop">2 Door Hardtop </option>
              </select>
            </div>
            <!-- [Body Style] ::end -->
            <!-- [Vehicle Condition] ::start -->
            <div class="mb-2">
              <label for="vehicle_condition" class="hidden text-sm font-medium leading-6 text-gray-900">Vehicle Condition</label>
              <select id="vehicle_condition" name="vehicle_condition" class="block w-full font-semibold rounded-md border-0 py-1.5 pl-3 pr-8 text-gray-900 ring-1 ring-inset ring-gray-300 focus:ring-red-700 focus:bg-red-100/10 text-xs sm:leading-6"
                wire:model.live="selectedVehicleCondition">
                <option value="">Vehicle Condition</option>
                <option value="excellent">Excellent </option>
                <option value="good">Good </option>
                <option value="very-good">Very Good </option>
                <option value="fair">Fair </option>
                <option value="poor">Poor </option>
              </select>
            </div>
            <!-- [Vehicle Condition] ::end -->
            <!-- [Year] ::start -->
            <div class="mb-2">
              <label for="vehicle_year" class="hidden text-sm font-medium leading-6 text-gray-900">Year</label>
              <select id="vehicle_year" name="vehicle_year" class="block w-full font-semibold rounded-md border-0 py-1.5 pl-3 pr-8 text-gray-900 ring-1 ring-inset ring-gray-300 focus:ring-red-700 focus:bg-red-100/10 text-xs sm:leading-6"
                wire:model.live="selectedYear">
                <option value="">Year</option>
                <option value="1">&lt; 1 Year Old</option>
                <option value="2">&lt; 2 Year Old</option>
                <option value="3">&lt; 3 Year Old</option>
                <option value="5">&lt; 5 Year Old</option>
                <option value="10">&lt; 10 Year Old</option>
                <option value="11">&gt; 10 Years Old</option>
              </select>
            </div>
            <!-- [Year] ::end -->
            <!-- [Miles] ::start -->
            <div>
              <label for="vehicle_miles" class="hidden text-sm font-medium leading-6 text-gray-900">Miles</label>
              <select id="vehicle_miles" name="vehicle_miles" class="block font-semibold w-full rounded-md border-0 py-1.5 pl-3 pr-8 text-gray-900 ring-1 ring-inset ring-gray-300 focus:ring-red-700 focus:bg-red-100/10 text-xs sm:leading-6"
                wire:model.live="selectedMiles">
                <option value="">Miles</option>
                <option value="10000">Under 10K</option>
                <option value="20000">Under 20K</option>
                <option value="30000">Under 30K</option>
                <option value="50000">Under 50K</option>
                <option value="100000">Under 100K</option>
                <option value="100001">Above 100K</option>
              </select>
            </div>
            <!-- [Miles] ::end -->
          </div>
          <!-- [Dropdown Menu] ::end -->
        </div>
        <!-- [Additional Filter Fields Accordion] ::end -->
      </div>
      <!-- [Form Input Fields Wrapper] ::end -->
    </div>
    <div class="flex flex-col items-center justify-center mt-5 lg:mt-0 py-5 px-10 bg-slate-100 border rounded-lg text-center">
      <button type="submit"
        class="rounded-lg bg-red-600 px-9 py-2 font-semibold text-lg text-white tracking-wide shadow-sm hover:bg-red-700 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-500"> Search </button>
      <button type="button" class="text-slate-500 text-xs font-medium mt-3 ms-3 underline hover:text-black hover:no-underline" wire:click="clearFilters"> Clear Filters </button>
    </div>
  </div>
</form>

Text Content

UPCA Auctions
 * Bids
 * Buyers
 * Sellers
 * How it Works
 * About Us
 * Register Login

 * UPCA Auctions
 * * Bids
   * Buyers
   * Sellers
   * How it Works
   * About Us
   * Register Login


SEARCH FILTERS

FILTERS APPLIED

 * Keywords: None
 * Make: All
 * Model: All
 * Body Style: All
 * Vehicle Condition: All
 * Year: All
 * Miles: All

Keyword

Make Make BMW Chevrolet Dodge Fiat Ford GMC Honda Hyundai Infinity Jeep Kia
Lexus Mazda Mitsubishi Nissan Scion Subaru Toyota Volkswagen
Model Model
More Filters
Body Style Body Style Coupe Convertible Sedan Hatchback SUV Van Truck 2 Door
Hardtop
Vehicle Condition Vehicle Condition Excellent Good Very Good Fair Poor
Year Year < 1 Year Old < 2 Year Old < 3 Year Old < 5 Year Old < 10 Year Old > 10
Years Old
Miles Miles Under 10K Under 20K Under 30K Under 50K Under 100K Above 100K
Search Clear Filters


BIDS


2005 TOYOTA CAMRY

View Details
 * Year 2005
 * Make Toyota
 * Model Camry
 * Miles 49,161

 * Bid ID:  UPCA-00001L5XZ55
 * VIN: 72605
 * Location: 26807 Rogers Ville Apt. 556
 * Minimum Bid Amount: $18,300.00

View Details , 2005 Toyota Camry
Bidding Has Ended


2008 HONDA ACCORD

View Details
 * Year 2008
 * Make Honda
 * Model Accord
 * Miles 95,795

 * Bid ID:  UPCA-000025R4JQ8
 * VIN: 67743
 * Location: 3044 Charles Field
 * Minimum Bid Amount: $10,400.00

View Details , 2008 Honda Accord


2015 BMW 3 SERIES 328I

View Details
 * Year 2015
 * Make BMW
 * Model 3 Series 328i
 * Miles 25,861

 * Bid ID:  UPCA-00004KKN5TQ
 * VIN: 49866
 * Location: 3466 Ned Mall
 * Minimum Bid Amount: $9,900.00

View Details , 2015 BMW 3 Series 328i
Scheduled for September 08, 2024 10:00 AM


2024 CHEVROLET COLORADO

View Details
 * Year 2024
 * Make Chevrolet
 * Model Colorado
 * Miles 8,882

 * Bid ID:  UPCA-00005HRWCGJ
 * VIN: 64552
 * Location: 8245 Jaycee Lakes Apt. 644
 * Minimum Bid Amount: $41,418.00

View Details , 2024 Chevrolet Colorado
Bidding Has Ended


2018 TOYOTA COROLLA IM CVT

View Details
 * Year 2018
 * Make Toyota
 * Model Corolla IM
 * Miles 70,956

 * Bid ID:  UPCA-00006CN2U6H
 * VIN: 43323
 * Location: 2099 Kreiger Cliffs
 * Minimum Bid Amount: $27,765.00

View Details , 2018 Toyota Corolla IM CVT
Bidding Has Ended


PHYSICAL

Guam Business Center

2nd Floor Suite 209

1757 Route 16 Harmon 111

Dededo, Guam


MAILING

P.O. Box 7118

Tamuning, GU 96931


SAIPAN LOCATION

Suite 209 Marianas Business Plaza

Saipan, MP 96950

Tel: (670) 235-2000

Fax: (670) 235-2003

Bids
Buyers
Sellers
How it Works
About Us

© 2024 UPCA Auctions, Inc. All Rights Reserved.