curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/avs-activity \
--header 'x-api-key: <api-key>'{
"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
}
}
}Fetches paginated AVS activity details, including metadata and statistics.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/avs-activity \
--header 'x-api-key: <api-key>'{
"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
}
}
}The page number for pagination (default is 1).
The number of items per page (default is 12).
The AVS identifier to filter activities.
Successful response with AVS activity data and metadata.
Show child attributes
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.
Show child attributes
Total number of activities.
The current page number.
The number of items per page.
Total number of pages.
Whether there are more pages available.
Show child attributes
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.