GET
/
v1
/
eigenlayer
/
entities
/
{operator_address}
/
state
curl --request GET \
  --url https://api.rated.network/v1/eigenlayer/entities/{operator_address}/state \
  --header 'Authorization: Bearer <token>'
{
  "previous": "<string>",
  "next": "<string>",
  "pages": 1,
  "results": [
    {
      "date": "2024-10-01",
      "operatorAddress": "0xB0bd0c91798d720a5585364bb4be7396c5b9731",
      "operatorName": "Bob The Operator",
      "strategy": "0x54945180dB7943c0ed0FEE7EdaB2Bd24620256bc",
      "token": [
        {
          "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
          "decimals": 18,
          "name": "Wrapped Ether",
          "symbol": "WETH"
        }
      ],
      "totalBalance": 32000000000000000000,
      "totalShares": 32000000000000000000
    }
  ]
}

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

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

Path Parameters

operator_address
string
required

Query Parameters

fromDate
string | null

Start date

Examples:

"2023-01-01"

toDate
string | null

End date

Examples:

"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

The response is of type object.