Quick Start
API Endpoints
- System Status
- Ecosystem Metrics
- Historical Metrics
- AVS
- GETRetrieve all AVS
- GETRetrieve all AVS addresses
- GETRetrieve an AVS by address
- GETRetrieve all stakers for a given AVS address
- GETRetrieve all operators for a given AVS address
- GETRetrieve all rewards for a given AVS address
- GETRetrieve all reward events for a given AVS address
- GETRetrieve all registration events for a given AVS address
- GET
- Operators
- Stakers
- Withdrawals
- Deposits
- Rewards
- Events
- Operator-Sets
Retrieve all stakers for a given AVS address
Returns all stakers for a given AVS address. This endpoint supports pagination.
curl --request GET \
--url https://api.eigenexplorer.com/avs/{address}/stakers \
--header 'X-API-Token: <x-api-token>'
{
"data": [
{
"address": "0x0000006c21964af0d420af8992851a30fa13a68b",
"operatorAddress": "0x71c6f7ed8c2d4925d0baf16f6a85bb1736d412eb",
"createdAtBlock": "19631203",
"updatedAtBlock": "19631203",
"createdAt": "2024-04-11T08:31:11.000Z",
"updatedAt": "2024-04-11T08:31:11.000Z",
"shares": [
{
"stakerAddress": "0x74ede5f75247fbdb9266d2b3a7be63b3db7611dd",
"strategyAddress": "0x93c4b944d05dfe6df7645a86cd2206016c51564a",
"shares": "40000000000000000"
}
],
"tvl": {
"tvl": 1000000,
"tvlBeaconChain": 1000000,
"tvlWETH": 1000000,
"tvlRestaking": 1000000,
"tvlStrategies": {
"Eigen": 1000000,
"cbETH": 2000000
},
"tvlStrategiesEth": {
"stETH": 1000000,
"cbETH": 2000000
}
}
}
],
"meta": {
"total": 30,
"skip": 0,
"take": 12
}
}
Headers
API Token for authentication
Path Parameters
AVS service manager contract address
"0x870679e138bcdf293b7ff14dd44b70fc97e12fc0"
Query Parameters
Toggle whether the route should calculate the TVL from shares
true
, false
"false"
Fetch stakers updated since this timestamp
"2024-04-11T08:31:11.000Z"
The number of records to skip for pagination
0
The number of records to return for pagination
12
Response
The contract address of the staker
"0x0000006c21964af0d420af8992851a30fa13a68b"
The address of the operator
"0x71c6f7ed8c2d4925d0baf16f6a85bb1736d412eb"
The block number at which the Staker made first delegation
"19631203"
The block number at which the Staker made last delegation
"19631203"
The time stamp at which the Staker made first delegation
"2024-04-11T08:31:11.000Z"
The time stamp at which the Staker made last delegation
"2024-04-11T08:31:11.000Z"
The address of the staker
"0x74ede5f75247fbdb9266d2b3a7be63b3db7611dd"
The contract address of the restaking strategy
"0x93c4b944d05dfe6df7645a86cd2206016c51564a"
The amount of shares held in the strategy
"40000000000000000"
The total value locked (TVL) in the AVS staker
The combined TVL of all restaking strategies in ETH
1000000
The TVL of Beacon Chain restaking strategy in ETH
1000000
The combined TVL of all liquid restaking strategies in ETH
1000000
The TVL of WETH restaking strategy in ETH
1000000
The TVL of each individual restaking strategy in its native token
The total value locked (TVL) in the strategy, denominated in the strategy's native token
1000000
{ "Eigen": 1000000, "cbETH": 2000000 }
{
"tvl": 1000000,
"tvlBeaconChain": 1000000,
"tvlWETH": 1000000,
"tvlRestaking": 1000000,
"tvlStrategies": { "Eigen": 1000000, "cbETH": 2000000 },
"tvlStrategiesEth": { "stETH": 1000000, "cbETH": 2000000 }
}
curl --request GET \
--url https://api.eigenexplorer.com/avs/{address}/stakers \
--header 'X-API-Token: <x-api-token>'
{
"data": [
{
"address": "0x0000006c21964af0d420af8992851a30fa13a68b",
"operatorAddress": "0x71c6f7ed8c2d4925d0baf16f6a85bb1736d412eb",
"createdAtBlock": "19631203",
"updatedAtBlock": "19631203",
"createdAt": "2024-04-11T08:31:11.000Z",
"updatedAt": "2024-04-11T08:31:11.000Z",
"shares": [
{
"stakerAddress": "0x74ede5f75247fbdb9266d2b3a7be63b3db7611dd",
"strategyAddress": "0x93c4b944d05dfe6df7645a86cd2206016c51564a",
"shares": "40000000000000000"
}
],
"tvl": {
"tvl": 1000000,
"tvlBeaconChain": 1000000,
"tvlWETH": 1000000,
"tvlRestaking": 1000000,
"tvlStrategies": {
"Eigen": 1000000,
"cbETH": 2000000
},
"tvlStrategiesEth": {
"stETH": 1000000,
"cbETH": 2000000
}
}
}
],
"meta": {
"total": 30,
"skip": 0,
"take": 12
}
}