Operators
Operator Activity
Ecosystem
Operators
Withdrawals
Deposits
Distribution Roots
Operators
Operator Activity
Retrieves paginated activities for a specific operator, including global statistics and metadata.
GET
/
eigenlayer
/
operator-activity
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/operator-activity
{
"data": [
{
"action": "<string>",
"operator": "<string>",
"staker": "<string>",
"strategy": "<string>",
"token": "<string>",
"avs": "<string>",
"pod": "<string>",
"data": {},
"metadata": {},
"activity_timestamp": "2023-11-07T05:31:56Z"
}
],
"meta": {
"total": 123,
"page": 123,
"limit": 123,
"totalPages": 123,
"hasMore": true,
"statistics": {
"totalActivities": 123,
"uniqueActions": 123,
"uniqueStakers": 123,
"uniquePods": 123
}
}
}
Query Parameters
The page number for pagination. Defaults to 1.
The number of items per page for pagination. Defaults to 12.
The unique identifier for the operator.
Response
200
application/json
Successful response with activities data.
The action performed.
The operator identifier.
The staker identifier.
The strategy associated with the action.
The token involved in the action.
The AVS associated with the action.
The pod associated with the action.
Additional data for the action.
Additional metadata for the action.
Timestamp of the activity.
Total number of activities.
Current page number.
Number of items per page.
Total number of pages.
Whether more pages are available.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/operator-activity
{
"data": [
{
"action": "<string>",
"operator": "<string>",
"staker": "<string>",
"strategy": "<string>",
"token": "<string>",
"avs": "<string>",
"pod": "<string>",
"data": {},
"metadata": {},
"activity_timestamp": "2023-11-07T05:31:56Z"
}
],
"meta": {
"total": 123,
"page": 123,
"limit": 123,
"totalPages": 123,
"hasMore": true,
"statistics": {
"totalActivities": 123,
"uniqueActions": 123,
"uniqueStakers": 123,
"uniquePods": 123
}
}
}