Ecosystem
Operators
Withdrawals
Deposits
Distribution Roots
Pod Activity
Fetches paginated activities for a specific pod along with global statistics.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/pod-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 of the pod.
Response
The action performed in the activity.
The operator involved in the activity.
The staker associated with the activity.
The strategy involved in the activity.
The token involved in the activity.
Additional value or state associated with the activity.
The pod related to the activity.
Additional data related to the activity.
Metadata of the activity.
The timestamp of the activity.
Total number of activities.
Current page number.
Number of items per page.
Total number of pages.
Indicates if more pages are available.
Total number of activities globally.
Total number of unique actions globally.
Total number of unique stakers globally.
Total number of unique pods globally.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/pod-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
}
}
}