Skip to main content
GET
/
eigenlayer
/
all-withdrawals
All Withdrawals
curl --request GET \
  --url https://api.blockflow.network/rest/eigenlayer/all-withdrawals \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "withdrawalRoot": "<string>",
      "staker": "<string>",
      "delegatedTo": "<string>",
      "withdrawer": "<string>",
      "nonce": "<string>",
      "startBlock": "<string>",
      "withdrawal": "<string>",
      "migrated": true,
      "completed": true,
      "updatedAt": {
        "blockNumber": "<string>",
        "blockTimestamp": "<string>",
        "transactionHash": "<string>"
      },
      "createdAt": {
        "blockNumber": "<string>",
        "blockTimestamp": "<string>",
        "transactionHash": "<string>"
      }
    }
  ],
  "meta": {
    "total": 123,
    "page": 123,
    "limit": 123,
    "totalPages": 123,
    "hasMore": true,
    "statistics": {
      "totalWithdrawals": 123,
      "completedWithdrawals": 123,
      "migratedWithdrawals": 123
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.rescan.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Query Parameters

page
integer
default:1

The page number for pagination (default: 1)

limit
integer
default:12

The number of items per page (default: 12)

staker
string

Filter by staker address

withdrawalRoot
string

Filter by withdrawal root

delegatedTo
string

Filter by delegated address

completed
boolean

Filter by completion status (true or false)

migrated
boolean

Filter by migration status (true or false)

Response

Successful response with a paginated list of withdrawals

data
object[]
meta
object