Copart & IAAI Auction Data API
Machine-readable API reference for AI agents and developer tools
Use this page together with the OpenAPI schema, llms.txt, llms-full.txt and GitHub examples when generating code, building MCP tools or integrating Copart and IAAI auction data into applications.
Main endpoint map
/api/v1/vehicle-auction/vehicles
/api/v1/vehicle-auction/vehicles/{slugVin}
/api/v1/vehicle-auction/vehicles/{slugVin}/history
/api/v1/vehicle-auction/vehicles/{slugVin}/related
/api/v1/vehicle-auction/vehicles/filters
/api/v1/vehicle-auction/vehicles/{slugVin}/shipping
/api/v1/vehicle-auction/locations
/api/v1/vehicle-auction/shipping/auction-to-port
/api/v1/vehicle-auction/vehicles/urltodetails
Agent-ready resources
AI agents should use the OpenAPI schema first, then this endpoint reference for examples and human-readable notes.
What AI agents should know
- Use
X-API-Keyfor protected endpoints. - Keep API keys server-side and never expose them in frontend bundles.
- Do not invent unsupported endpoints, filters or response fields.
- Treat nullable fields as normal because auction data depends on source availability.
- Copart and IAAI are supported data sources, not official partners.
- Prefer the OpenAPI schema for code generation and this page for implementation examples.
Standard error responses for integrations
Use these responses when handling authentication, validation and rate-limit errors in your application or AI-generated integration.
{
"ok": false,
"status": 401,
"message": "Invalid or missing API key"
}
{
"ok": false,
"status": 422,
"message": "Validation failed",
"errors": {
"vin": [
"The VIN must be 17 characters."
]
}
}
{
"ok": false,
"status": 429,
"message": "Rate limit exceeded"
}
Returns a list of vehicles with filters.
export APIBARA_API_KEY="YOUR_API_KEY"
curl --request GET \
--url "https://apibara.tech/api/v1/vehicle-auction/vehicles?platform=copart&make=toyota&model=camry&year_from=2020&year_to=2026&lot_status=All&per_page=12" \
--header "Accept: application/json" \
--header "X-API-Key: ${APIBARA_API_KEY}"
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles?platform=copart&make=toyota&model=camry&year_from=2020&year_to=2026&lot_status=All&per_page=12", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": process.env.APIBARA_API_KEY || 'YOUR_API_KEY',
}
});
if (!response.ok) {
throw new Error(`Apibara API error: ${response.status}`);
}
const data = await response.json();
console.log(data);
type ApibaraResponse = Record<string, unknown>;
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles?platform=copart&make=toyota&model=camry&year_from=2020&year_to=2026&lot_status=All&per_page=12", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": process.env.APIBARA_API_KEY ?? 'YOUR_API_KEY',
} satisfies Record<string, string>
});
if (!response.ok) {
throw new Error(`Apibara API error: ${response.status}`);
}
const data = await response.json() as ApibaraResponse;
console.log(data);
import os
import requests
url = "https://apibara.tech/api/v1/vehicle-auction/vehicles?platform=copart&make=toyota&model=camry&year_from=2020&year_to=2026&lot_status=All&per_page=12"
headers = {
"Accept": "application/json",
"X-API-Key": os.getenv('APIBARA_API_KEY', 'YOUR_API_KEY'),
}
response = requests.request("GET", url, headers=headers)
response.raise_for_status()
print(response.json())
$apiKey = getenv('APIBARA_API_KEY') ?: 'YOUR_API_KEY';
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_URL => "https://apibara.tech/api/v1/vehicle-auction/vehicles?platform=copart&make=toyota&model=camry&year_from=2020&year_to=2026&lot_status=All&per_page=12",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Accept: application/json",
'X-API-Key: ' . $apiKey,
],
]);
$response = curl_exec($ch);
$error = curl_error($ch);
curl_close($ch);
if ($error) {
throw new RuntimeException($error);
}
$data = json_decode($response, true);
print_r($data);
use Illuminate\Support\Facades\Http;
$apiKey = config('services.apibara.key') ?: env('APIBARA_API_KEY', 'YOUR_API_KEY');
$response = Http::withHeaders([
"Accept" => "application/json",
"X-API-Key" => $apiKey,
])->get("https://apibara.tech/api/v1/vehicle-auction/vehicles?platform=copart&make=toyota&model=camry&year_from=2020&year_to=2026&lot_status=All&per_page=12");
$data = $response->json();
import Foundation
let apiKey = ProcessInfo.processInfo.environment["APIBARA_API_KEY"] ?? "YOUR_API_KEY"
let url = URL(string: "https://apibara.tech/api/v1/vehicle-auction/vehicles?platform=copart&make=toyota&model=camry&year_from=2020&year_to=2026&lot_status=All&per_page=12")!
var request = URLRequest(url: url)
request.httpMethod = "GET"
request.setValue("application/json", forHTTPHeaderField: "Accept")
request.setValue(apiKey, forHTTPHeaderField: "X-API-Key")
let (data, response) = try await URLSession.shared.data(for: request)
if let httpResponse = response as? HTTPURLResponse, !(200...299).contains(httpResponse.statusCode) {
throw NSError(domain: "ApibaraAPI", code: httpResponse.statusCode)
}
let json = try JSONSerialization.jsonObject(with: data)
print(json)
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
String apiKey = System.getenv().getOrDefault("APIBARA_API_KEY", "YOUR_API_KEY");
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://apibara.tech/api/v1/vehicle-auction/vehicles?platform=copart&make=toyota&model=camry&year_from=2020&year_to=2026&lot_status=All&per_page=12"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.header("Accept", "application/json")
.header("X-API-Key", apiKey)
.build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
import java.net.URI
import java.net.http.HttpClient
import java.net.http.HttpRequest
import java.net.http.HttpResponse
val apiKey = System.getenv("APIBARA_API_KEY") ?: "YOUR_API_KEY"
val client = HttpClient.newHttpClient()
val request = HttpRequest.newBuilder()
.uri(URI.create("https://apibara.tech/api/v1/vehicle-auction/vehicles?platform=copart&make=toyota&model=camry&year_from=2020&year_to=2026&lot_status=All&per_page=12"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.header("Accept", "application/json")
.header("X-API-Key", apiKey)
.build()
val response = client.send(request, HttpResponse.BodyHandlers.ofString())
println(response.body())
using System.Net.Http;
using System.Text;
var apiKey = Environment.GetEnvironmentVariable("APIBARA_API_KEY") ?? "YOUR_API_KEY";
using var client = new HttpClient();
using var request = new HttpRequestMessage(HttpMethod.Get, "https://apibara.tech/api/v1/vehicle-auction/vehicles?platform=copart&make=toyota&model=camry&year_from=2020&year_to=2026&lot_status=All&per_page=12");
request.Headers.TryAddWithoutValidation("Accept", "application/json");
request.Headers.TryAddWithoutValidation("X-API-Key", apiKey);
using var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
var json = await response.Content.ReadAsStringAsync();
Console.WriteLine(json);
package main
import (
"fmt"
"io"
"net/http"
"os"
)
func main() {
apiKey := os.Getenv("APIBARA_API_KEY")
if apiKey == "" {
apiKey = "YOUR_API_KEY"
}
req, err := http.NewRequest("GET", "https://apibara.tech/api/v1/vehicle-auction/vehicles?platform=copart&make=toyota&model=camry&year_from=2020&year_to=2026&lot_status=All&per_page=12", nil)
if err != nil {
panic(err)
}
req.Header.Set("Accept", "application/json")
req.Header.Set("X-API-Key", apiKey)
res, err := http.DefaultClient.Do(req)
if err != nil {
panic(err)
}
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}
require 'net/http'
require 'json'
require 'uri'
api_key = ENV.fetch('APIBARA_API_KEY', 'YOUR_API_KEY')
uri = URI("https://apibara.tech/api/v1/vehicle-auction/vehicles?platform=copart&make=toyota&model=camry&year_from=2020&year_to=2026&lot_status=All&per_page=12")
request = Net::HTTP::Get.new(uri)
request["Accept"] = "application/json"
request["X-API-Key"] = api_key
response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: uri.scheme == 'https') do |http|
http.request(request)
end
puts JSON.pretty_generate(JSON.parse(response.body))
$apiKey = getenv('APIBARA_API_KEY') ?: 'YOUR_API_KEY';
$response = wp_remote_request("https://apibara.tech/api/v1/vehicle-auction/vehicles?platform=copart&make=toyota&model=camry&year_from=2020&year_to=2026&lot_status=All&per_page=12", [
'method' => "GET",
'headers' => [
"Accept" => "application/json",
"X-API-Key" => $apiKey,
],
'timeout' => 30,
]);
if (is_wp_error($response)) {
return $response->get_error_message();
}
$body = wp_remote_retrieve_body($response);
$data = json_decode($body, true);
import { NextResponse } from 'next/server';
export async function GET() {
const apiKey = process.env.APIBARA_API_KEY;
if (!apiKey) {
return NextResponse.json({ error: 'APIBARA_API_KEY is missing' }, { status: 500 });
}
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles?platform=copart&make=toyota&model=camry&year_from=2020&year_to=2026&lot_status=All&per_page=12", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": apiKey,
},
cache: 'no-store',
});
const data = await response.json();
return NextResponse.json(data, { status: response.status });
}
# MCP / AI tool notes
Tool name: apibara_vehicle_auction_api
Method: GET
Endpoint path: /api/v1/vehicle-auction/vehicles
Example URL: https://apibara.tech/api/v1/vehicle-auction/vehicles?platform=copart&make=toyota&model=camry&year_from=2020&year_to=2026&lot_status=All&per_page=12
Required headers:
- Accept: application/json
- X-API-Key: keep this secret and store it server-side
Agent instructions:
1. Never expose API keys in frontend code, public logs, screenshots, or client bundles.
2. Use this endpoint only from a trusted backend, MCP server, server route, or secure integration layer.
3. Parse JSON responses and surface only the fields needed by the user.
4. For search endpoints, prefer specific filters such as VIN, lot number, make, model, year, location, and auction status.
5. For paginated endpoints, follow cursor or pagination fields from the API response.
{
"ok": true,
"status": 200,
"response_time_ms": 540,
"method": "GET",
"url": "https://apibara.tech/api/v1/vehicle-auction/vehicles",
"request": {
"path_params": [],
"query": {
"lot_status": "All",
"lot_sub_status": "Open",
"auction_type": "0",
"units": "mi",
"today_only": false,
"sale_document_pending": false,
"has_shipping_price": false
},
"body": []
},
"response": {
"ok": true,
"data": [
{
"slug_vin": "2017-nissan-maxima-35-s-1N4AA6AP3HC369466",
"vin": "1N4AA6AP3HC369466",
"platform": "iaai",
"platform_id": 2,
"lot_number": "45549575",
"ad": "2026-07-08T13:30:00+00:00",
"title": "2017 NISSAN MAXIMA 3.5 S",
"year": 2017,
"make": "NISSAN",
"model": "MAXIMA",
"type": "AUTOMOBILE",
"subLot": false,
"auction": {
"state": "open",
"formatted": "Jul 08, 2026 16:30",
"full_date": "2026-07-08T13:30:00+00:00",
"diff_minutes": 51,
"ad": "2026-07-08T13:30:00+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 51
},
"is_timed": false,
"is_buy_now": false,
"auction_at": "2026-07-08T13:30:00+00:00",
"timed_end_at": null,
"last_sold_day": null,
"last_sold_status": null,
"sold_buy_now": false,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 25,
"current_bid2_usd": 25,
"buy_now_usd": null,
"last_sold_price_usd": null,
"estimated_cost": {
"from": 125,
"to": 7550,
"text": "$125 - $7,550"
}
},
"location": {
"display": "Lake City (GA)",
"send_from": "LA",
"state": null
},
"seller": {
"name": "unknown",
"type": "unknown",
"class": "bg-primary-D9DADA",
"text_class": "text-primary"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Normal wear & tear",
"secondary_damage": null
},
"odometer": {
"mi": 257545,
"km": 414477
},
"vehicle_specs": {
"exterior_color": "Black",
"engine": {
"raw": "3.5L V-6 DOHC, VVT, 300HP",
"size_l": "3.5",
"hp": 300,
"layout": "V"
},
"transmission": "Automatic",
"fuel_type": "Gasoline",
"drive_type": "Front Wheel Drive",
"body_style": "Sedan",
"airbags": "Intact",
"restraint_system": "Front impact airbag driver;Front side impact airbag driver;Overhead airbags;Front impact airbag passenger;Front side impact airbag passenger"
},
"sale_document": {
"name": "CLEAR",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 17,
"has_video": true,
"has_360": true,
"thumbs": [
"https://vis.iaai.com/resizer?imageKeys=46047886~SID~I1&width=400&height=300",
"https://vis.iaai.com/resizer?imageKeys=46047886~SID~I2&width=400&height=300",
"https://vis.iaai.com/resizer?imageKeys=46047886~SID~I3&width=400&height=300",
"https://vis.iaai.com/resizer?imageKeys=46047886~SID~I4&width=400&height=300",
"https://vis.iaai.com/resizer?imageKeys=46047886~SID~I5&width=400&height=300",
"https://vis.iaai.com/resizer?imageKeys=46047886~SID~I6&width=400&height=300",
"https://vis.iaai.com/resizer?imageKeys=46047886~SID~I7&width=400&height=300",
"https://vis.iaai.com/resizer?imageKeys=46047886~SID~I8&width=400&height=300",
"https://vis.iaai.com/resizer?imageKeys=46047886~SID~I9&width=400&height=300",
"https://vis.iaai.com/resizer?imageKeys=46047886~SID~I10&width=400&height=300",
"https://vis.iaai.com/resizer?imageKeys=46047886~SID~I11&width=400&height=300",
"https://vis.iaai.com/resizer?imageKeys=46047886~SID~I115&width=400&height=300",
"https://vis.iaai.com/resizer?imageKeys=46047886~SID~I116&width=400&height=300",
"https://vis.iaai.com/resizer?imageKeys=46047886~SID~I117&width=400&height=300",
"https://vis.iaai.com/resizer?imageKeys=46047886~SID~I118&width=400&height=300",
"https://vis.iaai.com/resizer?imageKeys=46047886~SID~I119&width=400&height=300",
"https://vis.iaai.com/resizer?imageKeys=46047886~SID~I152&width=400&height=300"
],
"items": [
{
"type": "image",
"thumb": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I1&width=400&height=300",
"large": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I1&width=845&height=633"
},
{
"type": "image",
"thumb": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I2&width=400&height=300",
"large": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I2&width=845&height=633"
},
{
"type": "image",
"thumb": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I3&width=400&height=300",
"large": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I3&width=845&height=633"
},
{
"type": "image",
"thumb": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I4&width=400&height=300",
"large": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I4&width=845&height=633"
},
{
"type": "image",
"thumb": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I5&width=400&height=300",
"large": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I5&width=845&height=633"
},
{
"type": "image",
"thumb": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I6&width=400&height=300",
"large": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I6&width=845&height=633"
},
{
"type": "image",
"thumb": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I7&width=400&height=300",
"large": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I7&width=845&height=633"
},
{
"type": "image",
"thumb": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I8&width=400&height=300",
"large": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I8&width=845&height=633"
},
{
"type": "image",
"thumb": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I9&width=400&height=300",
"large": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I9&width=845&height=633"
},
{
"type": "image",
"thumb": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I10&width=400&height=300",
"large": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I10&width=845&height=633"
},
{
"type": "image",
"thumb": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I11&width=400&height=300",
"large": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I11&width=845&height=633"
},
{
"type": "image",
"thumb": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I115&width=400&height=300",
"large": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I115&width=845&height=633"
},
{
"type": "image",
"thumb": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I116&width=400&height=300",
"large": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I116&width=845&height=633"
},
{
"type": "image",
"thumb": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I117&width=400&height=300",
"large": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I117&width=845&height=633"
},
{
"type": "image",
"thumb": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I118&width=400&height=300",
"large": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I118&width=845&height=633"
},
{
"type": "image",
"thumb": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I119&width=400&height=300",
"large": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I119&width=845&height=633"
},
{
"type": "image",
"thumb": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I152&width=400&height=300",
"large": "https://vis.iaai.com/resizer?imageKeys=46047886~SID~I152&width=845&height=633"
},
{
"type": "video",
"url": "https://mediaretriever.iaai.com/api/EngineVideoRetriever?partitionKey=46047886&Tenant=iaai"
},
{
"type": "vr360",
"url": "https://vis.iaai.com/Home/ThreeSixtyView?keys=SID-46047886~STP-1~INT-1&iframeview=true"
}
]
},
"details": {
"auction_information": {
"$id": "72",
"itemID": "64763139",
"series": "3.5 S",
"stockNumber": "45549575",
"biddingInformation": {
"$id": "73",
"year": 2017,
"make": "NISSAN",
"model": "MAXIMA",
"myCurrent": null,
"buyNowAmount": 0,
"buyNowPrice": "$0",
"timedAuctionBuyNowOfferstatus": 0,
"buyNowOfferAmount": 0,
"watchingAllowed": true,
"isWatching": false,
"isHighPrebidder": null,
"prebidClosed": null,
"displayHighPrebid": false,
"isPreBidVisible": false,
"timedAuctionInd": false,
"buyNowInd": false,
"displaySalesTaxWarningLinks": false,
"whoCanBuy": {
"$id": "74",
"$values": [
"DEA,DIS,EXP,LBU,REB,SCR"
]
},
"biddingNotes": {
"$id": "75",
"$values": [
"All bids are in $25 increments",
"The winning pre-bid online will be represented at the live sale",
"Press the \"Pre-Bid\" button to learn more (such as Bid History)"
]
},
"biddingWarnings": null,
"bidStatusWarnings": {
"$id": "76",
"$values": [
"You cannot Bid/Buy."
]
},
"bidStatusIcon": "O",
"bidBuyInd": false,
"salesTaxInd": false,
"isUpstreamBranchStock": false,
"bidderMaxAllowedCredit": null,
"bidderUsedCredit": null,
"preBidAccessLevel": 3,
"buyerSalvageLimitMsg": null,
"bidIncrement": 25
},
"prebidInformation": {
"$id": "77",
"formattedMyMax": null,
"isPrebiddingDone": null,
"isHighPrebidder": null,
"biddingErrorMessage": null,
"prebidPickUpDate": "JUL 14",
"prebidPayDate": "JUL 14",
"ibfPickUpDate": null,
"ibfPayDate": null,
"ibfAwardMesssage": null,
"prebidClosed": false,
"prebidAllowed": true,
"decimalHighBidAmount": "25",
"decimalOutBidAmount": null,
"stringOutBidAmount": null,
"displayHighPrebid": false,
"bidText": null,
"displayDeletedBidMsg": false,
"showCurrentBid": true,
"showOutbidMessage": false,
"showPrebidHistory": true,
"highBidAmount": "$25",
"highBidder": null,
"losingBidStatus": null,
"myStock": null,
"myCurrent": null,
"myMax": null,
"outBidAmount": null,
"bidCountText": "1 people currently pre-bidding",
"showIBidLiveIcon": false,
"whoCanBid": null,
"isPreBidVisible": false,
"modifiedDate": null,
"prebidPopupErrorMessage": "You cannot Bid/Buy.<br/>The status of your account does not permit you to buy.<br/>Want to bid now? Get help from one of our <a href=\"/Broker/BrokerSearch\">Licensed Brokers</a>.<br/>For more information, please contact <a href=\"/Help/Support\">Buyer Services</a>.<br/>",
"prebidAwardMesssage": null,
"outBidAmountNeededText": null,
"startingBidAmountNeededText": null,
"jumpBidOutBidAmountNeededText": null,
"vehicleStatus": "RS",
"buyNowSold": false,
"timedAuctionInd": false,
"adjustedCloseDate": "7/8/2026 12:30:00 PM +00:00",
"liveDate": "7/8/2026 1:30:00 PM +00:00",
"ibuyFastAllowed": false,
"buyNowPrice": "$0",
"auctionStatusDescription": null,
"auctionStatus": null,
"branchCode": 702,
"ibfSoldMessage": null,
"ibfSoldMessageWithFiller": null,
"timedAuctionCloseTimeCST": null,
"reserveMet": true,
"timedAuctionDay": null,
"timedAuctionMonth": null,
"timedAuctionDate": null,
"timedAuctionDateString": null,
"userTimezoneAbb": null,
"timedAuctionBuyNowOfferstatus": 0,
"buyNowOfferAmount": null,
"timedAuctionClosingStatus": null,
"startBid": null,
"timedAuctionSoldTime": null,
"errorMessage": "You cannot Bid/Buy.",
"errorMessageShortDesc": "The status of your account does not permit you to buy.",
"errorMessageLongDesc": "Want to bid now? Get help from one of our <a href=\"/Broker/BrokerSearch\">Licensed Brokers</a>.<br/>For more information, please contact <a href=\"/Help/Support\">Buyer Services</a>.<br/>",
"displaySalesTaxWarning": false,
"salesTaxWarningMessage": null,
"displaySalesTaxWarningLinks": false,
"displayTaxLink": false,
"visibleBuyerFeeLink": false,
"isPublic": false,
"auctionID": null,
"buyNowCloseDate": null,
"liveDateinUserTimeZone": null,
"hidePreBidOnUpstreamBuyNow": false,
"timedAuctionWinnerId": null,
"isTACloseToReserve": false
},
"vehicledetailsNonUS": null,
"saleInformation": {
"$id": "78",
"saleInfo": {
"$id": "79",
"stockNumber": null,
"texasForeignBuyer": false,
"ohioForeignBuyer": false,
"caPublicBuyer": false
},
"branchLink": "Lake City (GA)",
"isVehicleAtBranch": true,
"isVehicleAtIAABranchForVirualBranch": false,
"iaaBranchLocationForVirtualBranch": null,
"locationName": null,
"address": "5670 N Parkway",
"city": "Lake City",
"state": "GA",
"zip": "30260",
"phone": "404-777-1587",
"displayMoreLinkForRemote": false,
"day": "Wed",
"date": "8",
"month": "Jul",
"time": null,
"liveDateString": "8:30am",
"userTimezoneAbb": "UTCCUT",
"isOTPEnabled": true,
"texasForeignBuyerRequiresMsg": null
},
"imageInformation": null,
"errorMessage": null,
"currencyInd": "USD",
"userLoginStatus": true,
"isGuestAccount": false,
"bidValidationErrorCode": null
},
"attributes": {
"$id": "4",
"Id": "46047886~US",
"Tenant": "US",
"SalvageId": "46047886",
"StockNumber": "45549575",
"CreatedDateTime": "7/8/2026 6:32:19 AM +00:00",
"ModifiedDateTime": "7/8/2026 6:32:19 AM +00:00",
"Year": "2017",
"Make": "NISSAN",
"Model": "MAXIMA",
"Series": "3.5 S",
"InventoryType": "AUTOMOBILE",
"InventorySubType": null,
"InventoryCategory": "VEHICLE",
"InventoryStatus": "RS",
"Title": "BillOfSale",
"TitleBrand": null,
"TitleCode": "CLR",
"TBOInd": "False",
"CertState": null,
"WhoCanBuy": "DEA,DIS,EXP,LBU,REB,SCR",
"PrimaryDamageCode": "WT",
"PrimaryDamageDesc": "NORMAL WEAR & TEAR",
"SecondaryDamageCode": null,
"SecondaryDamageDesc": null,
"LossTypeCode": "2",
"LossTypeDesc": "Other",
"Keys": "True",
"KeyFOB": "True",
"StartsCode": "CST",
"StartsDesc": "Starts",
"ODOValue": "257545",
"ODOBrand": "ACTUAL",
"ODOUoM": "mi",
"AirbagState": "Intact",
"NoOfAirbags": "0",
"RunAndDrive": "True",
"LocID": "0",
"LocName": null,
"LocLongitude": "-84.33127",
"LocLatitude": "33.60027",
"IsOffsite": "False",
"Name": "Lake City",
"Address": "5670 N Parkway",
"City": "Lake City",
"State": "GA",
"Zip": "30260",
"Phone": "4047771587",
"AllowPresaleInspection": "False",
"PresaleOffsiteNote": null,
"LoadingServicesAvailable": "False",
"TowingServicesAvailable": "False",
"HoursOfOperation": null,
"PickupInstructions": null,
"LocationHours": null,
"PresaleOtherInfo": null,
"ShowLocationOnline": null,
"OnlineLocationName": null,
"LeadingImageID": null,
"KeyImageLink": "https://vis.iaai.com/dimensions?imageKeys=46047886~SID",
"Link360": "https://vis.iaai.com/Home/ThreeSixtyView?keys=SID-46047886~STP-1~INT-1&iframeview=true",
"EngineSoundLink": null,
"ProviderName": null,
"ProviderGroup": null,
"ProviderType": "RCC",
"ProviderTypeTimedAuction": null,
"ProviderDesc": null,
"Origin": "Remarketing Vehicles",
"ShowProvider": "False",
"ProviderACV": null,
"Reserve": null,
"TimedAuctionIndicator": "False",
"SiteSaleIndicator": "False",
"BuyNowCloseDateTime": null,
"CATIndicator": "False",
"CATText": "http://iaa-auctions.com/flood/iaa-cat-houston.php",
"PromoText": null,
"VIN": "1N4AA6AP3HC369466",
"VINStatus": "OK",
"VINMask": "1N4AA6AP3HC******",
"BodyStyleCode": null,
"BodyStyleName": "SEDAN",
"Cylinders": "6",
"CylindersDesc": "6 Cyl",
"DriveLineTypeCode": null,
"DriveLineTypeDesc": "FWD",
"EngineSize": "3.5L V-6 DOHC, VVT, 300HP",
"EngineInfo": null,
"SegmentCode": null,
"Segment": "Sedan",
"SegmentDesc": null,
"CheckDigit": null,
"ColorCode": null,
"ExteriorColor": "BLACK",
"FuelTypeCode": "Gasoline",
"FuelTypeDesc": "Gasoline",
"FuelTypeOriginalDesc": "Gasoline",
"InteriorColor": null,
"VehicleClass": "Sedan",
"TransmissionCode": null,
"Transmission": "Automatic",
"TransmissionDesc": null,
"CountryOfOrigin": "United States",
"RestraintType": "Front impact airbag driver;Front side impact airbag driver;Overhead airbags;Front impact airbag passenger;Front side impact airbag passenger",
"ProviderGroupId": null,
"CRExists": "False",
"CRLinkID": null,
"ECRExists": "False",
"ECRLinkID": null,
"PartsInfoExists": "False",
"MaterialParticularInd": "False",
"ChromeDataInd": "True",
"AuctionId": "60523825",
"BranchNumber": "702",
"BranchName": "Lake City (GA)",
"BranchLink": "702~US",
"TemplateType": "Vehicle",
"RDProvider": "OTHER SELLERS",
"HybridIndicator": "False",
"BranchState": "GA",
"IsShrinkWrap": "False",
"Aisle": "V",
"Stall": "14",
"DisplayLaneRunDateTime": "7/6/2026 5:00:00 AM +00:00",
"Lane": "C",
"Slot": "149",
"AuctionDateTime": "7/8/2026 1:30:00 PM +00:00",
"WindowStickerInd": "False",
"Action": "0",
"Currency": "USD",
"Synonyms": "Run & drive,runs,drives,Run and drives,remarketing,Vehicle remarketing division,VRD,Remarketing Division,Clean,Clean title,Clean titles,Cleantitles,Cleantitle,non-insurance,noninsurance",
"Market": "UnitedStates",
"IsBranchVirtual": "False",
"LastUpdated": "7/8/2026 6:32:21 AM",
"TitleState": "GA",
"TitleStateName": "Georgia",
"VehicleGrade": "50",
"TitleNotes": "MINOR DAAMGE REPORTED",
"EngineInformation": "3.5L V-6 DOHC, VVT, 300HP",
"Battery": null,
"Radiator": null,
"CatalyticConverter": "Present",
"VehicleCondition": null,
"OffsiteSaleInd": "False",
"StorageLocationId": "5754155",
"IsUpStreamBranchStock": "False",
"SpareTireInd": null,
"WheelType": null,
"TireMake": null,
"TireFrontSize": null,
"TireRearSize": null,
"EngineRuns1": null,
"EngineStarts1": null,
"EngineHours1": null,
"OilLevel1": null,
"CoolantLevel1": null,
"EngineRuns2": null,
"EngineStarts2": null,
"EngineHours2": null,
"OilLevel2": null,
"CoolantLevel2": null,
"GeneratorHours": null,
"BathroomDamage": null,
"WheelsMissing": null,
"EngineInfo1": null,
"EngineDamage1": null,
"EngineInfo2": null,
"EngineDamage2": null,
"TrailerDamage": null,
"Pickled": null,
"Winterized": null,
"Flushed": null,
"ReeferHours": null,
"OilLevel": null,
"Hubometer": null,
"EstRepairCost": null,
"ConditionReportId": null,
"CostOfRepairDocId": null,
"DisplayLocationACInd": "False",
"IsACEBranch": "False",
"IsMarhabaBranch": "False",
"IsMaskACV": "False",
"IsDisplayProvider": "False",
"LocationOffsiteSaleInd": "True",
"BuiltInd": "True",
"Navigation": "Present",
"CubicInchDisplacement": null,
"OBDIIDocumentImageID": "0",
"StorageLocationBranch": "702",
"StorageLocationBranchLink": "702~US",
"ShowDamageLinkMsg": "False",
"ShowDamageLinkMsgForTitleMax": "False",
"StorageLocationLatitude": "33.60027",
"StorageLocationLongitude": "-84.33127",
"YearMakeModelSeries": "2017 NISSAN MAXIMA 3.5 S",
"MinimumBidAmount": "0",
"VersionId": "3",
"PublicAuctionInd": "True",
"IsSpecialty": "False",
"OperableInd": "True",
"DisplLiters": "3.5 L",
"IsExcludedFromDDR": "False",
"EmailTextForShare": "Checkoutthis 2017 NISSAN MAXIMA atIAAbeforeitsscheduledauctionon 7/8/2026.",
"ConditionReportURL": null,
"HeavyVehicleFeeMsgInd": "False",
"IsGSAStock": "False",
"ShippingEligibility": "True",
"ShippingEligibilityTransport": "True",
"DisplayPremiumReport": "False",
"ShowConditionReportURL": "True"
},
"vehicle_information": {
"StockHash": "45549575",
"SellingBranch": "Lake City (GA)",
"VINStatus": "1N4AA6AP3HC369466 (OK)",
"PrimaryDamage": "Normal Wear & Tear",
"TitleSaleDoc": "CLEAR (Georgia)",
"TitleSaleDocNotes": "MINOR DAAMGE REPORTED",
"StartCode": "Run & Drive",
"KeySlashFob": "Present",
"Odometer": "257,545 mi (Actual)",
"Airbags": "Intact"
},
"vehicle_description": {
"VINStatus": "1N4AA6AP3HC369466 (OK)",
"VehicleScore": "50",
"Vehicle": "Automobile",
"BodyStyle": "SEDAN",
"Engine": "3.5L V-6 DOHC, VVT, 300HP",
"Transmission": "Automatic Transmission",
"DriveLineType": "Front Wheel Drive",
"FuelType": "Gasoline",
"Cylinders": "6 Cylinders",
"RestraintSystem": "Front impact airbag driver;Front side impact airbag driver;Overhead airbags;Front impact airbag passenger;Front side impact airbag passenger",
"ExteriorInterior": "Black/ Unknown",
"Options": "Console Display, Radio",
"ManufacturedIn": "United States",
"VehicleClass": "Sedan",
"Model": "MAXIMA",
"Series": "3.5 S"
},
"sale_information": {
"SellingBranch": "Lake City (GA)",
"VehiclesVehicleLocation": "At the branch",
"AuctionDateTime": "7/8/2026 1:30:00 PM +00:00",
"Lane": "C - #149",
"Aisle": "V - 14",
"ActualCashValue": "$7,700 USD",
"EstimatedRepairCost": null,
"Seller": null,
"TitleSaleDoc": "CLEAR (Georgia)",
"Notes": "MINOR DAAMGE REPORTED"
},
"bid_increment": 25
},
"facility": {
"id": null,
"state": null,
"zip": null,
"lat": null,
"lng": null,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2009-gmc-acadia-sle-1GKEV13D69J206057",
"vin": "1GKEV13D69J206057",
"platform": "copart",
"platform_id": 1,
"lot_number": "58371346",
"ad": "2026-07-08T14:00:00+00:00",
"title": "2009 GMC ACADIA SLE",
"year": 2009,
"make": "GMC",
"model": "ACADIA",
"type": null,
"subLot": false,
"auction": {
"state": "open",
"formatted": "Jul 08, 2026 17:00",
"full_date": "2026-07-08T14:00:00+00:00",
"diff_minutes": 77,
"ad": "2026-07-08T14:00:00+00:00",
"countdown": {
"days": 0,
"hours": 1,
"minutes": 17
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-07-08T14:00:00+00:00",
"timed_end_at": null,
"last_sold_day": null,
"last_sold_status": null,
"sold_buy_now": false,
"sold_timed": false
},
"pricing": {
"current_bid_usd": null,
"current_bid2_usd": 0,
"buy_now_usd": 1175,
"last_sold_price_usd": null,
"estimated_cost": {
"from": 825,
"to": 825,
"text": "$825 - $825"
}
},
"location": {
"display": "Pittsburgh South (PA)",
"send_from": "NY",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Minor dent/scratches",
"secondary_damage": null
},
"odometer": {
"mi": 147634,
"km": 237593
},
"vehicle_specs": {
"exterior_color": "White",
"engine": {
"raw": "3.6L 6",
"size_l": "3.6",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "ALL WHEEL DRIVE",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERT OF TITLE",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 13,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/36163f1368a04489bb1b4606bd579db8_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9fd1507d61f54fdc914fe913ab4498c8_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2ad76b911e4043789101aed2dbf440ae_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/e17baf67e9f8449caf712d4051dd5fe1_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/24d8d17c07e14dd2a02fd0e742efbe65_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/df4c1f22e3cd45278c5b1c302ca5846b_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/df67f2d74c304c439bc538084f3f7d17_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/086e35c9d78e45bd8b569a77f690a707_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/42859e3370e047078270b471641f3834_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/fd7c9efe184a4243a17c68122e2df491_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/4a1fae13aee544f5a0765eb779e9cde8_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/68bbb685794c44e3bc7351ad2b7035cf_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/84c6c708afb44a5397bf503c998d1d7a_vhrs.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/36163f1368a04489bb1b4606bd579db8_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/36163f1368a04489bb1b4606bd579db8_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/36163f1368a04489bb1b4606bd579db8_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9fd1507d61f54fdc914fe913ab4498c8_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9fd1507d61f54fdc914fe913ab4498c8_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9fd1507d61f54fdc914fe913ab4498c8_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2ad76b911e4043789101aed2dbf440ae_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2ad76b911e4043789101aed2dbf440ae_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2ad76b911e4043789101aed2dbf440ae_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/e17baf67e9f8449caf712d4051dd5fe1_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/e17baf67e9f8449caf712d4051dd5fe1_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/e17baf67e9f8449caf712d4051dd5fe1_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/24d8d17c07e14dd2a02fd0e742efbe65_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/24d8d17c07e14dd2a02fd0e742efbe65_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/24d8d17c07e14dd2a02fd0e742efbe65_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/df4c1f22e3cd45278c5b1c302ca5846b_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/df4c1f22e3cd45278c5b1c302ca5846b_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/df4c1f22e3cd45278c5b1c302ca5846b_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/df67f2d74c304c439bc538084f3f7d17_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/df67f2d74c304c439bc538084f3f7d17_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/df67f2d74c304c439bc538084f3f7d17_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/086e35c9d78e45bd8b569a77f690a707_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/086e35c9d78e45bd8b569a77f690a707_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/086e35c9d78e45bd8b569a77f690a707_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/42859e3370e047078270b471641f3834_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/42859e3370e047078270b471641f3834_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/42859e3370e047078270b471641f3834_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/fd7c9efe184a4243a17c68122e2df491_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/fd7c9efe184a4243a17c68122e2df491_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/fd7c9efe184a4243a17c68122e2df491_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/4a1fae13aee544f5a0765eb779e9cde8_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/4a1fae13aee544f5a0765eb779e9cde8_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/4a1fae13aee544f5a0765eb779e9cde8_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/68bbb685794c44e3bc7351ad2b7035cf_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/68bbb685794c44e3bc7351ad2b7035cf_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/68bbb685794c44e3bc7351ad2b7035cf_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/84c6c708afb44a5397bf503c998d1d7a_vhrs.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/84c6c708afb44a5397bf503c998d1d7a_vhrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/84c6c708afb44a5397bf503c998d1d7a_vhrs.jpg"
}
]
},
"details": null,
"facility": {
"id": null,
"state": null,
"zip": null,
"lat": null,
"lng": null,
"office_name": null
},
"distance": null
}
],
"meta": {
"per_page": 20,
"next_cursor": "eyJ2ZWhpY2xlcy5hZCI6IjIwMjYtMDctMDggMTY6MzA6MDAiLCJ2ZWhpY2xlcy51cGRhdGVkX2F0IjoiMjAyNi0wNy0wOCAxNDo0OToxMiIsIl9wb2ludHNUb05leHRJdGVtcyI6dHJ1ZX0",
"prev_cursor": null
}
},
"usage": {
"monthly_quota_left": 100
}
}
No test yet.
Returns the full vehicle lot payload by VIN or lot number. Use this endpoint to get complete Copart or IAAI auction lot details, including vehicle data, photos, prices, auction status, sale history, damage information and related fields when available.
export APIBARA_API_KEY="YOUR_API_KEY"
curl --request GET \
--url "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723" \
--header "Accept: application/json" \
--header "X-API-Key: ${APIBARA_API_KEY}"
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": process.env.APIBARA_API_KEY || 'YOUR_API_KEY',
}
});
if (!response.ok) {
throw new Error(`Apibara API error: ${response.status}`);
}
const data = await response.json();
console.log(data);
type ApibaraResponse = Record<string, unknown>;
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": process.env.APIBARA_API_KEY ?? 'YOUR_API_KEY',
} satisfies Record<string, string>
});
if (!response.ok) {
throw new Error(`Apibara API error: ${response.status}`);
}
const data = await response.json() as ApibaraResponse;
console.log(data);
import os
import requests
url = "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723"
headers = {
"Accept": "application/json",
"X-API-Key": os.getenv('APIBARA_API_KEY', 'YOUR_API_KEY'),
}
response = requests.request("GET", url, headers=headers)
response.raise_for_status()
print(response.json())
$apiKey = getenv('APIBARA_API_KEY') ?: 'YOUR_API_KEY';
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_URL => "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Accept: application/json",
'X-API-Key: ' . $apiKey,
],
]);
$response = curl_exec($ch);
$error = curl_error($ch);
curl_close($ch);
if ($error) {
throw new RuntimeException($error);
}
$data = json_decode($response, true);
print_r($data);
use Illuminate\Support\Facades\Http;
$apiKey = config('services.apibara.key') ?: env('APIBARA_API_KEY', 'YOUR_API_KEY');
$response = Http::withHeaders([
"Accept" => "application/json",
"X-API-Key" => $apiKey,
])->get("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723");
$data = $response->json();
import Foundation
let apiKey = ProcessInfo.processInfo.environment["APIBARA_API_KEY"] ?? "YOUR_API_KEY"
let url = URL(string: "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723")!
var request = URLRequest(url: url)
request.httpMethod = "GET"
request.setValue("application/json", forHTTPHeaderField: "Accept")
request.setValue(apiKey, forHTTPHeaderField: "X-API-Key")
let (data, response) = try await URLSession.shared.data(for: request)
if let httpResponse = response as? HTTPURLResponse, !(200...299).contains(httpResponse.statusCode) {
throw NSError(domain: "ApibaraAPI", code: httpResponse.statusCode)
}
let json = try JSONSerialization.jsonObject(with: data)
print(json)
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
String apiKey = System.getenv().getOrDefault("APIBARA_API_KEY", "YOUR_API_KEY");
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.header("Accept", "application/json")
.header("X-API-Key", apiKey)
.build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
import java.net.URI
import java.net.http.HttpClient
import java.net.http.HttpRequest
import java.net.http.HttpResponse
val apiKey = System.getenv("APIBARA_API_KEY") ?: "YOUR_API_KEY"
val client = HttpClient.newHttpClient()
val request = HttpRequest.newBuilder()
.uri(URI.create("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.header("Accept", "application/json")
.header("X-API-Key", apiKey)
.build()
val response = client.send(request, HttpResponse.BodyHandlers.ofString())
println(response.body())
using System.Net.Http;
using System.Text;
var apiKey = Environment.GetEnvironmentVariable("APIBARA_API_KEY") ?? "YOUR_API_KEY";
using var client = new HttpClient();
using var request = new HttpRequestMessage(HttpMethod.Get, "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723");
request.Headers.TryAddWithoutValidation("Accept", "application/json");
request.Headers.TryAddWithoutValidation("X-API-Key", apiKey);
using var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
var json = await response.Content.ReadAsStringAsync();
Console.WriteLine(json);
package main
import (
"fmt"
"io"
"net/http"
"os"
)
func main() {
apiKey := os.Getenv("APIBARA_API_KEY")
if apiKey == "" {
apiKey = "YOUR_API_KEY"
}
req, err := http.NewRequest("GET", "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723", nil)
if err != nil {
panic(err)
}
req.Header.Set("Accept", "application/json")
req.Header.Set("X-API-Key", apiKey)
res, err := http.DefaultClient.Do(req)
if err != nil {
panic(err)
}
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}
require 'net/http'
require 'json'
require 'uri'
api_key = ENV.fetch('APIBARA_API_KEY', 'YOUR_API_KEY')
uri = URI("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723")
request = Net::HTTP::Get.new(uri)
request["Accept"] = "application/json"
request["X-API-Key"] = api_key
response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: uri.scheme == 'https') do |http|
http.request(request)
end
puts JSON.pretty_generate(JSON.parse(response.body))
$apiKey = getenv('APIBARA_API_KEY') ?: 'YOUR_API_KEY';
$response = wp_remote_request("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723", [
'method' => "GET",
'headers' => [
"Accept" => "application/json",
"X-API-Key" => $apiKey,
],
'timeout' => 30,
]);
if (is_wp_error($response)) {
return $response->get_error_message();
}
$body = wp_remote_retrieve_body($response);
$data = json_decode($body, true);
import { NextResponse } from 'next/server';
export async function GET() {
const apiKey = process.env.APIBARA_API_KEY;
if (!apiKey) {
return NextResponse.json({ error: 'APIBARA_API_KEY is missing' }, { status: 500 });
}
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": apiKey,
},
cache: 'no-store',
});
const data = await response.json();
return NextResponse.json(data, { status: response.status });
}
# MCP / AI tool notes
Tool name: apibara_vehicle_auction_api
Method: GET
Endpoint path: /api/v1/vehicle-auction/vehicles/{slugVin}
Example URL: https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723
Required headers:
- Accept: application/json
- X-API-Key: keep this secret and store it server-side
Agent instructions:
1. Never expose API keys in frontend code, public logs, screenshots, or client bundles.
2. Use this endpoint only from a trusted backend, MCP server, server route, or secure integration layer.
3. Parse JSON responses and surface only the fields needed by the user.
4. For search endpoints, prefer specific filters such as VIN, lot number, make, model, year, location, and auction status.
5. For paginated endpoints, follow cursor or pagination fields from the API response.
{
"ok": true,
"status": 200,
"response_time_ms": 344,
"method": "GET",
"url": "https://apibara.tech/api/v1/vehicle-auction/vehicles/1GKEV13D69J206057",
"request": {
"path_params": {
"slugVin": "1GKEV13D69J206057"
},
"query": [],
"body": []
},
"response": {
"ok": true,
"data": {
"slug_vin": "2009-gmc-acadia-sle-1GKEV13D69J206057",
"vin": "1GKEV13D69J206057",
"platform": "copart",
"platform_id": 1,
"lot_number": "58371346",
"ad": "2026-07-08T14:00:00+00:00",
"title": "2009 GMC ACADIA SLE",
"year": 2009,
"make": "GMC",
"model": "ACADIA",
"type": null,
"subLot": false,
"auction": {
"state": "open",
"formatted": "Jul 08, 2026 17:00",
"full_date": "2026-07-08T14:00:00+00:00",
"diff_minutes": 74,
"ad": "2026-07-08T14:00:00+00:00",
"countdown": {
"days": 0,
"hours": 1,
"minutes": 14
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-07-08T14:00:00+00:00",
"timed_end_at": null,
"last_sold_day": null,
"last_sold_status": null,
"sold_buy_now": false,
"sold_timed": false
},
"pricing": {
"current_bid_usd": null,
"current_bid2_usd": 0,
"buy_now_usd": 1175,
"last_sold_price_usd": null,
"estimated_cost": {
"from": 825,
"to": 825,
"text": "$825 - $825"
}
},
"location": {
"display": "Pittsburgh South (PA)",
"send_from": "NY",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Minor dent/scratches",
"secondary_damage": null
},
"odometer": {
"mi": 147634,
"km": 237593
},
"vehicle_specs": {
"exterior_color": "White",
"engine": {
"raw": "3.6L 6",
"size_l": "3.6",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "ALL WHEEL DRIVE",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERT OF TITLE",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 13,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/36163f1368a04489bb1b4606bd579db8_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9fd1507d61f54fdc914fe913ab4498c8_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2ad76b911e4043789101aed2dbf440ae_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/e17baf67e9f8449caf712d4051dd5fe1_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/24d8d17c07e14dd2a02fd0e742efbe65_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/df4c1f22e3cd45278c5b1c302ca5846b_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/df67f2d74c304c439bc538084f3f7d17_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/086e35c9d78e45bd8b569a77f690a707_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/42859e3370e047078270b471641f3834_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/fd7c9efe184a4243a17c68122e2df491_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/4a1fae13aee544f5a0765eb779e9cde8_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/68bbb685794c44e3bc7351ad2b7035cf_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/84c6c708afb44a5397bf503c998d1d7a_vhrs.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/36163f1368a04489bb1b4606bd579db8_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/36163f1368a04489bb1b4606bd579db8_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/36163f1368a04489bb1b4606bd579db8_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9fd1507d61f54fdc914fe913ab4498c8_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9fd1507d61f54fdc914fe913ab4498c8_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9fd1507d61f54fdc914fe913ab4498c8_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2ad76b911e4043789101aed2dbf440ae_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2ad76b911e4043789101aed2dbf440ae_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2ad76b911e4043789101aed2dbf440ae_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/e17baf67e9f8449caf712d4051dd5fe1_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/e17baf67e9f8449caf712d4051dd5fe1_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/e17baf67e9f8449caf712d4051dd5fe1_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/24d8d17c07e14dd2a02fd0e742efbe65_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/24d8d17c07e14dd2a02fd0e742efbe65_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/24d8d17c07e14dd2a02fd0e742efbe65_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/df4c1f22e3cd45278c5b1c302ca5846b_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/df4c1f22e3cd45278c5b1c302ca5846b_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/df4c1f22e3cd45278c5b1c302ca5846b_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/df67f2d74c304c439bc538084f3f7d17_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/df67f2d74c304c439bc538084f3f7d17_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/df67f2d74c304c439bc538084f3f7d17_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/086e35c9d78e45bd8b569a77f690a707_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/086e35c9d78e45bd8b569a77f690a707_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/086e35c9d78e45bd8b569a77f690a707_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/42859e3370e047078270b471641f3834_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/42859e3370e047078270b471641f3834_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/42859e3370e047078270b471641f3834_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/fd7c9efe184a4243a17c68122e2df491_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/fd7c9efe184a4243a17c68122e2df491_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/fd7c9efe184a4243a17c68122e2df491_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/4a1fae13aee544f5a0765eb779e9cde8_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/4a1fae13aee544f5a0765eb779e9cde8_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/4a1fae13aee544f5a0765eb779e9cde8_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/68bbb685794c44e3bc7351ad2b7035cf_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/68bbb685794c44e3bc7351ad2b7035cf_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/68bbb685794c44e3bc7351ad2b7035cf_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/84c6c708afb44a5397bf503c998d1d7a_vhrs.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/84c6c708afb44a5397bf503c998d1d7a_vhrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/84c6c708afb44a5397bf503c998d1d7a_vhrs.jpg"
}
]
},
"details": null,
"facility": {
"id": null,
"state": null,
"zip": null,
"lat": null,
"lng": null,
"office_name": null
},
"distance": null
}
},
"usage": {
"monthly_quota_left": 100
}
}
No test yet.
Returns sale history for a vehicle by VIN or lot number. Use this endpoint to retrieve auction sale records, including platform, sale date, price, status and related pagination data when multiple records are available.
export APIBARA_API_KEY="YOUR_API_KEY"
curl --request GET \
--url "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/history?per_page=12" \
--header "Accept: application/json" \
--header "X-API-Key: ${APIBARA_API_KEY}"
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/history?per_page=12", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": process.env.APIBARA_API_KEY || 'YOUR_API_KEY',
}
});
if (!response.ok) {
throw new Error(`Apibara API error: ${response.status}`);
}
const data = await response.json();
console.log(data);
type ApibaraResponse = Record<string, unknown>;
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/history?per_page=12", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": process.env.APIBARA_API_KEY ?? 'YOUR_API_KEY',
} satisfies Record<string, string>
});
if (!response.ok) {
throw new Error(`Apibara API error: ${response.status}`);
}
const data = await response.json() as ApibaraResponse;
console.log(data);
import os
import requests
url = "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/history?per_page=12"
headers = {
"Accept": "application/json",
"X-API-Key": os.getenv('APIBARA_API_KEY', 'YOUR_API_KEY'),
}
response = requests.request("GET", url, headers=headers)
response.raise_for_status()
print(response.json())
$apiKey = getenv('APIBARA_API_KEY') ?: 'YOUR_API_KEY';
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_URL => "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/history?per_page=12",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Accept: application/json",
'X-API-Key: ' . $apiKey,
],
]);
$response = curl_exec($ch);
$error = curl_error($ch);
curl_close($ch);
if ($error) {
throw new RuntimeException($error);
}
$data = json_decode($response, true);
print_r($data);
use Illuminate\Support\Facades\Http;
$apiKey = config('services.apibara.key') ?: env('APIBARA_API_KEY', 'YOUR_API_KEY');
$response = Http::withHeaders([
"Accept" => "application/json",
"X-API-Key" => $apiKey,
])->get("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/history?per_page=12");
$data = $response->json();
import Foundation
let apiKey = ProcessInfo.processInfo.environment["APIBARA_API_KEY"] ?? "YOUR_API_KEY"
let url = URL(string: "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/history?per_page=12")!
var request = URLRequest(url: url)
request.httpMethod = "GET"
request.setValue("application/json", forHTTPHeaderField: "Accept")
request.setValue(apiKey, forHTTPHeaderField: "X-API-Key")
let (data, response) = try await URLSession.shared.data(for: request)
if let httpResponse = response as? HTTPURLResponse, !(200...299).contains(httpResponse.statusCode) {
throw NSError(domain: "ApibaraAPI", code: httpResponse.statusCode)
}
let json = try JSONSerialization.jsonObject(with: data)
print(json)
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
String apiKey = System.getenv().getOrDefault("APIBARA_API_KEY", "YOUR_API_KEY");
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/history?per_page=12"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.header("Accept", "application/json")
.header("X-API-Key", apiKey)
.build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
import java.net.URI
import java.net.http.HttpClient
import java.net.http.HttpRequest
import java.net.http.HttpResponse
val apiKey = System.getenv("APIBARA_API_KEY") ?: "YOUR_API_KEY"
val client = HttpClient.newHttpClient()
val request = HttpRequest.newBuilder()
.uri(URI.create("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/history?per_page=12"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.header("Accept", "application/json")
.header("X-API-Key", apiKey)
.build()
val response = client.send(request, HttpResponse.BodyHandlers.ofString())
println(response.body())
using System.Net.Http;
using System.Text;
var apiKey = Environment.GetEnvironmentVariable("APIBARA_API_KEY") ?? "YOUR_API_KEY";
using var client = new HttpClient();
using var request = new HttpRequestMessage(HttpMethod.Get, "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/history?per_page=12");
request.Headers.TryAddWithoutValidation("Accept", "application/json");
request.Headers.TryAddWithoutValidation("X-API-Key", apiKey);
using var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
var json = await response.Content.ReadAsStringAsync();
Console.WriteLine(json);
package main
import (
"fmt"
"io"
"net/http"
"os"
)
func main() {
apiKey := os.Getenv("APIBARA_API_KEY")
if apiKey == "" {
apiKey = "YOUR_API_KEY"
}
req, err := http.NewRequest("GET", "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/history?per_page=12", nil)
if err != nil {
panic(err)
}
req.Header.Set("Accept", "application/json")
req.Header.Set("X-API-Key", apiKey)
res, err := http.DefaultClient.Do(req)
if err != nil {
panic(err)
}
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}
require 'net/http'
require 'json'
require 'uri'
api_key = ENV.fetch('APIBARA_API_KEY', 'YOUR_API_KEY')
uri = URI("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/history?per_page=12")
request = Net::HTTP::Get.new(uri)
request["Accept"] = "application/json"
request["X-API-Key"] = api_key
response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: uri.scheme == 'https') do |http|
http.request(request)
end
puts JSON.pretty_generate(JSON.parse(response.body))
$apiKey = getenv('APIBARA_API_KEY') ?: 'YOUR_API_KEY';
$response = wp_remote_request("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/history?per_page=12", [
'method' => "GET",
'headers' => [
"Accept" => "application/json",
"X-API-Key" => $apiKey,
],
'timeout' => 30,
]);
if (is_wp_error($response)) {
return $response->get_error_message();
}
$body = wp_remote_retrieve_body($response);
$data = json_decode($body, true);
import { NextResponse } from 'next/server';
export async function GET() {
const apiKey = process.env.APIBARA_API_KEY;
if (!apiKey) {
return NextResponse.json({ error: 'APIBARA_API_KEY is missing' }, { status: 500 });
}
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/history?per_page=12", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": apiKey,
},
cache: 'no-store',
});
const data = await response.json();
return NextResponse.json(data, { status: response.status });
}
# MCP / AI tool notes
Tool name: apibara_vehicle_auction_api
Method: GET
Endpoint path: /api/v1/vehicle-auction/vehicles/{slugVin}/history
Example URL: https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/history?per_page=12
Required headers:
- Accept: application/json
- X-API-Key: keep this secret and store it server-side
Agent instructions:
1. Never expose API keys in frontend code, public logs, screenshots, or client bundles.
2. Use this endpoint only from a trusted backend, MCP server, server route, or secure integration layer.
3. Parse JSON responses and surface only the fields needed by the user.
4. For search endpoints, prefer specific filters such as VIN, lot number, make, model, year, location, and auction status.
5. For paginated endpoints, follow cursor or pagination fields from the API response.
{
"ok": true,
"status": 200,
"response_time_ms": 317,
"method": "GET",
"url": "https://apibara.tech/api/v1/vehicle-auction/vehicles/KM8J3CA26GU045424/history",
"request": {
"path_params": {
"slugVin": "KM8J3CA26GU045424"
},
"query": [],
"body": []
},
"response": {
"ok": true,
"data": {
"vehicle": {
"slug_vin": "KM8J3CA26GU045424",
"vin": "KM8J3CA26GU045424",
"platform": "copart",
"lot_number": "85454225"
},
"history": [
{
"platform": "copart",
"date": "2026-07-08",
"price": 3300,
"status": "Sold"
},
{
"platform": "copart",
"date": "2026-07-06",
"price": 2100,
"status": "Sold on Approval"
}
]
},
"meta": {
"per_page": 50,
"next_cursor": null,
"prev_cursor": null
}
},
"usage": {
"monthly_quota_left": 25
}
}
No test yet.
Returns a list of related upcoming vehicle lots from the same platform, make and model. Use this endpoint to show similar active or upcoming Copart and IAAI auction lots for the selected vehicle when matching records are available.
export APIBARA_API_KEY="YOUR_API_KEY"
curl --request GET \
--url "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/related" \
--header "Accept: application/json" \
--header "X-API-Key: ${APIBARA_API_KEY}"
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/related", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": process.env.APIBARA_API_KEY || 'YOUR_API_KEY',
}
});
if (!response.ok) {
throw new Error(`Apibara API error: ${response.status}`);
}
const data = await response.json();
console.log(data);
type ApibaraResponse = Record<string, unknown>;
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/related", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": process.env.APIBARA_API_KEY ?? 'YOUR_API_KEY',
} satisfies Record<string, string>
});
if (!response.ok) {
throw new Error(`Apibara API error: ${response.status}`);
}
const data = await response.json() as ApibaraResponse;
console.log(data);
import os
import requests
url = "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/related"
headers = {
"Accept": "application/json",
"X-API-Key": os.getenv('APIBARA_API_KEY', 'YOUR_API_KEY'),
}
response = requests.request("GET", url, headers=headers)
response.raise_for_status()
print(response.json())
$apiKey = getenv('APIBARA_API_KEY') ?: 'YOUR_API_KEY';
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_URL => "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/related",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Accept: application/json",
'X-API-Key: ' . $apiKey,
],
]);
$response = curl_exec($ch);
$error = curl_error($ch);
curl_close($ch);
if ($error) {
throw new RuntimeException($error);
}
$data = json_decode($response, true);
print_r($data);
use Illuminate\Support\Facades\Http;
$apiKey = config('services.apibara.key') ?: env('APIBARA_API_KEY', 'YOUR_API_KEY');
$response = Http::withHeaders([
"Accept" => "application/json",
"X-API-Key" => $apiKey,
])->get("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/related");
$data = $response->json();
import Foundation
let apiKey = ProcessInfo.processInfo.environment["APIBARA_API_KEY"] ?? "YOUR_API_KEY"
let url = URL(string: "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/related")!
var request = URLRequest(url: url)
request.httpMethod = "GET"
request.setValue("application/json", forHTTPHeaderField: "Accept")
request.setValue(apiKey, forHTTPHeaderField: "X-API-Key")
let (data, response) = try await URLSession.shared.data(for: request)
if let httpResponse = response as? HTTPURLResponse, !(200...299).contains(httpResponse.statusCode) {
throw NSError(domain: "ApibaraAPI", code: httpResponse.statusCode)
}
let json = try JSONSerialization.jsonObject(with: data)
print(json)
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
String apiKey = System.getenv().getOrDefault("APIBARA_API_KEY", "YOUR_API_KEY");
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/related"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.header("Accept", "application/json")
.header("X-API-Key", apiKey)
.build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
import java.net.URI
import java.net.http.HttpClient
import java.net.http.HttpRequest
import java.net.http.HttpResponse
val apiKey = System.getenv("APIBARA_API_KEY") ?: "YOUR_API_KEY"
val client = HttpClient.newHttpClient()
val request = HttpRequest.newBuilder()
.uri(URI.create("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/related"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.header("Accept", "application/json")
.header("X-API-Key", apiKey)
.build()
val response = client.send(request, HttpResponse.BodyHandlers.ofString())
println(response.body())
using System.Net.Http;
using System.Text;
var apiKey = Environment.GetEnvironmentVariable("APIBARA_API_KEY") ?? "YOUR_API_KEY";
using var client = new HttpClient();
using var request = new HttpRequestMessage(HttpMethod.Get, "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/related");
request.Headers.TryAddWithoutValidation("Accept", "application/json");
request.Headers.TryAddWithoutValidation("X-API-Key", apiKey);
using var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
var json = await response.Content.ReadAsStringAsync();
Console.WriteLine(json);
package main
import (
"fmt"
"io"
"net/http"
"os"
)
func main() {
apiKey := os.Getenv("APIBARA_API_KEY")
if apiKey == "" {
apiKey = "YOUR_API_KEY"
}
req, err := http.NewRequest("GET", "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/related", nil)
if err != nil {
panic(err)
}
req.Header.Set("Accept", "application/json")
req.Header.Set("X-API-Key", apiKey)
res, err := http.DefaultClient.Do(req)
if err != nil {
panic(err)
}
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}
require 'net/http'
require 'json'
require 'uri'
api_key = ENV.fetch('APIBARA_API_KEY', 'YOUR_API_KEY')
uri = URI("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/related")
request = Net::HTTP::Get.new(uri)
request["Accept"] = "application/json"
request["X-API-Key"] = api_key
response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: uri.scheme == 'https') do |http|
http.request(request)
end
puts JSON.pretty_generate(JSON.parse(response.body))
$apiKey = getenv('APIBARA_API_KEY') ?: 'YOUR_API_KEY';
$response = wp_remote_request("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/related", [
'method' => "GET",
'headers' => [
"Accept" => "application/json",
"X-API-Key" => $apiKey,
],
'timeout' => 30,
]);
if (is_wp_error($response)) {
return $response->get_error_message();
}
$body = wp_remote_retrieve_body($response);
$data = json_decode($body, true);
import { NextResponse } from 'next/server';
export async function GET() {
const apiKey = process.env.APIBARA_API_KEY;
if (!apiKey) {
return NextResponse.json({ error: 'APIBARA_API_KEY is missing' }, { status: 500 });
}
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/related", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": apiKey,
},
cache: 'no-store',
});
const data = await response.json();
return NextResponse.json(data, { status: response.status });
}
# MCP / AI tool notes
Tool name: apibara_vehicle_auction_api
Method: GET
Endpoint path: /api/v1/vehicle-auction/vehicles/{slugVin}/related
Example URL: https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/related
Required headers:
- Accept: application/json
- X-API-Key: keep this secret and store it server-side
Agent instructions:
1. Never expose API keys in frontend code, public logs, screenshots, or client bundles.
2. Use this endpoint only from a trusted backend, MCP server, server route, or secure integration layer.
3. Parse JSON responses and surface only the fields needed by the user.
4. For search endpoints, prefer specific filters such as VIN, lot number, make, model, year, location, and auction status.
5. For paginated endpoints, follow cursor or pagination fields from the API response.
{
"ok": true,
"status": 200,
"response_time_ms": 513,
"method": "GET",
"url": "https://apibara.tech/api/v1/vehicle-auction/vehicles/KM8J3CA26GU045424/related",
"request": {
"path_params": {
"slugVin": "KM8J3CA26GU045424"
},
"query": [],
"body": []
},
"response": {
"ok": true,
"data": {
"source": {
"slug_vin": "2016-hyundai-tucson-limited-KM8J3CA26GU045424",
"vin": "KM8J3CA26GU045424",
"platform": "copart",
"platform_id": 1,
"lot_number": "85454225",
"ad": "2026-07-08T12:48:19+00:00",
"title": "2016 HYUNDAI TUCSON LIMITED",
"year": 2016,
"make": "HYUNDAI",
"model": "TUCSON",
"type": null,
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Jul 08, 2026 15:48",
"full_date": "2026-07-08T12:48:19+00:00",
"diff_minutes": -12,
"ad": "2026-07-08T12:48:19+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": false,
"auction_at": "2026-07-08T12:48:19+00:00",
"timed_end_at": null,
"last_sold_day": "2026-07-08",
"last_sold_status": "Sold",
"sold_buy_now": true,
"sold_timed": false
},
"pricing": {
"current_bid_usd": null,
"current_bid2_usd": 0,
"buy_now_usd": null,
"last_sold_price_usd": 3300,
"estimated_cost": {
"from": 475,
"to": 5000,
"text": "$475 - $5,000"
}
},
"location": {
"display": "Spartanburg (SC)",
"send_from": "Savannah",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "ENGINE START PROGRAM",
"label": "Engine start program",
"class_hint": "warning"
},
"has_key": true,
"loss": null,
"primary_damage": "Mechanical",
"secondary_damage": null
},
"odometer": {
"mi": 117076,
"km": 188415
},
"vehicle_specs": {
"exterior_color": "Charcoal",
"engine": {
"raw": "1.6L 4",
"size_l": "1.6",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "ALL WHEEL DRIVE",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERTIFICATE OF TITLE",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 12,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f9aa5195992742bba981f56b93429603_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/28348a787ed54a5695a3d7e9e569d4e8_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/02784534e0c14ae498f7b21631858518_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/73613c448b3c48d699d039bf71142e7f_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/28941302752e43798f75437cbc485766_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/b3b1ad461f9b47e295677cfba07cacb9_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0825b1aae7fe4855b11d5ae721b3c238_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/68ce52fa46d54ece82862d7d155c22f5_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/aca5027487c64f0f89c161726715cb96_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/aacebac8a9f9444ead56c45dda460036_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9b0f6ac507e94946b28f8e097cfd504b_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/cd98c0ebf76648c29c3eaa03e0f4fe3e_vhrs.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f9aa5195992742bba981f56b93429603_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f9aa5195992742bba981f56b93429603_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f9aa5195992742bba981f56b93429603_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/28348a787ed54a5695a3d7e9e569d4e8_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/28348a787ed54a5695a3d7e9e569d4e8_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/28348a787ed54a5695a3d7e9e569d4e8_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/02784534e0c14ae498f7b21631858518_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/02784534e0c14ae498f7b21631858518_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/02784534e0c14ae498f7b21631858518_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/73613c448b3c48d699d039bf71142e7f_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/73613c448b3c48d699d039bf71142e7f_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/73613c448b3c48d699d039bf71142e7f_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/28941302752e43798f75437cbc485766_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/28941302752e43798f75437cbc485766_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/28941302752e43798f75437cbc485766_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/b3b1ad461f9b47e295677cfba07cacb9_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/b3b1ad461f9b47e295677cfba07cacb9_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/b3b1ad461f9b47e295677cfba07cacb9_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0825b1aae7fe4855b11d5ae721b3c238_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0825b1aae7fe4855b11d5ae721b3c238_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0825b1aae7fe4855b11d5ae721b3c238_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/68ce52fa46d54ece82862d7d155c22f5_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/68ce52fa46d54ece82862d7d155c22f5_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/68ce52fa46d54ece82862d7d155c22f5_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/aca5027487c64f0f89c161726715cb96_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/aca5027487c64f0f89c161726715cb96_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/aca5027487c64f0f89c161726715cb96_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/aacebac8a9f9444ead56c45dda460036_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/aacebac8a9f9444ead56c45dda460036_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/aacebac8a9f9444ead56c45dda460036_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9b0f6ac507e94946b28f8e097cfd504b_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9b0f6ac507e94946b28f8e097cfd504b_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9b0f6ac507e94946b28f8e097cfd504b_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/cd98c0ebf76648c29c3eaa03e0f4fe3e_vhrs.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/cd98c0ebf76648c29c3eaa03e0f4fe3e_vhrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/cd98c0ebf76648c29c3eaa03e0f4fe3e_vhrs.jpg"
}
]
},
"details": null,
"facility": {
"id": null,
"state": null,
"zip": null,
"lat": null,
"lng": null,
"office_name": null
},
"distance": null
},
"upcoming": [
{
"slug_vin": "2014-hyundai-tucson-gls-KM8JU3AG2EU888672",
"vin": "KM8JU3AG2EU888672",
"platform": "copart",
"platform_id": 1,
"lot_number": "99266835",
"ad": "2026-02-16T20:00:00+00:00",
"title": "2014 HYUNDAI TUCSON GLS",
"year": 2014,
"make": "HYUNDAI",
"model": "TUCSON",
"type": null,
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Feb 16, 2026 22:00",
"full_date": "2026-02-16T20:00:00+00:00",
"diff_minutes": -204060,
"ad": "2026-02-16T20:00:00+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-02-16T20:00:00+00:00",
"timed_end_at": null,
"last_sold_day": "2026-02-16",
"last_sold_status": "Sold",
"sold_buy_now": false,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 1100,
"current_bid2_usd": 1100,
"buy_now_usd": 1100,
"last_sold_price_usd": 1100,
"estimated_cost": {
"from": 200,
"to": 4065,
"text": "$200 - $4,065"
}
},
"location": {
"display": "Appleton (WI)",
"send_from": "Chicago",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "ENHANCED VEHICLES",
"label": "Enhanced vehicles",
"class_hint": "warning"
},
"has_key": true,
"loss": null,
"primary_damage": "Mechanical",
"secondary_damage": null
},
"odometer": {
"mi": 156738,
"km": 252245
},
"vehicle_specs": {
"exterior_color": "White",
"engine": {
"raw": "2.4L 4",
"size_l": "2.4",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "Front-wheel Drive",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERTIFICATE OF TITLE",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 12,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/ca6ec68ffd9a4b23b1df1e5e5ca3b06a_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/431158bf050f4cd592795a0072556571_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/7c39099c58a64da39fe60466e16bfdff_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/ed265d2748344b6eab62f486f3c798de_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f666f709cb0f48e5a9c3dc305366eaa1_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/9b92dbdccaae4f33818c6b05d94f95de_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/eac677754a5e4e78ac00871ec9625746_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d10be4885777459b8e8e3e1c8e970f97_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/1c8151bd387c4635aa698aa1f81d25d7_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/168ae37f6ae94a1d8bf682a9c3e156e5_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/be6270b663624b77880bbb7d80d7a315_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/233be8a590a94a009c984ef9a7db0105_vful.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/ca6ec68ffd9a4b23b1df1e5e5ca3b06a_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/ca6ec68ffd9a4b23b1df1e5e5ca3b06a_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/ca6ec68ffd9a4b23b1df1e5e5ca3b06a_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/431158bf050f4cd592795a0072556571_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/431158bf050f4cd592795a0072556571_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/431158bf050f4cd592795a0072556571_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/7c39099c58a64da39fe60466e16bfdff_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/7c39099c58a64da39fe60466e16bfdff_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/7c39099c58a64da39fe60466e16bfdff_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/ed265d2748344b6eab62f486f3c798de_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/ed265d2748344b6eab62f486f3c798de_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/ed265d2748344b6eab62f486f3c798de_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f666f709cb0f48e5a9c3dc305366eaa1_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f666f709cb0f48e5a9c3dc305366eaa1_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f666f709cb0f48e5a9c3dc305366eaa1_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/9b92dbdccaae4f33818c6b05d94f95de_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/9b92dbdccaae4f33818c6b05d94f95de_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/9b92dbdccaae4f33818c6b05d94f95de_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/eac677754a5e4e78ac00871ec9625746_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/eac677754a5e4e78ac00871ec9625746_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/eac677754a5e4e78ac00871ec9625746_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d10be4885777459b8e8e3e1c8e970f97_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d10be4885777459b8e8e3e1c8e970f97_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d10be4885777459b8e8e3e1c8e970f97_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/1c8151bd387c4635aa698aa1f81d25d7_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/1c8151bd387c4635aa698aa1f81d25d7_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/1c8151bd387c4635aa698aa1f81d25d7_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/168ae37f6ae94a1d8bf682a9c3e156e5_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/168ae37f6ae94a1d8bf682a9c3e156e5_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/168ae37f6ae94a1d8bf682a9c3e156e5_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/be6270b663624b77880bbb7d80d7a315_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/be6270b663624b77880bbb7d80d7a315_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/be6270b663624b77880bbb7d80d7a315_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/233be8a590a94a009c984ef9a7db0105_vful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/233be8a590a94a009c984ef9a7db0105_vful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/233be8a590a94a009c984ef9a7db0105_vhrs.jpg"
}
]
},
"details": null,
"facility": {
"id": 191,
"state": null,
"zip": "54914",
"lat": 44.24000000000000198951966012828052043914794921875,
"lng": -88.47088999999999714418663643300533294677734375,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2010-hyundai-tucson-gls-KM8JT3AC4AU093911",
"vin": "KM8JT3AC4AU093911",
"platform": "copart",
"platform_id": 1,
"lot_number": "61218515",
"ad": "2026-02-17T13:00:00+00:00",
"title": "2010 HYUNDAI TUCSON GLS",
"year": 2010,
"make": "HYUNDAI",
"model": "TUCSON",
"type": null,
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Feb 17, 2026 15:00",
"full_date": "2026-02-17T13:00:00+00:00",
"diff_minutes": -203040,
"ad": "2026-02-17T13:00:00+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-02-17T13:00:00+00:00",
"timed_end_at": null,
"last_sold_day": "2026-02-17",
"last_sold_status": "Sold",
"sold_buy_now": false,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 725,
"current_bid2_usd": 725,
"buy_now_usd": 725,
"last_sold_price_usd": 725,
"estimated_cost": {
"from": 225,
"to": 2750,
"text": "$225 - $2,750"
}
},
"location": {
"display": "Atlanta South (GA)",
"send_from": "Savannah",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Front end",
"secondary_damage": null
},
"odometer": {
"mi": 156009,
"km": 251072
},
"vehicle_specs": {
"exterior_color": "Silver",
"engine": {
"raw": "2.4L 4",
"size_l": "2.4",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "Front-wheel Drive",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERT OF TITLE-SALVAGE",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 13,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/5fee340174c14243838a6b07c5eb48f6_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/1ff0d631655c4a1db7fc26bd92569953_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/94726e3656dd4c628c4181361160369d_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/85468323dd8543b1a09b695dcc1df315_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/2edbf642fac24684929001995ce2c567_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/9f0be8907cfd4abebf34b8ada0c9a88f_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/d45b8c24c3e549a293453d69ca52c94e_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/b458081399d4483494f18d27b4402558_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/06cb0ebe07574c278fac43dea2f4f8cf_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/c4bfd5a2a05742c9a7a9dcf7679ff7bd_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/9eff06a60356493b8a8b381b42f5bb3c_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/51eb34fe8bfa4135b989b3596cec7d8a_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/deb985adeac04765a8549b5f09e2a67b_ful.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/5fee340174c14243838a6b07c5eb48f6_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/5fee340174c14243838a6b07c5eb48f6_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/5fee340174c14243838a6b07c5eb48f6_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/1ff0d631655c4a1db7fc26bd92569953_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/1ff0d631655c4a1db7fc26bd92569953_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/1ff0d631655c4a1db7fc26bd92569953_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/94726e3656dd4c628c4181361160369d_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/94726e3656dd4c628c4181361160369d_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/94726e3656dd4c628c4181361160369d_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/85468323dd8543b1a09b695dcc1df315_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/85468323dd8543b1a09b695dcc1df315_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/85468323dd8543b1a09b695dcc1df315_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/2edbf642fac24684929001995ce2c567_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/2edbf642fac24684929001995ce2c567_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/2edbf642fac24684929001995ce2c567_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/9f0be8907cfd4abebf34b8ada0c9a88f_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/9f0be8907cfd4abebf34b8ada0c9a88f_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/9f0be8907cfd4abebf34b8ada0c9a88f_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/d45b8c24c3e549a293453d69ca52c94e_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/d45b8c24c3e549a293453d69ca52c94e_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/d45b8c24c3e549a293453d69ca52c94e_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/b458081399d4483494f18d27b4402558_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/b458081399d4483494f18d27b4402558_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/b458081399d4483494f18d27b4402558_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/06cb0ebe07574c278fac43dea2f4f8cf_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/06cb0ebe07574c278fac43dea2f4f8cf_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/06cb0ebe07574c278fac43dea2f4f8cf_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/c4bfd5a2a05742c9a7a9dcf7679ff7bd_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/c4bfd5a2a05742c9a7a9dcf7679ff7bd_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/c4bfd5a2a05742c9a7a9dcf7679ff7bd_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/9eff06a60356493b8a8b381b42f5bb3c_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/9eff06a60356493b8a8b381b42f5bb3c_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/9eff06a60356493b8a8b381b42f5bb3c_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/51eb34fe8bfa4135b989b3596cec7d8a_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/51eb34fe8bfa4135b989b3596cec7d8a_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/51eb34fe8bfa4135b989b3596cec7d8a_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/deb985adeac04765a8549b5f09e2a67b_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/deb985adeac04765a8549b5f09e2a67b_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0625/deb985adeac04765a8549b5f09e2a67b_hrs.jpg"
}
]
},
"details": null,
"facility": {
"id": 146,
"state": null,
"zip": "30294",
"lat": 33.62557000000000329009708366356790065765380859375,
"lng": -84.2471599999999938290784484706819057464599609375,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2019-hyundai-tucson-se-KM8J23A4XKU915270",
"vin": "KM8J23A4XKU915270",
"platform": "copart",
"platform_id": 1,
"lot_number": "99479565",
"ad": "2026-02-17T13:00:00+00:00",
"title": "2019 HYUNDAI TUCSON SE",
"year": 2019,
"make": "HYUNDAI",
"model": "TUCSON",
"type": null,
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Feb 17, 2026 15:00",
"full_date": "2026-02-17T13:00:00+00:00",
"diff_minutes": -203040,
"ad": "2026-02-17T13:00:00+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-02-17T13:00:00+00:00",
"timed_end_at": null,
"last_sold_day": "2026-02-17",
"last_sold_status": "Sold",
"sold_buy_now": false,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 2300,
"current_bid2_usd": 2300,
"buy_now_usd": 2300,
"last_sold_price_usd": 2300,
"estimated_cost": {
"from": 175,
"to": 10700,
"text": "$175 - $10,700"
}
},
"location": {
"display": "Hampton (VA)",
"send_from": "Norfolk",
"state": null
},
"seller": {
"name": "Usaa",
"type": "insurance",
"class": "bg-success-C2F7D7",
"text_class": "text-success"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Front end",
"secondary_damage": null
},
"odometer": {
"mi": 77013,
"km": 123940
},
"vehicle_specs": {
"exterior_color": "Blue",
"engine": {
"raw": "2.0L 4",
"size_l": "2.0",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "Front-wheel Drive",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERT OF TITLE - SALVAGE",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 10,
"has_video": true,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/03445158ee084f41aa93b336cf65664d_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/a88da5ba7c704164bcbc7b61c790bf95_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f96a3e075151444a9eda30e8ff8e8c54_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/13e45800e1854a0d86dab88e20c5077e_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f4ea6b8e47664139839c162ff3112eea_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/2b53903ceacc4eaf9915cb0cbfe72eda_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/e3a5bd597386436790af5b192548741e_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/92532c1351424bf58fedc91dd0349c03_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/32cd68fb0c4549739ea7353825bdd621_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f3a44c92b9d64dbdadb5cf5e7edde288_ful.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/03445158ee084f41aa93b336cf65664d_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/03445158ee084f41aa93b336cf65664d_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/03445158ee084f41aa93b336cf65664d_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/a88da5ba7c704164bcbc7b61c790bf95_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/a88da5ba7c704164bcbc7b61c790bf95_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/a88da5ba7c704164bcbc7b61c790bf95_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f96a3e075151444a9eda30e8ff8e8c54_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f96a3e075151444a9eda30e8ff8e8c54_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f96a3e075151444a9eda30e8ff8e8c54_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/13e45800e1854a0d86dab88e20c5077e_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/13e45800e1854a0d86dab88e20c5077e_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/13e45800e1854a0d86dab88e20c5077e_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f4ea6b8e47664139839c162ff3112eea_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f4ea6b8e47664139839c162ff3112eea_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f4ea6b8e47664139839c162ff3112eea_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/2b53903ceacc4eaf9915cb0cbfe72eda_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/2b53903ceacc4eaf9915cb0cbfe72eda_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/2b53903ceacc4eaf9915cb0cbfe72eda_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/e3a5bd597386436790af5b192548741e_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/e3a5bd597386436790af5b192548741e_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/e3a5bd597386436790af5b192548741e_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/92532c1351424bf58fedc91dd0349c03_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/92532c1351424bf58fedc91dd0349c03_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/92532c1351424bf58fedc91dd0349c03_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/32cd68fb0c4549739ea7353825bdd621_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/32cd68fb0c4549739ea7353825bdd621_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/32cd68fb0c4549739ea7353825bdd621_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f3a44c92b9d64dbdadb5cf5e7edde288_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f3a44c92b9d64dbdadb5cf5e7edde288_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f3a44c92b9d64dbdadb5cf5e7edde288_hrs.jpg"
},
{
"type": "video",
"url": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/1f003e2ec3da4236803422efe64a1dc4_O.mp4"
}
]
},
"details": null,
"facility": {
"id": 162,
"state": null,
"zip": "23666",
"lat": 37.070549999999997226041159592568874359130859375,
"lng": -76.385009999999994079189491458237171173095703125,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2018-hyundai-tucson-value-KM8J3CA22JU707314",
"vin": "KM8J3CA22JU707314",
"platform": "copart",
"platform_id": 1,
"lot_number": "75896525",
"ad": "2026-02-20T13:00:00+00:00",
"title": "2018 HYUNDAI TUCSON VALUE",
"year": 2018,
"make": "HYUNDAI",
"model": "TUCSON",
"type": null,
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Feb 20, 2026 15:00",
"full_date": "2026-02-20T13:00:00+00:00",
"diff_minutes": -198720,
"ad": "2026-02-20T13:00:00+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-02-20T13:00:00+00:00",
"timed_end_at": null,
"last_sold_day": "2026-02-20",
"last_sold_status": "Sold",
"sold_buy_now": false,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 975,
"current_bid2_usd": 975,
"buy_now_usd": 975,
"last_sold_price_usd": 975,
"estimated_cost": {
"from": 150,
"to": 14725,
"text": "$150 - $14,725"
}
},
"location": {
"display": "Columbus (OH)",
"send_from": "Norfolk",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Front end",
"secondary_damage": null
},
"odometer": {
"mi": 107779,
"km": 173453
},
"vehicle_specs": {
"exterior_color": "White",
"engine": {
"raw": "1.6L 4",
"size_l": "1.6",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "All wheel drive",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERT OF TITLE-SALVAGE",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 14,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/d2e4c25cfd674a18a646a1edb52f08e0_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/fd55edcd02d3410d8be0c3b60d41a65b_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/9ff726298880498eaf647ca616fe926f_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/9f18c5f1577f47cfb06effe94964123c_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/5de029fb90c64c0382a6da16888fccfb_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/d0b12647610149d383540bff6ea436c9_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/5d41422d9a524bf3bf3b41a76db80dcc_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/bfa4f3cb6be24816b2bc5d78add8c361_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/727a3a45b152495983a79448af20ccc3_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/904515a5f9a442dc94446d3267d3888c_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/63d342671b4f4a608b8c666b439dd955_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/84c408f312aa4369a232c87492ea0dc2_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/223cf4ae67ba45e3aed0bd96f15a087a_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/2094446f67d640e18c45cf1645b391d3_vful.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/d2e4c25cfd674a18a646a1edb52f08e0_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/d2e4c25cfd674a18a646a1edb52f08e0_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/d2e4c25cfd674a18a646a1edb52f08e0_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/fd55edcd02d3410d8be0c3b60d41a65b_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/fd55edcd02d3410d8be0c3b60d41a65b_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/fd55edcd02d3410d8be0c3b60d41a65b_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/9ff726298880498eaf647ca616fe926f_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/9ff726298880498eaf647ca616fe926f_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/9ff726298880498eaf647ca616fe926f_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/9f18c5f1577f47cfb06effe94964123c_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/9f18c5f1577f47cfb06effe94964123c_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/9f18c5f1577f47cfb06effe94964123c_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/5de029fb90c64c0382a6da16888fccfb_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/5de029fb90c64c0382a6da16888fccfb_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/5de029fb90c64c0382a6da16888fccfb_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/d0b12647610149d383540bff6ea436c9_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/d0b12647610149d383540bff6ea436c9_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/d0b12647610149d383540bff6ea436c9_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/5d41422d9a524bf3bf3b41a76db80dcc_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/5d41422d9a524bf3bf3b41a76db80dcc_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/5d41422d9a524bf3bf3b41a76db80dcc_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/bfa4f3cb6be24816b2bc5d78add8c361_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/bfa4f3cb6be24816b2bc5d78add8c361_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/bfa4f3cb6be24816b2bc5d78add8c361_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/727a3a45b152495983a79448af20ccc3_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/727a3a45b152495983a79448af20ccc3_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/727a3a45b152495983a79448af20ccc3_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/904515a5f9a442dc94446d3267d3888c_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/904515a5f9a442dc94446d3267d3888c_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/904515a5f9a442dc94446d3267d3888c_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/63d342671b4f4a608b8c666b439dd955_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/63d342671b4f4a608b8c666b439dd955_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/63d342671b4f4a608b8c666b439dd955_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/84c408f312aa4369a232c87492ea0dc2_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/84c408f312aa4369a232c87492ea0dc2_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/84c408f312aa4369a232c87492ea0dc2_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/223cf4ae67ba45e3aed0bd96f15a087a_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/223cf4ae67ba45e3aed0bd96f15a087a_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/223cf4ae67ba45e3aed0bd96f15a087a_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/2094446f67d640e18c45cf1645b391d3_vful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/2094446f67d640e18c45cf1645b391d3_vful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0226/2094446f67d640e18c45cf1645b391d3_vhrs.jpg"
}
]
},
"details": null,
"facility": {
"id": 29,
"state": null,
"zip": "43207",
"lat": 39.89150000000000062527760746888816356658935546875,
"lng": -82.9470000000000027284841053187847137451171875,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2017-hyundai-tucson-limited-KM8J3CA46HU350716",
"vin": "KM8J3CA46HU350716",
"platform": "copart",
"platform_id": 1,
"lot_number": "98129395",
"ad": "2026-02-20T13:00:00+00:00",
"title": "2017 HYUNDAI TUCSON LIMITED",
"year": 2017,
"make": "HYUNDAI",
"model": "TUCSON",
"type": null,
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Feb 20, 2026 15:00",
"full_date": "2026-02-20T13:00:00+00:00",
"diff_minutes": -198720,
"ad": "2026-02-20T13:00:00+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-02-20T13:00:00+00:00",
"timed_end_at": null,
"last_sold_day": "2026-02-20",
"last_sold_status": "Sold",
"sold_buy_now": false,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 3200,
"current_bid2_usd": 3200,
"buy_now_usd": 3200,
"last_sold_price_usd": 3200,
"estimated_cost": {
"from": 125,
"to": 14000,
"text": "$125 - $14,000"
}
},
"location": {
"display": "Walton (KY)",
"send_from": "Savannah",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Front end",
"secondary_damage": null
},
"odometer": {
"mi": 120394,
"km": 193755
},
"vehicle_specs": {
"exterior_color": "Maroon",
"engine": {
"raw": "2.0L 4",
"size_l": "2.0",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "All wheel drive",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERT OF TITLE-SALVAGE",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 14,
"has_video": true,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/0f493b9b9f234cd6a2da0b3e2755b4c1_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/4ea3e1b5f6994879a68517bb773ad40c_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d6406f70a008460599027e9443162406_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/0733190d8ea74559b69e8be4d53fc9c4_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/33011981ca7e46d382e319622220b81a_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/be1b3d6fae1b49b4a82177a84f541ea9_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/e86fce0ad722475a85ea095c3516df03_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/18f29bea165a46f0a35a7351fdb6943e_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f6844cedd561426387b446251854c197_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f57e3fbcd41f4d80b7c13202ada1380d_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f23df172f44b4b5fa02eaf490013dce6_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d16a2228f3b54d85bfe8cefb8caf21ca_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/6817f6f5734a4ac7aa806a26e643bc02_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/29a885d4cd5a4617bc32d32a0c1b938c_vful.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/0f493b9b9f234cd6a2da0b3e2755b4c1_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/0f493b9b9f234cd6a2da0b3e2755b4c1_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/0f493b9b9f234cd6a2da0b3e2755b4c1_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/4ea3e1b5f6994879a68517bb773ad40c_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/4ea3e1b5f6994879a68517bb773ad40c_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/4ea3e1b5f6994879a68517bb773ad40c_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d6406f70a008460599027e9443162406_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d6406f70a008460599027e9443162406_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d6406f70a008460599027e9443162406_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/0733190d8ea74559b69e8be4d53fc9c4_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/0733190d8ea74559b69e8be4d53fc9c4_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/0733190d8ea74559b69e8be4d53fc9c4_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/33011981ca7e46d382e319622220b81a_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/33011981ca7e46d382e319622220b81a_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/33011981ca7e46d382e319622220b81a_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/be1b3d6fae1b49b4a82177a84f541ea9_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/be1b3d6fae1b49b4a82177a84f541ea9_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/be1b3d6fae1b49b4a82177a84f541ea9_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/e86fce0ad722475a85ea095c3516df03_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/e86fce0ad722475a85ea095c3516df03_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/e86fce0ad722475a85ea095c3516df03_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/18f29bea165a46f0a35a7351fdb6943e_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/18f29bea165a46f0a35a7351fdb6943e_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/18f29bea165a46f0a35a7351fdb6943e_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f6844cedd561426387b446251854c197_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f6844cedd561426387b446251854c197_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f6844cedd561426387b446251854c197_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f57e3fbcd41f4d80b7c13202ada1380d_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f57e3fbcd41f4d80b7c13202ada1380d_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f57e3fbcd41f4d80b7c13202ada1380d_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f23df172f44b4b5fa02eaf490013dce6_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f23df172f44b4b5fa02eaf490013dce6_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f23df172f44b4b5fa02eaf490013dce6_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d16a2228f3b54d85bfe8cefb8caf21ca_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d16a2228f3b54d85bfe8cefb8caf21ca_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d16a2228f3b54d85bfe8cefb8caf21ca_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/6817f6f5734a4ac7aa806a26e643bc02_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/6817f6f5734a4ac7aa806a26e643bc02_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/6817f6f5734a4ac7aa806a26e643bc02_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/29a885d4cd5a4617bc32d32a0c1b938c_vful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/29a885d4cd5a4617bc32d32a0c1b938c_vful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/29a885d4cd5a4617bc32d32a0c1b938c_vhrs.jpg"
},
{
"type": "video",
"url": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1225/182b3980af2642afa5cd768de3e91bea_O.mp4"
}
]
},
"details": null,
"facility": {
"id": 138,
"state": null,
"zip": "41094",
"lat": 38.849840000000000372892827726900577545166015625,
"lng": -84.597520000000002937667886726558208465576171875,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2021-hyundai-tucson-limited-KM8J3CA45MU369073",
"vin": "KM8J3CA45MU369073",
"platform": "copart",
"platform_id": 1,
"lot_number": "73674835",
"ad": "2026-02-20T13:00:00+00:00",
"title": "2021 HYUNDAI TUCSON LIMITED",
"year": 2021,
"make": "HYUNDAI",
"model": "TUCSON",
"type": null,
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Feb 20, 2026 15:00",
"full_date": "2026-02-20T13:00:00+00:00",
"diff_minutes": -198720,
"ad": "2026-02-20T13:00:00+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-02-20T13:00:00+00:00",
"timed_end_at": null,
"last_sold_day": "2026-02-20",
"last_sold_status": "Sold",
"sold_buy_now": false,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 5300,
"current_bid2_usd": 5300,
"buy_now_usd": 5300,
"last_sold_price_usd": 5300,
"estimated_cost": {
"from": 475,
"to": 11500,
"text": "$475 - $11,500"
}
},
"location": {
"display": "Walton (KY)",
"send_from": "Savannah",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "ENGINE START PROGRAM",
"label": "Engine start program",
"class_hint": "warning"
},
"has_key": true,
"loss": null,
"primary_damage": "Rear end",
"secondary_damage": null
},
"odometer": {
"mi": 51140,
"km": 82302
},
"vehicle_specs": {
"exterior_color": "Red",
"engine": {
"raw": "2.0L 4",
"size_l": "2.0",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "All wheel drive",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERT OF TITLE-SALVAGE",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 13,
"has_video": true,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/087794fd49134eda881ddaf7c4886503_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/ba5a9d8a7e294dba8e4a5d0027e1a1dc_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/2c72ef844c4145b9a945a3634f00fbb2_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/7c310fc9101f411fbb3d0209d8231d56_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/561e8ee4fbc64893a3e8737b5a76f888_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/a01e6c16aa034cc0b6813440d0014986_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/672ca72a19ab41128abdb578d11cdacc_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/a2f560d21c354e03b557cf4062be3517_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/946fc7af053c46b48286417f52f4510e_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/bf2e88194d9f4be591b30295362812f6_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/c52e7354e4ea40509462fc8bfc83edbe_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f5e4bc5c344c4f4f890ea98e719d7728_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d84df718bc7645f491ac260cb2426aa5_vful.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/087794fd49134eda881ddaf7c4886503_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/087794fd49134eda881ddaf7c4886503_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/087794fd49134eda881ddaf7c4886503_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/ba5a9d8a7e294dba8e4a5d0027e1a1dc_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/ba5a9d8a7e294dba8e4a5d0027e1a1dc_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/ba5a9d8a7e294dba8e4a5d0027e1a1dc_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/2c72ef844c4145b9a945a3634f00fbb2_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/2c72ef844c4145b9a945a3634f00fbb2_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/2c72ef844c4145b9a945a3634f00fbb2_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/7c310fc9101f411fbb3d0209d8231d56_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/7c310fc9101f411fbb3d0209d8231d56_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/7c310fc9101f411fbb3d0209d8231d56_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/561e8ee4fbc64893a3e8737b5a76f888_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/561e8ee4fbc64893a3e8737b5a76f888_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/561e8ee4fbc64893a3e8737b5a76f888_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/a01e6c16aa034cc0b6813440d0014986_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/a01e6c16aa034cc0b6813440d0014986_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/a01e6c16aa034cc0b6813440d0014986_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/672ca72a19ab41128abdb578d11cdacc_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/672ca72a19ab41128abdb578d11cdacc_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/672ca72a19ab41128abdb578d11cdacc_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/a2f560d21c354e03b557cf4062be3517_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/a2f560d21c354e03b557cf4062be3517_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/a2f560d21c354e03b557cf4062be3517_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/946fc7af053c46b48286417f52f4510e_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/946fc7af053c46b48286417f52f4510e_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/946fc7af053c46b48286417f52f4510e_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/bf2e88194d9f4be591b30295362812f6_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/bf2e88194d9f4be591b30295362812f6_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/bf2e88194d9f4be591b30295362812f6_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/c52e7354e4ea40509462fc8bfc83edbe_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/c52e7354e4ea40509462fc8bfc83edbe_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/c52e7354e4ea40509462fc8bfc83edbe_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f5e4bc5c344c4f4f890ea98e719d7728_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f5e4bc5c344c4f4f890ea98e719d7728_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f5e4bc5c344c4f4f890ea98e719d7728_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d84df718bc7645f491ac260cb2426aa5_vful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d84df718bc7645f491ac260cb2426aa5_vful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d84df718bc7645f491ac260cb2426aa5_vhrs.jpg"
},
{
"type": "video",
"url": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d006e4a08fb0426da121a5ef210565dc_O.mp4"
}
]
},
"details": null,
"facility": {
"id": 138,
"state": null,
"zip": "41094",
"lat": 38.849840000000000372892827726900577545166015625,
"lng": -84.597520000000002937667886726558208465576171875,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2023-hyundai-tucson-se-5NMJACAE1PH260043",
"vin": "5NMJACAE1PH260043",
"platform": "copart",
"platform_id": 1,
"lot_number": "73498895",
"ad": "2026-02-20T13:00:00+00:00",
"title": "2023 HYUNDAI TUCSON SE",
"year": 2023,
"make": "HYUNDAI",
"model": "TUCSON",
"type": null,
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Feb 20, 2026 15:00",
"full_date": "2026-02-20T13:00:00+00:00",
"diff_minutes": -198720,
"ad": "2026-02-20T13:00:00+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-02-20T13:00:00+00:00",
"timed_end_at": null,
"last_sold_day": "2026-02-20",
"last_sold_status": "Sold",
"sold_buy_now": false,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 7800,
"current_bid2_usd": 7800,
"buy_now_usd": 7800,
"last_sold_price_usd": 7800,
"estimated_cost": {
"from": 125,
"to": 15125,
"text": "$125 - $15,125"
}
},
"location": {
"display": "Ionia (MI)",
"send_from": "Chicago",
"state": null
},
"seller": {
"name": "Geico",
"type": "insurance",
"class": "bg-success-C2F7D7",
"text_class": "text-success"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Normal wear",
"secondary_damage": null
},
"odometer": {
"mi": 33022,
"km": 53144
},
"vehicle_specs": {
"exterior_color": "Black",
"engine": {
"raw": "2.5L 4",
"size_l": "2.5",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "All wheel drive",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "SCRAP CERTIFICATE OF TITLE",
"type": "danger",
"export": true,
"registration": false,
"is_pending": false,
"page_id": 3,
"sale_document_group": "warning"
},
"media": {
"thumbs_count": 13,
"has_video": true,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/b723e60513ee4c9ea5a9784205286767_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/88ca394f15f74601872ba14db7b5a0bc_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f9daa345c8d84480bd5024d4ee528329_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/46941144b85b4cb8bf43809e8baaf998_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/b30248b796f04b2fbfb35acc67265db1_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/182bd645f443425cafa7afef691ab7e8_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/c09099e495b74f7e8ff444755056d567_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/12ce99cf0ec3416c8aab6ea7b7d93eb4_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/ab0a7fd81c9044bb9d9cfb2a9329a837_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/0117ca1e7dc34a64a71a0a092c2bd99b_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/acfabe04051a48df8d6e3bc66281ff64_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f744bb69856e418aa33f2281f8804c30_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/4908de77ce574f1b9fb0cced1c0fe43a_vful.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/b723e60513ee4c9ea5a9784205286767_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/b723e60513ee4c9ea5a9784205286767_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/b723e60513ee4c9ea5a9784205286767_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/88ca394f15f74601872ba14db7b5a0bc_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/88ca394f15f74601872ba14db7b5a0bc_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/88ca394f15f74601872ba14db7b5a0bc_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f9daa345c8d84480bd5024d4ee528329_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f9daa345c8d84480bd5024d4ee528329_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f9daa345c8d84480bd5024d4ee528329_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/46941144b85b4cb8bf43809e8baaf998_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/46941144b85b4cb8bf43809e8baaf998_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/46941144b85b4cb8bf43809e8baaf998_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/b30248b796f04b2fbfb35acc67265db1_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/b30248b796f04b2fbfb35acc67265db1_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/b30248b796f04b2fbfb35acc67265db1_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/182bd645f443425cafa7afef691ab7e8_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/182bd645f443425cafa7afef691ab7e8_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/182bd645f443425cafa7afef691ab7e8_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/c09099e495b74f7e8ff444755056d567_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/c09099e495b74f7e8ff444755056d567_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/c09099e495b74f7e8ff444755056d567_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/12ce99cf0ec3416c8aab6ea7b7d93eb4_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/12ce99cf0ec3416c8aab6ea7b7d93eb4_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/12ce99cf0ec3416c8aab6ea7b7d93eb4_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/ab0a7fd81c9044bb9d9cfb2a9329a837_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/ab0a7fd81c9044bb9d9cfb2a9329a837_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/ab0a7fd81c9044bb9d9cfb2a9329a837_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/0117ca1e7dc34a64a71a0a092c2bd99b_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/0117ca1e7dc34a64a71a0a092c2bd99b_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/0117ca1e7dc34a64a71a0a092c2bd99b_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/acfabe04051a48df8d6e3bc66281ff64_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/acfabe04051a48df8d6e3bc66281ff64_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/acfabe04051a48df8d6e3bc66281ff64_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f744bb69856e418aa33f2281f8804c30_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f744bb69856e418aa33f2281f8804c30_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/f744bb69856e418aa33f2281f8804c30_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/4908de77ce574f1b9fb0cced1c0fe43a_vful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/4908de77ce574f1b9fb0cced1c0fe43a_vful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/4908de77ce574f1b9fb0cced1c0fe43a_vhrs.jpg"
},
{
"type": "video",
"url": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/a3d004ac94314d2988401e5e8b5db094_O.mp4"
}
]
},
"details": null,
"facility": {
"id": 160,
"state": null,
"zip": "48875",
"lat": 42.86543999999999954297891235910356044769287109375,
"lng": -85.0762500000000017053025658242404460906982421875,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2014-hyundai-tucson-gls-KM8JU3AG7EU860611",
"vin": "KM8JU3AG7EU860611",
"platform": "copart",
"platform_id": 1,
"lot_number": "90481495",
"ad": "2026-02-20T13:00:00+00:00",
"title": "2014 HYUNDAI TUCSON GLS",
"year": 2014,
"make": "HYUNDAI",
"model": "TUCSON",
"type": null,
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Feb 20, 2026 15:00",
"full_date": "2026-02-20T13:00:00+00:00",
"diff_minutes": -198720,
"ad": "2026-02-20T13:00:00+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-02-20T13:00:00+00:00",
"timed_end_at": null,
"last_sold_day": "2026-02-20",
"last_sold_status": "Sold",
"sold_buy_now": false,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 275,
"current_bid2_usd": 275,
"buy_now_usd": 275,
"last_sold_price_usd": 275,
"estimated_cost": {
"from": 275,
"to": 2900,
"text": "$275 - $2,900"
}
},
"location": {
"display": "Lansing (MI)",
"send_from": "Chicago",
"state": null
},
"seller": {
"name": "Insurance Company",
"type": "insurance",
"class": "bg-success-C2F7D7",
"text_class": "text-success"
},
"condition": {
"run_condition": {
"value": "ENHANCED VEHICLES",
"label": "Enhanced vehicles",
"class_hint": "warning"
},
"has_key": false,
"loss": null,
"primary_damage": "Front end",
"secondary_damage": null
},
"odometer": {
"mi": 0,
"km": 0
},
"vehicle_specs": {
"exterior_color": "Black",
"engine": {
"raw": "2.4L 4",
"size_l": "2.4",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "Front-wheel Drive",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "DEALER ONLY CLEAN TITLE",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 13,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/e9492af5c5fb4ff1ba911b20953b8f90_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/8099cb1eab7847608efa2da3e4d81d17_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/ecdb55ac207c4f98be675244c355b7f7_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/27856e5316034494ae054185f9f9f031_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/dbdf7be8fb6c46c987930ea7bb01e55b_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/e4d90c5b2e5645b7b0ee4a1c5b6a8dc5_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/fd2c4ae1bcd34b35bcd951e1ca5cb835_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/6b6e569d7dd74a03bdd4642b76b84b2d_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/fda4d6d2733943bf82ebd70c94cbe27c_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/e56e24b07f78435495a9c236d7423088_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/7dee33ff04c042dea4f9475d5086f997_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/256ff91d23154c5a9476383777351fff_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/aa381f019c31445d96c35299e9dcdca5_vful.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/e9492af5c5fb4ff1ba911b20953b8f90_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/e9492af5c5fb4ff1ba911b20953b8f90_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/e9492af5c5fb4ff1ba911b20953b8f90_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/8099cb1eab7847608efa2da3e4d81d17_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/8099cb1eab7847608efa2da3e4d81d17_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/8099cb1eab7847608efa2da3e4d81d17_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/ecdb55ac207c4f98be675244c355b7f7_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/ecdb55ac207c4f98be675244c355b7f7_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/ecdb55ac207c4f98be675244c355b7f7_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/27856e5316034494ae054185f9f9f031_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/27856e5316034494ae054185f9f9f031_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/27856e5316034494ae054185f9f9f031_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/dbdf7be8fb6c46c987930ea7bb01e55b_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/dbdf7be8fb6c46c987930ea7bb01e55b_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/dbdf7be8fb6c46c987930ea7bb01e55b_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/e4d90c5b2e5645b7b0ee4a1c5b6a8dc5_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/e4d90c5b2e5645b7b0ee4a1c5b6a8dc5_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/e4d90c5b2e5645b7b0ee4a1c5b6a8dc5_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/fd2c4ae1bcd34b35bcd951e1ca5cb835_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/fd2c4ae1bcd34b35bcd951e1ca5cb835_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/fd2c4ae1bcd34b35bcd951e1ca5cb835_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/6b6e569d7dd74a03bdd4642b76b84b2d_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/6b6e569d7dd74a03bdd4642b76b84b2d_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/6b6e569d7dd74a03bdd4642b76b84b2d_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/fda4d6d2733943bf82ebd70c94cbe27c_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/fda4d6d2733943bf82ebd70c94cbe27c_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/fda4d6d2733943bf82ebd70c94cbe27c_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/e56e24b07f78435495a9c236d7423088_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/e56e24b07f78435495a9c236d7423088_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/e56e24b07f78435495a9c236d7423088_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/7dee33ff04c042dea4f9475d5086f997_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/7dee33ff04c042dea4f9475d5086f997_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/7dee33ff04c042dea4f9475d5086f997_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/256ff91d23154c5a9476383777351fff_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/256ff91d23154c5a9476383777351fff_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/256ff91d23154c5a9476383777351fff_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/aa381f019c31445d96c35299e9dcdca5_vful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/aa381f019c31445d96c35299e9dcdca5_vful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/aa381f019c31445d96c35299e9dcdca5_vhrs.jpg"
}
]
},
"details": null,
"facility": {
"id": 103,
"state": null,
"zip": "48917",
"lat": 42.6926500000000004320099833421409130096435546875,
"lng": -84.663060000000001537046045996248722076416015625,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2021-hyundai-tucson-limited-KM8J3CAL9MU370590",
"vin": "KM8J3CAL9MU370590",
"platform": "copart",
"platform_id": 1,
"lot_number": "98999975",
"ad": "2026-02-20T13:00:00+00:00",
"title": "2021 HYUNDAI TUCSON LIMITED",
"year": 2021,
"make": "HYUNDAI",
"model": "TUCSON",
"type": null,
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Feb 20, 2026 15:00",
"full_date": "2026-02-20T13:00:00+00:00",
"diff_minutes": -198720,
"ad": "2026-02-20T13:00:00+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-02-20T13:00:00+00:00",
"timed_end_at": null,
"last_sold_day": "2026-02-20",
"last_sold_status": "Sold",
"sold_buy_now": false,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 5400,
"current_bid2_usd": 5400,
"buy_now_usd": 5400,
"last_sold_price_usd": 5400,
"estimated_cost": {
"from": 300,
"to": 13350,
"text": "$300 - $13,350"
}
},
"location": {
"display": "Danville (VA)",
"send_from": "Norfolk",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Front end",
"secondary_damage": null
},
"odometer": {
"mi": 96717,
"km": 155651
},
"vehicle_specs": {
"exterior_color": "Blue",
"engine": {
"raw": "2.4L 4",
"size_l": "2.4",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "All wheel drive",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERT OF TITLE - SALVAGE",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 13,
"has_video": true,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/4a26b7bd3da2407eab35e09d74d4a4e7_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/d88a7cab8e36434491bc2d7da557a216_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/4d01978908724c3493042f74f91ee90a_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/1ce875f37c764d3b9c5b5321c61aa990_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/09106c2262fb4c68a08f747b99d97aa0_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/3fbb839501774f4cacfbf92dfb2be2e1_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/14a57c2ae1904f95b84f991da7315386_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/a2fb7b39ce7740ef9103e74ddeac4d3a_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/26371ef99e464bcb95d946b5647edf5d_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/d8b21a4ecbaf44e4989da26a949a4373_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/6896ec693cfb42d695500b4c7316c084_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/24ef8cc593764e25a89361089a5a7008_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/d6eed37abd9f4e0fb127c05e03a012f0_vhrs.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/4a26b7bd3da2407eab35e09d74d4a4e7_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/4a26b7bd3da2407eab35e09d74d4a4e7_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/4a26b7bd3da2407eab35e09d74d4a4e7_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/d88a7cab8e36434491bc2d7da557a216_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/d88a7cab8e36434491bc2d7da557a216_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/d88a7cab8e36434491bc2d7da557a216_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/4d01978908724c3493042f74f91ee90a_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/4d01978908724c3493042f74f91ee90a_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/4d01978908724c3493042f74f91ee90a_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/1ce875f37c764d3b9c5b5321c61aa990_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/1ce875f37c764d3b9c5b5321c61aa990_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/1ce875f37c764d3b9c5b5321c61aa990_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/09106c2262fb4c68a08f747b99d97aa0_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/09106c2262fb4c68a08f747b99d97aa0_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/09106c2262fb4c68a08f747b99d97aa0_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/3fbb839501774f4cacfbf92dfb2be2e1_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/3fbb839501774f4cacfbf92dfb2be2e1_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/3fbb839501774f4cacfbf92dfb2be2e1_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/14a57c2ae1904f95b84f991da7315386_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/14a57c2ae1904f95b84f991da7315386_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/14a57c2ae1904f95b84f991da7315386_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/a2fb7b39ce7740ef9103e74ddeac4d3a_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/a2fb7b39ce7740ef9103e74ddeac4d3a_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/a2fb7b39ce7740ef9103e74ddeac4d3a_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/26371ef99e464bcb95d946b5647edf5d_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/26371ef99e464bcb95d946b5647edf5d_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/26371ef99e464bcb95d946b5647edf5d_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/d8b21a4ecbaf44e4989da26a949a4373_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/d8b21a4ecbaf44e4989da26a949a4373_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/d8b21a4ecbaf44e4989da26a949a4373_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/6896ec693cfb42d695500b4c7316c084_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/6896ec693cfb42d695500b4c7316c084_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/6896ec693cfb42d695500b4c7316c084_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/24ef8cc593764e25a89361089a5a7008_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/24ef8cc593764e25a89361089a5a7008_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/24ef8cc593764e25a89361089a5a7008_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/d6eed37abd9f4e0fb127c05e03a012f0_vhrs.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/d6eed37abd9f4e0fb127c05e03a012f0_vhrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/d6eed37abd9f4e0fb127c05e03a012f0_vhrs.jpg"
},
{
"type": "video",
"url": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1225/a3fc6f08cf9a4619a58b6939e01eb3a6_O.mp4"
}
]
},
"details": null,
"facility": {
"id": 82,
"state": null,
"zip": "24531",
"lat": 36.7708999999999974761522025801241397857666015625,
"lng": -79.3899899999999973942976794205605983734130859375,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2006-hyundai-tucson-gls-KM8JN72DX6U413166",
"vin": "KM8JN72DX6U413166",
"platform": "copart",
"platform_id": 1,
"lot_number": "98638455",
"ad": "2026-02-20T13:00:00+00:00",
"title": "2006 HYUNDAI TUCSON GLS",
"year": 2006,
"make": "HYUNDAI",
"model": "TUCSON",
"type": null,
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Feb 20, 2026 15:00",
"full_date": "2026-02-20T13:00:00+00:00",
"diff_minutes": -198720,
"ad": "2026-02-20T13:00:00+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-02-20T13:00:00+00:00",
"timed_end_at": null,
"last_sold_day": "2026-02-20",
"last_sold_status": "Sold",
"sold_buy_now": false,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 625,
"current_bid2_usd": 625,
"buy_now_usd": 625,
"last_sold_price_usd": 625,
"estimated_cost": {
"from": 225,
"to": 1425,
"text": "$225 - $1,425"
}
},
"location": {
"display": "Danville (VA)",
"send_from": "Norfolk",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Front end",
"secondary_damage": null
},
"odometer": {
"mi": 99697,
"km": 160446
},
"vehicle_specs": {
"exterior_color": "Black",
"engine": {
"raw": "2.7L 6",
"size_l": "2.7",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "All wheel drive",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERT OF TITLE - SALVAGE",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 13,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/c3716fefe57448e3a89fcf237f051dd9_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/70c15c780aaa44b0ad5c14e787126cc7_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/7d90b0aed1f54a23a0adb1fafe5f26bb_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/9917a23308c8488b946a7257efb5ac6a_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/4afeb5a8a71e4592ba512edea03a952e_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/77eb2f678b6d42ad88ff20918f96eb5d_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/76facedc7d664a509a1c84ce85bb43ef_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/8bdfe89e84d94aa7af9fdeaef39bbb2b_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/7af6e7fc8f5b4fe3b0d78203fe112132_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d1ffd56e24d24ae682dfb87611d3c71d_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/e72ba90fbd0e46bab1a6513a0bddb46d_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/e70d3e7902514c25a85f56dd503dea85_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/6c0ab1d5b04d49b4bdf49cdf8c940538_vful.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/c3716fefe57448e3a89fcf237f051dd9_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/c3716fefe57448e3a89fcf237f051dd9_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/c3716fefe57448e3a89fcf237f051dd9_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/70c15c780aaa44b0ad5c14e787126cc7_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/70c15c780aaa44b0ad5c14e787126cc7_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/70c15c780aaa44b0ad5c14e787126cc7_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/7d90b0aed1f54a23a0adb1fafe5f26bb_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/7d90b0aed1f54a23a0adb1fafe5f26bb_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/7d90b0aed1f54a23a0adb1fafe5f26bb_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/9917a23308c8488b946a7257efb5ac6a_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/9917a23308c8488b946a7257efb5ac6a_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/9917a23308c8488b946a7257efb5ac6a_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/4afeb5a8a71e4592ba512edea03a952e_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/4afeb5a8a71e4592ba512edea03a952e_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/4afeb5a8a71e4592ba512edea03a952e_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/77eb2f678b6d42ad88ff20918f96eb5d_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/77eb2f678b6d42ad88ff20918f96eb5d_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/77eb2f678b6d42ad88ff20918f96eb5d_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/76facedc7d664a509a1c84ce85bb43ef_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/76facedc7d664a509a1c84ce85bb43ef_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/76facedc7d664a509a1c84ce85bb43ef_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/8bdfe89e84d94aa7af9fdeaef39bbb2b_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/8bdfe89e84d94aa7af9fdeaef39bbb2b_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/8bdfe89e84d94aa7af9fdeaef39bbb2b_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/7af6e7fc8f5b4fe3b0d78203fe112132_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/7af6e7fc8f5b4fe3b0d78203fe112132_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/7af6e7fc8f5b4fe3b0d78203fe112132_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d1ffd56e24d24ae682dfb87611d3c71d_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d1ffd56e24d24ae682dfb87611d3c71d_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/d1ffd56e24d24ae682dfb87611d3c71d_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/e72ba90fbd0e46bab1a6513a0bddb46d_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/e72ba90fbd0e46bab1a6513a0bddb46d_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/e72ba90fbd0e46bab1a6513a0bddb46d_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/e70d3e7902514c25a85f56dd503dea85_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/e70d3e7902514c25a85f56dd503dea85_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/e70d3e7902514c25a85f56dd503dea85_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/6c0ab1d5b04d49b4bdf49cdf8c940538_vful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/6c0ab1d5b04d49b4bdf49cdf8c940538_vful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0126/6c0ab1d5b04d49b4bdf49cdf8c940538_vhrs.jpg"
}
]
},
"details": null,
"facility": {
"id": 82,
"state": null,
"zip": "24531",
"lat": 36.7708999999999974761522025801241397857666015625,
"lng": -79.3899899999999973942976794205605983734130859375,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2023-hyundai-tucson-limited-5NMJE3AE4PH269436",
"vin": "5NMJE3AE4PH269436",
"platform": "copart",
"platform_id": 1,
"lot_number": "86729075",
"ad": "2026-02-20T13:00:00+00:00",
"title": "2023 HYUNDAI TUCSON LIMITED",
"year": 2023,
"make": "HYUNDAI",
"model": "TUCSON",
"type": null,
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Feb 20, 2026 15:00",
"full_date": "2026-02-20T13:00:00+00:00",
"diff_minutes": -198720,
"ad": "2026-02-20T13:00:00+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-02-20T13:00:00+00:00",
"timed_end_at": null,
"last_sold_day": "2026-02-20",
"last_sold_status": "Sold",
"sold_buy_now": false,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 8200,
"current_bid2_usd": 8200,
"buy_now_usd": 8200,
"last_sold_price_usd": 8200,
"estimated_cost": {
"from": 625,
"to": 13900,
"text": "$625 - $13,900"
}
},
"location": {
"display": "Columbia (SC)",
"send_from": "Savannah",
"state": null
},
"seller": {
"name": "Usaa",
"type": "insurance",
"class": "bg-success-C2F7D7",
"text_class": "text-success"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Front end",
"secondary_damage": null
},
"odometer": {
"mi": 32613,
"km": 52485
},
"vehicle_specs": {
"exterior_color": "White",
"engine": {
"raw": "2.5L 4",
"size_l": "2.5",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "Front-wheel Drive",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "SALVAGE CERTIFICATE OF TITLE",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 12,
"has_video": true,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/47916587222e4c24bf2f27e3ee4a66a1_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/d8e753ea2cd7425ca58cb810fb910656_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/d236b93bca9642fc8b0db6a41f3910d1_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/acdef55aa0e24fcb93797b28415e6705_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/8f2bc25ef9254a94801192e8066ff123_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/edb910834f06464d91b1a9073a43b7e0_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/8390732461fe443b8a72828068ee46dc_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/5cdf1c8dd16f46549b2b72260d630e21_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/95c72ed8666e42c4a27df10d0f243e86_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/6c4d01f2fc2446e89683b24966ff215f_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/d357d7d63c9d48e6b513f617f38f4066_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/ea6f7ab743bc4927b60de50abd2d7b8f_vful.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/47916587222e4c24bf2f27e3ee4a66a1_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/47916587222e4c24bf2f27e3ee4a66a1_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/47916587222e4c24bf2f27e3ee4a66a1_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/d8e753ea2cd7425ca58cb810fb910656_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/d8e753ea2cd7425ca58cb810fb910656_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/d8e753ea2cd7425ca58cb810fb910656_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/d236b93bca9642fc8b0db6a41f3910d1_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/d236b93bca9642fc8b0db6a41f3910d1_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/d236b93bca9642fc8b0db6a41f3910d1_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/acdef55aa0e24fcb93797b28415e6705_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/acdef55aa0e24fcb93797b28415e6705_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/acdef55aa0e24fcb93797b28415e6705_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/8f2bc25ef9254a94801192e8066ff123_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/8f2bc25ef9254a94801192e8066ff123_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/8f2bc25ef9254a94801192e8066ff123_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/edb910834f06464d91b1a9073a43b7e0_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/edb910834f06464d91b1a9073a43b7e0_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/edb910834f06464d91b1a9073a43b7e0_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/8390732461fe443b8a72828068ee46dc_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/8390732461fe443b8a72828068ee46dc_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/8390732461fe443b8a72828068ee46dc_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/5cdf1c8dd16f46549b2b72260d630e21_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/5cdf1c8dd16f46549b2b72260d630e21_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/5cdf1c8dd16f46549b2b72260d630e21_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/95c72ed8666e42c4a27df10d0f243e86_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/95c72ed8666e42c4a27df10d0f243e86_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/95c72ed8666e42c4a27df10d0f243e86_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/6c4d01f2fc2446e89683b24966ff215f_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/6c4d01f2fc2446e89683b24966ff215f_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/6c4d01f2fc2446e89683b24966ff215f_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/d357d7d63c9d48e6b513f617f38f4066_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/d357d7d63c9d48e6b513f617f38f4066_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/d357d7d63c9d48e6b513f617f38f4066_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/ea6f7ab743bc4927b60de50abd2d7b8f_vful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/ea6f7ab743bc4927b60de50abd2d7b8f_vful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/ea6f7ab743bc4927b60de50abd2d7b8f_vhrs.jpg"
},
{
"type": "video",
"url": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1025/8a35a3a2d775488a82641030d289f21e_O.mp4"
}
]
},
"details": null,
"facility": {
"id": 56,
"state": null,
"zip": "29053",
"lat": 33.791730499999999892679625190794467926025390625,
"lng": -81.0983628999999979214408085681498050689697265625,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2018-hyundai-tucson-sport-KM8J3CAL3JU764761",
"vin": "KM8J3CAL3JU764761",
"platform": "copart",
"platform_id": 1,
"lot_number": "91346205",
"ad": "2026-02-20T13:00:00+00:00",
"title": "2018 HYUNDAI TUCSON SPORT",
"year": 2018,
"make": "HYUNDAI",
"model": "TUCSON",
"type": null,
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Feb 20, 2026 15:00",
"full_date": "2026-02-20T13:00:00+00:00",
"diff_minutes": -198720,
"ad": "2026-02-20T13:00:00+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-02-20T13:00:00+00:00",
"timed_end_at": null,
"last_sold_day": "2026-02-20",
"last_sold_status": "Sold",
"sold_buy_now": false,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 175,
"current_bid2_usd": 175,
"buy_now_usd": 175,
"last_sold_price_usd": 175,
"estimated_cost": {
"from": 475,
"to": 6900,
"text": "$475 - $6,900"
}
},
"location": {
"display": "Columbia (SC)",
"send_from": "Savannah",
"state": null
},
"seller": {
"name": "Insurance Company",
"type": "insurance",
"class": "bg-success-C2F7D7",
"text_class": "text-success"
},
"condition": {
"run_condition": {
"value": "ENHANCED VEHICLES",
"label": "Enhanced vehicles",
"class_hint": "warning"
},
"has_key": true,
"loss": null,
"primary_damage": "Burn",
"secondary_damage": null
},
"odometer": {
"mi": 0,
"km": 0
},
"vehicle_specs": {
"exterior_color": "Gray",
"engine": {
"raw": "2.4L 4",
"size_l": "2.4",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "All wheel drive",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERT OF TITLE-SALVAGE FIRE",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 12,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/82242caed67c415e806276ef2bcb8d2c_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/c953551ce70447a9922c4b9107a96efb_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/8d83f52907234c75af26f61e437f0d9a_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/5a17ff54f4f64b0eb1a64320a37144b5_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/b030f19d25014138a5cdd3f0eca94000_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/839a25ce8f6741188dc7cb039e306f72_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/a24e51a13bc9453eae67156ae89697a6_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/b6dbde52714d4678be563ce9ab78129f_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/3e7e1743410c4835956e5f94daf04694_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/a50a320c4ea642cd9569c67976e057c5_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/0b8cbc343c274974b780cde6861a5f11_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/5b0165c56a394b97ae52893b2cb63c6e_vful.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/82242caed67c415e806276ef2bcb8d2c_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/82242caed67c415e806276ef2bcb8d2c_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/82242caed67c415e806276ef2bcb8d2c_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/c953551ce70447a9922c4b9107a96efb_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/c953551ce70447a9922c4b9107a96efb_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/c953551ce70447a9922c4b9107a96efb_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/8d83f52907234c75af26f61e437f0d9a_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/8d83f52907234c75af26f61e437f0d9a_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/8d83f52907234c75af26f61e437f0d9a_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/5a17ff54f4f64b0eb1a64320a37144b5_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/5a17ff54f4f64b0eb1a64320a37144b5_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/5a17ff54f4f64b0eb1a64320a37144b5_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/b030f19d25014138a5cdd3f0eca94000_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/b030f19d25014138a5cdd3f0eca94000_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/b030f19d25014138a5cdd3f0eca94000_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/839a25ce8f6741188dc7cb039e306f72_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/839a25ce8f6741188dc7cb039e306f72_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/839a25ce8f6741188dc7cb039e306f72_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/a24e51a13bc9453eae67156ae89697a6_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/a24e51a13bc9453eae67156ae89697a6_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/a24e51a13bc9453eae67156ae89697a6_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/b6dbde52714d4678be563ce9ab78129f_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/b6dbde52714d4678be563ce9ab78129f_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/b6dbde52714d4678be563ce9ab78129f_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/3e7e1743410c4835956e5f94daf04694_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/3e7e1743410c4835956e5f94daf04694_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/3e7e1743410c4835956e5f94daf04694_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/a50a320c4ea642cd9569c67976e057c5_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/a50a320c4ea642cd9569c67976e057c5_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/a50a320c4ea642cd9569c67976e057c5_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/0b8cbc343c274974b780cde6861a5f11_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/0b8cbc343c274974b780cde6861a5f11_ful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/0b8cbc343c274974b780cde6861a5f11_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/5b0165c56a394b97ae52893b2cb63c6e_vful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/5b0165c56a394b97ae52893b2cb63c6e_vful.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/1125/5b0165c56a394b97ae52893b2cb63c6e_vhrs.jpg"
}
]
},
"details": null,
"facility": {
"id": 56,
"state": null,
"zip": "29053",
"lat": 33.791730499999999892679625190794467926025390625,
"lng": -81.0983628999999979214408085681498050689697265625,
"office_name": null
},
"distance": null
}
],
"past": [
{
"slug_vin": "2018-hyundai-tucson-sel-KM8J33A4XJU598151",
"vin": "KM8J33A4XJU598151",
"platform": "copart",
"platform_id": 1,
"lot_number": "59916176",
"ad": "2026-07-07T22:13:30+00:00",
"title": "2018 HYUNDAI TUCSON SEL",
"year": 2018,
"make": "HYUNDAI",
"model": "TUCSON",
"type": null,
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Jul 08, 2026 01:13",
"full_date": "2026-07-07T22:13:30+00:00",
"diff_minutes": -886,
"ad": "2026-07-07T22:13:30+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-07-07T22:13:30+00:00",
"timed_end_at": null,
"last_sold_day": "2026-07-08",
"last_sold_status": "Sold",
"sold_buy_now": true,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 1150,
"current_bid2_usd": 1150,
"buy_now_usd": 29500,
"last_sold_price_usd": 29500,
"estimated_cost": {
"from": 475,
"to": 6900,
"text": "$475 - $6,900"
}
},
"location": {
"display": "Dallas (TX)",
"send_from": "Houston",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Minor dent/scratches",
"secondary_damage": null
},
"odometer": {
"mi": 135263,
"km": 217684
},
"vehicle_specs": {
"exterior_color": "Gray",
"engine": {
"raw": "2.0L 4",
"size_l": "2.0",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "FRONT WHEEL DRIVE",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERTIFICATE OF TITLE",
"type": "success",
"export": true,
"registration": true,
"is_pending": true,
"page_id": 10,
"sale_document_group": "pending"
},
"media": {
"thumbs_count": 14,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/33c00f8c87f04a1dbaa20dd31cdbfe09_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/a5e360a0dd014cf98546f8d9a5ee5eb9_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/47f2625fde884223b40dd233b33ab00c_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/a490c5c462414b73989e352870457317_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/31d64434114043daa8eaeb940ea38f8a_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/cdec8f5473d94b44b4b1a30037c9959b_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/64eef9f224e347f9ac4f4468cdf8e834_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/6d376a10fd254eae9d2bbdfdd54fe9a2_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/51b825fcf12a446d9ff6aa16fb11c8dc_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/360f0fddfe7a46fabb35333129bcc780_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/a37e660d09fa47fa94dc8d648ab8c799_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/39b40be491fb4a2ebcd080ec5013e64e_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/0fbf970928cf4291bad03274cab2206d_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/a026ca66194f40adbe26a5212d5cc2de_ful.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/33c00f8c87f04a1dbaa20dd31cdbfe09_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/33c00f8c87f04a1dbaa20dd31cdbfe09_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/33c00f8c87f04a1dbaa20dd31cdbfe09_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/a5e360a0dd014cf98546f8d9a5ee5eb9_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/a5e360a0dd014cf98546f8d9a5ee5eb9_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/a5e360a0dd014cf98546f8d9a5ee5eb9_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/47f2625fde884223b40dd233b33ab00c_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/47f2625fde884223b40dd233b33ab00c_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/47f2625fde884223b40dd233b33ab00c_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/a490c5c462414b73989e352870457317_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/a490c5c462414b73989e352870457317_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/a490c5c462414b73989e352870457317_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/31d64434114043daa8eaeb940ea38f8a_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/31d64434114043daa8eaeb940ea38f8a_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/31d64434114043daa8eaeb940ea38f8a_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/cdec8f5473d94b44b4b1a30037c9959b_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/cdec8f5473d94b44b4b1a30037c9959b_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/cdec8f5473d94b44b4b1a30037c9959b_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/64eef9f224e347f9ac4f4468cdf8e834_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/64eef9f224e347f9ac4f4468cdf8e834_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/64eef9f224e347f9ac4f4468cdf8e834_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/6d376a10fd254eae9d2bbdfdd54fe9a2_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/6d376a10fd254eae9d2bbdfdd54fe9a2_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/6d376a10fd254eae9d2bbdfdd54fe9a2_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/51b825fcf12a446d9ff6aa16fb11c8dc_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/51b825fcf12a446d9ff6aa16fb11c8dc_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/51b825fcf12a446d9ff6aa16fb11c8dc_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/360f0fddfe7a46fabb35333129bcc780_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/360f0fddfe7a46fabb35333129bcc780_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/360f0fddfe7a46fabb35333129bcc780_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/a37e660d09fa47fa94dc8d648ab8c799_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/a37e660d09fa47fa94dc8d648ab8c799_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/a37e660d09fa47fa94dc8d648ab8c799_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/39b40be491fb4a2ebcd080ec5013e64e_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/39b40be491fb4a2ebcd080ec5013e64e_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/39b40be491fb4a2ebcd080ec5013e64e_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/0fbf970928cf4291bad03274cab2206d_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/0fbf970928cf4291bad03274cab2206d_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/0fbf970928cf4291bad03274cab2206d_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/a026ca66194f40adbe26a5212d5cc2de_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/a026ca66194f40adbe26a5212d5cc2de_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/a026ca66194f40adbe26a5212d5cc2de_hrs.jpg"
}
]
},
"details": null,
"facility": {
"id": null,
"state": null,
"zip": null,
"lat": null,
"lng": null,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2018-hyundai-tucson-limited-KM8J33A21JU753278",
"vin": "KM8J33A21JU753278",
"platform": "copart",
"platform_id": 1,
"lot_number": "58159396",
"ad": "2026-07-07T22:00:48+00:00",
"title": "2018 HYUNDAI TUCSON LIMITED",
"year": 2018,
"make": "HYUNDAI",
"model": "TUCSON",
"type": null,
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Jul 08, 2026 01:00",
"full_date": "2026-07-07T22:00:48+00:00",
"diff_minutes": -899,
"ad": "2026-07-07T22:00:48+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-07-07T22:00:48+00:00",
"timed_end_at": null,
"last_sold_day": "2026-07-08",
"last_sold_status": "Sold",
"sold_buy_now": true,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 5900,
"current_bid2_usd": 5900,
"buy_now_usd": 29500,
"last_sold_price_usd": 29500,
"estimated_cost": {
"from": 475,
"to": 6900,
"text": "$475 - $6,900"
}
},
"location": {
"display": "Dallas (TX)",
"send_from": "Houston",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Minor dent/scratches",
"secondary_damage": null
},
"odometer": {
"mi": 175750,
"km": 282842
},
"vehicle_specs": {
"exterior_color": "White",
"engine": {
"raw": "1.6L 4",
"size_l": "1.6",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "FRONT WHEEL DRIVE",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERTIFICATE OF TITLE",
"type": "success",
"export": true,
"registration": true,
"is_pending": true,
"page_id": 10,
"sale_document_group": "pending"
},
"media": {
"thumbs_count": 14,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2e0e015e0f9b40ee8ff67d231316c105_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/4681a17ef6604dc091895ba85aa2e2a7_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0ab95492da2741b8ae84006ec4b25826_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8dac434b69274f87b5a68e362a095ddc_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8519396d88434e1686376fbb2fca50d0_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/c20f372e413e45079851f59ad06e667d_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9ba13bf74d6f4ebe9d7585d913bda714_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/a9c726ff8ddc4720bd1cbe01c3a760ea_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/6965f2cacb524df4a26168def0130434_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0150980991b240e9ab598f2c15e1c42d_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/fe83e73fdf1b4c2b92c576c53f575f00_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5fa44baa941a474296c10c5e6dc16b64_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/d942661bc1914434a8c4e80b44a60557_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5f0d7bdf646346f99e0f1382a104abde_ful.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2e0e015e0f9b40ee8ff67d231316c105_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2e0e015e0f9b40ee8ff67d231316c105_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2e0e015e0f9b40ee8ff67d231316c105_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/4681a17ef6604dc091895ba85aa2e2a7_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/4681a17ef6604dc091895ba85aa2e2a7_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/4681a17ef6604dc091895ba85aa2e2a7_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0ab95492da2741b8ae84006ec4b25826_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0ab95492da2741b8ae84006ec4b25826_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0ab95492da2741b8ae84006ec4b25826_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8dac434b69274f87b5a68e362a095ddc_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8dac434b69274f87b5a68e362a095ddc_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8dac434b69274f87b5a68e362a095ddc_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8519396d88434e1686376fbb2fca50d0_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8519396d88434e1686376fbb2fca50d0_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8519396d88434e1686376fbb2fca50d0_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/c20f372e413e45079851f59ad06e667d_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/c20f372e413e45079851f59ad06e667d_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/c20f372e413e45079851f59ad06e667d_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9ba13bf74d6f4ebe9d7585d913bda714_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9ba13bf74d6f4ebe9d7585d913bda714_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9ba13bf74d6f4ebe9d7585d913bda714_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/a9c726ff8ddc4720bd1cbe01c3a760ea_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/a9c726ff8ddc4720bd1cbe01c3a760ea_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/a9c726ff8ddc4720bd1cbe01c3a760ea_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/6965f2cacb524df4a26168def0130434_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/6965f2cacb524df4a26168def0130434_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/6965f2cacb524df4a26168def0130434_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0150980991b240e9ab598f2c15e1c42d_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0150980991b240e9ab598f2c15e1c42d_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0150980991b240e9ab598f2c15e1c42d_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/fe83e73fdf1b4c2b92c576c53f575f00_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/fe83e73fdf1b4c2b92c576c53f575f00_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/fe83e73fdf1b4c2b92c576c53f575f00_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5fa44baa941a474296c10c5e6dc16b64_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5fa44baa941a474296c10c5e6dc16b64_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5fa44baa941a474296c10c5e6dc16b64_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/d942661bc1914434a8c4e80b44a60557_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/d942661bc1914434a8c4e80b44a60557_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/d942661bc1914434a8c4e80b44a60557_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5f0d7bdf646346f99e0f1382a104abde_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5f0d7bdf646346f99e0f1382a104abde_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5f0d7bdf646346f99e0f1382a104abde_hrs.jpg"
}
]
},
"details": null,
"facility": {
"id": null,
"state": null,
"zip": null,
"lat": null,
"lng": null,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2026-hyundai-tucson-sel-5NMJB3DE3TH622571",
"vin": "5NMJB3DE3TH622571",
"platform": "copart",
"platform_id": 1,
"lot_number": "59595106",
"ad": "2026-07-06T14:43:26+00:00",
"title": "2026 HYUNDAI TUCSON SEL",
"year": 2026,
"make": "HYUNDAI",
"model": "TUCSON",
"type": "AUTOMOBILE",
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Jul 06, 2026 17:43",
"full_date": "2026-07-06T14:43:26+00:00",
"diff_minutes": -2777,
"ad": "2026-07-06T14:43:26+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": false,
"auction_at": "2026-07-06T14:43:26+00:00",
"timed_end_at": null,
"last_sold_day": "2026-07-06",
"last_sold_status": "Sold",
"sold_buy_now": true,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 375,
"current_bid2_usd": 375,
"buy_now_usd": null,
"last_sold_price_usd": 375,
"estimated_cost": {
"from": 8500,
"to": 25225,
"text": "$8,500 - $25,225"
}
},
"location": {
"display": "Orlando South (FL)",
"send_from": "Miami",
"state": null
},
"seller": {
"name": "Enterprise",
"type": "dealer",
"class": "bg-primary-D9DADA",
"text_class": "text-primary"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Front end",
"secondary_damage": null
},
"odometer": {
"mi": 11024,
"km": 17741
},
"vehicle_specs": {
"exterior_color": "White",
"engine": {
"raw": "2.5L 4",
"size_l": "2.5",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "FRONT WHEEL DRIVE",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERTIFICATE OF DESTRUCTION",
"type": "danger",
"export": true,
"registration": false,
"is_pending": false,
"page_id": 3,
"sale_document_group": "warning"
},
"media": {
"thumbs_count": 13,
"has_video": true,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/c49999ab529b47b898f7720085514611_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/29588b4a1f894260844a52a6fc1ddb8a_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/047b6d83d38d4d46b696a4e4a0985b81_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/273164f138054439aa5f102ca07ffafc_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/2bcf936a6e71492e85d5090866f4be54_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/330d4d9afd294c4a8716da8dd7a1c493_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/188c60368d754401a215d55930a306bd_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/9ec3a904399e44f595268646bb62b0c1_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/e0f05910e4ec40d897df2af68a2ffbd7_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/53cb4efaed0342e0a76e21086b9fffa0_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/656c8115becd4b5ca205f61591b124b2_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/1940fb1e0b534d12ae607a535f0f61f4_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/2488fa908c564f158579058d0763fe1d_vhrs.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/c49999ab529b47b898f7720085514611_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/c49999ab529b47b898f7720085514611_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/c49999ab529b47b898f7720085514611_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/29588b4a1f894260844a52a6fc1ddb8a_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/29588b4a1f894260844a52a6fc1ddb8a_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/29588b4a1f894260844a52a6fc1ddb8a_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/047b6d83d38d4d46b696a4e4a0985b81_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/047b6d83d38d4d46b696a4e4a0985b81_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/047b6d83d38d4d46b696a4e4a0985b81_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/273164f138054439aa5f102ca07ffafc_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/273164f138054439aa5f102ca07ffafc_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/273164f138054439aa5f102ca07ffafc_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/2bcf936a6e71492e85d5090866f4be54_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/2bcf936a6e71492e85d5090866f4be54_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/2bcf936a6e71492e85d5090866f4be54_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/330d4d9afd294c4a8716da8dd7a1c493_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/330d4d9afd294c4a8716da8dd7a1c493_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/330d4d9afd294c4a8716da8dd7a1c493_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/188c60368d754401a215d55930a306bd_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/188c60368d754401a215d55930a306bd_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/188c60368d754401a215d55930a306bd_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/9ec3a904399e44f595268646bb62b0c1_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/9ec3a904399e44f595268646bb62b0c1_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/9ec3a904399e44f595268646bb62b0c1_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/e0f05910e4ec40d897df2af68a2ffbd7_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/e0f05910e4ec40d897df2af68a2ffbd7_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/e0f05910e4ec40d897df2af68a2ffbd7_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/53cb4efaed0342e0a76e21086b9fffa0_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/53cb4efaed0342e0a76e21086b9fffa0_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/53cb4efaed0342e0a76e21086b9fffa0_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/656c8115becd4b5ca205f61591b124b2_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/656c8115becd4b5ca205f61591b124b2_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/656c8115becd4b5ca205f61591b124b2_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/1940fb1e0b534d12ae607a535f0f61f4_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/1940fb1e0b534d12ae607a535f0f61f4_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/1940fb1e0b534d12ae607a535f0f61f4_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/2488fa908c564f158579058d0763fe1d_vhrs.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/2488fa908c564f158579058d0763fe1d_vhrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0726/2488fa908c564f158579058d0763fe1d_vhrs.jpg"
},
{
"type": "video",
"url": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0726/2705526c08404609b355082ee63c4730_O.mp4"
}
]
},
"details": null,
"facility": {
"id": null,
"state": null,
"zip": null,
"lat": null,
"lng": null,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2024-hyundai-tucson-sel-5NMJBCDE1RH295693",
"vin": "5NMJBCDE1RH295693",
"platform": "copart",
"platform_id": 1,
"lot_number": "85631755",
"ad": "2026-07-02T18:32:12+00:00",
"title": "2024 HYUNDAI TUCSON SEL",
"year": 2024,
"make": "HYUNDAI",
"model": "TUCSON",
"type": "AUTOMOBILE",
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Jul 02, 2026 21:32",
"full_date": "2026-07-02T18:32:12+00:00",
"diff_minutes": -8308,
"ad": "2026-07-02T18:32:12+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": false,
"auction_at": "2026-07-02T18:32:12+00:00",
"timed_end_at": null,
"last_sold_day": "2026-07-02",
"last_sold_status": "Sold",
"sold_buy_now": true,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 2400,
"current_bid2_usd": 2400,
"buy_now_usd": null,
"last_sold_price_usd": 2400,
"estimated_cost": {
"from": 175,
"to": 22500,
"text": "$175 - $22,500"
}
},
"location": {
"display": "Hayward (CA)",
"send_from": "LA",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Minor dent/scratches",
"secondary_damage": null
},
"odometer": {
"mi": 46409,
"km": 74688
},
"vehicle_specs": {
"exterior_color": "Gray",
"engine": {
"raw": "2.5L 4",
"size_l": "2.5",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "ALL WHEEL DRIVE",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "DIS/DLR/EXP ONLY CLEAN TITLE",
"type": "success",
"export": true,
"registration": true,
"is_pending": true,
"page_id": 10,
"sale_document_group": "pending"
},
"media": {
"thumbs_count": 12,
"has_video": true,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/343cd560e0b247aa861b22a0734af919_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/97af7b43241d43eea032ecd438cfc55c_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/de2772524706448d9c0a2472ae32183c_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/c623e5bdf04e43fcb8ba8e51ececaddb_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/d6ad37734b51490c9f97fdeb99c50316_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/64846d654f6a41c995e145f535afd71b_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/70572a79c2504d04ad45080177245bf7_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8afb737219e5443e93babacbc81a90eb_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/e4e959a9ab754fcdb9b9ea203afcb21a_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2935a5f5983d4c609c7bc143991f1a44_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8c791dc913e04a2c850cffd17070cd6f_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/1d6b9393668140cb9cb6499c7fd140d5_vhrs.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/343cd560e0b247aa861b22a0734af919_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/343cd560e0b247aa861b22a0734af919_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/343cd560e0b247aa861b22a0734af919_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/97af7b43241d43eea032ecd438cfc55c_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/97af7b43241d43eea032ecd438cfc55c_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/97af7b43241d43eea032ecd438cfc55c_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/de2772524706448d9c0a2472ae32183c_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/de2772524706448d9c0a2472ae32183c_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/de2772524706448d9c0a2472ae32183c_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/c623e5bdf04e43fcb8ba8e51ececaddb_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/c623e5bdf04e43fcb8ba8e51ececaddb_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/c623e5bdf04e43fcb8ba8e51ececaddb_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/d6ad37734b51490c9f97fdeb99c50316_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/d6ad37734b51490c9f97fdeb99c50316_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/d6ad37734b51490c9f97fdeb99c50316_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/64846d654f6a41c995e145f535afd71b_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/64846d654f6a41c995e145f535afd71b_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/64846d654f6a41c995e145f535afd71b_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/70572a79c2504d04ad45080177245bf7_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/70572a79c2504d04ad45080177245bf7_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/70572a79c2504d04ad45080177245bf7_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8afb737219e5443e93babacbc81a90eb_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8afb737219e5443e93babacbc81a90eb_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8afb737219e5443e93babacbc81a90eb_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/e4e959a9ab754fcdb9b9ea203afcb21a_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/e4e959a9ab754fcdb9b9ea203afcb21a_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/e4e959a9ab754fcdb9b9ea203afcb21a_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2935a5f5983d4c609c7bc143991f1a44_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2935a5f5983d4c609c7bc143991f1a44_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2935a5f5983d4c609c7bc143991f1a44_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8c791dc913e04a2c850cffd17070cd6f_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8c791dc913e04a2c850cffd17070cd6f_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8c791dc913e04a2c850cffd17070cd6f_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/1d6b9393668140cb9cb6499c7fd140d5_vhrs.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/1d6b9393668140cb9cb6499c7fd140d5_vhrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/1d6b9393668140cb9cb6499c7fd140d5_vhrs.jpg"
},
{
"type": "video",
"url": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/ids-c-prod-lpp/0626/6f3ae857fbb34a25bc93c096a520707a_O.mp4"
}
]
},
"details": null,
"facility": {
"id": null,
"state": null,
"zip": null,
"lat": null,
"lng": null,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2020-hyundai-tucson-se-KM8J2CA4XLU212849",
"vin": "KM8J2CA4XLU212849",
"platform": "copart",
"platform_id": 1,
"lot_number": "74500725",
"ad": "2026-06-30T23:17:42+00:00",
"title": "2020 HYUNDAI TUCSON SE",
"year": 2020,
"make": "HYUNDAI",
"model": "TUCSON",
"type": "AUTOMOBILE",
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Jul 01, 2026 02:17",
"full_date": "2026-06-30T23:17:42+00:00",
"diff_minutes": -10902,
"ad": "2026-06-30T23:17:42+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-06-30T23:17:42+00:00",
"timed_end_at": null,
"last_sold_day": "2026-07-01",
"last_sold_status": "Sold",
"sold_buy_now": true,
"sold_timed": false
},
"pricing": {
"current_bid_usd": null,
"current_bid2_usd": 0,
"buy_now_usd": 2950,
"last_sold_price_usd": 2950,
"estimated_cost": {
"from": 250,
"to": 10900,
"text": "$250 - $10,900"
}
},
"location": {
"display": "Kansas City (KS)",
"send_from": "Savannah",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "ENHANCED VEHICLES",
"label": "Enhanced vehicles",
"class_hint": "warning"
},
"has_key": false,
"loss": null,
"primary_damage": "Front end",
"secondary_damage": null
},
"odometer": {
"mi": 0,
"km": 0
},
"vehicle_specs": {
"exterior_color": "Blue",
"engine": {
"raw": "2.0L 4",
"size_l": "2.0",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "ALL WHEEL DRIVE",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERT OF TITLE-REPOSSESSED",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 13,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/dd337d18aba54151aba03be233f6af12_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/0f9bf918d8474896a73906016f443dc8_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/4d99e07da92b43c9bac201b38dffdc7b_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/27a5232243a74cc482d9dbeccd999942_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/8c0f1b25497f42729d40c0f4ecc182fd_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/dfd2ced64ae044a0b08996d2871565bc_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0226/6a264278ec9349b3ac06c951732f9029_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/7662aa1a0d7a48628ab75bf09aef34e3_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/e781b69e58c14be0992849f5af3e8d1e_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/ba612a21426a4353aeab7a4b78243d57_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/c48b0646935a4731ba00a685a045d43d_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/0c58947063c740b8aae0fc2a860a3854_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/fc7a70981e3e4b428a52546e155baa18_vhrs.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/dd337d18aba54151aba03be233f6af12_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/dd337d18aba54151aba03be233f6af12_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/dd337d18aba54151aba03be233f6af12_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/0f9bf918d8474896a73906016f443dc8_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/0f9bf918d8474896a73906016f443dc8_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/0f9bf918d8474896a73906016f443dc8_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/4d99e07da92b43c9bac201b38dffdc7b_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/4d99e07da92b43c9bac201b38dffdc7b_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/4d99e07da92b43c9bac201b38dffdc7b_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/27a5232243a74cc482d9dbeccd999942_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/27a5232243a74cc482d9dbeccd999942_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/27a5232243a74cc482d9dbeccd999942_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/8c0f1b25497f42729d40c0f4ecc182fd_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/8c0f1b25497f42729d40c0f4ecc182fd_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/8c0f1b25497f42729d40c0f4ecc182fd_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/dfd2ced64ae044a0b08996d2871565bc_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/dfd2ced64ae044a0b08996d2871565bc_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/dfd2ced64ae044a0b08996d2871565bc_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0226/6a264278ec9349b3ac06c951732f9029_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0226/6a264278ec9349b3ac06c951732f9029_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0226/6a264278ec9349b3ac06c951732f9029_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/7662aa1a0d7a48628ab75bf09aef34e3_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/7662aa1a0d7a48628ab75bf09aef34e3_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/7662aa1a0d7a48628ab75bf09aef34e3_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/e781b69e58c14be0992849f5af3e8d1e_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/e781b69e58c14be0992849f5af3e8d1e_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/e781b69e58c14be0992849f5af3e8d1e_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/ba612a21426a4353aeab7a4b78243d57_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/ba612a21426a4353aeab7a4b78243d57_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/ba612a21426a4353aeab7a4b78243d57_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/c48b0646935a4731ba00a685a045d43d_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/c48b0646935a4731ba00a685a045d43d_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/c48b0646935a4731ba00a685a045d43d_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/0c58947063c740b8aae0fc2a860a3854_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/0c58947063c740b8aae0fc2a860a3854_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/0c58947063c740b8aae0fc2a860a3854_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/fc7a70981e3e4b428a52546e155baa18_vhrs.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/fc7a70981e3e4b428a52546e155baa18_vhrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0126/fc7a70981e3e4b428a52546e155baa18_vhrs.jpg"
}
]
},
"details": null,
"facility": {
"id": 369,
"state": null,
"zip": "66111",
"lat": 39.0590729999999979327185428701341152191162109375,
"lng": -94.7756715000000014015313354320824146270751953125,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2018-hyundai-tucson-se-KM8J23A47JU700492",
"vin": "KM8J23A47JU700492",
"platform": "copart",
"platform_id": 1,
"lot_number": "58335946",
"ad": "2026-06-25T13:39:15+00:00",
"title": "2018 HYUNDAI TUCSON SE",
"year": 2018,
"make": "HYUNDAI",
"model": "TUCSON",
"type": null,
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Jun 25, 2026 16:39",
"full_date": "2026-06-25T13:39:15+00:00",
"diff_minutes": -18681,
"ad": "2026-06-25T13:39:15+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-06-25T13:39:15+00:00",
"timed_end_at": null,
"last_sold_day": "2026-06-25",
"last_sold_status": "Sold",
"sold_buy_now": true,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 4450,
"current_bid2_usd": 4450,
"buy_now_usd": 29500,
"last_sold_price_usd": 29500,
"estimated_cost": {
"from": 475,
"to": 6900,
"text": "$475 - $6,900"
}
},
"location": {
"display": "Dallas (TX)",
"send_from": "Houston",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Minor dent/scratches",
"secondary_damage": null
},
"odometer": {
"mi": 114155,
"km": 183714
},
"vehicle_specs": {
"exterior_color": "Black",
"engine": {
"raw": "2.0L 4",
"size_l": "2.0",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "FRONT WHEEL DRIVE",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERTIFICATE OF TITLE",
"type": "success",
"export": true,
"registration": true,
"is_pending": true,
"page_id": 10,
"sale_document_group": "pending"
},
"media": {
"thumbs_count": 14,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/417a6c09bd2f45b38b679b8100d2b4d7_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f416730428984b00bb7a00be3f636af6_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/ebb9ff64d16143d1a2169125fbbf517f_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/b02256f1af5c41d68025367d8eff7147_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/6f117714c1e84e01b51f0edf6045aa17_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/28bafa2d8a1b46549ba3c2cb8b6377a7_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/70b93e2810a9493d9f75ee26a1481044_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8ba092a6ed44488e83ea7458e2b402b3_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/c30c556695cd467eabff031ba68847bf_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/93544737e31e4a98bf807b03dfe4aa54_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9b0c8f0ddfcf450592e60001e4016b8d_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f8103117f7e84199a613280a8538fab4_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9225565c31c24b2899ad1d0f8630bbb8_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/b4843dfaae0c44b382cb30e377cb46d0_ful.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/417a6c09bd2f45b38b679b8100d2b4d7_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/417a6c09bd2f45b38b679b8100d2b4d7_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/417a6c09bd2f45b38b679b8100d2b4d7_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f416730428984b00bb7a00be3f636af6_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f416730428984b00bb7a00be3f636af6_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f416730428984b00bb7a00be3f636af6_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/ebb9ff64d16143d1a2169125fbbf517f_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/ebb9ff64d16143d1a2169125fbbf517f_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/ebb9ff64d16143d1a2169125fbbf517f_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/b02256f1af5c41d68025367d8eff7147_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/b02256f1af5c41d68025367d8eff7147_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/b02256f1af5c41d68025367d8eff7147_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/6f117714c1e84e01b51f0edf6045aa17_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/6f117714c1e84e01b51f0edf6045aa17_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/6f117714c1e84e01b51f0edf6045aa17_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/28bafa2d8a1b46549ba3c2cb8b6377a7_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/28bafa2d8a1b46549ba3c2cb8b6377a7_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/28bafa2d8a1b46549ba3c2cb8b6377a7_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/70b93e2810a9493d9f75ee26a1481044_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/70b93e2810a9493d9f75ee26a1481044_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/70b93e2810a9493d9f75ee26a1481044_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8ba092a6ed44488e83ea7458e2b402b3_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8ba092a6ed44488e83ea7458e2b402b3_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8ba092a6ed44488e83ea7458e2b402b3_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/c30c556695cd467eabff031ba68847bf_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/c30c556695cd467eabff031ba68847bf_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/c30c556695cd467eabff031ba68847bf_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/93544737e31e4a98bf807b03dfe4aa54_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/93544737e31e4a98bf807b03dfe4aa54_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/93544737e31e4a98bf807b03dfe4aa54_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9b0c8f0ddfcf450592e60001e4016b8d_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9b0c8f0ddfcf450592e60001e4016b8d_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9b0c8f0ddfcf450592e60001e4016b8d_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f8103117f7e84199a613280a8538fab4_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f8103117f7e84199a613280a8538fab4_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f8103117f7e84199a613280a8538fab4_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9225565c31c24b2899ad1d0f8630bbb8_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9225565c31c24b2899ad1d0f8630bbb8_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9225565c31c24b2899ad1d0f8630bbb8_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/b4843dfaae0c44b382cb30e377cb46d0_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/b4843dfaae0c44b382cb30e377cb46d0_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/b4843dfaae0c44b382cb30e377cb46d0_hrs.jpg"
}
]
},
"details": null,
"facility": {
"id": null,
"state": null,
"zip": null,
"lat": null,
"lng": null,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2020-hyundai-tucson-value-KM8J33A45LU261552",
"vin": "KM8J33A45LU261552",
"platform": "copart",
"platform_id": 1,
"lot_number": "58324936",
"ad": "2026-06-25T13:52:51+00:00",
"title": "2020 HYUNDAI TUCSON VALUE",
"year": 2020,
"make": "HYUNDAI",
"model": "TUCSON",
"type": "AUTOMOBILE",
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Jun 25, 2026 16:52",
"full_date": "2026-06-25T13:52:51+00:00",
"diff_minutes": -18667,
"ad": "2026-06-25T13:52:51+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-06-25T13:52:51+00:00",
"timed_end_at": null,
"last_sold_day": "2026-06-25",
"last_sold_status": "Sold",
"sold_buy_now": true,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 5900,
"current_bid2_usd": 5900,
"buy_now_usd": 29500,
"last_sold_price_usd": 29500,
"estimated_cost": {
"from": 250,
"to": 10900,
"text": "$250 - $10,900"
}
},
"location": {
"display": "Dallas (TX)",
"send_from": "Houston",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Minor dent/scratches",
"secondary_damage": null
},
"odometer": {
"mi": 155075,
"km": 249568
},
"vehicle_specs": {
"exterior_color": "Black",
"engine": {
"raw": "2.0L 4",
"size_l": "2.0",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "FRONT WHEEL DRIVE",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERTIFICATE OF TITLE",
"type": "success",
"export": true,
"registration": true,
"is_pending": true,
"page_id": 10,
"sale_document_group": "pending"
},
"media": {
"thumbs_count": 14,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/a0a928d72a484e2b89d669d3cd159289_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/ce6cceacb6594f10b9cb782bbe4935ab_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0dbb852c806c46dab253346ebde60a35_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/cc607bd0439a4307b90c77275539ee15_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/87d458da3c7c4b5dad36501aaf1c7e63_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/048859c087f946279722506ccffb627e_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/c4a606cedd224b5b8f41d5202884f65f_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f3547c3f504940a9a3356affe28cdcee_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2ee69029f07b4ca9aecdcbd03aa8d2bb_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/93813704bc2a4aea8852c921857cc133_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/cdd375e5d0424e79a4f7b511c32f4766_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/6a508466e2a440cb862b72ffaec2c43e_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0e54405c81a345279d7d2f82f0f005a6_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/57a0fdfb5b8745a585a21463f47fbca0_ful.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/a0a928d72a484e2b89d669d3cd159289_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/a0a928d72a484e2b89d669d3cd159289_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/a0a928d72a484e2b89d669d3cd159289_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/ce6cceacb6594f10b9cb782bbe4935ab_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/ce6cceacb6594f10b9cb782bbe4935ab_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/ce6cceacb6594f10b9cb782bbe4935ab_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0dbb852c806c46dab253346ebde60a35_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0dbb852c806c46dab253346ebde60a35_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0dbb852c806c46dab253346ebde60a35_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/cc607bd0439a4307b90c77275539ee15_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/cc607bd0439a4307b90c77275539ee15_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/cc607bd0439a4307b90c77275539ee15_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/87d458da3c7c4b5dad36501aaf1c7e63_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/87d458da3c7c4b5dad36501aaf1c7e63_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/87d458da3c7c4b5dad36501aaf1c7e63_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/048859c087f946279722506ccffb627e_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/048859c087f946279722506ccffb627e_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/048859c087f946279722506ccffb627e_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/c4a606cedd224b5b8f41d5202884f65f_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/c4a606cedd224b5b8f41d5202884f65f_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/c4a606cedd224b5b8f41d5202884f65f_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f3547c3f504940a9a3356affe28cdcee_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f3547c3f504940a9a3356affe28cdcee_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f3547c3f504940a9a3356affe28cdcee_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2ee69029f07b4ca9aecdcbd03aa8d2bb_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2ee69029f07b4ca9aecdcbd03aa8d2bb_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2ee69029f07b4ca9aecdcbd03aa8d2bb_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/93813704bc2a4aea8852c921857cc133_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/93813704bc2a4aea8852c921857cc133_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/93813704bc2a4aea8852c921857cc133_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/cdd375e5d0424e79a4f7b511c32f4766_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/cdd375e5d0424e79a4f7b511c32f4766_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/cdd375e5d0424e79a4f7b511c32f4766_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/6a508466e2a440cb862b72ffaec2c43e_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/6a508466e2a440cb862b72ffaec2c43e_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/6a508466e2a440cb862b72ffaec2c43e_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0e54405c81a345279d7d2f82f0f005a6_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0e54405c81a345279d7d2f82f0f005a6_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/0e54405c81a345279d7d2f82f0f005a6_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/57a0fdfb5b8745a585a21463f47fbca0_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/57a0fdfb5b8745a585a21463f47fbca0_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/57a0fdfb5b8745a585a21463f47fbca0_hrs.jpg"
}
]
},
"details": null,
"facility": {
"id": null,
"state": null,
"zip": null,
"lat": null,
"lng": null,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2015-hyundai-tucson-se-KM8JUCAG0FU958512",
"vin": "KM8JUCAG0FU958512",
"platform": "copart",
"platform_id": 1,
"lot_number": "56413096",
"ad": "2026-06-25T15:34:49+00:00",
"title": "2015 HYUNDAI TUCSON SE",
"year": 2015,
"make": "HYUNDAI",
"model": "TUCSON",
"type": "SUV",
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Jun 25, 2026 18:34",
"full_date": "2026-06-25T15:34:49+00:00",
"diff_minutes": -18565,
"ad": "2026-06-25T15:34:49+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": false,
"auction_at": "2026-06-25T15:34:49+00:00",
"timed_end_at": null,
"last_sold_day": "2026-06-25",
"last_sold_status": "Sold",
"sold_buy_now": true,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 175,
"current_bid2_usd": 175,
"buy_now_usd": null,
"last_sold_price_usd": 175,
"estimated_cost": {
"from": 175,
"to": 4128,
"text": "$175 - $4,128"
}
},
"location": {
"display": "Philadelphia (PA)",
"send_from": "NY",
"state": null
},
"seller": {
"name": "unknown",
"type": "unknown",
"class": "bg-primary-D9DADA",
"text_class": "text-primary"
},
"condition": {
"run_condition": {
"value": "ENHANCED VEHICLES",
"label": "Enhanced vehicles",
"class_hint": "warning"
},
"has_key": true,
"loss": null,
"primary_damage": "Front end",
"secondary_damage": null
},
"odometer": {
"mi": 146815,
"km": 236275
},
"vehicle_specs": {
"exterior_color": "Black",
"engine": {
"raw": "2.4L 4",
"size_l": "2.4",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "ALL WHEEL DRIVE",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERTIFICATE OF SALVAGE",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 13,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/05edcb2fb6c8497ea842149dfcd715df_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/330375e308ba42ec8c1a58d08b621aa9_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/68f1b70cc68549219c61ddd956314d3d_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/48f0accee983474ba59c294a2732dc21_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9ce5defa87e442fb9d20eb9409b80738_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/1d34fe15a1ba4b2d9328cbebcad11cdd_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/e73e2026cd234bc190bb0c95d58b43c1_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/34b821b1efd64ca992c526d0da0d0f7e_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/4eb698b625e941da9bf947bb95fb990e_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8c360fcdfd534270899820610d763c9d_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/67512b6c845f405f851cb540db4cb425_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/af49c1e410cc4e0690e3cd8475ccef2d_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/7f26e79498274d708f75900664c7f05a_vhrs.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/05edcb2fb6c8497ea842149dfcd715df_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/05edcb2fb6c8497ea842149dfcd715df_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/05edcb2fb6c8497ea842149dfcd715df_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/330375e308ba42ec8c1a58d08b621aa9_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/330375e308ba42ec8c1a58d08b621aa9_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/330375e308ba42ec8c1a58d08b621aa9_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/68f1b70cc68549219c61ddd956314d3d_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/68f1b70cc68549219c61ddd956314d3d_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/68f1b70cc68549219c61ddd956314d3d_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/48f0accee983474ba59c294a2732dc21_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/48f0accee983474ba59c294a2732dc21_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/48f0accee983474ba59c294a2732dc21_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9ce5defa87e442fb9d20eb9409b80738_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9ce5defa87e442fb9d20eb9409b80738_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/9ce5defa87e442fb9d20eb9409b80738_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/1d34fe15a1ba4b2d9328cbebcad11cdd_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/1d34fe15a1ba4b2d9328cbebcad11cdd_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/1d34fe15a1ba4b2d9328cbebcad11cdd_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/e73e2026cd234bc190bb0c95d58b43c1_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/e73e2026cd234bc190bb0c95d58b43c1_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/e73e2026cd234bc190bb0c95d58b43c1_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/34b821b1efd64ca992c526d0da0d0f7e_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/34b821b1efd64ca992c526d0da0d0f7e_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/34b821b1efd64ca992c526d0da0d0f7e_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/4eb698b625e941da9bf947bb95fb990e_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/4eb698b625e941da9bf947bb95fb990e_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/4eb698b625e941da9bf947bb95fb990e_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8c360fcdfd534270899820610d763c9d_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8c360fcdfd534270899820610d763c9d_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8c360fcdfd534270899820610d763c9d_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/67512b6c845f405f851cb540db4cb425_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/67512b6c845f405f851cb540db4cb425_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/67512b6c845f405f851cb540db4cb425_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/af49c1e410cc4e0690e3cd8475ccef2d_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/af49c1e410cc4e0690e3cd8475ccef2d_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/af49c1e410cc4e0690e3cd8475ccef2d_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/7f26e79498274d708f75900664c7f05a_vhrs.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/7f26e79498274d708f75900664c7f05a_vhrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/7f26e79498274d708f75900664c7f05a_vhrs.jpg"
}
]
},
"details": null,
"facility": {
"id": null,
"state": null,
"zip": null,
"lat": null,
"lng": null,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2018-hyundai-tucson-sel-KM8J3CA45JU713741",
"vin": "KM8J3CA45JU713741",
"platform": "copart",
"platform_id": 1,
"lot_number": "58641246",
"ad": "2026-06-25T13:29:44+00:00",
"title": "2018 HYUNDAI TUCSON SEL",
"year": 2018,
"make": "HYUNDAI",
"model": "TUCSON",
"type": null,
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Jun 25, 2026 16:29",
"full_date": "2026-06-25T13:29:44+00:00",
"diff_minutes": -18690,
"ad": "2026-06-25T13:29:44+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-06-25T13:29:44+00:00",
"timed_end_at": null,
"last_sold_day": "2026-06-25",
"last_sold_status": "Sold",
"sold_buy_now": true,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 1100,
"current_bid2_usd": 1100,
"buy_now_usd": 29500,
"last_sold_price_usd": 29500,
"estimated_cost": {
"from": 475,
"to": 6900,
"text": "$475 - $6,900"
}
},
"location": {
"display": "Dallas (TX)",
"send_from": "Houston",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Minor dent/scratches",
"secondary_damage": null
},
"odometer": {
"mi": 176660,
"km": 284306
},
"vehicle_specs": {
"exterior_color": "Black",
"engine": {
"raw": "2.0L 4",
"size_l": "2.0",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "ALL WHEEL DRIVE",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERTIFICATE OF TITLE",
"type": "success",
"export": true,
"registration": true,
"is_pending": true,
"page_id": 10,
"sale_document_group": "pending"
},
"media": {
"thumbs_count": 14,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f3975e4798644c478a1239356e90491e_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5740f36797b4452789e1270612595116_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/d2102714ce9b4354997b0d08c67d2041_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/dd7b84647a2644ca8d3b4c8780c3515d_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/eda4d2a327e148b698606a088988e3e4_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8f004303e650426299ddcc1f217c2ec3_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/6fffa86962b54a4b9a871a98f65f9bb5_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/84b92bc08cae4ea2971f57dbecea35ac_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5c6ff972971f4339b14eb6595a867260_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/816eb0f9f1314539b6044a1c41e09470_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8f1a88a9398a45d9927087e9213b56b9_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2759403719b3434bb3d6cacb96201c19_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5009b7f3b324413ca5bf4e945c41dc33_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/bdc72f4ca13b48dfaa21f97e56aedf8e_ful.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f3975e4798644c478a1239356e90491e_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f3975e4798644c478a1239356e90491e_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/f3975e4798644c478a1239356e90491e_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5740f36797b4452789e1270612595116_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5740f36797b4452789e1270612595116_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5740f36797b4452789e1270612595116_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/d2102714ce9b4354997b0d08c67d2041_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/d2102714ce9b4354997b0d08c67d2041_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/d2102714ce9b4354997b0d08c67d2041_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/dd7b84647a2644ca8d3b4c8780c3515d_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/dd7b84647a2644ca8d3b4c8780c3515d_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/dd7b84647a2644ca8d3b4c8780c3515d_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/eda4d2a327e148b698606a088988e3e4_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/eda4d2a327e148b698606a088988e3e4_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/eda4d2a327e148b698606a088988e3e4_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8f004303e650426299ddcc1f217c2ec3_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8f004303e650426299ddcc1f217c2ec3_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8f004303e650426299ddcc1f217c2ec3_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/6fffa86962b54a4b9a871a98f65f9bb5_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/6fffa86962b54a4b9a871a98f65f9bb5_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/6fffa86962b54a4b9a871a98f65f9bb5_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/84b92bc08cae4ea2971f57dbecea35ac_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/84b92bc08cae4ea2971f57dbecea35ac_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/84b92bc08cae4ea2971f57dbecea35ac_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5c6ff972971f4339b14eb6595a867260_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5c6ff972971f4339b14eb6595a867260_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5c6ff972971f4339b14eb6595a867260_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/816eb0f9f1314539b6044a1c41e09470_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/816eb0f9f1314539b6044a1c41e09470_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/816eb0f9f1314539b6044a1c41e09470_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8f1a88a9398a45d9927087e9213b56b9_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8f1a88a9398a45d9927087e9213b56b9_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/8f1a88a9398a45d9927087e9213b56b9_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2759403719b3434bb3d6cacb96201c19_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2759403719b3434bb3d6cacb96201c19_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/2759403719b3434bb3d6cacb96201c19_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5009b7f3b324413ca5bf4e945c41dc33_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5009b7f3b324413ca5bf4e945c41dc33_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/5009b7f3b324413ca5bf4e945c41dc33_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/bdc72f4ca13b48dfaa21f97e56aedf8e_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/bdc72f4ca13b48dfaa21f97e56aedf8e_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0626/bdc72f4ca13b48dfaa21f97e56aedf8e_hrs.jpg"
}
]
},
"details": null,
"facility": {
"id": null,
"state": null,
"zip": null,
"lat": null,
"lng": null,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2015-hyundai-tucson-gls-KM8JT3AF0FU971576",
"vin": "KM8JT3AF0FU971576",
"platform": "copart",
"platform_id": 1,
"lot_number": "53959796",
"ad": "2026-06-22T16:31:47+00:00",
"title": "2015 HYUNDAI TUCSON GLS",
"year": 2015,
"make": "HYUNDAI",
"model": "TUCSON",
"type": "SUV",
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Jun 22, 2026 19:31",
"full_date": "2026-06-22T16:31:47+00:00",
"diff_minutes": -22828,
"ad": "2026-06-22T16:31:47+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-06-22T16:31:47+00:00",
"timed_end_at": null,
"last_sold_day": "2026-06-22",
"last_sold_status": "Sold",
"sold_buy_now": true,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 525,
"current_bid2_usd": 525,
"buy_now_usd": 2800,
"last_sold_price_usd": 2800,
"estimated_cost": {
"from": 175,
"to": 4128,
"text": "$175 - $4,128"
}
},
"location": {
"display": "Ottawa (ON)",
"send_from": "Chicago",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Minor dent/scratches",
"secondary_damage": null
},
"odometer": {
"mi": 248094,
"km": 399268
},
"vehicle_specs": {
"exterior_color": "Black",
"engine": {
"raw": "2.0L 4",
"size_l": "2.0",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "FRONT WHEEL DRIVE",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "PERMIT NO BRAND - UNFIT",
"type": "other",
"export": true,
"registration": true,
"is_pending": true,
"page_id": 1,
"sale_document_group": "pending"
},
"media": {
"thumbs_count": 10,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/1af2049e9e1743538d3e97b03d80122e_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/8a7869f9c76b4d4283e1587db91da8e7_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/139e920a1334428495b1ba426cd68db3_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/64d877b301d64193bff89f50952c3e09_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/b8dd88f70ecf4d489e1e4a9797589b38_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/2b60710d276a40a49ba673668396bce0_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/bdac4f1b068b4d3080ea250f69c858c8_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/99743b7b32e04c81894827bdb4070bc2_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/bae251051c59411aae5b5cb747cd26a3_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/c8910a7111774541aa7d34af222be1fe_ful.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/1af2049e9e1743538d3e97b03d80122e_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/1af2049e9e1743538d3e97b03d80122e_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/1af2049e9e1743538d3e97b03d80122e_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/8a7869f9c76b4d4283e1587db91da8e7_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/8a7869f9c76b4d4283e1587db91da8e7_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/8a7869f9c76b4d4283e1587db91da8e7_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/139e920a1334428495b1ba426cd68db3_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/139e920a1334428495b1ba426cd68db3_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/139e920a1334428495b1ba426cd68db3_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/64d877b301d64193bff89f50952c3e09_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/64d877b301d64193bff89f50952c3e09_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/64d877b301d64193bff89f50952c3e09_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/b8dd88f70ecf4d489e1e4a9797589b38_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/b8dd88f70ecf4d489e1e4a9797589b38_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/b8dd88f70ecf4d489e1e4a9797589b38_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/2b60710d276a40a49ba673668396bce0_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/2b60710d276a40a49ba673668396bce0_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/2b60710d276a40a49ba673668396bce0_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/bdac4f1b068b4d3080ea250f69c858c8_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/bdac4f1b068b4d3080ea250f69c858c8_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/bdac4f1b068b4d3080ea250f69c858c8_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/99743b7b32e04c81894827bdb4070bc2_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/99743b7b32e04c81894827bdb4070bc2_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/99743b7b32e04c81894827bdb4070bc2_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/bae251051c59411aae5b5cb747cd26a3_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/bae251051c59411aae5b5cb747cd26a3_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/bae251051c59411aae5b5cb747cd26a3_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/c8910a7111774541aa7d34af222be1fe_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/c8910a7111774541aa7d34af222be1fe_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/c8910a7111774541aa7d34af222be1fe_hrs.jpg"
}
]
},
"details": null,
"facility": {
"id": null,
"state": null,
"zip": null,
"lat": null,
"lng": null,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2018-hyundai-tucson-sel-KM8J3CA40JU601333",
"vin": "KM8J3CA40JU601333",
"platform": "copart",
"platform_id": 1,
"lot_number": "51921446",
"ad": "2026-06-19T09:28:18+00:00",
"title": "2018 HYUNDAI TUCSON SEL",
"year": 2018,
"make": "HYUNDAI",
"model": "TUCSON",
"type": "AUTOMOBILE",
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Jun 19, 2026 12:28",
"full_date": "2026-06-19T09:28:18+00:00",
"diff_minutes": -27572,
"ad": "2026-06-19T09:28:18+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-06-19T09:28:18+00:00",
"timed_end_at": null,
"last_sold_day": "2026-06-19",
"last_sold_status": "Sold",
"sold_buy_now": true,
"sold_timed": false
},
"pricing": {
"current_bid_usd": null,
"current_bid2_usd": 0,
"buy_now_usd": 6900,
"last_sold_price_usd": 6900,
"estimated_cost": {
"from": 475,
"to": 6900,
"text": "$475 - $6,900"
}
},
"location": {
"display": "North Boston (MA)",
"send_from": "NY",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Minor dent/scratches",
"secondary_damage": null
},
"odometer": {
"mi": 145491,
"km": 234144
},
"vehicle_specs": {
"exterior_color": "Gray",
"engine": {
"raw": "2.0L 4",
"size_l": "2.0",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Gas",
"drive_type": "ALL WHEEL DRIVE",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERTIFICATE OF TITLE",
"type": "success",
"export": true,
"registration": true,
"is_pending": true,
"page_id": 10,
"sale_document_group": "pending"
},
"media": {
"thumbs_count": 10,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/51f7d229627241859c0c38ad058d0f2e_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/45ce8678d4e042728b5980ae182642fb_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/f9192d6c8622455bbf1623d39625f706_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/517fb5e65b2246eb866671b24691efd6_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/7df94c32d6344932bcfdc99f9471e6c0_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/90d73548208a4f7280f78f752e6be970_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/aadc52a0676c49fcaba38631311dca21_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/ac5d26118bde45ad95ec273da02ebc40_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/01197764feea47d58ff00db62a9dd5aa_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/4c319b5de7ae45ffa00f1278f261a816_ful.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/51f7d229627241859c0c38ad058d0f2e_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/51f7d229627241859c0c38ad058d0f2e_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/51f7d229627241859c0c38ad058d0f2e_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/45ce8678d4e042728b5980ae182642fb_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/45ce8678d4e042728b5980ae182642fb_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/45ce8678d4e042728b5980ae182642fb_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/f9192d6c8622455bbf1623d39625f706_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/f9192d6c8622455bbf1623d39625f706_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/f9192d6c8622455bbf1623d39625f706_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/517fb5e65b2246eb866671b24691efd6_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/517fb5e65b2246eb866671b24691efd6_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/517fb5e65b2246eb866671b24691efd6_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/7df94c32d6344932bcfdc99f9471e6c0_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/7df94c32d6344932bcfdc99f9471e6c0_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/7df94c32d6344932bcfdc99f9471e6c0_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/90d73548208a4f7280f78f752e6be970_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/90d73548208a4f7280f78f752e6be970_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/90d73548208a4f7280f78f752e6be970_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/aadc52a0676c49fcaba38631311dca21_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/aadc52a0676c49fcaba38631311dca21_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/aadc52a0676c49fcaba38631311dca21_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/ac5d26118bde45ad95ec273da02ebc40_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/ac5d26118bde45ad95ec273da02ebc40_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/ac5d26118bde45ad95ec273da02ebc40_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/01197764feea47d58ff00db62a9dd5aa_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/01197764feea47d58ff00db62a9dd5aa_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/01197764feea47d58ff00db62a9dd5aa_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/4c319b5de7ae45ffa00f1278f261a816_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/4c319b5de7ae45ffa00f1278f261a816_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0526/4c319b5de7ae45ffa00f1278f261a816_hrs.jpg"
}
]
},
"details": null,
"facility": {
"id": null,
"state": null,
"zip": null,
"lat": null,
"lng": null,
"office_name": null
},
"distance": null
},
{
"slug_vin": "2022-hyundai-tucson-blue-KM8JBCA16NU015590",
"vin": "KM8JBCA16NU015590",
"platform": "copart",
"platform_id": 1,
"lot_number": "49339276",
"ad": "2026-06-16T05:40:48+00:00",
"title": "2022 HYUNDAI TUCSON BLUE",
"year": 2022,
"make": "HYUNDAI",
"model": "TUCSON",
"type": "AUTOMOBILE",
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Jun 16, 2026 08:40",
"full_date": "2026-06-16T05:40:48+00:00",
"diff_minutes": -32119,
"ad": "2026-06-16T05:40:48+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": true,
"auction_at": "2026-06-16T05:40:48+00:00",
"timed_end_at": null,
"last_sold_day": "2026-06-16",
"last_sold_status": "Sold",
"sold_buy_now": true,
"sold_timed": false
},
"pricing": {
"current_bid_usd": null,
"current_bid2_usd": 0,
"buy_now_usd": 20002,
"last_sold_price_usd": 20002,
"estimated_cost": {
"from": 125,
"to": 13002,
"text": "$125 - $13,002"
}
},
"location": {
"display": "York Haven (PA)",
"send_from": "NY",
"state": null
},
"seller": {
"name": "Bridgecrest Acceptance",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Normal wear",
"secondary_damage": null
},
"odometer": {
"mi": 35458,
"km": 57064
},
"vehicle_specs": {
"exterior_color": "White",
"engine": {
"raw": "1.6L 4",
"size_l": "1.6",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Electric and gas hybrid",
"drive_type": "ALL WHEEL DRIVE",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERTIFICATE OF TITLE",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 13,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/307a5f4bc8f24fa7b524300fcf16d0a9_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/4f5551bc0f98400fb4a75315c8270480_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/cf3b9d77d59d4aec84929ba2623ee043_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/74dc44ab0a4244bcb5d27e69af0a3382_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/51c9a962c05540b2a587e6179a3ce7f5_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/8ce00cb2e9fd4ac5b1b9b759be4a4529_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/ccb1b2dbfbbe47079b3453c63dcdc75b_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/8e356bf22f314fd5adf81de2d4eff17c_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/d01a88a4bc2546878d28d3eac31bd794_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/872ccb2b1040499bba2526dd47464dcd_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/fe6ed9158980490f86b100f9e6d731a0_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/f551484ceee94ad4992a61e6d9b57700_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/1880f3aff0f14092bdaa710aec0b430d_vhrs.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/307a5f4bc8f24fa7b524300fcf16d0a9_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/307a5f4bc8f24fa7b524300fcf16d0a9_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/307a5f4bc8f24fa7b524300fcf16d0a9_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/4f5551bc0f98400fb4a75315c8270480_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/4f5551bc0f98400fb4a75315c8270480_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/4f5551bc0f98400fb4a75315c8270480_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/cf3b9d77d59d4aec84929ba2623ee043_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/cf3b9d77d59d4aec84929ba2623ee043_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/cf3b9d77d59d4aec84929ba2623ee043_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/74dc44ab0a4244bcb5d27e69af0a3382_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/74dc44ab0a4244bcb5d27e69af0a3382_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/74dc44ab0a4244bcb5d27e69af0a3382_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/51c9a962c05540b2a587e6179a3ce7f5_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/51c9a962c05540b2a587e6179a3ce7f5_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/51c9a962c05540b2a587e6179a3ce7f5_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/8ce00cb2e9fd4ac5b1b9b759be4a4529_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/8ce00cb2e9fd4ac5b1b9b759be4a4529_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/8ce00cb2e9fd4ac5b1b9b759be4a4529_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/ccb1b2dbfbbe47079b3453c63dcdc75b_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/ccb1b2dbfbbe47079b3453c63dcdc75b_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/ccb1b2dbfbbe47079b3453c63dcdc75b_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/8e356bf22f314fd5adf81de2d4eff17c_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/8e356bf22f314fd5adf81de2d4eff17c_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/8e356bf22f314fd5adf81de2d4eff17c_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/d01a88a4bc2546878d28d3eac31bd794_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/d01a88a4bc2546878d28d3eac31bd794_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/d01a88a4bc2546878d28d3eac31bd794_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/872ccb2b1040499bba2526dd47464dcd_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/872ccb2b1040499bba2526dd47464dcd_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/872ccb2b1040499bba2526dd47464dcd_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/fe6ed9158980490f86b100f9e6d731a0_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/fe6ed9158980490f86b100f9e6d731a0_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/fe6ed9158980490f86b100f9e6d731a0_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/f551484ceee94ad4992a61e6d9b57700_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/f551484ceee94ad4992a61e6d9b57700_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/f551484ceee94ad4992a61e6d9b57700_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/1880f3aff0f14092bdaa710aec0b430d_vhrs.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/1880f3aff0f14092bdaa710aec0b430d_vhrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/1880f3aff0f14092bdaa710aec0b430d_vhrs.jpg"
}
]
},
"details": null,
"facility": {
"id": null,
"state": null,
"zip": null,
"lat": null,
"lng": null,
"office_name": null
},
"distance": null
}
]
}
},
"usage": {
"monthly_quota_left": 100
}
}
No test yet.
Returns all available filters, ranges and option lists needed to build a vehicle auction search UI. Use this endpoint to generate search forms, filter panels and dropdown lists for makes, models, years, prices, auction statuses, vehicle attributes, locations and other supported filter fields.
export APIBARA_API_KEY="YOUR_API_KEY"
curl --request GET \
--url "https://apibara.tech/api/v1/vehicle-auction/vehicles/filters" \
--header "Accept: application/json" \
--header "X-API-Key: ${APIBARA_API_KEY}"
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles/filters", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": process.env.APIBARA_API_KEY || 'YOUR_API_KEY',
}
});
if (!response.ok) {
throw new Error(`Apibara API error: ${response.status}`);
}
const data = await response.json();
console.log(data);
type ApibaraResponse = Record<string, unknown>;
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles/filters", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": process.env.APIBARA_API_KEY ?? 'YOUR_API_KEY',
} satisfies Record<string, string>
});
if (!response.ok) {
throw new Error(`Apibara API error: ${response.status}`);
}
const data = await response.json() as ApibaraResponse;
console.log(data);
import os
import requests
url = "https://apibara.tech/api/v1/vehicle-auction/vehicles/filters"
headers = {
"Accept": "application/json",
"X-API-Key": os.getenv('APIBARA_API_KEY', 'YOUR_API_KEY'),
}
response = requests.request("GET", url, headers=headers)
response.raise_for_status()
print(response.json())
$apiKey = getenv('APIBARA_API_KEY') ?: 'YOUR_API_KEY';
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_URL => "https://apibara.tech/api/v1/vehicle-auction/vehicles/filters",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Accept: application/json",
'X-API-Key: ' . $apiKey,
],
]);
$response = curl_exec($ch);
$error = curl_error($ch);
curl_close($ch);
if ($error) {
throw new RuntimeException($error);
}
$data = json_decode($response, true);
print_r($data);
use Illuminate\Support\Facades\Http;
$apiKey = config('services.apibara.key') ?: env('APIBARA_API_KEY', 'YOUR_API_KEY');
$response = Http::withHeaders([
"Accept" => "application/json",
"X-API-Key" => $apiKey,
])->get("https://apibara.tech/api/v1/vehicle-auction/vehicles/filters");
$data = $response->json();
import Foundation
let apiKey = ProcessInfo.processInfo.environment["APIBARA_API_KEY"] ?? "YOUR_API_KEY"
let url = URL(string: "https://apibara.tech/api/v1/vehicle-auction/vehicles/filters")!
var request = URLRequest(url: url)
request.httpMethod = "GET"
request.setValue("application/json", forHTTPHeaderField: "Accept")
request.setValue(apiKey, forHTTPHeaderField: "X-API-Key")
let (data, response) = try await URLSession.shared.data(for: request)
if let httpResponse = response as? HTTPURLResponse, !(200...299).contains(httpResponse.statusCode) {
throw NSError(domain: "ApibaraAPI", code: httpResponse.statusCode)
}
let json = try JSONSerialization.jsonObject(with: data)
print(json)
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
String apiKey = System.getenv().getOrDefault("APIBARA_API_KEY", "YOUR_API_KEY");
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://apibara.tech/api/v1/vehicle-auction/vehicles/filters"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.header("Accept", "application/json")
.header("X-API-Key", apiKey)
.build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
import java.net.URI
import java.net.http.HttpClient
import java.net.http.HttpRequest
import java.net.http.HttpResponse
val apiKey = System.getenv("APIBARA_API_KEY") ?: "YOUR_API_KEY"
val client = HttpClient.newHttpClient()
val request = HttpRequest.newBuilder()
.uri(URI.create("https://apibara.tech/api/v1/vehicle-auction/vehicles/filters"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.header("Accept", "application/json")
.header("X-API-Key", apiKey)
.build()
val response = client.send(request, HttpResponse.BodyHandlers.ofString())
println(response.body())
using System.Net.Http;
using System.Text;
var apiKey = Environment.GetEnvironmentVariable("APIBARA_API_KEY") ?? "YOUR_API_KEY";
using var client = new HttpClient();
using var request = new HttpRequestMessage(HttpMethod.Get, "https://apibara.tech/api/v1/vehicle-auction/vehicles/filters");
request.Headers.TryAddWithoutValidation("Accept", "application/json");
request.Headers.TryAddWithoutValidation("X-API-Key", apiKey);
using var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
var json = await response.Content.ReadAsStringAsync();
Console.WriteLine(json);
package main
import (
"fmt"
"io"
"net/http"
"os"
)
func main() {
apiKey := os.Getenv("APIBARA_API_KEY")
if apiKey == "" {
apiKey = "YOUR_API_KEY"
}
req, err := http.NewRequest("GET", "https://apibara.tech/api/v1/vehicle-auction/vehicles/filters", nil)
if err != nil {
panic(err)
}
req.Header.Set("Accept", "application/json")
req.Header.Set("X-API-Key", apiKey)
res, err := http.DefaultClient.Do(req)
if err != nil {
panic(err)
}
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}
require 'net/http'
require 'json'
require 'uri'
api_key = ENV.fetch('APIBARA_API_KEY', 'YOUR_API_KEY')
uri = URI("https://apibara.tech/api/v1/vehicle-auction/vehicles/filters")
request = Net::HTTP::Get.new(uri)
request["Accept"] = "application/json"
request["X-API-Key"] = api_key
response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: uri.scheme == 'https') do |http|
http.request(request)
end
puts JSON.pretty_generate(JSON.parse(response.body))
$apiKey = getenv('APIBARA_API_KEY') ?: 'YOUR_API_KEY';
$response = wp_remote_request("https://apibara.tech/api/v1/vehicle-auction/vehicles/filters", [
'method' => "GET",
'headers' => [
"Accept" => "application/json",
"X-API-Key" => $apiKey,
],
'timeout' => 30,
]);
if (is_wp_error($response)) {
return $response->get_error_message();
}
$body = wp_remote_retrieve_body($response);
$data = json_decode($body, true);
import { NextResponse } from 'next/server';
export async function GET() {
const apiKey = process.env.APIBARA_API_KEY;
if (!apiKey) {
return NextResponse.json({ error: 'APIBARA_API_KEY is missing' }, { status: 500 });
}
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles/filters", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": apiKey,
},
cache: 'no-store',
});
const data = await response.json();
return NextResponse.json(data, { status: response.status });
}
# MCP / AI tool notes
Tool name: apibara_vehicle_auction_api
Method: GET
Endpoint path: /api/v1/vehicle-auction/vehicles/filters
Example URL: https://apibara.tech/api/v1/vehicle-auction/vehicles/filters
Required headers:
- Accept: application/json
- X-API-Key: keep this secret and store it server-side
Agent instructions:
1. Never expose API keys in frontend code, public logs, screenshots, or client bundles.
2. Use this endpoint only from a trusted backend, MCP server, server route, or secure integration layer.
3. Parse JSON responses and surface only the fields needed by the user.
4. For search endpoints, prefer specific filters such as VIN, lot number, make, model, year, location, and auction status.
5. For paginated endpoints, follow cursor or pagination fields from the API response.
{
"ok": true,
"status": 200,
"response_time_ms": 468,
"method": "GET",
"url": "https://apibara.tech/api/v1/vehicle-auction/vehicles/filters",
"request": {
"path_params": [],
"query": [],
"body": []
},
"response": {
"ok": true,
"data": {
"lot": {
"status": [
{
"value": "All",
"label": "All"
},
{
"value": "Buy Now",
"label": "Buy Now"
},
{
"value": "Timed",
"label": "Timed"
}
],
"sub_status": [
{
"value": "Open",
"label": "Open"
},
{
"value": "Live",
"label": "Live"
},
{
"value": "Ended",
"label": "Ended"
}
],
"defaults": {
"lot_status": "All",
"lot_sub_status": "Open"
}
},
"auction_type": {
"options": [
{
"value": 0,
"label": "All"
},
{
"value": 1,
"label": "Copart"
},
{
"value": 2,
"label": "IAAI"
}
],
"default": 0
},
"make_model": {
"makes": [
"2-G",
"22FT",
"ACRO TRAILER CO",
"ACTION CRAFT",
"ACURA",
"ADVANTAGE",
"AEROLINER",
"AFWV",
"AIRSTREAM",
"ALCOM",
"ALFA ROMEO",
"ALJO",
"ALLG",
"ALLIANCE",
"ALPINE",
"ALUM",
"ALUMA",
"ALUMACRAFT",
"AM GENERAL",
"AMERICAN",
"AMERICAN MOTORS",
"AMERICAN TRAILER MANUFACT",
"AMLT",
"AMO",
"ANGLER",
"APPALCHIAN",
"APRILIA",
"ARCC",
"ARCIMOTO",
"ARCT",
"ARCTIC",
"ARCTIC CAT",
"ARI",
"ARIMA",
"ARIS",
"ARO",
"ARTIC CAT",
"ASPT",
"ASTON MARTIN",
"ASVE",
"ATLA",
"ATRO",
"ATV",
"AUDI",
"AURORA PONTOON BOATS",
"AUSTIN",
"AUTOCAR LLC",
"AVALON",
"B-B",
"B/RTRAILER",
"BAJA",
"BARLETTA",
"BASHAN",
"BAYLINER",
"BEEMER",
"BENNINGTON",
"BENNINGTON MARINE",
"BENTLEY",
"BEST",
"BETA",
"BIG JOHN",
"BIG TEX",
"BIG TEX TRAILER CO INC",
"BIGT",
"BISON",
"BLAC",
"BLAZER BOATS INC",
"BLUE BIRD",
"BMBR",
"BMW",
"BOAT",
"BOBCAT",
"BOMAG",
"BOSTON WHALER",
"BRINKLEYRV",
"BRUT",
"BUELL",
"BUICK",
"BUJ",
"C&W",
"CADILLAC",
"CALICO",
"CAME",
"CAMPION BOAT",
"CAN",
"CAN-AM",
"CAN-AM DEFENDER",
"CAR",
"CARGO",
"CARGO CRAFT",
"CAROLINA SKIFF",
"CARRY ON",
"CARRY-ON",
"CASITA",
"CATAMARAN",
"CATERPILLAR",
"CCHM",
"CCM",
"CEC",
"CEDA",
"CF MOTO",
"CFMOTO",
"CHAINLINK",
"CHAMPION",
"CHAPARRAL",
"CHER",
"CHEROKEE",
"CHEV",
"CHEVROLET",
"CHEVY",
"CHRYSLER",
"CHUBBSTEEL",
"CIMA",
"CIMC",
"CIMC TRAILERS",
"CITR",
"CLEMENT",
"CLUB CAR",
"CM",
"CMQC",
"COA",
"COACH",
"COACHMEN",
"COBRA",
"COLEMAN",
"COLLINS FIFTH WHEEL",
"COLM",
"COLU",
"COMET",
"CONC",
"CONFERENCE TABLE",
"CONSTRSPEC",
"CONTENDER",
"CONTINENTAL",
"COR",
"CORN PRO",
"CORVETTE",
"COVERED WAGON",
"COVERWAGON",
"CRAFTSMAN",
"CRESTLINER",
"CRIT",
"CROSLEY",
"CROSS TRAILERS INC",
"CROSS TRUCK EQUIP CO INC",
"CROSSROADS",
"CROWN",
"CRUISER",
"CRUISERS YACHTS",
"CURRENT MOTOR COMPANY",
"DAIHATSU",
"DATSUN",
"DAWSON YACHTS/J&J IND",
"DELOREAN",
"DIAMOCARGO",
"DIAMOND",
"DIAMOND C",
"DODGE",
"DOLITTLE",
"DONG",
"DOOSAN",
"DORSEY TRAILERS",
"DPPLAILERS",
"DRV",
"DUCATI",
"DURUXX",
"DUTCHMAN",
"DUTCHMEN",
"E-Z GO EXPRESS",
"EAGLE",
"EARTHFORCE",
"EAST",
"EASY HAUL",
"EBBTIDE",
"EBY",
"ECLI",
"ECLIPSE",
"ELKR",
"EMERGENCY ONE",
"EMPI",
"ENDE",
"EQUIPMENT",
"EQUIPMENT CARGO",
"ERAN",
"EVOL",
"EVOLUTION",
"EXCE",
"EXPR",
"EXPRESS",
"EZ GO",
"EZGO",
"EZGO PTX 36V",
"FABRIQUE",
"FEATHERLITE",
"FERRARI",
"FIAT",
"FISHER",
"FISKER",
"FISKER AUTOMOTIVE",
"FLAG",
"FLEETWOOD",
"FONA",
"FONTAINE TRAILER CO",
"FORD",
"FOREST RIVER",
"FORKLIFT",
"FORMULA",
"FORR",
"FOUNTAIN",
"FOUR WINNS",
"FOXF",
"FRDM",
"FREEDOM EXPRESS",
"FREEDON",
"FREEMAN",
"FREIGHTLINER",
"FRRV",
"FRUEHAUF",
"FSTR",
"FUN",
"FVFE",
"GALLEGOS",
"GAR-BRO",
"GATO",
"GCL TRAILERS",
"GEM",
"GENERAC",
"GENERAL TRAILER CO",
"GENESIS",
"GENIE",
"GENUINE SCOOTER CO.",
"GEO",
"GG TRAILERS, SA DE CV",
"GILLIG",
"GLACIER",
"GLASTRON",
"GLAV",
"GLOBAL ELECTRIC MOTORS",
"GLOBAL ELECTRIC MOTOTRS",
"GMC",
"GOLF",
"GORILLA",
"GRAN",
"GRAND DESIGN",
"GRANDESIGN",
"GREA",
"GREAT DANE",
"GREAT DANE TRAILER",
"GREAT DANE TRAILERS",
"GULF STREAM",
"GULFSTREAM",
"H&H",
"HARBOR FREIGHT",
"HARLEY-DAVIDSON",
"HARRIS",
"HARRISKAYO",
"HATTERAS YACHTS",
"HAUL MARK IND",
"HAUL-ABOUT",
"HAULMARK",
"HAVOC",
"HDK",
"HDSN",
"HEART LAND",
"HEARTLAND",
"HEARTLAND RV",
"HEIL",
"HEWES CRAFT",
"HIBOY",
"HIDE",
"HIGHLAND RIDGE",
"HINO",
"HMDG",
"HOBI",
"HOBIE CAT",
"HOLIDAY RAMBLER",
"HOME",
"HOMEMADE",
"HOMESEADER",
"HONDA",
"HORA",
"HORN",
"HORS",
"HRLD",
"HUMMER",
"HURRICANE",
"HUSQVARNA",
"HYSTER",
"HYUNDAI",
"HYUNDAI TRANSLEAD INC",
"IC CORPORATION",
"ICE",
"ICON",
"IMAG",
"INDIAN MOTORCYCLE CO.",
"INEOS",
"INFINITI",
"INME",
"INTERNATIONAL",
"INTERSTATE",
"INTERSTATE WEST",
"INTERSTATE WEST CORP",
"INVADER",
"ISUZU",
"J & L",
"JA-MAR MFG INC",
"JAGUAR",
"JAVELIN",
"JAY",
"JAYCEE",
"JAYCO",
"JC",
"JCL",
"JEEP",
"JENSEN MOTORS",
"JET",
"JEZP",
"JIAJ",
"JIANGSU BAODIAO",
"JOHN",
"JOHN DEERE",
"JONW",
"JOZH",
"K INC DURANGO",
"KARMA AUTOMOTIVE",
"KAUFMAN",
"KAUFMAN TRAILERS",
"KAWASAKI",
"KAYO",
"KENNOR",
"KENWORTH",
"KEY",
"KEYSTERVCO",
"KEYSTONE",
"KEYSTONE RV",
"KIA",
"KIEFER",
"KING OF THE ROAD",
"KIOTI",
"KOHLER",
"KQBR",
"KTM",
"KUBOTA",
"KUTB",
"KWIK",
"KYMCO USA INC",
"KZ",
"KZ I",
"KZ RV",
"KZSP",
"LAMAR",
"LAMBORGHINI",
"LANCE",
"LANCE MANUFACTURING",
"LANCE MFG",
"LAND ROVER",
"LARK",
"LAYTON",
"LEGEND",
"LEXUS",
"LGS",
"LIBE",
"LINCOLN",
"LIVIN LITE",
"LOAD",
"LOAD TRAIL",
"LOAD TRAILER",
"LONE WOLF",
"LOOK",
"LOTUS",
"LUCID",
"LUCID MOTORS",
"LUFKIN INDUSTRIES",
"LUHRS",
"LUND",
"MAC",
"MACK",
"MAHINDRA",
"MAJE",
"MALIBU",
"MANAC",
"MANITOU",
"MASERATI",
"MASTER TOW",
"MASTERCRAFT",
"MAVERICK",
"MAXUM",
"MAXW",
"MAXX-D",
"MAYBACH",
"MAZDA",
"MB SPORTS",
"MC",
"MCLAREN",
"MCLAREN AUTOMOTIVE",
"MEB",
"MERC",
"MERCEDES",
"MERCEDES-BENZ",
"MERCURY",
"MERHOW",
"MERIDIAN YACHTS",
"MEVH",
"MG",
"MGB",
"MINI",
"MITSUBISHI",
"MITSUBISHI FUSO TRUCK OF",
"MONARK",
"MONTANA",
"MONTEREY",
"MOPED",
"NAUTICA",
"NEO",
"NEVILLE",
"NEW HOLLAND",
"NEW VISION",
"NEWM",
"NEWMAR",
"NEXU",
"NISSAN",
"NITO",
"NITRO",
"NORSTAR",
"NORT",
"NORTH COUNTRY",
"OFFICE DESK-2",
"OLDSMOBILE",
"OPEN",
"OPEN RANGE",
"OTH",
"OTHE",
"OTHER",
"OTHER BOAT",
"OTHER HEAVY EQUIPMENT",
"OTHER MOTORCYCLE",
"OTHER RV",
"OTHR",
"OUTBACK",
"P AND T",
"PACE",
"PACE AMERICAN TRAILE",
"PALOMINO",
"PARTS ONLY FOR DODGE",
"PETERBILT",
"PGO",
"PIAGGIO",
"PIERCE MFG. INC.",
"PION",
"PIONEER",
"PJ",
"PJ TRAILERS",
"PLEA",
"PLYM",
"PLYMOUTH",
"POLA",
"POLARIS",
"POLARKRAFT/GODFREY MARINE",
"POLESTAR",
"PONTIAC",
"PONTOON",
"PORSCHE",
"PRECISION",
"PREMIER",
"PREMIER TRAILER MFG",
"PREVOST",
"PRIME TIME",
"PRIMETIME",
"PRO-LINE",
"PROCRAFT",
"PROWLER",
"PUMA",
"QUALICARGO",
"R AND M",
"RAIL",
"RAM",
"RANC",
"RANGER",
"RAVE",
"RAYMOND",
"REAP",
"RED",
"REDWOOD",
"REGAL",
"REINELL",
"REITNOUER",
"REM",
"REO",
"RHINO",
"RINKER",
"RIVIAN",
"RIVIERA/EDMONDS YACHT SALES",
"ROAD",
"ROAD BOSS",
"ROADMASTER RAIL",
"ROBALO",
"ROCK",
"ROCKWOOD",
"ROKW",
"ROLLS-ROYCE",
"ROYAL EV",
"RQTU",
"RV",
"S2YACHTS",
"SAAB",
"SAILFISH",
"SAKAI",
"SALEM",
"SAND",
"SATURN",
"SCION",
"SEA",
"SEA PRO",
"SEA RAY",
"SEADOO",
"SEAFOX",
"SGAC",
"SHAD",
"SHAMROCK",
"SHASTA",
"SHERMEILLY",
"SHORE LANDER",
"SILVERLINE",
"SILVERTON",
"SKEETER",
"SKI DOO",
"SKIDOO",
"SKYLINE",
"SLABACH",
"SMART",
"SNOW",
"SNOWBEAR",
"SPARTAN CARGO TRAILERS LL",
"SPARTAN MOTORS",
"SPCN",
"SPCNS",
"SPORTSMAN",
"SPRINGDALE",
"SPRINTER",
"SPRN",
"SPTM",
"SSR",
"STAR",
"STARCRAFT",
"STEALTH",
"STERLING",
"STERLING TRUCK",
"STINGRAY",
"STOH",
"STOUGHTON",
"STOUGHTON TRAILERS INC",
"STRICK",
"STRYKER",
"STUDEBAKER",
"SUBARU",
"SUGAR SAND",
"SUMR",
"SUN",
"SUN TRACKER",
"SUN-LITE",
"SUNC",
"SUND",
"SUNLINE",
"SUNSET",
"SUNTRACKER",
"SUPERIOR TRAILER WORKS",
"SUPERMACH",
"SUZUKI",
"SWEETWATER",
"SYM",
"TAHOE",
"TAILER",
"TAIZHOU",
"TAIZHOUZNG",
"TAKEUCHI",
"TALBERT",
"TAO",
"TARGET TRAILER",
"TEREX / TEREX ADVANCE",
"TERRY",
"TERY",
"TESLA",
"TETON",
"TEXAS PRIDE TRAILERS",
"TEXASPRIDE",
"TEXTRON",
"THO",
"THOR",
"TIDEWATER",
"TIGE",
"TIMP",
"TIMPTE",
"TIOGA",
"TITAN MARINE",
"TITANIUM",
"TJCW",
"TOP HAT",
"TOR",
"TORO FORKLIFT",
"TOYOTA",
"TPHT",
"TRACKER",
"TRACKER MARINE",
"TRAIL KING",
"TRAILER",
"TRAILSTAR",
"TRAILSWEST",
"TRAL",
"TRAN",
"TRAVEL",
"TRAVEL SUPREME",
"TRAVIS",
"TRIM TRAILER",
"TRIUMPH",
"TRIUMPH CAR",
"TRIUMPH MOTORCYCLE",
"TROJAN",
"TROXUS",
"TRUE",
"TUFF-BILT",
"TWISTER",
"UNIFLITE",
"UNITED",
"UNITED EXPRESS LINE INC",
"UNK",
"UNKN",
"UNKNOWN",
"URWI",
"UTILIMASTER",
"UTILITY",
"UTILITY TRAILER",
"VALO",
"VAN HOOL",
"VAND",
"VANGUARD",
"VANGUARD NATIONAL TRAILER",
"VANLEIGHRV",
"VESPA",
"VIBE",
"VICTORY MOTORCYCLES",
"VINFAST",
"VNTC",
"VOLKSWAGEN",
"VOLVO",
"WABASH",
"WABASH NATIONAL CORP",
"WALL",
"WANC",
"WANCO",
"WEEKEND WARRIOR",
"WELLS CARG",
"WELLS CARGO",
"WELS",
"WEST",
"WESTERN",
"WESTERN STAR/AUTO CAR",
"WHITE",
"WIFR",
"WILDCAT",
"WILDERNESS",
"WILDWOOD",
"WILLIES",
"WILLY",
"WILSON",
"WINNEBAGO",
"WORKHORSE CUSTOM CHASSIS",
"WQXS",
"XLR BY FOREST RIVER",
"YAMAHA",
"YELLOWSTONE",
"YNGF",
"YONGFU",
"ZHILONG",
"ZHON",
"ZING",
"ZNEN",
"ZONG",
"ZUMA"
],
"models_by_make": {
"2-G": [
"GSE LFC-1212"
],
"22FT": [
"TRAILER"
],
"ACRO TRAILER CO": [
"ENCLOSED TRAILER"
],
"ACTION CRAFT": [
"COASTLINE"
],
"ACURA": [
"1.7EL PREM",
"3.0CL",
"3.2 TL",
"3.2CL TYPE",
"3.2TL",
"3.2TL TYPE",
"3.5RL",
"CL",
"CSX TECHNO",
"ILX",
"ILX 20",
"ILX 20 PRE",
"ILX 20 TEC",
"ILX 24 PRE",
"ILX BASE W",
"ILX HYBRID",
"ILX PREMIU",
"ILX SPECIA",
"INTEGRA",
"INTEGRA A-",
"INTEGRA GS",
"INTEGRA LS",
"INTEGRA TY",
"LEGEND",
"LEGEND L",
"MDX",
"MDX A-SPEC",
"MDX ADVANC",
"MDX PREMIU",
"MDX SPORT",
"MDX TECHNO",
"MDX TOURIN",
"MDX TYPE S",
"NSX",
"RDX",
"RDX A-SPEC",
"RDX ADVANC",
"RDX TECHNO",
"RL",
"RLX",
"RLX ADVANC",
"RLX SPORT",
"RLX TECH",
"RSX",
"RSX TYPE-S",
"TL",
"TL ADVANCE",
"TL SE",
"TL TECH",
"TL TYPE S",
"TLX",
"TLX A-SPEC",
"TLX ADVANC",
"TLX TECH",
"TLX TECH A",
"TLX TECH+A",
"TLX TECHNO",
"TLX TYPE S",
"TSX",
"TSX SE",
"TSX TECH",
"UK",
"ZDX",
"ZDX A-SPEC",
"ZDX TYPE-S"
],
"ADVANTAGE": [
"BOAT"
],
"AEROLINER": [
"LITE",
"TRAILER"
],
"AFWV": [
"WILDCAT"
],
"AIRSTREAM": [
"CLASSIC",
"FLYING CLO",
"LAND YACHT",
"RV",
"TRAILER",
"TRAVEL TRA"
],
"ALCOM": [
"MISSION",
"TRAILER"
],
"ALFA ROMEO": [
"164",
"GIULIA",
"GIULIA Q4",
"GIULIA QUA",
"GIULIA SPO",
"GIULIA SPR",
"GIULIA SUP",
"GIULIA TI",
"GT V6 2.5",
"SPIDER",
"STELVIO",
"STELVIO SP",
"STELVIO TI",
"TONALE",
"TONALE TI",
"TONALE VEL",
"VELOCE 200"
],
"ALJO": [
"OTHER"
],
"ALLG": [
"MOTORHOME"
],
"ALLIANCE": [
"OTHER"
],
"ALPINE": [
"OTHER"
],
"ALUM": [
"TRAILER"
],
"ALUMA": [
"FLATBED TRAILER"
],
"ALUMACRAFT": [
"BOAT",
"TROPHY 175"
],
"AM GENERAL": [
"M1165"
],
"AMERICAN": [
"TRAILER"
],
"AMERICAN MOTORS": [
"TRAILER"
],
"AMERICAN TRAILER MANUFACT": [
"OTHER"
],
"AMLT": [
"GULFSTREAM"
],
"AMO": [
"TRLR"
],
"ANGLER": [
"OTHER"
],
"APPALCHIAN": [
"3CARTRAILR",
"UNKNOWN"
],
"APRILIA": [
"RSV4",
"SHIVER 750",
"SPORTCITY 250",
"TUONO 660"
],
"ARCC": [
"BEACAT2000"
],
"ARCIMOTO": [
"FUV"
],
"ARCT": [
"M 6000 SNO PRO GREEN",
"TRAILER"
],
"ARCTIC": [
"CAT"
],
"ARCTIC CAT": [
"500",
"ALTERRA TR",
"M 8000",
"M8",
"TRAILER"
],
"ARI": [
"850VTMC EN"
],
"ARIMA": [
"ARIMA"
],
"ARIS": [
"TRAILER"
],
"ARO": [
"TRAILER"
],
"ARTIC CAT": [
"500"
],
"ASPT": [
"GOLF CART"
],
"ASTON MARTIN": [
"DB11",
"DBX",
"V8",
"V8 VANTAGE",
"VANTAGE"
],
"ASVE": [
"COBRA",
"CUSTOM CHROME CHOPPER"
],
"ATLA": [
"TRAILER"
],
"ATRO": [
"TRAILER"
],
"ATV": [
"ALL MODELS",
"SIDEBYSIDE",
"TRACKER"
],
"AUDI": [
"A3",
"A3 2.0 PRE",
"A3 2.0 SPO",
"A3 2.0T",
"A3 2.0T QU",
"A3 E-TRON",
"A3 PREMIUM",
"A3 PRESTIG",
"A3 S-LINE",
"A4",
"A4 1.8 CAB",
"A4 1.8T",
"A4 1.8T AV",
"A4 1.8T QU",
"A4 2.0T AV",
"A4 2.0T CA",
"A4 2.0T QU",
"A4 2.8 AVA",
"A4 3.2 CAB",
"A4 3.2 QUA",
"A4 ALLROAD",
"A4 KOMFORT",
"A4 PREMIUM",
"A4 PRESTIG",
"A4 PROGRES",
"A4 QUATTRO",
"A4 S-LINE",
"A4 ULTRA P",
"A5",
"A5 CABRIOLET",
"A5 PREMIUM",
"A5 PRESTIG",
"A5 QUATTRO",
"A5 SPORT",
"A5 SPORTBACK",
"A5 TECHNIK",
"A6",
"A6 2.8 AVA",
"A6 3.0 AVA",
"A6 3.0 QUA",
"A6 3.2 QUA",
"A6 4.2 QUA",
"A6 ALLROAD",
"A6 AVANT Q",
"A6 PREMIUM",
"A6 PRESTIG",
"A6 S-LINE",
"A7",
"A7 COMPETI",
"A7 PREMIUM",
"A7 PRESTIG",
"A7 SPORTBACK",
"A8",
"A8 L",
"A8 L QUATT",
"A8 QUATTRO",
"ALLROAD",
"E-TRON",
"E-TRON GT",
"E-TRON PRE",
"E-TRON SPORTBACK",
"NEW S4 QUA",
"Q3",
"Q3 PREMIUM",
"Q3 PRESTIG",
"Q3 TECHNIK",
"Q4 E-TRON",
"Q4 SPORTBACK E-TRON",
"Q5",
"Q5 3.2",
"Q5 E PREMI",
"Q5 PREMIUM",
"Q5 PRESTIG",
"Q5 PROGRES",
"Q5 SPORTBA",
"Q5 TDI PRE",
"Q5 TECHNIK",
"Q5 TITANIU",
"Q7",
"Q7 3.6 QUA",
"Q7 4.2 QUA",
"Q7 KOMFORT",
"Q7 PREMIUM",
"Q7 PRESTIG",
"Q7 PROGRES",
"Q7 TDI PRE",
"Q7 TECHNIK",
"Q8",
"Q8 E-TRON",
"Q8 PREMIUM",
"Q8 PRESTIG",
"R8",
"R8 SPYDER",
"RS 3",
"RS 5",
"RS 7",
"RS E-TRON GT",
"RS Q8",
"RS3",
"RS5",
"RS6",
"RS7",
"S3",
"S3 PREMIUM",
"S3 PRESTIG",
"S4",
"S4 2.7 QUA",
"S4 AVANT Q",
"S4 PREMIUM",
"S4 PRESTIG",
"S4 QUATTRO",
"S5",
"S5 PREMIUM",
"S5 PRESTIG",
"S5 QUATTRO",
"S5 SPORTBACK",
"S6",
"S6 PREMIUM",
"S6 PRESTIG",
"S6 QUATTRO",
"S7",
"S7 PREMIUM",
"S7 PRESTIG",
"S8",
"S8 QUATTRO",
"SQ5",
"SQ5 PREMIU",
"SQ5 PRESTI",
"SQ5 SPORTB",
"SQ5 SPORTBACK",
"SQ5 TECHNI",
"SQ7 PRESTI",
"SQ8",
"SQ8 PREMIU",
"SQ8 PRESTI",
"TT",
"TT 3.2",
"TT PREMIUM",
"TT QUATTRO",
"TT RS PRES",
"TTS",
"TTS PREMIU",
"TTS PRESTI"
],
"AURORA PONTOON BOATS": [
"34BHTS"
],
"AUSTIN": [
"HEALY"
],
"AUTOCAR LLC": [
"XSPOTTER-OFF"
],
"AVALON": [
"OTHER"
],
"B-B": [
"TRAILER"
],
"B/RTRAILER": [
"UNKNOWN"
],
"BAJA": [
"BOAT",
"OTHER",
"OUTLAW"
],
"BARLETTA": [
"TRITOON"
],
"BASHAN": [
"BASHAN MOTORCYCLE"
],
"BAYLINER": [
"2050 CAPRI",
"2650",
"2850 CIERA",
"BOAT",
"OUTBOARD 18FT"
],
"BEEMER": [
"VINTAGE"
],
"BENNINGTON": [
"OTHER"
],
"BENNINGTON MARINE": [
"22SSRX",
"BOAT",
"PONTOON"
],
"BENTLEY": [
"ARNAGE R",
"AZURE",
"BENTAYGA",
"CONTINENTA",
"CONTINENTAL FLYING SPUR",
"CONTINENTAL GT",
"FLYING SPU",
"MULSANNE",
"MULSANNE S",
"TURBO"
],
"BEST": [
"5X8US"
],
"BETA": [
"200 RR"
],
"BIG JOHN": [
"TRAILER"
],
"BIG TEX": [
"14LX-14BK7SIRPD",
"TRAILER"
],
"BIG TEX TRAILER CO INC": [
"UNKNOWN"
],
"BIGT": [
"TRAILER"
],
"BISON": [
"BISONTRAIL"
],
"BLAC": [
"TRAILER"
],
"BLAZER BOATS INC": [
"BOAT ONLY"
],
"BLUE BIRD": [
"SCHOOL BUS"
],
"BMBR": [
"SNOWMOBILE"
],
"BMW": [
"1 SERIES",
"128 I",
"128I",
"135 I",
"135I",
"2002",
"228 GRAN COUPE",
"228 I",
"228 I SULE",
"228 XI",
"228 XI SUL",
"228I",
"228I GRAN COUPE",
"228XI",
"230",
"230I",
"230XI",
"3 SERIES",
"3-SERIES",
"318 I",
"320 I",
"320 I XDRI",
"320 XI",
"320I",
"323 CI",
"323 I",
"323 I AUTO",
"323CI",
"323I",
"325",
"325 CI",
"325 I",
"325 I AUTO",
"325 IS SUL",
"325 IT",
"325 XI",
"325A-4",
"325CI",
"325I",
"325IT",
"325XI",
"328 D",
"328 D XDRI",
"328 I",
"328 I SULE",
"328 IC AUT",
"328 IS AUT",
"328 XI",
"328 XI SUL",
"328 XIGT",
"328 XIGT S",
"328 XIT",
"328D",
"328I",
"328I GRAN TURISMO",
"328XI",
"330",
"330 CI",
"330 I",
"330 XI",
"330 XIGT",
"330CI",
"330E",
"330I",
"330XE",
"330XI",
"335",
"335 D",
"335 I",
"335 I SULE",
"335 IS",
"335 XI",
"335D",
"335I",
"335XI",
"340 I",
"340 XI",
"340I",
"4 SERIES",
"4 SERIES GRAN COUPE",
"428",
"428 GRAN COUPE",
"428 I",
"428 I GRAN",
"428 XI",
"428 XI GRA",
"428I",
"428I GRAN COUPE",
"430I",
"430I GRAN",
"430I GRAN COUPE",
"430XI",
"430XI GRAN",
"435 I",
"435 I GRAN",
"435 XI",
"435 XI GRA",
"435I",
"440I",
"440I GRAN COUPE",
"440XI",
"440XI GRAN",
"5 SERIES",
"525",
"525 I",
"525 I AUTO",
"525I",
"525IA",
"525ITA",
"525XI",
"528",
"528 I",
"528 I AUTO",
"528 IT AUT",
"528 XI",
"528I",
"528IA",
"528XI",
"530",
"530 I",
"530 I AUTO",
"530 XI",
"530E",
"530I",
"530IA",
"530XE",
"530XI",
"535 D",
"535 I",
"535 XI",
"535D",
"535I",
"535I GRAN TURISMO",
"535XI",
"540 I",
"540 I AUTO",
"540 XI",
"540I",
"540IA",
"545 I",
"545I",
"550 GT",
"550 I",
"550 XI",
"550I",
"550I GRAN TURISMO",
"6 SERIES",
"640 I",
"640 I GRAN",
"640I",
"640I GRAN COUPE",
"645 CI AUT",
"645CI",
"650",
"650 I",
"650 I GRAN",
"650 XI",
"650I",
"650I GRAN COUPE",
"7 SERIES",
"740",
"740 I",
"740 I AUTO",
"740 IL",
"740 LI",
"740 LXI",
"740 XE",
"740 XI",
"740I",
"740IA",
"740IL",
"740LI",
"745",
"745 LI",
"750",
"750 I",
"750 LI",
"750 LXI",
"750 XI",
"750I",
"750LI",
"760",
"760 LI",
"840 CI AUT",
"840I",
"840XI",
"ACTIVEHYBR",
"ALPINA B6",
"ALPINA B7",
"CE 04",
"F 900 R",
"F650 GS",
"F700 GS",
"F800 GS",
"F800 GT",
"F800 ST",
"G650 X-COU",
"I3",
"I3 BEV",
"I3 REX",
"I4",
"I4 EDRIVE",
"I4 M50",
"I5",
"I5 EDRIVE",
"I7 XDRIVE6",
"I8",
"IX",
"IX M60",
"IX XDRIVE4",
"IX XDRIVE5",
"K1200 GT",
"K1200 LT",
"K75",
"M2",
"M2 COMPETI",
"M235",
"M235I",
"M235XI",
"M240I",
"M240XI",
"M3",
"M3 COMPETI",
"M340I",
"M340XI",
"M4",
"M4 COMPETI",
"M440I",
"M440I GRAN COUPE",
"M440XI GRA",
"M5",
"M550",
"M550I",
"M550XI",
"M6",
"M8",
"M850I",
"M850I GTAN COUPE",
"M850XI",
"R 1250",
"R NINE T P",
"R1100 RT",
"R1150",
"R1200 GS",
"R1200 GS A",
"R1200 RT",
"R18",
"R80 RT",
"S 1000",
"S 1000 RR",
"X1",
"X1 SDRIVE2",
"X1 XDRIVE2",
"X1 XDRIVE3",
"X2",
"X2 M35I",
"X2 SDRIVE2",
"X2 XDRIVE2",
"X3",
"X3 2.5I",
"X3 3.0I",
"X3 3.0SI",
"X3 30 XDRI",
"X3 M",
"X3 M COMPE",
"X3 M40I",
"X3 M50",
"X3 SDRIVE2",
"X3 SDRIVE3",
"X3 XDRIVE2",
"X3 XDRIVE3",
"X3 XDRIVEM",
"X4",
"X4 M",
"X4 M COMPE",
"X4 M40I",
"X4 XDRIVE2",
"X4 XDRIVE3",
"X4 XDRIVEM",
"X5",
"X5 3.0I",
"X5 4.4I",
"X5 4.8I",
"X5 EDRIVE",
"X5 M",
"X5 M50I",
"X5 M60I",
"X5 PHEV",
"X5 SDRIVE",
"X5 SDRIVE3",
"X5 XDR40E",
"X5 XDRIVE3",
"X5 XDRIVE4",
"X5 XDRIVE5",
"X6",
"X6 M",
"X6 M50I",
"X6 SDRIVE",
"X6 SDRIVE3",
"X6 XDRIVE3",
"X6 XDRIVE4",
"X6 XDRIVE5",
"X7",
"X7 ALPINA",
"X7 M50I",
"X7 M60I",
"X7 XDRIVE4",
"X7 XDRIVE5",
"XM",
"Z3",
"Z3 1.9",
"Z3 2.3",
"Z3 2.8",
"Z3 3.0",
"Z4",
"Z4 2.5",
"Z4 3.0",
"Z4 3.0SI",
"Z4 SDRIVE2",
"Z4 SDRIVE3"
],
"BOAT": [
"OTHER",
"W/TRAILER"
],
"BOBCAT": [
"72",
"753",
"BOX BLADE LASER",
"E20",
"E35I",
"E45",
"E60",
"E85",
"GRADER 108",
"M-700",
"MT100",
"OTHER",
"S160",
"S185",
"S220",
"S250",
"S570",
"S650",
"S740",
"S750",
"S76",
"SKID STEER BROOM",
"SKIDSTEER",
"T190",
"T550",
"T590",
"T595",
"T650",
"T750",
"T76",
"T76 R SERIES",
"T770",
"WC-8A"
],
"BOMAG": [
"211D-5"
],
"BOSTON WHALER": [
"VS",
"WHALER"
],
"BRINKLEYRV": [
"BRINKLEYRV"
],
"BRUT": [
"TRAILER"
],
"BUELL": [
"THUNDERBOLT"
],
"BUICK": [
"ALLURE CX",
"ALLURE CXS",
"ALLURE/LAC",
"CASCADA",
"CASCADA PR",
"CENTURION",
"CENTURY",
"CENTURY CU",
"CENTURY LI",
"ELECTRA",
"ENCLAVE",
"ENCLAVE AV",
"ENCLAVE CX",
"ENCLAVE ES",
"ENCLAVE PR",
"ENCORE",
"ENCORE CON",
"ENCORE ESS",
"ENCORE GX",
"ENCORE PRE",
"ENCORE SPO",
"ENVISION",
"ENVISION A",
"ENVISION E",
"ENVISION P",
"ENVISION S",
"ENVISTA",
"ENVISTA AV",
"ENVISTA PR",
"ENVISTA SP",
"GS 400",
"LACROSSE",
"LACROSSE C",
"LACROSSE E",
"LACROSSE P",
"LACROSSE T",
"LE SABRE",
"LESABRE",
"LESABRE CU",
"LESABRE LI",
"LUCERNE",
"LUCERNE CX",
"PARK AVE",
"PARK AVENU",
"PARK AVENUE",
"RAINIER",
"RAINIER CX",
"REGAL",
"REGAL CUST",
"REGAL CXL",
"REGAL GS",
"REGAL LS",
"REGAL PREF",
"REGAL PREM",
"REGAL SPOR",
"REGAL SPORTBACK",
"REGAL TOUR",
"REGAL TOURX",
"RENDEZVOUS",
"RIVERA",
"RIVIERA",
"ROADMASTER",
"SKYLARK",
"TERRAZA",
"TERRAZA CX",
"UK",
"VERANO",
"VERANO CON",
"VERANO SPO",
"WILDCAT"
],
"BUJ": [
"BOAT W/TRL"
],
"C&W": [
"20' TRAILER"
],
"CADILLAC": [
"ALLANTE",
"ATS",
"ATS LUXURY",
"ATS PERFOR",
"ATS PREMIU",
"ATS-V",
"BROUGHAM",
"CADILLAC",
"CALAIS",
"CATERA",
"COMMERCIAL",
"COUPE DEVI",
"CT4",
"CT4 LUXURY",
"CT4 SPORT",
"CT4-V",
"CT4-V BLAC",
"CT5",
"CT5 LUXURY",
"CT5 PREMIU",
"CT5 SPORT",
"CT5-V",
"CT6",
"CT6 LUXURY",
"CT6 PLATIN",
"CT6 PREMIU",
"CTS",
"CTS HI FEA",
"CTS LUXURY",
"CTS PERFOR",
"CTS PREMIU",
"CTS VSPORT",
"CTS-V",
"DEVILLE",
"DEVILLE CO",
"DEVILLE DH",
"DEVILLE DT",
"DTS",
"DTS LUXURY",
"DTS PREMIU",
"EL DORADO",
"ELDORADO",
"ELDORADO E",
"ELDORADO T",
"ELR LUXURY",
"ESCALADE",
"ESCALADE E",
"ESCALADE ESV",
"ESCALADE EXT",
"ESCALADE H",
"ESCALADE HYBRID",
"ESCALADE L",
"ESCALADE P",
"ESCALADE S",
"ESCALADE V",
"FLEETWOOD",
"LYRIQ",
"LYRIQ LUXU",
"LYRIQ SPOR",
"PROFESSION",
"SERIES 62",
"SEVILLE",
"SEVILLE SL",
"SEVILLE ST",
"SRX",
"SRX LUXURY",
"SRX PERFOR",
"SRX PREMIU",
"STS",
"STS-V",
"XLR",
"XT4",
"XT4 LUXURY",
"XT4 PREMIU",
"XT4 SPORT",
"XT5",
"XT5 LUXURY",
"XT5 PLATIN",
"XT5 PREMIU",
"XT5 SPORT",
"XT6",
"XT6 LUXURY",
"XT6 PREMIU",
"XT6 SPORT",
"XTS",
"XTS LUXURY",
"XTS PLATIN",
"XTS PREMIU"
],
"CALICO": [
"16' LIVESTOCK TRAILE"
],
"CAME": [
"35/FW"
],
"CAMPION BOAT": [
"2016 HOMEMADE TRAILER"
],
"CAN": [
"SPYDER"
],
"CAN-AM": [
"DEFENDER",
"DEFENDER L",
"DEFENDER M",
"DEFENDER X",
"MAVERICK",
"MAVERICK M",
"MAVERICK R",
"MAVERICK S",
"MAVERICK X",
"MAVERICK X3",
"MAVERICK X3 MAX",
"OUTLANDER",
"OUTLANDER DS 50",
"OUTLANDER MAX",
"RENEGADE",
"RYKER",
"RYKER RALL",
"SPYDER ROA",
"SPYDER ROADSTER"
],
"CAN-AM DEFENDER": [
"MAX"
],
"CAR": [
"4XST TRAIL"
],
"CARGO": [
"CARGO TRAILER 24X 8",
"ENCLOSED",
"TRAILER"
],
"CARGO CRAFT": [
"CARGO TRAILER"
],
"CAROLINA SKIFF": [
"BOAT",
"FIBERGLASS"
],
"CARRY ON": [
"UTILITY TRAILER"
],
"CARRY-ON": [
"7X14CGRCM",
"TRAILER"
],
"CASITA": [
"17' TRAVEL TRAILER",
"OTHER"
],
"CATAMARAN": [
"CUTE"
],
"CATERPILLAR": [
"12G",
"140M3 AWD",
"259D",
"299D3 XE",
"336",
"340",
"730C2 EJ",
"815K",
"963",
"CS11 GC",
"CS56B",
"D5K2LGP",
"D5LGP",
"D6LGP",
"PALLET PRO",
"TRACTOR"
],
"CCHM": [
"5TH WHEEL"
],
"CCM": [
"ON ROAD"
],
"CEC": [
"CCR"
],
"CEDA": [
"SILVERBACK"
],
"CF MOTO": [
"450SS",
"ZFORCE"
],
"CFMOTO": [
"ATV",
"CFORCE 600",
"CFORCE 800"
],
"CHAINLINK": [
"FENCING AND POLES"
],
"CHAMPION": [
"BUS",
"E-450 CUTAWAY"
],
"CHAPARRAL": [
"BOAT&TRAIL",
"OTHER"
],
"CHER": [
"CAMPER",
"GRAY WOLF",
"TRAVEL TRL"
],
"CHEROKEE": [
"GREY WOLF",
"OTHER",
"WLFPBL16FQ"
],
"CHEV": [
"C10"
],
"CHEVROLET": [
".CK2500",
"150",
"1500",
"1500 SILVE",
"1500 Z71",
"210",
"2500",
"2500 4X4",
"2500 HD",
"3/4 T",
"3500",
"3500 HD",
"3500HD",
"4500",
"4500HD",
"ASTRO",
"AVALANCHE",
"AVALANCHE 1500",
"AVEO",
"AVEO 5",
"AVEO BASE",
"AVEO LS",
"AVEO LT",
"BEL AIR",
"BLAZER",
"BLAZER 1LT",
"BLAZER 2LT",
"BLAZER 3LT",
"BLAZER EV",
"BLAZER PRE",
"BLAZER RS",
"BLAZER S10",
"BLAZER V10",
"BOLT EUV",
"BOLT EUV L",
"BOLT EUV P",
"BOLT EV",
"BOLT EV 1L",
"BOLT EV 2L",
"BOLT EV LT",
"BOLT EV PR",
"C10",
"C1500",
"C20",
"C2500",
"C30",
"C4500 C4E0",
"C50",
"C5500 C5E0",
"C5500 C5U0",
"C7500",
"C7500 C7C0",
"CAMARO",
"CAMARO 2SS",
"CAMARO BAS",
"CAMARO LS",
"CAMARO LT",
"CAMARO LT1",
"CAMARO LZ",
"CAMARO RS",
"CAMARO SS",
"CAMARO Z28",
"CAMARO ZL1",
"CAPRICE",
"CAPRICE /",
"CAPRICE / IMPALA",
"CAPRICE CL",
"CAPRICE PO",
"CAPTIVA",
"CAPTIVA LS",
"CAPTIVA LT",
"CAPTIVA SP",
"CAPTIVA SPORT",
"CAVALIER",
"CAVALIER L",
"CC4500",
"CC5500",
"CELEBRITY",
"CHEVY VAN",
"CITY EXPRE",
"CITY EXPRESS",
"CLASSIC",
"COBALT",
"COBALT 1LT",
"COBALT 2LT",
"COBALT LS",
"COBALT LT",
"COBALT SS",
"COLORADO",
"COLORADO L",
"COLORADO T",
"COLORADO Z",
"CORSICA",
"CORVAIR",
"CORVETTE",
"CORVETTE G",
"CORVETTE S",
"CORVETTE STINGRAY",
"CORVETTE Z",
"CORVETTE Z06",
"COUPE",
"CRUZ",
"CRUZE",
"CRUZE ECO",
"CRUZE L",
"CRUZE LIMI",
"CRUZE LIMITED",
"CRUZE LS",
"CRUZE LT",
"CRUZE LTZ",
"CRUZE PREM",
"DELRAY",
"EL CAMINO",
"EQUINOX",
"EQUINOX 1L",
"EQUINOX 2L",
"EQUINOX 2R",
"EQUINOX 3L",
"EQUINOX 3R",
"EQUINOX 4D",
"EQUINOX EV",
"EQUINOX LS",
"EQUINOX LT",
"EQUINOX PR",
"EQUINOX RS",
"EQUINOX SP",
"EXPRESS",
"EXPRESS 1500",
"EXPRESS 2500",
"EXPRESS 3500",
"EXPRESS CARGO",
"EXPRESS CUTAWAY",
"EXPRESS CUTAWAY 4500",
"EXPRESS G1",
"EXPRESS G2",
"EXPRESS G3",
"EXPRESS G3500",
"EXPRESS G4",
"EXPRESS LT",
"EXPRESS RV CUTAWAY",
"EXPRESS VA",
"G10",
"G20",
"G30",
"GEO PRIZM",
"GMT 400",
"GMT-400",
"GMT-400 C1",
"GMT-400 C2",
"GMT-400 C3",
"GMT-400 K1",
"GMT-400 K2",
"GMT-400 K3",
"HHR",
"HHR LS",
"HHR LT",
"HHR PANEL",
"HHR SS",
"IMPALA",
"IMPALA 1LT",
"IMPALA 2LT",
"IMPALA 50T",
"IMPALA ECO",
"IMPALA LIM",
"IMPALA LIMITED",
"IMPALA LS",
"IMPALA LT",
"IMPALA LTZ",
"IMPALA POL",
"IMPALA PRE",
"IMPALA SS",
"IMPALA SUP",
"K1 SERIES",
"K10",
"K1500",
"K2500",
"K3500",
"K3500 CHASSIS",
"KODIAK",
"KODIAK C6H",
"LUMINA",
"LUMINA BAS",
"M CARLO",
"MALIBU",
"MALIBU LT",
"MALIBU 1LT",
"MALIBU 2LT",
"MALIBU 3LT",
"MALIBU 4D",
"MALIBU CLASSIC",
"MALIBU CLS",
"MALIBU HYB",
"MALIBU HYBRID",
"MALIBU LIM",
"MALIBU LIMITED",
"MALIBU LS",
"MALIBU LT",
"MALIBU LTD",
"MALIBU LTZ",
"MALIBU MAX",
"MALIBU MAXX",
"MALIBU PRE",
"MALIBU RS",
"METRO",
"MONTE CARL",
"MONTE CARLO",
"MONTECARLO",
"NOVA",
"P30",
"PICKUP",
"PRIZM",
"R10",
"ROADSTER",
"S 10",
"S TRUCK",
"S TRUCK S1",
"S-10",
"SEDAN",
"SILV2500 4",
"SILVER1500",
"SILVERADO",
"SILVERADO 1500",
"SILVERADO 1500 CLASSIC",
"SILVERADO 1500 HYBRID",
"SILVERADO 1500 LD",
"SILVERADO 1500 LTD",
"SILVERADO 1500HD",
"SILVERADO 2500",
"SILVERADO 2500HD",
"SILVERADO 2500HD CLASSIC",
"SILVERADO 3500",
"SILVERADO 3500 CHASSIS",
"SILVERADO 3500 CLASSIC",
"SILVERADO 3500HD",
"SILVERADO 3500HD CHASSIS",
"SILVRK1500",
"SLVRD 1500",
"SONIC",
"SONIC 4D",
"SONIC LS",
"SONIC LT",
"SONIC LTZ",
"SONIC PREM",
"SONIC RS",
"SPARK",
"SPARK 1LT",
"SPARK 2LT",
"SPARK ACTI",
"SPARK EV",
"SPARK EV 2",
"SPARK LS",
"SS",
"SSR",
"SUBURBAN",
"SUBURBAN 1500",
"SUBURBAN 2500",
"SUBURBAN C",
"SUBURBAN K",
"SUBURBAN L",
"SUBURBAN V",
"TAHOE",
"TAHOE C150",
"TAHOE HYBR",
"TAHOE HYBRID",
"TAHOE K150",
"TAHOE POLI",
"TAHOE SPEC",
"TILT MASTE",
"TRACKER",
"TRAILBLAZE",
"TRAILBLAZER",
"TRAILBLAZER EXT",
"TRANSIT T-",
"TRAVERSE",
"TRAVERSE H",
"TRAVERSE L",
"TRAVERSE LIMITED",
"TRAVERSE P",
"TRAVERSE R",
"TRAX",
"TRAX 1LS",
"TRAX 1LT",
"TRAX 1RS",
"TRAX 2RS",
"TRAX ACTIV",
"TRAX LS",
"TRAX LTZ",
"TRAX PREMI",
"TRUCK",
"TRUCKBED",
"UK",
"UPLANDER",
"UPLANDER L",
"VENTURE",
"VOLT",
"VOLT LT",
"VOLT PREMI"
],
"CHEVY": [
"CAPRICE"
],
"CHRYSLER": [
"200",
"200 C",
"200 LIMITE",
"200 LX",
"200 S",
"200 TOURIN",
"2D",
"300",
"300 LIMITE",
"300 S",
"300 SRT-8",
"300 TOURIN",
"300C",
"300C LUXUR",
"300C PLATI",
"300C VARVA",
"300M",
"300M SPECI",
"ASPEN",
"ASPEN LIMI",
"CONCORDE",
"CROSSFIRE",
"GRAND CARA",
"LEBARON",
"LHS",
"NEWPORT",
"PACIFICA",
"PACIFICA H",
"PACIFICA HYBRID",
"PACIFICA L",
"PACIFICA T",
"PT CRUISER",
"SEBRING",
"SEBRING LI",
"SEBRING LX",
"SEBRING TO",
"TOWN & COU",
"TOWN & COUNTRY",
"TOWN AND C",
"TOWN&COUNT",
"VOYAGER",
"VOYAGER LX"
],
"CHUBBSTEEL": [
"UNKNOWN"
],
"CIMA": [
"TRAILER"
],
"CIMC": [
"REEFER TRL",
"REEFER VAN",
"TRAILER"
],
"CIMC TRAILERS": [
"UNKNOWN"
],
"CITR": [
"DS21"
],
"CLEMENT": [
"TRAILER"
],
"CLUB CAR": [
"GOLF CART",
"OTHER"
],
"CM": [
"OTHER"
],
"CMQC": [
"12MX"
],
"COA": [
"FRELND"
],
"COACH": [
"CAMPER"
],
"COACHMEN": [
"CATALINA",
"CATALINA 291QBS",
"CATALINA TRAVEL TRAILER",
"CLIPPER TRAVEL TRAILER",
"FREEDOM EXPRESS MAPL",
"FREEDOM XP",
"OTHER",
"SPIRIT OF AMERICA",
"TRAVEL"
],
"COBRA": [
"BOAT"
],
"COLEMAN": [
"CT",
"DUTCHMEN",
"LANTERN",
"OTHER",
"TRAVEL TRA"
],
"COLLINS FIFTH WHEEL": [
"SERIES M"
],
"COLM": [
"CAMPER"
],
"COLU": [
"5TH WHEEL"
],
"COMET": [
"UNKNOWN"
],
"CONC": [
"MIX"
],
"CONFERENCE TABLE": [
"CONFERENCE TABLE"
],
"CONSTRSPEC": [
"UNKNOWN"
],
"CONTENDER": [
"MARINE LOT"
],
"CONTINENTAL": [
"OTHER"
],
"COR": [
"FLATBED"
],
"CORN PRO": [
"TRAILER"
],
"CORVETTE": [
"ZHZ"
],
"COVERED WAGON": [
"TRAILER"
],
"COVERWAGON": [
"BLACK COVE",
"BOXTRAILER"
],
"CRAFTSMAN": [
"RIDING LAWN MOWER"
],
"CRESTLINER": [
"1850 SUPER HAWK",
"BOAT"
],
"CRIT": [
"SUMMIT"
],
"CROSLEY": [
"WAGON"
],
"CROSS TRAILERS INC": [
"714TA ALPHA"
],
"CROSS TRUCK EQUIP CO INC": [
"OTHER"
],
"CROSSROADS": [
"CRUISER AIRE 37 BUMPER PULL",
"HILL COUNTRY 32 RL H",
"TRAVEL TRLR",
"ZINGER 33BH",
"ZINGER ZT328S"
],
"CROWN": [
"SP 3505",
"SP4050-30"
],
"CRUISER": [
"2750BH MPG TRAVEL TRAILER"
],
"CRUISERS YACHTS": [
"MARINE/TRL",
"UNKNOWN"
],
"CURRENT MOTOR COMPANY": [
"MODERN"
],
"DAIHATSU": [
"OTHER"
],
"DATSUN": [
"280Z",
"280ZX",
"720"
],
"DAWSON YACHTS/J&J IND": [
"EDGEWATER"
],
"DELOREAN": [
"DELOREAN"
],
"DIAMOCARGO": [
"6X12 CARGO",
"TRAILER"
],
"DIAMOND": [
"CARGO UTILITY"
],
"DIAMOND C": [
"UNKNOWN"
],
"DODGE": [
"1 TON POWER WAGON",
"2500",
"ALL OTHER",
"AVENGER",
"AVENGER EX",
"AVENGER LU",
"AVENGER MA",
"AVENGER R/",
"AVENGER SE",
"AVENGER SX",
"CALIBER",
"CALIBER MA",
"CALIBER R/",
"CALIBER SX",
"CAMPER VAN",
"CARAVAN",
"CARAVAN SE",
"CARAVAN SX",
"CHALLENGER",
"CHARGER",
"CHARGER GT",
"CHARGER PO",
"CHARGER R/",
"CHARGER RA",
"CHARGER SC",
"CHARGER SE",
"CHARGER SR",
"CHARGER SX",
"D-SERIES",
"DAKOTA",
"DAKOTA QUA",
"DAKOTA SLT",
"DAKOTA ST",
"DAKOTA SXT",
"DAKOTA TRX",
"DART",
"DART GT SP",
"DART LIMIT",
"DART SE",
"DART SE AE",
"DART SXT",
"DART SXT S",
"DAYTONA",
"DURANGO",
"DURANGO CI",
"DURANGO CR",
"DURANGO EX",
"DURANGO GT",
"DURANGO LI",
"DURANGO PU",
"DURANGO R/",
"DURANGO SL",
"DURANGO SR",
"DURANGO SS",
"DURANGO ST",
"DURANGO SX",
"GRAND CARA",
"GRAND CARAVAN",
"HORNET",
"HORNET GT",
"HORNET R/T",
"INTREPID",
"INTREPID E",
"JOURNEY",
"JOURNEY CR",
"JOURNEY GT",
"JOURNEY LI",
"JOURNEY LU",
"JOURNEY R/",
"JOURNEY SE",
"JOURNEY SX",
"MAGNUM",
"MAGNUM R/T",
"MAGNUM SXT",
"NEON",
"NEON SXT",
"NITRO",
"NITRO HEAT",
"NITRO SE",
"NITRO SLT",
"NITRO SXT",
"PROMASTER",
"R1500",
"RAM",
"RAM 1500",
"RAM 1500 L",
"RAM 1500 S",
"RAM 2500",
"RAM 2500 S",
"RAM 3500",
"RAM 3500 HD CHASSIS",
"RAM 3500 L",
"RAM 3500 S",
"RAM 5500",
"RAM 5500 S",
"RAM VAN",
"RAM VAN 1500",
"RAM VAN 3500",
"RAM VAN B1",
"RAM VAN B2",
"RAM WAGON",
"RAM2500",
"SHADOW",
"SPRINTER 2",
"SPRINTER 3500",
"SPRINTER VAN 2500",
"SPRINTER VAN 3500",
"STRATUS",
"STRATUS SE",
"STRATUS SX",
"UK",
"VIPER",
"VIPER GTS"
],
"DOLITTLE": [
"BRUTE FORCE"
],
"DONG": [
"SCOOTER"
],
"DOOSAN": [
"P20"
],
"DORSEY TRAILERS": [
"UNKNOWN"
],
"DPPLAILERS": [
"UNKNOWN"
],
"DRV": [
"MOBILE SUI"
],
"DUCATI": [
"MONSTER",
"MONSTER 75",
"MONSTER 79",
"MULTISTRAD",
"MULTISTRADA",
"SCRAMBLER",
"STREETFIGH",
"STREETFIGHTER",
"SUPERSPORT"
],
"DURUXX": [
"DRX4"
],
"DUTCHMAN": [
"CLASSIC 30FK - TRAVEL TRAILER",
"TRAVEL TRAILER"
],
"DUTCHMEN": [
"ASPEN TRL",
"KODIAK",
"OTHER",
"TRAILER"
],
"E-Z GO EXPRESS": [
"GOLF CART"
],
"EAGLE": [
"TRAILER"
],
"EARTHFORCE": [
"BACKHOE"
],
"EAST": [
"BOAT",
"TEXAS TRAL",
"TRAILER"
],
"EASY HAUL": [
"6X12"
],
"EBBTIDE": [
"BOAT"
],
"EBY": [
"LTRAILER"
],
"ECLI": [
"ICONIC"
],
"ECLIPSE": [
"ATITUDE",
"ATTITUDE PRO LITE 18"
],
"ELKR": [
"TRAILER"
],
"EMERGENCY ONE": [
"FIRETRUCK"
],
"EMPI": [
"TRAILER"
],
"ENDE": [
"MOTORHOME"
],
"EQUIPMENT": [
"GSE 60P10",
"GSE A1245D",
"GSE B-5",
"GSE CBD2201"
],
"EQUIPMENT CARGO": [
"TUG"
],
"ERAN": [
"5500"
],
"EVOL": [
"GOLF CART"
],
"EVOLUTION": [
"CARRIER 6 PLUS",
"PRO 4 PASS"
],
"EXCE": [
"BOAT W/TRL"
],
"EXPR": [
"TRAILER"
],
"EXPRESS": [
"MD250T"
],
"EZ GO": [
"CUSTOM GOLF CART",
"GOLF CART"
],
"EZGO": [
"RXV",
"WORKHORSE GOLF CART"
],
"EZGO PTX 36V": [
"GOLF CART"
],
"FABRIQUE": [
"14 FOOT DUMP"
],
"FEATHERLITE": [
"MFG"
],
"FERRARI": [
"296 GTB",
"458 SPIDER",
"812 SUPERF",
"CALIFORNIA",
"PUROSANGUE"
],
"FIAT": [
"124 SPIDER",
"500",
"500 ABARTH",
"500 ELECTR",
"500 LOUNGE",
"500 POP",
"500 SPORT",
"500C",
"500E",
"500L",
"500L EASY",
"500L LOUNG",
"500L POP",
"500L TREKK",
"500X",
"500X EASY",
"500X LOUNG",
"500X POP"
],
"FISHER": [
"BOAT W/TRL"
],
"FISKER": [
"OCEAN"
],
"FISKER AUTOMOTIVE": [
"OCEAN",
"OCEAN EXTR"
],
"FLAG": [
"TRVL TRAIL"
],
"FLEETWOOD": [
"COLEMAN",
"EVOLUTION E3",
"OTHER",
"POP UP",
"PROWLER",
"TERRAVAC",
"TERRY"
],
"FONA": [
"TL"
],
"FONTAINE TRAILER CO": [
"UNKNOWN"
],
"FORD": [
"1/2T",
"2 DOOR COUPE",
"9000",
"AEROSTAR",
"ASPIRE",
"BRONCO",
"BRONCO BAS",
"BRONCO BIG",
"BRONCO II",
"BRONCO OUT",
"BRONCO SPO",
"BRONCO SPORT",
"BRONCO U10",
"C-MAX ENERGI",
"C-MAX HYBRID",
"C-MAX PREM",
"C-MAX SE",
"C-MAX SEL",
"C-SERIES C",
"COACHMAN",
"CONTOUR",
"COUPE",
"CROWN VICT",
"CROWN VICTORIA",
"E-150",
"E-250",
"E-350 CUTAWAY",
"E-350 STRIPPED",
"E-350 SUPER DUTY",
"E-450 CUTAWAY",
"E-450 STRIPPED",
"E-TRANSIT-350",
"E350 ECONO",
"E450",
"ECON E350",
"ECONLINE",
"ECONOLINE",
"ECONOLINE STRIPPED CHAS",
"ECOSPORT",
"ECOSPORT S",
"ECOSPORT T",
"EDGE",
"EDGE LIMIT",
"EDGE SE",
"EDGE SEL",
"EDGE SEL P",
"EDGE SPORT",
"EDGE ST",
"EDGE TITAN",
"ESCAPE",
"ESCAPE ACT",
"ESCAPE HEV",
"ESCAPE HYB",
"ESCAPE HYBRID",
"ESCAPE LIM",
"ESCAPE S",
"ESCAPE SE",
"ESCAPE SEL",
"ESCAPE ST",
"ESCAPE TIT",
"ESCAPE XLS",
"ESCAPE XLT",
"ESCORT",
"ESCORT LX",
"ESCORT ZX2",
"ESSEX",
"EXCURSION",
"EXPEDITION",
"EXPEDITION EL",
"EXPEDITION MAX",
"EXPLORER",
"EXPLORER A",
"EXPLORER E",
"EXPLORER K",
"EXPLORER L",
"EXPLORER P",
"EXPLORER S",
"EXPLORER SPORT",
"EXPLORER SPORT TRAC",
"EXPLORER T",
"EXPLORER X",
"F",
"F 100",
"F 150",
"F-100",
"F-150",
"F-150 HERI",
"F-150 HERITAGE",
"F-150 LIGHTNING",
"F-150 SUPERCREW",
"F-150 XLT",
"F-250",
"F-250 SERIES",
"F-250 SUPE",
"F-350",
"F-350 CHASSIS",
"F-450",
"F-450 CHASSIS",
"F-550",
"F-550 CHASSIS",
"F-59 COMMERCIAL STRIPPED",
"F-650",
"F-650 DIESEL",
"F-750",
"F-SUPER DUTY",
"F100",
"F150",
"F150 4WD",
"F150 KING",
"F150 LARIA",
"F150 LIGHT",
"F150 PLATI",
"F150 RAPTO",
"F150 STX",
"F150 SUPER",
"F150 SVT R",
"F150 XL",
"F150 XLT",
"F150XL/XLT",
"F250",
"F250 SUPER",
"F350",
"F350 SRW S",
"F350 SUPER",
"F450 SUPER",
"F53",
"F530",
"F530 SUPER",
"F550",
"F550 SUPER",
"F59",
"F650 SUPER",
"F750 SUPER",
"FIESTA",
"FIESTA S",
"FIESTA SE",
"FIESTA ST",
"FIESTA TIT",
"FIVE HUNDR",
"FIVE HUNDRED",
"FLEX",
"FLEX LIMIT",
"FLEX SE",
"FLEX SEL",
"FOCUS",
"FOCUS 4D",
"FOCUS ELECTRIC",
"FOCUS LX",
"FOCUS RS",
"FOCUS S",
"FOCUS S/SE",
"FOCUS SE",
"FOCUS SE C",
"FOCUS SEL",
"FOCUS SES",
"FOCUS ST",
"FOCUS TITA",
"FOCUS ZTS",
"FOCUS ZTW",
"FOCUS ZX3",
"FOCUS ZX4",
"FOCUS ZX5",
"FREESTAR",
"FREESTAR S",
"FREESTYLE",
"FUSION",
"FUSION ENE",
"FUSION ENERGI",
"FUSION HYB",
"FUSION HYBRID",
"FUSION S",
"FUSION S H",
"FUSION SE",
"FUSION SEL",
"FUSION SPO",
"FUSION TIT",
"JAYCO",
"LGT CONVTNL",
"LOW TILT CARGO",
"LTD",
"MAVERICK",
"MAVERICK L",
"MAVERICK X",
"MODEL A",
"MODEL T",
"MUSTANG",
"MUSTANG CO",
"MUSTANG GT",
"MUSTANG LX",
"MUSTANG MA",
"MUSTANG MACH-E",
"MUSTANG SH",
"OTHER",
"POLICE INTERCEPTOR",
"POLICE INTERCEPTOR UTILITY",
"RANCHERO",
"RANGER",
"RANGER SUP",
"RANGER XL",
"RANGER XLT",
"SHELBY GT350",
"SHELBY GT500",
"SUPER CLUB WAGON",
"SUPER DUTY F-350 SRW",
"T- BIRD",
"T-BIRD",
"TAURUS",
"TAURUS LIM",
"TAURUS LX",
"TAURUS POL",
"TAURUS SE",
"TAURUS SEL",
"TAURUS SES",
"TAURUS SHO",
"TAURUS X",
"TAURUS X L",
"TEMPO",
"THINK NEIG",
"THUNDERBIR",
"THUNDERBIRD",
"TORINO",
"TRANSIT",
"TRANSIT CO",
"TRANSIT CONNECT",
"TRANSIT CONNECT WAGON",
"TRANSIT T-",
"TRANSIT-150",
"TRANSIT-250",
"TRANSIT-250 CAB",
"TRANSIT-350",
"TRANSIT-350 CAB",
"TRANSIT-350 CAB CHASSIS",
"TRANSIT-350 CARGO VAN",
"TRANSIT-350 CUTAWAY",
"TRANSIT-350 PASSENGER VAN",
"TUDOR",
"UK",
"UNKNOWN",
"UTILITY POLICE INTERCEPTOR",
"VAN",
"WINDSTAR",
"WINDSTAR L",
"WINDSTAR S",
"ZX2"
],
"FOREST RIVER": [
"CAMPER SHELL",
"CLIPPER TRAVEL TRAILER",
"CRUISE LITE",
"CRUSADER TRAVEL TRAILER",
"FREEDOM",
"GLACIER",
"GREY WOLF 26R",
"OTHER",
"PONTOON",
"R-POD",
"SANDPIPER",
"SATW 26FLSL",
"SIERRA",
"SIERRA TAN 379FLOK",
"SURVEYOR",
"TRAVEL TRLR",
"WILDCAT 302RL",
"WILDWOOD HERITAGE GL",
"WINDJAMMER"
],
"FORKLIFT": [
"OTHER"
],
"FORMULA": [
"BOAT",
"OTHER",
"PC"
],
"FORR": [
"5TH WHEEL"
],
"FOUNTAIN": [
"CABIN CRUISER",
"POWERBOATS"
],
"FOUR WINNS": [
"18 FT OPEN",
"BOAT W/TRA",
"HORIZON",
"OTHER"
],
"FOXF": [
"TRAILER"
],
"FRDM": [
"TRAILER"
],
"FREEDOM EXPRESS": [
"246RKS"
],
"FREEDON": [
"TRAILER"
],
"FREEMAN": [
"FRAC TANK"
],
"FREIGHTLINER": [
"108SD",
"114SD",
"ALLEGRO BUS MOTOR HOME",
"CASCADIA",
"CASCADIA 1",
"CASCADIA 113",
"CASCADIA 125",
"CASCAIA125",
"CENTURY120",
"CHASSIS",
"CHASSIS FS",
"CHASSIS M",
"CHASSIS X",
"CHASSIS XC",
"COLUMBIA",
"CONVENTION",
"CONVENTIONAL",
"CST120",
"FLD120",
"FS65 SCHOOL BUS",
"M2",
"M2 106",
"M2 106 MED",
"M2 112",
"M2 112 HEA",
"M2 112 MED",
"MEDIUM CONVENTIONAL",
"MT45G",
"NEW CASCADIA 116",
"NEW CASCADIA 126",
"SPRINTER 1",
"SPRINTER 2",
"SPRINTER 2500",
"SPRINTER 3500"
],
"FRRV": [
"CATALINA",
"VENGEANCE"
],
"FRUEHAUF": [
"TRAILER"
],
"FSTR": [
"TRAILER"
],
"FUN": [
"FUN"
],
"FVFE": [
"TV"
],
"GALLEGOS": [
"NOTSPIFIED"
],
"GAR-BRO": [
"427-R"
],
"GATO": [
"SCOOTER"
],
"GCL TRAILERS": [
"OTHER"
],
"GEM": [
"ALL MODELS",
"GEM KART"
],
"GENERAC": [
"MLT3060M"
],
"GENERAL TRAILER CO": [
"OTHER"
],
"GENESIS": [
"ELECTRIFIED G80",
"G70",
"G70 BASE",
"G70 ELITE",
"G70 PRESTI",
"G70 SPORT",
"G80",
"G80 BASE",
"G90",
"G90 ULTIMA",
"GV70",
"GV70 BASE",
"GV80",
"GV80 BASE"
],
"GENIE": [
"TZ 34/20",
"Z135"
],
"GENUINE SCOOTER CO.": [
"STELLA"
],
"GEO": [
"METRO",
"PRIZM",
"PRIZM BASE"
],
"GG TRAILERS, SA DE CV": [
"GSE CBD2201"
],
"GILLIG": [
"INCOMPLETE MOTORHOME CHASSIS"
],
"GLACIER": [
"EXPLORER"
],
"GLASTRON": [
"BOAT ONLY"
],
"GLAV": [
"BUS"
],
"GLOBAL ELECTRIC MOTORS": [
"E2",
"E4"
],
"GLOBAL ELECTRIC MOTOTRS": [
"E4"
],
"GMC": [
"1500",
"5500 W5504",
"ACADIA",
"ACADIA AT4",
"ACADIA DEN",
"ACADIA ELE",
"ACADIA LIM",
"ACADIA LIMITED",
"ACADIA SLE",
"ACADIA SLT",
"C10",
"C1500",
"C5500 C5V0",
"C6",
"C7500",
"CANYON",
"CANYON AT4",
"CANYON DEN",
"CANYON ELE",
"CANYON SLE",
"CANYON SLT",
"DENALI",
"ENVOY",
"ENVOY XL",
"ENVOY XUV",
"FORWARD CONTROL CHASSIS",
"HUMMER EV PICKUP",
"JIMMY",
"NEW SIERRA",
"RALLY WAGON / VAN",
"S TRUCK",
"S15",
"SAFARI",
"SAVANA",
"SAVANA 2500",
"SAVANA 3500",
"SAVANA CARGO",
"SAVANA CUT",
"SAVANA CUTAWAY",
"SAVANA G25",
"SAVANA G35",
"SAVANA RV",
"SIERRA",
"SIERRA 1500",
"SIERRA 1500 CLASSIC",
"SIERRA 1500 LIMITED",
"SIERRA 1500HD",
"SIERRA 2500",
"SIERRA 2500HD",
"SIERRA 3500 CHASSIS",
"SIERRA 3500HD",
"SIERRA 3500HD CHASSIS",
"SIERRA C15",
"SIERRA C25",
"SIERRA C35",
"SIERRA DEN",
"SIERRA K15",
"SIERRA K25",
"SIERRA K2500HD",
"SIERRA K35",
"SIERRA LIM",
"SONOMA",
"SUBURBAN",
"SUBURBAN 1500",
"SUBURBAN K",
"TC5500",
"TC6H042",
"TC8500",
"TERRAIN",
"TERRAIN AT",
"TERRAIN DE",
"TERRAIN SL",
"TOPKICK",
"VANDURA",
"VANDURA G3",
"W3S042 W3500 DSL REG",
"W4500 W450",
"YUK/DEN",
"YUKON",
"YUKON DENA",
"YUKON HYBRID",
"YUKON SLE",
"YUKON SLT",
"YUKON XL",
"YUKON XL 1500",
"YUKON XL C",
"YUKON XL D",
"YUKON XL K"
],
"GOLF": [
"CART",
"CLUBS",
"EZGO"
],
"GORILLA": [
"UNKNOWN"
],
"GRAN": [
"REFLECTION"
],
"GRAND DESIGN": [
"230RL",
"IMAGINE XLS 27\"",
"REFLECTION",
"REFLECTION 100 28RL",
"SOLI",
"TRANSCEND 240ML",
"TRAVEL TRAILER"
],
"GRANDESIGN": [
"IMAGINE",
"REFLECTION",
"TRANSCEND"
],
"GREA": [
"TRAILER"
],
"GREAT DANE": [
"53FT REEFR",
"REEFER",
"TRAILER"
],
"GREAT DANE TRAILER": [
"DRY VAN",
"SEMI TRAIL",
"TRAILER"
],
"GREAT DANE TRAILERS": [
"GREAT DANE TRAILERS",
"UNKNOWN"
],
"GULF STREAM": [
"268BH",
"AMERI-LITE",
"AMERILITE",
"CONQUEST",
"KINGSPORT"
],
"GULFSTREAM": [
"AMERILITE TRAVEL TRAILER",
"CONQUEST 30 BHS",
"CONQUEST TRAVEL TRAILER - 27FT - NO SLD"
],
"H&H": [
"TRAILER",
"UNKNOWN"
],
"HARBOR FREIGHT": [
"UTILITY TRAILER 4X8"
],
"HARLEY-DAVIDSON": [
"CVO STREET GLIDE",
"DAVIDSON",
"ELW",
"FLD SWITCH",
"FLFBS",
"FLHC HERIT",
"FLHCS",
"FLHPI",
"FLHR",
"FLHR ROAD",
"FLHRC",
"FLHRCI",
"FLHRI",
"FLHRSI",
"FLHRXS",
"FLHT",
"FLHT CLASS",
"FLHTCI",
"FLHTCU",
"FLHTCUI",
"FLHTCUTG",
"FLHTI",
"FLHTK SHRI",
"FLHTKL ULT",
"FLHTKSE CV",
"FLHTPI",
"FLHX",
"FLHX STREE",
"FLHXS",
"FLHXS STRE",
"FLHXSE",
"FLHXSE CVO",
"FLSL",
"FLSL SOFTA",
"FLSTC",
"FLSTF FATB",
"FLSTFB FAT",
"FLSTFBS",
"FLSTFI",
"FLSTN",
"FLSTSI",
"FLTRI",
"FLTRK",
"FLTRU",
"FLTRUSE",
"FLTRUSE CV",
"FLTRX",
"FLTRX ROAD",
"FLTRXS",
"FLTRXS ROA",
"FLTRXSEANV",
"FXBB",
"FXBBS",
"FXDB",
"FXDB DYNA",
"FXDC DAYTO",
"FXDF",
"FXDI",
"FXDL DYNA",
"FXDLS",
"FXDRS",
"FXDWG",
"FXDWG DYNA",
"FXDWG3",
"FXLRS",
"FXRS",
"FXSB",
"FXST",
"FXSTC",
"FXSTD",
"FXSTDI",
"MOTORCYCLE",
"RA1250 S",
"RH1250 S",
"VRSCA",
"VRSCDX",
"VRSCF VROD",
"XL1200",
"XL1200 C",
"XL1200 NS",
"XL1200 T",
"XL1200 X",
"XL883",
"XL883 C",
"XL883 IRON",
"XL883 L",
"XL883 N",
"XR1200"
],
"HARRIS": [
"OTHER"
],
"HARRISKAYO": [
"FLOTEBOTE"
],
"HATTERAS YACHTS": [
"SPORT FISH"
],
"HAUL MARK IND": [
"HAUL MARK IND"
],
"HAUL-ABOUT": [
"TRAILER"
],
"HAULMARK": [
"CARGO TRAI",
"ENCL TRLR",
"TRAILER"
],
"HAVOC": [
"1653 MSTC"
],
"HDK": [
"GOLF CART"
],
"HDSN": [
"TRAILER"
],
"HEART LAND": [
"MALLARD",
"NORTH COUN",
"PIONEER",
"TRAIL RUNN",
"WILDERNESS"
],
"HEARTLAND": [
"CYCLONE",
"ELKRIDGE",
"GATEWAY",
"NORTH TRAI",
"PIONEER",
"PROWLER LYNX 32LX",
"SUNDANCE 312BH",
"TRAILER"
],
"HEARTLAND RV": [
"OTHER"
],
"HEIL": [
"OLYMPIAN"
],
"HEWES CRAFT": [
"BOAT"
],
"HIBOY": [
"WALLKE"
],
"HIDE": [
"TRAILER"
],
"HIGHLAND RIDGE": [
"OPRG/CT"
],
"HINO": [
"155",
"195",
"258/268",
"268",
"268/338",
"HINO 268",
"HINO 338",
"HINO L6",
"XJC710/XFC710",
"XJC740/XFC740"
],
"HMDG": [
"EQUIPMENT"
],
"HOBI": [
"KAYAK"
],
"HOBIE CAT": [
"COAST"
],
"HOLIDAY RAMBLER": [
"ADMIRAL"
],
"HOME": [
"UTILITY TR"
],
"HOMEMADE": [
"7X20 CAR HAULER",
"TL",
"TRAILER",
"UTILITY TRAILER"
],
"HOMESEADER": [
"TRAILER"
],
"HONDA": [
"1100 VT",
"175",
"ACCORD",
"ACCORD 180",
"ACCORD CPE",
"ACCORD CRO",
"ACCORD CROSSTOUR",
"ACCORD EX",
"ACCORD EXL",
"ACCORD HYB",
"ACCORD HYBRID",
"ACCORD LX",
"ACCORD LX-",
"ACCORD LXP",
"ACCORD SDN",
"ACCORD SE",
"ACCORD SED",
"ACCORD SPO",
"ACCORD TOU",
"AQUA TRAX",
"CB125",
"CB250",
"CB550",
"CB650",
"CBF300 NA",
"CBR1000",
"CBR1000 RR",
"CBR300 R",
"CBR600",
"CBR600 F4",
"CBR600 RA",
"CBR600 RR",
"CBR900 RR",
"CH250",
"CIVIC",
"CIVIC HYBRID",
"CIVIC COUP",
"CIVIC DX",
"CIVIC DX V",
"CIVIC DX-G",
"CIVIC EX",
"CIVIC EX-L",
"CIVIC EXL",
"CIVIC HF",
"CIVIC HYBR",
"CIVIC HYBRID",
"CIVIC LX",
"CIVIC LX-S",
"CIVIC NATU",
"CIVIC SDN",
"CIVIC SE",
"CIVIC SI",
"CIVIC SPOR",
"CIVIC TOUR",
"CIVIC TYPE",
"CIVIC TYPE R",
"CIVIC VP",
"CLARITY",
"CLARITY PLUG-IN HYBRID",
"CLARITY TO",
"CMX1100",
"CMX1100 D",
"CMX250 C",
"CMX300",
"CMX500",
"CN250",
"CR-V",
"CR-V EX",
"CR-V EXL",
"CR-V HYBRID",
"CR-V LX",
"CR-V SE",
"CR-V SPORT",
"CR-V TOURI",
"CR-Z",
"CR-Z EX",
"CROSSTOUR",
"CRV",
"CRV LX",
"CTX700 D",
"ELEMENT",
"ELEMENT EX",
"ELEMENT SC",
"FIT",
"FIT EX",
"FIT LX",
"FIT S",
"FIT SE",
"FIT SPORT",
"FSC600",
"FSC600 D",
"GL1100",
"GL1200 I",
"GL1500",
"GL1800",
"GL1800 D",
"GOLD WING",
"GOLDWING",
"GROM 125",
"HAWK CB400",
"HR-V",
"HR-V EX",
"HR-V EXL",
"HR-V LX",
"HR-V SPORT",
"HR-V TOURI",
"INSIGHT",
"INSIGHT EX",
"INSIGHT LX",
"INSIGHT TO",
"NCW50",
"NSS250",
"NSS300",
"NVA110",
"NVA110 B",
"ODDYSSEY",
"ODYSS EX-L",
"ODYSSEY",
"ODYSSEY EL",
"ODYSSEY EX",
"ODYSSEY LX",
"ODYSSEY SE",
"ODYSSEY TO",
"OTHER",
"PASSPORT",
"PASSPORT E",
"PASSPORT S",
"PASSPORT T",
"PILOT",
"PILOT ELIT",
"PILOT EX",
"PILOT EXL",
"PILOT EXLN",
"PILOT LX",
"PILOT SE",
"PILOT SPOR",
"PILOT TOUR",
"PILOT TRAI",
"PILOT VP",
"PRELUDE",
"PRELUDE 18",
"PROLOGUE",
"PROLOGUE T",
"RIDGELINE",
"S2000",
"SH150",
"ST1300",
"STEPWAGON",
"SXS1000",
"SXS1000 M5",
"SXS1000 S2",
"TRX420 FE",
"TRX520 FA",
"TWINSTAR MC",
"VF750",
"VT1100",
"VT1300",
"VT500",
"VT600 CD",
"VT750",
"VT750 C2",
"VT750 C2B",
"VT750 CDC",
"VT750 DC",
"VTX1300",
"VTX1300 C",
"XR650 L"
],
"HORA": [
"MOTORHOME"
],
"HORN": [
"TRAVEL TRL"
],
"HORS": [
"TRAILER"
],
"HRLD": [
"PIONEER"
],
"HUMMER": [
"H2",
"H2 SUT",
"H2 SUV",
"H3",
"H3 SUV"
],
"HURRICANE": [
"OTHER"
],
"HUSQVARNA": [
"701 ENDURO"
],
"HYSTER": [
"FORKLIFT"
],
"HYUNDAI": [
"53FT TRALR",
"ACCENT",
"ACCENT BAS",
"ACCENT BLU",
"ACCENT GL",
"ACCENT GLS",
"ACCENT GS",
"ACCENT LIM",
"ACCENT SE",
"AZERA",
"AZERA GLS",
"AZERA SE",
"DRY VAN",
"ELANTRA",
"ELANTRA BL",
"ELANTRA CO",
"ELANTRA EC",
"ELANTRA GL",
"ELANTRA GT",
"ELANTRA HYBRID",
"ELANTRA LI",
"ELANTRA N",
"ELANTRA SE",
"ELANTRA SP",
"ELANTRA TO",
"ELANTRA TOURING",
"ENTOURAGE",
"EQUUS",
"EQUUS SIGN",
"GENESIS",
"GENESIS 3.",
"GENESIS 4.",
"GENESIS 5.",
"GENESIS CO",
"IONIQ 5",
"IONIQ 5 LI",
"IONIQ 5 N",
"IONIQ 5 SE",
"IONIQ 6",
"IONIQ 6 SE",
"IONIQ BLUE",
"IONIQ ELECTRIC",
"IONIQ HYBR",
"IONIQ HYBRID",
"IONIQ LIMI",
"IONIQ PLUG-IN HYBRID",
"IONIQ PREF",
"IONIQ SE",
"IONIQ SEL",
"KONA",
"KONA ELECTRIC",
"KONA EV",
"KONA LIMIT",
"KONA N",
"KONA N BAS",
"KONA N LIN",
"KONA PREFE",
"KONA SE",
"KONA SEL",
"KONA ULTIM",
"NEXO",
"PALISADE",
"PALISADE C",
"PALISADE L",
"PALISADE S",
"PALISADE X",
"SANTA CRUZ",
"SANTA FE",
"SANTA FE C",
"SANTA FE G",
"SANTA FE HYBRID",
"SANTA FE L",
"SANTA FE S",
"SANTA FE SPORT",
"SANTA FE X",
"SANTA FE XL",
"SCOUPE",
"SONATA",
"SONATA ECO",
"SONATA GL",
"SONATA GLS",
"SONATA HYB",
"SONATA HYBRID",
"SONATA LIM",
"SONATA N L",
"SONATA PLU",
"SONATA SE",
"SONATA SEL",
"SONATA SPO",
"TIBURON",
"TIBURON GT",
"TRAILER",
"TRANSLEAD",
"TUCSON",
"TUCSON GL",
"TUCSON GLS",
"TUCSON HYBRID",
"TUCSON LIM",
"TUCSON N L",
"TUCSON SE",
"TUCSON SEL",
"TUCSON SPO",
"TUCSON ULT",
"TUCSON VAL",
"TUCSON XRT",
"TUSCON",
"VELOSTER",
"VELOSTER N",
"VELOSTER T",
"VENUE",
"VENUE SE",
"VENUE SEL",
"VERACRUZ",
"VERACRUZ G",
"XG 350",
"XG350"
],
"HYUNDAI TRANSLEAD INC": [
"HYUNDAI TRANSLEAD INC",
"UNKNOWN"
],
"IC CORPORATION": [
"3000",
"3000 CE"
],
"ICE": [
"CASTLE"
],
"ICON": [
"GOLF CART"
],
"IMAG": [
"TRAILER"
],
"INDIAN MOTORCYCLE CO.": [
"CHALLENGER",
"CHIEF VINT",
"CHIEFTAIN",
"SCOUT",
"SCOUT ABS",
"SPIRIT",
"SPORT CHIE",
"SPRINGFIELD"
],
"INEOS": [
"GRENADIER"
],
"INFINITI": [
"EX35",
"EX35 BASE",
"EX37",
"FX35",
"FX37",
"FX45",
"FX50",
"G20",
"G25",
"G25 BASE",
"G25X",
"G35",
"G35X",
"G37",
"G37 BASE",
"G37 CONVER",
"G37 JOURNE",
"G37X",
"I30",
"I35",
"JX35",
"M35",
"M35 BASE",
"M35X",
"M37",
"M37 X",
"M37X",
"M45 BASE",
"M56",
"Q40",
"Q45",
"Q45 BASE",
"Q50",
"Q50 BASE",
"Q50 HYBRID",
"Q50 LUXE",
"Q50 PREMIU",
"Q50 PURE",
"Q50 RED SP",
"Q60",
"Q60 BASE",
"Q60 JOURNE",
"Q60 LUXE 3",
"Q60 RED SP",
"Q70",
"Q70 3.7",
"Q70L",
"Q70L 3.7",
"Q70L 3.7 L",
"QX30",
"QX30 BASE",
"QX4",
"QX50",
"QX50 ESSEN",
"QX50 LUXE",
"QX50 PURE",
"QX50 SPORT",
"QX55",
"QX55 ESSEN",
"QX55 LUXE",
"QX56",
"QX60",
"QX60 AUTOG",
"QX60 HYBRI",
"QX60 LUXE",
"QX70",
"QX80",
"QX80 BASE",
"QX80 LUXE",
"QX80 SENSO"
],
"INME": [
"TORINO"
],
"INTERNATIONAL": [
"3000 3800",
"4000",
"4000 4300",
"4000 4400",
"4000 4700",
"4300",
"4700",
"7000",
"7000 7400",
"7000 7600",
"8000",
"9100",
"CF",
"CV",
"DURASTAR 4300",
"HV507",
"LONESTAR",
"LT",
"LT625",
"MV",
"MV607",
"PROSTAR",
"PROSTAR+",
"TERRASTAR"
],
"INTERSTATE": [
"ENCLOSED"
],
"INTERSTATE WEST": [
"UNKNOWN",
"UTILITY"
],
"INTERSTATE WEST CORP": [
"UNKNOWN"
],
"INVADER": [
"CANOE"
],
"ISUZU": [
"AXIOM XS",
"COMMERCIAL VAN",
"DSL REG",
"DSL REG AT",
"FTR",
"I-290",
"I-350",
"NPR",
"NPR GAS REG",
"NPR HD",
"NPR HD DSL REG",
"NPR HD GAS REG",
"NPR XD",
"NQR",
"NRR",
"NRR DSL REG AT",
"PUP LONG B",
"REACH",
"RODEO",
"TROOPER"
],
"J & L": [
"J & L"
],
"JA-MAR MFG INC": [
"JA-MAR MFG INC"
],
"JAGUAR": [
"E-PACE",
"E-PACE S",
"F-PACE",
"F-PACE PRE",
"F-PACE R -",
"F-PACE S",
"F-TYPE",
"F-TYPE R",
"I-PACE",
"S-TYPE",
"X-TYPE",
"X-TYPE SPO",
"XE",
"XE PORTFOL",
"XE PREMIUM",
"XE PRESTIG",
"XE S",
"XF",
"XF 3.0 SPO",
"XF LUXURY",
"XF PREMIUM",
"XF R - SPO",
"XF S",
"XF SUPERCH",
"XJ",
"XJ12",
"XJ6",
"XJ8",
"XJL",
"XJL PORTFO",
"XJR",
"XJS",
"XJS 2+2",
"XK",
"XK8"
],
"JAVELIN": [
"BOAT"
],
"JAY": [
"JAY FLIGHT",
"TRAILER"
],
"JAYCEE": [
"JAY FLIGHT",
"MOTORHOME",
"REDHAWK 26"
],
"JAYCO": [
"CAMPER",
"EAGLE",
"EAGLE HT",
"JAY FEATHE",
"JAY FEATHER",
"JAY FLIGHT",
"JAYCO 308 EAGLE",
"JAYFL184BH",
"JAYFLIGHT",
"NORTH POIN",
"OTHER",
"PINNACLE",
"TRAILER",
"WHITE HAWK"
],
"JC": [
"BOAT"
],
"JCL": [
"MP-250A SCOOTER"
],
"JEEP": [
"15 FT",
"CHEROKEE",
"CHEROKEE A",
"CHEROKEE C",
"CHEROKEE L",
"CHEROKEE O",
"CHEROKEE S",
"CHEROKEE T",
"CJ-7",
"COMMANDER",
"COMPASS",
"COMPASS 80",
"COMPASS LA",
"COMPASS LI",
"COMPASS SP",
"COMPASS TR",
"GLADIATOR",
"GR CHEROKE",
"GRAN CHERO",
"GRAND CHER",
"GRAND CHEROKEE",
"GRAND CHEROKEE 4XE",
"GRAND CHEROKEE L",
"GRAND CHEROKEE WK",
"GRAND WAGONEER",
"GRAND WAGONEER L",
"JEEP",
"JEEP TRUCK",
"LIBERTY",
"LIBERTY JE",
"LIBERTY LI",
"LIBERTY RE",
"LIBERTY SP",
"NEW COMPASS",
"PATRIOT",
"PATRIOT LA",
"PATRIOT LI",
"PATRIOT SP",
"RENEGADE",
"RENEGADE L",
"RENEGADE S",
"RENEGADE T",
"WAGONEER",
"WAGONEER L",
"WAGONEER S",
"WRANGLER",
"WRANGLER /",
"WRANGLER / YJ",
"WRANGLER 4",
"WRANGLER 4XE",
"WRANGLER C",
"WRANGLER JK",
"WRANGLER JK UNLIMITED",
"WRANGLER R",
"WRANGLER S",
"WRANGLER U",
"WRANGLER UNLIMITED",
"WRANGLER UNLMTD HARD TOP ONLY",
"WRANGLER X"
],
"JENSEN MOTORS": [
"JENSEN HEALEY"
],
"JET": [
"GRAINTRLR",
"TRAILER"
],
"JEZP": [
"135/8X5000"
],
"JIAJ": [
"SCOOTER"
],
"JIANGSU BAODIAO": [
"SCOOTER"
],
"JOHN": [
"DEER GATOR"
],
"JOHN DEERE": [
"160 C LP EXCAVATOR",
"333G",
"35G",
"624K",
"772G",
"850K",
"850K WLT",
"950K",
"950K LGP",
"BUCKET",
"R",
"XUV 855M"
],
"JONW": [
"MOPED"
],
"JOZH": [
"A400"
],
"K INC DURANGO": [
"M-275 RE"
],
"KARMA AUTOMOTIVE": [
"REVERO PRE"
],
"KAUFMAN": [
"3-CAR TRL",
"4-CAR TRL",
"CARTRAILER",
"GOOSENECK",
"TRAILER",
"UNKNOWN"
],
"KAUFMAN TRAILERS": [
"KAUFMAN TRAILERS",
"TRAILER"
],
"KAWASAKI": [
"CX500",
"EL450 A",
"EL450 B",
"EN650 B",
"ER400",
"ER500",
"ER650 G",
"EX250",
"EX250 J",
"EX300",
"EX300 A",
"EX400",
"EX500",
"EX500 A",
"EX500 H",
"EX650",
"EX650 M",
"EX650 P",
"EX650 R",
"JETSKI",
"KAF400",
"KAF620",
"KAF620 Z",
"KAF820",
"KAT820 C",
"KL650 A",
"KL650 E",
"KLE300",
"KLE650",
"KLX230 R",
"KRF 1000 A",
"KRF800",
"KRF800 C",
"KRT1000 B",
"KRT800 C",
"KVF750",
"KVF750 H",
"KWF1000",
"KX252",
"KX252 A",
"KX252 C",
"KZ750",
"MC",
"NINJA 500",
"NINJA ZX 1",
"STX 15F",
"VN1500",
"VN1600 B",
"VN1700 A",
"VN1700 K",
"VN800 B",
"VN900",
"VN900 D",
"VULCAN 800",
"ZR1000",
"ZR900",
"ZR900 F",
"ZX1000 J",
"ZX1002 L",
"ZX1002 M",
"ZX1002 T",
"ZX1400",
"ZX1400 J",
"ZX600 J1",
"ZX636",
"ZX636 E",
"ZX636 K",
"ZX900"
],
"KAYO": [
"S200"
],
"KENNOR": [
"TOLAR MOTOR / BOX"
],
"KENWORTH": [
"CONSTRUCT",
"CONSTRUCTI",
"CONSTRUCTION",
"T3 SERIES",
"T600",
"T660",
"T680",
"T800",
"T880",
"W900"
],
"KEY": [
"TRAILER"
],
"KEYSTERVCO": [
"MONTANA"
],
"KEYSTONE": [
"5TH WHEEL",
"AVALANCHE",
"BULLET",
"BULLET ULTRA LITE SE",
"BULLETT",
"CAMPER",
"CHALLENGER",
"COUGAR",
"DUTCHMAN",
"HIDEOUT",
"HIDEOUT TRAVEL TRAILER (29FT)",
"HORNET",
"KEYSTONE MONTANA RV 5TH WHEEL",
"MONTANA",
"OTHER",
"OUTBACK 293 UBH",
"PASSPORT",
"SPRINGDALE",
"SPRINGDALE 302 FWRK",
"SPRINGDALE M-189 TRAVEL TRAILER",
"SPRINTER",
"TRAILER",
"TRAV TRAIL",
"TRVL TRL",
"ZEPLIN"
],
"KEYSTONE RV": [
"COUGAR 25 MLE",
"HIDEOUT",
"OTHER"
],
"KIA": [
"AMANTI",
"BORREGO",
"BORREGO LX",
"CADENZA",
"CADENZA LU",
"CADENZA PR",
"CARNIVAL E",
"CARNIVAL L",
"CARNIVAL MPV",
"CARNIVAL MPV HYBRID",
"CARNIVAL S",
"EV6",
"EV6 GT",
"EV6 GT LIN",
"EV6 LIGHT",
"EV9",
"EV9 LAND",
"FORTE",
"FORTE 5-DOOR",
"FORTE EX",
"FORTE FE",
"FORTE GT",
"FORTE GT L",
"FORTE KOUP",
"FORTE LX",
"FORTE S",
"FORTE SX",
"K4",
"K4 EX",
"K4 GT LINE",
"K4 GT-LINE",
"K4 LX",
"K5",
"K5 EX",
"K5 GT",
"K5 GT LINE",
"K5 LX",
"K5 LXS",
"K900",
"NEW SPORTA",
"NIRO",
"NIRO EV",
"NIRO EX",
"NIRO EX PR",
"NIRO EX TO",
"NIRO FE",
"NIRO LX",
"NIRO PLUG-IN HYBRID",
"NIRO S",
"NIRO WAVE",
"NIRO WIND",
"OPTIMA",
"OPTIMA EX",
"OPTIMA HYB",
"OPTIMA HYBRID",
"OPTIMA LX",
"OPTIMA PLU",
"OPTIMA PLUG-IN HYBRID",
"OPTIMA SX",
"OPTIMA SXL",
"RIO",
"RIO 5",
"RIO 5-DOOR",
"RIO BASE",
"RIO EX",
"RIO LX",
"RIO S",
"RIO5",
"RONDO",
"SEDONA",
"SEDONA EX",
"SEDONA L",
"SEDONA LX",
"SEDONA SXL",
"SELTOS",
"SELTOS EX",
"SELTOS LX",
"SELTOS S",
"SELTOS SX",
"SORENTO",
"SORENTO BA",
"SORENTO EX",
"SORENTO HYBRID",
"SORENTO L",
"SORENTO LX",
"SORENTO S",
"SORENTO SX",
"SOUL",
"SOUL !",
"SOUL +",
"SOUL EV",
"SOUL EX",
"SOUL GT LI",
"SOUL LX",
"SPECTRA",
"SPECTRA EX",
"SPECTRA LX",
"SPECTRA5",
"SPORTAGE",
"SPORTAGE B",
"SPORTAGE E",
"SPORTAGE HYBRID",
"SPORTAGE L",
"SPORTAGE S",
"SPORTAGE X",
"STINGER",
"STINGER GT",
"TELLURIDE"
],
"KIEFER": [
"GENESX-480"
],
"KING OF THE ROAD": [
"DIVISIO",
"GULF STREA"
],
"KIOTI": [
"OTHER"
],
"KOHLER": [
"100REOZJB"
],
"KQBR": [
"UNKNOWN"
],
"KTM": [
"390 ADVENT",
"790 DUKE",
"890 ADVENT",
"890 DUKE R",
"990 SUPER"
],
"KUBOTA": [
"KX040"
],
"KUTB": [
"TRAILER"
],
"KWIK": [
"TRAILER"
],
"KYMCO USA INC": [
"KYMCO ATV",
"PEOPLE",
"PEOPLE 50",
"SUPER 8"
],
"KZ": [
"DURANGO",
"SPORT M"
],
"KZ I": [
"SPORTSMEN"
],
"KZ RV": [
"CONNECT M-241BHK"
],
"KZSP": [
"TRAILER"
],
"LAMAR": [
"TRAILER"
],
"LAMBORGHINI": [
"HURACAN EV",
"HURACAN PE",
"HURACAN ST",
"URUS",
"URUS S"
],
"LANCE": [
"1161 CAMPER",
"CAMPER"
],
"LANCE MANUFACTURING": [
"M-1685"
],
"LANCE MFG": [
"LANCE"
],
"LAND ROVER": [
"ALL OTHER",
"ANGLER",
"BASS BOAT",
"DEFENDER",
"DEFENDER 1",
"DISCOVERY",
"DISCOVERY SPORT",
"FREELANDER",
"LANDROVER",
"LR2",
"LR2 BASE/H",
"LR2 HSE",
"LR2 SE",
"LR3",
"LR3 HSE",
"LR4",
"LR4 HSE",
"LR4 HSE LU",
"LX22",
"RANGE ROVE",
"RANGE ROVER",
"RANGE ROVER EVOQUE",
"RANGE ROVER SPORT",
"RANGE ROVER VELAR",
"RANGER",
"ROVER"
],
"LARK": [
"16' ENCLOSED TRAILER",
"TRAILER"
],
"LAYTON": [
"TRAVEL TRAILER"
],
"LEGEND": [
"TRAILER"
],
"LEXUS": [
"460",
"CT 200",
"CT 200H",
"ES",
"ES 250",
"ES 250 BAS",
"ES 300",
"ES 300H",
"ES 300H BA",
"ES 330",
"ES 350",
"ES 350 BAS",
"GS 200T",
"GS 300",
"GS 350",
"GS 350 BAS",
"GS 400",
"GS 430",
"GS 450H",
"GS-F",
"GS300",
"GX",
"GX 460",
"GX 460 LUX",
"GX 460 PRE",
"GX 470",
"GX 550 PRE",
"HS",
"HS 250H",
"IS 200T",
"IS 250",
"IS 250C",
"IS 300",
"IS 300 F S",
"IS 350",
"IS 350 F S",
"IS 350C",
"LC 500",
"LS",
"LS 400",
"LS 430",
"LS 460",
"LS 460L",
"LS 500",
"LS 500 BAS",
"LS 600HL",
"LX",
"LX 470",
"LX 570",
"LX 600",
"LX 600 ULT",
"NX",
"NX 200T",
"NX 200T BA",
"NX 250",
"NX 250 BAS",
"NX 300",
"NX 300 BAS",
"NX 300 F S",
"NX 300H",
"NX 300H BA",
"NX 350",
"NX 350 PRE",
"NX 350H",
"NX 350H BA",
"RC 200T",
"RC 300",
"RC 350",
"RC F",
"RC-F",
"RC-F BASE",
"RX",
"RX 300",
"RX 330",
"RX 350",
"RX 350 BAS",
"RX 350 F S",
"RX 350 L",
"RX 350 PRE",
"RX 350H",
"RX 350H BA",
"RX 350L",
"RX 400",
"RX 400H",
"RX 450H",
"RX 450H BA",
"RX 450H F",
"RX 450H L",
"RX 450HL",
"RX 500H",
"RX 500H F",
"RZ 300E",
"RZ 450E",
"SC 300",
"SC 400",
"SC 430",
"TX 350",
"UX 200",
"UX 250H",
"UX 250H BA",
"UX 250H PR"
],
"LGS": [
"TRAILER"
],
"LIBE": [
"TRAILER"
],
"LINCOLN": [
"AVIATOR",
"AVIATOR RE",
"BLACKWOOD",
"CONTINENTA",
"CONTINENTAL",
"CONTINENTL",
"CORSAIR",
"CORSAIR RE",
"LS",
"MARK IV",
"MARK LT",
"MKC",
"MKC PREMIE",
"MKC RESERV",
"MKC SELECT",
"MKS",
"MKT",
"MKX",
"MKX BLACK",
"MKX PREMIE",
"MKX RESERV",
"MKX SELECT",
"MKZ",
"MKZ HYBRID",
"MKZ RESERV",
"NAUTILUS",
"NAUTILUS B",
"NAUTILUS R",
"NAUTILUS S",
"NAVIGATOR",
"NAVIGATOR L",
"TOWN CAR",
"TOWN CAR C",
"TOWN CAR E",
"TOWN CAR S",
"ZEPHYR"
],
"LIVIN LITE": [
"BUMPER PULL 20'"
],
"LOAD": [
"TRAILER"
],
"LOAD TRAIL": [
"LOAD MAX"
],
"LOAD TRAILER": [
"FLAT BED"
],
"LONE WOLF": [
"FLATBED"
],
"LOOK": [
"12 FT",
"TRAILER"
],
"LOTUS": [
"ELISE"
],
"LUCID": [
"AIR"
],
"LUCID MOTORS": [
"AIR GRAND",
"AIR PURE"
],
"LUFKIN INDUSTRIES": [
"LUFKIN INDUSTRIES"
],
"LUHRS": [
"OTHER"
],
"LUND": [
"BOAT",
"OTHER"
],
"MAC": [
"FLATBED",
"TRAILER"
],
"MACK": [
"600",
"600 CH600",
"600 CHU600",
"600 CXU600",
"600 MR600",
"700 GU700",
"ANTHEM",
"CX600",
"CXU613",
"MD",
"PINNACLE"
],
"MAHINDRA": [
"2540 SHUTTLE"
],
"MAJE": [
"BOAT"
],
"MALIBU": [
"BOAT",
"OTHER"
],
"MANAC": [
"943535",
"TRAILER"
],
"MANITOU": [
"OTHER"
],
"MASERATI": [
"COUPE GT",
"GHIBLI",
"GHIBLI LUX",
"GHIBLI S",
"GRANSPORT",
"GRANTURISMO",
"GRECALE",
"GRECALE MO",
"LEVANTE",
"QUATTROPOR",
"QUATTROPORTE",
"SPYDER"
],
"MASTER TOW": [
"18' TRAILER"
],
"MASTERCRAFT": [
"BOAT/TRAIL",
"CRAFT BOAT",
"OTHER"
],
"MAVERICK": [
"PATHFINDER"
],
"MAXUM": [
"BOAT"
],
"MAXW": [
"UTILITY TL"
],
"MAXX-D": [
"ROLL OFF TRAILER"
],
"MAYBACH": [
"MAYBACH 57",
"MAYBACH 62"
],
"MAZDA": [
"2",
"3",
"3 GRAND TO",
"3 HATCHBAC",
"3 I",
"3 PREFERRE",
"3 PREMIUM",
"3 S",
"3 SE",
"3 SELECT",
"3 SELECT S",
"3 SPORT",
"3 TOURING",
"5",
"5 GRAND TO",
"5 SPORT",
"5 TOURING",
"6 GRAND TO",
"6 I",
"6 S",
"6 SPORT",
"6 TOURING",
"626",
"B2000",
"B2300",
"B2300 CAB",
"B2500",
"B3000",
"CX-3",
"CX-3 GRAND",
"CX-3 SPORT",
"CX-3 TOURI",
"CX-30",
"CX-30 CARB",
"CX-30 PREF",
"CX-30 PREM",
"CX-30 SELE",
"CX-5",
"CX-5 CARBO",
"CX-5 GRAND",
"CX-5 GT",
"CX-5 PREFE",
"CX-5 PREMI",
"CX-5 SELEC",
"CX-5 SIGNA",
"CX-5 SPORT",
"CX-5 TOURI",
"CX-50",
"CX-50 BASE",
"CX-50 PREF",
"CX-50 PREM",
"CX-50 SELE",
"CX-7",
"CX-70 PHEV",
"CX-70 PREF",
"CX-70 PREM",
"CX-9",
"CX-9 GRAND",
"CX-9 SPORT",
"CX-9 TOURI",
"CX-90",
"CX-90 PHEV",
"CX-90 PREF",
"CX-90 PREM",
"MAZDA2",
"MAZDA2 SPO",
"MAZDA3",
"MAZDA3 HATCHBACK",
"MAZDA5",
"MAZDA6",
"MAZDASPEED3",
"MILLENIA",
"MPV",
"MX-5",
"MX-5 MIATA",
"MX-5 MIATA RF",
"PROTEGE",
"PROTEGE DX",
"PROTEGE PR",
"PROTEGE SP",
"PROTEGE5",
"RX-8",
"SPEED 3",
"TRIBUTE",
"TRIBUTE I",
"TRIBUTE LX",
"UK"
],
"MB SPORTS": [
"OTHER"
],
"MC": [
"TRAILER"
],
"MCLAREN": [
"720S",
"765LT"
],
"MCLAREN AUTOMOTIVE": [
"600LT",
"650S SPIDE",
"720S",
"GT"
],
"MEB": [
"TRAILER"
],
"MERC": [
"PARLANE"
],
"MERCEDES": [
"SPRINTER 4500 MOTOR HOME"
],
"MERCEDES-BENZ": [
"190",
"190 E 2.3",
"190D",
"220",
"250",
"2500 SPRIN",
"300",
"300 SEL4.5",
"300 TDT",
"300-CLASS",
"380",
"380 SL",
"400 SEL",
"420 SEL",
"450",
"450 SL",
"500",
"560",
"560 SEC",
"560 SEL",
"A 220",
"A 220 4MAT",
"AMG A 35",
"AMG C 43",
"AMG C 63",
"AMG CLA 35",
"AMG E 53 E",
"AMG E 63",
"AMG EQE SUV",
"AMG G 63",
"AMG GLA 45",
"AMG GLC 43",
"AMG GLE 43 COUPE",
"AMG GLE 53",
"AMG GLE 53 COUPE",
"AMG GLS 63",
"AMG GT",
"AMG GT 43 4-DOOR COUPE",
"AMG GT 53 4-DOOR COUPE",
"AMG GT 63",
"B 250E",
"B ELECTRIC",
"B200",
"C",
"C 230",
"C 230K SPO",
"C 240",
"C 240 4MAT",
"C 250",
"C 280",
"C 280 4MAT",
"C 300",
"C 300 4MAT",
"C 320",
"C 350",
"C 350 4MAT",
"C 350E",
"C 400 4MAT",
"C 43 4MATI",
"C 43 AMG",
"C 450 4MAT",
"C 450 AMG",
"C 63 AMG",
"C 63 AMG-S",
"C-CLASS",
"C250",
"CL 500",
"CL 550",
"CL 600",
"CL 63 AMG",
"CLA 250",
"CLA 250 4M",
"CLA 250 COUPE",
"CLE 300 4M",
"CLK",
"CLK 320",
"CLK 320C",
"CLK 350",
"CLK 500",
"CLK 55 AMG",
"CLK 550",
"CLS 400",
"CLS 450",
"CLS 450 4M",
"CLS 450 COUPE",
"CLS 500",
"CLS 500C",
"CLS 550",
"CLS 550 4M",
"CLS 63 AMG",
"CLS-CLASS",
"E",
"E 250 BLUE",
"E 250 BLUETEC",
"E 300",
"E 300 4MAT",
"E 320",
"E 320 4MAT",
"E 320 BLUETEC",
"E 320 CDI",
"E 350",
"E 350 4MAT",
"E 350 BLUE",
"E 350 BLUETEC",
"E 400",
"E 400 4MAT",
"E 420",
"E 430",
"E 450",
"E 450 4MAT",
"E 500",
"E 55 AMG",
"E 550",
"E 550 4MAT",
"E 63 AMG",
"E 63 AMG-S",
"E AMG 53",
"E AMG 53 4",
"E350",
"EQB 250 SUV",
"EQB 250+",
"EQB 300 4M",
"EQB 350 4M",
"EQE",
"EQE 350",
"EQE 350 SUV",
"EQE 350+",
"EQE 350+ SUV",
"EQE SEDAN",
"EQE SUV 35",
"EQS 450 SUV",
"EQS 450+",
"EQS SEDAN",
"EQS SUV 45",
"EQS SUV 58",
"G 500",
"G 550",
"G 63 AMG",
"GL",
"GL 320 CDI",
"GL 350 BLU",
"GL 350 BLUETEC",
"GL 450",
"GL 450 4MA",
"GL 550",
"GL 550 4MA",
"GL 63 AMG",
"GLA 250",
"GLA 250 4M",
"GLA 35 AMG",
"GLA 45 AMG",
"GLB 250",
"GLB 250 4M",
"GLC",
"GLC 300",
"GLC 300 4M",
"GLC 300 COUPE",
"GLC 43 4MA",
"GLC COUPE",
"GLE",
"GLE 300D",
"GLE 300D 4",
"GLE 350",
"GLE 350 4M",
"GLE 350D 4",
"GLE 400 4M",
"GLE 450",
"GLE 450 4M",
"GLE 450 AMG COUPE",
"GLE 63 AMG",
"GLE AMG 53",
"GLE COUPE",
"GLK 250 BL",
"GLK 250 BLUETEC",
"GLK 350",
"GLK 350 4M",
"GLS",
"GLS 450",
"GLS 450 4M",
"GLS 550",
"GLS 550 4M",
"GLS 580 4M",
"GLS 63 AMG",
"M-CLASS",
"METRIS",
"ML 320",
"ML 320 CDI",
"ML 350",
"ML 350 4MA",
"ML 350 BLU",
"ML 350 BLUETEC",
"ML 400 4MA",
"ML 430",
"ML 500",
"ML 550",
"ML 550 4MA",
"ML 63 AMG",
"ML320",
"R 320 CDI",
"R 350",
"R 350 4MAT",
"R 500",
"S",
"S 320",
"S 350",
"S 400 HYBRID",
"S 430",
"S 450",
"S 450 4MAT",
"S 500",
"S 500 4MAT",
"S 55 AMG",
"S 550",
"S 550 4MAT",
"S 550 PLUG-IN HYBRID",
"S 550E",
"S 560",
"S 560 4MAT",
"S 580",
"S 580 4MAT",
"S 580E",
"S 600",
"S 63 AMG",
"S MERCEDES",
"S-CLASS",
"SL 450",
"SL 500",
"SL 500R",
"SL 55 AMG",
"SL 550",
"SL 600",
"SL 63 AMG",
"SLC 300",
"SLC 43 AMG",
"SLK 230",
"SLK 230 KO",
"SLK 250",
"SLK 280",
"SLK 300",
"SLK 320",
"SLK 350",
"SPRINTER",
"SPRINTER 1",
"SPRINTER 2",
"SPRINTER 2500",
"SPRINTER 3",
"SPRINTER 3500",
"SPRINTER 3500XD",
"SPRINTER CARGO VAN",
"SPRINTER VAN 2500",
"UNKNOWN"
],
"MERCURY": [
"CAPRI",
"COUGAR",
"COUGAR XR7",
"ENGINE",
"GRAND MARQ",
"GRAND MARQUIS",
"MARINER",
"MARINER HE",
"MARINER HYBRID",
"MARINER PR",
"MILAN",
"MILAN PREM",
"MOTORBOAT",
"MOUNTAINEE",
"MOUNTAINEER",
"MYSTIQUE",
"SABLE",
"SABLE LS P",
"SABLE PREM",
"TRACER",
"VILLAGER"
],
"MERHOW": [
"UNKNOWN"
],
"MERIDIAN YACHTS": [
"MERIDIAN 3"
],
"MEVH": [
"GOLF CART"
],
"MG": [
"HARD TOP",
"MGB",
"MIDGET"
],
"MGB": [
"CONVERTABL"
],
"MINI": [
"CLUBMAN",
"CONVERTIBLE",
"COOPER",
"COOPER CLU",
"COOPER CLUBMAN",
"COOPER COU",
"COOPER COUNTRYMAN",
"COOPER PAC",
"COOPER ROA",
"COOPER S",
"COOPER S C",
"COOPER S CLUBMAN",
"COOPER S COUNTRYMAN",
"COUNTRYMAN",
"COUPE",
"HARDTOP",
"PACEMAN",
"SE HARDTOP"
],
"MITSUBISHI": [
"3000 GT",
"3000 GT SL",
"3000 GT SP",
"DIAMANTE",
"ECLIPSE",
"ECLIPSE CR",
"ECLIPSE CROSS",
"ECLIPSE GS",
"ECLIPSE GT",
"ECLIPSE SP",
"ECLIPSE SPYDER",
"ENDEAVOR",
"FE FEC72S",
"FE FEC9TS",
"FK 62F",
"GALANT",
"GALANT ES",
"GALANT FE",
"I MIEV ES",
"I-MIEV",
"LANCER",
"LANCER DE",
"LANCER ES",
"LANCER ES/",
"LANCER EVO",
"LANCER EVOLUTION",
"LANCER GT",
"LANCER GTS",
"LANCER LS",
"LANCER SPORTBACK",
"MIGHTY MAX / S",
"MIRAGE",
"MIRAGE DE",
"MIRAGE ES",
"MIRAGE G4",
"MIRAGE GT",
"MIRAGE SE",
"MONTERO",
"MONTERO SP",
"MONTERO SPORT",
"MPV",
"OUTLANDER",
"OUTLANDER PHEV",
"OUTLANDER SPORT",
"RAIDER",
"RVR ES",
"RVR GT",
"RVR SE"
],
"MITSUBISHI FUSO TRUCK OF": [
"FE FECZTS"
],
"MONARK": [
"BOAT"
],
"MONTANA": [
"MOUNTAINEE",
"TRAILER"
],
"MONTEREY": [
"OTHER"
],
"MOPED": [
"MOPED"
],
"NAUTICA": [
"BOAT"
],
"NEO": [
"7X14 ENCLOSED TRAILE"
],
"NEVILLE": [
"TRAILER"
],
"NEW HOLLAND": [
"OTHER"
],
"NEW VISION": [
"OTHER"
],
"NEWM": [
"MOTOR HOME"
],
"NEWMAR": [
"KOUNTYSTAR"
],
"NEXU": [
"MOTORHOME"
],
"NISSAN": [
"200SX SE-R",
"300ZX",
"300ZX TURB",
"350Z",
"350Z COUPE",
"350Z ROADS",
"370Z",
"370Z BASE",
"4X2 TRUCK",
"720",
"ALITMA",
"ALTIMA",
"ALTIMA 2.5",
"ALTIMA 3.5",
"ALTIMA BAS",
"ALTIMA HYB",
"ALTIMA HYBRID",
"ALTIMA PLA",
"ALTIMA S",
"ALTIMA SL",
"ALTIMA SR",
"ALTIMA SV",
"ALTIMA XE",
"ARIYA",
"ARIYA EVOL",
"ARMADA",
"ARMADA PLA",
"ARMADA S",
"ARMADA SE",
"ARMADA SL",
"ARMADA SV",
"ARYIA",
"CUBE",
"CUBE BASE",
"CUBE S",
"D21 SHORT",
"FORKLIFT",
"FRONTIER",
"FRONTIER 2WD",
"FRONTIER C",
"FRONTIER K",
"FRONTIER S",
"FRONTIER X",
"GT-R",
"GT-R PREMI",
"JUKE",
"JUKE S",
"KICKS",
"KICKS S",
"KICKS SR",
"KICKS SV",
"LEAF",
"LEAF S",
"LEAF S PLU",
"LEAF SL PL",
"LEAF SV",
"LEAF SV PL",
"MAXIMA",
"MAXIMA 3.5",
"MAXIMA GLE",
"MAXIMA PLA",
"MAXIMA S",
"MAXIMA SE",
"MAXIMA SL",
"MAXIMA SR",
"MAXIMA SV",
"MICRA",
"MURANO",
"MURANO CRO",
"MURANO PLA",
"MURANO S",
"MURANO SL",
"MURANO SV",
"NV 1500",
"NV 1500 S",
"NV 2500",
"NV 2500 S",
"NV CARGO NV1500",
"NV CARGO NV2500 HD",
"NV CARGO NV3500 HD",
"NV PASSENGER NV3500 HD",
"NV200",
"NV200 CARGO",
"NV200 2.5S",
"NV200 COMPACT CARGO",
"NV2500",
"PATHFINDER",
"PATHFINDER ARMADA",
"PATHFINDER HYBRID",
"PRESIDENTE",
"QASHQAI",
"QASHQAI S",
"QUEST",
"QUEST S",
"QUEST SE",
"ROGUE",
"ROGUE HYBRID",
"ROGUE PLAT",
"ROGUE S",
"ROGUE S SV",
"ROGUE SELE",
"ROGUE SELECT",
"ROGUE SL",
"ROGUE SPOR",
"ROGUE SPORT",
"ROGUE SPT",
"ROGUE SV",
"ROGUE SV H",
"ROUGE",
"SENTRA",
"SENTRA 1.8",
"SENTRA 2.0",
"SENTRA BAS",
"SENTRA GXE",
"SENTRA S",
"SENTRA S/S",
"SENTRA SE-",
"SENTRA SR",
"SENTRA SV",
"SKYLINE",
"SKYLINEGTR",
"TITAN",
"TITAN PRO-",
"TITAN S",
"TITAN SV",
"TITAN XD",
"TITAN XD S",
"TITAN XE",
"TRUCK",
"TRUCK BASE",
"TRUCK KING",
"VERSA",
"VERSA 1.6",
"VERSA NOTE",
"VERSA S",
"VERSA SR",
"VERSA SV",
"X-TRAIL",
"XTERRA",
"XTERRA OFF",
"XTERRA SE",
"XTERRA X",
"XTERRA XE",
"Z",
"Z PERFORMA"
],
"NITO": [
"BOAT W/TRL"
],
"NITRO": [
"BOAT&TRLR"
],
"NORSTAR": [
"IRONBULL"
],
"NORT": [
"BOAT/TRAIL"
],
"NORTH COUNTRY": [
"NASH",
"TRAILER"
],
"OFFICE DESK-2": [
"OFFICE DESK"
],
"OLDSMOBILE": [
"88",
"ALERO",
"AURORA",
"BRAVADA",
"CUTLASS",
"CUTLASS CI",
"CUTLASS CIERA",
"CUTLASS CR",
"CUTLASS SUPREME",
"DELTA 88",
"INTRIGUE",
"INTRIGUE G",
"SILHOUETTE",
"STARFIRE"
],
"OPEN": [
"RANGE"
],
"OPEN RANGE": [
"3X3"
],
"OTH": [
"TRAILER"
],
"OTHE": [
"FOREST FLAGSTAFF"
],
"OTHER": [
"150CC SCOO",
"3811047",
"5TH WHEEL",
"BICYCLE",
"BIKE",
"BOAT",
"CAMPER",
"CAR LIFT",
"CLAMP PULL",
"EXCAVATOR",
"FRAME MACH",
"GENERATOR",
"JAYCO FLIG",
"MOTORCYCLE",
"NASH",
"OTHER",
"PUMP",
"RENEGADE",
"SCISSORLIF",
"SCOOTER",
"SKID STEER",
"STARCRAFT",
"STOUGHTON",
"TOY HAULER",
"TRAILER",
"UTILITY TR",
"YAMAHA"
],
"OTHER BOAT": [
"BOAT/TRLR",
"SAILBOAT"
],
"OTHER HEAVY EQUIPMENT": [
"CAMPER",
"CUSTOM",
"ROLLER",
"TRAILER"
],
"OTHER MOTORCYCLE": [
"MOPED"
],
"OTHER RV": [
"NORTH TRL",
"SALEM",
"SPRINGDALE",
"TRAVEL TRA"
],
"OTHR": [
"LIFT"
],
"OUTBACK": [
"TRAVEL TRAILER",
"TRVTR"
],
"P AND T": [
"TRAILER"
],
"PACE": [
"TRAILER",
"VISION"
],
"PACE AMERICAN TRAILE": [
"JT716TA2"
],
"PALOMINO": [
"CAMPER",
"PALOMINI",
"SOLAIRE"
],
"PARTS ONLY FOR DODGE": [
"GRAND CARAVAN"
],
"PETERBILT": [
"320",
"325",
"330",
"335",
"348",
"357",
"365",
"367",
"378",
"379",
"386",
"387",
"388",
"389",
"520",
"536",
"548",
"567",
"579"
],
"PGO": [
"MC"
],
"PIAGGIO": [
"150CC",
"FLY",
"MP3 500"
],
"PIERCE MFG. INC.": [
"PIERCE"
],
"PION": [
"TRAILER"
],
"PIONEER": [
"OTHER"
],
"PJ": [
"T6202",
"TRAILER"
],
"PJ TRAILERS": [
"UNKNOWN"
],
"PLEA": [
"EXCEL"
],
"PLYM": [
"BARRACUDA"
],
"PLYMOUTH": [
"BELVEDERE",
"CRANBROOK",
"DELUX",
"GRAND VOYAGER",
"NEON",
"ROAD RUNNER",
"VALIANT",
"VOYAGER"
],
"POLA": [
"650 INDY ADVENTURE 1",
"850 RMK KHAOS MATRYX",
"PATRIOT 9R RMK KHAOS",
"PRO RMK",
"RMK",
"SNOWMOBILE",
"TITAN"
],
"POLARIS": [
"600 SWITCHBACK",
"800 RMK ASSAULT 155",
"900 RMK",
"GENERAL 4",
"INDY 600 CLASSIC",
"RANGER",
"RANGER 100",
"RANGER 500",
"RANGER 800",
"RANGER 900",
"RANGER CRE",
"RANGER XD",
"RANGER XP",
"RAZOR",
"RUSH",
"RZR",
"RZR 1000 X",
"RZR 4 900",
"RZR 800 S",
"RZR PRO R",
"RZR PRO XP",
"RZR S 1000",
"RZR TRAIL",
"RZR TURBO",
"RZR XP 100",
"RZR XP 4 T",
"RZR XP TUR",
"SCRAMBLER",
"SLINGSHOT",
"SPORTSMAN"
],
"POLARKRAFT/GODFREY MARINE": [
"BOAT"
],
"POLESTAR": [
"2"
],
"PONTIAC": [
"2 DOOR COUPE",
"AZTEK",
"BONNEVILLE",
"CATALINA",
"FIERO SE",
"FIREBIRD",
"FIREBIRD TRANS AM",
"G3 WAVE",
"G5",
"G5 GT",
"G6",
"G6 BASE",
"G6 GT",
"G6 NEW",
"G6 VALUE L",
"G8",
"GRAND AM",
"GRAND AM G",
"GRAND AM S",
"GRAND PRIX",
"GRANDPRIX",
"GTO",
"LEMANS CONVERTIBLE",
"MONTANA",
"MONTANA LU",
"MONTANA SV",
"SOLSTICE",
"SOLSTICE G",
"SUNFIRE",
"TORRENT",
"TORRENT GX",
"TRANS AM",
"TRANS SPORT",
"TRANS-AM",
"VIBE"
],
"PONTOON": [
"MIRAGE 820"
],
"PORSCHE": [
"718 CAYMAN",
"718 SPYDER",
"911",
"911 CARRER",
"911 GT3",
"911 TURBO",
"914",
"924",
"928",
"944",
"BOXSTER",
"BOXSTER S",
"CAYENNE",
"CAYENNE CO",
"CAYENNE COUPE",
"CAYENNE E-",
"CAYENNE E-HYBRID",
"CAYENNE GT",
"CAYENNE S",
"CAYENNE SE",
"CAYENNE TU",
"CAYMAN",
"CAYMAN S",
"MACAN",
"MACAN BASE",
"MACAN GTS",
"MACAN S",
"MACAN TURB",
"PANAMERA",
"PANAMERA 2",
"PANAMERA 4",
"PANAMERA B",
"PANAMERA E-HYBRID",
"PANAMERA S",
"PANAMERA T",
"TAYCAN",
"TAYCAN 4S",
"TAYCAN CRO"
],
"PRECISION": [
"UNKNOWN"
],
"PREMIER": [
"TRAILER"
],
"PREMIER TRAILER MFG": [
"612 3K LE"
],
"PREVOST": [
"BUS"
],
"PRIME TIME": [
"AVENGER",
"OTHER"
],
"PRIMETIME": [
"294 RLT"
],
"PRO-LINE": [
"BOAT"
],
"PROCRAFT": [
"BOAT ONLY"
],
"PROWLER": [
"18K",
"OTHER",
"PROWLER",
"TRAILER"
],
"PUMA": [
"PALOMINO M",
"TRAILER"
],
"QUALICARGO": [
"UNKNOWN"
],
"R AND M": [
"TRAILER"
],
"RAIL": [
"SS4600"
],
"RAM": [
"1500",
"1500 BIG H",
"1500 CLASS",
"1500 CLASSIC",
"1500 LARAM",
"1500 LIMIT",
"1500 LONGH",
"1500 REBEL",
"1500 SLT",
"1500 SPORT",
"1500 ST",
"1500 TRADE",
"1500 TRX",
"2500",
"2500 BIG H",
"2500 LARAM",
"2500 LIMIT",
"2500 LONGH",
"2500 POWER",
"2500 SLT",
"2500 ST",
"2500 TRADE",
"3500",
"3500 BIG H",
"3500 CHASSIS",
"3500 LARAM",
"3500 LONGH",
"3500 SLT",
"3500 ST",
"3500 TRADE",
"3500/2018 KAUF TRAILER",
"4500",
"4500 CHASSIS",
"5500",
"5500 CHASSIS",
"CARGO",
"DAKOTA",
"PROMASTER",
"PROMASTER 1500",
"PROMASTER 2500",
"PROMASTER 3500",
"PROMASTER CITY",
"RAM 1500",
"RAM 2500",
"RAM 3500",
"RAM 3500 HD CHASSIS",
"RAM 5500 HD CHASSIS",
"RAM PROMST",
"TRADESMAN"
],
"RANC": [
"TRAILER"
],
"RANGER": [
"OTHER"
],
"RAVE": [
"TRAILER"
],
"RAYMOND": [
"FORKLIFT"
],
"REAP": [
"756"
],
"RED": [
"TOW"
],
"REDWOOD": [
"OTHER"
],
"REGAL": [
"OTHER"
],
"REINELL": [
"BOAT W/TRL",
"OTHER"
],
"REITNOUER": [
"FLAT BED",
"FLATBED",
"TRAILER"
],
"REM": [
"TRAILER"
],
"REO": [
"WAGON"
],
"RHINO": [
"4150"
],
"RINKER": [
"BOAT",
"OTHER"
],
"RIVIAN": [
"R1S ADVENT",
"R1S LAUNCH",
"R1T"
],
"RIVIERA/EDMONDS YACHT SALES": [
"YACHT-46SY"
],
"ROAD": [
"TRAILER"
],
"ROAD BOSS": [
"UNKNOWN"
],
"ROADMASTER RAIL": [
"AE-STACKED",
"RAISED RAI",
"STRAIGHT R"
],
"ROBALO": [
"ROBALO"
],
"ROCK": [
"CARGO TRLR",
"PREMI2716G"
],
"ROCKWOOD": [
"MINI LITE",
"OTHER",
"SIGNATURE"
],
"ROKW": [
"CT"
],
"ROLLS-ROYCE": [
"CORNICHE I",
"CULLINAN",
"DAWN",
"WRAITH"
],
"ROYAL EV": [
"CROWN 6"
],
"RQTU": [
"BOAT TRAIL"
],
"RV": [
"COMPANY",
"SUNRAY SPO"
],
"S2YACHTS": [
"279SC"
],
"SAAB": [
"9-2X",
"9-3",
"9-3 2.0T",
"9-3 AERO",
"9-3 SE",
"9-5",
"9-7X",
"900",
"9000 CSE T"
],
"SAILFISH": [
"BOAT"
],
"SAKAI": [
"GW750-2"
],
"SALEM": [
"HEMISPHERE",
"OTHER",
"SA",
"TRAVEL TRAILER"
],
"SAND": [
"RAIL"
],
"SATURN": [
"ASTRA",
"ASTRA XE",
"AURA",
"AURA XE",
"AURA XR",
"ION",
"ION LEVEL",
"L-SERIES",
"L100",
"L200",
"OUTLOOK",
"OUTLOOK XE",
"RELAY",
"S-SERIES",
"SC1",
"SC2",
"SKY",
"SKY REDLIN",
"SL",
"SL1",
"SL2",
"VUE",
"VUE XE",
"VUE XR"
],
"SCION": [
"FR-S",
"IA",
"IM",
"IQ",
"SCION XB",
"TC",
"XA",
"XB",
"XD"
],
"SEA": [
"BOAT",
"RAY SUNDEC"
],
"SEA PRO": [
"OTHER"
],
"SEA RAY": [
"BOAT",
"OTHER",
"SUNDANCER"
],
"SEADOO": [
"BOMBARDIER",
"GTI SE",
"GTX",
"JET SKI",
"JETSKI",
"OTHER",
"RTX",
"RXT 300",
"RXT-X 300",
"SEADOO"
],
"SEAFOX": [
"OTHER",
"SEAFOX"
],
"SGAC": [
"TRAILER"
],
"SHAD": [
"TRAILER"
],
"SHAMROCK": [
"OTHER"
],
"SHASTA": [
"FLYTE"
],
"SHERMEILLY": [
"UNKNOWN"
],
"SHORE LANDER": [
"BOAT TRAILER 17FT TR"
],
"SILVERLINE": [
"BOAT"
],
"SILVERTON": [
"OTHER"
],
"SKEETER": [
"OTHER"
],
"SKI DOO": [
"849 CC",
"BACKCOUNTR",
"EXPEDITION",
"GRAND TOUR",
"MXZXRS 800",
"RENEGADE",
"SKANDIC",
"SKANDIC SW",
"SNOWBMOBIL",
"SNOWMOBILE",
"SUMMIT SP",
"SUMMIT X 8",
"TUNDRA"
],
"SKIDOO": [
"SUMMIT X 146"
],
"SKYLINE": [
"NOMAD 33SC TRAVEL TRAILER 34FT 1 SLD"
],
"SLABACH": [
"UNKNOWN"
],
"SMART": [
"FORTWO",
"FORTWO ELECTRIC DRIVE",
"FORTWO PAS",
"FORTWO PUR"
],
"SNOW": [
"TRAILER"
],
"SNOWBEAR": [
"SNOWBEAR TRAILER"
],
"SPARTAN CARGO TRAILERS LL": [
"CARGO TRAILER"
],
"SPARTAN MOTORS": [
"MOTORHOME"
],
"SPCN": [
"SOFT TAIL"
],
"SPCNS": [
"TRAILER"
],
"SPORTSMAN": [
"OTHER"
],
"SPRINGDALE": [
"TRAVEL TRLR"
],
"SPRINTER": [
"SPRINTER"
],
"SPRN": [
"CAMPER"
],
"SPTM": [
"SPORTSMEN"
],
"SSR": [
"LAZER 6"
],
"STAR": [
"CRAFT CAMPER"
],
"STARCRAFT": [
"AUTUMN RID",
"EXPRESS CUTAWAY",
"MOSSY OAK",
"OTHER",
"PONTOON",
"TRAILER",
"TRAVEL TRLR"
],
"STEALTH": [
"CARGO",
"FUSION TRAILER STEAL"
],
"STERLING": [
"STERLING"
],
"STERLING TRUCK": [
"ACTERRA",
"LT 9513",
"MITSUBISHI"
],
"STINGRAY": [
"BOAT",
"OTHER"
],
"STOH": [
"TL"
],
"STOUGHTON": [
"TRAILER"
],
"STOUGHTON TRAILERS INC": [
"STOUGHTON TRAILER",
"STOUGHTON TRAILERS INC"
],
"STRICK": [
"TRAILER"
],
"STRYKER": [
"TRAILER"
],
"STUDEBAKER": [
"CHAMPION"
],
"SUBARU": [
"ASCENT",
"ASCENT LIM",
"ASCENT ONY",
"ASCENT PRE",
"ASCENT TOU",
"B9 TRIBECA",
"BAJA",
"BRZ",
"BRZ 2.0 LI",
"BRZ 2.0 PR",
"BRZ LIMITE",
"CROSSTREK",
"CROSSTREK HYBRID",
"FORESTER",
"FORESTER 2",
"FORESTER C",
"FORESTER L",
"FORESTER P",
"FORESTER S",
"FORESTER T",
"FORESTER W",
"FORESTER X",
"IMPREZA",
"IMPREZA 2.",
"IMPREZA LI",
"IMPREZA OU",
"IMPREZA OUTBACK SPORT",
"IMPREZA PR",
"IMPREZA SP",
"IMPREZA TS",
"IMPREZA WR",
"IMPREZA WRX",
"IMPREZA WRX STI",
"LEGACY",
"LEGACY 2.5",
"LEGACY 3.6",
"LEGACY 30T",
"LEGACY BRI",
"LEGACY GT",
"LEGACY L",
"LEGACY L S",
"LEGACY LIM",
"LEGACY OUT",
"LEGACY PRE",
"LEGACY SEDAN (NATL)",
"LEGACY SPO",
"LEGACY TOU",
"OUTBACK",
"OUTBACK 2.",
"OUTBACK 3.",
"OUTBACK LI",
"OUTBACK ON",
"OUTBACK OU",
"OUTBACK PR",
"OUTBACK TO",
"OUTBACK WI",
"SAMBAR",
"SOLTERRA P",
"SVX",
"TRIBECA",
"WRX",
"WRX LIMITE",
"WRX PREMIU",
"WRX STI",
"WRX STI LI",
"XV CROSSTR",
"XV CROSSTREK",
"XV CROSSTREK HYBRID"
],
"SUGAR SAND": [
"OTHER"
],
"SUMR": [
"XT"
],
"SUN": [
"MOTORHOME",
"UT"
],
"SUN TRACKER": [
"BOAT W/TRL"
],
"SUN-LITE": [
"SPORT"
],
"SUNC": [
"TRAILER"
],
"SUND": [
"TRAILER"
],
"SUNLINE": [
"SUNLINE",
"TRAVEL TRL"
],
"SUNSET": [
"WEEKENDER"
],
"SUNTRACKER": [
"BASS BUGGY"
],
"SUPERIOR TRAILER WORKS": [
"TRAILER"
],
"SUPERMACH": [
"MT150 SCOOTER"
],
"SUZUKI": [
"750 GS",
"AERIO SX",
"ALL OTHER",
"ALT125",
"AN400",
"AN400 K3",
"BOULEVARD",
"C90",
"DR200",
"DR650 SE",
"ESTEEM",
"GRAND VITA",
"GRAND VITARA",
"GRAND VITARA XL-7",
"GS450",
"GS850",
"GS850G",
"GSF1200",
"GSX-R1000",
"GSX-R600",
"GSX-R750",
"GSX-S1000F",
"GSX1300",
"GSX1300 R",
"GSX600",
"GSX650 F",
"GZ250",
"HAYABUSA",
"JIMNY",
"KIZASHI",
"KIZASHI SE",
"KIZASHI SP",
"LS650",
"LT-A500 XP",
"LT-A700 XK",
"LT-A750 X",
"LT-A750 XP",
"LTF300 F",
"MOTOR",
"SV650",
"SX4",
"SX4 BASE",
"SX4 LE",
"SX4 SPORT",
"SX4 TECHNO",
"VERONA",
"VL1500",
"VS1400 GLP",
"VS700",
"VZR1800",
"XL-7",
"XL7"
],
"SWEETWATER": [
"BOAT"
],
"SYM": [
"CITYCOM",
"FIDDLE II",
"HD"
],
"TAHOE": [
"196"
],
"TAILER": [
"TRAILER"
],
"TAIZHOU": [
"MC"
],
"TAIZHOUZNG": [
"ZN50QT-ISLANDER"
],
"TAKEUCHI": [
"TB240",
"TL12R2",
"TL8"
],
"TALBERT": [
"LOWBOY"
],
"TAO": [
"ATM"
],
"TARGET TRAILER": [
"OTHER"
],
"TEREX / TEREX ADVANCE": [
"ADVANCE MI"
],
"TERRY": [
"OTHER"
],
"TERY": [
"RESORT"
],
"TESLA": [
"3",
"CYBERTRUCK",
"MODEL 2 4D",
"MODEL 3",
"MODEL S",
"MODEL S 70",
"MODEL S 85",
"MODEL S P8",
"MODEL X",
"MODEL Y",
"ROADSTER",
"TRAILER"
],
"TETON": [
"OTHER"
],
"TEXAS PRIDE TRAILERS": [
"TRAILER"
],
"TEXASPRIDE": [
"4-CAR TRL",
"GOOSENECK"
],
"TEXTRON": [
"GOLF CART"
],
"THO": [
"T-47"
],
"THOR": [
"E-450 STRIPPED",
"FOUR WINDS",
"MOTORHOME",
"TRA/REM"
],
"TIDEWATER": [
"BOAT"
],
"TIGE": [
"MARINE/TRL"
],
"TIMP": [
"HOPPER"
],
"TIMPTE": [
"10' 10\"",
"HOPPER",
"SEMITAILER",
"UNKNOWN"
],
"TIOGA": [
"ECONOLINE"
],
"TITAN MARINE": [
"HAVOC"
],
"TITANIUM": [
"TRAILER"
],
"TJCW": [
"TRAILER"
],
"TOP HAT": [
"TRAILER"
],
"TOR": [
"T53110"
],
"TORO FORKLIFT": [
"345"
],
"TOYOTA": [
"4 RUNNER",
"4RUNNER",
"4RUNNER LI",
"4RUNNER NI",
"4RUNNER SR",
"4RUNNER VE",
"4RUNNER VN",
"86",
"86 BASE",
"ALTEZZA",
"AVALON",
"AVALON BAS",
"AVALON HYB",
"AVALON HYBRID",
"AVALON LIM",
"AVALON NIG",
"AVALON TOU",
"AVALON XL",
"AVALON XLE",
"AVALON XLS",
"BZ4X",
"BZ4X XLE",
"C-HR",
"C-HR XLE",
"CAMRY",
"CAMRY 4D 2",
"CAMRY AUTO",
"CAMRY BASE",
"CAMRY CE",
"CAMRY CE/L",
"CAMRY DX",
"CAMRY HYBR",
"CAMRY HYBRID",
"CAMRY L",
"CAMRY LE",
"CAMRY NIGH",
"CAMRY SE",
"CAMRY SE N",
"CAMRY SE/X",
"CAMRY SOLA",
"CAMRY SOLARA",
"CAMRY TRD",
"CAMRY XLE",
"CAMRY XSE",
"CAMRY- SE",
"CELICA",
"CELICA BAS",
"CELICA GT",
"CELICA GT-",
"CH-R",
"COROLLA",
"COROLLA BA",
"COROLLA CE",
"COROLLA CR",
"COROLLA CROSS",
"COROLLA CROSS HYBRID",
"COROLLA DX",
"COROLLA EC",
"COROLLA IM",
"COROLLA L",
"COROLLA LE",
"COROLLA MA",
"COROLLA SE",
"COROLLA VE",
"COROLLA XR",
"COROLLA XS",
"CORROLA",
"CROWN",
"CROWN PLAT",
"CROWN SIGN",
"CROWN XLE",
"ECHO",
"FJ CRUISER",
"FORK LIFT",
"GR 86",
"GR 86 PREM",
"GR COROLLA",
"GR SUPRA",
"GR86",
"GRAND HIGH",
"GRAND HIGHLANDER",
"HIGHLANDER",
"HIGHLANDER HYBRID",
"HIGHLNDER",
"HILUX",
"HILUX SURF",
"LAND CRUIS",
"LAND CRUISER",
"MATRIX",
"MATRIX 4DR",
"MATRIX SW",
"MIRAI",
"MIRAI LE",
"MR2",
"MR2 SPYDER",
"OTHER",
"PICKUP",
"PICKUP 1/2",
"PICKUP RN3",
"PICKUP RN6",
"PICKUP XTR",
"PREVIA",
"PREVIA LE",
"PRIUS",
"PRIUS C",
"PRIUS L",
"PRIUS LE",
"PRIUS NIGH",
"PRIUS PLUG",
"PRIUS PLUG-IN",
"PRIUS PRIM",
"PRIUS PRIME",
"PRIUS V",
"RAV 4",
"RAV4",
"RAV4 ADVEN",
"RAV4 EV",
"RAV4 HV LE",
"RAV4 HV LI",
"RAV4 HV SE",
"RAV4 HV XL",
"RAV4 HYBRID",
"RAV4 LE",
"RAV4 LIMIT",
"RAV4 PRIME",
"RAV4 SE",
"RAV4 SPORT",
"RAV4 XLE",
"RAV4 XLE P",
"RAV4 XSE",
"SCION",
"SCION FR-S",
"SCION IA",
"SCION IM",
"SCION IQ",
"SCION TC",
"SCION XA",
"SCION XB",
"SCION XD",
"SEQUOIA",
"SEQUOIA LI",
"SEQUOIA PL",
"SEQUOIA SR",
"SIENNA",
"SIENNA CE",
"SIENNA LE",
"SIENNA LIM",
"SIENNA SE",
"SIENNA SPO",
"SIENNA XLE",
"SIENNA XSE",
"SUPRA",
"SUPRA BASE",
"T100",
"T100 XTRAC",
"TAC",
"TACOMA",
"TACOMA 4WD",
"TACOMA ACC",
"TACOMA DOU",
"TACOMA PRE",
"TACOMA XTR",
"TERCEL",
"TERCEL CE",
"TUNDRA",
"TUNDRA ACC",
"TUNDRA CRE",
"TUNDRA DOU",
"TUNDRA HYBRID",
"VENZA",
"VENZA LE",
"YARIS",
"YARIS IA",
"YARIS L",
"YARIS LE"
],
"TPHT": [
"TRAILER"
],
"TRACKER": [
"BOAT",
"BOAT ONLY",
"OFFROAD 600 LE",
"OTHER",
"TARGA V-18",
"UNKNOWN"
],
"TRACKER MARINE": [
"TRACKER MARINE SUNTR"
],
"TRAIL KING": [
"53'TRAILER",
"EQUIPTRAIL",
"TRAILER"
],
"TRAILER": [
"16FOOT",
"CHOICE",
"FREE",
"SINGLE AXLE ENCLOSED",
"TOY BANDIT",
"TRAILER",
"UNKNOWN"
],
"TRAILSTAR": [
"TRAILER"
],
"TRAILSWEST": [
"SIERRA 3H"
],
"TRAL": [
"FLATBED",
"TRAILER"
],
"TRAN": [
"TRAILER"
],
"TRAVEL": [
"TRAILER"
],
"TRAVEL SUPREME": [
"TRAVEL TRAILER"
],
"TRAVIS": [
"TRAILER"
],
"TRIM TRAILER": [
"TRAILER"
],
"TRIUMPH": [
"OTHER"
],
"TRIUMPH CAR": [
"DAYTNA675R",
"SPITFIRE",
"TR7"
],
"TRIUMPH MOTORCYCLE": [
"BONNEVILLE",
"STREET TRI",
"T100",
"THRUXTON",
"TIGER",
"TIGER 800"
],
"TROJAN": [
"BOAT"
],
"TROXUS": [
"TRAX"
],
"TRUE": [
"TRAILER"
],
"TUFF-BILT": [
"TRAILER"
],
"TWISTER": [
"33902"
],
"UNIFLITE": [
"BOAT"
],
"UNITED": [
"TRAILER"
],
"UNITED EXPRESS LINE INC": [
"UNKNOWN"
],
"UNK": [
"TOP HATE"
],
"UNKN": [
"TRAILER"
],
"UNKNOWN": [
"378",
"DURA-LINE GN STOCK 24'",
"FLATBED",
"MB2",
"PONTOON",
"S66",
"TRAILER",
"UNKNOWN"
],
"URWI": [
"TRAILER"
],
"UTILIMASTER": [
"STEP VAN"
],
"UTILITY": [
"48' DRYBOX",
"53 FT DRY",
"53 FT REEF",
"53' TRL",
"BOAT TRAILER",
"DRYVAN",
"REEFER",
"TRAILER",
"VS2DX",
"VS2RA"
],
"UTILITY TRAILER": [
"DRY VAN"
],
"VALO": [
"TRAILER"
],
"VAN HOOL": [
"ALL MODELS",
"T2100"
],
"VAND": [
"CARMEL"
],
"VANGUARD": [
"TRAILER"
],
"VANGUARD NATIONAL TRAILER": [
"53 FT. TRAILER"
],
"VANLEIGHRV": [
"VILANO"
],
"VESPA": [
"C161C",
"GTS/SEI GIORNI",
"LX",
"M198F",
"PRIMAVERA",
"PRIMAVERA/",
"SCOOTER"
],
"VIBE": [
"FOREST RV"
],
"VICTORY MOTORCYCLES": [
"KINGPIN",
"TOURING",
"VISION"
],
"VINFAST": [
"VF 8"
],
"VNTC": [
"TRAILER"
],
"VOLKSWAGEN": [
"ARTEON SE",
"ARTEON SEL",
"ATLAS",
"ATLAS CROS",
"ATLAS CROSS SPORT",
"ATLAS PEAK",
"ATLAS S",
"ATLAS SE",
"ATLAS SEL",
"BEETLE",
"BEETLE 1.8",
"BEETLE COUPE",
"BEETLE DUN",
"BEETLE S/S",
"BEETLE TUR",
"CABRIO",
"CC",
"CC BASE",
"CC LUXURY",
"CC SPORT",
"CC VR6 4MO",
"E-GOLF",
"E-GOLF SE",
"EOS",
"EOS LUX",
"EOS TURBO",
"EUROVAN",
"EUROVAN CL",
"GLI",
"GOLF",
"GOLF ALLTR",
"GOLF ALLTRACK",
"GOLF GLS",
"GOLF GTI",
"GOLF R",
"GOLF S",
"GOLF SPORT",
"GOLF SPORTWAGEN",
"GOLF TDI",
"GTI",
"GTI 20TH A",
"GTI AUTOBA",
"GTI S",
"GTI S/SE",
"GTI SE",
"ID.4",
"ID.4 PRO S",
"ID.4 S",
"JETTA",
"JETTA 2.5",
"JETTA 2.5L",
"JETTA BASE",
"JETTA COMF",
"JETTA GL",
"JETTA GLI",
"JETTA GLS",
"JETTA HYBR",
"JETTA HYBRID",
"JETTA S",
"JETTA SE",
"JETTA SEL",
"JETTA SPOR",
"JETTA SPORTWAGEN",
"JETTA TDI",
"JETTA VALU",
"JETTA WOLF",
"KARMANN GHIA",
"NEW BEETLE",
"NEW GTI",
"NEW GTI FA",
"PASSAT",
"PASSAT 2.0",
"PASSAT GLS",
"PASSAT GLX",
"PASSAT KOM",
"PASSAT R-L",
"PASSAT S",
"PASSAT SE",
"PASSAT SEL",
"PASSAT VR6",
"PASSAT WOL",
"RABBIT",
"ROUTAN",
"ROUTAN S",
"ROUTAN SE",
"SUPER BEETLE",
"TAOS",
"TAOS S",
"TAOS SE",
"TAOS SEL",
"TIGUAN",
"TIGUAN LIM",
"TIGUAN LIMITED",
"TIGUAN S",
"TIGUAN SE",
"TIGUAN SEL",
"TIGUAN SPO",
"TIGUAN WOL",
"TOUAREG",
"TOUAREG 2",
"TOUAREG 3.",
"TOUAREG 4.",
"TOUAREG HYBRID",
"TOUAREG V6",
"TOUAREG WO",
"VANAGON CA"
],
"VOLVO": [
"240",
"244",
"740",
"940",
"960",
"A25G",
"A30D",
"C30",
"C30 T5",
"C70",
"C70 T5",
"EC350E",
"EC380E",
"EC480EL",
"S40",
"S40 1.9T",
"S40 2.4I",
"S40 T5",
"S60",
"S60 2.5T",
"S60 CROSS",
"S60 DYNAMI",
"S60 INSCRI",
"S60 INSCRIPTION",
"S60 PLUS",
"S60 PREMIE",
"S60 R",
"S60 T5",
"S60 T5 MOM",
"S60 T5 R-D",
"S60 T6",
"S60 T6 MOM",
"S70",
"S70 GLT",
"S80",
"S80 3.2",
"S80 T6",
"S80 T6 TUR",
"S80 V8",
"S90",
"S90 T6 INS",
"V50",
"V50 T5",
"V60",
"V60 CROSS",
"V60 CROSS COUNTRY",
"V60 PLATIN",
"V60 PREMIE",
"V60 T5 PRE",
"V70",
"V70 3.2",
"V70 FWD",
"V70 T5 TUR",
"V90 CROSS",
"VN",
"VN VNL",
"VN VNM",
"VNL",
"VNR",
"XC40",
"XC40 CORE",
"XC40 RECHARGE PURE ELECTRIC",
"XC40 ULTIM",
"XC60",
"XC60 3.2",
"XC60 B5 IN",
"XC60 HYBRID",
"XC60 PLUS",
"XC60 RECHARGE PLUG-IN HYBRID",
"XC60 T5",
"XC60 T5 IN",
"XC60 T5 MO",
"XC60 T5 PL",
"XC60 T5 PR",
"XC60 T6",
"XC60 T6 DY",
"XC60 T6 IN",
"XC60 T6 MO",
"XC60 T6 PR",
"XC60 T6 R-",
"XC70",
"XC70 3.2",
"XC70 T5 PR",
"XC70 T6 PR",
"XC90",
"XC90 3.2",
"XC90 CORE",
"XC90 HYBRID",
"XC90 PLUS",
"XC90 R DES",
"XC90 RECHARGE PLUG-IN HYBRID",
"XC90 T5",
"XC90 T5 MO",
"XC90 T6",
"XC90 T6 IN",
"XC90 T6 MO",
"XC90 T6 R-",
"XC90 T8 R-",
"XC90 T8 RE",
"XC90 V8"
],
"WABASH": [
"28 TRAILER",
"53 FOOT",
"53 TRAILER",
"53FT DRY",
"53FTDRYVAN",
"DRY VAN",
"DURAPLAT",
"DVCVHPC",
"TRAILER",
"VAN"
],
"WABASH NATIONAL CORP": [
"WABASH NATIONAL CORP"
],
"WALL": [
"TRAILER"
],
"WANC": [
"TRAILER"
],
"WANCO": [
"SOLAR"
],
"WEEKEND WARRIOR": [
"3505",
"TOY HAULER 22FT"
],
"WELLS CARG": [
"OTHER"
],
"WELLS CARGO": [
"CARGO",
"TRAILER",
"WELLS CARGO"
],
"WELS": [
"TRAILER"
],
"WEST": [
"TRAILER"
],
"WESTERN": [
"CHIP TRLR"
],
"WESTERN STAR/AUTO CAR": [
"5700 XE",
"57X CHASSI",
"CONVENTION",
"TRAILER"
],
"WHITE": [
"BOAT"
],
"WIFR": [
"1086EAILER"
],
"WILDCAT": [
"27RKSS",
"28 TRAILER",
"GRAND LODG",
"TRAVEL TRAILER"
],
"WILDERNESS": [
"FOOD CONCESSION TRAI"
],
"WILDWOOD": [
"ALTA KTH",
"AURORA",
"CEDAR CREE",
"CHAPARRAL",
"CHEROKEE",
"COACHMEN",
"EAST WEST",
"FLAGSTAFF",
"FORESTER",
"GREY WOLF",
"HERITAGE",
"LACROSSE",
"OASIS",
"OTHER",
"PUMA",
"R-POD",
"ROCKW82TXR",
"ROCKWOOD",
"SABRE",
"SALEM",
"SALEM CRUI",
"SANDPIPER",
"SHOCKWAVE",
"SOLAIRE",
"SPARTAN",
"STEALTH",
"THUNDERBOL",
"TRAILER",
"TRAVEL TRLR",
"VIBE",
"WILDCAT",
"WILDWOOD",
"WILDWOOD X",
"X LITE",
"XLR",
"XLR THUNDE"
],
"WILLIES": [
"JEEPSTER"
],
"WILLY": [
"JEEPSTER"
],
"WILSON": [
"42 FT",
"LIVESTOCK",
"TRAILER"
],
"WINNEBAGO": [
"ADVENTURER",
"F550",
"MOTORHOME"
],
"WORKHORSE CUSTOM CHASSIS": [
"COMMERCIAL CHASSIS",
"FORWARD CONTROL CHASSIS",
"MOTORHOME",
"MOTORHOME CHASSIS"
],
"WQXS": [
"TR"
],
"XLR BY FOREST RIVER": [
"HYPERLITE TOY HAULER"
],
"YAMAHA": [
"1000R SS",
"2 JETSKIES",
"CZD300",
"ENGINE",
"EXR",
"FJR1300",
"FJR1300 A",
"FX CRUISER",
"FXHO",
"FZ07",
"FZ10",
"FZ6 R",
"JET SKI",
"MT07",
"MT09",
"OTHER",
"SIDEWINDER",
"TTR225",
"VIKING 700",
"VX JETSKI",
"VX-C",
"WAVERUNNER",
"WILDCAT",
"XJ600",
"XS650",
"XTZ690",
"XV1700",
"XV1900",
"XV1900 CU",
"XV750",
"XVS1100",
"XVS650",
"XVS950",
"XVS950 A",
"XVZ12",
"XVZ13",
"YFM450 FWA",
"YFM550 FWA",
"YFM660 FWA",
"YFM660 R",
"YFM700",
"YFZ450 R",
"YJ125",
"YW50",
"YXC700",
"YXE1000",
"YXF850 ES",
"YZ400F",
"YZ450 F",
"YZFR1",
"YZFR1M C",
"YZFR3",
"YZFR3 A",
"YZFR6",
"YZFR6 L",
"YZFR7"
],
"YELLOWSTONE": [
"7X14 TA"
],
"YNGF": [
"49CC SCOOTER"
],
"YONGFU": [
"YN250T-5",
"YN50QT"
],
"ZHILONG": [
"FLY WING BWS"
],
"ZHON": [
"MOPED"
],
"ZING": [
"TRAILER"
],
"ZNEN": [
"SCOOTER",
"ZN150T-G"
],
"ZONG": [
"MC"
],
"ZUMA": [
"YN50QT-4"
]
}
},
"types": [
{
"id": 1,
"name": "SEDAN",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 2,
"name": "AUTOMOBILE",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 3,
"name": "COUPE",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 4,
"name": "SUV",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 5,
"name": "PICKUP",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 6,
"name": "VAN",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 7,
"name": "RECREATIONAL VEHICLE (RV)",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 8,
"name": "ATV",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 9,
"name": "TRAILERS",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 10,
"name": "MEDIUM DUTY/BOX TRUCKS",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 11,
"name": "BOAT",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 12,
"name": "JET SKI",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 13,
"name": "MOTORCYCLE",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 14,
"name": "HEAVY DUTY TRUCKS",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 15,
"name": "INDUSTRIAL EQUIPMENT",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 16,
"name": "INSPECTION",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 17,
"name": "SNOWMOBILE",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 18,
"name": "DIRT BIKE",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 19,
"name": "CONSTRUCTION EQUIPMENT",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 20,
"name": "TRAILER",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 21,
"name": "TRAVEL TRAILER",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 22,
"name": "TRUCK",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 23,
"name": "MOTOR HOME",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 24,
"name": "FARM EQUIPMENT",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 25,
"name": "HEAVY EQUIPMENT",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 26,
"name": "OTHER",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 27,
"name": "BUS",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 28,
"name": "PERSONAL WATERCRAFT",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 29,
"name": "AGRICULTURE AND FARM EQUIPMENT",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
},
{
"id": 30,
"name": "EMERGENCY EQUIPMENT",
"created_at": "2025-08-03 12:54:22",
"updated_at": "2025-08-03 12:54:22"
}
],
"ranges": {
"price_usd": {
"min_default": 0,
"max_default": 100000,
"min": 0,
"max": 250000
},
"year": {
"from_default": 1900,
"to_default": 2026,
"min": 1900,
"max": 2027
},
"odometer_mi": {
"from_default": 0,
"to_default": 250000,
"min": 0,
"max": 500000
},
"engine_size_l": {
"from_default": 0,
"to_default": 10,
"min": 0,
"max": 20,
"step": 0.1000000000000000055511151231257827021181583404541015625
},
"engine_hp": {
"from_default": 0,
"to_default": 1000,
"min": 0,
"max": 3000
}
},
"color": {
"options": [
"Black",
"White",
"Silver",
"Gray",
"Blue",
"Red",
"Green",
"Yellow",
"Orange",
"Beige",
"Brown",
"Burgundy",
"Gold",
"Other"
]
},
"fuel_type": {
"options": [
"Gasoline",
"Diesel",
"Electric",
"Flexible",
"Hybrid",
"All others"
]
},
"transmission": {
"options": [
"Automatic",
"Manual",
"Unknown"
]
},
"drive_type": {
"options": [
{
"value": "FWD",
"label": "FWD",
"desc": "Front-wheel Drive"
},
{
"value": "RWD",
"label": "RWD",
"desc": "Rear-wheel Drive"
},
{
"value": "AWD",
"label": "AWD",
"desc": "All-wheel Drive"
}
]
},
"running_condition": {
"options": [
{
"value": "RUNS AND DRIVES",
"label": "Run and Drive"
},
{
"value": "ENGINE START PROGRAM",
"label": "Vehicle starts"
},
{
"value": "STATIONARY / NO INFORMATION",
"label": "Stationary / No information"
}
]
},
"damage": {
"options": [
"Mechanical",
"Hail",
"Fire",
"Water",
"Theft",
"Repossession",
"Rollover",
"Vandalized",
"Chemical"
]
},
"cylinders": {
"options": [
1,
2,
3,
4,
5,
6,
8,
10,
12
]
},
"engine_type": {
"options": [
{
"value": "I",
"label": "I - Inline"
},
{
"value": "V",
"label": "V - Engine"
},
{
"value": "W",
"label": "W - Engine"
},
{
"value": "B",
"label": "B - Boxer"
}
]
},
"has_key": {
"options": [
"With",
"No",
"All"
]
},
"auction_date": {
"from_param": "auction_date_from",
"to_param": "auction_date_to",
"format": "Y-m-d"
},
"today_only": {
"param": "today_only"
},
"sale_document_filters": {
"pending_param": "sale_document_pending",
"page_id_param": "sale_document_page_id",
"type_param": "sale_document_type"
},
"seller_type": {
"param": "seller_type",
"options": [
"insurance",
"non_insurance",
"dealer",
"finance"
]
},
"shipping": {
"has_shipping_price_param": "has_shipping_price",
"ports_param": "ports",
"ports": [
"Chicago",
"NY",
"Miami",
"Savannah",
"Norfolk",
"Houston",
"LA",
"Seattle"
]
},
"location_filters": {
"state": {
"param": "loc_state",
"options": [
"AB",
"AK",
"AL",
"AR",
"AZ",
"CA",
"CO",
"CT",
"DE",
"FL",
"GA",
"HI",
"IA",
"ID",
"IL",
"IN",
"KS",
"KY",
"LA",
"MA",
"MD",
"ME",
"MI",
"MN",
"MO",
"MS",
"MT",
"NB",
"NC",
"ND",
"NE",
"NH",
"NJ",
"NM",
"NS",
"NV",
"NY",
"OH",
"OK",
"ON",
"OR",
"PA",
"QC",
"RI",
"SC",
"SD",
"TN",
"TX",
"UT",
"VA",
"VT",
"WA",
"WI",
"WV",
"WY"
]
},
"facility_id": {
"param": "facility_id",
"options": [
{
"platform": "copart",
"facility_id": 203,
"name": "AB - CALGARY",
"city": "ROCKY VIEW COUNTY",
"state": "AB",
"zip": "T1X",
"latitude": 50.984960000000000945874489843845367431640625,
"longitude": -113.9129599999999982173903845250606536865234375
},
{
"platform": "copart",
"facility_id": 204,
"name": "AB - EDMONTON",
"city": "NISKU",
"state": "AB",
"zip": "T9E",
"latitude": 53.37163000000000323552740155719220638275146484375,
"longitude": -113.5232500000000044337866711430251598358154296875
},
{
"platform": "copart",
"facility_id": 113,
"name": "AK - ANCHORAGE",
"city": "ANCHORAGE",
"state": "AK",
"zip": "99501",
"latitude": 61.21938000000000101863406598567962646484375,
"longitude": -149.831150000000008049028110690414905548095703125
},
{
"platform": "copart",
"facility_id": 136,
"name": "AL - BIRMINGHAM",
"city": "HUEYTOWN",
"state": "AL",
"zip": "35023",
"latitude": 33.43740999999999985448084771633148193359375,
"longitude": -86.966759999999993624442140571773052215576171875
},
{
"platform": "copart",
"facility_id": 916,
"name": "AL - CUSSETA",
"city": "CUSSETA",
"state": "AL",
"zip": "36852",
"latitude": 32.7382477000000022826498025096952915191650390625,
"longitude": -85.3067989999999980454958858899772167205810546875
},
{
"platform": "copart",
"facility_id": 341,
"name": "AL - DOTHAN",
"city": "NEWTON",
"state": "AL",
"zip": "36352",
"latitude": 31.24492000000000047066350816749036312103271484375,
"longitude": -85.56238999999999350620782934129238128662109375
},
{
"platform": "copart",
"facility_id": 58,
"name": "AL - MOBILE",
"city": "EIGHT MILE",
"state": "AL",
"zip": "36613",
"latitude": 30.788399999999999323563315556384623050689697265625,
"longitude": -88.2178200000000032332536648027598857879638671875
},
{
"platform": "copart",
"facility_id": 184,
"name": "AL - MOBILE SOUTH",
"city": "THEODORE",
"state": "AL",
"zip": "36582",
"latitude": 30.541705900000000184491000254638493061065673828125,
"longitude": -88.265470899999996845508576370775699615478515625
},
{
"platform": "copart",
"facility_id": 145,
"name": "AL - MONTGOMERY",
"city": "MONTGOMERY",
"state": "AL",
"zip": "36116",
"latitude": 32.28582000000000107320374809205532073974609375,
"longitude": -86.1866299999999938563632895238697528839111328125
},
{
"platform": "copart",
"facility_id": 66,
"name": "AL - TANNER",
"city": "TANNER",
"state": "AL",
"zip": "35671",
"latitude": 34.6411599999999992860466591082513332366943359375,
"longitude": -86.9551699999999954115992295555770397186279296875
},
{
"platform": "copart",
"facility_id": 140,
"name": "AR - FAYETTEVILLE",
"city": "PRAIRIE GROVE",
"state": "AR",
"zip": "72753",
"latitude": 35.96670000000000300133251585066318511962890625,
"longitude": -94.3486099999999936471795081160962581634521484375
},
{
"platform": "copart",
"facility_id": 21,
"name": "AR - LITTLE ROCK",
"city": "CONWAY",
"state": "AR",
"zip": "72032",
"latitude": 35.082729999999997971826815046370029449462890625,
"longitude": -92.2891000000000047975845518521964550018310546875
},
{
"platform": "copart",
"facility_id": 47,
"name": "AZ - PHOENIX",
"city": "PHOENIX",
"state": "AZ",
"zip": "85043",
"latitude": 33.44172999999999973397279973141849040985107421875,
"longitude": -112.168710000000004356479621492326259613037109375
},
{
"platform": "copart",
"facility_id": 362,
"name": "AZ - PHOENIX NORTH",
"city": "PHOENIX",
"state": "AZ",
"zip": "85085",
"latitude": 33.7050253999999966936229611746966838836669921875,
"longitude": -112.0819546999999971603756421245634555816650390625
},
{
"platform": "copart",
"facility_id": 93,
"name": "AZ - TUCSON",
"city": "TUCSON",
"state": "AZ",
"zip": "85706",
"latitude": 32.14994999999999691908669774420559406280517578125,
"longitude": -110.8885800000000045884007704444229602813720703125
},
{
"platform": "copart",
"facility_id": 309,
"name": "CA - ADELANTO",
"city": "ADELANTO",
"state": "CA",
"zip": "92301",
"latitude": 34.54668000000000205318428925238549709320068359375,
"longitude": -117.432379999999994879544829018414020538330078125
},
{
"platform": "copart",
"facility_id": 151,
"name": "CA - ANTELOPE",
"city": "ANTELOPE",
"state": "CA",
"zip": "95843",
"latitude": 38.71381000000000227601049118675291538238525390625,
"longitude": -121.327460000000002082742867060005664825439453125
},
{
"platform": "copart",
"facility_id": 5,
"name": "CA - BAKERSFIELD",
"city": "BAKERSFIELD",
"state": "CA",
"zip": "93307",
"latitude": 35.322259999999999990905052982270717620849609375,
"longitude": -119.0002199999999987767296261154115200042724609375
},
{
"platform": "copart",
"facility_id": 4,
"name": "CA - FRESNO",
"city": "FRESNO",
"state": "CA",
"zip": "93725",
"latitude": 36.67699999999999960209606797434389591217041015625,
"longitude": -119.767390000000006011759978719055652618408203125
},
{
"platform": "copart",
"facility_id": 3,
"name": "CA - HAYWARD",
"city": "HAYWARD",
"state": "CA",
"zip": "94545",
"latitude": 37.657330000000001746229827404022216796875,
"longitude": -122.1357200000000062800609157420694828033447265625
},
{
"platform": "copart",
"facility_id": 186,
"name": "CA - LONG BEACH",
"city": "WILMINGTON",
"state": "CA",
"zip": "90744",
"latitude": 33.79914000000000129375621327199041843414306640625,
"longitude": -118.2563099999999991496224538423120975494384765625
},
{
"platform": "copart",
"facility_id": 10,
"name": "CA - LOS ANGELES",
"city": "LOS ANGELES",
"state": "CA",
"zip": "90001",
"latitude": 33.961939999999998462953954003751277923583984375,
"longitude": -118.231999999999999317878973670303821563720703125
},
{
"platform": "copart",
"facility_id": 78,
"name": "CA - MARTINEZ",
"city": "MARTINEZ",
"state": "CA",
"zip": "94553",
"latitude": 38.02830000000000154614099301397800445556640625,
"longitude": -122.097250000000002501110429875552654266357421875
},
{
"platform": "copart",
"facility_id": 367,
"name": "CA - MENTONE",
"city": "MENTONE",
"state": "CA",
"zip": "92359",
"latitude": 34.06405380000000349127731169573962688446044921875,
"longitude": -117.1330932000000046855348045937716960906982421875
},
{
"platform": "copart",
"facility_id": 190,
"name": "CA - NAPA",
"city": "AMERICAN CANYON",
"state": "CA",
"zip": "94503",
"latitude": 38.197380600000002459637471474707126617431640625,
"longitude": -122.283406299999995781035977415740489959716796875
},
{
"platform": "copart",
"facility_id": 97,
"name": "CA - RANCHO CUCAMONGA",
"city": "RANCHO CUCAMONGA",
"state": "CA",
"zip": "91739",
"latitude": 34.09651000000000209411155083216726779937744140625,
"longitude": -117.5385299999999944020601105876266956329345703125
},
{
"platform": "copart",
"facility_id": 343,
"name": "CA - REDDING",
"city": "ANDERSON",
"state": "CA",
"zip": "96007",
"latitude": 40.4223300000000023146640160121023654937744140625,
"longitude": -122.2740199999999930469130049459636211395263671875
},
{
"platform": "copart",
"facility_id": 2,
"name": "CA - SACRAMENTO",
"city": "SACRAMENTO",
"state": "CA",
"zip": "95828",
"latitude": 38.50538999999999845158527023158967494964599609375,
"longitude": -121.386470000000002755768946371972560882568359375
},
{
"platform": "copart",
"facility_id": 7,
"name": "CA - SAN BERNARDINO",
"city": "COLTON",
"state": "CA",
"zip": "92324",
"latitude": 34.049520000000001118678483180701732635498046875,
"longitude": -117.3317100000000010595613275654613971710205078125
},
{
"platform": "copart",
"facility_id": 59,
"name": "CA - SAN DIEGO",
"city": "SAN DIEGO",
"state": "CA",
"zip": "92154",
"latitude": 32.5596699999999970032149576582014560699462890625,
"longitude": -116.9725700000000045974957174621522426605224609375
},
{
"platform": "copart",
"facility_id": 6,
"name": "CA - SAN JOSE",
"city": "SAN MARTIN",
"state": "CA",
"zip": "95046",
"latitude": 37.09375,
"longitude": -121.6143200000000064164851210080087184906005859375
},
{
"platform": "copart",
"facility_id": 16,
"name": "CA - SO SACRAMENTO",
"city": "SACRAMENTO",
"state": "CA",
"zip": "95828",
"latitude": 38.5014400000000023283064365386962890625,
"longitude": -121.3829300000000017689671949483454227447509765625
},
{
"platform": "copart",
"facility_id": 180,
"name": "CA - SUN VALLEY",
"city": "SUN VALLEY",
"state": "CA",
"zip": "91352",
"latitude": 34.22350000000000136424205265939235687255859375,
"longitude": -118.3802500000000037516656448133289813995361328125
},
{
"platform": "copart",
"facility_id": 1,
"name": "CA - VALLEJO",
"city": "VALLEJO",
"state": "CA",
"zip": "94590",
"latitude": 38.09443999999999874717104830779135227203369140625,
"longitude": -122.245959999999996625774656422436237335205078125
},
{
"platform": "copart",
"facility_id": 43,
"name": "CA - VAN NUYS",
"city": "VAN NUYS",
"state": "CA",
"zip": "91405",
"latitude": 34.20738999999999663259586668573319911956787109375,
"longitude": -118.4334300000000013142198440618813037872314453125
},
{
"platform": "copart",
"facility_id": 118,
"name": "CO - COLORADO SPRINGS",
"city": "COLORADO SPRINGS",
"state": "CO",
"zip": "80907",
"latitude": 38.8872300000000024056134861893951892852783203125,
"longitude": -104.814850000000006957634468562901020050048828125
},
{
"platform": "copart",
"facility_id": 68,
"name": "CO - DENVER",
"city": "BRIGHTON",
"state": "CO",
"zip": "80603",
"latitude": 40.01919000000000181671566679142415523529052734375,
"longitude": -104.811340000000001282387529499828815460205078125
},
{
"platform": "copart",
"facility_id": 120,
"name": "CO - DENVER CENTRAL",
"city": "DENVER",
"state": "CO",
"zip": "80229",
"latitude": 39.8138000000000005229594535194337368011474609375,
"longitude": -104.972679999999996880433172918856143951416015625
},
{
"platform": "copart",
"facility_id": 193,
"name": "CO - DENVER SOUTH",
"city": "LITTLETON",
"state": "CO",
"zip": "80125",
"latitude": 39.5581600000000008776623872108757495880126953125,
"longitude": -105.042339999999995825419318862259387969970703125
},
{
"platform": "copart",
"facility_id": 23,
"name": "CT - HARTFORD",
"city": "NEW BRITAIN",
"state": "CT",
"zip": "06051",
"latitude": 41.6504800000000017234924598596990108489990234375,
"longitude": -72.750550000000004047251422889530658721923828125
},
{
"platform": "copart",
"facility_id": 350,
"name": "CT - HARTFORD SPRINGFIELD",
"city": "EAST GRANBY",
"state": "CT",
"zip": "06026",
"latitude": 41.94395999999999702367858844809234142303466796875,
"longitude": -72.7006400000000070349415182135999202728271484375
},
{
"platform": "copart",
"facility_id": 130,
"name": "DE - SEAFORD",
"city": "SEAFORD",
"state": "DE",
"zip": "19973",
"latitude": 38.63025999999999982037479639984667301177978515625,
"longitude": -75.56288000000000693034962750971317291259765625
},
{
"platform": "copart",
"facility_id": 366,
"name": "FL - CLEWISTON",
"city": "CLEWISTON",
"state": "FL",
"zip": "33440",
"latitude": 26.695865500000000025693225325085222721099853515625,
"longitude": -80.9024777999999997746272129006683826446533203125
},
{
"platform": "copart",
"facility_id": 86,
"name": "FL - FT. PIERCE",
"city": "FORT PIERCE",
"state": "FL",
"zip": "34946",
"latitude": 27.481120000000000658246790408156812191009521484375,
"longitude": -80.3790900000000050340531743131577968597412109375
},
{
"platform": "copart",
"facility_id": 163,
"name": "FL - JACKSONVILLE NORTH",
"city": "JACKSONVILLE",
"state": "FL",
"zip": "32218",
"latitude": 30.422419999999998907469489495269954204559326171875,
"longitude": -81.65131999999999834471964277327060699462890625
},
{
"platform": "copart",
"facility_id": 105,
"name": "FL - MIAMI CENTRAL",
"city": "MIAMI",
"state": "FL",
"zip": "33167",
"latitude": 25.88168999999999897454472375102341175079345703125,
"longitude": -80.258700000000004592948243953287601470947265625
},
{
"platform": "copart",
"facility_id": 33,
"name": "FL - MIAMI NORTH",
"city": "OPA LOCKA",
"state": "FL",
"zip": "33054",
"latitude": 25.891729999999999023430063971318304538726806640625,
"longitude": -80.2439700000000044610715121962130069732666015625
},
{
"platform": "copart",
"facility_id": 148,
"name": "FL - MIAMI SOUTH",
"city": "HOMESTEAD",
"state": "FL",
"zip": "33032",
"latitude": 25.54147999999999996134647517465054988861083984375,
"longitude": -80.411799999999999499777914024889469146728515625
},
{
"platform": "copart",
"facility_id": 108,
"name": "FL - OCALA",
"city": "OCALA",
"state": "FL",
"zip": "34482",
"latitude": 29.260419999999999873807610129006206989288330078125,
"longitude": -82.193569999999994024619809351861476898193359375
},
{
"platform": "copart",
"facility_id": 153,
"name": "FL - ORLANDO NORTH",
"city": "APOPKA",
"state": "FL",
"zip": "32712",
"latitude": 28.69785999999999859255694900639355182647705078125,
"longitude": -81.5669599999999945794115774333477020263671875
},
{
"platform": "copart",
"facility_id": 55,
"name": "FL - ORLANDO SOUTH",
"city": "ORLANDO",
"state": "FL",
"zip": "32824",
"latitude": 28.436240000000001515445546829141676425933837890625,
"longitude": -81.370890000000002828528522513806819915771484375
},
{
"platform": "copart",
"facility_id": 348,
"name": "FL - PUNTA GORDA",
"city": "ARCADIA",
"state": "FL",
"zip": "34269",
"latitude": 27.073837399999998609700924134813249111175537109375,
"longitude": -81.958440400000000636282493360340595245361328125
},
{
"platform": "copart",
"facility_id": 117,
"name": "FL - TALLAHASSEE",
"city": "MIDWAY",
"state": "FL",
"zip": "32343",
"latitude": 30.50234999999999985220711096189916133880615234375,
"longitude": -84.4086400000000054433257901109755039215087890625
},
{
"platform": "copart",
"facility_id": 34,
"name": "FL - TAMPA SOUTH",
"city": "RIVERVIEW",
"state": "FL",
"zip": "33578",
"latitude": 27.8237400000000008049028110690414905548095703125,
"longitude": -82.330209999999993897290551103651523590087890625
},
{
"platform": "copart",
"facility_id": 70,
"name": "FL - WEST PALM BEACH",
"city": "WEST PALM BEACH",
"state": "FL",
"zip": "33411",
"latitude": 26.6920199999999994133759173564612865447998046875,
"longitude": -80.17167000000000598447513766586780548095703125
},
{
"platform": "copart",
"facility_id": 107,
"name": "GA - ATLANTA EAST",
"city": "LOGANVILLE",
"state": "GA",
"zip": "30052",
"latitude": 33.802289999999999281499185599386692047119140625,
"longitude": -83.9546600000000040608938434161245822906494140625
},
{
"platform": "copart",
"facility_id": 157,
"name": "GA - ATLANTA NORTH",
"city": "GAINESVILLE",
"state": "GA",
"zip": "30507",
"latitude": 34.281149999999996680344338528811931610107421875,
"longitude": -83.792159999999995534381014294922351837158203125
},
{
"platform": "copart",
"facility_id": 146,
"name": "GA - ATLANTA SOUTH",
"city": "ELLENWOOD",
"state": "GA",
"zip": "30294",
"latitude": 33.62557000000000329009708366356790065765380859375,
"longitude": -84.2471599999999938290784484706819057464599609375
},
{
"platform": "copart",
"facility_id": 15,
"name": "GA - ATLANTA WEST",
"city": "AUSTELL",
"state": "GA",
"zip": "30168",
"latitude": 33.7988399999999984402165864594280719757080078125,
"longitude": -84.6282000000000067529981606639921665191650390625
},
{
"platform": "copart",
"facility_id": 359,
"name": "GA - AUGUSTA",
"city": "AUGUSTA",
"state": "GA",
"zip": "30906",
"latitude": 33.357944500000002108208718709647655487060546875,
"longitude": -82.040947799999997869235812686383724212646484375
},
{
"platform": "copart",
"facility_id": 175,
"name": "GA - CARTERSVILLE",
"city": "CARTERSVILLE",
"state": "GA",
"zip": "30120",
"latitude": 34.11755000000000137561073643155395984649658203125,
"longitude": -84.89298999999999750798451714217662811279296875
},
{
"platform": "copart",
"facility_id": 173,
"name": "GA - FAIRBURN",
"city": "FAIRBURN",
"state": "GA",
"zip": "30213",
"latitude": 33.5483286999999990030119079165160655975341796875,
"longitude": -84.607475300000004381217877380549907684326171875
},
{
"platform": "copart",
"facility_id": 187,
"name": "GA - MACON",
"city": "BYRON",
"state": "GA",
"zip": "31008",
"latitude": 32.6830700000000007321432349272072315216064453125,
"longitude": -83.7026800000000008594724931754171848297119140625
},
{
"platform": "copart",
"facility_id": 87,
"name": "GA - SAVANNAH",
"city": "SAVANNAH",
"state": "GA",
"zip": "31405",
"latitude": 32.04075999999999879719325690530240535736083984375,
"longitude": -81.2127100000000012869350030086934566497802734375
},
{
"platform": "copart",
"facility_id": 88,
"name": "GA - TIFTON",
"city": "TIFTON",
"state": "GA",
"zip": "31794",
"latitude": 31.406279999999998864268491161055862903594970703125,
"longitude": -83.487629999999995789039530791342258453369140625
},
{
"platform": "copart",
"facility_id": 110,
"name": "HI - HONOLULU",
"city": "KAPOLEI",
"state": "HI",
"zip": "96707",
"latitude": 21.31824999999999903366187936626374721527099609375,
"longitude": -158.116950000000002773958840407431125640869140625
},
{
"platform": "copart",
"facility_id": 398,
"name": "IA - CEDAR RAPIDS",
"city": "CEDAR RAPIDS",
"state": "IA",
"zip": "52404",
"latitude": 41.93851029999999724395820521749556064605712890625,
"longitude": -91.6767502000000007456037565134465694427490234375
},
{
"platform": "copart",
"facility_id": 169,
"name": "IA - DAVENPORT",
"city": "ELDRIDGE",
"state": "IA",
"zip": "52748",
"latitude": 41.6243300000000004956746124662458896636962890625,
"longitude": -90.578810000000004265530151315033435821533203125
},
{
"platform": "copart",
"facility_id": 60,
"name": "IA - DES MOINES",
"city": "DES MOINES",
"state": "IA",
"zip": "50317",
"latitude": 41.5708699999999993224264471791684627532958984375,
"longitude": -93.5515599999999949432094581425189971923828125
},
{
"platform": "copart",
"facility_id": 72,
"name": "ID - BOISE",
"city": "NAMPA",
"state": "ID",
"zip": "83687",
"latitude": 43.6184099999999972396835801191627979278564453125,
"longitude": -116.613820000000004029061528854072093963623046875
},
{
"platform": "copart",
"facility_id": 36,
"name": "IL - CHICAGO NORTH",
"city": "ELGIN",
"state": "IL",
"zip": "60120",
"latitude": 42.0161599999999992860466591082513332366943359375,
"longitude": -88.2357200000000005957190296612679958343505859375
},
{
"platform": "copart",
"facility_id": 81,
"name": "IL - CHICAGO SOUTH",
"city": "CHICAGO HEIGHTS",
"state": "IL",
"zip": "60411",
"latitude": 41.50709570000000070422174758277833461761474609375,
"longitude": -87.6159798000000051843016990460455417633056640625
},
{
"platform": "copart",
"facility_id": 51,
"name": "IL - PEORIA",
"city": "PEKIN",
"state": "IL",
"zip": "61554",
"latitude": 40.5290600000000011959855328314006328582763671875,
"longitude": -89.6568999999999931560523691587150096893310546875
},
{
"platform": "copart",
"facility_id": 189,
"name": "IL - SOUTHERN ILLINOIS",
"city": "CAHOKIA HEIGHTS",
"state": "IL",
"zip": "62205",
"latitude": 38.57757000000000147110768011771142482757568359375,
"longitude": -90.0968500000000034333424991928040981292724609375
},
{
"platform": "copart",
"facility_id": 156,
"name": "IL - WHEELING",
"city": "WHEELING",
"state": "IL",
"zip": "60090",
"latitude": 42.110129999999998062776285223662853240966796875,
"longitude": -87.9140100000000046520653995685279369354248046875
},
{
"platform": "copart",
"facility_id": 170,
"name": "IN - CICERO",
"city": "CICERO",
"state": "IN",
"zip": "46034",
"latitude": 40.115510000000000445652403868734836578369140625,
"longitude": -86.1307900000000046247805585153400897979736328125
},
{
"platform": "copart",
"facility_id": 370,
"name": "IN - DYER",
"city": "DYER",
"state": "IN",
"zip": "46311",
"latitude": 41.493909999999999627107172273099422454833984375,
"longitude": -87.5137500000000017053025658242404460906982421875
},
{
"platform": "copart",
"facility_id": 360,
"name": "IN - FORT WAYNE",
"city": "FORT WAYNE",
"state": "IN",
"zip": "46803",
"latitude": 41.0732799999999969031705404631793498992919921875,
"longitude": -85.0960500000000052978066378273069858551025390625
},
{
"platform": "copart",
"facility_id": 44,
"name": "IN - INDIANAPOLIS",
"city": "INDIANAPOLIS",
"state": "IN",
"zip": "46254",
"latitude": 39.829329999999998790372046642005443572998046875,
"longitude": -86.247420000000005302354111336171627044677734375
},
{
"platform": "copart",
"facility_id": 369,
"name": "KS - KANSAS CITY",
"city": "KANSAS CITY",
"state": "KS",
"zip": "66111",
"latitude": 39.0590729999999979327185428701341152191162109375,
"longitude": -94.7756715000000014015313354320824146270751953125
},
{
"platform": "copart",
"facility_id": 67,
"name": "KS - WICHITA",
"city": "WICHITA",
"state": "KS",
"zip": "67216",
"latitude": 37.612200000000001409716787748038768768310546875,
"longitude": -97.3073399999999963938535074703395366668701171875
},
{
"platform": "copart",
"facility_id": 345,
"name": "KY - EARLINGTON",
"city": "EARLINGTON",
"state": "KY",
"zip": "42410",
"latitude": 37.272840000000002191882231272757053375244140625,
"longitude": -87.4951300000000031786839826963841915130615234375
},
{
"platform": "copart",
"facility_id": 115,
"name": "KY - LEXINGTON EAST",
"city": "LEXINGTON",
"state": "KY",
"zip": "40509",
"latitude": 37.96220000000000283080225926823914051055908203125,
"longitude": -84.3710899999999952569851302541792392730712890625
},
{
"platform": "copart",
"facility_id": 83,
"name": "KY - LEXINGTON WEST",
"city": "LAWRENCEBURG",
"state": "KY",
"zip": "40342",
"latitude": 38.03097000000000349473339156247675418853759765625,
"longitude": -84.889499999999998181010596454143524169921875
},
{
"platform": "copart",
"facility_id": 143,
"name": "KY - LOUISVILLE",
"city": "LOUISVILLE",
"state": "KY",
"zip": "40272",
"latitude": 38.10974999999999823785401531495153903961181640625,
"longitude": -85.82035999999999376086634583771228790283203125
},
{
"platform": "copart",
"facility_id": 138,
"name": "KY - WALTON",
"city": "WALTON",
"state": "KY",
"zip": "41094",
"latitude": 38.849840000000000372892827726900577545166015625,
"longitude": -84.597520000000002937667886726558208465576171875
},
{
"platform": "copart",
"facility_id": 50,
"name": "LA - BATON ROUGE",
"city": "Greenwell springs",
"state": "LA",
"zip": "70739",
"latitude": 30.560050000000000380850906367413699626922607421875,
"longitude": -90.988200000000006184563972055912017822265625
},
{
"platform": "copart",
"facility_id": 79,
"name": "LA - NEW ORLEANS",
"city": "NEW ORLEANS",
"state": "LA",
"zip": "70129",
"latitude": 30.032859999999999445208231918513774871826171875,
"longitude": -89.909639999999996007318259216845035552978515625
},
{
"platform": "copart",
"facility_id": 84,
"name": "LA - SHREVEPORT",
"city": "SHREVEPORT",
"state": "LA",
"zip": "71109",
"latitude": 32.46497000000000099362296168692409992218017578125,
"longitude": -93.837950000000006411937647499144077301025390625
},
{
"platform": "copart",
"facility_id": 386,
"name": "LA - VINTON",
"city": "SULPHUR",
"state": "LA",
"zip": "70663",
"latitude": 30.154012300000001545186023577116429805755615234375,
"longitude": -93.5022752999999937628672341816127300262451171875
},
{
"platform": "copart",
"facility_id": 361,
"name": "MA - FREETOWN",
"city": "ASSONET",
"state": "MA",
"zip": "02702",
"latitude": 41.77946850000000011959855328314006328582763671875,
"longitude": -71.0952529000000055248165153898298740386962890625
},
{
"platform": "copart",
"facility_id": 53,
"name": "MA - NORTH BOSTON",
"city": "NORTH BILLERICA",
"state": "MA",
"zip": "01862",
"latitude": 42.578249999999997044142219237983226776123046875,
"longitude": -71.2729499999999944748196867294609546661376953125
},
{
"platform": "copart",
"facility_id": 27,
"name": "MA - SOUTH BOSTON",
"city": "MENDON",
"state": "MA",
"zip": "01756",
"latitude": 42.08968999999999738292899564839899539947509765625,
"longitude": -71.4985300000000023601387511007487773895263671875
},
{
"platform": "copart",
"facility_id": 149,
"name": "MA - WEST WARREN",
"city": "WEST WARREN",
"state": "MA",
"zip": "01092",
"latitude": 42.21701999999999799229044583626091480255126953125,
"longitude": -72.2305900000000065119820646941661834716796875
},
{
"platform": "copart",
"facility_id": 32,
"name": "DC - WASHINGTON DC",
"city": "WALDORF",
"state": "MD",
"zip": "20602",
"latitude": 38.5893200000000007321432349272072315216064453125,
"longitude": -76.9322399999999930741978459991514682769775390625
},
{
"platform": "copart",
"facility_id": 102,
"name": "MD - BALTIMORE",
"city": "FINKSBURG",
"state": "MD",
"zip": "21048",
"latitude": 39.51961000000000012732925824820995330810546875,
"longitude": -76.91816000000000030922819860279560089111328125
},
{
"platform": "copart",
"facility_id": 342,
"name": "MD - BALTIMORE EAST",
"city": "BALTIMORE",
"state": "MD",
"zip": "21225",
"latitude": 39.2400200000000012323653209023177623748779296875,
"longitude": -76.624920000000003028617356903851032257080078125
},
{
"platform": "copart",
"facility_id": 903,
"name": "MD - LAUREL",
"city": "LAUREL",
"state": "MD",
"zip": "20707",
"latitude": 39.07891649999999827969077159650623798370361328125,
"longitude": -76.88385130000000344807631336152553558349609375
},
{
"platform": "copart",
"facility_id": 90,
"name": "ME - LYMAN",
"city": "LYMAN",
"state": "ME",
"zip": "04002",
"latitude": 43.48796999999999712827047915197908878326416015625,
"longitude": -70.6313099999999991496224538423120975494384765625
},
{
"platform": "copart",
"facility_id": 384,
"name": "ME - WINDHAM",
"city": "WINDHAM",
"state": "ME",
"zip": "04062",
"latitude": 43.86267000000000138015820994041860103607177734375,
"longitude": -70.4522400000000033060132409445941448211669921875
},
{
"platform": "copart",
"facility_id": 61,
"name": "MI - DETROIT",
"city": "WOODHAVEN",
"state": "MI",
"zip": "48183",
"latitude": 42.121250000000003410605131648480892181396484375,
"longitude": -83.235960000000005720721674151718616485595703125
},
{
"platform": "copart",
"facility_id": 159,
"name": "MI - FLINT",
"city": "DAVISON",
"state": "MI",
"zip": "48423",
"latitude": 43.0781199999999984129317454062402248382568359375,
"longitude": -83.5181299999999993133315001614391803741455078125
},
{
"platform": "copart",
"facility_id": 160,
"name": "MI - IONIA",
"city": "PORTLAND",
"state": "MI",
"zip": "48875",
"latitude": 42.86543999999999954297891235910356044769287109375,
"longitude": -85.0762500000000017053025658242404460906982421875
},
{
"platform": "copart",
"facility_id": 161,
"name": "MI - KINCHELOE",
"city": "KINCHELOE",
"state": "MI",
"zip": "49788",
"latitude": 46.26767000000000251702658715657889842987060546875,
"longitude": -84.4715699999999998226485331542789936065673828125
},
{
"platform": "copart",
"facility_id": 103,
"name": "MI - LANSING",
"city": "LANSING",
"state": "MI",
"zip": "48917",
"latitude": 42.6926500000000004320099833421409130096435546875,
"longitude": -84.663060000000001537046045996248722076416015625
},
{
"platform": "copart",
"facility_id": 385,
"name": "MI - WAYLAND",
"city": "WAYLAND",
"state": "MI",
"zip": "49348",
"latitude": 42.72471759999999818546712049283087253570556640625,
"longitude": -85.6690861000000012381860869936645030975341796875
},
{
"platform": "copart",
"facility_id": 37,
"name": "MN - MINNEAPOLIS",
"city": "BLAINE",
"state": "MN",
"zip": "55434",
"latitude": 45.16246000000000293539414997212588787078857421875,
"longitude": -93.236940000000004147295840084552764892578125
},
{
"platform": "copart",
"facility_id": 80,
"name": "MN - MINNEAPOLIS NORTH",
"city": "HAM LAKE",
"state": "MN",
"zip": "55304",
"latitude": 45.21757999999999810825102031230926513671875,
"longitude": -93.230940000000003919922164641320705413818359375
},
{
"platform": "copart",
"facility_id": 52,
"name": "MN - ST. CLOUD",
"city": "AVON",
"state": "MN",
"zip": "56310",
"latitude": 45.60531999999999896999725024215877056121826171875,
"longitude": -94.44065000000000509317032992839813232421875
},
{
"platform": "copart",
"facility_id": 125,
"name": "MO - COLUMBIA",
"city": "COLUMBIA",
"state": "MO",
"zip": "65201",
"latitude": 38.94993000000000193949745153076946735382080078125,
"longitude": -92.2099299999999999499777914024889469146728515625
},
{
"platform": "copart",
"facility_id": 141,
"name": "MO - SIKESTON",
"city": "SIKESTON",
"state": "MO",
"zip": "63801",
"latitude": 36.9384399999999999408828443847596645355224609375,
"longitude": -89.5312899999999984856913215480744838714599609375
},
{
"platform": "copart",
"facility_id": 92,
"name": "MO - SPRINGFIELD",
"city": "ROGERSVILLE",
"state": "MO",
"zip": "65742",
"latitude": 37.11977999999999866531652514822781085968017578125,
"longitude": -93.0132899999999978035702952183783054351806640625
},
{
"platform": "copart",
"facility_id": 20,
"name": "MO - ST. LOUIS",
"city": "BRIDGETON",
"state": "MO",
"zip": "63044",
"latitude": 38.77850000000000108002495835535228252410888671875,
"longitude": -90.4235800000000011777956387959420680999755859375
},
{
"platform": "copart",
"facility_id": 326,
"name": "MS - GRENADA",
"city": "GRENADA",
"state": "MS",
"zip": "38901",
"latitude": 33.7822038999999989528078003786504268646240234375,
"longitude": -89.8773206000000044468833948485553264617919921875
},
{
"platform": "copart",
"facility_id": 40,
"name": "MS - JACKSON",
"city": "FLORENCE",
"state": "MS",
"zip": "39073",
"latitude": 32.1854000000000013415046851150691509246826171875,
"longitude": -90.132260000000002264641807414591312408447265625
},
{
"platform": "copart",
"facility_id": 122,
"name": "MT - BILLINGS",
"city": "BILLINGS",
"state": "MT",
"zip": "59101",
"latitude": 45.80295000000000271711542154662311077117919921875,
"longitude": -108.458519999999992933226167224347591400146484375
},
{
"platform": "copart",
"facility_id": 106,
"name": "MT - HELENA",
"city": "HELENA",
"state": "MT",
"zip": "59601",
"latitude": 46.59955000000000069348971010185778141021728515625,
"longitude": -111.9726299999999952206053421832621097564697265625
},
{
"platform": "copart",
"facility_id": 208,
"name": "NB - MONCTON",
"city": "MONCTON",
"state": "NB",
"zip": "E1E",
"latitude": 46.09714000000000311274561681784689426422119140625,
"longitude": -64.8611499999999949750417727045714855194091796875
},
{
"platform": "copart",
"facility_id": 41,
"name": "NC - CHINA GROVE",
"city": "CHINA GROVE",
"state": "NC",
"zip": "28023",
"latitude": 35.5784900000000021691448637284338474273681640625,
"longitude": -80.5591600000000056525095715187489986419677734375
},
{
"platform": "copart",
"facility_id": 356,
"name": "NC - CONCORD",
"city": "CONCORD",
"state": "NC",
"zip": "28025",
"latitude": 35.30919000000000096406438387930393218994140625,
"longitude": -80.5216300000000018144419300369918346405029296875
},
{
"platform": "copart",
"facility_id": 340,
"name": "NC - GASTONIA",
"city": "GASTONIA",
"state": "NC",
"zip": "28052",
"latitude": 35.29619000000000283989720628596842288970947265625,
"longitude": -81.2248000000000018872015061788260936737060546875
},
{
"platform": "copart",
"facility_id": 373,
"name": "NC - LAGRANGE",
"city": "LA GRANGE",
"state": "NC",
"zip": "28551",
"latitude": 35.270500499999997146005625836551189422607421875,
"longitude": -77.7388887999999980138454702682793140411376953125
},
{
"platform": "copart",
"facility_id": 338,
"name": "NC - LUMBERTON",
"city": "LUMBERTON",
"state": "NC",
"zip": "28360",
"latitude": 34.65883000000000180307324626483023166656494140625,
"longitude": -79.10331999999999652573023922741413116455078125
},
{
"platform": "copart",
"facility_id": 154,
"name": "NC - MEBANE",
"city": "MEBANE",
"state": "NC",
"zip": "27302",
"latitude": 36.096260000000000900399754755198955535888671875,
"longitude": -79.3262500000000017053025658242404460906982421875
},
{
"platform": "copart",
"facility_id": 196,
"name": "NC - MOCKSVILLE",
"city": "MOCKSVILLE",
"state": "NC",
"zip": "27028",
"latitude": 35.82856000000000307181835523806512355804443359375,
"longitude": -80.53329999999999699866748414933681488037109375
},
{
"platform": "copart",
"facility_id": 54,
"name": "NC - RALEIGH",
"city": "DUNN",
"state": "NC",
"zip": "28334",
"latitude": 35.267009999999999081410351209342479705810546875,
"longitude": -78.6198399999999963938535074703395366668701171875
},
{
"platform": "copart",
"facility_id": 368,
"name": "NC - RALEIGH NORTH",
"city": "KNIGHTDALE",
"state": "NC",
"zip": "27545",
"latitude": 35.8311700000000001864464138634502887725830078125,
"longitude": -78.4896700000000038244252209551632404327392578125
},
{
"platform": "copart",
"facility_id": 363,
"name": "ND - BISMARCK",
"city": "BISMARCK",
"state": "ND",
"zip": "58504",
"latitude": 46.79478000000000292857293970882892608642578125,
"longitude": -100.7349200000000024601831682957708835601806640625
},
{
"platform": "copart",
"facility_id": 123,
"name": "NE - LINCOLN",
"city": "GREENWOOD",
"state": "NE",
"zip": "68366",
"latitude": 40.9755200000000030513547244481742382049560546875,
"longitude": -96.390569999999996753103914670646190643310546875
},
{
"platform": "copart",
"facility_id": 155,
"name": "NH - CANDIA",
"city": "CANDIA",
"state": "NH",
"zip": "03034",
"latitude": 43.06067999999999784677129355259239673614501953125,
"longitude": -71.2787699999999944111550576053559780120849609375
},
{
"platform": "copart",
"facility_id": 31,
"name": "NJ - GLASSBORO EAST",
"city": "GLASSBORO",
"state": "NJ",
"zip": "08028",
"latitude": 39.69659999999999655528881703503429889678955078125,
"longitude": -75.106629999999995561665855348110198974609375
},
{
"platform": "copart",
"facility_id": 69,
"name": "NJ - GLASSBORO WEST",
"city": "GLASSBORO",
"state": "NJ",
"zip": "08028",
"latitude": 39.68909000000000020236257114447653293609619140625,
"longitude": -75.13209000000000514774001203477382659912109375
},
{
"platform": "copart",
"facility_id": 91,
"name": "NJ - SOMERVILLE",
"city": "HILLSBOROUGH",
"state": "NJ",
"zip": "08844",
"latitude": 40.53714000000000083900886238552629947662353515625,
"longitude": -74.60430999999999812644091434776782989501953125
},
{
"platform": "copart",
"facility_id": 135,
"name": "NJ - TRENTON",
"city": "WINDSOR",
"state": "NJ",
"zip": "08561",
"latitude": 40.2502300000000019508661353029310703277587890625,
"longitude": -74.5749200000000058707882999442517757415771484375
},
{
"platform": "copart",
"facility_id": 75,
"name": "NM - ALBUQUERQUE",
"city": "ALBUQUERQUE",
"state": "NM",
"zip": "87105",
"latitude": 34.98508000000000350837581208907067775726318359375,
"longitude": -106.6562200000000046884451876394450664520263671875
},
{
"platform": "copart",
"facility_id": 209,
"name": "NS - HALIFAX",
"city": "ELMSDALE",
"state": "NS",
"zip": "B2S",
"latitude": 44.976191000000000030922819860279560089111328125,
"longitude": -63.51271700000000208774508791975677013397216796875
},
{
"platform": "copart",
"facility_id": 195,
"name": "NV - 57 Storage",
"city": "LAS VEGAS",
"state": "NV",
"zip": "89115",
"latitude": 36.2480800000000016325429896824061870574951171875,
"longitude": -115.0789999999999935198502498678863048553466796875
},
{
"platform": "copart",
"facility_id": 57,
"name": "NV - LAS VEGAS",
"city": "LAS VEGAS",
"state": "NV",
"zip": "89115",
"latitude": 36.2480800000000016325429896824061870574951171875,
"longitude": -115.0789999999999935198502498678863048553466796875
},
{
"platform": "copart",
"facility_id": 133,
"name": "NV - LAS VEGAS WEST",
"city": "NORTH LAS VEGAS",
"state": "NV",
"zip": "89032",
"latitude": 36.2228972999999996318365447223186492919921875,
"longitude": -115.1710834999999946148818708024919033050537109375
},
{
"platform": "copart",
"facility_id": 100,
"name": "NV - RENO",
"city": "RENO",
"state": "NV",
"zip": "89506",
"latitude": 39.61585550000000210957296076230704784393310546875,
"longitude": -119.8845251999999987901901477016508579254150390625
},
{
"platform": "copart",
"facility_id": 94,
"name": "NY - ALBANY",
"city": "ALBANY",
"state": "NY",
"zip": "12205",
"latitude": 42.73602000000000344925865647383034229278564453125,
"longitude": -73.853849999999994224708643741905689239501953125
},
{
"platform": "copart",
"facility_id": 344,
"name": "NY - BUFFALO",
"city": "ANGOLA",
"state": "NY",
"zip": "14006",
"latitude": 42.6561200000000013687895261682569980621337890625,
"longitude": -78.9794200000000046202330850064754486083984375
},
{
"platform": "copart",
"facility_id": 30,
"name": "NY - LONG ISLAND",
"city": "BROOKHAVEN",
"state": "NY",
"zip": "11719",
"latitude": 40.7776300000000020418156054802238941192626953125,
"longitude": -72.9309300000000035879565984942018985748291015625
},
{
"platform": "copart",
"facility_id": 24,
"name": "NY - NEWBURGH",
"city": "MARLBORO",
"state": "NY",
"zip": "12542",
"latitude": 41.62224119999999771835064166225492954254150390625,
"longitude": -73.95790940000000546206138096749782562255859375
},
{
"platform": "copart",
"facility_id": 35,
"name": "NY - ROCHESTER",
"city": "LEROY",
"state": "NY",
"zip": "14482",
"latitude": 42.9814999999999969304553815163671970367431640625,
"longitude": -78.0034699999999929787009023129940032958984375
},
{
"platform": "copart",
"facility_id": 25,
"name": "NY - SYRACUSE",
"city": "CENTRAL SQUARE",
"state": "NY",
"zip": "13036",
"latitude": 43.24542000000000285808710032142698764801025390625,
"longitude": -76.1458499999999958163243718445301055908203125
},
{
"platform": "copart",
"facility_id": 376,
"name": "OH - AKRON",
"city": "BARBERTON",
"state": "OH",
"zip": "44203",
"latitude": 41.02573910000000267928044195286929607391357421875,
"longitude": -81.616576699999995980761013925075531005859375
},
{
"platform": "copart",
"facility_id": 111,
"name": "OH - CLEVELAND EAST",
"city": "NORTHFIELD",
"state": "OH",
"zip": "44067",
"latitude": 41.28249000000000279442247119732201099395751953125,
"longitude": -81.504940000000004829416866414248943328857421875
},
{
"platform": "copart",
"facility_id": 112,
"name": "OH - CLEVELAND WEST",
"city": "COLUMBIA STATION",
"state": "OH",
"zip": "44028",
"latitude": 41.3128200000000020963852875865995883941650390625,
"longitude": -81.9838500000000038880898500792682170867919921875
},
{
"platform": "copart",
"facility_id": 29,
"name": "OH - COLUMBUS",
"city": "COLUMBUS",
"state": "OH",
"zip": "43207",
"latitude": 39.89150000000000062527760746888816356658935546875,
"longitude": -82.9470000000000027284841053187847137451171875
},
{
"platform": "copart",
"facility_id": 166,
"name": "OH - DAYTON",
"city": "MORAINE",
"state": "OH",
"zip": "45439",
"latitude": 39.690100000000001045918907038867473602294921875,
"longitude": -84.2207700000000016871126717887818813323974609375
},
{
"platform": "copart",
"facility_id": 18,
"name": "OK - OKLAHOMA CITY",
"city": "OKLAHOMA CITY",
"state": "OK",
"zip": "73129",
"latitude": 35.4506200000000006866684998385608196258544921875,
"longitude": -97.46107000000000653017195872962474822998046875
},
{
"platform": "copart",
"facility_id": 19,
"name": "OK - TULSA",
"city": "TULSA",
"state": "OK",
"zip": "74107",
"latitude": 36.1323900000000008958522812463343143463134765625,
"longitude": -96.0199499999999943611328490078449249267578125
},
{
"platform": "copart",
"facility_id": 212,
"name": "ON - COOKSTOWN",
"city": "COOKSTOWN",
"state": "ON",
"zip": "L0L",
"latitude": 44.17833420000000188565536518581211566925048828125,
"longitude": -79.662424200000003793320502154529094696044921875
},
{
"platform": "copart",
"facility_id": 202,
"name": "ON - LONDON",
"city": "LONDON",
"state": "ON",
"zip": "N5W",
"latitude": 42.98042000000000228965291171334683895111083984375,
"longitude": -81.1592399999999969395503285340964794158935546875
},
{
"platform": "copart",
"facility_id": 210,
"name": "ON - OTTAWA",
"city": "OTTAWA",
"state": "ON",
"zip": "K1G",
"latitude": 45.30464299999999866486177779734134674072265625,
"longitude": -75.5506400000000013505996321327984333038330078125
},
{
"platform": "copart",
"facility_id": 201,
"name": "ON - TORONTO",
"city": "BOWMANVILLE",
"state": "ON",
"zip": "L1E",
"latitude": 43.872579999999999245119397528469562530517578125,
"longitude": -78.749380000000002155502443201839923858642578125
},
{
"platform": "copart",
"facility_id": 104,
"name": "OR - EUGENE",
"city": "EUGENE",
"state": "OR",
"zip": "97402",
"latitude": 44.117469999999997298800735734403133392333984375,
"longitude": -123.173550000000005866240826435387134552001953125
},
{
"platform": "copart",
"facility_id": 9,
"name": "OR - PORTLAND NORTH",
"city": "PORTLAND",
"state": "OR",
"zip": "97218",
"latitude": 45.57395840000000220015863305889070034027099609375,
"longitude": -122.5921972000000010893927537836134433746337890625
},
{
"platform": "copart",
"facility_id": 134,
"name": "OR - PORTLAND SOUTH",
"city": "WOODBURN",
"state": "OR",
"zip": "97071",
"latitude": 45.15829999999999699866748414933681488037109375,
"longitude": -122.828900000000004411049303598701953887939453125
},
{
"platform": "copart",
"facility_id": 129,
"name": "PA - ALTOONA",
"city": "EBENSBURG",
"state": "PA",
"zip": "15931",
"latitude": 40.46027000000000128920873976312577724456787109375,
"longitude": -78.7706299999999970395947457291185855865478515625
},
{
"platform": "copart",
"facility_id": 128,
"name": "PA - CHAMBERSBURG",
"city": "CHAMBERSBURG",
"state": "PA",
"zip": "17202",
"latitude": 39.9251000000000004774847184307873249053955078125,
"longitude": -77.733509999999995443431544117629528045654296875
},
{
"platform": "copart",
"facility_id": 76,
"name": "PA - HARRISBURG",
"city": "GRANTVILLE",
"state": "PA",
"zip": "17028",
"latitude": 40.41317000000000092541085905395448207855224609375,
"longitude": -76.6275600000000025602275854907929897308349609375
},
{
"platform": "copart",
"facility_id": 26,
"name": "PA - PHILADELPHIA",
"city": "PENNSBURG",
"state": "PA",
"zip": "18073",
"latitude": 40.39976999999999662804839317686855792999267578125,
"longitude": -75.4715900000000061709215515293180942535400390625
},
{
"platform": "copart",
"facility_id": 164,
"name": "PA - PHILADELPHIA EAST-SUBLOT",
"city": "CHALFONT",
"state": "PA",
"zip": "18914",
"latitude": 40.29193000000000068894223659299314022064208984375,
"longitude": -75.193430000000006430127541534602642059326171875
},
{
"platform": "copart",
"facility_id": 28,
"name": "PA - PITTSBURGH NORTH",
"city": "ELLWOOD CITY",
"state": "PA",
"zip": "16117",
"latitude": 40.85070999999999941110218060202896595001220703125,
"longitude": -80.314040000000005647962098009884357452392578125
},
{
"platform": "copart",
"facility_id": 85,
"name": "PA - PITTSBURGH SOUTH",
"city": "WEST MIFFLIN",
"state": "PA",
"zip": "15122",
"latitude": 40.36719000000000079353412729687988758087158203125,
"longitude": -79.893910000000005311449058353900909423828125
},
{
"platform": "copart",
"facility_id": 174,
"name": "PA - PITTSBURGH WEST",
"city": "WEST MIFFLIN",
"state": "PA",
"zip": "15122",
"latitude": 40.34405000000000285353962681256234645843505859375,
"longitude": -79.904529999999994060999597422778606414794921875
},
{
"platform": "copart",
"facility_id": 142,
"name": "PA - SCRANTON",
"city": "DURYEA",
"state": "PA",
"zip": "18642",
"latitude": 41.33782999999999674400896765291690826416015625,
"longitude": -75.7564699999999930923877400346100330352783203125
},
{
"platform": "copart",
"facility_id": 127,
"name": "PA - YORK HAVEN",
"city": "YORK HAVEN",
"state": "PA",
"zip": "17370",
"latitude": 40.1124200000000001864464138634502887725830078125,
"longitude": -76.7869299999999981309883878566324710845947265625
},
{
"platform": "copart",
"facility_id": 205,
"name": "QC - MONTREAL",
"city": "MONTREAL-EST",
"state": "QC",
"zip": "H1B",
"latitude": 45.64209000000000315822035190649330615997314453125,
"longitude": -73.5320999999999997953636921010911464691162109375
},
{
"platform": "copart",
"facility_id": 199,
"name": "RI - EXETER",
"city": "EXETER",
"state": "RI",
"zip": "02822",
"latitude": 41.57065999999999661440597265027463436126708984375,
"longitude": -71.6578899999999947567630442790687084197998046875
},
{
"platform": "copart",
"facility_id": 56,
"name": "SC - COLUMBIA",
"city": "GASTON",
"state": "SC",
"zip": "29053",
"latitude": 33.791730499999999892679625190794467926025390625,
"longitude": -81.0983628999999979214408085681498050689697265625
},
{
"platform": "copart",
"facility_id": 197,
"name": "SC - NORTH CHARLESTON",
"city": "HARLEYVILLE",
"state": "SC",
"zip": "29448",
"latitude": 33.20033000000000100726538221351802349090576171875,
"longitude": -80.4524899999999973942976794205605983734130859375
},
{
"platform": "copart",
"facility_id": 144,
"name": "SC - SPARTANBURG",
"city": "SPARTANBURG",
"state": "SC",
"zip": "29301",
"latitude": 34.9246499999999997498889570124447345733642578125,
"longitude": -82.0583199999999948204276734031736850738525390625
},
{
"platform": "copart",
"facility_id": 396,
"name": "SD - RAPID CITY",
"city": "RAPID CITY",
"state": "SD",
"zip": "57701",
"latitude": 44.11299100000000095178620540536940097808837890625,
"longitude": -103.1821939999999955261955619789659976959228515625
},
{
"platform": "copart",
"facility_id": 114,
"name": "TN - KNOXVILLE",
"city": "MADISONVILLE",
"state": "TN",
"zip": "37354",
"latitude": 35.4565199999999975943865138106048107147216796875,
"longitude": -84.4354000000000013415046851150691509246826171875
},
{
"platform": "copart",
"facility_id": 22,
"name": "TN - MEMPHIS",
"city": "MEMPHIS",
"state": "TN",
"zip": "38118",
"latitude": 35.0009299999999967667463351972401142120361328125,
"longitude": -89.9727400000000017143975128419697284698486328125
},
{
"platform": "copart",
"facility_id": 63,
"name": "TN - NASHVILLE",
"city": "LEBANON",
"state": "TN",
"zip": "37090",
"latitude": 36.16868000000000193949745153076946735382080078125,
"longitude": -86.296469999999999345163814723491668701171875
},
{
"platform": "copart",
"facility_id": 313,
"name": "CRASHEDTOYS DALLAS",
"city": "DALLAS",
"state": "TX",
"zip": "75247",
"latitude": 32.8185799999999971987563185393810272216796875,
"longitude": -96.8746799999999979036147124134004116058349609375
},
{
"platform": "copart",
"facility_id": 73,
"name": "TX - ABILENE",
"city": "ABILENE",
"state": "TX",
"zip": "79601",
"latitude": 32.52497439999999784276951686479151248931884765625,
"longitude": -99.744199199999997063059709034860134124755859375
},
{
"platform": "copart",
"facility_id": 95,
"name": "TX - AMARILLO",
"city": "AMARILLO",
"state": "TX",
"zip": "79118",
"latitude": 35.17204000000000263526089838705956935882568359375,
"longitude": -101.7407400000000023965185391716659069061279296875
},
{
"platform": "copart",
"facility_id": 185,
"name": "TX - ANDREWS",
"city": "ANDREWS",
"state": "TX",
"zip": "79714",
"latitude": 32.30975000000000108002495835535228252410888671875,
"longitude": -102.613460000000003446984919719398021697998046875
},
{
"platform": "copart",
"facility_id": 62,
"name": "TX - AUSTIN",
"city": "NEW BRAUNFELS",
"state": "TX",
"zip": "78130",
"latitude": 29.78672999999999859710442251525819301605224609375,
"longitude": -98.0296799999999990404830896295607089996337890625
},
{
"platform": "copart",
"facility_id": 96,
"name": "TX - CORPUS CHRISTI",
"city": "CORPUS CHRISTI",
"state": "TX",
"zip": "78405",
"latitude": 27.78732000000000113004716695286333560943603515625,
"longitude": -97.42622000000000070940586738288402557373046875
},
{
"platform": "copart",
"facility_id": 12,
"name": "TX - DALLAS",
"city": "GRAND PRAIRIE",
"state": "TX",
"zip": "75051",
"latitude": 32.74222999999999927922544884495437145233154296875,
"longitude": -96.952899999999999636202119290828704833984375
},
{
"platform": "copart",
"facility_id": 181,
"name": "TX - DALLAS SOUTH",
"city": "WILMER",
"state": "TX",
"zip": "75172",
"latitude": 32.601640000000003283275873400270938873291015625,
"longitude": -96.664749999999997953636921010911464691162109375
},
{
"platform": "copart",
"facility_id": 45,
"name": "TX - EL PASO",
"city": "ANTHONY",
"state": "TX",
"zip": "79821",
"latitude": 31.974669999999999703277353546582162380218505859375,
"longitude": -106.5878500000000030922819860279560089111328125
},
{
"platform": "copart",
"facility_id": 98,
"name": "TX - FT. WORTH",
"city": "HASLET",
"state": "TX",
"zip": "76052",
"latitude": 32.94548999999999949750417727045714855194091796875,
"longitude": -97.3796200000000027330315788276493549346923828125
},
{
"platform": "copart",
"facility_id": 11,
"name": "TX - HOUSTON",
"city": "HOUSTON",
"state": "TX",
"zip": "77073",
"latitude": 29.96858999999999895180735620670020580291748046875,
"longitude": -95.3735899999999929832483758218586444854736328125
},
{
"platform": "copart",
"facility_id": 357,
"name": "TX - HOUSTON EAST",
"city": "HOUSTON",
"state": "TX",
"zip": "77049",
"latitude": 29.851459999999999439523890032432973384857177734375,
"longitude": -95.15937999999999874489731155335903167724609375
},
{
"platform": "copart",
"facility_id": 14,
"name": "TX - LONGVIEW",
"city": "LONGVIEW",
"state": "TX",
"zip": "75603",
"latitude": 32.3748199999999997089616954326629638671875,
"longitude": -94.720560000000006084519554860889911651611328125
},
{
"platform": "copart",
"facility_id": 13,
"name": "TX - LUFKIN",
"city": "LUFKIN",
"state": "TX",
"zip": "75904",
"latitude": 31.320139999999998536850398522801697254180908203125,
"longitude": -94.7728900000000038517100620083510875701904296875
},
{
"platform": "copart",
"facility_id": 65,
"name": "TX - MCALLEN",
"city": "MERCEDES",
"state": "TX",
"zip": "78570",
"latitude": 26.161460000000001713260644464753568172454833984375,
"longitude": -97.894800000000003592504072003066539764404296875
},
{
"platform": "copart",
"facility_id": 394,
"name": "TX - NORTH AUSTIN",
"city": "TAYLOR",
"state": "TX",
"zip": "76574",
"latitude": 30.5852277999999984103851602412760257720947265625,
"longitude": -97.3472847999999970625140122137963771820068359375
},
{
"platform": "copart",
"facility_id": 74,
"name": "TX - SAN ANTONIO",
"city": "SAN ANTONIO",
"state": "TX",
"zip": "78224",
"latitude": 29.3083400000000011687006917782127857208251953125,
"longitude": -98.547290000000003828972694464027881622314453125
},
{
"platform": "copart",
"facility_id": 182,
"name": "TX - WACO",
"city": "TEMPLE",
"state": "TX",
"zip": "76501",
"latitude": 31.163150800000000373302100342698395252227783203125,
"longitude": -97.3170678000000037854988477192819118499755859375
},
{
"platform": "copart",
"facility_id": 188,
"name": "UT - OGDEN",
"city": "FARR WEST",
"state": "UT",
"zip": "84404",
"latitude": 41.32173999999999836063580005429685115814208984375,
"longitude": -112.028899999999993042365531437098979949951171875
},
{
"platform": "copart",
"facility_id": 336,
"name": "UT - SALT LAKE CITY",
"city": "MAGNA",
"state": "UT",
"zip": "84044",
"latitude": 40.72554000000000229420038522221148014068603515625,
"longitude": -112.0679300000000040427039493806660175323486328125
},
{
"platform": "copart",
"facility_id": 82,
"name": "VA - DANVILLE",
"city": "CHATHAM",
"state": "VA",
"zip": "24531",
"latitude": 36.7708999999999974761522025801241397857666015625,
"longitude": -79.3899899999999973942976794205605983734130859375
},
{
"platform": "copart",
"facility_id": 194,
"name": "VA - FREDERICKSBURG",
"city": "FREDERICKSBURG",
"state": "VA",
"zip": "22408",
"latitude": 38.19454999999999955662133288569748401641845703125,
"longitude": -77.4968300000000027694113668985664844512939453125
},
{
"platform": "copart",
"facility_id": 162,
"name": "VA - HAMPTON",
"city": "HAMPTON",
"state": "VA",
"zip": "23666",
"latitude": 37.070549999999997226041159592568874359130859375,
"longitude": -76.385009999999994079189491458237171173095703125
},
{
"platform": "copart",
"facility_id": 139,
"name": "VA - RICHMOND",
"city": "SANDSTON",
"state": "VA",
"zip": "23150",
"latitude": 37.52235999999999904730429989285767078399658203125,
"longitude": -77.28973999999999477950041182339191436767578125
},
{
"platform": "copart",
"facility_id": 101,
"name": "VA - RICHMOND EAST",
"city": "CHARLES CITY",
"state": "VA",
"zip": "23030",
"latitude": 37.4388000000000005229594535194337368011474609375,
"longitude": -77.1573900000000065801941673271358013153076171875
},
{
"platform": "copart",
"facility_id": 395,
"name": "VT - RUTLAND",
"city": "CENTER RUTLAND",
"state": "VT",
"zip": "05736",
"latitude": 43.59864329999999910114638623781502246856689453125,
"longitude": -73.022241600000000971704139374196529388427734375
},
{
"platform": "copart",
"facility_id": 64,
"name": "WA - GRAHAM",
"city": "GRAHAM",
"state": "WA",
"zip": "98338",
"latitude": 47.06098999999999676902007195167243480682373046875,
"longitude": -122.2931899999999956207830109633505344390869140625
},
{
"platform": "copart",
"facility_id": 48,
"name": "WA - NORTH SEATTLE",
"city": "ARLINGTON",
"state": "WA",
"zip": "98223",
"latitude": 48.14762999999999948386175674386322498321533203125,
"longitude": -122.161640000000005557012627832591533660888671875
},
{
"platform": "copart",
"facility_id": 71,
"name": "WA - PASCO",
"city": "PASCO",
"state": "WA",
"zip": "99301",
"latitude": 46.259489999999999554347596131265163421630859375,
"longitude": -119.092119999999994206518749706447124481201171875
},
{
"platform": "copart",
"facility_id": 337,
"name": "WA - SPANAWAY",
"city": "SPANAWAY",
"state": "WA",
"zip": "98387",
"latitude": 47.08867190000000135796653921715915203094482421875,
"longitude": -122.434482599999995500184013508260250091552734375
},
{
"platform": "copart",
"facility_id": 116,
"name": "WA - SPOKANE",
"city": "AIRWAY HEIGHTS",
"state": "WA",
"zip": "99001",
"latitude": 47.6269800000000032014213502407073974609375,
"longitude": -117.565740000000005238689482212066650390625
},
{
"platform": "copart",
"facility_id": 191,
"name": "WI - APPLETON",
"city": "APPLETON",
"state": "WI",
"zip": "54914",
"latitude": 44.24000000000000198951966012828052043914794921875,
"longitude": -88.47088999999999714418663643300533294677734375
},
{
"platform": "copart",
"facility_id": 308,
"name": "WI - MADISON SOUTH",
"city": "MCFARLAND",
"state": "WI",
"zip": "53558",
"latitude": 43.04072899999999890496837906539440155029296875,
"longitude": -89.242806000000001631633494980633258819580078125
},
{
"platform": "copart",
"facility_id": 339,
"name": "WI - MILWAUKEE NORTH",
"city": "MILWAUKEE",
"state": "WI",
"zip": "53224",
"latitude": 43.18374000000000023646862246096134185791015625,
"longitude": -88.048900000000003274180926382541656494140625
},
{
"platform": "copart",
"facility_id": 371,
"name": "WI - MILWAUKEE SOUTH",
"city": "FRANKLIN",
"state": "WI",
"zip": "53132",
"latitude": 42.86050490000000223744791583158075809478759765625,
"longitude": -88.0688229999999947494870866648852825164794921875
},
{
"platform": "copart",
"facility_id": 89,
"name": "WV - CHARLESTON",
"city": "HURRICANE",
"state": "WV",
"zip": "25526",
"latitude": 38.4140399999999999636202119290828704833984375,
"longitude": -82.019530000000003155946615152060985565185546875
},
{
"platform": "copart",
"facility_id": 328,
"name": "WY - CASPER",
"city": "CASPER",
"state": "WY",
"zip": "82601",
"latitude": 42.8836320999999998093699105083942413330078125,
"longitude": -106.3486439999999930705598671920597553253173828125
},
{
"platform": "iaai",
"facility_id": 372,
"name": "Anchorage",
"city": "Wasilla",
"state": "AK",
"zip": "99654",
"latitude": 61.5907499999999998863131622783839702606201171875,
"longitude": -149.48804999999998699422576464712619781494140625
},
{
"platform": "iaai",
"facility_id": 727,
"name": "Birmingham",
"city": "Bessemer",
"state": "AL",
"zip": "35022",
"latitude": 33.3732499999999987494447850622236728668212890625,
"longitude": -86.913330000000001973603502847254276275634765625
},
{
"platform": "iaai",
"facility_id": 731,
"name": "Dothan",
"city": "Headland",
"state": "AL",
"zip": "36345",
"latitude": 31.365140000000000242152964347042143344879150390625,
"longitude": -85.3279500000000012960299500264227390289306640625
},
{
"platform": "iaai",
"facility_id": 729,
"name": "Huntsville",
"city": "Athens",
"state": "AL",
"zip": "35613",
"latitude": 34.790829999999999699866748414933681488037109375,
"longitude": -86.8724700000000069621819420717656612396240234375
},
{
"platform": "iaai",
"facility_id": 435,
"name": "Fayetteville",
"city": "Lincoln",
"state": "AR",
"zip": "72744",
"latitude": 35.95228999999999786041371407918632030487060546875,
"longitude": -94.3782800000000037243808037601411342620849609375
},
{
"platform": "iaai",
"facility_id": 423,
"name": "Little Rock",
"city": "Scott",
"state": "AR",
"zip": "72142",
"latitude": 34.79265000000000185309545486234128475189208984375,
"longitude": -92.062579999999996971382643096148967742919921875
},
{
"platform": "iaai",
"facility_id": 151,
"name": "Phoenix",
"city": "Phoenix",
"state": "AZ",
"zip": "85041",
"latitude": 33.4057099999999991268850862979888916015625,
"longitude": -112.107380000000006248228601180016994476318359375
},
{
"platform": "iaai",
"facility_id": 424,
"name": "Tucson",
"city": "Tucson",
"state": "AZ",
"zip": "85714",
"latitude": 32.16116000000000241243469645269215106964111328125,
"longitude": -110.893270000000001118678483180701732635498046875
},
{
"platform": "iaai",
"facility_id": 200,
"name": "ACE - Carson",
"city": "Gardena",
"state": "CA",
"zip": "90248",
"latitude": 33.87734999999999985220711096189916133880615234375,
"longitude": -118.2818999999999931560523691587150096893310546875
},
{
"platform": "iaai",
"facility_id": 201,
"name": "ACE - Perris",
"city": "Perris",
"state": "CA",
"zip": "92571",
"latitude": 33.8564099999999967849362292326986789703369140625,
"longitude": -117.2381199999999950023266137577593326568603515625
},
{
"platform": "iaai",
"facility_id": 203,
"name": "ACE - Perris 2",
"city": "Perris",
"state": "CA",
"zip": "92571",
"latitude": 33.85790999999999684177964809350669384002685546875,
"longitude": -117.2452799999999939473127597011625766754150390625
},
{
"platform": "iaai",
"facility_id": 131,
"name": "Anaheim",
"city": "Anaheim",
"state": "CA",
"zip": "92806",
"latitude": 33.86131999999999919737092568539083003997802734375,
"longitude": -117.8667599999999993087840266525745391845703125
},
{
"platform": "iaai",
"facility_id": 907,
"name": "Anaheim Consolidated",
"city": "Anaheim",
"state": "CA",
"zip": "92806",
"latitude": 33.86104999999999876081346883438527584075927734375,
"longitude": -117.86696000000000594809534959495067596435546875
},
{
"platform": "iaai",
"facility_id": 332,
"name": "East Bay",
"city": "Bay Point",
"state": "CA",
"zip": "94565",
"latitude": 38.03220999999999918372850515879690647125244140625,
"longitude": -121.9430799999999948113327263854444026947021484375
},
{
"platform": "iaai",
"facility_id": 132,
"name": "Fontana",
"city": "Fontana",
"state": "CA",
"zip": "92335",
"latitude": 34.0734700000000003683453542180359363555908203125,
"longitude": -117.4966199999999929559635347686707973480224609375
},
{
"platform": "iaai",
"facility_id": 334,
"name": "Fremont",
"city": "Fremont",
"state": "CA",
"zip": "94538",
"latitude": 37.5068399999999968486008583568036556243896484375,
"longitude": -121.991659999999995989128365181386470794677734375
},
{
"platform": "iaai",
"facility_id": 337,
"name": "Fresno",
"city": "Fresno",
"state": "CA",
"zip": "93705",
"latitude": 36.76700000000000301270119962282478809356689453125,
"longitude": -119.8382100000000036743585951626300811767578125
},
{
"platform": "iaai",
"facility_id": 133,
"name": "High Desert",
"city": "Hesperia",
"state": "CA",
"zip": "92345",
"latitude": 34.45600999999999913825377007015049457550048828125,
"longitude": -117.2793099999999952842699713073670864105224609375
},
{
"platform": "iaai",
"facility_id": 134,
"name": "Los Angeles",
"city": "Gardena",
"state": "CA",
"zip": "90248",
"latitude": 33.86424000000000233967512031085789203643798828125,
"longitude": -118.2889799999999951296558720059692859649658203125
},
{
"platform": "iaai",
"facility_id": 130,
"name": "Los Angeles South",
"city": "Wilmington",
"state": "CA",
"zip": "90744",
"latitude": 33.79643999999999692818164476193487644195556640625,
"longitude": -118.2462900000000018962964531965553760528564453125
},
{
"platform": "iaai",
"facility_id": 111,
"name": "North Hollywood",
"city": "North Hollywood",
"state": "CA",
"zip": "91605",
"latitude": 34.20266000000000161662683240137994289398193359375,
"longitude": -118.3968100000000021054802346043288707733154296875
},
{
"platform": "iaai",
"facility_id": 135,
"name": "Riverside",
"city": "Riverside",
"state": "CA",
"zip": "92509-1103",
"latitude": 34.0233300000000014051693142391741275787353515625,
"longitude": -117.4641299999999972669684211723506450653076171875
},
{
"platform": "iaai",
"facility_id": 331,
"name": "Sacramento",
"city": "Rancho Cordova",
"state": "CA",
"zip": "95742",
"latitude": 38.55982999999999805140760145150125026702880859375,
"longitude": -121.2528999999999967940311762504279613494873046875
},
{
"platform": "iaai",
"facility_id": 120,
"name": "Sacramento West",
"city": "Dixon",
"state": "CA",
"zip": "95620",
"latitude": 38.41532000000000124373400467447936534881591796875,
"longitude": -121.81373999999999568899511359632015228271484375
},
{
"platform": "iaai",
"facility_id": 116,
"name": "San Diego",
"city": "San Diego",
"state": "CA",
"zip": "92154",
"latitude": 32.55602999999999980218490236438810825347900390625,
"longitude": -116.9805000000000063664629124104976654052734375
},
{
"platform": "iaai",
"facility_id": 128,
"name": "Santa Clarita",
"city": "Santa Clarita",
"state": "CA",
"zip": "91387",
"latitude": 34.43330999999999875171852181665599346160888671875,
"longitude": -118.3891200000000054615156841464340686798095703125
},
{
"platform": "iaai",
"facility_id": 138,
"name": "Stockton",
"city": "Stockton",
"state": "CA",
"zip": "95205",
"latitude": 37.99096999999999724195731687359511852264404296875,
"longitude": -121.2603199999999930014382698573172092437744140625
},
{
"platform": "iaai",
"facility_id": 377,
"name": "Colorado Springs",
"city": "Colorado Springs",
"state": "CO",
"zip": "80925",
"latitude": 38.76807000000000158479451783932745456695556640625,
"longitude": -104.6704199999999929104887996800243854522705078125
},
{
"platform": "iaai",
"facility_id": 374,
"name": "Denver East",
"city": "Commerce City",
"state": "CO",
"zip": "80022",
"latitude": 39.8502500000000026147972675971686840057373046875,
"longitude": -104.9160700000000048248693929053843021392822265625
},
{
"platform": "iaai",
"facility_id": 371,
"name": "Western Colorado",
"city": "Delta",
"state": "CO",
"zip": "81416",
"latitude": 38.762079999999997426129993982613086700439453125,
"longitude": -108.1245899999999977580955601297318935394287109375
},
{
"platform": "iaai",
"facility_id": 623,
"name": "Hartford",
"city": "East Windsor",
"state": "CT",
"zip": "06088",
"latitude": 41.92137000000000313093551085330545902252197265625,
"longitude": -72.592839999999995370671967975795269012451171875
},
{
"platform": "iaai",
"facility_id": 620,
"name": "New Castle",
"city": "New Castle",
"state": "DE",
"zip": "19720",
"latitude": 39.69845000000000112549969344399869441986083984375,
"longitude": -75.6174500000000051613824325613677501678466796875
},
{
"platform": "iaai",
"facility_id": 745,
"name": "Clearwater",
"city": "Clearwater",
"state": "FL",
"zip": "33760",
"latitude": 27.885929999999998329940353869460523128509521484375,
"longitude": -82.703789999999997917257132939994335174560546875
},
{
"platform": "iaai",
"facility_id": 749,
"name": "Fort Myers",
"city": "Fort Myers",
"state": "FL",
"zip": "33913",
"latitude": 26.607350000000000278532752417959272861480712890625,
"longitude": -81.76533000000000583895598538219928741455078125
},
{
"platform": "iaai",
"facility_id": 763,
"name": "Fort Pierce",
"city": "Fort Pierce",
"state": "FL",
"zip": "34981",
"latitude": 27.396519999999998873363438178785145282745361328125,
"longitude": -80.362120000000004438334144651889801025390625
},
{
"platform": "iaai",
"facility_id": 712,
"name": "Jacksonville",
"city": "Jacksonville",
"state": "FL",
"zip": "32218",
"latitude": 30.516960000000000974296199274249374866485595703125,
"longitude": -81.627520000000004074536263942718505859375
},
{
"platform": "iaai",
"facility_id": 736,
"name": "Miami-North",
"city": "Southwest Ranches",
"state": "FL",
"zip": "33332",
"latitude": 26.052859999999999018882590462453663349151611328125,
"longitude": -80.422560000000004265530151315033435821533203125
},
{
"platform": "iaai",
"facility_id": 732,
"name": "Orlando",
"city": "Orlando",
"state": "FL",
"zip": "32824",
"latitude": 28.422309999999999519104676437564194202423095703125,
"longitude": -81.378209999999995716279954649507999420166015625
},
{
"platform": "iaai",
"facility_id": 743,
"name": "Orlando-North",
"city": "Sanford",
"state": "FL",
"zip": "32773",
"latitude": 28.786030000000000228510543820448219776153564453125,
"longitude": -81.217410000000000991349224932491779327392578125
},
{
"platform": "iaai",
"facility_id": 737,
"name": "Pensacola",
"city": "Milton",
"state": "FL",
"zip": "32583",
"latitude": 30.676480000000001524540493846870958805084228515625,
"longitude": -86.85012000000000398358679376542568206787109375
},
{
"platform": "iaai",
"facility_id": 713,
"name": "Tampa",
"city": "Palmetto",
"state": "FL",
"zip": "34221",
"latitude": 27.529579999999999273541106958873569965362548828125,
"longitude": -82.5515999999999934289007796905934810638427734375
},
{
"platform": "iaai",
"facility_id": 778,
"name": "Tampa North",
"city": "Hudson",
"state": "FL",
"zip": "34667",
"latitude": 28.38195999999999941110218060202896595001220703125,
"longitude": -82.6683100000000052887116908095777034759521484375
},
{
"platform": "iaai",
"facility_id": 784,
"name": "West Palm Beach",
"city": "Jupiter",
"state": "FL",
"zip": "33478",
"latitude": 26.907830000000000580939740757457911968231201171875,
"longitude": -80.2738800000000054524207371287047863006591796875
},
{
"platform": "iaai",
"facility_id": 710,
"name": "Atlanta",
"city": "Loganville",
"state": "GA",
"zip": "30052",
"latitude": 33.72494999999999976125764078460633754730224609375,
"longitude": -83.912610000000000809450284577906131744384765625
},
{
"platform": "iaai",
"facility_id": 707,
"name": "Atlanta East",
"city": "Winder",
"state": "GA",
"zip": "30680",
"latitude": 33.97597999999999984765963745303452014923095703125,
"longitude": -83.6572900000000032605385058559477329254150390625
},
{
"platform": "iaai",
"facility_id": 706,
"name": "Atlanta North",
"city": "Acworth",
"state": "GA",
"zip": "30101",
"latitude": 34.0791200000000031877789297141134738922119140625,
"longitude": -84.732179999999999608917278237640857696533203125
},
{
"platform": "iaai",
"facility_id": 705,
"name": "Atlanta South",
"city": "Lake City",
"state": "GA",
"zip": "30260",
"latitude": 33.60065999999999775127434986643493175506591796875,
"longitude": -84.326380000000000336513039655983448028564453125
},
{
"platform": "iaai",
"facility_id": 793,
"name": "Atlanta West",
"city": "Rockmart",
"state": "GA",
"zip": "30153",
"latitude": 34.0249299999999976762410369701683521270751953125,
"longitude": -85.0505500000000012050804798491299152374267578125
},
{
"platform": "iaai",
"facility_id": 702,
"name": "Lake City",
"city": "Lake City",
"state": "GA",
"zip": "30260",
"latitude": 33.60027000000000185764292837120592594146728515625,
"longitude": -84.3312700000000035061020753346383571624755859375
},
{
"platform": "iaai",
"facility_id": 734,
"name": "Macon",
"city": "Macon",
"state": "GA",
"zip": "31217",
"latitude": 32.84803000000000139380063046701252460479736328125,
"longitude": -83.58481000000000449290382675826549530029296875
},
{
"platform": "iaai",
"facility_id": 704,
"name": "Savannah",
"city": "Rincon",
"state": "GA",
"zip": "31326",
"latitude": 32.24902999999999764213498565368354320526123046875,
"longitude": -81.198430000000001882654032669961452484130859375
},
{
"platform": "iaai",
"facility_id": 703,
"name": "Tifton",
"city": "Tifton",
"state": "GA",
"zip": "31794",
"latitude": 31.40268999999999977035258780233561992645263671875,
"longitude": -83.489769999999992933226167224347591400146484375
},
{
"platform": "iaai",
"facility_id": 114,
"name": "Honolulu",
"city": "Kapolei",
"state": "HI",
"zip": "96707",
"latitude": 21.320589999999999264446159941144287586212158203125,
"longitude": -158.118210000000004811226972378790378570556640625
},
{
"platform": "iaai",
"facility_id": 534,
"name": "Davenport",
"city": "Davenport",
"state": "IA",
"zip": "52802",
"latitude": 41.4757699999999971396391629241406917572021484375,
"longitude": -90.654480000000006612026481889188289642333984375
},
{
"platform": "iaai",
"facility_id": 536,
"name": "Des Moines",
"city": "De Soto",
"state": "IA",
"zip": "50069",
"latitude": 41.54108999999999696228769607841968536376953125,
"longitude": -94.0195800000000048157744458876550197601318359375
},
{
"platform": "iaai",
"facility_id": 341,
"name": "Boise",
"city": "Meridian",
"state": "ID",
"zip": "83642",
"latitude": 43.60851000000000254885890171863138675689697265625,
"longitude": -116.4169399999999967576513881795108318328857421875
},
{
"platform": "iaai",
"facility_id": 514,
"name": "Chicago-North",
"city": "East Dundee",
"state": "IL",
"zip": "60118",
"latitude": 42.0851499999999987267074175179004669189453125,
"longitude": -88.2351000000000027512214728631079196929931640625
},
{
"platform": "iaai",
"facility_id": 515,
"name": "Chicago-South",
"city": "Markham",
"state": "IL",
"zip": "60428",
"latitude": 41.59042000000000172121872310526669025421142578125,
"longitude": -87.713539999999994734025676734745502471923828125
},
{
"platform": "iaai",
"facility_id": 511,
"name": "Chicago-West",
"city": "Aurora",
"state": "IL",
"zip": "60505",
"latitude": 41.79030999999999806959749548695981502532958984375,
"longitude": -88.3075400000000030331648304127156734466552734375
},
{
"platform": "iaai",
"facility_id": 817,
"name": "Dream Rides",
"city": "Westchester",
"state": "IL",
"zip": "60154",
"latitude": 42.76529000000000024783730623312294483184814453125,
"longitude": -71.245239999999995461621438153088092803955078125
},
{
"platform": "iaai",
"facility_id": 816,
"name": "Electric Vehicle Auctions",
"city": "Westchester",
"state": "IL",
"zip": "60154",
"latitude": 41.84615999999999758074409328401088714599609375,
"longitude": -87.904640000000000554791768081486225128173828125
},
{
"platform": "iaai",
"facility_id": 825,
"name": "Gov Auctions Zone 1",
"city": "Westchester",
"state": "IL",
"zip": "60154",
"latitude": 41.84615999999999758074409328401088714599609375,
"longitude": -87.904640000000000554791768081486225128173828125
},
{
"platform": "iaai",
"facility_id": 826,
"name": "Gov Auctions Zone 2",
"city": "Westchester",
"state": "IL",
"zip": "60154",
"latitude": 41.84615999999999758074409328401088714599609375,
"longitude": -87.904640000000000554791768081486225128173828125
},
{
"platform": "iaai",
"facility_id": 827,
"name": "Gov Auctions Zone 3",
"city": "Westchester",
"state": "IL",
"zip": "60154",
"latitude": 41.84615999999999758074409328401088714599609375,
"longitude": -87.904640000000000554791768081486225128173828125
},
{
"platform": "iaai",
"facility_id": 828,
"name": "Gov Auctions Zone 4",
"city": "Westchester",
"state": "IL",
"zip": "60154",
"latitude": 41.84615999999999758074409328401088714599609375,
"longitude": -87.904640000000000554791768081486225128173828125
},
{
"platform": "iaai",
"facility_id": 509,
"name": "Lincoln",
"city": "Lincoln",
"state": "IL",
"zip": "62656",
"latitude": 40.156059999999996534825186245143413543701171875,
"longitude": -89.408199999999993679011822678148746490478515625
},
{
"platform": "iaai",
"facility_id": 813,
"name": "REC RIDES - Online-Exclusive",
"city": "Westchester",
"state": "IL",
"zip": "60154",
"latitude": 42.06537999999999755118551547639071941375732421875,
"longitude": -88.03086999999999306965037249028682708740234375
},
{
"platform": "iaai",
"facility_id": 811,
"name": "Specialty Division",
"city": "Schaumburg",
"state": "IL",
"zip": "60173",
"latitude": 42.06510999999999711462805862538516521453857421875,
"longitude": -88.030879999999996243786881677806377410888671875
},
{
"platform": "iaai",
"facility_id": 524,
"name": "St. Louis",
"city": "Caseyville",
"state": "IL",
"zip": "62232",
"latitude": 38.6146600000000006502887117676436901092529296875,
"longitude": -90.051680000000004611138137988746166229248046875
},
{
"platform": "iaai",
"facility_id": 547,
"name": "Fort Wayne",
"city": "Fort Wayne",
"state": "IN",
"zip": "46806",
"latitude": 41.05275000000000318323145620524883270263671875,
"longitude": -85.0846099999999978535925038158893585205078125
},
{
"platform": "iaai",
"facility_id": 541,
"name": "Indianapolis",
"city": "Indianapolis",
"state": "IN",
"zip": "46217",
"latitude": 39.7164599999999978763298713602125644683837890625,
"longitude": -86.1917499999999989768184605054557323455810546875
},
{
"platform": "iaai",
"facility_id": 548,
"name": "Indianapolis South",
"city": "Crothersville",
"state": "IN",
"zip": "47229",
"latitude": 38.8658300000000025420376914553344249725341796875,
"longitude": -85.809629999999998517523636110126972198486328125
},
{
"platform": "iaai",
"facility_id": 542,
"name": "South Bend",
"city": "South Bend",
"state": "IN",
"zip": "46619",
"latitude": 41.67199000000000097543306765146553516387939453125,
"longitude": -86.3633300000000048157744458876550197601318359375
},
{
"platform": "iaai",
"facility_id": 527,
"name": "Kansas City",
"city": "Kansas City",
"state": "KS",
"zip": "66111",
"latitude": 39.05295000000000271711542154662311077117919921875,
"longitude": -94.7815499999999957481122692115604877471923828125
},
{
"platform": "iaai",
"facility_id": 533,
"name": "Wichita",
"city": "Park City",
"state": "KS",
"zip": "67219",
"latitude": 37.79388999999999754209056845866143703460693359375,
"longitude": -97.335970000000003210516297258436679840087890625
},
{
"platform": "iaai",
"facility_id": 651,
"name": "Ashland",
"city": "Ashland",
"state": "KY",
"zip": "41102",
"latitude": 38.43858999999999781493897899053990840911865234375,
"longitude": -82.7228499999999939973349682986736297607421875
},
{
"platform": "iaai",
"facility_id": 658,
"name": "Bowling Green",
"city": "Bowling Green",
"state": "KY",
"zip": "42101",
"latitude": 37.000360000000000582076609134674072265625,
"longitude": -86.4564600000000069712768890894949436187744140625
},
{
"platform": "iaai",
"facility_id": 669,
"name": "Louisville North",
"city": "Eminence",
"state": "KY",
"zip": "40019",
"latitude": 38.3707399999999978490450303070247173309326171875,
"longitude": -85.1909699999999929787009023129940032958984375
},
{
"platform": "iaai",
"facility_id": 659,
"name": "Paducah",
"city": "Paducah",
"state": "KY",
"zip": "42003",
"latitude": 37.03311999999999670762917958199977874755859375,
"longitude": -88.6019500000000022055246517993509769439697265625
},
{
"platform": "iaai",
"facility_id": 422,
"name": "Baton Rouge",
"city": "Carville",
"state": "LA",
"zip": "70721",
"latitude": 30.216660000000000962927515502087771892547607421875,
"longitude": -91.087909999999993715391610749065876007080078125
},
{
"platform": "iaai",
"facility_id": 760,
"name": "Lafayette",
"city": "Scott",
"state": "LA",
"zip": "70583",
"latitude": 30.2562199999999990041033015586435794830322265625,
"longitude": -92.1081899999999933470462565310299396514892578125
},
{
"platform": "iaai",
"facility_id": 432,
"name": "New Orleans East",
"city": "New Orleans",
"state": "LA",
"zip": "70126",
"latitude": 30.003589999999999093915903358720242977142333984375,
"longitude": -90.010909999999995534381014294922351837158203125
},
{
"platform": "iaai",
"facility_id": 434,
"name": "Shreveport",
"city": "Greenwood",
"state": "LA",
"zip": "71033",
"latitude": 32.44715000000000060254023992456495761871337890625,
"longitude": -93.9721100000000006957634468562901020050048828125
},
{
"platform": "iaai",
"facility_id": 609,
"name": "Boston - Shirley",
"city": "Shirley",
"state": "MA",
"zip": "01464",
"latitude": 42.58771999999999735564415459521114826202392578125,
"longitude": -71.6622799999999955389284878037869930267333984375
},
{
"platform": "iaai",
"facility_id": 640,
"name": "Taunton",
"city": "East Taunton",
"state": "MA",
"zip": "02718",
"latitude": 41.8497100000000017416823538951575756072998046875,
"longitude": -70.9926899999999960755303618498146533966064453125
},
{
"platform": "iaai",
"facility_id": 617,
"name": "Templeton",
"city": "Templeton",
"state": "MA",
"zip": "01468",
"latitude": 42.57173999999999836063580005429685115814208984375,
"longitude": -72.071470000000005029505700804293155670166015625
},
{
"platform": "iaai",
"facility_id": 719,
"name": "Baltimore",
"city": "Baltimore",
"state": "MD",
"zip": "21226",
"latitude": 39.2023099999999971032593748532235622406005859375,
"longitude": -76.5584099999999949659468256868422031402587890625
},
{
"platform": "iaai",
"facility_id": 770,
"name": "Dundalk",
"city": "Dundalk",
"state": "MD",
"zip": "21222",
"latitude": 39.2683200000000027785063139162957668304443359375,
"longitude": -76.4598299999999966303221299313008785247802734375
},
{
"platform": "iaai",
"facility_id": 786,
"name": "Elkton",
"city": "Elkton",
"state": "MD",
"zip": "21921",
"latitude": 39.6296999999999997044142219237983226776123046875,
"longitude": -75.8666500000000070258465711958706378936767578125
},
{
"platform": "iaai",
"facility_id": 721,
"name": "Metro DC",
"city": "Brandywine",
"state": "MD",
"zip": "20613",
"latitude": 38.6968499999999977490006131120026111602783203125,
"longitude": -76.84642999999999801730155013501644134521484375
},
{
"platform": "iaai",
"facility_id": 810,
"name": "Online Exclusive",
"city": "Clinton",
"state": "ME",
"zip": "04927",
"latitude": 42.06407999999999702822606195695698261260986328125,
"longitude": -88.0336199999999990950527717359364032745361328125
},
{
"platform": "iaai",
"facility_id": 670,
"name": "Portland - Gorham",
"city": "Gorham",
"state": "ME",
"zip": "04038",
"latitude": 43.66501000000000232148522627539932727813720703125,
"longitude": -70.4608699999999998908606357872486114501953125
},
{
"platform": "iaai",
"facility_id": 904,
"name": "Virtual Lane A",
"city": "Clinton",
"state": "ME",
"zip": "04927",
"latitude": 44.63855000000000217141860048286616802215576171875,
"longitude": -69.515749999999997044142219237983226776123046875
},
{
"platform": "iaai",
"facility_id": 905,
"name": "Virtual Lane B",
"city": "Clinton",
"state": "ME",
"zip": "04927",
"latitude": 44.64233999999999724650479038245975971221923828125,
"longitude": -69.4972800000000034970071283169090747833251953125
},
{
"platform": "iaai",
"facility_id": 906,
"name": "Virtual Lane C",
"city": "Clinton",
"state": "ME",
"zip": "04927",
"latitude": 44.64233999999999724650479038245975971221923828125,
"longitude": -69.4972800000000034970071283169090747833251953125
},
{
"platform": "iaai",
"facility_id": 516,
"name": "Detroit",
"city": "Belleville",
"state": "MI",
"zip": "48111",
"latitude": 42.17161999999999721921994932927191257476806640625,
"longitude": -83.5409700000000015052137314341962337493896484375
},
{
"platform": "iaai",
"facility_id": 502,
"name": "Flint",
"city": "Flint",
"state": "MI",
"zip": "48507",
"latitude": 42.984679999999997335180523805320262908935546875,
"longitude": -83.7822000000000031150193535722792148590087890625
},
{
"platform": "iaai",
"facility_id": 518,
"name": "Grand Rapids",
"city": "Byron Center",
"state": "MI",
"zip": "49315",
"latitude": 42.78265999999999991132426657713949680328369140625,
"longitude": -85.680530000000004520188667811453342437744140625
},
{
"platform": "iaai",
"facility_id": 528,
"name": "Minneapolis South",
"city": "Randolph",
"state": "MN",
"zip": "55065",
"latitude": 44.53970000000000339923644787631928920745849609375,
"longitude": -93.003680000000002792148734442889690399169921875
},
{
"platform": "iaai",
"facility_id": 526,
"name": "Minneapolis/St. Paul",
"city": "Saint Paul",
"state": "MN",
"zip": "55117",
"latitude": 44.979500000000001591615728102624416351318359375,
"longitude": -93.0964000000000027057467377744615077972412109375
},
{
"platform": "iaai",
"facility_id": 551,
"name": "St. Cloud",
"city": "Rice",
"state": "MN",
"zip": "56367",
"latitude": 45.76458000000000225782059715129435062408447265625,
"longitude": -94.2171299999999973806552588939666748046875
},
{
"platform": "iaai",
"facility_id": 530,
"name": "Kansas City East",
"city": "Odessa",
"state": "MO",
"zip": "64076",
"latitude": 39.0087299999999999045030563138425350189208984375,
"longitude": -93.9888399999999961664798320271074771881103515625
},
{
"platform": "iaai",
"facility_id": 531,
"name": "Springfield",
"city": "Springfield",
"state": "MO",
"zip": "65803",
"latitude": 37.221800000000001773514668457210063934326171875,
"longitude": -93.3583899999999999863575794734060764312744140625
},
{
"platform": "iaai",
"facility_id": 428,
"name": "Grenada",
"city": "Grenada",
"state": "MS",
"zip": "38901",
"latitude": 33.6351700000000022328094928525388240814208984375,
"longitude": -89.7955299999999994042809703387320041656494140625
},
{
"platform": "iaai",
"facility_id": 427,
"name": "Gulf Coast",
"city": "Moss Point",
"state": "MS",
"zip": "39562",
"latitude": 30.418209999999998416342350537888705730438232421875,
"longitude": -88.469639999999998281055013649165630340576171875
},
{
"platform": "iaai",
"facility_id": 425,
"name": "Jackson",
"city": "Byram",
"state": "MS",
"zip": "39272",
"latitude": 32.16017000000000081172402133233845233917236328125,
"longitude": -90.278009999999994761310517787933349609375
},
{
"platform": "iaai",
"facility_id": 361,
"name": "Billings",
"city": "Billings",
"state": "MT",
"zip": "59101",
"latitude": 45.8011800000000022237145458348095417022705078125,
"longitude": -108.4610899999999986675902619026601314544677734375
},
{
"platform": "iaai",
"facility_id": 360,
"name": "Missoula",
"city": "Missoula",
"state": "MT",
"zip": "59808",
"latitude": 46.940820000000002210072125308215618133544921875,
"longitude": -114.1381899999999944839146337471902370452880859375
},
{
"platform": "iaai",
"facility_id": 751,
"name": "Asheville",
"city": "Fletcher",
"state": "NC",
"zip": "28732",
"latitude": 35.41443000000000296267899102531373500823974609375,
"longitude": -82.5056900000000013051248970441520214080810546875
},
{
"platform": "iaai",
"facility_id": 714,
"name": "Charlotte",
"city": "Charlotte",
"state": "NC",
"zip": "28206",
"latitude": 35.27734000000000236241248785518109798431396484375,
"longitude": -80.964889999999996916812960989773273468017578125
},
{
"platform": "iaai",
"facility_id": 746,
"name": "Concord",
"city": "Concord",
"state": "NC",
"zip": "28025",
"latitude": 35.46549999999999869260136620141565799713134765625,
"longitude": -80.4934099999999972396835801191627979278564453125
},
{
"platform": "iaai",
"facility_id": 715,
"name": "Greensboro",
"city": "Graham",
"state": "NC",
"zip": "27253",
"latitude": 36.00742000000000331283445120789110660552978515625,
"longitude": -79.387529999999998153725755400955677032470703125
},
{
"platform": "iaai",
"facility_id": 790,
"name": "High Point",
"city": "High Point",
"state": "NC",
"zip": "27263",
"latitude": 35.91217000000000325599103234708309173583984375,
"longitude": -80.0335299999999989495336194522678852081298828125
},
{
"platform": "iaai",
"facility_id": 747,
"name": "Raleigh",
"city": "Clayton",
"state": "NC",
"zip": "27520",
"latitude": 35.590429999999997789927874691784381866455078125,
"longitude": -78.398830000000003792592906393110752105712890625
},
{
"platform": "iaai",
"facility_id": 733,
"name": "Wilmington",
"city": "Castle Hayne",
"state": "NC",
"zip": "28429",
"latitude": 34.329340000000001964508555829524993896484375,
"longitude": -77.905889999999999417923390865325927734375
},
{
"platform": "iaai",
"facility_id": 363,
"name": "Fargo",
"city": "Fargo",
"state": "ND",
"zip": "58102",
"latitude": 46.9390700000000009595169103704392910003662109375,
"longitude": -96.837729999999993424353306181728839874267578125
},
{
"platform": "iaai",
"facility_id": 525,
"name": "Omaha",
"city": "Springfield",
"state": "NE",
"zip": "68059",
"latitude": 41.09720999999999690999175072647631168365478515625,
"longitude": -96.1458400000000068530425778590142726898193359375
},
{
"platform": "iaai",
"facility_id": 539,
"name": "Omaha South",
"city": "Greenwood",
"state": "NE",
"zip": "68366",
"latitude": 40.97950999999999766032487968914210796356201171875,
"longitude": -96.3965199999999953206497593782842159271240234375
},
{
"platform": "iaai",
"facility_id": 643,
"name": "Manchester",
"city": "Salem",
"state": "NH",
"zip": "03079",
"latitude": 42.764420000000001209627953357994556427001953125,
"longitude": -71.248909999999995079633663408458232879638671875
},
{
"platform": "iaai",
"facility_id": 607,
"name": "Avenel New Jersey",
"city": "Avenel",
"state": "NJ",
"zip": "07001",
"latitude": 40.59745000000000203499439521692693233489990234375,
"longitude": -74.2572899999999975761966197751462459564208984375
},
{
"platform": "iaai",
"facility_id": 614,
"name": "Central New Jersey",
"city": "Morganville",
"state": "NJ",
"zip": "07751",
"latitude": 40.3736099999999993315213941968977451324462890625,
"longitude": -74.2724999999999937472239253111183643341064453125
},
{
"platform": "iaai",
"facility_id": 611,
"name": "Englishtown",
"city": "Manalapan",
"state": "NJ",
"zip": "07726",
"latitude": 40.3333099999999973306330502964556217193603515625,
"longitude": -74.3493600000000043337422539480030536651611328125
},
{
"platform": "iaai",
"facility_id": 621,
"name": "Port Murray",
"city": "Port Murray",
"state": "NJ",
"zip": "07865",
"latitude": 40.78457999999999827878127689473330974578857421875,
"longitude": -74.90492000000000416548573412001132965087890625
},
{
"platform": "iaai",
"facility_id": 606,
"name": "Sayreville",
"city": "Sayreville",
"state": "NJ",
"zip": "08872",
"latitude": 40.43992999999999682358975405804812908172607421875,
"longitude": -74.354320000000001300577423535287380218505859375
},
{
"platform": "iaai",
"facility_id": 612,
"name": "Southern New Jersey",
"city": "Turnersville",
"state": "NJ",
"zip": "08012",
"latitude": 39.78902000000000072077455115504562854766845703125,
"longitude": -75.0869100000000031513991416431963443756103515625
},
{
"platform": "iaai",
"facility_id": 140,
"name": "Albuquerque",
"city": "Albuquerque",
"state": "NM",
"zip": "87105",
"latitude": 35.014319999999997889972291886806488037109375,
"longitude": -106.6477699999999941837813821621239185333251953125
},
{
"platform": "iaai",
"facility_id": 152,
"name": "Las Vegas",
"city": "Las Vegas",
"state": "NV",
"zip": "89122",
"latitude": 36.132350000000002410160959698259830474853515625,
"longitude": -115.0321699999999935926098260097205638885498046875
},
{
"platform": "iaai",
"facility_id": 154,
"name": "Reno",
"city": "Mccarran",
"state": "NV",
"zip": "89437",
"latitude": 39.5197399999999987585397320799529552459716796875,
"longitude": -119.4737899999999939382178126834332942962646484375
},
{
"platform": "iaai",
"facility_id": 631,
"name": "Albany",
"city": "Schenectady",
"state": "NY",
"zip": "12303",
"latitude": 42.74013000000000062073013396002352237701416015625,
"longitude": -73.890320000000002664819476194679737091064453125
},
{
"platform": "iaai",
"facility_id": 624,
"name": "Buffalo",
"city": "Buffalo",
"state": "NY",
"zip": "14207",
"latitude": 42.9635999999999995679900166578590869903564453125,
"longitude": -78.9027200000000021873347577638924121856689453125
},
{
"platform": "iaai",
"facility_id": 613,
"name": "Long Island",
"city": "Medford",
"state": "NY",
"zip": "11763",
"latitude": 40.8166599999999988312993082217872142791748046875,
"longitude": -72.9735500000000030240698833949863910675048828125
},
{
"platform": "iaai",
"facility_id": 672,
"name": "Monticello",
"city": "Monticello",
"state": "NY",
"zip": "12701",
"latitude": 41.67065000000000196678229258395731449127197265625,
"longitude": -74.719369999999997844497556798160076141357421875
},
{
"platform": "iaai",
"facility_id": 635,
"name": "Newburgh",
"city": "Rock Tavern",
"state": "NY",
"zip": "12575",
"latitude": 41.53538999999999958845364744774997234344482421875,
"longitude": -74.1337500000000062527760746888816356658935546875
},
{
"platform": "iaai",
"facility_id": 671,
"name": "Rochester",
"city": "Bergen",
"state": "NY",
"zip": "14416",
"latitude": 43.06981999999999999317878973670303821563720703125,
"longitude": -77.940730000000002064552973024547100067138671875
},
{
"platform": "iaai",
"facility_id": 673,
"name": "Staten Island",
"city": "Staten Island",
"state": "NY",
"zip": "10314",
"latitude": 40.6021199999999993224264471791684627532958984375,
"longitude": -74.1941800000000029058355721645057201385498046875
},
{
"platform": "iaai",
"facility_id": 628,
"name": "Syracuse",
"city": "Cicero",
"state": "NY",
"zip": "13039",
"latitude": 43.1794900000000012596501619555056095123291015625,
"longitude": -76.1246100000000041063685785047709941864013671875
},
{
"platform": "iaai",
"facility_id": 660,
"name": "Akron-Canton",
"city": "New Philadelphia",
"state": "OH",
"zip": "44663",
"latitude": 40.45279000000000024783730623312294483184814453125,
"longitude": -81.40321000000000140062184073030948638916015625
},
{
"platform": "iaai",
"facility_id": 653,
"name": "Cincinnati",
"city": "West Chester",
"state": "OH",
"zip": "45069",
"latitude": 39.3021600000000006502887117676436901092529296875,
"longitude": -84.4365600000000000591171556152403354644775390625
},
{
"platform": "iaai",
"facility_id": 661,
"name": "Cincinnati-South",
"city": "Amelia",
"state": "OH",
"zip": "45102",
"latitude": 38.99168999999999840611053514294326305389404296875,
"longitude": -84.2051699999999954115992295555770397186279296875
},
{
"platform": "iaai",
"facility_id": 663,
"name": "Cleveland",
"city": "Lorain",
"state": "OH",
"zip": "44053",
"latitude": 41.4118500000000011596057447604835033416748046875,
"longitude": -82.2770100000000041973180486820638179779052734375
},
{
"platform": "iaai",
"facility_id": 662,
"name": "Columbus",
"city": "Grove City",
"state": "OH",
"zip": "43123",
"latitude": 39.8887500000000017053025658242404460906982421875,
"longitude": -83.0356199999999944338924251496791839599609375
},
{
"platform": "iaai",
"facility_id": 656,
"name": "Dayton",
"city": "Dayton",
"state": "OH",
"zip": "45417",
"latitude": 39.74020999999999759211277705617249011993408203125,
"longitude": -84.29279999999999972715158946812152862548828125
},
{
"platform": "iaai",
"facility_id": 421,
"name": "Oklahoma City",
"city": "Oklahoma City",
"state": "OK",
"zip": "73121",
"latitude": 35.5451800000000019963408703915774822235107421875,
"longitude": -97.4556299999999993133315001614391803741455078125
},
{
"platform": "iaai",
"facility_id": 436,
"name": "Tulsa",
"city": "Tulsa",
"state": "OK",
"zip": "74107",
"latitude": 36.09801999999999821966412127949297428131103515625,
"longitude": -96.051410000000004174580681137740612030029296875
},
{
"platform": "iaai",
"facility_id": 309,
"name": "Eugene",
"city": "Eugene",
"state": "OR",
"zip": "97402",
"latitude": 44.07242000000000103909769677557051181793212890625,
"longitude": -123.1388199999999955025486997328698635101318359375
},
{
"platform": "iaai",
"facility_id": 308,
"name": "Portland",
"city": "Portland",
"state": "OR",
"zip": "97230",
"latitude": 45.5558199999999970941644278354942798614501953125,
"longitude": -122.5002199999999987767296261154115200042724609375
},
{
"platform": "iaai",
"facility_id": 315,
"name": "Portland South",
"city": "Woodburn",
"state": "OR",
"zip": "97071",
"latitude": 45.13015999999999650071913492865860462188720703125,
"longitude": -122.8505799999999936744643491692841053009033203125
},
{
"platform": "iaai",
"facility_id": 311,
"name": "Portland West",
"city": "Portland",
"state": "OR",
"zip": "97217",
"latitude": 45.5994299999999981309883878566324710845947265625,
"longitude": -122.667599999999993087840266525745391845703125
},
{
"platform": "iaai",
"facility_id": 626,
"name": "Altoona",
"city": "East Freedom",
"state": "PA",
"zip": "16637",
"latitude": 40.36370000000000146656020660884678363800048828125,
"longitude": -78.4305599999999998317434801720082759857177734375
},
{
"platform": "iaai",
"facility_id": 647,
"name": "Bridgeport",
"city": "Bridgeport",
"state": "PA",
"zip": "19405",
"latitude": 40.10179000000000115733200800605118274688720703125,
"longitude": -75.325829999999996289261616766452789306640625
},
{
"platform": "iaai",
"facility_id": 629,
"name": "Erie",
"city": "Garland",
"state": "PA",
"zip": "16416",
"latitude": 41.8163899999999983947418513707816600799560546875,
"longitude": -79.4441000000000059344529290683567523956298828125
},
{
"platform": "iaai",
"facility_id": 622,
"name": "Philadelphia",
"city": "Conshohocken",
"state": "PA",
"zip": "19428",
"latitude": 40.10032000000000351747075910679996013641357421875,
"longitude": -75.3107700000000050977178034372627735137939453125
},
{
"platform": "iaai",
"facility_id": 649,
"name": "Pittsburgh",
"city": "Aliquippa",
"state": "PA",
"zip": "15001",
"latitude": 40.62433999999999656438376405276358127593994140625,
"longitude": -80.2413999999999987267074175179004669189453125
},
{
"platform": "iaai",
"facility_id": 619,
"name": "Pittsburgh-North",
"city": "Gibsonia",
"state": "PA",
"zip": "15044",
"latitude": 40.6516299999999972669684211723506450653076171875,
"longitude": -79.8958899999999943020156933926045894622802734375
},
{
"platform": "iaai",
"facility_id": 636,
"name": "Scranton",
"city": "Pittston",
"state": "PA",
"zip": "18640",
"latitude": 41.30828000000000344016370945610105991363525390625,
"longitude": -75.8032400000000023965185391716659069061279296875
},
{
"platform": "iaai",
"facility_id": 664,
"name": "York Springs",
"city": "York Springs",
"state": "PA",
"zip": "17372",
"latitude": 40.02080000000000126192389870993793010711669921875,
"longitude": -77.0956800000000015415935195051133632659912109375
},
{
"platform": "iaai",
"facility_id": 644,
"name": "Providence",
"city": "Riverside",
"state": "RI",
"zip": "02915",
"latitude": 41.76507000000000147110768011771142482757568359375,
"longitude": -71.3564199999999999590727384202182292938232421875
},
{
"platform": "iaai",
"facility_id": 720,
"name": "Charleston",
"city": "Ravenel",
"state": "SC",
"zip": "29470",
"latitude": 32.84436000000000177578840521164238452911376953125,
"longitude": -80.2373300000000000409272615797817707061767578125
},
{
"platform": "iaai",
"facility_id": 761,
"name": "Greenville",
"city": "Simpsonville",
"state": "SC",
"zip": "29681",
"latitude": 34.79814999999999969304553815163671970367431640625,
"longitude": -82.2218500000000034333424991928040981292724609375
},
{
"platform": "iaai",
"facility_id": 780,
"name": "Lexington",
"city": "Lexington",
"state": "SC",
"zip": "29073",
"latitude": 33.9715800000000029967850423417985439300537109375,
"longitude": -81.1826200000000000045474735088646411895751953125
},
{
"platform": "iaai",
"facility_id": 362,
"name": "Sioux Falls",
"city": "Lennox",
"state": "SD",
"zip": "57039",
"latitude": 43.39141000000000047975845518521964550018310546875,
"longitude": -96.799139999999994188328855670988559722900390625
},
{
"platform": "iaai",
"facility_id": 752,
"name": "Chattanooga",
"city": "Chattanooga",
"state": "TN",
"zip": "37404",
"latitude": 35.016649999999998499333742074668407440185546875,
"longitude": -85.300610000000006039044819772243499755859375
},
{
"platform": "iaai",
"facility_id": 754,
"name": "Knoxville",
"city": "Knoxville",
"state": "TN",
"zip": "37914",
"latitude": 35.9740800000000007230482879094779491424560546875,
"longitude": -83.8217800000000039517544792033731937408447265625
},
{
"platform": "iaai",
"facility_id": 738,
"name": "Memphis",
"city": "Millington",
"state": "TN",
"zip": "38053",
"latitude": 35.27367000000000274440026259981095790863037109375,
"longitude": -89.9620599999999939200279186479747295379638671875
},
{
"platform": "iaai",
"facility_id": 753,
"name": "Nashville",
"city": "Nashville",
"state": "TN",
"zip": "37218",
"latitude": 36.1965100000000035151970223523676395416259765625,
"longitude": -86.860870000000005575202521868050098419189453125
},
{
"platform": "iaai",
"facility_id": 438,
"name": "Abilene",
"city": "Abilene",
"state": "TX",
"zip": "79601",
"latitude": 32.53826000000000107093001133762300014495849609375,
"longitude": -99.767910000000000536601874046027660369873046875
},
{
"platform": "iaai",
"facility_id": 437,
"name": "Amarillo",
"city": "Amarillo",
"state": "TX",
"zip": "79118",
"latitude": 35.09653999999999740566636319272220134735107421875,
"longitude": -101.8495400000000046247805585153400897979736328125
},
{
"platform": "iaai",
"facility_id": 418,
"name": "Austin",
"city": "Dale",
"state": "TX",
"zip": "78616",
"latitude": 30.06812000000000040245140553452074527740478515625,
"longitude": -97.578699999999997771737980656325817108154296875
},
{
"platform": "iaai",
"facility_id": 457,
"name": "Austin North",
"city": "Florence",
"state": "TX",
"zip": "76527",
"latitude": 30.896850000000000591171556152403354644775390625,
"longitude": -97.724209999999999354258761741220951080322265625
},
{
"platform": "iaai",
"facility_id": 412,
"name": "Corpus Christi",
"city": "Corpus Christi",
"state": "TX",
"zip": "78405",
"latitude": 27.783950000000000812860889709554612636566162109375,
"longitude": -97.4491600000000062209437601268291473388671875
},
{
"platform": "iaai",
"facility_id": 441,
"name": "Dallas",
"city": "Wilmer",
"state": "TX",
"zip": "75172",
"latitude": 32.578360000000003537934389896690845489501953125,
"longitude": -96.669679999999999608917278237640857696533203125
},
{
"platform": "iaai",
"facility_id": 443,
"name": "Dallas/Ft Worth",
"city": "Grand Prairie",
"state": "TX",
"zip": "75050",
"latitude": 32.75027999999999650526660843752324581146240234375,
"longitude": -96.9415800000000018599166651256382465362548828125
},
{
"platform": "iaai",
"facility_id": 420,
"name": "El Paso",
"city": "El Paso",
"state": "TX",
"zip": "79938",
"latitude": 31.82755999999999829697117093019187450408935546875,
"longitude": -106.16518999999999550709617324173450469970703125
},
{
"platform": "iaai",
"facility_id": 465,
"name": "Fort Worth North",
"city": "Justin",
"state": "TX",
"zip": "76247",
"latitude": 33.0542099999999976489561959169805049896240234375,
"longitude": -97.268460000000004583853296935558319091796875
},
{
"platform": "iaai",
"facility_id": 456,
"name": "Houston",
"city": "Houston",
"state": "TX",
"zip": "77038",
"latitude": 29.8976100000000002410160959698259830474853515625,
"longitude": -95.4501599999999967849362292326986789703369140625
},
{
"platform": "iaai",
"facility_id": 414,
"name": "Houston South",
"city": "Rosharon",
"state": "TX",
"zip": "77583",
"latitude": 29.35313000000000016598278307355940341949462890625,
"longitude": -95.4204199999999929104887996800243854522705078125
},
{
"platform": "iaai",
"facility_id": 440,
"name": "Houston-North",
"city": "Houston",
"state": "TX",
"zip": "77032",
"latitude": 29.957640000000001379021341563202440738677978515625,
"longitude": -95.384489999999999554347596131265163421630859375
},
{
"platform": "iaai",
"facility_id": 419,
"name": "Longview",
"city": "Longview",
"state": "TX",
"zip": "75605",
"latitude": 32.50565999999999888814272708259522914886474609375,
"longitude": -94.64334999999999809006112627685070037841796875
},
{
"platform": "iaai",
"facility_id": 402,
"name": "Lubbock",
"city": "Lubbock",
"state": "TX",
"zip": "79415",
"latitude": 33.6494100000000031513991416431963443756103515625,
"longitude": -101.905720000000002301021595485508441925048828125
},
{
"platform": "iaai",
"facility_id": 461,
"name": "McAllen",
"city": "Donna",
"state": "TX",
"zip": "78537",
"latitude": 26.185970000000001078888089978136122226715087890625,
"longitude": -98.0654099999999999681676854379475116729736328125
},
{
"platform": "iaai",
"facility_id": 416,
"name": "Permian Basin",
"city": "Odessa",
"state": "TX",
"zip": "79764",
"latitude": 31.92224999999999823785401531495153903961181640625,
"longitude": -102.4112400000000064892446971498429775238037109375
},
{
"platform": "iaai",
"facility_id": 442,
"name": "San Antonio-South",
"city": "San Antonio",
"state": "TX",
"zip": "78224",
"latitude": 29.3061000000000007048583938740193843841552734375,
"longitude": -98.538399999999995770849636755883693695068359375
},
{
"platform": "iaai",
"facility_id": 343,
"name": "Provo",
"city": "Nephi",
"state": "UT",
"zip": "84648",
"latitude": 39.61896999999999735564415459521114826202392578125,
"longitude": -111.8683999999999940655470709316432476043701171875
},
{
"platform": "iaai",
"facility_id": 342,
"name": "Salt Lake City",
"city": "Ogden",
"state": "UT",
"zip": "84401",
"latitude": 41.233519999999998617568053305149078369140625,
"longitude": -112.0063899999999961210050969384610652923583984375
},
{
"platform": "iaai",
"facility_id": 726,
"name": "Culpeper",
"city": "Culpeper",
"state": "VA",
"zip": "22701",
"latitude": 38.4930700000000030058799893595278263092041015625,
"longitude": -77.9282299999999992223820299841463565826416015625
},
{
"platform": "iaai",
"facility_id": 723,
"name": "Northern Virginia",
"city": "Fredericksburg",
"state": "VA",
"zip": "22406",
"latitude": 38.3530999999999977490006131120026111602783203125,
"longitude": -77.5139300000000019963408703915774822235107421875
},
{
"platform": "iaai",
"facility_id": 724,
"name": "Pulaski",
"city": "Pulaski",
"state": "VA",
"zip": "24301",
"latitude": 37.0448200000000014142642612569034099578857421875,
"longitude": -80.7549700000000001409716787748038768768310546875
},
{
"platform": "iaai",
"facility_id": 711,
"name": "Richmond",
"city": "Ashland",
"state": "VA",
"zip": "23005",
"latitude": 37.7201299999999974943420966155827045440673828125,
"longitude": -77.4651199999999988676790962927043437957763671875
},
{
"platform": "iaai",
"facility_id": 782,
"name": "Roanoke",
"city": "Montvale",
"state": "VA",
"zip": "24122",
"latitude": 37.3719099999999997407940099947154521942138671875,
"longitude": -79.72064000000000305590219795703887939453125
},
{
"platform": "iaai",
"facility_id": 765,
"name": "Suffolk",
"city": "Suffolk",
"state": "VA",
"zip": "23434",
"latitude": 36.74922000000000110730979940854012966156005859375,
"longitude": -76.520139999999997826307662762701511383056640625
},
{
"platform": "iaai",
"facility_id": 725,
"name": "Tidewater",
"city": "Yorktown",
"state": "VA",
"zip": "23693",
"latitude": 37.1117899999999991678123478777706623077392578125,
"longitude": -76.4641299999999972669684211723506450653076171875
},
{
"platform": "iaai",
"facility_id": 645,
"name": "Burlington",
"city": "Essex Junction",
"state": "VT",
"zip": "05452",
"latitude": 44.52664999999999650981408194638788700103759765625,
"longitude": -73.1294400000000024419932742603123188018798828125
},
{
"platform": "iaai",
"facility_id": 327,
"name": "Seattle",
"city": "Puyallup",
"state": "WA",
"zip": "98374",
"latitude": 47.1119699999999994588506524451076984405517578125,
"longitude": -122.2822000000000031150193535722792148590087890625
},
{
"platform": "iaai",
"facility_id": 322,
"name": "Spokane",
"city": "Spokane Valley",
"state": "WA",
"zip": "99216",
"latitude": 47.68957999999999941564965411089360713958740234375,
"longitude": -117.169319999999999026840669102966785430908203125
},
{
"platform": "iaai",
"facility_id": 522,
"name": "Appleton",
"city": "Appleton",
"state": "WI",
"zip": "54914",
"latitude": 44.24022000000000076624928624369204044342041015625,
"longitude": -88.4755200000000030513547244481742382049560546875
},
{
"platform": "iaai",
"facility_id": 521,
"name": "Milwaukee",
"city": "Sussex",
"state": "WI",
"zip": "53089",
"latitude": 43.14663999999999788315108162350952625274658203125,
"longitude": -88.250820000000004483808879740536212921142578125
},
{
"platform": "iaai",
"facility_id": 523,
"name": "Portage",
"city": "Portage",
"state": "WI",
"zip": "53901",
"latitude": 43.56141000000000218506102100946009159088134765625,
"longitude": -89.514870000000001937223714776337146759033203125
},
{
"platform": "iaai",
"facility_id": 652,
"name": "Buckhannon",
"city": "Buckhannon",
"state": "WV",
"zip": "26201",
"latitude": 38.99743000000000137106326292268931865692138671875,
"longitude": -80.2566599999999965575625537894666194915771484375
},
{
"platform": "iaai",
"facility_id": 679,
"name": "Shady Spring",
"city": "Shady Spring",
"state": "WV",
"zip": "25918",
"latitude": 37.75417999999999807414496899582445621490478515625,
"longitude": -80.9841100000000011505107977427542209625244140625
},
{
"platform": "iaai",
"facility_id": 376,
"name": "Casper",
"city": "Casper",
"state": "WY",
"zip": "82601",
"latitude": 42.88152000000000185764292837120592594146728515625,
"longitude": -106.3456000000000045702108764089643955230712890625
}
]
},
"office_name": {
"param": "office_name"
},
"zip_radius": {
"zip_param": "zip",
"radius_param": "radius",
"units_param": "units",
"units": [
"km",
"mi"
],
"radius_default": 100
}
}
}
},
"usage": {
"monthly_quota_left": 100
}
}
No test yet.
Returns shipping price estimates for a vehicle by VIN or lot number. Use this endpoint to retrieve available destination port prices for a selected Copart or IAAI lot, including one or multiple requested ports when the `ports` query parameter is provided.
export APIBARA_API_KEY="YOUR_API_KEY"
curl --request GET \
--url "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/shipping" \
--header "Accept: application/json" \
--header "X-API-Key: ${APIBARA_API_KEY}"
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/shipping", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": process.env.APIBARA_API_KEY || 'YOUR_API_KEY',
}
});
if (!response.ok) {
throw new Error(`Apibara API error: ${response.status}`);
}
const data = await response.json();
console.log(data);
type ApibaraResponse = Record<string, unknown>;
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/shipping", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": process.env.APIBARA_API_KEY ?? 'YOUR_API_KEY',
} satisfies Record<string, string>
});
if (!response.ok) {
throw new Error(`Apibara API error: ${response.status}`);
}
const data = await response.json() as ApibaraResponse;
console.log(data);
import os
import requests
url = "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/shipping"
headers = {
"Accept": "application/json",
"X-API-Key": os.getenv('APIBARA_API_KEY', 'YOUR_API_KEY'),
}
response = requests.request("GET", url, headers=headers)
response.raise_for_status()
print(response.json())
$apiKey = getenv('APIBARA_API_KEY') ?: 'YOUR_API_KEY';
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_URL => "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/shipping",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Accept: application/json",
'X-API-Key: ' . $apiKey,
],
]);
$response = curl_exec($ch);
$error = curl_error($ch);
curl_close($ch);
if ($error) {
throw new RuntimeException($error);
}
$data = json_decode($response, true);
print_r($data);
use Illuminate\Support\Facades\Http;
$apiKey = config('services.apibara.key') ?: env('APIBARA_API_KEY', 'YOUR_API_KEY');
$response = Http::withHeaders([
"Accept" => "application/json",
"X-API-Key" => $apiKey,
])->get("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/shipping");
$data = $response->json();
import Foundation
let apiKey = ProcessInfo.processInfo.environment["APIBARA_API_KEY"] ?? "YOUR_API_KEY"
let url = URL(string: "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/shipping")!
var request = URLRequest(url: url)
request.httpMethod = "GET"
request.setValue("application/json", forHTTPHeaderField: "Accept")
request.setValue(apiKey, forHTTPHeaderField: "X-API-Key")
let (data, response) = try await URLSession.shared.data(for: request)
if let httpResponse = response as? HTTPURLResponse, !(200...299).contains(httpResponse.statusCode) {
throw NSError(domain: "ApibaraAPI", code: httpResponse.statusCode)
}
let json = try JSONSerialization.jsonObject(with: data)
print(json)
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
String apiKey = System.getenv().getOrDefault("APIBARA_API_KEY", "YOUR_API_KEY");
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/shipping"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.header("Accept", "application/json")
.header("X-API-Key", apiKey)
.build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
import java.net.URI
import java.net.http.HttpClient
import java.net.http.HttpRequest
import java.net.http.HttpResponse
val apiKey = System.getenv("APIBARA_API_KEY") ?: "YOUR_API_KEY"
val client = HttpClient.newHttpClient()
val request = HttpRequest.newBuilder()
.uri(URI.create("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/shipping"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.header("Accept", "application/json")
.header("X-API-Key", apiKey)
.build()
val response = client.send(request, HttpResponse.BodyHandlers.ofString())
println(response.body())
using System.Net.Http;
using System.Text;
var apiKey = Environment.GetEnvironmentVariable("APIBARA_API_KEY") ?? "YOUR_API_KEY";
using var client = new HttpClient();
using var request = new HttpRequestMessage(HttpMethod.Get, "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/shipping");
request.Headers.TryAddWithoutValidation("Accept", "application/json");
request.Headers.TryAddWithoutValidation("X-API-Key", apiKey);
using var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
var json = await response.Content.ReadAsStringAsync();
Console.WriteLine(json);
package main
import (
"fmt"
"io"
"net/http"
"os"
)
func main() {
apiKey := os.Getenv("APIBARA_API_KEY")
if apiKey == "" {
apiKey = "YOUR_API_KEY"
}
req, err := http.NewRequest("GET", "https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/shipping", nil)
if err != nil {
panic(err)
}
req.Header.Set("Accept", "application/json")
req.Header.Set("X-API-Key", apiKey)
res, err := http.DefaultClient.Do(req)
if err != nil {
panic(err)
}
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}
require 'net/http'
require 'json'
require 'uri'
api_key = ENV.fetch('APIBARA_API_KEY', 'YOUR_API_KEY')
uri = URI("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/shipping")
request = Net::HTTP::Get.new(uri)
request["Accept"] = "application/json"
request["X-API-Key"] = api_key
response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: uri.scheme == 'https') do |http|
http.request(request)
end
puts JSON.pretty_generate(JSON.parse(response.body))
$apiKey = getenv('APIBARA_API_KEY') ?: 'YOUR_API_KEY';
$response = wp_remote_request("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/shipping", [
'method' => "GET",
'headers' => [
"Accept" => "application/json",
"X-API-Key" => $apiKey,
],
'timeout' => 30,
]);
if (is_wp_error($response)) {
return $response->get_error_message();
}
$body = wp_remote_retrieve_body($response);
$data = json_decode($body, true);
import { NextResponse } from 'next/server';
export async function GET() {
const apiKey = process.env.APIBARA_API_KEY;
if (!apiKey) {
return NextResponse.json({ error: 'APIBARA_API_KEY is missing' }, { status: 500 });
}
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/shipping", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": apiKey,
},
cache: 'no-store',
});
const data = await response.json();
return NextResponse.json(data, { status: response.status });
}
# MCP / AI tool notes
Tool name: apibara_vehicle_auction_api
Method: GET
Endpoint path: /api/v1/vehicle-auction/vehicles/{slugVin}/shipping
Example URL: https://apibara.tech/api/v1/vehicle-auction/vehicles/JTNABAAE4PA006723/shipping
Required headers:
- Accept: application/json
- X-API-Key: keep this secret and store it server-side
Agent instructions:
1. Never expose API keys in frontend code, public logs, screenshots, or client bundles.
2. Use this endpoint only from a trusted backend, MCP server, server route, or secure integration layer.
3. Parse JSON responses and surface only the fields needed by the user.
4. For search endpoints, prefer specific filters such as VIN, lot number, make, model, year, location, and auction status.
5. For paginated endpoints, follow cursor or pagination fields from the API response.
{
"ok": true,
"status": 200,
"response_time_ms": 360,
"method": "GET",
"url": "https://apibara.tech/api/v1/vehicle-auction/vehicles/78691915/shipping",
"request": {
"path_params": {
"slugVin": "78691915"
},
"query": [],
"body": []
},
"response": {
"ok": true,
"data": {
"vehicle": {
"platform": "copart",
"lot_number": "78691915",
"vin": "WBAVL1C58FVY28848",
"title": "2015 BMW X1 XDRIVE28I",
"type": "AUTOMOBILE"
},
"auction_location": {
"display": "Akron (OH)",
"facility_id": null,
"matched_location_id": "Akron-OH",
"match_score": 100
},
"shipping": {
"recommended_port": "Norfolk",
"recommended_price_usd": 550,
"has_shipping_price": true,
"available_ports": [
{
"port": "Norfolk",
"price": 550
}
]
}
}
},
"usage": {
"monthly_quota_left": 22
}
}
No test yet.
Returns a paginated list of available auction locations and facilities. Use this endpoint to search Copart and IAAI locations by platform, state, facility ID, facility name, city, ZIP code, radius and distance units.
export APIBARA_API_KEY="YOUR_API_KEY"
curl --request GET \
--url "https://apibara.tech/api/v1/vehicle-auction/locations?platform=iaai&units=mi&per_page=12" \
--header "Accept: application/json" \
--header "X-API-Key: ${APIBARA_API_KEY}"
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/locations?platform=iaai&units=mi&per_page=12", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": process.env.APIBARA_API_KEY || 'YOUR_API_KEY',
}
});
if (!response.ok) {
throw new Error(`Apibara API error: ${response.status}`);
}
const data = await response.json();
console.log(data);
type ApibaraResponse = Record<string, unknown>;
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/locations?platform=iaai&units=mi&per_page=12", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": process.env.APIBARA_API_KEY ?? 'YOUR_API_KEY',
} satisfies Record<string, string>
});
if (!response.ok) {
throw new Error(`Apibara API error: ${response.status}`);
}
const data = await response.json() as ApibaraResponse;
console.log(data);
import os
import requests
url = "https://apibara.tech/api/v1/vehicle-auction/locations?platform=iaai&units=mi&per_page=12"
headers = {
"Accept": "application/json",
"X-API-Key": os.getenv('APIBARA_API_KEY', 'YOUR_API_KEY'),
}
response = requests.request("GET", url, headers=headers)
response.raise_for_status()
print(response.json())
$apiKey = getenv('APIBARA_API_KEY') ?: 'YOUR_API_KEY';
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_URL => "https://apibara.tech/api/v1/vehicle-auction/locations?platform=iaai&units=mi&per_page=12",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Accept: application/json",
'X-API-Key: ' . $apiKey,
],
]);
$response = curl_exec($ch);
$error = curl_error($ch);
curl_close($ch);
if ($error) {
throw new RuntimeException($error);
}
$data = json_decode($response, true);
print_r($data);
use Illuminate\Support\Facades\Http;
$apiKey = config('services.apibara.key') ?: env('APIBARA_API_KEY', 'YOUR_API_KEY');
$response = Http::withHeaders([
"Accept" => "application/json",
"X-API-Key" => $apiKey,
])->get("https://apibara.tech/api/v1/vehicle-auction/locations?platform=iaai&units=mi&per_page=12");
$data = $response->json();
import Foundation
let apiKey = ProcessInfo.processInfo.environment["APIBARA_API_KEY"] ?? "YOUR_API_KEY"
let url = URL(string: "https://apibara.tech/api/v1/vehicle-auction/locations?platform=iaai&units=mi&per_page=12")!
var request = URLRequest(url: url)
request.httpMethod = "GET"
request.setValue("application/json", forHTTPHeaderField: "Accept")
request.setValue(apiKey, forHTTPHeaderField: "X-API-Key")
let (data, response) = try await URLSession.shared.data(for: request)
if let httpResponse = response as? HTTPURLResponse, !(200...299).contains(httpResponse.statusCode) {
throw NSError(domain: "ApibaraAPI", code: httpResponse.statusCode)
}
let json = try JSONSerialization.jsonObject(with: data)
print(json)
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
String apiKey = System.getenv().getOrDefault("APIBARA_API_KEY", "YOUR_API_KEY");
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://apibara.tech/api/v1/vehicle-auction/locations?platform=iaai&units=mi&per_page=12"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.header("Accept", "application/json")
.header("X-API-Key", apiKey)
.build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
import java.net.URI
import java.net.http.HttpClient
import java.net.http.HttpRequest
import java.net.http.HttpResponse
val apiKey = System.getenv("APIBARA_API_KEY") ?: "YOUR_API_KEY"
val client = HttpClient.newHttpClient()
val request = HttpRequest.newBuilder()
.uri(URI.create("https://apibara.tech/api/v1/vehicle-auction/locations?platform=iaai&units=mi&per_page=12"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.header("Accept", "application/json")
.header("X-API-Key", apiKey)
.build()
val response = client.send(request, HttpResponse.BodyHandlers.ofString())
println(response.body())
using System.Net.Http;
using System.Text;
var apiKey = Environment.GetEnvironmentVariable("APIBARA_API_KEY") ?? "YOUR_API_KEY";
using var client = new HttpClient();
using var request = new HttpRequestMessage(HttpMethod.Get, "https://apibara.tech/api/v1/vehicle-auction/locations?platform=iaai&units=mi&per_page=12");
request.Headers.TryAddWithoutValidation("Accept", "application/json");
request.Headers.TryAddWithoutValidation("X-API-Key", apiKey);
using var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
var json = await response.Content.ReadAsStringAsync();
Console.WriteLine(json);
package main
import (
"fmt"
"io"
"net/http"
"os"
)
func main() {
apiKey := os.Getenv("APIBARA_API_KEY")
if apiKey == "" {
apiKey = "YOUR_API_KEY"
}
req, err := http.NewRequest("GET", "https://apibara.tech/api/v1/vehicle-auction/locations?platform=iaai&units=mi&per_page=12", nil)
if err != nil {
panic(err)
}
req.Header.Set("Accept", "application/json")
req.Header.Set("X-API-Key", apiKey)
res, err := http.DefaultClient.Do(req)
if err != nil {
panic(err)
}
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}
require 'net/http'
require 'json'
require 'uri'
api_key = ENV.fetch('APIBARA_API_KEY', 'YOUR_API_KEY')
uri = URI("https://apibara.tech/api/v1/vehicle-auction/locations?platform=iaai&units=mi&per_page=12")
request = Net::HTTP::Get.new(uri)
request["Accept"] = "application/json"
request["X-API-Key"] = api_key
response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: uri.scheme == 'https') do |http|
http.request(request)
end
puts JSON.pretty_generate(JSON.parse(response.body))
$apiKey = getenv('APIBARA_API_KEY') ?: 'YOUR_API_KEY';
$response = wp_remote_request("https://apibara.tech/api/v1/vehicle-auction/locations?platform=iaai&units=mi&per_page=12", [
'method' => "GET",
'headers' => [
"Accept" => "application/json",
"X-API-Key" => $apiKey,
],
'timeout' => 30,
]);
if (is_wp_error($response)) {
return $response->get_error_message();
}
$body = wp_remote_retrieve_body($response);
$data = json_decode($body, true);
import { NextResponse } from 'next/server';
export async function GET() {
const apiKey = process.env.APIBARA_API_KEY;
if (!apiKey) {
return NextResponse.json({ error: 'APIBARA_API_KEY is missing' }, { status: 500 });
}
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/locations?platform=iaai&units=mi&per_page=12", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": apiKey,
},
cache: 'no-store',
});
const data = await response.json();
return NextResponse.json(data, { status: response.status });
}
# MCP / AI tool notes
Tool name: apibara_vehicle_auction_api
Method: GET
Endpoint path: /api/v1/vehicle-auction/locations
Example URL: https://apibara.tech/api/v1/vehicle-auction/locations?platform=iaai&units=mi&per_page=12
Required headers:
- Accept: application/json
- X-API-Key: keep this secret and store it server-side
Agent instructions:
1. Never expose API keys in frontend code, public logs, screenshots, or client bundles.
2. Use this endpoint only from a trusted backend, MCP server, server route, or secure integration layer.
3. Parse JSON responses and surface only the fields needed by the user.
4. For search endpoints, prefer specific filters such as VIN, lot number, make, model, year, location, and auction status.
5. For paginated endpoints, follow cursor or pagination fields from the API response.
{
"ok": true,
"status": 200,
"response_time_ms": 2644,
"method": "GET",
"url": "https://apibara.tech/api/v1/vehicle-auction/locations",
"request": {
"path_params": [],
"query": {
"state": "FL",
"units": "mi"
},
"body": []
},
"response": {
"ok": true,
"data": [
{
"platform": "copart",
"facility_id": 366,
"name": "FL - CLEWISTON",
"name_desc": "CLEWISTON",
"city": "CLEWISTON",
"state_code": "FL",
"state_name": "FLORIDA",
"zip": "33440",
"latitude": 26.695865500000000025693225325085222721099853515625,
"longitude": -80.9024777999999997746272129006683826446533203125,
"location_url": "/locations/clewiston-fl-366",
"sale_day": "MON",
"sale_time": 1000,
"time_zone": "America/New_York",
"today_auction_count": 1,
"distance": null
},
{
"platform": "copart",
"facility_id": 86,
"name": "FL - FT. PIERCE",
"name_desc": "FT. PIERCE",
"city": "FORT PIERCE",
"state_code": "FL",
"state_name": "FLORIDA",
"zip": "34946",
"latitude": 27.481120000000000658246790408156812191009521484375,
"longitude": -80.3790900000000050340531743131577968597412109375,
"location_url": "/locations/ft.-pierce-fl-86",
"sale_day": "WED",
"sale_time": 1000,
"time_zone": "America/New_York",
"today_auction_count": 3,
"distance": null
},
{
"platform": "copart",
"facility_id": 163,
"name": "FL - JACKSONVILLE NORTH",
"name_desc": "JACKSONVILLE NORTH",
"city": "JACKSONVILLE",
"state_code": "FL",
"state_name": "FLORIDA",
"zip": "32218",
"latitude": 30.422419999999998907469489495269954204559326171875,
"longitude": -81.65131999999999834471964277327060699462890625,
"location_url": "/locations/jacksonville-north-fl-163",
"sale_day": "MSD",
"sale_time": 1000,
"time_zone": "America/New_York",
"today_auction_count": 1,
"distance": null
},
{
"platform": "copart",
"facility_id": 105,
"name": "FL - MIAMI CENTRAL",
"name_desc": "MIAMI CENTRAL",
"city": "MIAMI",
"state_code": "FL",
"state_name": "FLORIDA",
"zip": "33167",
"latitude": 25.88168999999999897454472375102341175079345703125,
"longitude": -80.258700000000004592948243953287601470947265625,
"location_url": "/locations/miami-central-fl-105",
"sale_day": "MSD",
"sale_time": 1000,
"time_zone": "America/New_York",
"today_auction_count": 1,
"distance": null
},
{
"platform": "copart",
"facility_id": 33,
"name": "FL - MIAMI NORTH",
"name_desc": "MIAMI NORTH",
"city": "OPA LOCKA",
"state_code": "FL",
"state_name": "FLORIDA",
"zip": "33054",
"latitude": 25.891729999999999023430063971318304538726806640625,
"longitude": -80.2439700000000044610715121962130069732666015625,
"location_url": "/locations/miami-north-fl-33",
"sale_day": "MSD",
"sale_time": 1000,
"time_zone": "America/New_York",
"today_auction_count": 0,
"distance": null
},
{
"platform": "copart",
"facility_id": 148,
"name": "FL - MIAMI SOUTH",
"name_desc": "MIAMI SOUTH",
"city": "HOMESTEAD",
"state_code": "FL",
"state_name": "FLORIDA",
"zip": "33032",
"latitude": 25.54147999999999996134647517465054988861083984375,
"longitude": -80.411799999999999499777914024889469146728515625,
"location_url": "/locations/miami-south-fl-148",
"sale_day": "WED",
"sale_time": 1000,
"time_zone": "America/New_York",
"today_auction_count": 3,
"distance": null
},
{
"platform": "copart",
"facility_id": 108,
"name": "FL - OCALA",
"name_desc": "OCALA",
"city": "OCALA",
"state_code": "FL",
"state_name": "FLORIDA",
"zip": "34482",
"latitude": 29.260419999999999873807610129006206989288330078125,
"longitude": -82.193569999999994024619809351861476898193359375,
"location_url": "/locations/ocala-fl-108",
"sale_day": "TUE",
"sale_time": 1000,
"time_zone": "America/New_York",
"today_auction_count": 0,
"distance": null
},
{
"platform": "copart",
"facility_id": 153,
"name": "FL - ORLANDO NORTH",
"name_desc": "ORLANDO NORTH",
"city": "APOPKA",
"state_code": "FL",
"state_name": "FLORIDA",
"zip": "32712",
"latitude": 28.69785999999999859255694900639355182647705078125,
"longitude": -81.5669599999999945794115774333477020263671875,
"location_url": "/locations/orlando-north-fl-153",
"sale_day": "MON",
"sale_time": 1000,
"time_zone": "America/New_York",
"today_auction_count": 3,
"distance": null
},
{
"platform": "copart",
"facility_id": 55,
"name": "FL - ORLANDO SOUTH",
"name_desc": "ORLANDO SOUTH",
"city": "ORLANDO",
"state_code": "FL",
"state_name": "FLORIDA",
"zip": "32824",
"latitude": 28.436240000000001515445546829141676425933837890625,
"longitude": -81.370890000000002828528522513806819915771484375,
"location_url": "/locations/orlando-south-fl-55",
"sale_day": "THR",
"sale_time": 1000,
"time_zone": "America/New_York",
"today_auction_count": 0,
"distance": null
},
{
"platform": "copart",
"facility_id": 348,
"name": "FL - PUNTA GORDA",
"name_desc": "PUNTA GORDA",
"city": "ARCADIA",
"state_code": "FL",
"state_name": "FLORIDA",
"zip": "34269",
"latitude": 27.073837399999998609700924134813249111175537109375,
"longitude": -81.958440400000000636282493360340595245361328125,
"location_url": "/locations/punta-gorda-fl-348",
"sale_day": "MSD",
"sale_time": 1000,
"time_zone": "America/New_York",
"today_auction_count": 0,
"distance": null
},
{
"platform": "copart",
"facility_id": 117,
"name": "FL - TALLAHASSEE",
"name_desc": "TALLAHASSEE",
"city": "MIDWAY",
"state_code": "FL",
"state_name": "FLORIDA",
"zip": "32343",
"latitude": 30.50234999999999985220711096189916133880615234375,
"longitude": -84.4086400000000054433257901109755039215087890625,
"location_url": "/locations/tallahassee-fl-117",
"sale_day": "FRI",
"sale_time": 1000,
"time_zone": "America/New_York",
"today_auction_count": 0,
"distance": null
},
{
"platform": "copart",
"facility_id": 34,
"name": "FL - TAMPA SOUTH",
"name_desc": "TAMPA SOUTH",
"city": "RIVERVIEW",
"state_code": "FL",
"state_name": "FLORIDA",
"zip": "33578",
"latitude": 27.8237400000000008049028110690414905548095703125,
"longitude": -82.330209999999993897290551103651523590087890625,
"location_url": "/locations/tampa-south-fl-34",
"sale_day": "MSD",
"sale_time": 1000,
"time_zone": "America/New_York",
"today_auction_count": 0,
"distance": null
},
{
"platform": "copart",
"facility_id": 70,
"name": "FL - WEST PALM BEACH",
"name_desc": "WEST PALM BEACH",
"city": "WEST PALM BEACH",
"state_code": "FL",
"state_name": "FLORIDA",
"zip": "33411",
"latitude": 26.6920199999999994133759173564612865447998046875,
"longitude": -80.17167000000000598447513766586780548095703125,
"location_url": "/locations/west-palm-beach-fl-70",
"sale_day": "THR",
"sale_time": 1000,
"time_zone": "America/New_York",
"today_auction_count": 0,
"distance": null
},
{
"platform": "iaai",
"facility_id": 745,
"name": "Clearwater",
"name_desc": "Clearwater",
"city": "Clearwater",
"state_code": "FL",
"state_name": null,
"zip": "33760",
"latitude": 27.885929999999998329940353869460523128509521484375,
"longitude": -82.703789999999997917257132939994335174560546875,
"location_url": null,
"sale_day": null,
"sale_time": null,
"time_zone": "America/New_York",
"today_auction_count": 0,
"distance": null
},
{
"platform": "iaai",
"facility_id": 749,
"name": "Fort Myers",
"name_desc": "Fort Myers",
"city": "Fort Myers",
"state_code": "FL",
"state_name": null,
"zip": "33913",
"latitude": 26.607350000000000278532752417959272861480712890625,
"longitude": -81.76533000000000583895598538219928741455078125,
"location_url": null,
"sale_day": null,
"sale_time": null,
"time_zone": "America/New_York",
"today_auction_count": 0,
"distance": null
},
{
"platform": "iaai",
"facility_id": 763,
"name": "Fort Pierce",
"name_desc": "Fort Pierce",
"city": "Fort Pierce",
"state_code": "FL",
"state_name": null,
"zip": "34981",
"latitude": 27.396519999999998873363438178785145282745361328125,
"longitude": -80.362120000000004438334144651889801025390625,
"location_url": null,
"sale_day": null,
"sale_time": null,
"time_zone": "America/New_York",
"today_auction_count": 0,
"distance": null
},
{
"platform": "iaai",
"facility_id": 712,
"name": "Jacksonville",
"name_desc": "Jacksonville",
"city": "Jacksonville",
"state_code": "FL",
"state_name": null,
"zip": "32218",
"latitude": 30.516960000000000974296199274249374866485595703125,
"longitude": -81.627520000000004074536263942718505859375,
"location_url": null,
"sale_day": null,
"sale_time": null,
"time_zone": "America/New_York",
"today_auction_count": 0,
"distance": null
},
{
"platform": "iaai",
"facility_id": 736,
"name": "Miami-North",
"name_desc": "MiamiNorth",
"city": "Southwest Ranches",
"state_code": "FL",
"state_name": null,
"zip": "33332",
"latitude": 26.052859999999999018882590462453663349151611328125,
"longitude": -80.422560000000004265530151315033435821533203125,
"location_url": null,
"sale_day": null,
"sale_time": null,
"time_zone": "America/New_York",
"today_auction_count": 0,
"distance": null
},
{
"platform": "iaai",
"facility_id": 732,
"name": "Orlando",
"name_desc": "Orlando",
"city": "Orlando",
"state_code": "FL",
"state_name": null,
"zip": "32824",
"latitude": 28.422309999999999519104676437564194202423095703125,
"longitude": -81.378209999999995716279954649507999420166015625,
"location_url": null,
"sale_day": null,
"sale_time": null,
"time_zone": "America/New_York",
"today_auction_count": 0,
"distance": null
},
{
"platform": "iaai",
"facility_id": 743,
"name": "Orlando-North",
"name_desc": "OrlandoNorth",
"city": "Sanford",
"state_code": "FL",
"state_name": null,
"zip": "32773",
"latitude": 28.786030000000000228510543820448219776153564453125,
"longitude": -81.217410000000000991349224932491779327392578125,
"location_url": null,
"sale_day": null,
"sale_time": null,
"time_zone": "America/New_York",
"today_auction_count": 0,
"distance": null
},
{
"platform": "iaai",
"facility_id": 737,
"name": "Pensacola",
"name_desc": "Pensacola",
"city": "Milton",
"state_code": "FL",
"state_name": null,
"zip": "32583",
"latitude": 30.676480000000001524540493846870958805084228515625,
"longitude": -86.85012000000000398358679376542568206787109375,
"location_url": null,
"sale_day": null,
"sale_time": null,
"time_zone": "America/Chicago",
"today_auction_count": 0,
"distance": null
},
{
"platform": "iaai",
"facility_id": 713,
"name": "Tampa",
"name_desc": "Tampa",
"city": "Palmetto",
"state_code": "FL",
"state_name": null,
"zip": "34221",
"latitude": 27.529579999999999273541106958873569965362548828125,
"longitude": -82.5515999999999934289007796905934810638427734375,
"location_url": null,
"sale_day": null,
"sale_time": null,
"time_zone": "America/New_York",
"today_auction_count": 0,
"distance": null
},
{
"platform": "iaai",
"facility_id": 778,
"name": "Tampa North",
"name_desc": "Tampa North",
"city": "Hudson",
"state_code": "FL",
"state_name": null,
"zip": "34667",
"latitude": 28.38195999999999941110218060202896595001220703125,
"longitude": -82.6683100000000052887116908095777034759521484375,
"location_url": null,
"sale_day": null,
"sale_time": null,
"time_zone": "America/New_York",
"today_auction_count": 0,
"distance": null
},
{
"platform": "iaai",
"facility_id": 784,
"name": "West Palm Beach",
"name_desc": "West Palm Beach",
"city": "Jupiter",
"state_code": "FL",
"state_name": null,
"zip": "33478",
"latitude": 26.907830000000000580939740757457911968231201171875,
"longitude": -80.2738800000000054524207371287047863006591796875,
"location_url": null,
"sale_day": null,
"sale_time": null,
"time_zone": "America/New_York",
"today_auction_count": 0,
"distance": null
}
],
"meta": {
"current_page": 1,
"last_page": 1,
"per_page": 50,
"total": 24
}
},
"usage": {
"monthly_quota_left": 100
}
}
No test yet.
Returns delivery price estimates from the auction location to one or more destination ports. Use this endpoint to calculate vehicle delivery costs by VIN or lot number and optionally filter the result by a comma-separated list of requested ports.
export APIBARA_API_KEY="YOUR_API_KEY"
curl --request GET \
--url "https://apibara.tech/api/v1/vehicle-auction/shipping/auction-to-port?vin=JTNABAAE4PA006723&lot_number=45008746" \
--header "Accept: application/json" \
--header "X-API-Key: ${APIBARA_API_KEY}"
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/shipping/auction-to-port?vin=JTNABAAE4PA006723&lot_number=45008746", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": process.env.APIBARA_API_KEY || 'YOUR_API_KEY',
}
});
if (!response.ok) {
throw new Error(`Apibara API error: ${response.status}`);
}
const data = await response.json();
console.log(data);
type ApibaraResponse = Record<string, unknown>;
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/shipping/auction-to-port?vin=JTNABAAE4PA006723&lot_number=45008746", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": process.env.APIBARA_API_KEY ?? 'YOUR_API_KEY',
} satisfies Record<string, string>
});
if (!response.ok) {
throw new Error(`Apibara API error: ${response.status}`);
}
const data = await response.json() as ApibaraResponse;
console.log(data);
import os
import requests
url = "https://apibara.tech/api/v1/vehicle-auction/shipping/auction-to-port?vin=JTNABAAE4PA006723&lot_number=45008746"
headers = {
"Accept": "application/json",
"X-API-Key": os.getenv('APIBARA_API_KEY', 'YOUR_API_KEY'),
}
response = requests.request("GET", url, headers=headers)
response.raise_for_status()
print(response.json())
$apiKey = getenv('APIBARA_API_KEY') ?: 'YOUR_API_KEY';
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_URL => "https://apibara.tech/api/v1/vehicle-auction/shipping/auction-to-port?vin=JTNABAAE4PA006723&lot_number=45008746",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Accept: application/json",
'X-API-Key: ' . $apiKey,
],
]);
$response = curl_exec($ch);
$error = curl_error($ch);
curl_close($ch);
if ($error) {
throw new RuntimeException($error);
}
$data = json_decode($response, true);
print_r($data);
use Illuminate\Support\Facades\Http;
$apiKey = config('services.apibara.key') ?: env('APIBARA_API_KEY', 'YOUR_API_KEY');
$response = Http::withHeaders([
"Accept" => "application/json",
"X-API-Key" => $apiKey,
])->get("https://apibara.tech/api/v1/vehicle-auction/shipping/auction-to-port?vin=JTNABAAE4PA006723&lot_number=45008746");
$data = $response->json();
import Foundation
let apiKey = ProcessInfo.processInfo.environment["APIBARA_API_KEY"] ?? "YOUR_API_KEY"
let url = URL(string: "https://apibara.tech/api/v1/vehicle-auction/shipping/auction-to-port?vin=JTNABAAE4PA006723&lot_number=45008746")!
var request = URLRequest(url: url)
request.httpMethod = "GET"
request.setValue("application/json", forHTTPHeaderField: "Accept")
request.setValue(apiKey, forHTTPHeaderField: "X-API-Key")
let (data, response) = try await URLSession.shared.data(for: request)
if let httpResponse = response as? HTTPURLResponse, !(200...299).contains(httpResponse.statusCode) {
throw NSError(domain: "ApibaraAPI", code: httpResponse.statusCode)
}
let json = try JSONSerialization.jsonObject(with: data)
print(json)
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
String apiKey = System.getenv().getOrDefault("APIBARA_API_KEY", "YOUR_API_KEY");
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://apibara.tech/api/v1/vehicle-auction/shipping/auction-to-port?vin=JTNABAAE4PA006723&lot_number=45008746"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.header("Accept", "application/json")
.header("X-API-Key", apiKey)
.build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
import java.net.URI
import java.net.http.HttpClient
import java.net.http.HttpRequest
import java.net.http.HttpResponse
val apiKey = System.getenv("APIBARA_API_KEY") ?: "YOUR_API_KEY"
val client = HttpClient.newHttpClient()
val request = HttpRequest.newBuilder()
.uri(URI.create("https://apibara.tech/api/v1/vehicle-auction/shipping/auction-to-port?vin=JTNABAAE4PA006723&lot_number=45008746"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.header("Accept", "application/json")
.header("X-API-Key", apiKey)
.build()
val response = client.send(request, HttpResponse.BodyHandlers.ofString())
println(response.body())
using System.Net.Http;
using System.Text;
var apiKey = Environment.GetEnvironmentVariable("APIBARA_API_KEY") ?? "YOUR_API_KEY";
using var client = new HttpClient();
using var request = new HttpRequestMessage(HttpMethod.Get, "https://apibara.tech/api/v1/vehicle-auction/shipping/auction-to-port?vin=JTNABAAE4PA006723&lot_number=45008746");
request.Headers.TryAddWithoutValidation("Accept", "application/json");
request.Headers.TryAddWithoutValidation("X-API-Key", apiKey);
using var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
var json = await response.Content.ReadAsStringAsync();
Console.WriteLine(json);
package main
import (
"fmt"
"io"
"net/http"
"os"
)
func main() {
apiKey := os.Getenv("APIBARA_API_KEY")
if apiKey == "" {
apiKey = "YOUR_API_KEY"
}
req, err := http.NewRequest("GET", "https://apibara.tech/api/v1/vehicle-auction/shipping/auction-to-port?vin=JTNABAAE4PA006723&lot_number=45008746", nil)
if err != nil {
panic(err)
}
req.Header.Set("Accept", "application/json")
req.Header.Set("X-API-Key", apiKey)
res, err := http.DefaultClient.Do(req)
if err != nil {
panic(err)
}
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}
require 'net/http'
require 'json'
require 'uri'
api_key = ENV.fetch('APIBARA_API_KEY', 'YOUR_API_KEY')
uri = URI("https://apibara.tech/api/v1/vehicle-auction/shipping/auction-to-port?vin=JTNABAAE4PA006723&lot_number=45008746")
request = Net::HTTP::Get.new(uri)
request["Accept"] = "application/json"
request["X-API-Key"] = api_key
response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: uri.scheme == 'https') do |http|
http.request(request)
end
puts JSON.pretty_generate(JSON.parse(response.body))
$apiKey = getenv('APIBARA_API_KEY') ?: 'YOUR_API_KEY';
$response = wp_remote_request("https://apibara.tech/api/v1/vehicle-auction/shipping/auction-to-port?vin=JTNABAAE4PA006723&lot_number=45008746", [
'method' => "GET",
'headers' => [
"Accept" => "application/json",
"X-API-Key" => $apiKey,
],
'timeout' => 30,
]);
if (is_wp_error($response)) {
return $response->get_error_message();
}
$body = wp_remote_retrieve_body($response);
$data = json_decode($body, true);
import { NextResponse } from 'next/server';
export async function GET() {
const apiKey = process.env.APIBARA_API_KEY;
if (!apiKey) {
return NextResponse.json({ error: 'APIBARA_API_KEY is missing' }, { status: 500 });
}
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/shipping/auction-to-port?vin=JTNABAAE4PA006723&lot_number=45008746", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": apiKey,
},
cache: 'no-store',
});
const data = await response.json();
return NextResponse.json(data, { status: response.status });
}
# MCP / AI tool notes
Tool name: apibara_vehicle_auction_api
Method: GET
Endpoint path: /api/v1/vehicle-auction/shipping/auction-to-port
Example URL: https://apibara.tech/api/v1/vehicle-auction/shipping/auction-to-port?vin=JTNABAAE4PA006723&lot_number=45008746
Required headers:
- Accept: application/json
- X-API-Key: keep this secret and store it server-side
Agent instructions:
1. Never expose API keys in frontend code, public logs, screenshots, or client bundles.
2. Use this endpoint only from a trusted backend, MCP server, server route, or secure integration layer.
3. Parse JSON responses and surface only the fields needed by the user.
4. For search endpoints, prefer specific filters such as VIN, lot number, make, model, year, location, and auction status.
5. For paginated endpoints, follow cursor or pagination fields from the API response.
{
"ok": true,
"status": 200,
"response_time_ms": 370,
"method": "GET",
"url": "https://apibara.tech/api/v1/vehicle-auction/shipping/auction-to-port",
"request": {
"path_params": [],
"query": {
"lot_number": "78691915"
},
"body": []
},
"response": {
"ok": true,
"data": {
"vehicle": {
"platform": "copart",
"lot_number": "78691915",
"vin": "WBAVL1C58FVY28848",
"title": "2015 BMW X1 XDRIVE28I",
"type": "AUTOMOBILE"
},
"auction_location": {
"display": "Akron (OH)",
"facility_id": null,
"matched_location_id": "Akron-OH",
"match_score": 100
},
"shipping": {
"recommended_port": "Norfolk",
"recommended_price_usd": 550,
"has_shipping_price": true,
"available_ports": [
{
"port": "Norfolk",
"price": 550
}
]
}
}
},
"usage": {
"monthly_quota_left": 17
}
}
No test yet.
Returns vehicle lot details by a Copart or IAAI vehicle URL. Use this endpoint when you already have an auction lot page link and need to resolve it into structured vehicle data through the API.
export APIBARA_API_KEY="YOUR_API_KEY"
curl --request GET \
--url "https://apibara.tech/api/v1/vehicle-auction/vehicles/urltodetails?url=https%3A%2F%2Fwww.iaai.com%2FVehicleDetail%2F45008746" \
--header "Accept: application/json" \
--header "X-API-Key: ${APIBARA_API_KEY}"
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles/urltodetails?url=https%3A%2F%2Fwww.iaai.com%2FVehicleDetail%2F45008746", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": process.env.APIBARA_API_KEY || 'YOUR_API_KEY',
}
});
if (!response.ok) {
throw new Error(`Apibara API error: ${response.status}`);
}
const data = await response.json();
console.log(data);
type ApibaraResponse = Record<string, unknown>;
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles/urltodetails?url=https%3A%2F%2Fwww.iaai.com%2FVehicleDetail%2F45008746", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": process.env.APIBARA_API_KEY ?? 'YOUR_API_KEY',
} satisfies Record<string, string>
});
if (!response.ok) {
throw new Error(`Apibara API error: ${response.status}`);
}
const data = await response.json() as ApibaraResponse;
console.log(data);
import os
import requests
url = "https://apibara.tech/api/v1/vehicle-auction/vehicles/urltodetails?url=https%3A%2F%2Fwww.iaai.com%2FVehicleDetail%2F45008746"
headers = {
"Accept": "application/json",
"X-API-Key": os.getenv('APIBARA_API_KEY', 'YOUR_API_KEY'),
}
response = requests.request("GET", url, headers=headers)
response.raise_for_status()
print(response.json())
$apiKey = getenv('APIBARA_API_KEY') ?: 'YOUR_API_KEY';
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_URL => "https://apibara.tech/api/v1/vehicle-auction/vehicles/urltodetails?url=https%3A%2F%2Fwww.iaai.com%2FVehicleDetail%2F45008746",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Accept: application/json",
'X-API-Key: ' . $apiKey,
],
]);
$response = curl_exec($ch);
$error = curl_error($ch);
curl_close($ch);
if ($error) {
throw new RuntimeException($error);
}
$data = json_decode($response, true);
print_r($data);
use Illuminate\Support\Facades\Http;
$apiKey = config('services.apibara.key') ?: env('APIBARA_API_KEY', 'YOUR_API_KEY');
$response = Http::withHeaders([
"Accept" => "application/json",
"X-API-Key" => $apiKey,
])->get("https://apibara.tech/api/v1/vehicle-auction/vehicles/urltodetails?url=https%3A%2F%2Fwww.iaai.com%2FVehicleDetail%2F45008746");
$data = $response->json();
import Foundation
let apiKey = ProcessInfo.processInfo.environment["APIBARA_API_KEY"] ?? "YOUR_API_KEY"
let url = URL(string: "https://apibara.tech/api/v1/vehicle-auction/vehicles/urltodetails?url=https%3A%2F%2Fwww.iaai.com%2FVehicleDetail%2F45008746")!
var request = URLRequest(url: url)
request.httpMethod = "GET"
request.setValue("application/json", forHTTPHeaderField: "Accept")
request.setValue(apiKey, forHTTPHeaderField: "X-API-Key")
let (data, response) = try await URLSession.shared.data(for: request)
if let httpResponse = response as? HTTPURLResponse, !(200...299).contains(httpResponse.statusCode) {
throw NSError(domain: "ApibaraAPI", code: httpResponse.statusCode)
}
let json = try JSONSerialization.jsonObject(with: data)
print(json)
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
String apiKey = System.getenv().getOrDefault("APIBARA_API_KEY", "YOUR_API_KEY");
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://apibara.tech/api/v1/vehicle-auction/vehicles/urltodetails?url=https%3A%2F%2Fwww.iaai.com%2FVehicleDetail%2F45008746"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.header("Accept", "application/json")
.header("X-API-Key", apiKey)
.build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
import java.net.URI
import java.net.http.HttpClient
import java.net.http.HttpRequest
import java.net.http.HttpResponse
val apiKey = System.getenv("APIBARA_API_KEY") ?: "YOUR_API_KEY"
val client = HttpClient.newHttpClient()
val request = HttpRequest.newBuilder()
.uri(URI.create("https://apibara.tech/api/v1/vehicle-auction/vehicles/urltodetails?url=https%3A%2F%2Fwww.iaai.com%2FVehicleDetail%2F45008746"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.header("Accept", "application/json")
.header("X-API-Key", apiKey)
.build()
val response = client.send(request, HttpResponse.BodyHandlers.ofString())
println(response.body())
using System.Net.Http;
using System.Text;
var apiKey = Environment.GetEnvironmentVariable("APIBARA_API_KEY") ?? "YOUR_API_KEY";
using var client = new HttpClient();
using var request = new HttpRequestMessage(HttpMethod.Get, "https://apibara.tech/api/v1/vehicle-auction/vehicles/urltodetails?url=https%3A%2F%2Fwww.iaai.com%2FVehicleDetail%2F45008746");
request.Headers.TryAddWithoutValidation("Accept", "application/json");
request.Headers.TryAddWithoutValidation("X-API-Key", apiKey);
using var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
var json = await response.Content.ReadAsStringAsync();
Console.WriteLine(json);
package main
import (
"fmt"
"io"
"net/http"
"os"
)
func main() {
apiKey := os.Getenv("APIBARA_API_KEY")
if apiKey == "" {
apiKey = "YOUR_API_KEY"
}
req, err := http.NewRequest("GET", "https://apibara.tech/api/v1/vehicle-auction/vehicles/urltodetails?url=https%3A%2F%2Fwww.iaai.com%2FVehicleDetail%2F45008746", nil)
if err != nil {
panic(err)
}
req.Header.Set("Accept", "application/json")
req.Header.Set("X-API-Key", apiKey)
res, err := http.DefaultClient.Do(req)
if err != nil {
panic(err)
}
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}
require 'net/http'
require 'json'
require 'uri'
api_key = ENV.fetch('APIBARA_API_KEY', 'YOUR_API_KEY')
uri = URI("https://apibara.tech/api/v1/vehicle-auction/vehicles/urltodetails?url=https%3A%2F%2Fwww.iaai.com%2FVehicleDetail%2F45008746")
request = Net::HTTP::Get.new(uri)
request["Accept"] = "application/json"
request["X-API-Key"] = api_key
response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: uri.scheme == 'https') do |http|
http.request(request)
end
puts JSON.pretty_generate(JSON.parse(response.body))
$apiKey = getenv('APIBARA_API_KEY') ?: 'YOUR_API_KEY';
$response = wp_remote_request("https://apibara.tech/api/v1/vehicle-auction/vehicles/urltodetails?url=https%3A%2F%2Fwww.iaai.com%2FVehicleDetail%2F45008746", [
'method' => "GET",
'headers' => [
"Accept" => "application/json",
"X-API-Key" => $apiKey,
],
'timeout' => 30,
]);
if (is_wp_error($response)) {
return $response->get_error_message();
}
$body = wp_remote_retrieve_body($response);
$data = json_decode($body, true);
import { NextResponse } from 'next/server';
export async function GET() {
const apiKey = process.env.APIBARA_API_KEY;
if (!apiKey) {
return NextResponse.json({ error: 'APIBARA_API_KEY is missing' }, { status: 500 });
}
const response = await fetch("https://apibara.tech/api/v1/vehicle-auction/vehicles/urltodetails?url=https%3A%2F%2Fwww.iaai.com%2FVehicleDetail%2F45008746", {
method: "GET",
headers: {
"Accept": "application/json",
"X-API-Key": apiKey,
},
cache: 'no-store',
});
const data = await response.json();
return NextResponse.json(data, { status: response.status });
}
# MCP / AI tool notes
Tool name: apibara_vehicle_auction_api
Method: GET
Endpoint path: /api/v1/vehicle-auction/vehicles/urltodetails
Example URL: https://apibara.tech/api/v1/vehicle-auction/vehicles/urltodetails?url=https%3A%2F%2Fwww.iaai.com%2FVehicleDetail%2F45008746
Required headers:
- Accept: application/json
- X-API-Key: keep this secret and store it server-side
Agent instructions:
1. Never expose API keys in frontend code, public logs, screenshots, or client bundles.
2. Use this endpoint only from a trusted backend, MCP server, server route, or secure integration layer.
3. Parse JSON responses and surface only the fields needed by the user.
4. For search endpoints, prefer specific filters such as VIN, lot number, make, model, year, location, and auction status.
5. For paginated endpoints, follow cursor or pagination fields from the API response.
{
"ok": true,
"status": 200,
"response_time_ms": 356,
"method": "GET",
"url": "https://apibara.tech/api/v1/vehicle-auction/vehicles/urltodetails",
"request": {
"path_params": [],
"query": {
"url": "https://www.copart.com/lot/51015256/clean-title-2014-cadillac-escalade-esv-platinum-me-windham"
},
"body": []
},
"response": {
"ok": true,
"data": {
"slug_vin": "2014-cadillac-escalade-esv-platinum-1GYS4KEF1ER114026",
"vin": "1GYS4KEF1ER114026",
"platform": "copart",
"platform_id": 1,
"lot_number": "51015256",
"ad": "2026-04-24T14:00:00+00:00",
"title": "2014 CADILLAC ESCALADE ESV PLATINUM",
"year": 2014,
"make": "CADILLAC",
"model": "ESCALADE",
"type": null,
"subLot": false,
"auction": {
"state": "finished",
"formatted": "Apr 24, 2026 17:00",
"full_date": "2026-04-24T14:00:00+00:00",
"diff_minutes": -107947,
"ad": "2026-04-24T14:00:00+00:00",
"countdown": {
"days": 0,
"hours": 0,
"minutes": 0
},
"is_timed": false,
"is_buy_now": false,
"auction_at": "2026-04-24T14:00:00+00:00",
"timed_end_at": null,
"last_sold_day": "2026-04-24",
"last_sold_status": "Sold on Approval",
"sold_buy_now": false,
"sold_timed": false
},
"pricing": {
"current_bid_usd": 650,
"current_bid2_usd": 650,
"buy_now_usd": null,
"last_sold_price_usd": 650,
"estimated_cost": {
"from": 475,
"to": 6075,
"text": "$475 - $6,075"
}
},
"location": {
"display": "Windham (ME)",
"send_from": "NY",
"state": null
},
"seller": {
"name": "Non-insurance Company",
"type": "non_insurance",
"class": "bg-warning-F6AD71",
"text_class": "text-warning"
},
"condition": {
"run_condition": {
"value": "RUNS AND DRIVES",
"label": "Runs and drives",
"class_hint": "success"
},
"has_key": true,
"loss": null,
"primary_damage": "Normal wear",
"secondary_damage": null
},
"odometer": {
"mi": 269624,
"km": 433917
},
"vehicle_specs": {
"exterior_color": "Black",
"engine": {
"raw": "6.2L 8",
"size_l": "6.2",
"hp": null,
"layout": null
},
"transmission": "Automatic",
"fuel_type": "Flexible",
"drive_type": "ALL WHEEL DRIVE",
"body_style": null,
"airbags": null,
"restraint_system": null
},
"sale_document": {
"name": "CERTIFICATE OF TITLE",
"type": "success",
"export": true,
"registration": true,
"is_pending": false,
"page_id": 9,
"sale_document_group": "approved"
},
"media": {
"thumbs_count": 13,
"has_video": false,
"has_360": false,
"thumbs": [
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/ba0f25717f424ac4b3b564af76cfff57_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/e3451e939ecc48c5b023ab0d610fa5f7_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/87d2030790fd41eaaae3b5ecde609faa_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/5d0bfbdc0e254853a8493b8a4844be31_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/d6448ed56bf94f3cb80de6b4ba6fe946_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/1e524ab6fdb74ef8ab0f82a0e540be15_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/28639e42da68401c946cfb0c890a8e9f_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/8efd5d03198c4f728fc1150a0d9de1d5_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/49ab4aac9ca9481ebc25a50b72eef89a_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/e22b22d1189146b7867eb9881d885d1d_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/7be0fc0127914dcfbd2d2a4b50161b5a_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/934d125cfb6f4e0d99b5739397349dd1_ful.jpg",
"https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/85f325d6e062499aa235d07481d22b8a_vhrs.jpg"
],
"items": [
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/ba0f25717f424ac4b3b564af76cfff57_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/ba0f25717f424ac4b3b564af76cfff57_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/ba0f25717f424ac4b3b564af76cfff57_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/e3451e939ecc48c5b023ab0d610fa5f7_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/e3451e939ecc48c5b023ab0d610fa5f7_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/e3451e939ecc48c5b023ab0d610fa5f7_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/87d2030790fd41eaaae3b5ecde609faa_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/87d2030790fd41eaaae3b5ecde609faa_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/87d2030790fd41eaaae3b5ecde609faa_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/5d0bfbdc0e254853a8493b8a4844be31_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/5d0bfbdc0e254853a8493b8a4844be31_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/5d0bfbdc0e254853a8493b8a4844be31_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/d6448ed56bf94f3cb80de6b4ba6fe946_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/d6448ed56bf94f3cb80de6b4ba6fe946_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/d6448ed56bf94f3cb80de6b4ba6fe946_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/1e524ab6fdb74ef8ab0f82a0e540be15_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/1e524ab6fdb74ef8ab0f82a0e540be15_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/1e524ab6fdb74ef8ab0f82a0e540be15_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/28639e42da68401c946cfb0c890a8e9f_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/28639e42da68401c946cfb0c890a8e9f_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/28639e42da68401c946cfb0c890a8e9f_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/8efd5d03198c4f728fc1150a0d9de1d5_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/8efd5d03198c4f728fc1150a0d9de1d5_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/8efd5d03198c4f728fc1150a0d9de1d5_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/49ab4aac9ca9481ebc25a50b72eef89a_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/49ab4aac9ca9481ebc25a50b72eef89a_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/49ab4aac9ca9481ebc25a50b72eef89a_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/e22b22d1189146b7867eb9881d885d1d_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/e22b22d1189146b7867eb9881d885d1d_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/e22b22d1189146b7867eb9881d885d1d_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/7be0fc0127914dcfbd2d2a4b50161b5a_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/7be0fc0127914dcfbd2d2a4b50161b5a_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/7be0fc0127914dcfbd2d2a4b50161b5a_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/934d125cfb6f4e0d99b5739397349dd1_ful.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/934d125cfb6f4e0d99b5739397349dd1_hrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/934d125cfb6f4e0d99b5739397349dd1_hrs.jpg"
},
{
"type": "image",
"thumb": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/85f325d6e062499aa235d07481d22b8a_vhrs.jpg",
"full": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/85f325d6e062499aa235d07481d22b8a_vhrs.jpg",
"large": "https://cs.copart.com/v1/AUTH_svc.pdoc00001/lpp/0426/85f325d6e062499aa235d07481d22b8a_vhrs.jpg"
}
]
},
"details": null,
"facility": {
"id": null,
"state": null,
"zip": null,
"lat": null,
"lng": null,
"office_name": null
},
"distance": null
},
"url": true
},
"usage": {
"monthly_quota_left": 16
}
}
No test yet.