Marketplaces10 min

Marketplace take-rate economics: finding the sweet spot

A practical look at marketplace take-rate benchmarks — Uber, Airbnb, Etsy, OpenSea — and the pricing power, supply constraints, and unit economics that set the number.

Take rate is the single most consequential number on a two-sided marketplace. It funds the product, the trust and safety team, the payments stack, and every marketing dollar spent to solve the cold-start problem. Pick it too low and growth is unaffordable; pick it too high and supply defects to a cheaper competitor the moment one appears. The right number is a function of transaction frequency, pricing power, and how much value the platform is actually delivering beyond matchmaking. Here's how the household-name marketplaces got to their numbers, what moves the dial, and the framework we use when a client asks what theirs should be.

The benchmarks, in one table

Public take rates span almost an order of magnitude, which tells you immediately that there's no universal right answer. What the table shows is the shape of each platform's value capture — who the fee falls on, whether payment processing is baked in, and how the number has moved as competition tightened.

PlatformHeadline take rateWho paysNotes
Uber~25%Driver sideHas drifted upward over time; includes service fee and booking fee components
Airbnb~15% blended (3% host + up to 14.2% guest)Split modelHost-only option exists at ~15%; guest fee scales with booking size
Etsy6.5% + $0.20 listing + payment processingSeller sideAll-in effective rate closer to 10–11% after Etsy Payments and ads
OpenSea1.0% (was 2.5%, then 0%, now 1%)Buyer/seller sideCrashed to zero under competitive pressure in 2023, partially recovered
eBay~13% final value fee (category dependent)Seller sideHigher on luxury, lower on motors and commodity categories
DoorDash~20–30% merchant commissionMerchant sideHeavily regulated in some US cities with caps at 15–20%

Headline numbers hide a lot. Most platforms layer a seller fee, a buyer fee, payment processing, and optional promoted-listing spend. The effective take rate — total fees divided by GMV — is usually 1.5–2× the published commission.

What actually sets the number

Four variables do most of the work. Understand these and the benchmark table starts to make sense as a shape rather than a random spread.

  1. Transaction frequency. High-frequency marketplaces (ride-hail, food delivery) need lower friction per transaction but can compound their take on volume. Low-frequency marketplaces (real estate, event bookings) have one shot to capture value, so per-transaction rates are higher.
  2. Pricing power. A platform that is genuinely the cheapest, fastest, or only way to transact can charge more. When substitutes are plentiful — NFTs in 2023 was the canonical example — take rate collapses toward the marginal cost of running the rails.
  3. Supply or demand constraint. Whichever side is scarcer has the pricing power. Uber charges drivers because riders are abundant; a plumber marketplace charges homeowners because qualified plumbers are scarce.
  4. Embedded services. Matchmaking-only (Craigslist) is worth almost nothing and captures almost nothing. Matchmaking plus payments plus trust plus insurance plus logistics (Airbnb, Uber) captures meaningfully more because defection to off-platform transactions costs the counterparty those services too.

Seller fees, buyer fees, and who should pay

The structural decision before the numeric one is which side of the market pays. Each approach has predictable consequences. Seller-only fees are simple and keep buyers' perceived prices clean, but they push sellers to raise list prices to compensate — so buyers end up paying anyway, just invisibly. Buyer-only fees make the list price look lower than the all-in price, which trains buyers to read totals carefully and erodes trust when the fee appears at checkout. Split fees are the most common in practice because they spread the psychological cost across both sides; the risk is that neither side feels the cost clearly enough to push back when fees creep up.

Payment processing — pass-through or absorbed?

Stripe, Adyen, and regional processors bill a marketplace 2.5–3.5% plus a fixed per-transaction fee for most card volume. That cost has to land somewhere. There are three common models, each with tradeoffs:

  • Absorbed into the commission. The marketplace quotes a single number (e.g. Uber's ~25% service fee) and eats the processor cost internally. Clean for the seller, but the effective margin is the take rate minus 2.5–3.5%.
  • Pass-through to one side. Etsy bills sellers a separate processing fee on top of the 6.5% transaction fee. The seller sees the real cost, which keeps the seller honest about how thin their margin is.
  • Pass-through to the buyer. Some B2B and ticketing marketplaces add a visible processing line item at checkout. Transparent, but guarantees a checkout friction point.

A worked unit-economics example

Concrete numbers make the tradeoffs obvious. Consider a services marketplace — freelance design work — with an average order value of $400 and 20,000 transactions a month. Below is what the monthly contribution margin looks like at three candidate take rates, accounting for payment processing and a realistic fraud/chargeback line. CAC and fixed overhead are excluded because those compound linearly on top.

// Marketplace unit economics — monthly contribution at three take rates
const aov = 400;                 // average order value, USD
const ordersPerMonth = 20_000;
const gmv = aov * ordersPerMonth; // $8,000,000

type Model = { takeRate: number; label: string };
const candidates: Model[] = [
  { takeRate: 0.08, label: "Etsy-ish (low)" },
  { takeRate: 0.15, label: "Airbnb-ish (mid)" },
  { takeRate: 0.25, label: "Uber-ish (high)" },
];

for (const { takeRate, label } of candidates) {
  const commission = gmv * takeRate;
  const processing = gmv * 0.029 + ordersPerMonth * 0.3; // 2.9% + $0.30
  const fraudAndChargebacks = gmv * 0.004;               // ~40 bps
  const refundReserve = gmv * 0.005;                     // ~50 bps
  const contribution = commission - processing - fraudAndChargebacks - refundReserve;

  console.log(label, {
    commission,
    processing,
    contribution,
    marginOfGMV: (contribution / gmv).toFixed(4),
  });
}

// Output (rounded):
// Low:  commission $640k, contribution ~$391k, 4.9% of GMV
// Mid:  commission $1.2M, contribution ~$951k, 11.9% of GMV
// High: commission $2.0M, contribution ~$1.75M, 21.9% of GMV

The low-take-rate model leaves roughly 4.9% of GMV to fund CAC, engineering, support, and profit. At a blended $40 CAC and 30% monthly repeat rate, that's a marketplace that works only if it's already very large or organically viral. The mid-tier model is the realistic sweet spot for most two-sided platforms. The high-tier model funds aggressive growth but invites competitors and regulatory attention — which is exactly what happened to Uber and DoorDash.

Race-to-the-bottom risk is real. OpenSea went from 2.5% to 0% to 1% inside eighteen months because competitors offered zero-fee trading and users defected instantly. If your take rate is your primary differentiator, it is also your weakest moat. Price on value delivered, not on being cheaper than the incumbent.

When to move the number

Take rates are easier to lower than to raise. Lowering it is received as a favor; raising it reads as a tax, and every seller calculates the delta personally. Platforms that have raised successfully tend to share a pattern: they raise after shipping a concrete new service (insurance, fulfillment, promoted placements) so the fee hike has a story attached, and they grandfather existing sellers for a window to soften the blow. Platforms that raise without a story get the Etsy-2022 treatment — public backlash, seller strikes, press coverage that lingers for years.

How we'd pick for a new marketplace

For a greenfield two-sided marketplace, a reasonable starting point is 10–15% total take, split between a seller fee (around 8–10%) and a visible payment-processing pass-through. That range funds the economics without looking predatory, leaves room to introduce premium tiers (promoted listings, verified badges, logistics) as revenue stacks on top, and sits comfortably below the defection threshold that shows up in the benchmark table. If the platform does real work beyond matchmaking — identity verification, escrow, dispute resolution, payouts to dozens of countries — the number can drift upward over time once the services are proven. The critical discipline is never to price on what the platform needs to cover its own costs; always price on the value delivered to the side paying.

Instrument effective take rate from day one: total platform revenue divided by GMV, tracked weekly. The gap between headline and effective take rate tells you whether fee stacking is creeping up on you and whether sellers or buyers are quietly absorbing more than you think.

Key takeaways

  • Take rate is set by transaction frequency, pricing power, supply vs demand scarcity, and how many services beyond matchmaking the platform bundles — not by what competitors charge.
  • Headline take rate understates reality. Track effective take rate (total fees / GMV) weekly to see what sellers and buyers actually feel.
  • Racing competitors down on commission is a losing game unless the platform has a structural cost advantage. OpenSea's collapse is the cautionary tale.
  • Payment processing has to land somewhere. Decide deliberately whether to absorb, pass through to one side, or split — each shapes seller and buyer behavior.
  • Raising take rate is costly without a story. Ship a new service first, grandfather existing sellers, then raise.
  • Start around 10–15% total for a new two-sided marketplace, split between seller fee and transparent processing, with premium tiers layered on top.
#marketplaces#take-rate#unit-economics#pricing#platform-fees#payments
Working on something similar?

Let's build it together.

We ship production SaaS, marketplaces, and web apps. If you want an engineering partner — not a consultancy — let's talk.