cURL
curl --request GET \ --url https://api.blockflow.network/rest/eigenlayer/strategy-activity \ --header 'x-api-key: <api-key>'
{ "data": [ { "action": "<string>", "operator": "<string>", "staker": "<string>", "strategy": "<string>", "token": "<string>", "avs": "<string>", "pod": "<string>", "data": "<string>", "metadata": {} } ], "meta": { "total": 123, "page": 123, "limit": 123, "totalPages": 123, "hasMore": true, "statistics": { "totalActivities": 123, "uniqueActions": 123, "uniqueStakers": 123, "uniquePods": 123 } } }
Fetch a paginated list of activities related to a specific strategy with global statistics
Page number for pagination, defaults to 1
Number of items per page, defaults to 12
The strategy to filter activities by
Paginated list of activities related to the strategy with global statistics
Show child attributes