# Find what transactions were included in or impacted a payout amount

For automatic payouts, you can find the list of balance transactions that were included in the payout from:
- **Method**
- **Description**
---
- [Payout reconciliation report](https://stripe.com/docs/reports/payout-reconciliation)
- The payout reconciliation report (CSV) can either be downloaded from the Dashboard or the Reporting API. Data will typically be [available](https://stripe.com/docs/reports/options#data-availability) the day after a payout is created. **Recommended for most users.**
---
- Dashboard
- For automatic payouts, the Dashboard page displays a summary and breakdown of the transactions that were included in the payout. **Recommended for one-off queries.**
---
- [Stripe Sigma](https://stripe.com/docs/stripe-data/query-transactions#transfers-and-payouts)
- The `balance_transactions` Stripe Sigma table includes `automatic_transfer_id`, which describes the automatic payout that the balance transaction was included in. **Recommended for custom reports.**
---
- [Balance Transactions API](https://stripe.com/docs/api/balance_transactions/list#balance_transaction_list-payout)
- For API integrations, you can query the [Balance Transactions endpoint](https://stripe.com/docs/api/balance_transactions/list#balance_transaction_list-payout) passing the relevant payout ID in the `payout` parameter. For most payouts, data will be available within a few minutes of payout creation, which will be reflected in the `reconciliation_status` field on the Payout object. Alternatively, you can subscribe to the `payout.reconciliation_completed` webhook.
### Dashboard
To see all of the transactions that were included in a specific automatic payout in the Dashboard:
1. Log into your Dashboard.
1. In the navigation bar, click **Balances**.
1. Underneath Balances, click **Payouts**.
1. Click on the payout you would like to see the transactions for.
1. Scroll down to the **Summary** and **Transactions** sections for details.
The section includes:
* **Summary**: The sums for all charges, refunds, and adjustments in the payout; includes their gross amounts, fees, and final amounts.
* **Transactions**: A breakdown of each individual transaction included in the payout. Includes individual transaction type, gross amounts, fees, final amounts, charge details, and date of transaction
### Additional Information
Due to the nature of [manual payouts](https://docs.stripe.com/connect/manual-payouts), it is not possible to see these breakdowns, as there is no explicit connection between charges or specific activity and the amount decided upon to be paid.
For information about the types of reports you can run through Stripe, see our Stripe reports guide.