Skip to content
Create account or Sign in
The Stripe Docs logo
/
Ask AI
Create accountSign in
Get started
Payments
Revenue
Platforms and marketplaces
Money management
Developer resources
APIs & SDKsHelp
Overview
Get started with Connect
Design your integration
    Interactive platform guide
    SaaS platform
    Marketplace
      Quickstart
      Essential tasks
        Create a connected account
        Set up Dashboard access
        Onboard a connected account
        Enable payment methods
        Accept a payment
        Collect application fees
        Pay out to connected accounts
        Handle refunds and disputes
Integration fundamentals
Example integrations
Account management
Onboard accounts
Configure account Dashboards
Work with connected account types
Payment processing
Accept payments
Pay out to accounts
Platform administration
Manage your Connect platform
Tax forms for your Connect platform
United States
English (United States)
HomePlatforms and marketplacesDesign your integrationMarketplaceEssential tasks

Create and prefill the connected account

Create connected accounts for your marketplace.

A connected account is a Stripe account that belongs to one of your users (such as a seller, service provider, or vendor). Connected accounts enable your marketplace to accept payments and manage funds on behalf of your users while maintaining separate financial records for each seller. As a marketplace, you must create connected accounts for each seller or service provider in your marketplace to facilitate payments, handle payouts, and ensure proper compliance and reporting. This separation allows each connected account to have their own transaction history, business information, and payout schedule, while giving your marketplace the ability to charge application fees and manage the overall payment flow. End customers see your marketplace’s name on receipts after making a purchase, rather than the name of the seller or service provider.

This guide shows you how to create a connected account and prefill the relevant fields.

Before you begin

Follow the interactive platform guide to set up your Stripe marketplace account.

Create a connected account

Use the Accounts v2 API to create a connected account by specifying the connected account Dashboard and responsibilities. As a marketplace, your platform:

  • Is usually the merchant of record
  • Uses indirect charges
  • Manages disputes and refunds
  • Earns revenue by taking a cut from each transaction through application fees

These features impact the parameters you set when you create your connected accounts.

Assign account configurations

Connected accounts interact with your platform and Stripe based on which configurations you assign. Most marketplaces assign their connected accounts the recipient configuration. Some marketplaces also assign the merchant configuration.

The recipient configuration includes the stripe_balance.stripe_transfers capability, which allows the Stripe balance for the Account to receive Transfers from the platform’s balance. You must assign the stripe_balance.stripe_transfers capability to use indirect charges.

You also need to assign the merchant configuration to your connected accounts in the following cases:

  • You use direct charges. It’s rare for marketplaces to use this charge type.
  • You use indirect charges with the on_behalf_of parameter to set a connected account as the merchant of record.

Code sample

Command Line
cURL
No results
curl -X POST https://api.stripe.com/v2/core/accounts \ -H "Authorization: Bearer
sk_test_BQokikJOvBiI2HlWgH4olfQ2
"
\ -H "Stripe-Version: 2025-09-30.preview" \ --json '{ "contact_email": "testaccount@example.com", "display_name": "Test account", "defaults": { "responsibilities": { "fees_collector": "application", "losses_collector": "application" } }, "dashboard": "express", "identity": { "country": "us" }, "configuration": { "recipient": { "capabilities": { "stripe_balance": { "stripe_transfers": { "requested": true } } } } }, "include": [ "configuration.recipient", "identity", "requirements" ] }'
ParameterValueDescription
defaults.responsibilities.fees_collectorapplicationYour marketplace pays all Stripe fees, including payment processing fees.
defaults.responsibilities.losses_collectorapplicationYour marketplace is responsible for negative balances and manages credit and fraud risk on the connected account. This requires you to review and acknowledge your responsibilities in the Dashboard.
dashboardexpressThe connected account can access the Express Dashboard.
configuration.recipient.capabilities‘stripe_balance.stripe_transfers’The connected account can receive funds from your marketplace.

The response includes the ID, which you use to reference the Account throughout your integration. After the request succeeds, the account exists in a pending state. Next, use the information you already have to prefill the onboarding form for the connected account.

Prefill account information

If you’ve already collected information for your connected accounts, you can prefill that information on the Account object. You can prefill any account information, including personal and business information, external account information, and so on.

After creating an account, create a Person with relationship.representative set to true to represent the person responsible for opening the account and any account information you want to prefill (for example, their first and last name).

Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node.js
Go
.NET
No results
curl https://api.stripe.com/v1/accounts/
{{ACCOUNT_ID}}
/persons
\ -u "
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:"
\ -d first_name=Jenny \ -d last_name=Rosen \ -d "relationship[representative]"=true

Connect Onboarding doesn’t ask for the prefilled information. However, it does ask the account holder to confirm the prefilled information before accepting the Connect service agreement.

When testing your integration, prefill account information using test data.

Next steps

After you prefill the merchant information, set up Dashboard access for the connected account.

Was this page helpful?
YesNo
  • Need help? Contact Support.
  • Check out our changelog.
  • Questions? Contact Sales.
  • LLM? Read llms.txt.
  • Powered by Markdoc