GET
/
eigenlayer
/
all-pods
curl --request GET \
  --url https://api.blockflow.network/rest/eigenlayer/all-pods
{
  "data": [
    {
      "pod": "<string>",
      "staker": "<string>",
      "updatedAt": {
        "blockNumber": "<string>",
        "blockTimestamp": "2023-11-07T05:31:56Z",
        "transactionHash": "<string>"
      },
      "blockNumber": 123,
      "timestamp": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "total": 123,
    "page": 123,
    "limit": 123,
    "totalPages": 123,
    "hasMore": true,
    "statistics": {
      "totalPods": 123,
      "uniqueStakers": 123
    }
  }
}

Query Parameters

page
integer
default:
1

The page number for pagination. Defaults to 1.

limit
integer
default:
12

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

Response

200
application/json
Successful response containing pod data and metadata.
data
object[]
meta
object