GET
/
withdrawals
curl --request GET \
  --url https://api.eigenexplorer.com/withdrawals \
  --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",
      "isCompleted": false
    }
  ],
  "meta": {
    "total": 30,
    "skip": 0,
    "take": 12
  }
}

Headers

X-API-Token
string
required

API Token for authentication

Query Parameters

stakerAddress
string

The address of the staker

Example:

"0x74ede5f75247fbdb9266d2b3a7be63b3db7611dd"

delegatedTo
string

The address of the operator to which the stake is delegated

Example:

"0x5accc90436492f24e6af278569691e2c942a676d"

strategyAddress
string

The contract address of the restaking strategy

Example:

"0x0fe4f44bee93503346a3ac9ee5a26b130a5796d6"

status
enum<string>

The status of the withdrawal

Available options:
queued,
queued_withdrawable,
completed
Example:

"queued"

skip
string
default:0

The number of records to skip for pagination

Example:

0

take
string
default:12

The number of records to return for pagination

Example:

12

Response

200
application/json
The list of withdrawals.
data
object[]
required
meta
object
required