Skip to main content
GET
/
eigenlayer
/
strategy-activity
Strategy Activity
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
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.rescan.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Query Parameters

page
integer
default:1

Page number for pagination, defaults to 1

limit
integer
default:12

Number of items per page, defaults to 12

strategy
string
required

The strategy to filter activities by

Response

Paginated list of activities related to the strategy with global statistics

data
object[]
meta
object