< Fernando Ramos >

Scraping Car Data from Kelley Blue Book

Published on September 21, 2018

In this blog post, I will show how to create a function that iteratively collects data by parsing html content from a website. This form of data collection is commonly referred to as "web scraping". This requires basic knowledge of HTML structure and Python programming; utilizing both of these makes for an interesting intermediate project. Please note that this tutorial is for educational puposes only.

As a muscle car enthusiast, I was curious about the price of an average 2016 mustang. So, I decided to web scrape data from Kelley Blue Book. I started with a simple search query and filtered results using my zip code "92612" and a 500 mile radius. Without further ado, let's get straight into the scripting.

First, we start by importing the necessary modules:

import requests
from bs4 import BeautifulSoup

You can read documentation on the requests module here and the BeautifulSoup module here.

Next, we establish a connection (an HTTP request) with our script and the website. Since we will refer to this connection again, we will create a variable called httpRequest. Then, we create another variable that uses the previous variable and stores all the parsed html content called soup :

httpRequest = requests.get('https://www.kbb.com/cars-for-sale/cars/used-cars/ford/mustang/?vehicleid=410716&year=2016&distance=500#survey')
soup = BeautifulSoup(httpRequest.content,'html.parser')

At this stage, we have to look for an element in the website's html code that all car listings seem to have. To do this, right click on one of the car ads and select inspect.

Once you hit inspect, you should see this window pop up which gives you a bird's eye view of the site's html code. This can be done irrespective of the browser you're using.

Notice that every single car advertisement is embedded in:

<div class="listing sponsored js-used-listing" data-current-index="1" data-engine="4-Cylinder Turbo" data-is-spotlight="True" data-listing-id="476071569" data-listing-type="spv_" data-manufacturer="Ford" data-owner-id="553744">

This is the data-filled container that we will target. In here there's useful data such as the car's price, mileage, transmission type, engine type, door type, and model.

Now that we've identified the reoccuring div tag with a class of "listing", we can finally create a variable called data which we will use to develop our dataset. I have highlighted each comma that separates elements in the list "data" with yellow so that you can see this more clearly. Refer to the output below. You can also press command + f and search for "listing " (This includes a space inside of the search bar).

data = soup.find_all('div',{"class":"listing"})
print(len(data)) # prints the number of elements in the list "data"
print(data) # prints the list 
27
[<div class="listing sponsored js-used-listing" data-current-index="1" data-engine="4-Cylinder Turbo" data-is-spotlight="True" data-listing-id="476071569" data-listing-type="spv_" data-manufacturer="Ford" data-owner-id="553744">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_spv_v_lstg" data-birf-extra="&c=553744&v=476071569&z=&s=-1" data-birf-log="component" data-birf-par="kbb_spv_lstg_usd_1" href="/cars-for-sale/476071569/?totalresults=0&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" data-birf-cmp="kbb_spv_v_dtl" data-birf-extra="&c=553744&v=476071569&z=&s=-1" data-birf-log="component" href="/cars-for-sale/476071569/?totalresults=0&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/a7230c644a5440f9b5f7b6a7382ae31b.jpg" src=""/>
</div>
</a>
<p class="legal-text ">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=553744&v=476071569&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=476071569&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=0&index=0" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $23,995
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 14,434</p>
<p class="paragraph-two">Exterior: Shadow Black</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">Hyman Bros. Automobiles</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" data-birf-cmp="kbb_spv_v_pht" data-birf-extra="&c=553744&v=476071569&z=&s=-1" data-birf-log="component" href="/cars-for-sale/476071569/?totalresults=0&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>28 photos</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: Automatic</p>
<p class="paragraph-two">Engine: 4-Cylinder Turbo</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_spv_v_dlr" data-birf-extra="&c=553744&v=476071569&z=&s=-1" data-birf-log="component" href="/dealers/midlothian_va/hyman-bros-automobiles/553744/" rel="nofollow">Hyman Bros. Automobiles</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/a7230c644a5440f9b5f7b6a7382ae31b.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "23995",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "~ONE OWNER~ CLEAN CARFAX~ ONLY 14,000 MILES~ PREMIUM~ NAVIGATION~ - Options: VOICE-ACTIVATED TOUCH-SCREEN NAVIGATION SYSTEM",
    "vehicleIdentificationNumber": "1FA6P8TH8G5207406",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "14434"
    },
    "color": "Shadow Black",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "Automatic",
    "vehicleEngine": "4-Cylinder Turbo",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing sponsored js-used-listing" data-current-index="2" data-engine="8-Cylinder" data-is-spotlight="True" data-listing-id="484142756" data-listing-type="spv_" data-manufacturer="Ford" data-owner-id="66781019">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_spv_v_lstg" data-birf-extra="&c=66781019&v=484142756&z=&s=-1" data-birf-log="component" data-birf-par="kbb_spv_lstg_usd_2" href="/cars-for-sale/484142756/?totalresults=0&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang GT">
      Used 2016 Ford Mustang GT
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" data-birf-cmp="kbb_spv_v_dtl" data-birf-extra="&c=66781019&v=484142756&z=&s=-1" data-birf-log="component" href="/cars-for-sale/484142756/?totalresults=0&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang GT" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/b19c611a669c462492a9c59e34092b94.jpg" src=""/>
</div>
</a>
<p class="legal-text ">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=66781019&v=484142756&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=484142756&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=0&index=0" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $27,995
        </span>
<span class="badge badge-two js-new-or-reduced-badge" data-is-reduced="True">Reduced</span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 22,606</p>
<p class="paragraph-two">Exterior: Shadow Black</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">Hamer Toyota</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" data-birf-cmp="kbb_spv_v_pht" data-birf-extra="&c=66781019&v=484142756&z=&s=-1" data-birf-log="component" href="/cars-for-sale/484142756/?totalresults=0&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>23 photos</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: 6-Speed Manual</p>
<p class="paragraph-two">Engine: 8-Cylinder</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_spv_v_dlr" data-birf-extra="&c=66781019&v=484142756&z=&s=-1" data-birf-log="component" href="/dealers/mission-hills_ca/hamer-toyota/66781019/" rel="nofollow">Hamer Toyota</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang GT",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/b19c611a669c462492a9c59e34092b94.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "27995",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "Clean CARFAX. Shadow Black 2016 Ford Mustang GT RWD 6-Speed Manual 5.0L V8 Ti-VCT<br><br>Recent Arrival!<br><br>Awards:<br>* 2016 KBB.com Brand Image Awards<br>WHY CHOOSE HAMER TOYOTA? SIMPLE - we choose volume sales over large profit margins! Serving the good folks of the San Fernando Valley from the same corner since 1939, we are in the TOP 10 IN THE USA on Certified Pre-Owned Toyotas and every pre-owned vehicle passes inspection or we don't sell it!! Our Service Department is filled with Toyota Master Technicians who care, our Parts Department is fully stocked, we offer a free shuttle during your service, and provide free wifi in our Customer Business Center. Buy from Hamer and receive a 15% Off Parts Card good for life! At Hamer Toyota, WE HEAR YOU!<br><br>Reviews:<br><br>* From a turbocharged four-cylinder to a roaring V8, there are several appealing engine options; sharp and grippy handling when going around turns; lots of interior upgrades give it a classy/high-tech vibe. Source: Edmunds",
    "vehicleIdentificationNumber": "1FA6P8CF4G5279346",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "22606"
    },
    "color": "Shadow Black",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "6-Speed Manual",
    "vehicleEngine": "8-Cylinder",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="0" data-engine="6-Cylinder" data-is-spotlight="False" data-listing-id="483701760" data-listing-type="" data-manufacturer="Ford" data-owner-id="5792247">
<div class="title-three vehicle-name icon-box-checkmark">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=5792247&v=483701760&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_3" href="/cars-for-sale/483701760/?totalresults=1000&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Certified 2016 Ford Mustang Coupe">
      Certified 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/483701760/?totalresults=1000&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Certified 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/893e6c99819b44eab0ae448871fea1db.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=5792247&v=483701760&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=483701760&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=0" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $17,740
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 19,351</p>
<p class="paragraph-two">Exterior: Race Red</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">Al Packer's White Marsh Ford</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/483701760/?totalresults=1000&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>25 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/483701760/?totalresults=1000&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: Manual</p>
<p class="paragraph-two">Engine: 6-Cylinder</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
<a class="cpo-badge js-cpo-badge" data-cpo-sponsorship-name="Ford CPO Sponsorship" data-modal="#CPObadgeDetail">
<img class="image" src="//file.kbb.com/kbb/images/cpo/FordCPO_logo_95x30.png"/>
</a>
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=5792247&v=483701760&z=&s=-1" data-birf-log="component" href="/dealers/baltimore_md/al-packers-white-marsh-ford/5792247/" rel="nofollow">Al Packer's White Marsh Ford</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Certified 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/893e6c99819b44eab0ae448871fea1db.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "17740",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "Mustang under 20k miles for under 20k dollars WOWEEE!!!<br><br><br><br>Clean CARFAX.<br><br>All vehicles come with the Al Packer Customer Advantage Plan at no extra charge which includes free Oil Changes, free Car Washes, and up to $1,000 in service savings!<br><br>2016 Ford Mustang V6 V6 RWD Race Red 6-Speed Manual 3.7L V6 Ti-VCT 24V NICE LOCAL TRADE IN, LOW MILEAGE, FORD CERTIFIED CAR. BUY WITH CONFIDENCE.<br><br><br>Awards:<br>* 2016 KBB.com Brand Image Awards",
    "vehicleIdentificationNumber": "1FA6P8AM2G5208129",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "19351"
    },
    "color": "Race Red",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "Manual",
    "vehicleEngine": "6-Cylinder",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="1" data-engine="6-Cylinder" data-is-spotlight="False" data-listing-id="486338837" data-listing-type="" data-manufacturer="Ford" data-owner-id="100012990">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=100012990&v=486338837&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_4" href="/cars-for-sale/486338837/?totalresults=1000&index=1&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/486338837/?totalresults=1000&index=1&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/37bff24b4d92453e87c8ad7b0d14f6cf.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=100012990&v=486338837&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=486338837&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=1" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $18,881
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 19,059</p>
<p class="paragraph-two">Exterior: Shadow Black</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">Randall Reed's Prestige Ford</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/486338837/?totalresults=1000&index=1&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>32 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/486338837/?totalresults=1000&index=1&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: 6-Speed Shiftable Automatic</p>
<p class="paragraph-two">Engine: 6-Cylinder</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=100012990&v=486338837&z=&s=-1" data-birf-log="component" href="/dealers/garland_tx/randall-reeds-prestige-ford/100012990/" rel="nofollow">Randall Reed's Prestige Ford</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/37bff24b4d92453e87c8ad7b0d14f6cf.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "18881",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "CARFAX One-Owner. Shadow Black 2016 Ford Mustang V6 RWD 6-Speed Automatic with Select-Shift 3.7L V6 Ti-VCT 24V 2016 Ford Mustang V6 in Shadow Black, 3.7L V6, LOW MILES, SYNC, REAR CAMERA, RWD, COUPE, GREAT CONDITION.<br><br>Recent Arrival! Odometer is 6460 miles below market average!<br><br>Awards:<br>* 2016 KBB.com Brand Image Awards<br><br><br>Reviews:<br><br>* From a turbocharged four-cylinder to a roaring V8, there are several appealing engine options; sharp and grippy handling when going around turns; lots of interior upgrades give it a classy/high-tech vibe. Source: Edmunds",
    "vehicleIdentificationNumber": "1FA6P8AM0G5266692",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "19059"
    },
    "color": "Shadow Black",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "6-Speed Shiftable Automatic",
    "vehicleEngine": "6-Cylinder",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="2" data-engine="6-Cylinder" data-is-spotlight="False" data-listing-id="483188490" data-listing-type="" data-manufacturer="Ford" data-owner-id="1396235">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=1396235&v=483188490&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_5" href="/cars-for-sale/483188490/?totalresults=1000&index=2&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/483188490/?totalresults=1000&index=2&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/38a1ad8abda94da68f7b6446febcb832.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=1396235&v=483188490&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=483188490&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=2" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $19,000
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 7,801</p>
<p class="paragraph-two">Exterior: Oxford White</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">Audi of Stevens Creek</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/483188490/?totalresults=1000&index=2&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>55 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/483188490/?totalresults=1000&index=2&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>2 videos</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: 6-Speed Automatic</p>
<p class="paragraph-two">Engine: 6-Cylinder</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=1396235&v=483188490&z=&s=-1" data-birf-log="component" href="/dealers/san-jose_ca/audi-of-stevens-creek/1396235/" rel="nofollow">Audi of Stevens Creek</a>
<a class="js-dealer-diff paragraph-two js-dealer-diff-reg" data-birf-cmp="kbb_dif_txt_lnk" data-birf-extra="&c=1396235&v=483188490&z=&s=-1" data-birf-log="component" data-info-url="/cars-for-sale/dealerdifferentiator/dealerdiffinfo/" data-listing-id="483188490" data-url="/cars-for-sale/dealerdifferentiator/?listingid=483188490&page=srp" href="javascript:void(0)">Preferred Purchase - Choose Your Process</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/38a1ad8abda94da68f7b6446febcb832.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "19000",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "CARFAX One-Owner. Oxford White 2016 Ford Mustang V6 RWD 6-Speed 3.7L V6 Ti-VCT 24V<br><br>Recent Arrival! Odometer is 19137 miles below market average!<br><br>Awards:<br>  * 2016 KBB.com Brand Image Awards<br><br><br>Reviews:<br><br>  * From a turbocharged four-cylinder to a roaring V8, there are several appealing engine options; sharp and grippy handling when going around turns; lots of interior upgrades give it a classy/high-tech vibe. Source: Edmunds",
    "vehicleIdentificationNumber": "1FA6P8AM2G5336807",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "7801"
    },
    "color": "Oxford White",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "6-Speed Automatic",
    "vehicleEngine": "6-Cylinder",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="3" data-engine="6-Cylinder" data-is-spotlight="False" data-listing-id="486092028" data-listing-type="" data-manufacturer="Ford" data-owner-id="71327053">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=71327053&v=486092028&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_6" href="/cars-for-sale/486092028/?totalresults=1000&index=3&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/486092028/?totalresults=1000&index=3&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/611f0a659ccf4a568b00bd44cfab701f.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=71327053&v=486092028&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=486092028&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=3" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $19,188
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 19,754</p>
<p class="paragraph-two">Exterior: Shadow Black</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">Napleton Kia of Carmel</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/486092028/?totalresults=1000&index=3&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>35 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/486092028/?totalresults=1000&index=3&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Engine: 6-Cylinder</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=71327053&v=486092028&z=&s=-1" data-birf-log="component" href="/dealers/indianapolis_in/napleton-kia-of-carmel/71327053/" rel="nofollow">Napleton Kia of Carmel</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/611f0a659ccf4a568b00bd44cfab701f.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "19188",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "Shadow Black 2016 Ford Mustang V6 Clean CarFax History Report, Rear Back-up Camera, Hands-Free Bluetooth, Mustang V6, 2D Coupe, 3.7L V6 Ti-VCT 24V, 6-Speed, RWD, Shadow Black, Ebony w/Cloth Sport Bucket Seats. Every day is a Sale Day at Napleton Kia of Carmel, WHERE THE CUSTOMER COMES FIRST!! Please cal Us at (877)722-1181 you will be glad You did!!! Serving all surrounding cities such as Indianapolis, Carmel, Fishers, Westfield, Kokomo, Cicero, Noblesville, Muncie, Yorktown, Marion, Shelbyville, Anderson, Whitestown, Zionsville, Lafayette, Crawfordsville, Avon, Bloomington, Terre Haute, Evansville, McCordsville, Fortville, Ingalls, Pendleton, Lapel, New Palestine, Greenfield, Greenwood, Danville, Pittsboro, Camby, Plainfield, Franklin, Monroe, Lexington,Ky, Cincinnati,Oh, Columbus,Oh, Louisville,Ky, St. Louis, MO, Awards:<br>* 2016 KBB.com Brand Image Awards",
    "vehicleIdentificationNumber": "1FA6P8AM8G5276662",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "19754"
    },
    "color": "Shadow Black",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "",
    "vehicleEngine": "6-Cylinder",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="4" data-engine="4-Cylinder Turbo" data-is-spotlight="False" data-listing-id="484633489" data-listing-type="" data-manufacturer="Ford" data-owner-id="83654">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=83654&v=484633489&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_7" href="/cars-for-sale/484633489/?totalresults=1000&index=4&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Premium">
      Used 2016 Ford Mustang Premium
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/484633489/?totalresults=1000&index=4&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Premium" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/57d1a43775f347a8bcf8305f0d4a66cf.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=83654&v=484633489&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=484633489&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=4" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $19,499
        </span>
<span class="badge badge-two js-new-or-reduced-badge" data-is-reduced="True">Reduced</span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 17,144</p>
<p class="paragraph-two">Exterior: Ruby Red Metallic Tinted</p>
<p class="paragraph-two interior-color">Interior: Black</p>
<p class="paragraph-two dealer-name">Dennis Sneed Ford</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/484633489/?totalresults=1000&index=4&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>30 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/484633489/?totalresults=1000&index=4&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: Automatic</p>
<p class="paragraph-two">Engine: 4-Cylinder Turbo</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
<a class="autocheck-badge" data-is-free="True" data-one-owner="True" href="/cars-for-sale/484633489/?totalresults=1000&index=4&tab=vehiclehistory&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<img alt="AutoCheck" class="image" src="//file.kbb.com/kbb/images/autocheck/auto-check-one-owner.png">
Vehicle History
  </img></a>
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=83654&v=484633489&z=&s=-1" data-birf-log="component" href="/dealers/gower_mo/dennis-sneed-ford/83654/" rel="nofollow">Dennis Sneed Ford</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Premium",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/57d1a43775f347a8bcf8305f0d4a66cf.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "19499",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "COMES WITH 12 MONTH, 12,000 MILE SPECIAL FORD FACTORY LIMITED BUMPER TO BUMPER WARRANTY. STARTS FROM DATE OF PURCHASE. (MAY OVERLAP EXISTING FACTORY WARRNTY, EXCLUDES NORMAL WEAR AND TEAR ITEMS)",
    "vehicleIdentificationNumber": "1FA6P8THXG5268983",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "17144"
    },
    "color": "Ruby Red Metallic Tinted",
    "vehicleInteriorColor": "Black",
    "vehicleTransmission": "Automatic",
    "vehicleEngine": "4-Cylinder Turbo",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="5" data-engine="4-Cylinder Turbo" data-is-spotlight="False" data-listing-id="480813138" data-listing-type="" data-manufacturer="Ford" data-owner-id="66436">
<div class="title-three vehicle-name icon-box-checkmark">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=66436&v=480813138&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_8" href="/cars-for-sale/480813138/?totalresults=1000&index=5&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Certified 2016 Ford Mustang Coupe">
      Certified 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/480813138/?totalresults=1000&index=5&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Certified 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/e2a2a346743045bcaeed5513777e4ef8.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=66436&v=480813138&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=480813138&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=5" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $19,599
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 11,941</p>
<p class="paragraph-two">Exterior: Shadow Black</p>
<p class="paragraph-two interior-color">Interior: Dark Ceramic W/Cloth Sport Buc</p>
<p class="paragraph-two dealer-name">Jarrett Scott Ford : I-4, exit 22 Plant City</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/480813138/?totalresults=1000&index=5&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>33 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/480813138/?totalresults=1000&index=5&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>5 videos</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: 6-Speed Manual</p>
<p class="paragraph-two">Engine: 4-Cylinder Turbo</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
<a class="cpo-badge js-cpo-badge" data-cpo-sponsorship-name="Ford CPO Sponsorship" data-modal="#CPObadgeDetail">
<img class="image" src="//file.kbb.com/kbb/images/cpo/FordCPO_logo_95x30.png"/>
</a>
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=66436&v=480813138&z=&s=-1" data-birf-log="component" href="/dealers/plant-city_fl/jarrett-scott-ford--i-4-exit-22-plant-city/66436/" rel="nofollow">Jarrett Scott Ford : I-4, exit 22 Plant City</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Certified 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/e2a2a346743045bcaeed5513777e4ef8.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "19599",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "ONE OWNER, CLEAN VEHICLE HISTORY REPORT*** ENHANCED SECURITY PACKAGE*** REVERSE PARK ASSIST***",
    "vehicleIdentificationNumber": "1FA6P8TH7G5306203",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "11941"
    },
    "color": "Shadow Black",
    "vehicleInteriorColor": "Dark Ceramic W/Cloth Sport Buc",
    "vehicleTransmission": "6-Speed Manual",
    "vehicleEngine": "4-Cylinder Turbo",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="6" data-engine="6-Cylinder" data-is-spotlight="False" data-listing-id="485429961" data-listing-type="" data-manufacturer="Ford" data-owner-id="100024166">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=100024166&v=485429961&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_9" href="/cars-for-sale/485429961/?totalresults=1000&index=6&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/485429961/?totalresults=1000&index=6&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/c6efffd32a51424e919d9fbbc67bbf34.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=100024166&v=485429961&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=485429961&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=6" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $19,965
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 13,244</p>
<p class="paragraph-two">Exterior: Shadow Black</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">Hyundai of New Port Richey</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/485429961/?totalresults=1000&index=6&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>29 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/485429961/?totalresults=1000&index=6&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: 6-Speed Shiftable Automatic</p>
<p class="paragraph-two">Engine: 6-Cylinder</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=100024166&v=485429961&z=&s=-1" data-birf-log="component" href="/dealers/new-port-richey_fl/hyundai-of-new-port-richey/100024166/" rel="nofollow">Hyundai of New Port Richey</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/c6efffd32a51424e919d9fbbc67bbf34.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "19965",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "CARFAX One-Owner. Clean CARFAX. Odometer is 9288 miles below market average! Shadow Black 2016 Ford Mustang V6 RWD 3.7L V6 Ti-VCT 24V 6-Speed Automatic with Select-Shift Certified. Ford Details:<br><br>* Includes Rental Car and Trip Interruption Reimbursement<br>* Limited Warranty: 12 Month/12,000 Mile (whichever comes first) after new car warranty expires or from certified purchase date<br>* Warranty Deductible: $100<br>* Roadside Assistance<br>* Powertrain Limited Warranty: 84 Month/100,000 Mile (whichever comes first) from original in-service date<br>* 172 Point Inspection<br>* Vehicle History<br>* Transferable Warranty<br><br><br>Financing must be provided by a lender using this dealership's assistance for Customer to receive $1,000 Financing Assist credit; See dealer for complete details.<br><br>Awards:<br>* 2016 KBB.com Brand Image Awards",
    "vehicleIdentificationNumber": "1FA6P8AMXG5289445",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "13244"
    },
    "color": "Shadow Black",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "6-Speed Shiftable Automatic",
    "vehicleEngine": "6-Cylinder",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="7" data-engine="4-Cylinder Turbo" data-is-spotlight="False" data-listing-id="479311006" data-listing-type="" data-manufacturer="Ford" data-owner-id="67720727">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=67720727&v=479311006&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_10" href="/cars-for-sale/479311006/?totalresults=1000&index=7&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/479311006/?totalresults=1000&index=7&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/89aa87435dce4f81b572b1934509def1.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=67720727&v=479311006&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=479311006&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=7" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $19,993
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 9,328</p>
<p class="paragraph-two">Exterior: Magnetic Metallic</p>
<p class="paragraph-two interior-color">Interior: Dark Ceramic</p>
<p class="paragraph-two dealer-name">Ourisman Volkswagen Mazda of Rockville</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/479311006/?totalresults=1000&index=7&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>24 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/479311006/?totalresults=1000&index=7&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: 6-Speed Shiftable Automatic</p>
<p class="paragraph-two">Engine: 4-Cylinder Turbo</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=67720727&v=479311006&z=&s=-1" data-birf-log="component" href="/dealers/rockville_md/ourisman-volkswagen-mazda-of-rockville/67720727/" rel="nofollow">Ourisman Volkswagen Mazda of Rockville</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/89aa87435dce4f81b572b1934509def1.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "19993",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "Just arrived at Ourisman Volkswagen and Mazda of Rockville. Like new 2016 Ford Mustang EcoBoost model. Excellent  condition inside and out. Maryland Inspection and 125 point Gold Check Mechanical certification performed.  1 Owner with Clean CARFAX, ABS brakes, Auto-dimming Rear-View mirror, Brake assist, Delay-off headlights, Dual front impact airbags, Dual front side impact airbags, Electronic Stability Control, Emergency communication system, Exterior Parking Camera Rear, Front anti-roll bar, Front fog lights, Fully automatic headlights, High-Intensity Discharge Headlights, Knee airbag, Leather Shift Knob, Low tire pressure warning, Occupant sensing airbag, Overhead airbag, Power driver seat, Power passenger seat, Rear anti-roll bar, Remote keyless entry, Security system, Speed-sensing steering, Steering wheel mounted audio controls, SYNC Communications & Entertainment System, Telescoping steering wheel, Traction control.<br>Recent Arrival! Odometer is 16092 miles below market average!<br>Awards:<br>  * 2016 KBB.com Brand Image Awards<br>All prices are plus tax, title, tag fees and $300 dealer processing. Ourisman is a family owned and operated business since 1921. Please call 888-684-7759 for more information today!<br>Reviews:<br>  * From a turbocharged four-cylinder to a roaring V8, there are several appealing engine options; sharp and grippy handling when going around turns; lots of interior upgrades give it a classy/high-tech vibe. Source: Edmunds",
    "vehicleIdentificationNumber": "1FA6P8TH4G5290591",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "9328"
    },
    "color": "Magnetic Metallic",
    "vehicleInteriorColor": "Dark Ceramic",
    "vehicleTransmission": "6-Speed Shiftable Automatic",
    "vehicleEngine": "4-Cylinder Turbo",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="8" data-engine="4-Cylinder Turbo" data-is-spotlight="False" data-listing-id="481823406" data-listing-type="" data-manufacturer="Ford" data-owner-id="572945">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=572945&v=481823406&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_11" href="/cars-for-sale/481823406/?totalresults=1000&index=8&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/481823406/?totalresults=1000&index=8&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/e7a27b82c4c14fec847cc006aaf2c48b.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=572945&v=481823406&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=481823406&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=8" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $19,997
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 7,308</p>
<p class="paragraph-two">Exterior: Silver</p>
<p class="paragraph-two dealer-name">McPeek s Chrysler Dodge Jeep Ram of Anaheim</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/481823406/?totalresults=1000&index=8&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>23 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/481823406/?totalresults=1000&index=8&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Engine: 4-Cylinder Turbo</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=572945&v=481823406&z=&s=-1" data-birf-log="component" href="/dealers/anaheim_ca/mcpeek-s-chrysler-dodge-jeep-ram-of-anaheim/572945/" rel="nofollow">McPeek s Chrysler Dodge Jeep Ram of Anaheim</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/e7a27b82c4c14fec847cc006aaf2c48b.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "19997",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "New Price! 31/22 Highway/City MPG Odometer is 17924 miles below market average! Clean CARFAX. CARFAX One-Owner. ABS brakes, Compass, Electronic Stability Control, Emergency communication system, Illuminated entry, Low tire pressure warning, Remote keyless entry, Traction control.<br><br>Ingot Silver Metallic 2016 Ford Mustang EcoBoost RWD 6-Speed Automatic with Select-Shift<br><br><br>Awards:<br>* 2016 KBB.com Brand Image Awards<br><br>Receive Free lube and oil filter changes for up to 45,000 miles for 3 years!!! McPeek's Dodge of Anahiem 1221 S. Auto Center Drive Anahiem, CA 92806 714-262-4902.",
    "vehicleIdentificationNumber": "1FA6P8TH4G5268381",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "7308"
    },
    "color": "Silver",
    "vehicleInteriorColor": "",
    "vehicleTransmission": "",
    "vehicleEngine": "4-Cylinder Turbo",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="9" data-engine="6-Cylinder" data-is-spotlight="False" data-listing-id="485208905" data-listing-type="" data-manufacturer="Ford" data-owner-id="66340171">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=66340171&v=485208905&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_12" href="/cars-for-sale/485208905/?totalresults=1000&index=9&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/485208905/?totalresults=1000&index=9&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/1e6396b39d2048d191c8d9b0bdeea2d3.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=66340171&v=485208905&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=485208905&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=9" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $19,998
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 3,955</p>
<p class="paragraph-two">Exterior: Ingot Silver Metallic</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">Ford Lincoln of Cookeville</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/485208905/?totalresults=1000&index=9&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>31 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/485208905/?totalresults=1000&index=9&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: Automatic</p>
<p class="paragraph-two">Engine: 6-Cylinder</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=66340171&v=485208905&z=&s=-1" data-birf-log="component" href="/dealers/cookeville_tn/ford-lincoln-of-cookeville/66340171/" rel="nofollow">Ford Lincoln of Cookeville</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/1e6396b39d2048d191c8d9b0bdeea2d3.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "19998",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "Value Priced Below Market! Bluetooth, Backup Camera, Park Distance Control, Keyless Entry, CARFAX 1-OWNER VEHICLE, This 2016 Ford Mustang V6 has a sharp Ingot Silver Metallic exterior and a super clean Ebony interior! Automatic Rear Parking Aid, Security System Low Miles, Popular Color Call Dealer to confirm availability, and schedule a Test Drive. - - - 2016 Ford Mustang 2dr Fastback V6 - - -",
    "vehicleIdentificationNumber": "1FA6P8AM1G5264871",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "3955"
    },
    "color": "Ingot Silver Metallic",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "Automatic",
    "vehicleEngine": "6-Cylinder",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="10" data-engine="4-Cylinder Turbo" data-is-spotlight="False" data-listing-id="484942895" data-listing-type="" data-manufacturer="Ford" data-owner-id="566938">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=566938&v=484942895&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_13" href="/cars-for-sale/484942895/?totalresults=1000&index=10&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/484942895/?totalresults=1000&index=10&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/90c3bb0908ce4a6795607c720784259a.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=566938&v=484942895&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=484942895&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=10" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $20,391
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 17,786</p>
<p class="paragraph-two">Exterior: Magnetic Metallic</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">AutoNation Ford Littleton</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/484942895/?totalresults=1000&index=10&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>23 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/484942895/?totalresults=1000&index=10&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>2 videos</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: Manual</p>
<p class="paragraph-two">Engine: 4-Cylinder Turbo</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=566938&v=484942895&z=&s=-1" data-birf-log="component" href="/dealers/littleton_co/autonation-ford-littleton/566938/" rel="nofollow">AutoNation Ford Littleton</a>
<a class="js-dealer-diff paragraph-two js-dealer-diff-reg" data-birf-cmp="kbb_dif_txt_lnk" data-birf-extra="&c=566938&v=484942895&z=&s=-1" data-birf-log="component" data-info-url="/cars-for-sale/dealerdifferentiator/dealerdiffinfo/" data-listing-id="484942895" data-url="/cars-for-sale/dealerdifferentiator/?listingid=484942895&page=srp" href="javascript:void(0)">Shop Now</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/90c3bb0908ce4a6795607c720784259a.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "20391",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "ECOBOOST PERFORMANCE PACKAGE,REVERSE SENSING SYSTEM,Keyless Start,Bluetooth Connection,EBONY; CLOTH SPORT BUCKET SEATS,ENGINE: 2.3L ECOBOOST,MAGNETIC METALLIC,TRANSMISSION: 6-SPEED MANUAL<br><br>This vehicle includes a Money-Back Guarantee* and passed our precise inspection process. Best of all the price you see is the price you pay. No haggling. No back and forth. No pressure. And this price is so good it is guaranteed. This 2016 Ford Mustang EcoBoost is proudly offered by AutoNation Ford Littleton This Ford includes: ENGINE: 2.3L ECOBOOST (STD) 4 Cylinder Engine Gasoline Fuel Turbocharged MAGNETIC METALLIC TRANSMISSION: 6-SPEED MANUAL 6-Speed M/T M/T REVERSE SENSING SYSTEM Rear Parking Aid ECOBOOST PERFORMANCE PACKAGE Tires - Front Performance Locking/Limited Slip Differential Aluminum Wheels Tires - Rear Performance *Note - For third party subscriptions or services, please contact the dealer for more information.* Drive home in your new pre-owned vehicle with the knowledge you're fully backed by the CARFAX Buyback Guarantee. This 2016 Ford Mustang has great acceleration and wonderful styling without sacrificing exceptional fuel economy. Exceptional in every sense of the word, this incredibly low mileage vehicle is one of a kind. Fast and exciting, this Ford Mustang EcoBoost is a true testament to the pursuit of automotive distinction by Ford. Once you're behind the wheel of this incredible machine, you will not think twice about purchasing this vehicle. More information about the 2016 Ford Mustang: The 2016 Mustang may still have one of the most recognizable names in the automotive world, but with its current design, it's far more than just a pretty face and a familiar name. It represents one of the best value propositions for buyers who just want the fastest car for their money. There is no longer a slow Mustang and a fast Mustang; there are just fast and even faster versions. The Mustang starts at just over $24,000, a price that undercuts most of its less >",
    "vehicleIdentificationNumber": "1FA6P8TH3G5220791",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "17786"
    },
    "color": "Magnetic Metallic",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "Manual",
    "vehicleEngine": "4-Cylinder Turbo",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="11" data-engine="6-Cylinder" data-is-spotlight="False" data-listing-id="488212417" data-listing-type="" data-manufacturer="Ford" data-owner-id="71452495">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=71452495&v=488212417&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_14" href="/cars-for-sale/488212417/?totalresults=1000&index=11&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/488212417/?totalresults=1000&index=11&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/27ae1aa7dfc54b45a2d285b4e05ee9e5.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=71452495&v=488212417&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=488212417&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=11" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $20,500
        </span>
<span class="badge badge-one js-new-or-reduced-badge" data-is-reduced="False">New listing</span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 11,033</p>
<p class="paragraph-two">Exterior: Red</p>
<p class="paragraph-two interior-color">Interior: Black</p>
<p class="paragraph-two dealer-name">Carvana</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/488212417/?totalresults=1000&index=11&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>29 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/488212417/?totalresults=1000&index=11&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: 6-Speed Shiftable Automatic</p>
<p class="paragraph-two">Engine: 6-Cylinder</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=71452495&v=488212417&z=&s=-1" data-birf-log="component" href="/dealers/hartford_ct/carvana/71452495/" rel="nofollow">Carvana</a>
<a class="js-dealer-diff paragraph-two js-dealer-diff-reg" data-birf-cmp="kbb_dif_txt_lnk" data-birf-extra="&c=71452495&v=488212417&z=&s=-1" data-birf-log="component" data-info-url="/cars-for-sale/dealerdifferentiator/dealerdiffinfo/" data-listing-id="488212417" data-url="/cars-for-sale/dealerdifferentiator/?listingid=488212417&page=srp" href="javascript:void(0)">Delivery To Your Door</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/27ae1aa7dfc54b45a2d285b4e05ee9e5.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "20500",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "CARVANA CERTIFIED INCLUDES: 150-POINT INSPECTION -- We put each vehicle through a 150-point inspection so that you can be 100% confident in the quality and safety of your vehicle. This inspection includes everything from tread depth of tires to thickness of brake pads to exterior paint quality to Bluetooth compatibility. -- NO ACCIDENTS -- We do not sell cars that have been in a reported accident or have frame or structural damage. -- PREMIUM DETAIL -- We go the extra mile so that your car is looking as good as new. There are a lot of specifics that we won t list here (we wash, clean, buff, paint, polish, wax, seal), but trust us that when your car arrives, it s going to look sweet. Check out our 4.7* Reviews at https://bit.ly/2JhKXh2 (copy and paste link in your browser)",
    "vehicleIdentificationNumber": "1FA6P8AM5G5219898",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "11033"
    },
    "color": "Red",
    "vehicleInteriorColor": "Black",
    "vehicleTransmission": "6-Speed Shiftable Automatic",
    "vehicleEngine": "6-Cylinder",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="12" data-engine="4-Cylinder Turbo" data-is-spotlight="False" data-listing-id="478800641" data-listing-type="" data-manufacturer="Ford" data-owner-id="572064">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=572064&v=478800641&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_15" href="/cars-for-sale/478800641/?totalresults=1000&index=12&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/478800641/?totalresults=1000&index=12&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/eff2c9fbbabd4778a07725313e2cb720.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=572064&v=478800641&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=478800641&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=12" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $20,852
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 16,999</p>
<p class="paragraph-two">Exterior: Red</p>
<p class="paragraph-two interior-color">Interior: Black</p>
<p class="paragraph-two dealer-name">South Coast Toyota</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/478800641/?totalresults=1000&index=12&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>27 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/478800641/?totalresults=1000&index=12&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: Automatic</p>
<p class="paragraph-two">Engine: 4-Cylinder Turbo</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=572064&v=478800641&z=&s=-1" data-birf-log="component" href="/dealers/costa-mesa_ca/south-coast-toyota/572064/" rel="nofollow">South Coast Toyota</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/eff2c9fbbabd4778a07725313e2cb720.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "20852",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "CARFAX One-Owner. Clean CARFAX. Red 2016 Ford Mustang EcoBoost RWD 6-Speed Automatic with Select-Shift EcoBoost 2.3L I4 GTDi DOHC Turbocharged VCT<br><br>Recent Arrival! 32/21 Highway/City MPG<br><br>Awards:<br>  * 2016 KBB.com Brand Image Awards<br>Stop here and buy today!!!<br><br>Reviews:<br><br>  * From a turbocharged four-cylinder to a roaring V8, there are several appealing engine options; sharp and grippy handling when going around turns; lots of interior upgrades give it a classy/high-tech vibe. Source: Edmunds",
    "vehicleIdentificationNumber": "1FA6P8TH2G5237842",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "16999"
    },
    "color": "Red",
    "vehicleInteriorColor": "Black",
    "vehicleTransmission": "Automatic",
    "vehicleEngine": "4-Cylinder Turbo",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="13" data-engine="4-Cylinder Turbo" data-is-spotlight="False" data-listing-id="480151934" data-listing-type="" data-manufacturer="Ford" data-owner-id="65702015">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=65702015&v=480151934&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_16" href="/cars-for-sale/480151934/?totalresults=1000&index=13&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/480151934/?totalresults=1000&index=13&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/fb970cbbe3dc4224a833e240b96ba8d1.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=65702015&v=480151934&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=480151934&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=13" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $20,940
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 9,911</p>
<p class="paragraph-two">Exterior: Black</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">Don Franklin Bardstown</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/480151934/?totalresults=1000&index=13&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>22 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/480151934/?totalresults=1000&index=13&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: 6-Speed Manual</p>
<p class="paragraph-two">Engine: 4-Cylinder Turbo</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=65702015&v=480151934&z=&s=-1" data-birf-log="component" href="/dealers/bardstown_ky/don-franklin-bardstown/65702015/" rel="nofollow">Don Franklin Bardstown</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/fb970cbbe3dc4224a833e240b96ba8d1.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "20940",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "CARFAX One-Owner. Freshly Detailed, Ready for immediate delivery. Odometer is 8969 miles below market average! 31/22 Highway/City MPG Priced below KBB Fair Purchase Price! Clean CARFAX. Black 2016 Ford Mustang RWD 6-Speed Manual EcoBoost 2.3L I4 GTDi DOHC Turbocharged VCT<br>Come visit Franklin Family Chevrolet Buick today for a customer experience you'll never forget. We are a premier Chevrolet dealership with all the latest Chevy & Buick models. Our no-pressure internet sales professional will work with you to find the car or truck that best fits your needs - whether you're shopping from home or at our dealership.",
    "vehicleIdentificationNumber": "1FA6P8THXG5302498",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "9911"
    },
    "color": "Black",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "6-Speed Manual",
    "vehicleEngine": "4-Cylinder Turbo",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="14" data-engine="6-Cylinder" data-is-spotlight="False" data-listing-id="486731188" data-listing-type="" data-manufacturer="Ford" data-owner-id="68803423">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=68803423&v=486731188&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_17" href="/cars-for-sale/486731188/?totalresults=1000&index=14&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/486731188/?totalresults=1000&index=14&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/2c7c465d3b244f7f94a16e11a0a14cb4.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=68803423&v=486731188&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=486731188&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=14" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $21,488
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 6,038</p>
<p class="paragraph-two">Exterior: Red</p>
<p class="paragraph-two interior-color">Interior: Black</p>
<p class="paragraph-two dealer-name">Gerry Wood KIA</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/486731188/?totalresults=1000&index=14&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>44 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/486731188/?totalresults=1000&index=14&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: 6-Speed Shiftable Automatic</p>
<p class="paragraph-two">Engine: 6-Cylinder</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=68803423&v=486731188&z=&s=-1" data-birf-log="component" href="/dealers/salisbury_nc/gerry-wood-kia/68803423/" rel="nofollow">Gerry Wood KIA</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/2c7c465d3b244f7f94a16e11a0a14cb4.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "21488",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "Our Kia Dealership just traded for this Clean Carfax 1 Owner 2016 Ford Mustang Convertible. Let the Top Back and enjoy th Summer Sun in this Classic Icon with only 6K miles.Ever had a desire for a sporty American Convertible ? Now is an excellent time to check out the 2016 Ford Mustang. This newest Mustang is civilized and packed with modern tech, but it still holds on to all the trademark swagger and performance that has defined it for 50 years.The Mustang V6 comes with 17-inch alloy wheels, automatic xenon headlights, LED taillights with sequential turn signals, a limited-slip rear differential, keyless ignition and entry, cruise control, air-conditioning, manual front seats with driver-side height adjustment, a tilt-and-telescoping leather-wrapped steering wheel, an auto-dimming rearview mirror, a rearview camera, the Sync voice control system, Bluetooth, a 4.2-inch central display screen, MyKey parental controls (including a speed limiter, a volume limiter and geofencing), Track Apps performance telemetry and a six-speaker sound system with a CD player and dual USB ports.<br>Gerry Wood Kia in Salisbury, NC offers only the best quality used vehicles all at below market pricing. We encourage you to compare our prices, and we can provide a full market comparison analysis to help you with your purchase decision. We have many easy and flexible finance options to help fit your budget. This Ford Mustang is clean inside and out, in perfect working order, and is easy to show as no excuses will have to ever be made for its condition. As a bonus, at no charge you'll receive at a LIFETIME POWERTRAIN WARRANTY; you are covered against costly repairs for engine, transmission and drive axle failures for an unlimited time and unlimited mileage. The taxes, fluids and gaskets for those repairs are even paid for! This is Nationwide coverage, for total peace of mind!<br><br>Compare before you buy, other dealers simply do not offer as high of a quality of an used car like Gerr>",
    "vehicleIdentificationNumber": "1FA6P8AMXG5316448",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "6038"
    },
    "color": "Red",
    "vehicleInteriorColor": "Black",
    "vehicleTransmission": "6-Speed Shiftable Automatic",
    "vehicleEngine": "6-Cylinder",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="15" data-engine="4-Cylinder Turbo" data-is-spotlight="False" data-listing-id="486887885" data-listing-type="" data-manufacturer="Ford" data-owner-id="82444">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=82444&v=486887885&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_18" href="/cars-for-sale/486887885/?totalresults=1000&index=15&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/486887885/?totalresults=1000&index=15&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/f7d66dd4e27e4fbab1bc52fbd20ef99e.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=82444&v=486887885&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=486887885&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=15" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $21,499
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 17,885</p>
<p class="paragraph-two">Exterior: Race Red</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">Greenway Ford</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/486887885/?totalresults=1000&index=15&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>29 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/486887885/?totalresults=1000&index=15&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: Automatic</p>
<p class="paragraph-two">Engine: 4-Cylinder Turbo</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=82444&v=486887885&z=&s=-1" data-birf-log="component" href="/dealers/orlando_fl/greenway-ford/82444/" rel="nofollow">Greenway Ford</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/f7d66dd4e27e4fbab1bc52fbd20ef99e.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "21499",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "Recent Arrival! 2D Coupe, RWD, **Clean Carfax - One Owner**, **Rear View Camera**, Cloth Sport Bucket Seats w/Pony Logo, Electronic Stability Control, Interior & Wheel Package, Remote keyless entry, Wheels: 19" x 8.5" Low Gloss Black-Ptd/Machined.<br><br>CALL TO CHECK ON AVAILABILITY AND ADDITIONAL OPTIONS.<br>Awards:<br>* 2016 KBB.com Brand Image Awards Will Buy Your Car even if you Don't Buy Ours! Please check out Greenwayford.com for more details.",
    "vehicleIdentificationNumber": "1FA6P8TH9G5251558",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "17885"
    },
    "color": "Race Red",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "Automatic",
    "vehicleEngine": "4-Cylinder Turbo",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="16" data-engine="4-Cylinder Turbo" data-is-spotlight="False" data-listing-id="484004565" data-listing-type="" data-manufacturer="Ford" data-owner-id="44219134">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=44219134&v=484004565&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_19" href="/cars-for-sale/484004565/?totalresults=1000&index=16&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Premium">
      Used 2016 Ford Mustang Premium
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/484004565/?totalresults=1000&index=16&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Premium" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/45c125894ef9476dac334ec954124a2f.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=44219134&v=484004565&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=484004565&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=16" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $21,699
        </span>
<span class="badge badge-two js-new-or-reduced-badge" data-is-reduced="True">Reduced</span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 16,756</p>
<p class="paragraph-two">Exterior: Deep Impact Blue Metallic</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">AutoNation Ford Bellevue</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/484004565/?totalresults=1000&index=16&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>23 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/484004565/?totalresults=1000&index=16&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: Automatic</p>
<p class="paragraph-two">Engine: 4-Cylinder Turbo</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=44219134&v=484004565&z=&s=-1" data-birf-log="component" href="/dealers/bellevue_wa/autonation-ford-bellevue/44219134/" rel="nofollow">AutoNation Ford Bellevue</a>
<a class="js-dealer-diff paragraph-two js-dealer-diff-reg" data-birf-cmp="kbb_dif_txt_lnk" data-birf-extra="&c=44219134&v=484004565&z=&s=-1" data-birf-log="component" data-info-url="/cars-for-sale/dealerdifferentiator/dealerdiffinfo/" data-listing-id="484004565" data-url="/cars-for-sale/dealerdifferentiator/?listingid=484004565&page=srp" href="javascript:void(0)">Shop Now</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Premium",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/45c125894ef9476dac334ec954124a2f.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "21699",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "TRANSMISSION: 6-SPEED SELECTSHIFT AUTOMATIC,Leather Seats,REVERSE SENSING SYSTEM,Keyless Start,Bluetooth Connection,Cooled Front Seat(s),DEEP IMPACT BLUE METALLIC,EBONY; LEATHER BUCKET SEATS,ENGINE: 2.3L ECOBOOST,SPOILER DELETE<br><br>This vehicle includes a Money-Back Guarantee* and passed our precise inspection process. Best of all the price you see is the price you pay. No haggling. No back and forth. No pressure. And this price is so good it is guaranteed. This 2016 Ford Mustang EcoBoost is proudly offered by AutoNation Ford Bellevue This Ford includes: ENGINE: 2.3L ECOBOOST (STD) 4 Cylinder Engine Gasoline Fuel Turbocharged *Note - For third party subscriptions or services, please contact the dealer for more information.* Drive home in your new pre-owned vehicle with the knowledge you're fully backed by the CARFAX Buyback Guarantee. Enjoy a higher level of satisfaction with a CARFAX one-owner vehicle. Save money at the pump with this fuel-sipping Ford Mustang. The incredibly low mileage and painstaking upkeep on this Ford Mustang makes it a once-in-a-lifetime deal that won't last long! Call us today to reserve your test drive! This Ford Mustang EcoBoost is in great condition both inside and out. No abnormal wear and tear. Intricately stitched leather and ergonomic design seats are among the details in which test drivers say that Ford Mustang is in a league of its own More information about the 2016 Ford Mustang: The 2016 Mustang may still have one of the most recognizable names in the automotive world, but with its current design, it's far more than just a pretty face and a familiar name. It represents one of the best value propositions for buyers who just want the fastest car for their money. There is no longer a slow Mustang and a fast Mustang; there are just fast and even faster versions. The Mustang starts at just over $24,000, a price that undercuts most of its less powerful rivals, such as the Subaru BRZ. Even when optioned out beyond the $40,000 mar>",
    "vehicleIdentificationNumber": "1FA6P8TH5G5269300",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "16756"
    },
    "color": "Deep Impact Blue Metallic",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "Automatic",
    "vehicleEngine": "4-Cylinder Turbo",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="17" data-engine="4-Cylinder Turbo" data-is-spotlight="False" data-listing-id="487183364" data-listing-type="" data-manufacturer="Ford" data-owner-id="69854097">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=69854097&v=487183364&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_20" href="/cars-for-sale/487183364/?totalresults=1000&index=17&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/487183364/?totalresults=1000&index=17&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/befa4d84ea5e412e849264131ea946e6.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=69854097&v=487183364&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=487183364&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=17" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $21,700
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 15,693</p>
<p class="paragraph-two">Exterior: Black</p>
<p class="paragraph-two interior-color">Interior: Black</p>
<p class="paragraph-two dealer-name">Carvana</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/487183364/?totalresults=1000&index=17&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>29 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/487183364/?totalresults=1000&index=17&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: 6-Speed Manual</p>
<p class="paragraph-two">Engine: 4-Cylinder Turbo</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=69854097&v=487183364&z=&s=-1" data-birf-log="component" href="/dealers/dallas_tx/carvana/69854097/" rel="nofollow">Carvana</a>
<a class="js-dealer-diff paragraph-two js-dealer-diff-reg" data-birf-cmp="kbb_dif_txt_lnk" data-birf-extra="&c=69854097&v=487183364&z=&s=-1" data-birf-log="component" data-info-url="/cars-for-sale/dealerdifferentiator/dealerdiffinfo/" data-listing-id="487183364" data-url="/cars-for-sale/dealerdifferentiator/?listingid=487183364&page=srp" href="javascript:void(0)">Delivery To Your Door</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/befa4d84ea5e412e849264131ea946e6.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "21700",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "CARVANA CERTIFIED INCLUDES: 150-POINT INSPECTION -- We put each vehicle through a 150-point inspection so that you can be 100% confident in the quality and safety of your vehicle. This inspection includes everything from tread depth of tires to thickness of brake pads to exterior paint quality to Bluetooth compatibility. -- NO ACCIDENTS -- We do not sell cars that have been in a reported accident or have frame or structural damage. -- PREMIUM DETAIL -- We go the extra mile so that your car is looking as good as new. There are a lot of specifics that we won t list here (we wash, clean, buff, paint, polish, wax, seal), but trust us that when your car arrives, it s going to look sweet. Check out our 4.7* Reviews at https://bit.ly/2JhKXh2 (copy and paste link in your browser)",
    "vehicleIdentificationNumber": "1FA6P8THXG5211182",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "15693"
    },
    "color": "Black",
    "vehicleInteriorColor": "Black",
    "vehicleTransmission": "6-Speed Manual",
    "vehicleEngine": "4-Cylinder Turbo",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="18" data-engine="4-Cylinder Turbo" data-is-spotlight="False" data-listing-id="487283363" data-listing-type="" data-manufacturer="Ford" data-owner-id="1327985">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=1327985&v=487283363&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_21" href="/cars-for-sale/487283363/?totalresults=1000&index=18&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/487283363/?totalresults=1000&index=18&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/a4105a28edd649488583a8e25abd70e8.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=1327985&v=487283363&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=487283363&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=18" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $21,790
        </span>
</div>
<div class="monthly-pricing-info">
<a class="monthly-pricing-link js-pricing-link" data-index="18" data-type="Finance" href="/cars-for-sale/487283363/?totalresults=1000&index=18&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<span class="paragraph-three">Est. Finance</span>
<strong class="title-three">$332</strong>
<span class="paragraph-three">/mo.</span>
</a>
<i class="icon-info-circle blue-icon hidden-print js-dr-disclaimer"></i>
<div class="js-disclaimer-content hide">
<h3 class="title-three">Estimated monthly payment based on:</h3>
<ul>
<li>5.83 % APR</li>
<li>$2,179 down</li>
<li>72 Months</li>
<li>For customers with Good credit</li>
</ul>
<p>Estimated payment based on 5.83% APR for 72 months with $2,179 down for well qualified buyers. Terms may vary.</p>
</div>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 18,684</p>
<p class="paragraph-two">Exterior: Silver</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">David Stanley Chevrolet of Oklahoma City</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/487283363/?totalresults=1000&index=18&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>30 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/487283363/?totalresults=1000&index=18&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Engine: 4-Cylinder Turbo</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=1327985&v=487283363&z=&s=-1" data-birf-log="component" href="/dealers/oklahoma-city_ok/david-stanley-chevrolet-of-oklahoma-city/1327985/" rel="nofollow">David Stanley Chevrolet of Oklahoma City</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/a4105a28edd649488583a8e25abd70e8.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "21790",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "ABS brakes, Compass, Electronic Stability Control, Emergency communication system, Illuminated entry, Low tire pressure warning, Remote keyless entry, Traction control.<br><br>Recent Arrival!<br>Priced below KBB Fair Purchase Price!<br>Odometer is 7104 miles below market average!<br>CARFAX One-Owner. Clean CARFAX.<br>2016 Ford Mustang EcoBoost 2.3L I4 GTDi DOHC Turbocharged VCT RWD Silver<br>Advertised Sale price may not reflect all added equipment. Please contact dealer for final sale price.",
    "vehicleIdentificationNumber": "1FA6P8TH7G5273073",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "18684"
    },
    "color": "Silver",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "",
    "vehicleEngine": "4-Cylinder Turbo",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="19" data-engine="4-Cylinder Turbo" data-is-spotlight="False" data-listing-id="478314972" data-listing-type="" data-manufacturer="Ford" data-owner-id="73322">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=73322&v=478314972&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_22" href="/cars-for-sale/478314972/?totalresults=1000&index=19&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/478314972/?totalresults=1000&index=19&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/88765fa740b14d7ca2a9cd5b6f19a424.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=73322&v=478314972&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=478314972&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=19" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $21,888
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 19,483</p>
<p class="paragraph-two">Exterior: Blue</p>
<p class="paragraph-two interior-color">Interior: Ceramic</p>
<p class="paragraph-two dealer-name">Allan Vigil Ford of Fayetteville</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/478314972/?totalresults=1000&index=19&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>29 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/478314972/?totalresults=1000&index=19&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: Automatic</p>
<p class="paragraph-two">Engine: 4-Cylinder Turbo</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=73322&v=478314972&z=&s=-1" data-birf-log="component" href="/dealers/fayetteville_ga/allan-vigil-ford-of-fayetteville/73322/" rel="nofollow">Allan Vigil Ford of Fayetteville</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/88765fa740b14d7ca2a9cd5b6f19a424.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "21888",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "Blue 2016 Ford Mustang EcoBoost Premium RWD 6-Speed Manual EcoBoost 2.3L I4 GTDi DOHC Turbocharged VCT ABS brakes, Compass, Electronic Stability Control, Emergency communication system, Front dual zone A/C, Heated door mirrors, Heated front seats, Illuminated entry, Low tire pressure warning, Remote keyless entry, Traction control.<br><br>Odometer is 6546 miles below market average! 31/22 Highway/City MPG<br><br>Awards:<br>* 2016 KBB.com Brand Image Awards<br><br><br>Reviews:<br><br>* From a turbocharged four-cylinder to a roaring V8, there are several appealing engine options; sharp and grippy handling when going around turns; lots of interior upgrades give it a classy/high-tech vibe. Source: Edmunds",
    "vehicleIdentificationNumber": "1FA6P8TH2G5240353",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "19483"
    },
    "color": "Blue",
    "vehicleInteriorColor": "Ceramic",
    "vehicleTransmission": "Automatic",
    "vehicleEngine": "4-Cylinder Turbo",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="20" data-engine="4-Cylinder Turbo" data-is-spotlight="False" data-listing-id="485872932" data-listing-type="" data-manufacturer="Ford" data-owner-id="13223880">
<div class="title-three vehicle-name icon-box-checkmark">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=13223880&v=485872932&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_23" href="/cars-for-sale/485872932/?totalresults=1000&index=20&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Certified 2016 Ford Mustang Coupe">
      Certified 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/485872932/?totalresults=1000&index=20&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Certified 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/2859e0be610340f8923d663343eb51a7.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=13223880&v=485872932&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=485872932&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=20" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $21,995
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 17,326</p>
<p class="paragraph-two">Exterior: Silver</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">Lithia Ford Lincoln of Boise</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/485872932/?totalresults=1000&index=20&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>24 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/485872932/?totalresults=1000&index=20&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>2 videos</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: Automatic</p>
<p class="paragraph-two">Engine: 4-Cylinder Turbo</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
<a class="cpo-badge js-cpo-badge" data-cpo-sponsorship-name="Ford CPO Sponsorship" data-modal="#CPObadgeDetail">
<img class="image" src="//file.kbb.com/kbb/images/cpo/FordCPO_logo_95x30.png"/>
</a>
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=13223880&v=485872932&z=&s=-1" data-birf-log="component" href="/dealers/boise_id/lithia-ford-lincoln-of-boise/13223880/" rel="nofollow">Lithia Ford Lincoln of Boise</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Certified 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/2859e0be610340f8923d663343eb51a7.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "21995",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "CARFAX 1-Owner, LOW MILES - 17,326! FUEL EFFICIENT 31 MPG Hwy/22 MPG City!, PRICED TO MOVE $1,300 below Kelley Blue Book! iPod/MP3 Input, CD Player, Onboard Communications System, Back-Up Camera, INTERIOR & WHEEL PACKAGE READ MORE!<br><br>KEY FEATURES INCLUDE<br>Back-Up Camera, Turbocharged, iPod/MP3 Input, CD Player, Onboard Communications System Rear Spoiler, MP3 Player, Keyless Entry, Steering Wheel Controls, Electronic Stability Control.<br><br>OPTION PACKAGES<br>TRANSMISSION: 6-SPEED SELECTSHIFT AUTOMATIC paddle shifters, Remote Start System, Leather-Wrapped Shift Knob, 3.15 Limited Slip Axle Ratio, INTERIOR & WHEEL PACKAGE Tires: 19, Premium Carpeted Floor Mats w/Pony Logo, Wheels: 19 x 8.5 Low Gloss Black-Ptd/Machined Aluminum. 2016 Ford Mustang with Ingot Silver Metallic exterior and Ebony interior features a 4 Cylinder Engine with 310 HP at 5500 RPM*.<br><br>EXPERTS REPORT<br>The 2016 Ford Mustang is a well-behaved muscle car that loves the open road. Tire and wind noise are modest, making for a fairly peaceful cabin at highway speeds. -Edmunds.com. Great Gas Mileage: 31 MPG Hwy.<br><br>AFFORDABLE TO OWN<br>This 2016 Ford Mustang is priced $1,300 below Kelley Blue Book<br><br>BUY WITH CONFIDENCE<br>CARFAX 1-Owner AutoCheck One Owner<br><br>OUR OFFERINGS<br>Lithia Lincoln of Boise is Boise's premier Lincoln dealer. Customers purchase from Lithia Lincoln of Boise for our outstanding customer service, ease of doing business & our low prices! Check out our site for our expansive selection of vehicles with multiple photos.<br><br>Price does not include taxes, title, license and $299 Dealer Doc Fee. Price contains all applicable dealer incentives and non-limited factory offers. You may qualify for additional factory offers; see dealer for details.<br>Some of our Pre-Owned vehicles may be subject to unrepaired safety recalls. Check for a vehicle's unrepaired recalls by VIN at",
    "vehicleIdentificationNumber": "1FA6P8TH2G5303404",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "17326"
    },
    "color": "Silver",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "Automatic",
    "vehicleEngine": "4-Cylinder Turbo",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="21" data-engine="4-Cylinder Turbo" data-is-spotlight="False" data-listing-id="483633068" data-listing-type="" data-manufacturer="Ford" data-owner-id="69854097">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=69854097&v=483633068&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_24" href="/cars-for-sale/483633068/?totalresults=1000&index=21&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/483633068/?totalresults=1000&index=21&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/4ef6bb79552f4fd8a4bd8c33830424df.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=69854097&v=483633068&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=483633068&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=21" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $22,000
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 10,975</p>
<p class="paragraph-two">Exterior: Red</p>
<p class="paragraph-two interior-color">Interior: Black</p>
<p class="paragraph-two dealer-name">Carvana</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/483633068/?totalresults=1000&index=21&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>29 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/483633068/?totalresults=1000&index=21&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: 6-Speed Manual</p>
<p class="paragraph-two">Engine: 4-Cylinder Turbo</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=69854097&v=483633068&z=&s=-1" data-birf-log="component" href="/dealers/dallas_tx/carvana/69854097/" rel="nofollow">Carvana</a>
<a class="js-dealer-diff paragraph-two js-dealer-diff-reg" data-birf-cmp="kbb_dif_txt_lnk" data-birf-extra="&c=69854097&v=483633068&z=&s=-1" data-birf-log="component" data-info-url="/cars-for-sale/dealerdifferentiator/dealerdiffinfo/" data-listing-id="483633068" data-url="/cars-for-sale/dealerdifferentiator/?listingid=483633068&page=srp" href="javascript:void(0)">Delivery To Your Door</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/4ef6bb79552f4fd8a4bd8c33830424df.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "22000",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "CARVANA CERTIFIED INCLUDES: 150-POINT INSPECTION -- We put each vehicle through a 150-point inspection so that you can be 100% confident in the quality and safety of your vehicle. This inspection includes everything from tread depth of tires to thickness of brake pads to exterior paint quality to Bluetooth compatibility. -- NO ACCIDENTS -- We do not sell cars that have been in a reported accident or have frame or structural damage. -- PREMIUM DETAIL -- We go the extra mile so that your car is looking as good as new. There are a lot of specifics that we won t list here (we wash, clean, buff, paint, polish, wax, seal), but trust us that when your car arrives, it s going to look sweet. Check out our 4.7* Reviews at https://bit.ly/2JhKXh2 (copy and paste link in your browser)",
    "vehicleIdentificationNumber": "1FA6P8TH4G5325744",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "10975"
    },
    "color": "Red",
    "vehicleInteriorColor": "Black",
    "vehicleTransmission": "6-Speed Manual",
    "vehicleEngine": "4-Cylinder Turbo",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="22" data-engine="4-Cylinder Turbo" data-is-spotlight="False" data-listing-id="483987002" data-listing-type="" data-manufacturer="Ford" data-owner-id="67184055">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=67184055&v=483987002&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_25" href="/cars-for-sale/483987002/?totalresults=1000&index=22&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/483987002/?totalresults=1000&index=22&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/d9173d4e536d4ffbaf9871d3867a9397.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=67184055&v=483987002&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=483987002&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=22" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $22,400
        </span>
<span class="badge badge-two js-new-or-reduced-badge" data-is-reduced="True">Reduced</span>
</div>
<div class="monthly-pricing-info">
<a class="monthly-pricing-link js-pricing-link" data-index="22" data-type="Finance" href="/cars-for-sale/483987002/?totalresults=1000&index=22&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<span class="paragraph-three">Est. Finance</span>
<strong class="title-three">$265</strong>
<span class="paragraph-three">/mo.</span>
</a>
<i class="icon-info-circle blue-icon hidden-print js-dr-disclaimer"></i>
<div class="js-disclaimer-content hide">
<h3 class="title-three">Estimated monthly payment based on:</h3>
<ul>
<li>2.97 % APR</li>
<li>$5,600 down</li>
<li>72 Months</li>
<li>For customers with Excellent credit</li>
</ul>
<p>Estimated payment based on 2.97% APR for 72 months with $5,600 down for well qualified buyers. Terms may vary.</p>
</div>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 14,495</p>
<p class="paragraph-two">Exterior: Orange</p>
<p class="paragraph-two interior-color">Interior: Black</p>
<p class="paragraph-two dealer-name">Klein Honda in Everett</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/483987002/?totalresults=1000&index=22&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>27 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/483987002/?totalresults=1000&index=22&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: Automatic</p>
<p class="paragraph-two">Engine: 4-Cylinder Turbo</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=67184055&v=483987002&z=&s=-1" data-birf-log="component" href="/dealers/everett_wa/klein-honda-in-everett/67184055/" rel="nofollow">Klein Honda in Everett</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/d9173d4e536d4ffbaf9871d3867a9397.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "22400",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "EcoBoost 2.3L I4 GTDi DOHC Turbocharged VCT, 6-Speed Automatic with Select-Shift, Orange. **NEVER ENDING LIFETIME WARRANTY INCLUDED** Odometer is 1808 miles below market average! 32/21 Highway/City MPG Awards:<br>* 2016 KBB.com Brand Image Awards ATTENTION SHOPPERS, please submit an ePrice quote to receive KLEIN VOLUME PRICING and receive any special financing options and offers available on this vehicle! Low APR Long Term Financing is Available. Enjoy The Klein Honda Pre-Owned X FACTOR when buying from Klein! Lifetime Warranty, Lifetime Oil Changes, Lifetime Towing Coverage, 7-Day Vehicle Exchange, Non Commission Sales Staff, 182 Point Inspection, and More Money for your Trade is on all Certified and Select pre-owned vehicles. The Never Ending Lifetime Warranty is good anywhere in the US and is for Unlimited Miles for as long as you own the vehicle. Plus service & repair at any licensed service shop. This auto dealership prides itself on providing exceptional value and a great customer experience. Our commitment is your COMPLETE OWNERSHIP SATISFACTION! We look forward to serving you. Enjoy the Klein Honda Pre-Owned X FACTOR!",
    "vehicleIdentificationNumber": "1FA6P8TH0G5304129",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "14495"
    },
    "color": "Orange",
    "vehicleInteriorColor": "Black",
    "vehicleTransmission": "Automatic",
    "vehicleEngine": "4-Cylinder Turbo",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="23" data-engine="4-Cylinder Turbo" data-is-spotlight="False" data-listing-id="486510554" data-listing-type="" data-manufacturer="Ford" data-owner-id="71303">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=71303&v=486510554&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_26" href="/cars-for-sale/486510554/?totalresults=1000&index=23&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Premium">
      Used 2016 Ford Mustang Premium
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/486510554/?totalresults=1000&index=23&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Premium" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/1aa0e7da895f4065af01cc6700f675aa.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=71303&v=486510554&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=486510554&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=23" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $22,779
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 18,936</p>
<p class="paragraph-two">Exterior: Oxford White - White</p>
<p class="paragraph-two interior-color">Interior: Ebony Leather</p>
<p class="paragraph-two dealer-name">Dave Sinclair Ford</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/486510554/?totalresults=1000&index=23&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>22 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/486510554/?totalresults=1000&index=23&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: Automatic</p>
<p class="paragraph-two">Engine: 4-Cylinder Turbo</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
<a class="autocheck-badge" data-is-free="True" data-one-owner="True" href="/cars-for-sale/486510554/?totalresults=1000&index=23&tab=vehiclehistory&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<img alt="AutoCheck" class="image" src="//file.kbb.com/kbb/images/autocheck/auto-check-one-owner.png">
Vehicle History
  </img></a>
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=71303&v=486510554&z=&s=-1" data-birf-log="component" href="/dealers/st-louis_mo/dave-sinclair-ford/71303/" rel="nofollow">Dave Sinclair Ford</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Premium",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/1aa0e7da895f4065af01cc6700f675aa.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "22779",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "Presented in Oxford White, our One Owner, Accident Free, 2016 Ford Mustang EcoBoost Premium Coupe is an ideal blend of power, performance, and efficiency! Powered by a TurboCharged 2.3 Liter 4 Cylinder that offers 305hp while tethered to a responsive 6 Speed Automatic transmission. This Rear Drive combination scores near 31mpg on the open road and offers a brilliant drive that is accented by a bold grille, fog lamps, a rear spoiler, signature LED taillights and unique black alloy wheels.<br><br>It may be retro inspired, but our Mustang is a thoroughly modern car! Just look at our pictures and plant yourself behind the wheel; comfortable in supple leather heated and cooled seats. Designed to put you in command, the cockpit-inspired interior welcomes you with keyless ignition and entry, Sync voice control with a prominent touchscreen, and a rockin' sound system with a CD player, satellite radio, and two USB ports. You'll be more than impressed with handsome aluminum and chrome dash trim and active noise cancellation that makes every ride feel first class.<br><br>Features like electronic stability control, traction control, ABS, side airbags, a rearview camera, and integrated blind-spot mirrors keep you safe while driving this pony. The stellar Blue Oval team has meticulously designed this automotive gem that will make you smile the minute you fire up the engine. Almost everyone in America has a Mustang story. Start your chapter today or relive your youth! Print this page and call us Now... We Know You Will Enjoy Your Test Drive Towards Ownership! "Have questions about this vehicle? Text "YES to (314) 269-1587",
    "vehicleIdentificationNumber": "1FA6P8THXG5230217",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "18936"
    },
    "color": "Oxford White - White",
    "vehicleInteriorColor": "Ebony Leather",
    "vehicleTransmission": "Automatic",
    "vehicleEngine": "4-Cylinder Turbo",
    "bodyType": "Coupe"
  }
</script>
</div>, <div class="listing js-used-listing" data-current-index="24" data-engine="4-Cylinder Turbo" data-is-spotlight="False" data-listing-id="487167257" data-listing-type="" data-manufacturer="Ford" data-owner-id="1187760">
<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=1187760&v=487167257&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_27" href="/cars-for-sale/487167257/?totalresults=1000&index=24&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>
<div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/487167257/?totalresults=1000&index=24&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/d0991e380de04c88b42f164a11cb121c.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=1187760&v=487167257&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=487167257&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=24" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $22,869
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 12,646</p>
<p class="paragraph-two">Exterior: Oxford White</p>
<p class="paragraph-two interior-color">Interior: Dark Ceramic</p>
<p class="paragraph-two dealer-name">AutoNation Chrysler Dodge Jeep Ram FIAT North Phoenix</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/487167257/?totalresults=1000&index=24&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>24 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/487167257/?totalresults=1000&index=24&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>2 videos</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: Automatic</p>
<p class="paragraph-two">Engine: 4-Cylinder Turbo</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=1187760&v=487167257&z=&s=-1" data-birf-log="component" href="/dealers/phoenix_az/autonation-chrysler-dodge-jeep-ram-fiat-north-phoenix/1187760/" rel="nofollow">AutoNation Chrysler Dodge Jeep Ram FIAT North Phoenix</a>
<a class="js-dealer-diff paragraph-two js-dealer-diff-reg" data-birf-cmp="kbb_dif_txt_lnk" data-birf-extra="&c=1187760&v=487167257&z=&s=-1" data-birf-log="component" data-info-url="/cars-for-sale/dealerdifferentiator/dealerdiffinfo/" data-listing-id="487167257" data-url="/cars-for-sale/dealerdifferentiator/?listingid=487167257&page=srp" href="javascript:void(0)">Shop Now</a>
</div>
</div>
<script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/d0991e380de04c88b42f164a11cb121c.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "22869",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "TRANSMISSION: 6-SPEED SELECTSHIFT AUTOMATIC,Keyless Start,Bluetooth Connection,Rear Spoiler,DARK CERAMIC; CLOTH SPORT BUCKET SEATS,ENGINE: 2.3L ECOBOOST,EQUIPMENT GROUP 100A,OXFORD WHITE<br><br>This vehicle includes a Money-Back Guarantee* and passed our precise inspection process. Best of all the price you see is the price you pay. No haggling. No back and forth. No pressure. And this price is so good it is guaranteed. This One Owner Stang is truly a beautiful car! AutoNation 125-point inspected, which includes a 90 day limited Warranty, complete safety inspection, tire rotation, and oil and filter change.90 day, 4000 mile Powertrain Warranty whichever comes first. If applicable, remaining factory limited warranty applies Example of covered items include the following: Engine, Transmission, Transfer Case, Main Shaft, Axle Shafts, Tie Rods, Control Arms, Power Steering Motor, Brake Master Cylinder, Alternator, Starter, AC Compressor, Thermostat, ABS System, Power Seat Motor, Power Window Regulator, Door Lock Actuator, Knock Sensor, Oxygen Sensor, Heater and AC Blower Motor, Radiator, and more. See dealer for additional details. *Money-Back Guarantee is valid for 5 days or 250 miles, whichever comes first. Subject to certain terms and conditions. See store for details. Some restrictions apply.",
    "vehicleIdentificationNumber": "1FA6P8TH7G5274000",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "12646"
    },
    "color": "Oxford White",
    "vehicleInteriorColor": "Dark Ceramic",
    "vehicleTransmission": "Automatic",
    "vehicleEngine": "4-Cylinder Turbo",
    "bodyType": "Coupe"
  }
</script>
</div>]

Before I formally define the function, I'm going to show how to iterate over the "data" list and create variables which will make up the header of the dataset.

We write a for loop which iterates over the data. However, since the "data" list is over 2000 lines of html code patitioned into 27 elements, I will only iterate over the first 5 elements or else my html file for this blog will be thousands of lines of code. An html file that is more than 2000 lines of code is hard to navigate through on my end when editing files in the root directory of my website. You should do this for the entire "data" list though.

'''
# Use this on your script
for item in data:
 print(len(item.contents) # Number of elements in each of the 27 elements
 print(item.contents) # print individual data 
 print('\n') # print a new line to distinguish each "item"
'''
# I used this for the purposes of this blog
for item in data[0:6]: 
  print(len(item.contents) # print number of elements in each of the 5 elements
  print(item.contents) # print individual data 
  print('\n') # print a new line to distinguish each "item"
Number of elements in "item list":  7
['\n', <div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_spv_v_lstg" data-birf-extra="&c=580298&v=487673557&z=&s=-1" data-birf-log="component" data-birf-par="kbb_spv_lstg_usd_1" href="/cars-for-sale/487673557/?totalresults=0&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Shelby GT350 Coupe">
      Used 2016 Ford Mustang Shelby GT350 Coupe
    </a>
</div>, '\n', <div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" data-birf-cmp="kbb_spv_v_dtl" data-birf-extra="&c=580298&v=487673557&z=&s=-1" data-birf-log="component" href="/cars-for-sale/487673557/?totalresults=0&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Shelby GT350 Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/b0c665be809a4569b4399f57c73bb607.jpg" src=""/>
</div>
</a>
<p class="legal-text ">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=580298&v=487673557&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=487673557&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=0&index=0" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $47,995
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 15,749</p>
<p class="paragraph-two">Exterior: Oxford White</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">Germain Cadillac of Easton</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" data-birf-cmp="kbb_spv_v_pht" data-birf-extra="&c=580298&v=487673557&z=&s=-1" data-birf-log="component" href="/cars-for-sale/487673557/?totalresults=0&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>18 photos</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: 6-Speed Manual</p>
<p class="paragraph-two">Engine: 8-Cylinder</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_spv_v_dlr" data-birf-extra="&c=580298&v=487673557&z=&s=-1" data-birf-log="component" href="/dealers/columbus_oh/germain-cadillac-of-easton/580298/" rel="nofollow">Germain Cadillac of Easton</a>
</div>
</div>, '\n', <script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Shelby GT350 Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/b0c665be809a4569b4399f57c73bb607.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "47995",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "FACTORY NAVIGATION WITH BACK UP CAMERA, HEATED AND COOLED SEATS, BLUETOOTH, SPORT EXHAUST SYSTEM, 6 SPEED MANUAL TRANSMISSION, CLEAN CARFAX 1 OWNER ! 2016 Ford Mustang Shelby GT350 in Oxford White with Ebony Cloth.",
    "vehicleIdentificationNumber": "1FA6P8JZ5G5520635",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "15749"
    },
    "color": "Oxford White",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "6-Speed Manual",
    "vehicleEngine": "8-Cylinder",
    "bodyType": "Coupe"
  }
</script>, '\n']


Number of elements in "item list":  7
['\n', <div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_spv_v_lstg" data-birf-extra="&c=100007006&v=484646603&z=&s=-1" data-birf-log="component" data-birf-par="kbb_spv_lstg_usd_2" href="/cars-for-sale/484646603/?totalresults=0&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang GT Premium">
      Used 2016 Ford Mustang GT Premium
    </a>
</div>, '\n', <div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" data-birf-cmp="kbb_spv_v_dtl" data-birf-extra="&c=100007006&v=484646603&z=&s=-1" data-birf-log="component" href="/cars-for-sale/484646603/?totalresults=0&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang GT Premium" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/b6beb9feac9e4ba7a3d71f65372873bc.jpg" src=""/>
</div>
</a>
<p class="legal-text ">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=100007006&v=484646603&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=484646603&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=0&index=0" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $25,784
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 48,701</p>
<p class="paragraph-two">Exterior: Red</p>
<p class="paragraph-two interior-color">Interior: Black</p>
<p class="paragraph-two dealer-name">Philpott Toyota</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" data-birf-cmp="kbb_spv_v_pht" data-birf-extra="&c=100007006&v=484646603&z=&s=-1" data-birf-log="component" href="/cars-for-sale/484646603/?totalresults=0&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>35 photos</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: Automatic</p>
<p class="paragraph-two">Engine: 8-Cylinder</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_spv_v_dlr" data-birf-extra="&c=100007006&v=484646603&z=&s=-1" data-birf-log="component" href="/dealers/port-neches_tx/philpott-toyota/100007006/" rel="nofollow">Philpott Toyota</a>
</div>
</div>, '\n', <script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang GT Premium",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/b6beb9feac9e4ba7a3d71f65372873bc.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "25784",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "This 2016 Ford Mustang GT Premium comes complete with:-Rear-view Camera-Heated/Cooled Front Seats-Leather Interior-Auxiliary Audio Input-Steering Wheel Audio Controls-Bluetooth Connection-Smart Device IntegrationThis is a Clean Carfax vehicle. Our highly trained technicians inspected and re-conditioned this vehicle. Chat, email or call today to schedule your test drive and experience the difference for yourself! Please verify any information in question with Philpott Toyota located at 2229 US-69, Nederland, TX 77627. Call us at 409-853-3800 or 888-957-6526",
    "vehicleIdentificationNumber": "1FA6P8CFXG5275494",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "48701"
    },
    "color": "Red",
    "vehicleInteriorColor": "Black",
    "vehicleTransmission": "Automatic",
    "vehicleEngine": "8-Cylinder",
    "bodyType": "Coupe"
  }
</script>, '\n']


Number of elements in "item list":  7
['\n', <div class="title-three vehicle-name icon-box-checkmark">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=5792247&v=483701760&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_3" href="/cars-for-sale/483701760/?totalresults=1000&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Certified 2016 Ford Mustang Coupe">
      Certified 2016 Ford Mustang Coupe
    </a>
</div>, '\n', <div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/483701760/?totalresults=1000&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Certified 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/893e6c99819b44eab0ae448871fea1db.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=5792247&v=483701760&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=483701760&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=0" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $17,740
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 19,351</p>
<p class="paragraph-two">Exterior: Race Red</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">Al Packer's White Marsh Ford</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/483701760/?totalresults=1000&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>25 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/483701760/?totalresults=1000&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: Manual</p>
<p class="paragraph-two">Engine: 6-Cylinder</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
<a class="cpo-badge js-cpo-badge" data-cpo-sponsorship-name="Ford CPO Sponsorship" data-modal="#CPObadgeDetail">
<img class="image" src="//file.kbb.com/kbb/images/cpo/FordCPO_logo_95x30.png"/>
</a>
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=5792247&v=483701760&z=&s=-1" data-birf-log="component" href="/dealers/baltimore_md/al-packers-white-marsh-ford/5792247/" rel="nofollow">Al Packer's White Marsh Ford</a>
</div>
</div>, '\n', <script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Certified 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/893e6c99819b44eab0ae448871fea1db.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "17740",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "Mustang under 20k miles for under 20k dollars WOWEEE!!!<br><br><br><br>Clean CARFAX.<br><br>All vehicles come with the Al Packer Customer Advantage Plan at no extra charge which includes free Oil Changes, free Car Washes, and up to $1,000 in service savings!<br><br>2016 Ford Mustang V6 V6 RWD Race Red 6-Speed Manual 3.7L V6 Ti-VCT 24V NICE LOCAL TRADE IN, LOW MILEAGE, FORD CERTIFIED CAR. BUY WITH CONFIDENCE.<br><br><br>Awards:<br>* 2016 KBB.com Brand Image Awards",
    "vehicleIdentificationNumber": "1FA6P8AM2G5208129",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "19351"
    },
    "color": "Race Red",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "Manual",
    "vehicleEngine": "6-Cylinder",
    "bodyType": "Coupe"
  }
</script>, '\n']


Number of elements in "item list":  7
['\n', <div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=100012990&v=486338837&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_4" href="/cars-for-sale/486338837/?totalresults=1000&index=1&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>, '\n', <div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/486338837/?totalresults=1000&index=1&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/37bff24b4d92453e87c8ad7b0d14f6cf.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=100012990&v=486338837&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=486338837&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=1" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $18,881
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 19,059</p>
<p class="paragraph-two">Exterior: Shadow Black</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">Randall Reed's Prestige Ford</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/486338837/?totalresults=1000&index=1&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>32 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/486338837/?totalresults=1000&index=1&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: 6-Speed Shiftable Automatic</p>
<p class="paragraph-two">Engine: 6-Cylinder</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=100012990&v=486338837&z=&s=-1" data-birf-log="component" href="/dealers/garland_tx/randall-reeds-prestige-ford/100012990/" rel="nofollow">Randall Reed's Prestige Ford</a>
</div>
</div>, '\n', <script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/37bff24b4d92453e87c8ad7b0d14f6cf.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "18881",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "CARFAX One-Owner. Shadow Black 2016 Ford Mustang V6 RWD 6-Speed Automatic with Select-Shift 3.7L V6 Ti-VCT 24V 2016 Ford Mustang V6 in Shadow Black, 3.7L V6, LOW MILES, SYNC, REAR CAMERA, RWD, COUPE, GREAT CONDITION.<br><br>Recent Arrival! Odometer is 6460 miles below market average!<br><br>Awards:<br>* 2016 KBB.com Brand Image Awards<br><br><br>Reviews:<br><br>* From a turbocharged four-cylinder to a roaring V8, there are several appealing engine options; sharp and grippy handling when going around turns; lots of interior upgrades give it a classy/high-tech vibe. Source: Edmunds",
    "vehicleIdentificationNumber": "1FA6P8AM0G5266692",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "19059"
    },
    "color": "Shadow Black",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "6-Speed Shiftable Automatic",
    "vehicleEngine": "6-Cylinder",
    "bodyType": "Coupe"
  }
</script>, '\n']


Number of elements in "item list":  7
['\n', <div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=1396235&v=483188490&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_5" href="/cars-for-sale/483188490/?totalresults=1000&index=2&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>, '\n', <div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/483188490/?totalresults=1000&index=2&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/38a1ad8abda94da68f7b6446febcb832.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=1396235&v=483188490&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=483188490&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=2" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $19,000
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 7,801</p>
<p class="paragraph-two">Exterior: Oxford White</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">Audi of Stevens Creek</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/483188490/?totalresults=1000&index=2&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>55 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/483188490/?totalresults=1000&index=2&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>2 videos</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Trans.: 6-Speed Automatic</p>
<p class="paragraph-two">Engine: 6-Cylinder</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=1396235&v=483188490&z=&s=-1" data-birf-log="component" href="/dealers/san-jose_ca/audi-of-stevens-creek/1396235/" rel="nofollow">Audi of Stevens Creek</a>
<a class="js-dealer-diff paragraph-two js-dealer-diff-reg" data-birf-cmp="kbb_dif_txt_lnk" data-birf-extra="&c=1396235&v=483188490&z=&s=-1" data-birf-log="component" data-info-url="/cars-for-sale/dealerdifferentiator/dealerdiffinfo/" data-listing-id="483188490" data-url="/cars-for-sale/dealerdifferentiator/?listingid=483188490&page=srp" href="javascript:void(0)">Preferred Purchase - Choose Your Process</a>
</div>
</div>, '\n', <script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/38a1ad8abda94da68f7b6446febcb832.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "19000",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "CARFAX One-Owner. Oxford White 2016 Ford Mustang V6 RWD 6-Speed 3.7L V6 Ti-VCT 24V<br><br>Recent Arrival! Odometer is 19137 miles below market average!<br><br>Awards:<br>  * 2016 KBB.com Brand Image Awards<br><br><br>Reviews:<br><br>  * From a turbocharged four-cylinder to a roaring V8, there are several appealing engine options; sharp and grippy handling when going around turns; lots of interior upgrades give it a classy/high-tech vibe. Source: Edmunds",
    "vehicleIdentificationNumber": "1FA6P8AM2G5336807",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "7801"
    },
    "color": "Oxford White",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "6-Speed Automatic",
    "vehicleEngine": "6-Cylinder",
    "bodyType": "Coupe"
  }
</script>, '\n']


Number of elements in "item list":  7
['\n', <div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_v_lstg_usd" data-birf-extra="&c=71327053&v=486092028&z=&s=-1" data-birf-log="component" data-birf-par="kbb_lstg_usd_6" href="/cars-for-sale/486092028/?totalresults=1000&index=3&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Coupe">
      Used 2016 Ford Mustang Coupe
    </a>
</div>, '\n', <div class="column-wrapper">
<div class="column image">
<a class="js-vehicle-image" href="/cars-for-sale/486092028/?totalresults=1000&index=3&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<div class="image-container">
<img alt="Used 2016 Ford Mustang Coupe" data-src="//atcimages.kbb.com/scaler/152/114/hn/c/611f0a659ccf4a568b00bd44cfab701f.jpg" src=""/>
</div>
</a>
<p class="legal-text invisible">Sponsored</p>
<button class="js-quick-view js-quick-view-button button-six" data-birf-cmp="kbb_qk_vw" data-birf-extra="&c=71327053&v=486092028&z=&s=-1" data-birf-log="component" data-frame-url="/cars-for-sale/details/minivdp/?searchtype=used&atcmake=ford&atcmodel=mustang&listingid=486092028&galleryview=photos&zipcode=&sourcepage=srp&vehicleid=410716&year=2016&distance=75&totalresults=1000&index=3" data-modal="#quickViewModal">Quick View</button>
</div>
<div class="column specs">
<div class="price-info">
<span class="title-four highlight">
          $19,188
        </span>
</div>
<div class="specs-wrapper">
<div class="inner-column">
<div class="text-content">
<p class="paragraph-two">Mileage: 19,754</p>
<p class="paragraph-two">Exterior: Shadow Black</p>
<p class="paragraph-two interior-color">Interior: Ebony</p>
<p class="paragraph-two dealer-name">Napleton Kia of Carmel</p>
</div>
<div class="photos-videos paragraph-two">
<a class="photos link js-quick-view-photos" href="/cars-for-sale/486092028/?totalresults=1000&index=3&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-photos"></i>
<span>35 photos</span>
</a>
<a class="videos link js-quick-view-videos" href="/cars-for-sale/486092028/?totalresults=1000&index=3&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow">
<i class="icon-videos"></i>
<span>1 video</span>
</a>
</div>
</div>
<div class="inner-column specs-right">
<p class="paragraph-two">Engine: 6-Cylinder</p>
<p class="paragraph-two">Doors: Two Door Coupe</p>
</div>
</div>
</div>
<div class="column badging">
</div>
<div class="column dealer">
<a class="paragraph-two js-owner-name dealer-name" data-birf-cmp="kbb_dlr_ov" data-birf-extra="&c=71327053&v=486092028&z=&s=-1" data-birf-log="component" href="/dealers/indianapolis_in/napleton-kia-of-carmel/71327053/" rel="nofollow">Napleton Kia of Carmel</a>
</div>
</div>, '\n', <script type="application/ld+json">
  {
    "@context": "http://schema.org/",
    "@type": "Car",
    "name": "Used 2016 Ford Mustang Coupe",
    "image": "//atcimages.kbb.com/scaler/152/114/hn/c/611f0a659ccf4a568b00bd44cfab701f.jpg",
    "offers": {
      "@type": "Offer",
      "priceCurrency": "USD",
      "price": "19188",
      "itemCondition": "http://schema.org/UsedCondition",
      "availability": "http://schema.org/InStock"
    },
    "description": "Shadow Black 2016 Ford Mustang V6 Clean CarFax History Report, Rear Back-up Camera, Hands-Free Bluetooth, Mustang V6, 2D Coupe, 3.7L V6 Ti-VCT 24V, 6-Speed, RWD, Shadow Black, Ebony w/Cloth Sport Bucket Seats. Every day is a Sale Day at Napleton Kia of Carmel, WHERE THE CUSTOMER COMES FIRST!! Please cal Us at (877)722-1181 you will be glad You did!!! Serving all surrounding cities such as Indianapolis, Carmel, Fishers, Westfield, Kokomo, Cicero, Noblesville, Muncie, Yorktown, Marion, Shelbyville, Anderson, Whitestown, Zionsville, Lafayette, Crawfordsville, Avon, Bloomington, Terre Haute, Evansville, McCordsville, Fortville, Ingalls, Pendleton, Lapel, New Palestine, Greenfield, Greenwood, Danville, Pittsboro, Camby, Plainfield, Franklin, Monroe, Lexington,Ky, Cincinnati,Oh, Columbus,Oh, Louisville,Ky, St. Louis, MO, Awards:<br>* 2016 KBB.com Brand Image Awards",
    "vehicleIdentificationNumber": "1FA6P8AM8G5276662",
    "brand": "Ford",
    "mileageFromOdometer": {
      "@type": "QuantitativeValue",
      "value": "19754"
    },
    "color": "Shadow Black",
    "vehicleInteriorColor": "Ebony",
    "vehicleTransmission": "",
    "vehicleEngine": "6-Cylinder",
    "bodyType": "Coupe"
  }
</script>, '\n']

For every item of the list "data", there's 7 elements in their respective "contents" list. But, 4 of the 7 elements are redundant newline characters '\n'. Notice how the model of each 2016 mustang is in the second element of the "contents" list which is:

<div class="title-three vehicle-name ">
<a class="js-vehicle-name" data-birf-cmp="kbb_spv_v_lstg" data-birf-extra="&c=580298&v=487673557&z=&s=-1" data-birf-log="component" data-birf-par="kbb_spv_lstg_usd_1" href="/cars-for-sale/487673557/?totalresults=0&index=0&vehicleid=410716&searchtype=used&atcmake=ford&atcmodel=mustang&zipcode=&year=2016&distance=75" rel="nofollow" title="Used 2016 Ford Mustang Shelby GT350 Coupe">
      Used 2016 Ford Mustang Shelby GT350 Coupe
    </a>
</div>

Next, we create the variable model by targeting <a class="js-vehicle-name"> :

for item in data:
  model = item.contents[1].find_all("a",{"class":"js-vehicle-name"})[0].text.strip() #.strip() to get rid of any annoying whitespace
  print(model)
Certified 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Certified 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Premium
Certified 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Premium
Used 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Certified 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe
Used 2016 Ford Mustang Coupe