IAAI Fee Calculator
Estimate the total cost of your vehicle purchase from IAAI (Insurance Auto Auctions) including various fees and sales tax. Please note that actual fees may vary based on specific auction location, vehicle type, and current IAAI policies. This calculator provides an estimate based on common fee structures.
Estimated Costs:
Enter details and click "Calculate Fees" to see your estimate.
Understanding IAAI Auction Fees
When purchasing a vehicle from IAAI (Insurance Auto Auctions), the final price you pay extends beyond just the winning bid. Several additional fees are typically added, which can significantly impact your total cost. Understanding these fees beforehand is crucial for budgeting and making informed bidding decisions.
Common IAAI Fees Explained:
- Buyer Fee (Transaction Fee): This is often the largest additional fee and is usually tiered based on the vehicle's sale price. Higher sale prices generally incur higher buyer fees. The exact fee structure can also vary depending on whether you are a public buyer or a licensed dealer, with dealers often receiving slightly lower rates. This fee covers the auction house's operational costs.
- Internet Bid Fee: For vehicles purchased online, an internet bid fee is commonly applied. This is typically a fixed charge for the convenience and infrastructure of online bidding.
- Document Fee: A fixed fee charged for processing the necessary paperwork, including the title transfer and other administrative tasks.
- Environmental Fee: A small, fixed fee often applied to cover environmental compliance costs associated with handling salvage or damaged vehicles.
- Loading Fee: If you require assistance loading the vehicle onto your transport, IAAI may charge a loading fee. This is usually an optional fee.
- Sales Tax: Sales tax is typically applied to the vehicle's sale price, and the rate varies by state or jurisdiction. It's important to factor this into your total cost, as it can be a substantial amount.
- Other Potential Fees: Depending on the specific auction location, vehicle type, or services requested, you might encounter other fees such as storage fees (if the vehicle isn't picked up promptly), gate fees, or specific state-mandated fees. Always review the auction's terms and conditions for a comprehensive list.
Why Use an IAAI Fee Calculator?
An IAAI fee calculator helps you get a clear picture of the total cost before you even place a bid. By inputting the potential sale price, your buyer type, and the applicable sales tax, you can quickly estimate the final amount. This prevents surprises and allows you to set a realistic maximum bid, ensuring your purchase remains within your budget.
Remember, this calculator provides an estimate. For the most accurate figures, always refer to the official IAAI fee schedule for the specific auction location and vehicle you are interested in, or contact IAAI directly.
.iaai-fee-calculator-container {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f9f9f9;
padding: 25px;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
max-width: 700px;
margin: 30px auto;
border: 1px solid #e0e0e0;
}
.iaai-fee-calculator-container h2 {
color: #2c3e50;
text-align: center;
margin-bottom: 20px;
font-size: 2em;
}
.iaai-fee-calculator-container h3 {
color: #34495e;
margin-top: 25px;
margin-bottom: 15px;
font-size: 1.5em;
border-bottom: 1px solid #eee;
padding-bottom: 5px;
}
.iaai-fee-calculator-container p {
color: #555;
line-height: 1.6;
margin-bottom: 10px;
}
.calculator-form .form-group {
margin-bottom: 18px;
display: flex;
flex-direction: column;
}
.calculator-form label {
margin-bottom: 8px;
font-weight: bold;
color: #333;
font-size: 0.95em;
}
.calculator-form input[type="number"],
.calculator-form select {
padding: 12px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 1em;
width: 100%;
box-sizing: border-box;
transition: border-color 0.3s ease;
}
.calculator-form input[type="number"]:focus,
.calculator-form select:focus {
border-color: #007bff;
outline: none;
box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}
.calculator-form .checkbox-group {
flex-direction: row;
align-items: center;
}
.calculator-form .checkbox-group input[type="checkbox"] {
margin-right: 10px;
width: auto;
transform: scale(1.2);
}
.calculator-form .checkbox-group label {
margin-bottom: 0;
font-weight: normal;
}
.calculator-form button {
background-color: #28a745;
color: white;
padding: 14px 25px;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 1.1em;
font-weight: bold;
width: 100%;
transition: background-color 0.3s ease, transform 0.2s ease;
margin-top: 15px;
}
.calculator-form button:hover {
background-color: #218838;
transform: translateY(-2px);
}
.calculator-results {
background-color: #e9f7ef;
border: 1px solid #d4edda;
border-radius: 8px;
padding: 20px;
margin-top: 25px;
}
.calculator-results h3 {
color: #155724;
margin-top: 0;
margin-bottom: 15px;
text-align: center;
font-size: 1.6em;
}
.calculator-results #result p {
margin-bottom: 8px;
color: #333;
font-size: 1.05em;
display: flex;
justify-content: space-between;
padding: 4px 0;
border-bottom: 1px dotted #c3e6cb;
}
.calculator-results #result p:last-child {
font-weight: bold;
color: #000;
border-bottom: none;
padding-top: 10px;
font-size: 1.2em;
}
.calculator-results #result p span:first-child {
text-align: left;
}
.calculator-results #result p span:last-child {
text-align: right;
}
.iaai-fees-article {
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #e0e0e0;
}
.iaai-fees-article ul {
list-style-type: disc;
margin-left: 20px;
padding-left: 0;
}
.iaai-fees-article li {
margin-bottom: 8px;
color: #555;
}
.iaai-fees-article strong {
color: #333;
}
function calculateIAAIfees() {
var salePrice = parseFloat(document.getElementById('salePrice').value);
var buyerType = document.getElementById('buyerType').value;
var salesTaxRate = parseFloat(document.getElementById('salesTaxRate').value);
var includeLoadingFee = document.getElementById('includeLoadingFee').checked;
// Validate inputs
if (isNaN(salePrice) || salePrice < 0) {
document.getElementById('result').innerHTML = 'Please enter a valid Vehicle Sale Price.';
return;
}
if (isNaN(salesTaxRate) || salesTaxRate 100) {
document.getElementById('result').innerHTML = 'Please enter a valid Sales Tax Rate (0-100%).';
return;
}
var buyerFee = 0;
// Tiered Buyer Fee Logic
if (buyerType === 'public') {
if (salePrice <= 500) {
buyerFee = 75;
} else if (salePrice <= 1000) {
buyerFee = 100;
} else if (salePrice <= 2000) {
buyerFee = 150;
} else if (salePrice <= 5000) {
buyerFee = 200;
} else if (salePrice <= 10000) {
buyerFee = 275;
} else if (salePrice 20000
buyerFee = 450;
}
} else { // Licensed Dealer
if (salePrice <= 500) {
buyerFee = 50;
} else if (salePrice <= 1000) {
buyerFee = 75;
} else if (salePrice <= 2000) {
buyerFee = 125;
} else if (salePrice <= 5000) {
buyerFee = 175;
} else if (salePrice <= 10000) {
buyerFee = 250;
} else if (salePrice 20000
buyerFee = 425;
}
}
// Fixed Fees
var internetBidFee = 29;
var documentFee = 75;
var environmentalFee = 10;
var loadingFee = includeLoadingFee ? 50 : 0;
var subtotalFees = buyerFee + internetBidFee + documentFee + environmentalFee + loadingFee;
var salesTaxAmount = salePrice * (salesTaxRate / 100);
var totalPurchaseCost = salePrice + subtotalFees + salesTaxAmount;
var resultsHtml = `
Vehicle Sale Price: $${salePrice.toFixed(2)}
Buyer Fee: $${buyerFee.toFixed(2)}
Internet Bid Fee: $${internetBidFee.toFixed(2)}
Document Fee: $${documentFee.toFixed(2)}
Environmental Fee: $${environmentalFee.toFixed(2)}
Loading Fee: $${loadingFee.toFixed(2)}
Subtotal of Fees: $${subtotalFees.toFixed(2)}
Sales Tax (${salesTaxRate.toFixed(1)}%): $${salesTaxAmount.toFixed(2)}
Total Estimated Purchase Cost: $${totalPurchaseCost.toFixed(2)}
`;
document.getElementById('result').innerHTML = resultsHtml;
}