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

Headers

X-API-Token
string
required

API Token for authentication

Path Parameters

strategy
string
required

The address of the restaking strategy

Example:

"0x0fe4f44bee93503346a3ac9ee5a26b130a5796d6"

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 restaking strategy TVL, denominated in the strategy's native token

Example:

1000000

tvlEth
number
required

The value of the restaking strategy TVL, denominated in ETH

Example:

1000000

change24h
object
change7d
object