Operators
Operator Info
Ecosystem
Operators
Withdrawals
Deposits
Distribution Roots
Operators
Operator Info
Retrieves detailed information about a specific operator, including metadata, statistics, and strategies.
GET
/
eigenlayer
/
operator-info
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/operator-info
{
"data": {
"operatorDetails": {
"operator": "<string>",
"metadataURI": "<string>",
"details": "<string>",
"updatedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z"
},
"operatorStats": {
"avs": 123,
"stakersCount": 123,
"updatedAt": "2023-11-07T05:31:56Z",
"strategies": [
{
"strategy": "<string>",
"shares": "<string>",
"token": "<string>",
"tvl": "<string>",
"name": "<string>",
"symbol": "<string>",
"sharesUnderlying": 123,
"dollarPrice": 123,
"ethPrice": 123,
"decimals": 123
}
]
},
"metadata": {
"metadataURI": "<string>",
"synced": true,
"name": "<string>",
"description": "<string>",
"logo": "<string>",
"website": "<string>",
"telegram": "<string>",
"discord": "<string>",
"x": "<string>"
}
}
}
Query Parameters
The address of the operator.
Response
200
application/json
Successful response with operator details, strategies, and metadata.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/operator-info
{
"data": {
"operatorDetails": {
"operator": "<string>",
"metadataURI": "<string>",
"details": "<string>",
"updatedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z"
},
"operatorStats": {
"avs": 123,
"stakersCount": 123,
"updatedAt": "2023-11-07T05:31:56Z",
"strategies": [
{
"strategy": "<string>",
"shares": "<string>",
"token": "<string>",
"tvl": "<string>",
"name": "<string>",
"symbol": "<string>",
"sharesUnderlying": 123,
"dollarPrice": 123,
"ethPrice": 123,
"decimals": 123
}
]
},
"metadata": {
"metadataURI": "<string>",
"synced": true,
"name": "<string>",
"description": "<string>",
"logo": "<string>",
"website": "<string>",
"telegram": "<string>",
"discord": "<string>",
"x": "<string>"
}
}
}