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
Copy
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/operator-strategies
Copy
{
"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 response is of type object
.
Copy
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/operator-strategies
Copy
{
"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>"
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.