Use this calculator to get an estimated trade-in value for your old device when upgrading or switching to Verizon. The actual value may vary based on Verizon's final assessment.
— Select Device —
iPhone 15 Pro Max
iPhone 15 Pro
iPhone 15
iPhone 14 Pro Max
iPhone 14 Pro
iPhone 14
Samsung Galaxy S24 Ultra
Samsung Galaxy S24+
Samsung Galaxy S24
Samsung Galaxy S23 Ultra
Samsung Galaxy S23
Google Pixel 8 Pro
Google Pixel 8
Google Pixel 7 Pro
— Select Storage —
128 GB
256 GB
512 GB
1 TB
— Select Condition —
Excellent (Like new, no scratches)
Good (Minor wear, no major damage)
Fair (Noticeable wear, some scratches/dents)
Damaged (Cracked screen, major dents, functional)
Not Functional (Doesn't power on, water damage)
— Select Screen Condition —
No cracks or dead pixels
Minor cracks (small, not affecting display)
Major cracks (large, affecting display)
— Select Functionality —
Fully functional (all buttons, camera, etc. work)
Minor issues (e.g., one button sticky, speaker slightly muffled)
Major issues (e.g., camera doesn't work, charging port loose)
function calculateTradeIn() {
var deviceModel = document.getElementById("deviceModel").value;
var storageCapacity = document.getElementById("storageCapacity").value;
var deviceCondition = document.getElementById("deviceCondition").value;
var screenCondition = document.getElementById("screenCondition").value;
var functionality = document.getElementById("functionality").value;
var estimatedValue = 0;
var baseValue = 0;
var resultDiv = document.getElementById("tradeInResult");
// Input validation
if (!deviceModel || !storageCapacity || !deviceCondition || !screenCondition || !functionality) {
resultDiv.innerHTML = "Please make a selection for all fields to get an estimate.";
return;
}
// Base values for popular devices (simulated, actual values vary greatly)
switch (deviceModel) {
case "iPhone15ProMax": baseValue = 800; break;
case "iPhone15Pro": baseValue = 700; break;
case "iPhone15": baseValue = 600; break;
case "iPhone14ProMax": baseValue = 650; break;
case "iPhone14Pro": baseValue = 550; break;
case "iPhone14": baseValue = 450; break;
case "GalaxyS24Ultra": baseValue = 750; break;
case "GalaxyS24Plus": baseValue = 650; break;
case "GalaxyS24": baseValue = 550; break;
case "GalaxyS23Ultra": baseValue = 600; break;
case "GalaxyS23": baseValue = 400; break;
case "Pixel8Pro": baseValue = 500; break;
case "Pixel8": baseValue = 400; break;
case "Pixel7Pro": baseValue = 350; break;
default: baseValue = 0;
}
estimatedValue = baseValue;
// Adjust for storage capacity
switch (storageCapacity) {
case "128GB": break; // Base storage, no change
case "256GB": estimatedValue += 50; break;
case "512GB": estimatedValue += 100; break;
case "1TB": estimatedValue += 150; break;
}
// Adjust for overall device condition
switch (deviceCondition) {
case "Excellent": break; // No change
case "Good": estimatedValue *= 0.9; break; // 10% deduction
case "Fair": estimatedValue *= 0.7; break; // 30% deduction
case "Damaged": estimatedValue *= 0.4; break; // 60% deduction
case "NotFunctional": estimatedValue = 0; break; // Usually no value or very low
}
// Adjust for screen condition (deductions)
switch (screenCondition) {
case "NoCracks": break; // No change
case "MinorCracks": estimatedValue -= 75; break;
case "MajorCracks": estimatedValue -= 150; break;
}
// Adjust for functionality (deductions)
switch (functionality) {
case "FullyFunctional": break; // No change
case "MinorIssues": estimatedValue -= 50; break;
case "MajorIssues": estimatedValue -= 100; break;
}
// Ensure value doesn't go below zero
if (estimatedValue < 0) {
estimatedValue = 0;
}
// Format the result
if (estimatedValue === 0 && deviceCondition === "NotFunctional") {
resultDiv.innerHTML = "Based on your selections, your device is likely not eligible for a trade-in value with Verizon due to being non-functional.";
} else if (estimatedValue === 0) {
resultDiv.innerHTML = "Based on your selections, the estimated trade-in value is $0. This could be due to significant damage or functionality issues.";
}
else {
resultDiv.innerHTML = "Your estimated Verizon trade-in value is: $" + estimatedValue.toFixed(2) + "" +
"This is an estimate. Actual trade-in value is determined by Verizon upon inspection and may be offered as bill credits. Promotions can offer higher values.";
}
}
.calculator-container {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 8px;
padding: 25px;
max-width: 600px;
margin: 20px auto;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.calculator-container h2 {
color: #007bff;
text-align: center;
margin-bottom: 20px;
font-size: 1.8em;
}
.calculator-container p {
color: #555;
line-height: 1.6;
margin-bottom: 15px;
}
.calc-input-group {
margin-bottom: 18px;
}
.calc-input-group label {
display: block;
margin-bottom: 8px;
font-weight: bold;
color: #333;
}
.calc-input-group select {
width: 100%;
padding: 10px 12px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 1em;
box-sizing: border-box;
background-color: #fff;
-webkit-appearance: none; /* Remove default arrow for Chrome/Safari */
-moz-appearance: none; /* Remove default arrow for Firefox */
appearance: none; /* Remove default arrow */
background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007bff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-6.5%200-12.3%203.2-16.1%208.1-3.8%204.9-4.6%2011-2.4%2017.1l139.7%20193.3c5.5%207.6%2015.7%207.6%2021.2%200l139.7-193.3c2.2-6.1%201.4-12.2-2.4-17.1z%22%2F%3E%3C%2Fsvg%3E');
background-repeat: no-repeat;
background-position: right 10px top 50%;
background-size: 12px auto;
}
.calculate-button {
display: block;
width: 100%;
padding: 12px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
font-size: 1.1em;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
margin-top: 25px;
}
.calculate-button:hover {
background-color: #0056b3;
}
.calc-result {
margin-top: 25px;
padding: 15px;
background-color: #e9f7ff;
border: 1px solid #b3e0ff;
border-radius: 5px;
text-align: center;
font-size: 1.1em;
color: #0056b3;
}
.calc-result strong {
color: #007bff;
font-size: 1.3em;
}
.calc-result .note {
font-size: 0.9em;
color: #666;
margin-top: 10px;
}
.calc-result .error {
color: #dc3545;
font-weight: bold;
}
Understanding Verizon Trade-In Values
Trading in your old smartphone or tablet is a popular way to reduce the cost of a new device or lower your monthly bill with Verizon. Instead of letting your old phone gather dust, you can leverage its remaining value towards an upgrade or a new line of service. Verizon's trade-in program is designed to be straightforward, but the actual value you receive depends on several key factors.
How Verizon Determines Trade-In Value
Verizon assesses devices based on a combination of factors to determine their trade-in worth. While promotions can significantly boost these values, the base value is typically influenced by:
Device Model: Newer, more popular, and higher-end models (like the latest iPhones or Samsung Galaxy Ultras) generally command higher trade-in values.
Storage Capacity: Devices with larger internal storage often have a slightly higher value than their base storage counterparts.
Overall Condition: This is crucial. A device in "excellent" or "good" condition with minimal wear will fetch a much better price than one with significant cosmetic damage.
Screen Condition: The screen is often the most expensive component to repair. A cracked or damaged screen will significantly reduce the trade-in value, sometimes even rendering the device ineligible for a high-value trade.
Functionality: The device must power on, hold a charge, have all buttons working, and be free of water damage. Any major functional issues can drastically lower the value or make it ineligible.
Carrier Lock Status: While Verizon accepts devices from other carriers, an unlocked device or one locked to Verizon might sometimes simplify the process or be preferred.
Using the Verizon Trade-In Value Estimator
Our Verizon Trade-In Value Estimator provides a realistic approximation of what your device might be worth. Simply select your device model, storage capacity, and accurately describe its condition and functionality. The calculator will then provide an estimated value based on typical market trends and Verizon's general criteria.
Important Note: This calculator provides an *estimate* only. The final trade-in value is determined by Verizon after a physical inspection of your device. Often, Verizon offers promotional trade-in values that are significantly higher than the base market value, especially when upgrading to a new device on an eligible plan. These promotions are usually applied as bill credits over 24 or 36 months.
Examples of Estimated Trade-In Values:
Example 1: An iPhone 15 Pro Max (256GB) in Excellent condition with no screen cracks and fully functional might estimate around $750 – $850.
Example 2: A Samsung Galaxy S23 (128GB) in Good condition with minor wear, no screen cracks, and fully functional might estimate around $350 – $450.
Example 3: A Google Pixel 8 Pro (128GB) in Fair condition with some scratches, a minor screen crack, but still fully functional might estimate around $200 – $300.
Example 4: An iPhone 14 (128GB) with a major cracked screen, but otherwise functional, might estimate around $50 – $150, or potentially $0 if the damage is too severe.
Always check Verizon's official trade-in program for the most current offers and specific terms and conditions, especially for promotional values.