Operators
Operator Strategies
Ecosystem
Operators
Withdrawals
Deposits
Distribution Roots
Operators
Operator Strategies
Returns the TVL for a specific operator, including details for each strategy and total stakers.
GET
/
eigenlayer
/
operator-strategies
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/operator-strategies
{
"operator": "<string>",
"totalStakers": 123,
"strategiesTVL": [
{
"strategy": "<string>",
"totalShares": "<string>",
"tokens": "<string>",
"tvl": "<string>",
"tokenDetails": {
"name": "<string>",
"symbol": "<string>",
"sharesUnderlying": "<string>",
"dollarPrice": "<string>",
"decimals": "<string>",
"ethPrice": "<string>"
}
}
]
}
Query Parameters
The operator address to fetch TVL for.
Response
200
application/json
Operator TVL details fetched successfully.
The operator address.
The total number of stakers for the operator.
The strategy identifier.
The total shares allocated to the strategy.
The calculated tokens based on shares and decimals.
The total value locked calculated based on token price and shares.
The token name.
The token symbol.
The underlying shares of the token.
The dollar price of the token.
The decimals of the token.
The ETH price of the token.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/operator-strategies
{
"operator": "<string>",
"totalStakers": 123,
"strategiesTVL": [
{
"strategy": "<string>",
"totalShares": "<string>",
"tokens": "<string>",
"tvl": "<string>",
"tokenDetails": {
"name": "<string>",
"symbol": "<string>",
"sharesUnderlying": "<string>",
"dollarPrice": "<string>",
"decimals": "<string>",
"ethPrice": "<string>"
}
}
]
}