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 response is of type object
.
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>"
}
}
]
}
}
}