GET
/
metrics
curl --request GET \
  --url https://api.eigenexplorer.com/metrics \
  --header 'X-API-Token: <x-api-token>'
{
  "tvl": 1000000,
  "tvlBeaconChain": 1000000,
  "tvlRestaking": 1000000,
  "tvlStrategies": {
    "cbETH": 1000000,
    "stETH": 2000000
  },
  "tvlStrategiesEth": {
    "cbETH": 1000000,
    "stETH": 2000000
  },
  "totalAVS": 10,
  "totalOperators": 10,
  "totalStakers": 10
}

The total TVL (“tvl”) and TVL Restaking (“tvlRestaking”), normalized in ETH, do not include the TVL of Eigen tokens as they are currently not transferable. Eigen TVL is denominated in Eigen tokens.

Headers

X-API-Token
string
required

API Token for authentication

Response

200
application/json
The list of summary metrics.
tvl
number
required

The total value locked (TVL) in ETH in the EigenLayer ecosystem

Example:

1000000

tvlBeaconChain
number
required

The total value locked (TVL) in ETH in the beacon chain ETH strategy

Example:

1000000

tvlRestaking
number
required

The total value locked (TVL) in ETH in all restaking strategies

Example:

1000000

tvlStrategies
object
required

The total value locked (TVL) in each restaking strategy, denominated in the strategy's native token

Example:
{ "cbETH": 1000000, "stETH": 2000000 }
tvlStrategiesEth
object
required

The total value locked (TVL) in each restaking strategy, denominated in ETH

Example:
{ "cbETH": 1000000, "stETH": 2000000 }
totalAVS
number
required

The total number of AVS

Example:

10

totalOperators
number
required

The total number of AVS operators

Example:

10

totalStakers
number
required

The total number of AVS stakers

Example:

10