AVS
AVS Operators
Ecosystem
Operators
Withdrawals
Deposits
Distribution Roots
AVS
AVS Operators
Returns a paginated list of operators for a specified AVS address, including metadata details for each operator.
GET
/
eigenlayer
/
avs-operators
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/avs-operators
{
"data": {
"operators": [
{
"operator": "<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 AVS address to fetch operators for.
The page number for pagination (default is 1).
The number of results per page (default is 12).
Response
200
application/json
Operators fetched successfully.
The operator address.
The URI for operator metadata.
The name of the operator.
A description of the operator.
The logo URL of the operator.
The website URL of the operator.
The Telegram link for the operator.
The Discord link for the operator.
Additional metadata for the operator.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/avs-operators
{
"data": {
"operators": [
{
"operator": "<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
}
}
}