eBay USA Fee Calculator

Home » eBay USA Fee Calculator

eBay USA Fee Calculator 2026 – Final Value Fee, Seller Fees & Net Profit Estimator

eBay USA Fee Calculator

Accurately estimate eBay selling fees, final value fee, insertion fee, and payment processing costs. Calculate your net profit after eBay fees for better pricing decisions in 2026.

Shipping Cost ($) Sales Tax Collected ($) Quantity Listing Type
$salePrice, ‘shipping_cost’ => $shippingCost, ‘tax_amount’ => $taxAmount, ‘quantity’ => $quantity, ‘total_amount’ => $totalAmount, ‘insertion_fee’ => $insertionFee, ‘final_value_fee’ => $finalValueFee, ‘payment_processing_fee’ => $paymentProcessingFee, ‘total_fees’ => $totalFees, ‘net_profit’ => $netProfit, ‘fee_breakdown’ => [ ‘Insertion Fee (per auction listing)’ => $insertionFee, ‘Final Value Fee (main commission)’ => $finalValueFee, ‘Payment Processing Fee (managed payments)’ => $paymentProcessingFee ] ]; } public function generateReport($feeData) { $html = ‘

eBay Fee Calculation Report

Sale Details

Sale Price (per item):$’ . number_format($feeData[‘sale_price’], 2) . ‘
Shipping Cost:$’ . number_format($feeData[‘shipping_cost’], 2) . ‘
Sales Tax Collected:$’ . number_format($feeData[‘tax_amount’], 2) . ‘
Quantity:‘ . $feeData[‘quantity’] . ‘
Total Amount Paid by Buyer:$’ . number_format($feeData[‘total_amount’], 2) . ‘

Fee Breakdown

‘; foreach ($feeData[‘fee_breakdown’] as $name => $amount) { $html .= ‘‘; } $html .= ‘
‘ . esc_html($name) . ‘:$’ . number_format($amount, 2) . ‘
Total eBay Fees: $’ . number_format($feeData[‘total_fees’], 2) . ‘

Net Profit After eBay Fees

Calculated on: ‘ . date(‘F d, Y h:i A’) . ‘ • eBay USA Fee Calculator

‘; return $html; } public function getFeeRates() { return [ ‘Insertion Fee’ => ‘$0.35 per auction-style listing (many fixed-price listings are free)’, ‘Final Value Fee’ => ‘Typically 13.6% on total amount up to $7,500 per item (varies 2.5%–15.3% by category) + 2.35% above $7,500’, ‘Per Order Fee (Managed Payments)’ => ‘$0.30 for orders ≤ $10.00 | $0.40 for orders > $10.00 (included in final value structure)’ ]; } } if ($_SERVER[‘REQUEST_METHOD’] === ‘POST’ && isset($_POST[‘calculate’])) { try { $salePrice = floatval($_POST[‘sale_price’]); $shippingCost = floatval($_POST[‘shipping_cost’]); $taxAmount = floatval($_POST[‘tax_amount’]); $quantity = max(1, intval($_POST[‘quantity’])); $isAuction = ($_POST[‘listing_type’] === ‘auction’); $calculator = new EBayFeeCalculator(); $feeData = $calculator->calculateFees($salePrice, $shippingCost, $taxAmount, $quantity, $isAuction); echo $calculator->generateReport($feeData); } catch (Exception $e) { echo ‘
Error: ‘ . esc_html($e->getMessage()) . ‘
‘; } } ?>

Current eBay USA Fee Rates (2026)

getFeeRates(); foreach ($feeRates as $name => $rate) { echo ‘
‘ . esc_html($name) . ‘
‘ . esc_html($rate) . ‘
‘; } ?>

Note: Final value fees vary by category (most ~13.6%). Payment processing is now included in managed payments. For the latest official rates, visit the eBay Selling Fees page.

[neksio_related_tools]