curl --request POST \
--url https://beaconcha.in/api/v2/ethereum/entity/sub-entities \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entity": "<string>",
"range": {
"evaluation_window": "24h"
},
"chain": "mainnet",
"cursor": "",
"page_size": 10,
"sort_by": "net_share",
"sort_order": "desc"
}
'{
"data": [
{
"sub_entity": "<string>",
"validator_count": 1,
"beaconscore": 0.5,
"net_share": 0.5
}
],
"last_updated": 1,
"range": {
"slot": {
"start": 1,
"end": 1
},
"epoch": {
"start": 1,
"end": 1
},
"timestamp": {
"start": 1,
"end": 1
}
},
"paging": {
"next_cursor": "<string>"
}
}Returns an overview of all sub-entities associated with a given entity, including their validator count, BeaconScore, and net share.
Results can be sorted by beaconscore, net_share, or validator_count in ascending or descending order.
By default, results are sorted by net_share in descending order.
Note: The underlying data is precomputed and updated hourly. all_time evaluation window is not supported for this endpoint.
Premium Endpoint: This endpoint requires a Scale or Enterprise plan.
Attribution Required: If you display BeaconScore data publicly, you must include appropriate attribution. See our BeaconScore License and License Materials for badges and usage guidelines.
curl --request POST \
--url https://beaconcha.in/api/v2/ethereum/entity/sub-entities \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entity": "<string>",
"range": {
"evaluation_window": "24h"
},
"chain": "mainnet",
"cursor": "",
"page_size": 10,
"sort_by": "net_share",
"sort_order": "desc"
}
'{
"data": [
{
"sub_entity": "<string>",
"validator_count": 1,
"beaconscore": 0.5,
"net_share": 0.5
}
],
"last_updated": 1,
"range": {
"slot": {
"start": 1,
"end": 1
},
"epoch": {
"start": 1,
"end": 1
},
"timestamp": {
"start": 1,
"end": 1
}
},
"paging": {
"next_cursor": "<string>"
}
}The name of the entity to retrieve sub-entities for (e.g., "Lido", "Coinbase"). Matching is case-sensitive.
Show child attributes
The Ethereum chain to query.
mainnet, hoodi Cursor value for pagination. See our pagination guide for more details.
The number of items to return per page.
1 <= x <= 10The field to sort sub-entities by.
beaconscore: Sort by BeaconScore (validator efficiency)net_share: Sort by network share (default)validator_count: Sort by number of validatorsbeaconscore, net_share, validator_count The sort order for the results.
asc: Ascending order (lowest first)desc: Descending order (highest first, default)asc, desc Successful response.
Response containing an overview of sub-entities for a given entity with their validator count, BeaconScore, and net share.
Show child attributes
Unix timestamp indicating when the sub-entities data was last computed. The underlying data is precomputed and updated hourly.
x >= 0The range of data covered by the results, specified in slots, epochs, and Unix timestamps.
Show child attributes
Show child attributes
Was this page helpful?