Skip to main content
GET
/
eigenlayer
/
all-distribution-roots
Retrieve all distribution roots
curl --request GET \
  --url https://api.blockflow.network/rest/eigenlayer/all-distribution-roots \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "rootIndex": 1,
      "root": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
      "rewardsCalculationEndTimestamp": 1727836560,
      "activatedAt": 1727836560,
      "status": "active",
      "createdAt": 1727836560,
      "updatedAt": 1727836560
    }
  ],
  "meta": {
    "total": 30,
    "page": 1,
    "limit": 12
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

page
number
default:1

The page number to retrieve

Example:

1

limit
number
default:12

The number of records per page

Example:

12

Response

The list of distribution root records.

data
object[]
required
meta
object
required