GET
/
metrics
/
tvl
/
restaking
curl --request GET \
  --url https://api.eigenexplorer.com/metrics/tvl/restaking \
  --header 'X-API-Token: <x-api-token>'
{
  "tvl": 1000000,
  "change24h": {
    "value": 10,
    "percent": 0.01
  },
  "change7d": {
    "value": 10,
    "percent": 0.01
  },
  "tvlStrategies": {
    "cbETH": 1000000,
    "stETH": 2000000
  },
  "tvlStrategiesEth": {
    "cbETH": 1000000,
    "stETH": 2000000
  }
}

The total TVL (“tvl”), 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

Query Parameters

withChange
enum<string>
default:false

Toggle whether the route should return 24h/7d change for TVL

Available options:
true,
false
Example:

"false"

Response

200
application/json
The value of combined restaking strategy TVL and a breakdown of the TVL for each individual strategy.
tvl
number
required

The value of the combined restaking strategy TVL in ETH

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 }
change24h
object
change7d
object