GET
/
v0
/
eth
/
network
/
capacity
curl --request GET \
  --url https://api.rated.network/v0/eth/network/capacity
[
  {
    "activatedPercentage": 0.47689,
    "activatedValidators": 238445,
    "activationCapacityFilled": 0.62372,
    "activationChurnLimit": 382294,
    "churnLimit": 382294,
    "exitCapacityFilled": 0.0025,
    "exitChurnLimit": 382294,
    "exitedPercentage": 0.00191,
    "exitedValidators": 955,
    "latestEpoch": 186271,
    "time_window": "all"
  }
]

This endpoint returns a summary of activations and exits for all the whole network. The response gives you both the “All-time” aggregate, as well as the a paginated response on the averages of every day that precedes the current.

Headers

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

Response

200
application/json
Successful Response
timeWindow
enum<string>
required
Available options:
1d,
7d,
30d,
all
latestEpoch
integer
required
Required range: x >= 0
activatedValidators
integer
required
Required range: x >= 0
activationCapacityFilled
number
required
Required range: x >= 0
exitedValidators
integer
required
Required range: x >= 0
exitCapacityFilled
number
required
Required range: x >= 0
activatedPercentage
number
required
Required range: x >= 0
exitedPercentage
number
required
Required range: x >= 0
churnLimit
integer
required
Required range: x >= 0
activationChurnLimit
integer
required
Required range: x >= 0
exitChurnLimit
integer
required
Required range: x >= 0