GET
/
v1
/
eigenlayer
/
delegators
/
{delegator_address}
/
state
curl --request GET \
  --url https://api.rated.network/v1/eigenlayer/delegators/{delegator_address}/state
{
  "previous": "<string>",
  "next": "<string>",
  "pages": 1,
  "results": [
    {
      "date": "2024-10-01",
      "earner": "0xB0bd0c91798d720a5585364bb4be7396c5b9731",
      "strategy": "0x54945180dB7943c0ed0FEE7EdaB2Bd24620256bc",
      "token": [
        {
          "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
          "decimals": 18,
          "name": "Wrapped Ether",
          "symbol": "WETH"
        }
      ],
      "totalBalance": 12000000000000000000,
      "totalShares": 12000000000000000000
    }
  ]
}

This endpoint allows you to query the daily stake and shares balance of a specific delegator based on their delegator address, given by the earner field in the response.

Headers

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

Path Parameters

delegator_address
string
required

Query Parameters

fromDate
string | null

Start date

Example:

"2023-01-01"

toDate
string | null

End date

Example:

"2023-12-31"

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

Response

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