> ## Documentation Index
> Fetch the complete documentation index at: https://docs.minaexplorer.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Exporting Data

> Use [https://export.minaexplorer.com/](https://export.minaexplorer.com/) to export your staking rewards in a format suitable for importing to tax tracking software. If the defaults do not fit your needs, simply edit the resulting CSV to match your requirements.

To help with tracking and accounting we have a [GraphQL API](https://docs.minaexplorer.com/v1.0/minaexplorer/graphql-getting-started) to export all of your staking payouts, together with an accurate price at the time of sending (when supported on exchanges). We'll also make this available via a simple csv download that can be imported to popular cryptocurrency tax applications.

You can see the state of all payments at any time on the [MinaExplorer.com](https://minaexplorer.com) explorer by viewing the Pool tab of the account page. Note that this tab will only show for those accounts delegating to the pool.

![Monitor all payments sent from the pool](https://image-archive.developerhub.io/image/upload/v2_455/irykjb0cxcky8nmpc9nw/1614708369.png)

## GraphQL Export

The following query exports all the payouts for public key `B62qmQAFPta1Q3c7wXHxXRKnE3uWyBYZCLb8frdHEgavi3BbBVkpeC1`. The query returns the payout calculated for each block as well as the associated payment transaction for each payout.

```json theme={null}
query stakePayouts {
  payouts(query: {publicKey: "B62qmQAFPta1Q3c7wXHxXRKnE3uWyBYZCLb8frdHEgavi3BbBVkpeC1"}, sortBy: BLOCKHEIGHT_DESC) {
    blockHeight
    payout
    paymentHash {
      hash
      amount
      id
  	  dateTime
    }
  }
}
```
