Ecosystem
Operators
Withdrawals
Deposits
Distribution Roots
AVS
All AVS
Fetches paginated AVS details, including operator counts and associated metadata.
GET
/
eigenlayer
/
all-avs
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/all-avs
{
"data": [
{
"avs": "<string>",
"metadataURI": "<string>",
"operatorCount": 123,
"name": "<string>",
"description": "<string>",
"logo": "<string>",
"website": "<string>",
"telegram": "<string>",
"discord": "<string>",
"x": "<string>"
}
],
"meta": {
"total": 123,
"page": 123,
"limit": 123,
"totalPages": 123,
"hasMore": true,
"statistics": {
"totalAVS": 123,
"totalOperators": 123
}
}
}
Query Parameters
The page number for pagination (default is 1).
The number of items per page (default is 12).
Response
200
application/json
Successful response with AVS data.
The unique identifier for the AVS.
The URI for associated metadata.
The number of operators in the AVS.
The name of the metadata.
The description of the metadata.
The logo associated with the metadata.
The website associated with the metadata.
The Telegram link for the metadata.
The Discord link for the metadata.
Additional metadata information.
Total number of AVS entries.
The current page number.
The number of items per page.
Total number of pages.
Whether there are more pages available.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/all-avs
{
"data": [
{
"avs": "<string>",
"metadataURI": "<string>",
"operatorCount": 123,
"name": "<string>",
"description": "<string>",
"logo": "<string>",
"website": "<string>",
"telegram": "<string>",
"discord": "<string>",
"x": "<string>"
}
],
"meta": {
"total": 123,
"page": 123,
"limit": 123,
"totalPages": 123,
"hasMore": true,
"statistics": {
"totalAVS": 123,
"totalOperators": 123
}
}
}