cURL
curl --request GET \ --url https://api.blockflow.network/rest/eigenlayer/pod-activity \ --header 'x-api-key: <api-key>'
{ "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 } } }
Fetches paginated activities for a specific pod along with global statistics.
The page number for pagination. Defaults to 1.
The number of items per page for pagination. Defaults to 12.
The unique identifier of the pod.
Successful response containing activity data and metadata.
Show child attributes