# Connected Accounts

```sh
curl https://api.stripe.com/v1/charges/ch_3LmjFA2eZvKYlo2C09TLIsrw \
  -u sk_test_BQokikJOvBiI2HlWgH4olfQ2: \
  -H "Stripe-Account: acct_1032D82eZvKYlo2C" \
  -G
```

If you use Stripe [Connect](https://docs.stripe.com/connect.md), you can issue requests on behalf of your [connected accounts](https://docs.stripe.com/connect/accounts.md). To act as a connected account, include a `Stripe-Account` header containing the connected account ID, which typically starts with the `acct_` prefix.

The connected account ID is set per-request. Methods on the returned object reuse the same account ID.

- Related guide: [Making API calls for connected accounts](https://docs.stripe.com/connect/authentication.md)
