Validator withdrawal history
Retrieve withdrawal operations attributed to one or more validators within a bounded epoch window. By default, the service returns data for the last 100 epochs ending at the latest processed epoch. You can set the optional epoch query parameter to move the 100-epoch window back in time (the window becomes [epoch-99, epoch], clamped at 0 when epoch < 99).
Each item includes the epoch and slot of inclusion, the canonical block root, the global withdrawal index, the validator index, the recipient execution address, and the amount in gwei.
Authorizations
Path Parameters
Comma-separated validator indices and/or public keys (maximum 100 items by default). Comma-separated list (no spaces) of validator identifiers. Each identifier must be either:
- A validator index as a base-10 integer (for example, 652648)
- A BLS public key as a 96-hex-character string with or without the 0x prefix (case-insensitive)
Resolution and limits:
- The server resolves public keys to validator indices before querying data.
- The total number of identifiers must not exceed the server-enforced limit (default 100).
- Identifiers that cannot be parsed or resolved result in HTTP 400.
"1,2,3"
Query Parameters
Upper bound (inclusive) for the 100-epoch window used to fetch withdrawals. Defaults to the latest processed epoch when omitted. Must be a non-negative integer.
x >= 0399359
Response
Matching withdrawals were retrieved successfully. The data array contains one item per withdrawal observed for any of the specified validators within the requested epoch window. If no withdrawals are found, the array is empty.

