id stringclasses 10
values | name stringclasses 10
values | kind stringclasses 3
values | percent float64 0 20 | fixed float64 0 0.45 | summary stringclasses 10
values | notes stringclasses 10
values | source stringclasses 10
values | calculator stringclasses 7
values |
|---|---|---|---|---|---|---|---|---|
vinted | Vinted | resale | 0 | 0 | Vinted charges sellers $0 — buyers pay the protection fee | No seller fee. Vinted charges the buyer a ~5% + $0.70/€0.70 buyer protection fee on top of your price instead — it doesn't come out of your payout, but it affects what buyers are willing to pay. | https://www.vinted.com/help/79-what-are-the-fees | https://vinted-fee-calculator-tan.vercel.app |
depop | Depop | resale | 3.3 | 0.45 | 3.3% payment processing + $0.45 fixed per sale | Depop dropped its 10% seller fee in 2024 (US/UK). What's left is payment processing only: 3.3% + $0.45 fixed. | https://depophelp.zendesk.com/hc/en-gb/articles/360001019508-Depop-fees | https://depop-fee-calculator-gules.vercel.app |
whatnot | Whatnot | resale | 10.9 | 0.3 | 8.0% seller fee + 2.9% payment processing + $0.30 fixed | 8.0% seller commission + 2.9% payment processing + $0.30 fixed per order = 10.9% + $0.30 combined. | https://help.whatnot.com/hc/en-us/articles/4405219819419-Seller-Fees | https://whatnot-fee-calculator-pink.vercel.app |
patreon | Patreon | creator | 12.9 | 0.3 | 10% platform fee (new creators, Aug 2025+) + 2.9% + $0.30 | 10% Patreon platform fee (new creators onboarded Aug 2025 or later) + 2.9% + $0.30 payment processing = 12.9% + $0.30. Legacy creators on older plans may pay less platform fee (as low as 5–8%) — check your dashboard. | https://support.patreon.com/hc/en-us/articles/204606315-Patreon-s-fees | https://patreon-fee-calculator-blush.vercel.app |
gumroad | Gumroad | creator | 12.9 | 0.3 | 10.0% seller fee + 2.9% payment processing + $0.30 fixed | 10.0% flat Gumroad fee + 2.9% + $0.30 payment processing = 12.9% + $0.30 combined on every sale. | https://help.gumroad.com/article/66-gumroads-fees | https://gumroad-fee-calculator.vercel.app |
doordash | DoorDash | gig | 0 | 0 | No cut taken from what DoorDash pays you — your costs are gas/vehicle | DoorDash doesn't take a percentage out of your dasher pay the way a marketplace takes a seller fee — what's shown as your payout (base pay + tips + promotions) is yours. The real deductions are your own costs: mileage, gas, phone, insurance. Enter those as costs below to see true take-home. | https://help.doordash.com/merchants/s/article/what-are-the-fees | https://doordash-earnings-calculator.vercel.app |
etsy | Etsy | resale | 9.5 | 0.45 | 6.5% transaction + 3% + $0.25 processing + $0.20 listing fee | $0.20 listing fee + 6.5% transaction fee + 3% + $0.25 payment processing (US, Etsy Payments) = 9.5% + $0.45 combined. The 6.5% applies to the shipping you charge as well as the item. Offsite Ads add another 15% (12% once you pass $10k in trailing annual sales, at which point they become mandatory) — that is not include... | https://www.etsy.com/legal/fees/ | https://etsy-fee-calculator-chi.vercel.app |
ebay | eBay | resale | 13.6 | 0.4 | 13.6% final value fee + $0.40 per order | 13.6% final value fee on the total (item + shipping + tax) for most categories, plus a $0.40 per-order fee. Rates vary by category, drop to 2.35% on the portion above $7,500, and Store subscribers pay less — check your own category before pricing on this. | https://www.ebay.com/help/selling/fees-credits-invoices/selling-fees | null |
poshmark | Poshmark | resale | 20 | 0 | 20% on sales of $15+ — a flat $2.95 below that | Poshmark takes 20% on sales of $15 and over, with payment processing included. Below $15 it is a flat $2.95 instead, which this calculator does not model — for a sub-$15 sale, use 'Other / custom' with 0% and $2.95 fixed. | https://support.poshmark.com/s/article/What-are-the-selling-fees | null |
mercari | Mercari | resale | 10 | 0 | Flat 10% of the item price — no separate processing fee | Mercari reintroduced a seller fee in January 2025: a flat 10% of the item price plus any shipping the buyer pays, with no separate payment-processing charge on top. | https://www.mercari.com/help_center/article/803/ | null |
Marketplace Seller Fee Data
A small, hand-checked reference of what selling on a marketplace actually costs the seller — the percentage cut, the fixed per-order fee, and the caveats that move those numbers — for 10 of the platforms independent sellers, creators and gig workers use most.
Every platform row links to that platform's own official fee page as its source, so you can
verify the figure at the moment you read it rather than trusting a scraped number.
Splits
| Split | Rows | One row is… |
|---|---|---|
platforms |
10 | one marketplace's default seller-fee model |
Columns
| Column | Type | Meaning |
|---|---|---|
id |
string | Stable slug (vinted, depop, …) |
name |
string | Display name |
kind |
string | resale, creator, or gig |
percent |
float | Combined percentage fee (seller commission + payment processing) taken from the sale |
fixed |
float | Fixed per-order/per-sale fee in USD |
summary |
string | One-line breakdown of how percent + fixed are composed |
notes |
string | The caveats: tiers, categories, country, legacy plans, thresholds |
source |
string | URL of the platform's official fee page |
calculator |
string | A public fee calculator for that platform (null where none is published) |
Platforms covered
Vinted · Depop · Whatnot · Patreon · Gumroad · DoorDash · Etsy · eBay · Poshmark · Mercari
Quick example
from datasets import load_dataset
ds = load_dataset("Jelonman/marketplace-fee-data", split="platforms")
print(len(ds), "platforms")
# What you keep on a $50 sale, per platform
for row in ds:
kept = 50 * (1 - row["percent"] / 100) - row["fixed"]
print(f'{row["name"]:>10}: ${kept:6.2f} kept ({row["percent"]}% + ${row["fixed"]})')
The raw source of truth
data/fees.json is the canonical machine-readable file the rows are generated from. It carries the
schema pointer, version, updated date, currency, a disclaimer, and the full platform list —
the same file distributed as the marketplace-fee-data
npm package. platforms.jsonl is the flattened, one-row-per-platform view that powers the dataset
viewer above.
Disclaimer
Rates are the common / default seller case for each platform. Category, country, subscription
tier and legacy plans change them. Always check the platform's own fee page (linked as source)
before pricing on these numbers.
Versioning
- Schema/data
version: 1.0.0 updated: 2026-08-03currency: USD
License
MIT — see LICENSE. Use it, ship it, correct it.
- Downloads last month
- 31