> ## 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.

# Epoch delegator list

* The list of current epoch stakers to the pool is available [here](https://minaexplorer.com/wallet/B62qpge4uMq4Vv5Rvc8Gw9qSquUYd6xoW1pz7HQkMSHm6h1o7pvLPAN/delegations).
* The list of stakers for the **next** epoch, when available, is [here](https://minaexplorer.com/wallet/B62qpge4uMq4Vv5Rvc8Gw9qSquUYd6xoW1pz7HQkMSHm6h1o7pvLPAN/next-epoch-delegations).

> When delegating to the pool, there is a delay of **1-2 epochs** before the staking ledger is updated. Until your delegation is active your existing delegation will still be active.

GraphQL

This data is also available via the [GraphQL API.](https://docs.minaexplorer.com/v1.0/minaexplorer/staking-data)

```bash theme={null}
query {
  stakes(query: {delegate: "B62qpge4uMq4Vv5Rvc8Gw9qSquUYd6xoW1pz7HQkMSHm6h1o7pvLPAN"}, limit:1000) {
    balance
    public_key
    timing {
      timed_in_epoch
    }
  }
}
```
