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

The total TVL (“tvl”), normalized in ETH, does not include the TVL of Eigen tokens as they are currently not transferable and therefore do not have an exchange rate with ETH.

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 combined TVL in ETH.

The response is of type object.