GET
/
v1
/
eth
/
entityConsolidations
curl --request GET \
  --url https://api.rated.network/v1/eth/entityConsolidations \
  --header 'Authorization: Bearer <token>'
{
  "next": "https://api.rated.network//v1/eth/entityConsolidations?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/eth/entityConsolidations?limit=10&offset=10",
  "results": [
    [
      {
        "consolidatedBalance": 640000000000,
        "consolidatedValidators": 20,
        "date": "2025-05-07",
        "sourceEntity": "Node Operator",
        "sourceEntityType": "nodeOperator"
      }
    ]
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Rated-Network
enum<string>
Available options:
mainnet,
hoodi,
holesky

Query Parameters

limit
integer
default:10

The number of results returned per page

offset
integer
default:0

The number of results to skip before starting to return

fromDate
string | null

Start date

Examples:

"2023-01-01"

toDate
string | null

End date

Examples:

"2023-12-31"

entity
string | null

Response

200
application/json

Successful Response

The response is of type object.