Operators
All Operators
Ecosystem
Operators
Withdrawals
Deposits
Distribution Roots
Operators
All Operators
Fetches the latest operator details with metadata and associated statistics.
GET
/
eigenlayer
/
all-operators
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/all-operators
{
"data": [
{
"operator": "<string>",
"metadataURI": "<string>",
"name": "<string>",
"logo": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"avsCount": 123
}
],
"meta": {
"total": 123,
"page": 123,
"limit": 123,
"totalPages": 123,
"hasMore": true,
"statistics": {
"totalOperators": 123,
"totalAVSs": 123,
"totalStakers": 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 operator data
The unique identifier for the operator.
The metadata URI associated with the operator.
The name of the operator.
The logo URL of the operator.
The timestamp of the latest operator data.
The count of AVSs associated with the operator.
Total number of operators.
The current page number.
The number of items per page.
The total number of pages available.
Indicates if more pages are available.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/all-operators
{
"data": [
{
"operator": "<string>",
"metadataURI": "<string>",
"name": "<string>",
"logo": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"avsCount": 123
}
],
"meta": {
"total": 123,
"page": 123,
"limit": 123,
"totalPages": 123,
"hasMore": true,
"statistics": {
"totalOperators": 123,
"totalAVSs": 123,
"totalStakers": 123
}
}
}