API Endpoints
Copart & IAAI Vehicle Auction API
Search, monitor and integrate Copart and IAAI vehicle auction data with one structured API. Get VIN records, lot details, prices, photos, auction status and sale history.
Log in to test endpoints
<p>Returns a list of vehicles with filters.</p>
cURL
curl --request GET \ --url https://apibara.tech/api/v1/vehicle-auction/vehicles \ --header 'X-API-Key: YOUR_API_KEY'
Example response
{
"data": [],
"meta": {
"current_page": 1
}
}
Last result
No test yet.
<p>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.</p>
cURL
curl --request GET \
--url https://apibara.tech/api/v1/vehicle-auction/vehicles/{slugVin} \
--header 'X-API-Key: YOUR_API_KEY'
Example response
[]
Last result
No test yet.
<p>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.</p>
cURL
curl --request GET \
--url https://apibara.tech/api/v1/vehicle-auction/vehicles/{slugVin}/history \
--header 'X-API-Key: YOUR_API_KEY'
Example response
[]
Last result
No test yet.
<p>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.</p>
cURL
curl --request GET \
--url https://apibara.tech/api/v1/vehicle-auction/vehicles/{slugVin}/related \
--header 'X-API-Key: YOUR_API_KEY'
Example response
[]
Last result
No test yet.
<p>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.</p>
cURL
curl --request GET \ --url https://apibara.tech/api/v1/vehicle-auction/vehicles/filters \ --header 'X-API-Key: YOUR_API_KEY'
Example response
[]
Last result
No test yet.
<p>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.</p>
cURL
curl --request GET \
--url https://apibara.tech/api/v1/vehicle-auction/vehicles/{slugVin}/shipping \
--header 'X-API-Key: YOUR_API_KEY'
Example response
[]
Last result
No test yet.
<p>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.</p>
cURL
curl --request GET \ --url https://apibara.tech/api/v1/vehicle-auction/locations \ --header 'X-API-Key: YOUR_API_KEY'
Example response
[]
Last result
No test yet.
<p>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.</p>
cURL
curl --request GET \ --url https://apibara.tech/api/v1/vehicle-auction/shipping/auction-to-port \ --header 'X-API-Key: YOUR_API_KEY'
Example response
[]
Last result
No test yet.
<p>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.</p>
cURL
curl --request GET \ --url https://apibara.tech/api/v1/vehicle-auction/vehicles/urltodetails \ --header 'X-API-Key: YOUR_API_KEY'
Example response
[]
Last result
No test yet.