Skip to main content
GET
/
eigenlayer
/
all-distribution-roots
All Distribution Roots
curl --request GET \
  --url https://api.blockflow.network/rest/eigenlayer/all-distribution-roots \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "rootIndex": "<string>",
      "root": "<string>",
      "rewardsCalculationEndTimestamp": "2023-11-07T05:31:56Z",
      "activatedAt": "2023-11-07T05:31:56Z",
      "active": true,
      "updatedAt": {
        "blockNumber": "<string>",
        "blockTimestamp": "2023-11-07T05:31:56Z",
        "transactionHash": "<string>"
      },
      "createdAt": {
        "blockNumber": "<string>",
        "blockTimestamp": "2023-11-07T05:31:56Z",
        "transactionHash": "<string>"
      },
      "timestamp": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "total": 123,
    "page": 123,
    "limit": 123,
    "totalPages": 123,
    "hasMore": true,
    "statistics": {
      "totalDistributionRoots": 123,
      "activeDistributionRoots": 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 is 1).

limit
integer
default:12

The number of items per page (default is 12).

rootIndex
string

The root index to filter the distribution roots.

active
boolean

Whether to filter by active status (true or false).

startTimestamp
string<date-time>

The start timestamp to filter distribution roots.

endTimestamp
string<date-time>

The end timestamp to filter distribution roots.

Response

Successful response with distribution root data

data
object[]
meta
object