Copart Public Search Scraper avatar

Copart Public Search Scraper

Pricing

Pay per event

Go to Apify Store
Copart Public Search Scraper

Copart Public Search Scraper

Extract vehicle auction data from Copart's public search. Search by keyword, make, model, year range, damage type, and location. Returns lot details including VIN, mileage, damage, current bid, auction date, and more.

Pricing

Pay per event

Rating

0.0

(0)

Developer

BowTiedRaccoon

BowTiedRaccoon

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

11 hours ago

Last modified

Share

Extract vehicle auction data from Copart's public search. Search by keyword, make, model, year range, damage type, and location. Returns lot details including VIN, mileage, damage, current bid, auction date, images, and more.

What it does

This actor queries Copart's search API directly using a validated Imperva/Incapsula session, returning structured vehicle auction lot data. It supports keyword search plus filters for make, model, year range, damage type, and location. Pagination is handled automatically up to your maxItems limit.

Input

FieldTypeRequiredDescription
searchQueryStringNoKeyword to search for (e.g. toyota camry, honda, salvage)
makeStringNoFilter by vehicle make (e.g. TOYOTA, HONDA, FORD)
modelStringNoFilter by vehicle model (e.g. CAMRY, CIVIC)
yearFromIntegerNoMinimum model year (e.g. 2015)
yearToIntegerNoMaximum model year (e.g. 2023)
damageFilterStringNoPrimary damage type (e.g. FRONT END, REAR END, HAIL, FLOOD)
locationStringNoAuction location/state (e.g. CA, TX, FL)
maxItemsIntegerYesMaximum number of vehicle records to extract (default: 15)

If no searchQuery or filters are provided, the actor returns all currently listed lots up to maxItems.

Example input

{
"searchQuery": "toyota",
"make": "TOYOTA",
"yearFrom": 2020,
"maxItems": 50
}

Output

Each item in the dataset represents a vehicle auction lot:

FieldDescription
lot_numberCopart lot number (unique identifier)
lot_urlFull URL to the lot detail page on copart.com
yearVehicle model year
makeVehicle make (manufacturer)
modelVehicle model
body_styleVehicle body style (e.g. 4D SEDAN, 2D COUPE)
colorExterior color
vinVehicle Identification Number
odometerOdometer reading in miles
odometer_brandOdometer brand/condition (ACTUAL, EXEMPT, etc.)
primary_damagePrimary damage type
secondary_damageSecondary damage type
loss_typeLoss type (e.g. Collision, Theft, Hail)
sale_statusCurrent sale status
current_bidCurrent bid amount in USD
buy_it_now_priceBuy It Now price in USD (if available)
auction_dateScheduled auction date (ISO 8601)
locationAuction location (city, state)
location_zipAuction location ZIP code
fuel_typeFuel type (GASOLINE, DIESEL, HYBRID, ELECTRIC)
transmissionTransmission type (AUTO, MANUAL)
drive_typeDrive type (FWD, RWD, AWD, 4WD)
engine_sizeEngine displacement
cylindersNumber of engine cylinders
keys_availableWhether vehicle keys are available (YES, NO)
title_typeVehicle title type (SALVAGE, CERT OF DESTRUCTION, etc.)
title_stateState where title was issued
imagesComma-separated list of vehicle image URLs
thumbnail_urlThumbnail image URL
scraped_atISO 8601 timestamp when this record was scraped

Example output record

{
"lot_number": "77734355",
"lot_url": "https://www.copart.com/lot/77734355",
"year": "2025",
"make": "TOYOTA",
"model": "COROLLA",
"color": "SILVER",
"vin": "5YFB4MDE3SP******",
"primary_damage": "FRONT END",
"secondary_damage": "TOP/ROOF",
"sale_status": "ON_MINIMUM_BID",
"current_bid": "17885",
"auction_date": "2026-06-01T04:00:00.000Z",
"fuel_type": "GASOLINE",
"drive_type": "Front-wheel Drive",
"engine_size": "2.0L 4",
"scraped_at": "2026-05-30T15:21:29.655Z"
}

Notes

  • Copart returns up to 20 lots per page. The actor paginates automatically until maxItems is reached or all matching lots are retrieved.
  • Filters must be in uppercase (e.g. TOYOTA not toyota). The make, model, damageFilter, and location fields are automatically uppercased by the actor.
  • Fields not available for a particular lot will be null in the output.
  • Copart's public search covers salvage title and clean title vehicles, fleet, donation vehicles, and repossessions.
  • US residential proxy is required to access Copart's search API and is included in the actor's infrastructure — no additional proxy configuration needed.