GET
/
v0
/
eth
/
network
/
capacity
/
pool
curl --request GET \
  --url https://api.rated.network/v0/eth/network/capacity/pool
[
  {
    "capacityFilled": 0.28048,
    "churnLimit": 12600,
    "latestEpoch": 187225,
    "networkCapacityRemaining": 0.41198,
    "pool": "Lido",
    "stakeAction": "activation",
    "time_window": "7d",
    "validatorCount": 3534
  }
]

This endpoint returns a summary of activations and exits, broken down by staking pool.

Hereโ€™s how to interpret the inputs required to operate it ๐Ÿ‘‡

ParameterDescription
windowThe time window of aggregation. You might ask for 1d, 7d, 30d or All-time data
stakeActionDirection of flow. This can be either of activation or exit

Headers

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

Query Parameters

window
enum<string>
Available options:
1d,
7d,
30d,
all
stakeAction
enum<string>
Available options:
activation,
exit

Response

200
application/json
Successful Response
timeWindow
enum<string>
required
Available options:
1d,
7d,
30d,
all
stakeAction
enum<string>
required
Available options:
activation,
exit
latestEpoch
integer
required
Required range: x >= 0
churnLimit
integer
required
Required range: x >= 0
pool
string
required
validatorCount
integer
required
Required range: x >= 0
capacityFilled
number
required
Required range: x >= 0
networkCapacityRemaining
number
required
Required range: x >= 0