GET
/
v1
/
eth
/
validators
/
consolidations
curl --request GET \
  --url https://api.rated.network/v1/eth/validators/consolidations
{
  "next": "https://api.rated.network//v1/eth/validators/consolidations?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/eth/validators/consolidations?limit=10&offset=10",
  "results": [
    [
      {
        "consolidatedAmount": 32000000000,
        "date": "2025-05-07",
        "sourceEntity": "Node Operator",
        "sourceEntityType": "nodeOperator",
        "sourceValidatorIndex": 500000,
        "targetBalanceAtConsolidationEpoch": 64000000000,
        "targetBalanceBeforeConsolidationEpoch": 32000000000,
        "targetEffectiveBalanceAtConsolidationEpoch": 64000000000,
        "targetEntity": "Node Operator",
        "targetEntityType": "nodeOperator",
        "targetValidatorIndex": 500002
      }
    ]
  ]
}

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"

consolidation_epoch
integer | null
Required range: x >= 0
source_validator_index
integer | null
Required range: x >= 0
source_entity
string | null
target_validator_index
integer | null
Required range: x >= 0
target_entity
string | null

Response

200
application/json
Successful Response

The response is of type object.