curl --request GET \
--url 'https://beaconcha.in/api/v1/validator/{indexOrPubkey}/attestationefficiency?apikey='{
"status": "OK",
"data": [
{
"validatorindex": 21,
"attestation_efficiency": 1.0175
}
]
}Retrieve normalized attestation inclusion effectiveness for one or more validators. Provide a comma-separated list of validator indices or 0x-prefixed BLS pubkeys (up to the server-enforced limit; default 100).
The score is computed for the most recently completed epoch and defined as: score = 1 + (1 − percentage/100) = 2 − percentage/100. A score of 1.0 indicates perfect effectiveness (100% inclusion); scores approach 2.0 as effectiveness worsens (0% inclusion).
curl --request GET \
--url 'https://beaconcha.in/api/v1/validator/{indexOrPubkey}/attestationefficiency?apikey='{
"status": "OK",
"data": [
{
"validatorindex": 21,
"attestation_efficiency": 1.0175
}
]
}Comma-separated validator indices and/or public keys (maximum 100 items by default). Comma-separated list (no spaces) of validator identifiers. Each identifier must be either:
Resolution and limits:
"1,2,3"
Matching validators were retrieved successfully. The data array contains one entry per validator with the normalized attestation effectiveness score.
Was this page helpful?