GET
/
v1
/
eigenlayer
/
eigenpods
/
{eigenpod_address}
/
state
curl --request GET \
  --url https://api.rated.network/v1/eigenlayer/eigenpods/{eigenpod_address}/state
{
  "next": "https://api.rated.network//v1/eigenlayer/eigenpods/{eigenpod_address}/state?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/eigenlayer/eigenpods/{eigenpod_address}/state?limit=10&offset=10",
  "results": [
    [
      {
        "date": "2024-10-01",
        "earner": "0x534d0c91798d720a5585364bb4be7396c5b9731",
        "eigenpodAddress": "0x1534d0c91798d720a5585364bb4be7396c5b973",
        "restakedBalance": 32000000000000000000
      }
    ]
  ]
}

This endpoint allows you to query the daily stake and shares balance of a specific eigenpod based on their operator address, the specific strategy, and token address.

Headers

X-Rated-Network
enum<string>
Available options:
mainnet,
holesky

Path Parameters

eigenpod_address
string
required

Query Parameters

limit
integer
default:10

The number of results returned per page

offset
integer
default:0

The number of results to skip before starting to return

fromDate
string | null

Start date

Example:

"2023-01-01"

toDate
string | null

End date

Example:

"2023-12-31"

Response

200
application/json
Successful Response
previous
string | null
required
next
string | null
required
pages
integer
required
Required range: x >= 0
results
object[]
required