# The Financing Summary object

### The Financing Summary object

```json
{
  "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"
}
```

## Attributes

- `object` (string)
  The object type: financing_summary

- [`details`](https://docs.stripe.com/api/capital/financing_summary_object.md?query=details) (object, nullable)
  Additional information about the financing summary. Describes currency, advance amount, fee amount, withhold rate, remaining amount, paid amount, current repayment interval, repayment start date, and advance payout date.

  Only present for financing offers with the `paid_out` status.

- `financing_offer` (string, nullable)
  The unique identifier of the Financing Offer object that corresponds to the Financing Summary object.

- `status` (enum, nullable)
  The financing status of the connected account.
Possible enum values:
  - `accepted`
    The connected account has an active financing offer that has been paid out.

  - `delivered`
    A financing offer has been marketed to the connected account, but the account hasn’t accepted it yet.

  - `none`
    The connected account doesn’t have any active financing.
