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

Aligning with the methodology used on the EigenLayer Dashboard, we use raw balances and do not count queued withdrawals.

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 the Beacon Chain restaking TVL in ETH.
tvl
number
required

The value of the Beacon Chain restaking TVL in ETH

Example:

1000000

change24h
object
change7d
object