GET
/
eigenlayer
/
strategy-historical
curl --request GET \
  --url https://api.blockflow.network/rest/eigenlayer/strategy-historical
{
  "data": [
    {
      "strategy": "<string>",
      "tvl": 123,
      "withdrawals": 123,
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "total": 123,
    "page": 123,
    "limit": 123,
    "totalPages": 123,
    "hasMore": true,
    "statistics": {
      "totalStats": 123,
      "totalTvl": 123,
      "totalWithdrawals": 123,
      "averageTvl": 123
    }
  }
}

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 identifier (required)

Response

200
application/json
Paginated strategy statistics with global statistics
data
object[]
meta
object