# Payouts list Show a filterable list of payouts. Payouts list renders a list of payouts for the connected account. > This component renders a subset of the UI included in the [payouts component](https://docs.stripe.com/connect/supported-embedded-components/payouts.md). Note: The following is a preview/demo component that behaves differently than live mode usage with real connected accounts. The actual component has more functionality than what might appear in this demo component. For example, for connected accounts without Stripe dashboard access (custom accounts), no user authentication is required in production. When [creating an Account Session](https://docs.stripe.com/api/account_sessions/create.md), enable payouts list by specifying `payouts_list` in the `components` parameter. ```curl curl https://api.stripe.com/v1/account_sessions \ -u "<>:" \ -d "account={{CONNECTEDACCOUNT_ID}}" \ -d "components[payouts_list][enabled]=true" ``` After creating the account session and [initializing ConnectJS](https://docs.stripe.com/connect/get-started-connect-embedded-components.md#account-sessions), you can render the payouts list component in the front end: #### JavaScript ```js // Include this element in your HTML const payoutsList = stripeConnectInstance.create('payouts-list'); container.appendChild(payoutsList); ```