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 operators for a given AVS address
Returns all operators for a given AVS address. This endpoint supports pagination.
curl --request GET \
--url https://api.eigenexplorer.com/avs/{address}/operators \
--header 'X-API-Token: <x-api-token>'
{
"data": [
{
"address": "0x09e6eb09213bdd3698bd8afb43ec3cb0ecff683a",
"metadataName": "Example AVS Operator",
"metadataDescription": "This is an example AVS operator",
"metadataDiscord": "https://discord.com/invite/abcdefghij",
"metadataLogo": "<string>",
"metadataTelegram": "https://t.me/acme",
"metadataWebsite": "https://acme.com",
"metadataX": "https://twitter.com/acme",
"totalStakers": 10,
"totalAvs": 10,
"maxApy": 1,
"createdAtBlock": "19631203",
"updatedAtBlock": "19631203",
"createdAt": "2024-04-11T08:31:11.000Z",
"updatedAt": "2024-04-11T08:31:11.000Z",
"shares": [
{
"strategyAddress": "0x93c4b944d05dfe6df7645a86cd2206016c51564d",
"shares": "135064894598947935263152"
},
{
"strategyAddress": "0x54945180db7943c0ed0fee7edab2bd24620256bc",
"shares": "9323641881708650182301"
}
],
"restakedStrategies": [
"0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1"
],
"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
Search mode
contains
, startsWith
"contains"
Case-insensitive search query
"eigen"
Toggle whether the route should calculate the TVL from shares
true
, false
"false"
Sort Operators of a given AVS in asc or desc order of TVL (only valid for individual AVS queries)
asc
, desc
"desc"
The number of records to skip for pagination
0
The number of records to return for pagination
12
Response
The contract address of the AVS operator
"0x09e6eb09213bdd3698bd8afb43ec3cb0ecff683a"
The name of the AVS operator
"Example AVS Operator"
The description of the AVS operator
"This is an example AVS operator"
The URL of the AVS operator's Discord server
"https://discord.com/invite/abcdefghij"
The URL of the AVS operator's logo
The URL of the AVS operator's Telegram channel
"https://t.me/acme"
The URL of the AVS operator's website
"https://acme.com"
The URL of the AVS operator's X
"https://twitter.com/acme"
The total number of stakers who have delegated to this AVS operator
10
The total number of AVS opted by the AVS operator
10
The max APY for the AVS Operator across all the strategies
1
The block number at which the AVS Operator was registered
"19631203"
The block number at which the AVS Operator registration was last updated
"19631203"
The time stamp at which the AVS Operator was registered
"2024-04-11T08:31:11.000Z"
The time stamp at which the AVS Operator registration was last updated
"2024-04-11T08:31:11.000Z"
The strategy shares held in the AVS operator
[
{
"strategyAddress": "0x93c4b944d05dfe6df7645a86cd2206016c51564d",
"shares": "135064894598947935263152"
},
{
"strategyAddress": "0x54945180db7943c0ed0fee7edab2bd24620256bc",
"shares": "9323641881708650182301"
}
]
The list of restaked strategies
[
"0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1"
]
The total value locked (TVL) in the AVS operator
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}/operators \
--header 'X-API-Token: <x-api-token>'
{
"data": [
{
"address": "0x09e6eb09213bdd3698bd8afb43ec3cb0ecff683a",
"metadataName": "Example AVS Operator",
"metadataDescription": "This is an example AVS operator",
"metadataDiscord": "https://discord.com/invite/abcdefghij",
"metadataLogo": "<string>",
"metadataTelegram": "https://t.me/acme",
"metadataWebsite": "https://acme.com",
"metadataX": "https://twitter.com/acme",
"totalStakers": 10,
"totalAvs": 10,
"maxApy": 1,
"createdAtBlock": "19631203",
"updatedAtBlock": "19631203",
"createdAt": "2024-04-11T08:31:11.000Z",
"updatedAt": "2024-04-11T08:31:11.000Z",
"shares": [
{
"strategyAddress": "0x93c4b944d05dfe6df7645a86cd2206016c51564d",
"shares": "135064894598947935263152"
},
{
"strategyAddress": "0x54945180db7943c0ed0fee7edab2bd24620256bc",
"shares": "9323641881708650182301"
}
],
"restakedStrategies": [
"0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1"
],
"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
}
}