Ecosystem
Operators
Withdrawals
Deposits
Distribution Roots
AVS Activity
Fetches paginated AVS activity details, including metadata and statistics.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/avs-activity
{
"data": [
{
"action": "<string>",
"operator": "<string>",
"staker": "<string>",
"strategy": "<string>",
"token": "<string>",
"avs": "<string>",
"pod": "<string>",
"data": {},
"metadata": {}
}
],
"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 (default is 1).
The number of items per page (default is 12).
The AVS identifier to filter activities.
Response
The action performed in the activity.
The operator involved in the activity.
The staker involved in the activity.
The strategy associated with the activity.
The token involved in the activity.
The AVS identifier associated with the activity.
The pod associated with the activity.
Additional data for the activity.
Metadata associated with the activity.
Total number of activities.
The current page number.
The number of items per page.
Total number of pages.
Whether there are more pages available.
Total number of activities.
Number of unique actions across all activities.
Number of unique stakers across all activities.
Number of unique pods across all activities.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/avs-activity
{
"data": [
{
"action": "<string>",
"operator": "<string>",
"staker": "<string>",
"strategy": "<string>",
"token": "<string>",
"avs": "<string>",
"pod": "<string>",
"data": {},
"metadata": {}
}
],
"meta": {
"total": 123,
"page": 123,
"limit": 123,
"totalPages": 123,
"hasMore": true,
"statistics": {
"totalActivities": 123,
"uniqueActions": 123,
"uniqueStakers": 123,
"uniquePods": 123
}
}
}