Marketplace app development

Two sides, one app that actually works

Marketplaces live or die on matching, trust, and payments, not the login screen. We build the Flutter apps and the backend logic behind them, fixed price, with the discovery work done upfront.

What we build

Marketplaces come in shapes,
not one template

The word covers products with very different engineering underneath. Knowing which one you are building changes the scope more than any feature on your list.

Services

Customers book a person for a job. Availability, location, and scheduling do most of the work, and the transaction closes after the job is done.

Rentals

The same item goes out and comes back repeatedly. Inventory state, condition, deposits, and overlapping date ranges are the hard part.

Jobs and gigs

Two roles with very different flows: one posts, one applies. Matching quality matters more than search speed, and repeat usage is the metric that counts.

Resale

Single item listings that disappear when sold. Speed of listing, trust signals, and dispute handling carry the whole experience.

B2B and wholesale

Quotes instead of fixed prices, approval flows, several users on one company account, and invoicing rather than card payments.

Managed marketplace

You control who joins and how matches are made rather than letting the market sort itself out. Less software, more operational tooling.

What makes a marketplace different

It is not a CRUD app with two logins

Most of the engineering time on a marketplace goes into the parts that do not show up in a wireframe.

Matching and search
Getting the right provider in front of the right customer, whether that is a map radius search, availability matching, or a queue. This logic is specific to your marketplace, not something you buy off the shelf.
Trust and reputation
Ratings, reviews, and a way to resolve disputes. Without this, one bad experience on either side and people stop using the platform.
Payments and payouts
Money needs to move from customer to provider, usually held until a booking or sale completes, with your platform taking a cut. Stripe Connect handles the compliance layer so you do not build it yourself.
Real time status
Both sides need to see booking status, availability, or messages update live. This is where a lot of marketplace apps feel broken if it is not built right from the start.
Two onboarding flows, not one
A provider signing up has to enter far more than a customer: profile, availability, pricing, payout details, sometimes verification. Treating both sides as one signup screen is the most common scoping mistake we see.
Operational tooling for you
Someone has to approve providers, step into disputes, and fix bad data. Early on that person is you, and how much tooling you need depends entirely on volume, which is why we scope it late rather than first.

The real problem

Software is not what kills
most marketplaces

The cold start problem is: customers will not come without providers, and providers will not stay without customers. No amount of engineering solves that, but the way you build can make it easier or harder to get through.

01

Start with supply, almost always

Customers who arrive to an empty marketplace do not come back. Providers will tolerate a quiet start if joining is easy. That means the provider side needs to be genuinely finished at launch while the customer side can be thinner.

02

Win one narrow slice first

Liquidity is local. A marketplace that works properly in one city or one category beats one that is technically national and empty everywhere. Build for the slice, not the map.

03

Be willing to do it manually

Matching by hand for the first weeks teaches you the rules your algorithm should follow. Automating a matching logic you have not tested against real requests is how marketplaces ship the wrong product confidently.

04

Make staying worth more than leaving

Both sides will try to take the transaction off platform. Blocking contact details rarely works. Payment protection, real dispute resolution, and scheduling that is easier in the app than over messages do.

Money movement

How the cut actually works

This is the part founders underestimate most, because taking a card payment and running a marketplace payment flow are not the same problem.

Provider onboarding into payments
Every provider has to be verified before they can be paid, which means identity and bank details collected inside your flow. Stripe Connect handles the verification itself, but the screens, the pending states, and the rejected cases are yours to build.
Holding funds until completion
The customer pays at booking, the provider gets paid after delivery. Between those two events the money sits somewhere and your app has to be right about what happens if the job is cancelled, disputed, or partially done.
Splitting and taking a commission
Straightforward when there is one provider and one payment. Less so with multi item orders, tips, discount codes, refunds of part of an order, or a promotion you funded yourself.
Refunds and disputes
A chargeback after a payout has already left means recovering money from a provider. Deciding that policy before launch is a product decision, not a support decision, and it changes what gets built.
What Stripe Connect does not cover
It gives you the money movement and the compliance layer. It does not give you your pricing rules, your cancellation policy, your payout schedule, or the reconciliation view you will want by month three. That is the work.

Proof, not a pitch

Loopy Jobs: a two sided marketplace we built end to end

Loopy Jobs connects specialists and clients through map based search, in one app with role based views for each side rather than two separate builds. The booking and matching logic was not something we wired up from a template. It was the first project where we built that backend ourselves, because the client's two user types needed rules specific to how they actually work together, not generic marketplace plumbing.

We ran it on heavy discovery upfront, then two week iterations, so the client could check the product against real usage before we committed to the next slice of scope.

Marketplace app development screens from Loopy Jobs, showing specialist map search and list views
See the full Loopy Jobs case study Screens, the backend approach, and what we would do differently next time.
View case study →

Version one

What to build first,
and what to leave out

A marketplace has more obvious features than any other kind of app, which makes it the easiest to overbuild. Here is roughly where we draw the line on a first release.

Build it now
  • Both onboarding flows, with the provider side finished properly
  • Listings and the one search or matching path that fits your model
  • A booking or order flow that completes end to end
  • Simple ratings, because trust is the product
  • A way for you to intervene manually when something goes wrong
Leave it for later
  • In app payments, if the two sides can settle outside the app at first
  • In app messaging, before you know they want to talk in the product
  • Weighted scoring, badges, and reputation tiers
  • A custom admin panel, which is a second application in practice
  • Multi city or multi category support before one of either works
Whether payments go in version one is the biggest cost decision It is the single largest jump on the whole pricing ladder, and it is worth deciding deliberately rather than by default.
What a marketplace MVP costs →

Marketplace app

Custom fixed price quote

14 to 24 weeks, scoped after discovery

  • Two user roles, one app or two
  • Matching or search logic built for your case
  • Payments and payouts (Stripe Connect)
  • Ratings, reviews, and dispute handling
  • Real time chat and booking status

Instrument from day one

The numbers that tell you
whether it is working

Downloads tell you nothing about a marketplace. These four do, and they are cheap to build in at the start and awkward to retrofit later.

Match rate

Of the requests or searches that happen, how many end in an actual match. A low match rate with healthy traffic means your problem is supply or matching logic, not marketing.

Time to first match

How long a new customer waits before something happens. This is the number that predicts whether they come back, and it is usually the first thing to degrade as you grow.

Provider repeat rate

How many providers accept a second job. Providers leaving quietly is the failure mode nobody notices in time, because the app looks fine and signups keep arriving.

Off platform leakage

Hard to measure exactly, but worth approximating: matches that never turn into a completed transaction in the app. If that number is high, your take rate is theoretical.

Why it matters here

One codebase, two user experiences

A marketplace usually means shipping two different experiences, one for each role. Flutter builds both from a single codebase, so you are not paying to build and maintain a native app twice over for a role split most agencies would quote as two separate projects.

Underneath, the backend is chosen per project rather than by default: NestJS when the business logic is substantial and lives in one place, Supabase when the data model is straightforward and real time subscriptions carry most of the behaviour. Payments through Stripe Connect either way.

Curious what this costs in general? See the full cost breakdown by app type and a free calculator.
Mobile app cost guide →

How we work

Sequence the build, not just the backend

The fixed price and milestone setup is the same as any Apps Value project. What is specific to marketplaces is sequencing: most launch stronger by onboarding providers before customers, so you are not testing an empty platform. We help you plan that order during discovery, before any screen gets built.

That discovery work is also where the payments question gets settled, since whether money moves through the app in version one changes both the price and the timeline more than any other single decision.

Talk about your marketplace idea

FAQ

Marketplace app development: questions

What founders ask us before the first call.

How much does it cost to build a marketplace app?

It depends mainly on matching logic, payment complexity, and whether you need one app with two roles or two separate apps. We quote as a fixed price after a discovery call, once the scope is clear, typically for a 14 to 24 week build. For a first version rather than a full platform, see what a marketplace MVP costs.

Do I need two separate apps for buyers and sellers?

Not always. Many marketplaces run both roles from a single app with role based views, which is cheaper to build and maintain. Two separate apps make sense when the provider side needs a fundamentally different workflow, like a driver app versus a rider app.

How does payment and payout handling work in a marketplace app?

Most marketplaces use Stripe Connect or a similar split payment provider to hold funds and release payouts to providers after a booking or sale completes. This avoids building your own money movement and compliance layer from scratch.

Should payments go through the app in version one?

Not always. If your goal is to prove that the two sides find each other and transact at all, letting them settle payment outside the app for the first release removes the single largest block of engineering work. You can add in app payments once you know there is a transaction worth taking a cut of.

What is the hardest part of building a marketplace app?

Matching and trust. Getting search or matching logic right so both sides find what they need, and building ratings, reviews, and dispute handling so both sides trust the platform, usually take more design and engineering time than the basic CRUD screens.

Which side of the marketplace should we launch first?

Almost always supply. Customers arriving to an empty marketplace do not come back, while providers will tolerate a quiet start if onboarding is easy. That sequencing decision shapes what gets built first, so we plan it during discovery rather than after launch.

How do you stop users taking the transaction off the platform?

You make staying on it worth more than leaving. In practice that means payment protection, dispute resolution, reviews that carry weight, and scheduling that is genuinely easier in the app than over messages. Blocking contact details rarely works and usually annoys both sides.

Do we need reviews and ratings in the first version?

Usually a simple version, yes. Trust is the product in a marketplace, and with no signal at all the first customers have no reason to pick one provider over another. What you can defer is the elaborate part: badges, tiers, weighted scoring, and public response threads.

Can you build custom booking or matching logic instead of using a template?

Yes. On Loopy Jobs we built the booking and matching backend ourselves rather than wiring up a template, because the client needed logic specific to how their two user types interact.

What technology do you build marketplace apps with?

Flutter for iOS and Android from one codebase, with a backend in NestJS or Supabase depending on the shape of the data and how much real time behaviour is involved. Payments through Stripe Connect. The stack is chosen per project rather than applied by default.

Can you build a B2B or wholesale marketplace, not a consumer one?

Yes, and the requirements differ meaningfully. B2B marketplaces tend to need quotes rather than fixed prices, approval flows, multiple users per company account, and invoicing instead of card payments. That is a different scope from a consumer marketplace and we price it accordingly.

Is a marketplace different from a booking app?

They overlap, and the difference is who owns the supply. In a booking product you are scheduling against your own resources or staff. In a marketplace the supply belongs to independent providers, which adds onboarding, payouts, and trust. If yours is the first case, see booking app development instead.

Let's scope your marketplace

Tell us how your two sides are supposed to work together. We will get back within 24 hours with an honest read on scope, timeline, and cost.

Book a free discovery call