Skip to main content
GET
/
api
/
v1
/
validator
/
{indexOrPubkey}
/
performance
Consensus-layer rewards
curl --request GET \
  --url 'https://beaconcha.in/api/v1/validator/{indexOrPubkey}/performance?apikey='
{
"status": "OK",
"data": [
{
"balance": 2011101824120,
"performance1d": 126585316,
"performance7d": 1467804126,
"performance31d": 5128497140,
"performance365d": 11101824120,
"performancetotal": 11101824120,
"rank7d": 1,
"validatorindex": 2030996
}
]
}

Authorizations

apikey
string
query
required

Path Parameters

indexOrPubkey
string
required

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:

  • A validator index as a base-10 integer (for example, 652648)
  • A BLS public key as a 96-hex-character string with or without the 0x prefix (case-insensitive)

Resolution and limits:

  • The server resolves public keys to validator indices before querying data.
  • The total number of identifiers must not exceed the server-enforced limit (default 100).
  • Identifiers that cannot be parsed or resolved result in HTTP 400.
Example:

"1,2,3"

Response

Matching validators were retrieved successfully. The data array contains one item per validator with reward totals for the last 1, 7, 31, and 365 days, plus cumulative totals when available.

Standard success envelope used by all API endpoints.

status
enum<string>

HTTP-independent status of the API operation. For successful responses this is always "OK".

Available options:
OK
data
object[]

Response payload specific to the endpoint.