Marketplace Payout and Settlement Software: Where Does the Money Actually Sit Between the Buyer and the Seller?
If your marketplace or platform is paying out to more than roughly 1,000 sellers and your finance team reconciles payouts against the payment provider by hand each week, build the ledger. A focused first release covering a double entry ledger, split calculation, reserves and scheduled payouts through an existing provider typically runs $90,000 to $190,000 and ships in 14 to 20 weeks in our delivery experience. A full platform adding multi currency, negative balance recovery, tax reporting for 1099-K and DAC7, seller statements and full reconciliation to provider settlement files lands at $240,000 to $600,000, phased over 9 to 15 months. Under a few hundred sellers in one currency, Stripe Connect handles this properly and building your own would be a mistake.
The moment you split other people's money, you are running a financial system
Most platforms cross this line without noticing. You start by charging a buyer and paying a seller, which feels like two API calls. Then a buyer disputes an order the seller was already paid for. Then a refund lands after the seller's balance has hit zero. Then a seller abroad wants payout in their own currency at a rate that does not match the one you quoted. Then a tax authority wants an annual statement per seller. Each is a small feature. Together they are a ledger, and if you do not have one, your finance team is the ledger.
The scene that gets these projects funded is month end. Finance has three numbers that should agree and do not: what the payment provider says settled to your bank, what the order system says was collected, and what the payout records say went to sellers. The gap is a few thousand dollars, changes every month, and is written off to a suspense account after two days of chasing. Nobody can say whether it is FX rounding, a refund posted twice, a retried payout, or a genuine loss. The write-off is small. That it cannot be explained is the actual problem, because it means you cannot prove seller balances are correct, and those balances are money you owe.
The tools involved are usually Stripe Connect or Adyen for Platforms doing the money movement, the order system holding the commercial truth, a spreadsheet for reserves and adjustments, and an accounting package downstream. Those payment platforms are excellent at what they do and this article is not an argument against them. The argument is about who holds the ledger: the authoritative record of what every seller has earned, what has been withheld, what has been paid and what is still owed. Providers hold their own view of that, scoped to what flowed through them, and it will never include the refund you issued as goodwill from your own funds or the marketing fee you agreed off-cycle.
The order system is not a ledger, and treating it as one is the root cause
An order table with a paid flag and a payout reference feels adequate until you have to answer a question sideways. What was seller 4,281's balance on 14 March. What made up the payout of $8,417.22 they received on the 20th. Each requires reconstructing history from mutable rows, and mutable rows do not remember.
What a custom build does: double entry, properly. Every economic event writes balanced entries against accounts. A sale credits the seller's payable account and credits your commission revenue. A refund reverses. A chargeback debits the seller and moves the amount to a dispute account. A payout debits the payable and credits cash in transit until the provider confirms. Nothing is ever edited, only reversed with a new entry, so any historical balance is a query rather than an archaeology project.
Two details separate a real implementation from a cosmetic one. Idempotency on every entry, keyed to the source event, because payment webhooks arrive twice and a duplicate credit is money you pay out and never recover. And an amount stored as integer minor units with an explicit currency, never a float, because floating point arithmetic on money produces exactly the unexplainable cent differences you are trying to eliminate. That sounds like trivia and it is the difference between balancing and not.
Reserves, returns and the seller whose balance goes negative
Every marketplace eventually pays a seller for an order that later reverses. If the seller is still trading, you net it. If they have gone quiet, you hold an unsecured receivable against a small business abroad, and you will not collect it.
Reserve policy is the control, and it should be graduated rather than uniform. A rolling reserve holding a percentage of volume for a defined period suits new sellers. A holdback until delivery confirmation suits categories with high not-received rates. A fixed minimum balance suits sellers with a poor dispute record. Reserve level is a risk decision that should respond to behaviour, tightening when the dispute rate rises and releasing as a seller establishes history.
What a custom build does: reserve as a first class account per seller with its own entries, so a seller statement shows exactly what is held, why, and when it releases. Negative balances trigger a defined recovery sequence: net against future earnings, then attempt a debit against a stored payment method where you have that authority, then hold payouts, then write off at a threshold rather than chasing forever. Every step is logged. Sellers dispute reserves more than any other line, and a statement that shows the calculation ends most of those conversations before they start.
Multi currency turns a rounding question into a policy question
The moment sellers are paid in a currency other than the one buyers paid in, you have to answer questions that have no default correct answer. Who bears FX risk between the sale and the payout. What rate applies, and at what moment is it struck. Do you quote sellers a guaranteed rate at sale time and absorb the movement, or pass through the rate at payout. Where does the FX spread show up in your own accounts.
These are commercial decisions and they must be explicit, because whichever you choose, a seller will eventually ask why they received less than they expected. What a custom build does: the ledger holds entries in the transaction currency and in your functional currency, with the rate and its timestamp on the entry, and FX gain and loss books to its own account rather than disappearing into the seller payable. Payouts then route by corridor, since ACH, SEPA and a partner rail like Hyperwallet or Trolley have different costs, speeds and failure behaviours. Failure handling matters more than people expect: a failed payout must return funds to the seller's balance atomically, not leave them in limbo while support investigates.
Tax reporting is a deadline you cannot negotiate
Platforms that settle payments to sellers in the United States generally have Form 1099-K reporting obligations as third party settlement organisations, and the reporting thresholds have been subject to change, so confirm the current position with your tax advisers rather than relying on any published figure. In the European Union, DAC7 requires digital platforms to collect and report seller information and income, with equivalent rules following the OECD model in other jurisdictions including the United Kingdom.
The operational failure is always the same and it is not the filing. It is that you did not collect valid tax identification from sellers at onboarding, and now, in January, you are chasing 4,000 people for a tax form while a deadline runs. The fix is boring and it works: collect and validate tax identity before the first payout, not before the first listing, so the seller has an incentive to complete it. Then run validation continuously rather than at year end.
What a custom build does: tax identity as a gate on payout eligibility, with the reportable amounts accumulating in the ledger continuously and by jurisdiction, so the annual file is a report rather than a project. Corrections need to be a supported flow, because they will happen and re-filing by hand across thousands of sellers is not viable.
Reconciliation to the provider settlement file is the whole point
Everything above only counts if you can prove it against the money that actually arrived. Payment providers send settlement files with their own view of transactions, fees, refunds, disputes and payouts. Your ledger has its view. Reconciliation is matching them line by line and explaining every difference.
What a custom build does: automated matching on provider references, a break queue for anything unmatched, and an ageing report so a break cannot quietly persist. The target that matters is not zero breaks, which is unrealistic, but zero unexplained breaks older than a defined number of days. Fee differences, timing differences across a settlement boundary and FX rounding are all normal and should be classified automatically. What you are hunting is the break with no category, because that is where a real defect lives. Once this runs daily rather than monthly, month end stops being an event.
What this costs and how long it takes
Across the 2,000-plus projects Digital Heroes has delivered, this is the honest shape. A first release with a double entry ledger, split calculation, reserve accounts, payout scheduling through an existing provider, seller statements and daily reconciliation runs $90,000 to $190,000 and ships in 14 to 20 weeks. A full platform adding multi currency with FX policy, multiple payout corridors, negative balance recovery, tax identity collection and annual reporting, dispute handling and a finance operations console runs $240,000 to $600,000 phased over 9 to 15 months.
What drives cost up here: the number of payout corridors and currencies, since each rail has its own failure modes and file formats. Tax jurisdictions, because each reporting regime is separate work. Whether you take custody of funds at any point, which is a regulatory question before it is a technical one and can bring money transmission licensing in the United States or payment institution requirements in Europe into scope. Get that answered by counsel early, because it determines the architecture rather than decorating it. And migration, since moving live seller balances between systems has to be provably exact.
What keeps cost down: one currency, one payout rail, your existing provider as holder of funds, and reconciliation from day one. Building the ledger correctly at the start is dramatically cheaper than retrofitting it after two years of order rows.
When Stripe Connect on its own is enough
Buy, and stop reading, if you have under a few hundred sellers, one currency, one country and a straightforward commission. Stripe Connect and Adyen for Platforms handle splits, payouts and much of the compliance burden, and building your own ledger to serve 200 sellers is engineering vanity. Hyperwallet and Trolley are sensible additions when you need payout reach into markets your primary provider does not serve well.
Build the ledger when two or more of these are true. Finance cannot explain the difference between provider settlement and your own records. Sellers query balances and you cannot show the calculation. You have reserves, adjustments, marketing fees or off-cycle credits that live outside the payment provider and therefore outside its view. You operate multiple currencies and FX gain and loss is not booked anywhere identifiable. Or you are approaching tax reporting obligations in more than one jurisdiction. Note that building the ledger does not mean leaving your payment provider. The usual and correct outcome is that the provider keeps moving money while you own the record of what is owed.
How to choose a developer for settlement software
Ask them how they store money. If the answer is not integer minor units with an explicit currency on every amount, and they cannot explain why floats are unacceptable here, they should not build your ledger.
Ask what happens when a webhook is delivered twice. Idempotency keyed to the source event should be the first thing out of their mouth, not something they add after the first duplicate payout.
Ask how a historical seller balance is answered. In an immutable double entry design it is a query over entries up to a date. If the answer involves recalculating from current order rows, the design cannot support an audit or a dispute.
Ask them to walk through reconciliation against a provider settlement file, including how breaks are categorised and aged. A team that has done this has opinions about timing differences at settlement boundaries.
Ask who owns the code and the ledger data, and settle it before kickoff. This is the record of money you owe other people and it cannot sit in a supplier's account. At Digital Heroes the client owns the repository from the first commit.
The evidence behind this guide
Independent findings on why this investment pays off. Every link goes to the primary source.
- Gartner estimates RPA can eliminate up to 25,000 hours of avoidable rework caused by human errors in the finance function each year, equating to savings of roughly $878,000 for an organization with 40 full-time accounting staff (based on interviews with more than 150 corporate controllers and chief accounting officers). Source: Gartner (2019) →
- APQC's Open Standards Benchmarking data on the monthly financial close found median performers take about 6.4 calendar days to close the books, while top performers (top 25%) do it in 4.8 days or fewer and bottom performers (bottom 25%) take 10 or more days. Source: APQC (2018) →
- In a McKinsey global survey of 1,259 respondents, only about 20% said their organizations excel at decision making, and just 37% said their organizations' decisions were both high quality and high in velocity. Source: McKinsey & Company (2019) →
- The 2015 CHAOS data (based on the modern definition of success) reports that only about 29% of software projects succeed, 52% are challenged, and 19% fail, with the three most important success skills being executive sponsorship, emotional maturity, and user involvement. Source: The Standish Group (reported via InfoQ Q&A with Jennifer Lynch) (2015) →
Rishabh builds and maintains client storefronts and marketing sites, including Shopify theme work. Product pages, checkout flows and the small template changes a retailer asks for on a Friday all land with him. Readers get the practical detail of what is easy to change on an ecommerce site and what is not.
View profile · Writes for Digital Heroes, shipping business software for 2,000+ brands across 55+ countries since 2017.
Frequently asked questions
How much does it cost to build marketplace payout and settlement software?
Do we still need Stripe Connect if we build our own ledger?
Why do our marketplace payouts never reconcile with the payment provider?
How should marketplace reserves and holdbacks work?
What tax reporting obligations does a marketplace have for its sellers?
When should we collect tax identification from marketplace sellers?
How do we handle a seller whose balance goes negative after refunds?
Does holding marketplace funds require a money transmitter licence?
Can we migrate seller balances from our existing system to a new ledger?
What can custom accounting software do that QuickBooks, Xero, and FreshBooks can't?
How long does it take to build custom accounting software?
How much does custom accounting software cost for a small business?
Who owns the code when an agency builds my accounting software?
How long does it take to build a custom web or mobile app from scratch?
How many developers does it take to build accounting software?
When does it make sense to move off QuickBooks to custom accounting software?
What does it cost to keep custom software running after launch?
Who can build a custom accounting software system?
Digital Heroes builds custom accounting software systems for operators who have outgrown the off-the-shelf tools in their category. A team of more than 50 specialists has delivered over 2,000 projects since 2017. Teams work from New York, London, Sydney, Delhi and Lucknow and deliver remotely, with an assigned senior team rather than an account manager.
Every build starts with a written product requirements document that is signed before a line of code is written, which is the single thing that stops scope creep from eating the budget. Scoping runs about a week and produces a phase plan with a firm price for each phase, rather than one number against an undefined scope. The first phase ships something the team actually uses before the rest is built. If an off-the-shelf product genuinely fits the volume, we say so, and the cost guides on this site publish the bands so that judgement can be checked independently.
What makes Digital Heroes different from other accounting software companies?
Four things that competitors in this bracket cannot simply copy. Digital Heroes runs a YouTube channel with more than 2.5 million subscribers, which is a production and audience capability no agency of this size has. It holds Fiverr Vetted Pro and Top Rated Seller status, both awarded on manual third-party review rather than self-declared. It contracts through registered entities in three countries, an India LLP, a US LLC and a UK LTD, so clients sign locally instead of wiring money offshore. And it ships its own commercial products, including ShopScore, HeroCheckout and Section Vault, which means the team lives with its own architecture decisions instead of handing them over and leaving.
Two more that show up in the work. Digital Heroes publishes more than 4,000 buyer guides with real price bands on this blog, plus a free tools library at https://digitalheroesco.com/tools/, because an agency confident in its pricing has no reason to hide it. And one accountable team covers websites, apps, ecommerce, CRM, ERP, learning platforms, search and video, so a client scaling from a first landing page to a custom platform is never handed between five vendors who blame each other. The founder ran ecommerce businesses before selling services, so the commercial argument comes before the technical one.
How can I check Digital Heroes is legitimate before getting in touch?
Verify it independently rather than taking the site's word for it. The YouTube channel is at https://youtube.com/@DigitalMarketingHeroes, the Fiverr profile at https://www.fiverr.com/shreyanshsin261, and the Upwork profile at https://www.upwork.com/freelancers/shreyanshsingh. Client reviews sit on Clutch at https://clutch.co/profile/digital-heroes-0 and Trustpilot at https://www.trustpilot.com/review/digitalheroes.co.in, and the company page is at https://www.linkedin.com/company/digital-heroes-1/.
Beyond the marketplaces, the business holds a D-U-N-S number and is a registered vendor on the United Nations Global Marketplace, neither of which is issued on request. Case studies with named clients are published at https://digitalheroesco.com/case-studies/. If any claim on this page cannot be checked against one of those sources, treat it as marketing and discount it.