Ecosystem
Operators
Withdrawals
Deposits
Distribution Roots
AVS
AVS Info
Fetches AVS details along with metadata and operator statistics.
GET
/
eigenlayer
/
avs-info
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/avs-info
{
"data": {
"avsDetails": {
"avs": "<string>",
"metadataURI": "<string>"
},
"metadata": {
"name": "<string>",
"description": "<string>",
"logo": "<string>",
"website": "<string>",
"telegram": "<string>",
"discord": "<string>",
"x": "<string>"
},
"operatorStats": {
"totalOperators": 123,
"strategySummary": [
{
"strategy": "<string>",
"shares": "<string>",
"tokens": "<string>",
"tvl": "<string>",
"tokenDetails": {
"name": "<string>",
"symbol": "<string>",
"sharesUnderlying": "<string>",
"dollarPrice": "<string>",
"decimals": "<string>",
"ethprice": "<string>"
}
}
]
}
}
}
Query Parameters
The AVS identifier to fetch details for.
Response
200
application/json
AVS details fetched successfully.
The total number of operators associated with the AVS.
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.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/avs-info
{
"data": {
"avsDetails": {
"avs": "<string>",
"metadataURI": "<string>"
},
"metadata": {
"name": "<string>",
"description": "<string>",
"logo": "<string>",
"website": "<string>",
"telegram": "<string>",
"discord": "<string>",
"x": "<string>"
},
"operatorStats": {
"totalOperators": 123,
"strategySummary": [
{
"strategy": "<string>",
"shares": "<string>",
"tokens": "<string>",
"tvl": "<string>",
"tokenDetails": {
"name": "<string>",
"symbol": "<string>",
"sharesUnderlying": "<string>",
"dollarPrice": "<string>",
"decimals": "<string>",
"ethprice": "<string>"
}
}
]
}
}
}