Quick Start
API Endpoints
- System Status
- Ecosystem Metrics
- Historical Metrics
- AVS
- Operators
- Stakers
- GETRetrieve all stakers
- GETRetrieve a staker by address
- GETRetrieve all withdrawals by staker address
- GETRetrieve queued withdrawals by staker address
- GETRetrieve queued and withdrawable withdrawals by staker address
- GETRetrieve completed withdrawals by staker address
- GETRetrieve all deposits by staker address
- GETRetrieve all delegation events for a given staker address
- GETRetrieve all deposit events for a given staker address
- GETRetrieve all withdrawal events for a given staker address
- GET
- Withdrawals
- Deposits
- Rewards
- Events
- Operator-Sets
Retrieve completed withdrawals by staker address
Returns all completed withdrawal data of the requested staker.
curl --request GET \
--url https://api.eigenexplorer.com/stakers/{address}/withdrawals/completed \
--header 'X-API-Token: <x-api-token>'
{
"data": [
{
"withdrawalRoot": "0x9e6728ef0a8ad6009107a886047aae35bc5ed7deaa68580b0d1f8f67e3e5ed31",
"nonce": 0,
"stakerAddress": "0x74ede5f75247fbdb9266d2b3a7be63b3db7611dd",
"delegatedTo": "0x0000000000000000000000000000000000000000",
"withdrawerAddress": "0x74ede5f75247fbdb9266d2b3a7be63b3db7611dd",
"shares": [
{
"strategyAddress": "0x93c4b944d05dfe6df7645a86cd2206016c51564d",
"shares": "1000288824523326631"
}
],
"createdAtBlock": 19912470,
"createdAt": "2024-07-07T23:53:35.000Z",
"updatedAtBlock": 19912470,
"updatedAt": "2024-07-07T23:53:35.000Z"
}
],
"meta": {
"total": 30,
"skip": 0,
"take": 12
}
}
Headers
API Token for authentication
Path Parameters
The address of the staker
"0x9791fdb4e9c0495efc5a1f3f9271ef226251eb34"
Query Parameters
The number of records to skip for pagination
0
The number of records to return for pagination
12
Response
The root hash of the withdrawal
"0x9e6728ef0a8ad6009107a886047aae35bc5ed7deaa68580b0d1f8f67e3e5ed31"
The nonce of the withdrawal, ensuring unique hashes for otherwise identical withdrawals
0
The contract address of the staker who initiated the withdrawal
"0x74ede5f75247fbdb9266d2b3a7be63b3db7611dd"
The address to which the staker was delegated when the withdrawal was initiated
"0x0000000000000000000000000000000000000000"
The address of the withdrawer, authorized to complete the withdrawal and receive the funds
"0x74ede5f75247fbdb9266d2b3a7be63b3db7611dd"
The list of strategy shares
[
{
"strategyAddress": "0x93c4b944d05dfe6df7645a86cd2206016c51564d",
"shares": "1000288824523326631"
}
]
The block number when the withdrawal was recorded by EigenExplorer
19912470
The time stamp when the withdrawal was recorded by EigenExplorer
"2024-07-07T23:53:35.000Z"
The block number when the withdrawal was last updated
19912470
The time stamp when the withdrawal was last updated
"2024-07-07T23:53:35.000Z"
curl --request GET \
--url https://api.eigenexplorer.com/stakers/{address}/withdrawals/completed \
--header 'X-API-Token: <x-api-token>'
{
"data": [
{
"withdrawalRoot": "0x9e6728ef0a8ad6009107a886047aae35bc5ed7deaa68580b0d1f8f67e3e5ed31",
"nonce": 0,
"stakerAddress": "0x74ede5f75247fbdb9266d2b3a7be63b3db7611dd",
"delegatedTo": "0x0000000000000000000000000000000000000000",
"withdrawerAddress": "0x74ede5f75247fbdb9266d2b3a7be63b3db7611dd",
"shares": [
{
"strategyAddress": "0x93c4b944d05dfe6df7645a86cd2206016c51564d",
"shares": "1000288824523326631"
}
],
"createdAtBlock": 19912470,
"createdAt": "2024-07-07T23:53:35.000Z",
"updatedAtBlock": 19912470,
"updatedAt": "2024-07-07T23:53:35.000Z"
}
],
"meta": {
"total": 30,
"skip": 0,
"take": 12
}
}