Skip to main content
GET
/
eigenlayer
/
pod-historical
Pod Historical
curl --request GET \
  --url https://api.blockflow.network/rest/eigenlayer/pod-historical \
  --header 'x-api-key: <api-key>'
{
  "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
  }
}

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

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

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