GET
/
eigenlayer
/
avs-activity
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

page
integer
default:
1

The page number for pagination (default is 1).

limit
integer
default:
12

The number of items per page (default is 12).

avs
string
required

The AVS identifier to filter activities.

Response

200
application/json
Successful response with AVS activity data and metadata.
data
object[]
meta
object