Calculator Inputs
Example Data Table
| Scenario | Free listings | Used | New | Renewals | Insertion fee |
|---|---|---|---|---|---|
| New seller, under free limit | 250 | 40 | 10 | 0 | $0.35 |
| High volume month, exceeds free limit | 250 | 245 | 20 | 0 | $0.35 |
| GTC renewals consume free slots | 250 | 240 | 5 | 12 | $0.35 |
Replace values with your own listing counts and fees.
Formula Used
1) Chargeable listing events
free_remaining = max(0, free_listings − used_free_listings)
total_events = new_listings + gtc_renewals
chargeable_events = max(0, total_events − free_remaining)
total_events = new_listings + gtc_renewals
chargeable_events = max(0, total_events − free_remaining)
2) Insertion fees
insertion_total = chargeable_events × insertion_fee
3) Listing upgrades
upgrades_total = Σ (upgrade_fee × upgrade_events)
4) Optional selling fees estimate
sale_total = item_price + shipping + sales_tax
final_value_fee = (final_value_percent / 100) × sale_total
ad_fee = (ad_rate_percent / 100) × sale_total
selling_fees_total = final_value_fee + per_order_fee + ad_fee
final_value_fee = (final_value_percent / 100) × sale_total
ad_fee = (ad_rate_percent / 100) × sale_total
selling_fees_total = final_value_fee + per_order_fee + ad_fee
If your category or store subscription changes fees, overwrite the fee inputs.
How to Use This Calculator
- Pick a currency for display, then enter your free listing allocation.
- Enter how many free listings you already used this month.
- Add your new listings and any GTC renewals expected.
- Set the insertion fee you pay after free listings run out.
- Enable upgrades you plan to use and update their fees.
- Optionally enable selling-fee estimation for a full cost view.
- Click Calculate Fees, then export CSV or PDF.