Pods
All Pods
Ecosystem
Operators
Withdrawals
Deposits
Distribution Roots
Pods
All Pods
Fetches paginated data of pods and their metadata along with global statistics.
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
The page number for pagination. Defaults to 1.
The number of items per page for pagination. Defaults to 12.
Response
200
application/json
Successful response containing pod data and metadata.
The identifier of the pod.
The staker associated with the pod.
The block number associated with the pod.
The timestamp associated with the pod.
Total number of pods.
Current page number.
Number of items per page.
Total number of pages.
Indicates if more pages are available.
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
}
}
}