GET
/
v1
/
eigenlayer
/
delegators
/
{delegator_address}
/
delegations
curl --request GET \
  --url https://api.rated.network/v1/eigenlayer/delegators/{delegator_address}/delegations \
  --header 'Authorization: Bearer <token>'
{
  "next": "https://api.rated.network//v1/eigenlayer/delegators/{delegator_address}/delegations?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/eigenlayer/delegators/{delegator_address}/delegations?limit=10&offset=10",
  "results": [
    [
      {
        "delegator": "0xfff1ce616cf83327981bf61396ad0c04e0c8b771",
        "fromDate": "2024-10-01T18:13:27.584133",
        "operator": [
          {
            "address": "0x74134d0c91798d720a5585364bb4be7396c5b973",
            "name": "Bob the Operator"
          }
        ]
      }
    ]
  ]
}

Using this endpoint, you can query per delegator using its delegator address, and you will see that particular delegator’s delegation history per operator. Returned information includes the start date (fromDate) and end dates (toDate) of the delegation. If toDate is None, it means the address is currently delegated to that operator.

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

delegator_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

Response

200
application/json

Successful Response

The response is of type object.