GET
/
eigenlayer
/
pod-historical
curl --request GET \
  --url https://api.blockflow.network/rest/eigenlayer/pod-historical
{
  "staker": "<string>",
  "strategy": "<string>",
  "token": "<string>",
  "history": [
    {
      "shares": "<string>",
      "blockNumber": "<string>",
      "blockTimestamp": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "total": 123,
    "page": 123,
    "limit": 123,
    "totalPages": 123,
    "hasMore": true
  }
}

Query Parameters

pod
string
required

The unique identifier of the pod.

page
integer
default:
1

The page number for pagination. Defaults to 1.

limit
integer
default:
50

The number of items per page for pagination. Defaults to 50.

Response

200
application/json
Successful response containing shares history and metadata.
staker
string

The staker associated with the pod.

strategy
string

The strategy used by the staker.

token
string

The token associated with the shares.

history
object[]
meta
object