Operators
Operator AVS
Ecosystem
Operators
Withdrawals
Deposits
Distribution Roots
Operators
Operator AVS
Returns a paginated list of AVS metadata for a specified operator address, including detailed metadata and pagination info.
GET
/
eigenlayer
/
operator-avs
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/operator-avs
{
"data": {
"avs": [
{
"avsAddress": "<string>",
"metadataURI": "<string>",
"metadata": {
"name": "<string>",
"description": "<string>",
"logo": "<string>",
"website": "<string>",
"telegram": "<string>",
"discord": "<string>",
"x": "<string>"
}
}
],
"pagination": {
"page": 123,
"limit": 123,
"totalPages": 123,
"hasMore": true
}
}
}
Query Parameters
The operator address to fetch AVS metadata for.
The page number for pagination (default is 1).
The number of results per page (default is 12).
Response
200
application/json
AVS metadata fetched successfully.
The AVS address.
The URI for AVS metadata.
The name of the AVS.
A description of the AVS.
The logo URL of the AVS.
The website URL of the AVS.
The Telegram link for the AVS.
The Discord link for the AVS.
Additional metadata for the AVS.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/operator-avs
{
"data": {
"avs": [
{
"avsAddress": "<string>",
"metadataURI": "<string>",
"metadata": {
"name": "<string>",
"description": "<string>",
"logo": "<string>",
"website": "<string>",
"telegram": "<string>",
"discord": "<string>",
"x": "<string>"
}
}
],
"pagination": {
"page": 123,
"limit": 123,
"totalPages": 123,
"hasMore": true
}
}
}