Retrieve financing summary 

Retrieve the financing state for the account that was authenticated in the request.

Parameters

No parameters.

Returns

Returns a financing summary for the account

GET /v1/capital/financing_summary
curl https://api.stripe.com/v1/capital/financing_summary \
-u "sk_test_BQokikJ...2HlWgH4olfQ2sk_test_BQokikJOvBiI2HlWgH4olfQ2:" \
-H "Stripe-Account: {{CONNECTED_ACCOUNT_ID}}"
Response
{
"object": "capital.financing_summary",
"details": {
"advance_amount": 100000,
"advance_paid_out_at": 1688424277.0578003,
"currency": "usd",
"current_repayment_interval": null,
"fee_amount": 10000,
"paid_amount": 100263,
"remaining_amount": 9737,
"repayments_begin_at": 1688424277.0577993,
"withhold_rate": 0.05
},
"financing_offer": "financingoffer_1NPvU12eZvKYlo2CotjdGRzu",
"status": "accepted"
}

Accounts 

This is an object representing a Stripe account. You can retrieve it to see properties on the account like its current requirements or if the account is enabled to make live charges or receive payouts.

For accounts where controller.requirement_collection is application, which includes Custom accounts, the properties below are always returned.

For accounts where controller.requirement_collection is stripe, which includes Standard and Express accounts, some properties are only returned until you create an Account Link or Account Session to start Connect Onboarding. Learn about the differences between accounts.

Account Session 

An AccountSession allows a Connect platform to grant access to a connected account in Connect embedded components.

We recommend that you create an AccountSession each time you need to display an embedded component to your user. Do not save AccountSessions to your database as they expire relatively quickly, and cannot be used more than once.

Related guide: Connect embedded components