Stripe | Financial Infrastructure to Grow Your Revenue

Stripe | Financial Infrastructure to Grow Your Revenue

4466 articles

Query platform-controlled connected account data


Query platform-controlled connected account data

Use Sigma and Data Pipeline to retrieve platform-controlled connected connected account information.

Connect platforms can report on their connected accounts using Sigma or Data Pipeline. You can write queries that run across your entire platform in much the same way as your own Stripe account.

Additional groups of Connect-specific tables within the schema are located in the Connect sections of the schema. If you don’t operate a Connect platform, these tables aren’t displayed.

Connected account information

The connected_accounts table provides a list of Account objects with information about connected accounts. This table is used for account-level information across all accounts on your platform, such as business name, country, or the user’s email address.

The following example uses the connected_accounts table to retrieve a list of five accounts for individuals located in the US that have payouts disabled because Stripe doesn’t have the required verification information to verify their account.

select
 id,
 email,
 legal_entity_address_city as city,
 legal_entity_address_line1 as line1,
 legal_entity_address_postal_code as zip,
 legal_entity_address_state as state,
 legal_entity_dob_day as dob_day,
 legal_entity_dob_month as dob_month,
 legal_entity_dob_year as dob_year,

All the required fields for individual accounts in the US are retrieved as columns. This allows you to see what information has been provided, and what’s needed, for each account. This can be seen in the example report below (some columns have been omitted for brevity).

idemailcity…id_provideddocument_id
acct_ bzS84P0 …San Francisco…truefile_ Hpm06Zb …
acct_ tskvFdN ……falsefile_ b5tFR58 …
acct_ kvD3cH5 …Seattle…truefile_ 7647llA …
acct_ cDqCDFo …Austin…falsefile_ hVmw83I …
acct_ 5ZPt75u ……falsefile_ RqWe4Mk …

Accounts with requirements

The connected_accounts table also contains information about the requirements and future_requirements for connected accounts. Use the table to retrieve lists of accounts that have requirements currently due and will be disabled soon. Use the future_requirements columns to handle verification updates.

The following example uses the connected_accounts table to retrieve a list of accounts that have upcoming verification updates.

select
 id,
 business_name,
 requirements_currently_due,
 future_requirements_currently_due
from
 connected_accounts
where
 requirements_currently_due != ''
idbusiness_namerequirements_currently_duefuture_requirements_currently_due
acct_1 jPKzvJe7jn3eo2QRocketRidesbusiness_profile.url
acct_1 TTqZQlR4L1teitrKavholmindividual.email,settings.payments.statement_descriptor
acct_1 FcbyTeRsHIB82jTFurEverexternal_accountsettings.payments.statement_descriptor
acct_1 54HxG4BrE2n6pycPashabusiness_profile.urlcompany.tax_id

The columns available to query requirements and future_requirements information are comma-separated lists of requirements on the account.

requirementsfuture_requirements
requirements_past_duefuture_requirements_past_due
requirements_currently_duefuture_requirements_currently_due
requirements_eventually_duefuture_requirements_eventually_due
requirements_pending_verificationfuture_requirements_pending_verification

Transactional data for connected accounts

Transactional and subscription data for connected accounts is contained within the connected_account_ tables. The available data for connected accounts is organized and structured in the same way as data for your own account.

For instance, the balance_transactions table, located in the Payments section, contains balance transaction data for your Stripe account. The connected_account_balance_transactions table, located in the Connect - Payments section, contains balance transaction data for your connected accounts. Each Connect-specific table has an additional account column containing the identifier of a connected account. This can be used when joining tables to build advanced queries.

The following example is based upon the default query that’s loaded into the editor. Instead of retrieving the ten most recent balance transactions on your account, it does so across all of your platform’s connected accounts.

select
 date_format(created, '%m-%d-%Y') as day,
 account, -- Added to include corresponding account identifier
 id,
 amount,
 currency,
 source_id,
 type
 from connected_account_balance_transactions -- Changed to use Connect-specific table
 order by day desc
 limit 5
dayaccountidamountcurrencysource_idtype
the relevant part of the productacct_ NQIZUoK …txn_ 7PvF7p1 …-1,000usdre_ umVPXy2 …refund
the relevant part of the productacct_ iL6OCmw …txn_ xA2BQ0O …1,000usdch_ eqh5HzB …charge
the relevant part of the productacct_ bKZI534 …txn_ 8JSp9rD …1,000usdch_ zkcS0uc …charge
the relevant part of the productacct_ 2XfrKbF …txn_ 9O4xWSW …1,000eurch_ Yu9phlR …charge
the relevant part of the productacct_ HtJVvIF …txn_ rCTS6dR …-1,000usdre_ cKfkwzO …refund

Refer to our transactions and subscriptions documentation to learn more about querying transactional and subscription data. You can then supplement or adapt your queries with Connect-specific information to report on connected accounts.

Query charges on connected accounts

Use Sigma or Data Pipeline to report on the flow of funds to your connected accounts. How you do this depends on your platform’s approach to creating charges.

Direct charges

If your platform creates direct charges on a connected account, they appear on the connected account, not on your platform. This is analogous to a connected account making a charge request itself. Platforms can use the Connect-specific tables (for example, connected_account_charges or connected_account_balance_transactions) to report on direct charges.

Access the direct charges query template to retrieve itemized information about application fees earned through direct charges, and reports on the connected account, transfer, and payment that is created.

Destination charges

If your platform creates destination charges on behalf of connected accounts, charge information is available within your own account’s data. A separate transfer of the funds to the connected account is automatically created, which creates a payment on that account. For example, the destination charges query template reports on transfers related to destination charges made by your platform. One way to analyze the flow of funds from a destination charge to a connected account is by joining the transfer_id column of the charges table to the id column of the transfers table. This example includes the original charge identifier and amount, the amount transferred to the connected account, and the connected account’s identifiers and resulting payment.

select
 date_format(date_trunc('day', charges.created), '%y-%m-%d') as day,
 charges.id,
 charges.amount as charge_amount,
 transfers.amount as transferred_amount,
 transfers.destination_id
from charges
inner join transfers
 on transfers.id=charges.transfer_id
order by day desc
limit 5
dayidcharge_amounttransferred_amountdestination_id
the relevant part of the productch_acct_ Cnn8TcF …1,0001,000acct_ ZUpt0d4 …
the relevant part of the productch_acct_ yLvD42z …800800acct_ fRjpZCf …
the relevant part of the productch_acct_ EMmsdjU …1,000800acct_ X3dsuQk …
the relevant part of the productch_acct_ l3MH27t …1,100950acct_ j8Os2Dj …
the relevant part of the productch_acct_ a6GW6Tx …1,1001,100acct_ tbZQreP …

Payment and transfer information for Connected accounts is also available within Connect-specific tables (for example, connected_account_charges).

Separate charges and transfers

Report on separate charges and transfers using a similar approach to destination charges. All charges are created on your platform’s account, with funds separately transferred to connected accounts using transfer groups. A payment is created on the connected account that references the transfer and transfer group.

Both the charges and transfers table include a transfer_group column. Payment, transfer, and transfer group information is available within the Connect-specific connected_account_charges table.

Last verified 2026-09-24

Is this helpful?