cURL
curl --request GET \ --url https://api.blockflow.network/rest/eigenlayer/all-pods \ --header 'x-api-key: <api-key>'
{ "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 } } }
Fetches paginated data of pods and their metadata along with global statistics.
Documentation IndexFetch the complete documentation index at: https://docs.rescan.dev/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.rescan.dev/llms.txt
Use this file to discover all available pages before exploring further.
The page number for pagination. Defaults to 1.
The number of items per page for pagination. Defaults to 12.
Successful response containing pod data and metadata.
Show child attributes